diff --git a/.gitignore b/.gitignore index c383d485b..cae02aa55 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ docker-compose.yml # Diretorios de instalacao +/api/env /env /data /db @@ -37,3 +38,7 @@ __pycache__ /api/db *.coverage .env +# Diretórios do Postgresql +/pg_data +/pg_backup + diff --git a/Instalation_Old.md b/Docs/Instalation_Old.md similarity index 100% rename from Instalation_Old.md rename to Docs/Instalation_Old.md diff --git a/Docs/exemplo_importacao_coadd_object.json b/Docs/exemplo_importacao_coadd_object.json new file mode 100644 index 000000000..89844d42c --- /dev/null +++ b/Docs/exemplo_importacao_coadd_object.json @@ -0,0 +1,29 @@ +{ + "products": [{ + "display_name": "Y3A2 Coadd", + "fields": [], + "releases": ["y3a2_coadd"], + "table": "coadd_objects", + "schema": "y3a2_coadd", + "database": "catalog", + "type": "catalog", + "class": "coadd_objects", + "name": "y3a2_coadd", + "association": [{ + "ucd": "meta.id;meta.main", + "property": "coadd_object_id" + }, + { + "ucd": "pos.eq.ra;meta.main", + "property": "ra" + }, + { + "ucd": "pos.eq.dec;meta.main", + "property": "dec" + } + ] + }], + "ticket":"UKW628", + "register_username": "gverde" +} + diff --git a/Docs/exemplo_importacao_galaxy_cluster.json b/Docs/exemplo_importacao_galaxy_cluster.json new file mode 100644 index 000000000..dcd6f1430 --- /dev/null +++ b/Docs/exemplo_importacao_galaxy_cluster.json @@ -0,0 +1,109 @@ +{ + "process": { + "owner_username": "gverde", + "process_name": "wazp", + "process_id": "5239", + "process_start_date": "2019-06-11T04:59:19Z", + "process_end_date": "2019-06-11T07:08:54Z", + "process_description": "Sample Catalog for Galaxy Clusters", + "process_comment": "Sample Catalog for Galaxy Clusters", + "releases": ["y1_wide_survey"], + "products": [{ + "display_name": "Galaxy Clusters Sample", + "releases": ["y1_wide_survey"], + "fields": ["y1a1_coadd_spt"], + "table": "galaxy_clusters_sample", + "schema": "dri_catalog", + "database": "catalog", + "type": "catalog", + "class": "galaxy_clusters", + "name": "galaxy_clusters_sample", + "association": [{ + "ucd": "meta.id;meta.main", + "property": "id" + }, + { + "ucd": "pos.eq.ra;meta.main", + "property": "ra" + }, + { + "ucd": "pos.eq.dec;meta.main", + "property": "dec" + }, + { + "ucd": "src.redshift.phot", + "property": "zp" + }, + { + "ucd": "stat.snr", + "property": "snr" + }, + { + "ucd": "phys.size.radius", + "property": "radius_mpc" + }, + { + "ucd": "phys.angSize;src", + "property": "radius_amin" + }, + { + "ucd": "src.class.richness", + "property": "ngals" + } + ] + },{ + "display_name": "Clusters Members Sample", + "releases": ["y1_wide_survey"], + "fields": ["y1a1_coadd_spt"], + "table": "cluster_members_sample", + "schema": "dri_catalog", + "database": "catalog", + "type": "catalog", + "class": "cluster_members", + "name": "cluster_members_sample", + "association": [{ + "ucd": "meta.id;meta.main", + "property": "seqnr" + }, + { + "ucd": "pos.eq.ra;meta.main", + "property": "ra" + }, + { + "ucd": "pos.eq.dec;meta.main", + "property": "dec" + }, + { + "ucd": "src.redshift.phot", + "property": "zp" + }, + { + "ucd": "phot.mag;meta.main;em.opt.g", + "property": "mag_g" + }, + { + "ucd": "phot.mag;meta.main;em.opt.r", + "property": "mag_r" + }, + { + "ucd": "phot.mag;meta.main;em.opt.i", + "property": "mag_i" + }, + { + "ucd": "phot.mag;meta.main;em.opt.z", + "property": "mag_z" + }, + { + "ucd": "phot.mag;meta.main;em.opt.Y", + "property": "mag_y" + }, + { + "ucd": "meta.id.cross", + "property": "id_cluster" + } + ] + }] + }, + "ticket":"UKW628", + "register_username": "gverde" +} diff --git a/Instalation.md b/Instalation.md index 6da0f2165..0ab213aed 100644 --- a/Instalation.md +++ b/Instalation.md @@ -11,7 +11,6 @@ git clone https://github.com/linea-it/dri.git dri ``` cd dri -cp env_template .env cp docker-compose-development.yml docker-compose.yml docker-compose build ``` @@ -43,23 +42,80 @@ dri/settings/ in this file the variable debug should always be False and it is necessary to add the host allowed in ALLOWED_HOSTS parameter and allowed hosts CORS in variable CORS_ORIGIN_WHITELIST. -Database settings must be made individually on each of these files, -if you are a developer change only the development case file do not want to use sqlite as the default database. +## Setting Database +### Postgresql +Considering a new installation in a development environment with the postgresql + q3c database. -### Setting Database Params +Database settings must be made only in local_vars.py, -This step is needed only to use oracle database. The default sqlite is pre-configured in the repository files +Whereas the database used is postgresql + q3c and a development environment. the configuration of local_vars.py in the databases attribute is as follows. +``` +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'postgres', + 'USER': 'postgres', + 'PASSWORD': 'postgres', + 'HOST': 'database', + 'PORT': 5432, + 'OPTIONS': { + 'options': '-c search_path=dri_admin,public' + } + }, + 'catalog': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'postgres', + 'USER': 'postgres', + 'PASSWORD': 'postgres', + 'HOST': 'database', + 'PORT': 5432, + 'OPTIONS': { + 'options': '-c search_path=dri_catalog,public' + }, + }, +} +``` + +Starting the database container alone, the first time will create the pg_data and pg_backups directory and create the user based on the POSTGRES_DB and POSTGRES_PASSWORD environment variables both with default value 'postgres' the user created is also 'postgres' -### Run All Services ``` -docker-compose up +# starts the database container +docker-compose up database +``` +it is necessary to create 2 schemas, one for the administrative tables and the other for catalog tables. +in the catalog schema are the tables created by the users. + +``` +# Creates the administrative schema, in this example it is called dri_admin +docker exec -it $(docker ps -q -f name=dri_database) psql -h localhost -U postgres -d postgres -c "CREATE SCHEMA dri_admin;" + +# Changes the permission for the schema, considering that the user is postgres. +docker exec -it $(docker ps -q -f name=dri_database) psql -h localhost -U postgres -d postgres -c "ALTER SCHEMA dri_admin OWNER TO postgres;" +# Same thing for the dri_catalog schema +docker exec -it $(docker ps -q -f name=dri_database) psql -h localhost -U postgres -d postgres -c "CREATE SCHEMA dri_catalog;" + +docker exec -it $(docker ps -q -f name=dri_database) psql -h localhost -U postgres -d postgres -c "ALTER SCHEMA dri_catalog OWNER TO postgres;" + +``` + +## Setup Backend +With the configuration file local_vars.py configured. it's time to raise the backend. + +The first time the backend is executed, administrative tables and basic catalog tables will be created. +Django takes care of this part, there is no need to do anything, the commands are in the entrypoint.sh that is executed every time the backend container is turned on. + +``` +# Starts only the containers needed for the backend. +docker-compose up backend ``` +Now that the backend is on, it is necessary to load the initial data and create an admin user. + ### Create default Super User in django ``` -docker exec -it $(docker ps -q -f name=backend) python manage.py createsuperuser +docker exec -it $(docker ps -q -f name=dri_backend) python manage.py createsuperuser ``` ### Load Initial Data @@ -67,15 +123,29 @@ For admin database ``` docker exec -it $(docker ps -q -f name=dri_backend) python manage.py loaddata initial_data.json ``` -For catalog database + + +### Example catalog, outside the DRI catalog database. +The step below is **optional**, do not perform this part unless you know what you are doing ``` docker exec -it $(docker ps -q -f name=dri_database) psql -h localhost -U postgres -d postgres -f /data/gaia_dump.sql ``` -In this example, the catalog database is the same as the administrative database. this example catalog will create a gaia schema with a gaia_dr2 table. a subset with few objects. +this example creates a gaia schema with a gaia_dr2 table and a subset of data with some objects. + +## Run and Stop All Services + +``` +docker-compose up +``` +or +``` +docker-compose stop +``` + -### Useful Commands +## Useful Commands Returns the ID of a container by filtering by name ``` @@ -102,6 +172,12 @@ Dump a schema from database postgres docker exec -it $(docker ps -q -f name=dri_database) pg_dump -h localhost -U postgres -n 'gaia' postgres > /data/gaia_dump.sql ``` +Dump data using Django +``` +docker exec -it $(docker ps -q -f name=dri_backend) python manage.py dumpdata product_classifier --indent 2 > product_classifier.json +``` +Neste exemplo product_classifier é o Django App com todos os models. product_classifier.json é o arquivo com o dump. + ### Rabbit + Celery Descobrir o IP do container rabbit ``` diff --git a/Jenkinsfile b/Jenkinsfile index acef15364..4c75c6f1b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,10 @@ pipeline { registryCredential = 'Dockerhub' dockerImageBack = '' dockerImageFront = '' + GIT_COMMIT_SHORT = sh( + script: "printf \$(git rev-parse --short ${GIT_COMMIT})", + returnStdout: true + ) } agent any @@ -15,7 +19,7 @@ pipeline { dir('frontend') { sh "cp nginx-deploy.conf nginx-proxy.conf" script { - dockerImageFront = docker.build registry + ":FRONT$GIT_COMMIT" + dockerImageFront = docker.build registry + ":frontend_$GIT_COMMIT_SHORT" } } }, @@ -23,7 +27,7 @@ pipeline { dir('api') { sh "cp dri/settings/jenkins.py dri/settings/local_vars.py" script { - dockerImageBack = docker.build registry + ":BACK$GIT_COMMIT" + dockerImageBack = docker.build registry + ":backend_$GIT_COMMIT_SHORT" } } } @@ -32,7 +36,7 @@ pipeline { } stage('Test Backend') { steps { - sh "docker run $registry:BACK$GIT_COMMIT coverage run --source=. --omit='*migrations' manage.py test --verbosity=2" + sh "docker run $registry:backend_$GIT_COMMIT_SHORT coverage run --source=. --omit='*migrations' manage.py test --verbosity=2" } } stage('Push Images') { @@ -46,14 +50,20 @@ pipeline { frontend: { dir('frontend') { script { - docker.withRegistry( '', registryCredential ) {dockerImageFront.push()} + docker.withRegistry( '', registryCredential ) { + dockerImageFront.push() + dockerImageFront.push("frontend_latest") + } } } }, backend: { dir('api') { script { - docker.withRegistry( '', registryCredential ) {dockerImageBack.push()} + docker.withRegistry( '', registryCredential ) { + dockerImageBack.push() + dockerImageBack.push("backend_latest") + } } } } @@ -63,8 +73,8 @@ pipeline { } post { always { - sh "docker rmi $registry:FRONT$GIT_COMMIT --force" - sh "docker rmi $registry:BACK$GIT_COMMIT --force" + sh "docker rmi $registry:frontend_$GIT_COMMIT_SHORT --force" + sh "docker rmi $registry:backend_$GIT_COMMIT_SHORT --force" } } } \ No newline at end of file diff --git a/api/.vscode/settings.json b/api/.vscode/settings.json index 51f98490a..8d2becad4 100644 --- a/api/.vscode/settings.json +++ b/api/.vscode/settings.json @@ -1,3 +1,4 @@ { - "python.pythonPath": "env_dri/bin/python3.6" + "python.pythonPath": "/home/glauber/projetos/linea/dri/api/env/bin/python3", + "git.ignoreLimitWarning": true } \ No newline at end of file diff --git a/api/common/views.py b/api/common/views.py index e50c9dae3..8e970def3 100755 --- a/api/common/views.py +++ b/api/common/views.py @@ -301,6 +301,32 @@ def galaxy_cluster(request): return Response(dict({"success": False})) +@api_view(['GET']) +def available_database(request): + """ + Retorna os databases configurados como sendo DBs de Catalogo. + não inclui o database administrativo. + """ + if request.method == 'GET': + dbs = list([]) + + # TODO: é provavel que ao adicionar mais bancos de dados, o target viewer de + # problema com as tabelas de rating e reject + for db in settings.DATABASES: + if db is not 'default': + try: + dbs.append(dict({ + 'name': db, + 'display_name':settings.DATABASES[db]['DISPLAY_NAME'] + })) + except: + dbs.append(dict({ + 'name': db, + 'display_name':db + })) + + return Response(dict({'results': dbs, 'count': len(dbs)})) + @api_view(['GET']) def teste(request): if request.method == 'GET': diff --git a/api/dri/settings/local_vars.py.template b/api/dri/settings/local_vars.py.template index b09fea55b..9aff229e9 100644 --- a/api/dri/settings/local_vars.py.template +++ b/api/dri/settings/local_vars.py.template @@ -8,7 +8,7 @@ from django_auth_ldap.config import LDAPSearch # Substituir /home/glauber/dri pelo diretorio de intalacao do projeto. BASE_PROJECT = "/app" # the hostname and port number of the current Server -BASE_HOST = "http://dri.com" +BASE_HOST = "http://localhost" LOG_DIR = os.path.join('/log') @@ -24,17 +24,46 @@ DATA_TMP_DIR = 'tmp' DATA_SOURCE = "/data" +# Exemplo de Database utilizando a imagem docker do postgresql DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(DATA_DIR, 'dri.db'), + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'postgres', + 'USER': 'postgres', + 'PASSWORD': 'postgres', + 'HOST': 'database', + 'PORT': 5432, + 'OPTIONS': { + 'options': '-c search_path=dri_admin,public' + } }, 'catalog': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(DATA_DIR, 'catalog.db'), + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'postgres', + 'USER': 'postgres', + 'PASSWORD': 'postgres', + 'HOST': 'database', + 'PORT': 5432, + 'OPTIONS': { + 'options': '-c search_path=dri_catalog,public' + }, }, } +# Exemplo utilizando Sqlite3 para desenvolvimento +#DATABASES = { +# 'default': { +# 'ENGINE': 'django.db.backends.sqlite3', +# 'NAME': os.path.join(DATA_DIR, 'dri.db'), +# }, +# 'catalog': { +# 'ENGINE': 'django.db.backends.sqlite3', +# 'NAME': os.path.join(DATA_DIR, 'catalog.db'), +# }, +#} + +# OBS: para o Oracle o nome da chave que representa o banco não pode ter mais de 30 caracteres e nem o database name, + # Esta configuracao e usada somente pela classe de authenticacao usando login do NCSA # deve ser preenchida com o nome da configuracao de database do NCSA OU None para nao usar a authenticacao no ncsa NCSA_AUTHENTICATION_DB = "None" @@ -47,8 +76,7 @@ NCSA_AUTHENTICATION_USERS_TABLE = "None" NCSA_SIGNUP_LINK = None -###### LDAP Authentication ###### - +# LDAP Authentication # Responsible for turn on and off the LDAP authentication: AUTH_LDAP_ENABLED=False @@ -72,7 +100,7 @@ if AUTH_LDAP_ENABLED: ) # Target Viewer Rating, Reject Schema -SCHEMA_RATING_REJECT = None +SCHEMA_RATING_REJECT = 'dri_catalog' # Save As default Schema, Utilizado pela feature Target::Save As caso seja None, o schema utilizado # sera o mesmo do produto original mais vai requerer permissao. para o ncsa cada usuario tem um schema @@ -136,7 +164,10 @@ SEND_DAILY_STATISTICS_EMAIL = False PRODUCT_EXPIRATION_TIME = None # USER_QUERY -USER_QUERY_EXECUTION_TIMEOUT = None +# Tempo de execucao de um job no User query. +USER_QUERY_EXECUTION_TIMEOUT = 300 +# Limite de linhas de uma query +USER_QUERY_MAX_ROWS = 100000 ## TARGET VIEWER # Habilita ou desabilita a interface de registro de produtos pela opcao Database, @@ -217,12 +248,12 @@ LOGGING = { 'filename': os.path.join(LOG_DIR, 'product_export.log'), 'formatter': 'standard', }, - 'product_import': { + 'import_target_csv': { 'level': 'DEBUG', 'class': 'logging.handlers.RotatingFileHandler', 'maxBytes': 1024 * 1024 * 5, # 5 MB 'backupCount': 5, - 'filename': os.path.join(LOG_DIR, 'product_import.log'), + 'filename': os.path.join(LOG_DIR, 'import_target_csv.log'), 'formatter': 'standard', }, 'product_saveas': { @@ -249,6 +280,14 @@ LOGGING = { 'filename': os.path.join(LOG_DIR, 'garbage_colector.log'), 'formatter': 'standard', }, + 'userquery': { + 'level': 'DEBUG', + 'class': 'logging.handlers.RotatingFileHandler', + 'maxBytes': 1024 * 1024 * 5, # 5 MB + 'backupCount': 5, + 'filename': os.path.join(LOG_DIR, 'userquery.log'), + 'formatter': 'standard', + }, }, 'loggers': { 'django': { @@ -282,8 +321,8 @@ LOGGING = { 'level': 'DEBUG', 'propagate': True, }, - 'product_import': { - 'handlers': ['product_import'], + 'import_target_csv': { + 'handlers': ['import_target_csv'], 'level': 'DEBUG', 'propagate': True, }, @@ -302,5 +341,10 @@ LOGGING = { 'level': 'DEBUG', 'propagate': True, }, + 'userquery': { + 'handlers': ['userquery'], + 'level': 'DEBUG', + 'propagate': True, + }, } } \ No newline at end of file diff --git a/api/dri/urls.py b/api/dri/urls.py index 6eb30f7b9..0ace36bfc 100644 --- a/api/dri/urls.py +++ b/api/dri/urls.py @@ -127,6 +127,7 @@ url(r'^dri/api/get_fits_by_tilename', coadd_views.get_fits_by_tilename), url(r'^dri/api/vizier/', product_views.vizier_cds), url(r'^dri/api/send_statistic_email/', common_views.send_statistic_email), + url(r'^dri/api/available_database/', common_views.available_database), url(r'^dri/api/teste/', common_views.teste), diff --git a/api/lib/CatalogDB.py b/api/lib/CatalogDB.py index 41e1916c9..99acd19b2 100644 --- a/api/lib/CatalogDB.py +++ b/api/lib/CatalogDB.py @@ -1,13 +1,14 @@ import json +import math import warnings -from lib.sqlalchemy_wrapper import DBBase -from sqlalchemy import Column -from sqlalchemy import desc +import sqlalchemy +from sqlalchemy import Column, cast, desc from sqlalchemy import exc as sa_exc -from sqlalchemy.sql import select, and_, or_ -from sqlalchemy.sql.expression import literal_column, between -import math +from sqlalchemy.sql import and_, or_, select +from sqlalchemy.sql.expression import between, literal_column + +from lib.sqlalchemy_wrapper import DBBase class CatalogDB(DBBase): @@ -393,6 +394,7 @@ def __init__(self, table, schema=None, database=None, associations=None, schema_ associations=associations) # Catalogos de Target tem ligacao com o as tabelas Rating e Reject # Esse atributo deve vir do Settings + # TODO: Evitar o uso dessa variavel de ambiente, deve vir da classe DBBase. self.schema_rating_reject = schema_rating_reject # Para o as querys de Target e necessario ter a instancia do product para fazer os join com Rating e Reject @@ -442,7 +444,8 @@ def create_stm(self, columns=list(), filters=None, ordering=None, limit=None, st # User ID catalog_rating.c.owner == self.user.pk, # Object ID - self.get_column_obj(self.table, property_id) == catalog_rating.c.object_id, + # Fazer o Cast da coluna objeto id do catalogo para String, por que na catalog rating object_id é string + cast(self.get_column_obj(self.table, property_id), sqlalchemy.String) == catalog_rating.c.object_id, ), isouter=True) @@ -453,7 +456,8 @@ def create_stm(self, columns=list(), filters=None, ordering=None, limit=None, st # User ID catalog_reject.c.owner == self.user.pk, # Object Id OR Reject is NULL - or_(self.get_column_obj(self.table, property_id) == catalog_reject.c.object_id, + # Fazer o Cast da coluna objeto id do catalogo para String, por que na catalog reject object_id é string + or_(cast(self.get_column_obj(self.table, property_id), sqlalchemy.String) == catalog_reject.c.object_id, catalog_reject.c.id.is_(None)) ), isouter=True) diff --git a/api/lib/db_oracle.py b/api/lib/db_oracle.py new file mode 100644 index 000000000..30575f162 --- /dev/null +++ b/api/lib/db_oracle.py @@ -0,0 +1,73 @@ +from sqlalchemy.dialects import oracle + +class DBOracle: + def __init__(self, db): + self.db = db + + def get_string_connection(self): + url = ( + "oracle://%(username)s:%(password)s@(DESCRIPTION=(" + + "ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=%(host)s)(" + + "PORT=%(port)s)))(CONNECT_DATA=(SERVER=dedicated)(" + + "SERVICE_NAME=%(database)s)))" + ) % { + 'username': self.db['USER'], + 'password': self.db['PASSWORD'], + 'host': self.db['HOST'], + 'port': self.db['PORT'], + 'database': self.db['DATABASE'] + } + return url + + def get_engine(self): + return "oracle" + + def get_dialect(self): + return oracle + + def get_raw_sql_limit(self, offset, limit): + return "OFFSET %s ROWS FETCH NEXT %s ROWS ONLY" % (offset, limit) + + def get_raw_sql_column_properties(self, table, schema=None): + sql = "SELECT column_name, data_type FROM all_tab_columns WHERE table_name='%s'" % table + if schema: + sql += " AND owner='%s'" % schema + return sql + + def get_raw_sql_table_rows(self, table, schema=None): + sql = "SELECT NUM_ROWS FROM dba_tables WHERE TABLE_NAME='%s'" % table + if schema: + sql += " AND owner='%s'" % schema + return sql + + def get_raw_sql_size_table_bytes(self, table, schema=None): + sql = "SELECT BYTES FROM dba_segments WHERE segment_type='TABLE' and segment_name='%s'" % table + if schema: + sql += " AND owner='%s'" % schema + return sql + + def get_raw_sql_number_columns(self, table, schema=None): + sql = "SELECT COUNT(*) FROM all_tab_columns WHERE TABLE_NAME = '%s'" % table + if schema: + sql += " AND owner = '%s'" % schema + return sql + + def get_create_auto_increment_column(self, table, column_name, schema=None): + table_name = table + if schema is not None and schema is not "": + table_name = "%s.%s" % (schema, table) + + sql = list() + sql.append("alter table %(table)s add %(column_name)s number" % {"table": table_name, "column_name": column_name}) + sql.append("create sequence seq_id" % {"table": table_name, "column_name": column_name}) + sql.append("update %(table)s set %(column_name)s = seq_id.nextval" % {"table": table_name, "column_name": column_name}) + sql.append("drop sequence seq_id" % {"table": table_name, "column_name": column_name}) + + return sql + + def get_table_name(self, table): + return table.upper() + + def get_schema_name(self, schema): + return schema.upper() + diff --git a/api/lib/db_postgresql.py b/api/lib/db_postgresql.py new file mode 100644 index 000000000..9dddcab6e --- /dev/null +++ b/api/lib/db_postgresql.py @@ -0,0 +1,74 @@ +from sqlalchemy.dialects import postgresql + + +class DBPostgresql: + def __init__(self, db): + self.db = db + + def get_string_connection(self): + url = ("postgresql+psycopg2://%(username)s:%(password)s@%(host)s:%(port)s/%(database)s") % { + 'username': self.db['USER'], + 'password': self.db['PASSWORD'], + 'host': self.db['HOST'], + 'port': self.db['PORT'], + 'database': self.db['DATABASE'] + } + return url + + def get_engine(self): + return "postgresql_psycopg2" + + def get_dialect(self): + return postgresql + + def get_raw_sql_limit(self, offset, limit): + return "OFFSET %s LIMIT %s" % (offset, limit) + + def get_raw_sql_column_properties(self, table, schema=None): + sql = "SELECT column_name, data_type FROM information_schema.columns WHERE table_name = '%s'" % table + if schema: + sql += " AND table_schema = '%s'" % schema + return sql + + def get_raw_sql_table_rows(self, table, schema=None): + if schema: + sql = "SELECT reltuples FROM pg_class WHERE oid = '%s.%s'::regclass" % (schema, table) + else: + sql = "SELECT reltuples FROM pg_class WHERE relname='%s'" % table + return sql + + def get_raw_sql_size_table_bytes(self, table, schema=None): + sql = "SELECT pg_total_relation_size(relid) as size_in_bytes FROM pg_catalog.pg_statio_user_tables WHERE relname = '%s'" % table + if schema: + sql += " AND schemaname='%s'" % schema + return sql + + def get_raw_sql_number_columns(self, table, schema=None): + where = "WHERE table_name = '%s'" % table + if schema: + where += " AND table_schema = '%s'" % schema + + sql = "SELECT count(*) as column_count FROM information_schema.columns %s GROUP by table_name order by column_count desc" % where + + return sql + + def get_create_auto_increment_column(self, table, column_name, schema=None): + raise Exception("Method not implemented 'get_create_auto_increment_column'") + + def get_create_auto_increment_column(self, table, column_name, schema=None): + table_name = table + if schema is not None and schema is not "": + table_name = "%s.%s" % (schema, table) + + sql = list() + sql.append("CREATE INDEX %(table)s_%(column)s_idx ON %(table)s USING btree (%(column)s);" % { + "table": table_name, + "column": column_name}) + + return sql + + def get_table_name(self, table): + return table + + def get_schema_name(self, schema): + return schema diff --git a/api/lib/db_sqlite.py b/api/lib/db_sqlite.py new file mode 100644 index 000000000..71f28b449 --- /dev/null +++ b/api/lib/db_sqlite.py @@ -0,0 +1,43 @@ +from sqlalchemy.dialects import sqlite + + + +class DBSqlite: + def __init__(self, db): + self.db = db + + def get_string_connection(self): + url = "sqlite:///%s" % self.db['PATH_FILE'] + return url + + def get_engine(self): + return "sqlite3" + + def get_dialect(self): + return sqlite + + def get_raw_sql_limit(self, line_number): + return "LIMIT(%s)" % line_number + + def get_table_properties(self, table, schema=None): + # TODO: Criar uma query que retorne a lista de colunas e o tipo. + # esta funcao tem esses dados https://www.sqlite.org/pragma.html#pragma_table_info + raise("Method not implemented 'get_table_properties'") + + def get_table_name(self, table): + return table + + def get_schema_name(self, schema): + return schema + + def get_raw_sql_table_rows(self, table, schema=None): + raise Exception("Method not implemented 'get_raw_sql_table_rows'") + + def get_raw_sql_size_table_bytes(self, table, schema=None): + raise Exception("Method not implemented 'get_raw_sql_size_table_bytes'") + + def get_raw_sql_number_columns(self, table, schema=None): + raise Exception("Method not implemented 'get_raw_sql_number_columns'") + + def get_create_auto_increment_column(self, table, column_name, schema=None): + raise Exception("Method not implemented 'get_create_auto_increment_column'") \ No newline at end of file diff --git a/api/lib/sqlalchemy_wrapper.py b/api/lib/sqlalchemy_wrapper.py index 7c130633f..f3d81eafa 100644 --- a/api/lib/sqlalchemy_wrapper.py +++ b/api/lib/sqlalchemy_wrapper.py @@ -14,107 +14,13 @@ import threading +from lib.db_oracle import DBOracle +from lib.db_sqlite import DBSqlite +from lib.db_postgresql import DBPostgresql -class DBOracle: - def __init__(self, db): - self.db = db - - def get_string_connection(self): - url = ( - "oracle://%(username)s:%(password)s@(DESCRIPTION=(" + - "ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=%(host)s)(" + - "PORT=%(port)s)))(CONNECT_DATA=(SERVER=dedicated)(" + - "SERVICE_NAME=%(database)s)))" - ) % { - 'username': self.db['USER'], 'password': self.db['PASSWORD'], - 'host': self.db['HOST'], 'port': self.db['PORT'], - 'database': self.db['DATABASE'] - } - return url - - def get_engine(self): - return "oracle" - - def get_dialect(self): - return oracle - - def get_raw_sql_limit(self, offset, limit): - return "OFFSET %s ROWS FETCH NEXT %s ROWS ONLY" % (offset, limit) - - def get_raw_sql_column_properties(self, table, schema=None): - sql = "SELECT column_name, data_type FROM all_tab_columns WHERE table_name='%s'" % table - if schema: - sql += " AND owner='%s'" % schema - return sql - - def get_raw_sql_table_rows(self, table, schema=None): - sql = "SELECT NUM_ROWS FROM dba_tables WHERE TABLE_NAME='%s'" % table - if schema: - sql += " AND owner='%s'" % schema - return sql - - def get_raw_sql_size_table_bytes(self, table, schema=None): - sql = "SELECT BYTES FROM dba_segments WHERE segment_type='TABLE' and segment_name='%s'" % table - if schema: - sql += " AND owner='%s'" % schema - return sql - - def get_raw_sql_number_columns(self, table, schema=None): - sql = "SELECT COUNT(*) FROM all_tab_columns WHERE TABLE_NAME = '%s'" % table - if schema: - sql += " AND owner = '%s'" % schema - return sql - - def get_create_auto_increment_column(self, table, column_name, schema=None): - table_name = table - if schema is not None and schema is not "": - table_name = "%s.%s" % (schema, table) - - sql = list() - sql.append("alter table %(table)s add %(column_name)s number" % {"table": table_name, "column_name": column_name}) - sql.append("create sequence seq_id" % {"table": table_name, "column_name": column_name}) - sql.append("update %(table)s set %(column_name)s = seq_id.nextval" % {"table": table_name, "column_name": column_name}) - sql.append("drop sequence seq_id" % {"table": table_name, "column_name": column_name}) - - return sql - - def get_table_name(self, table): - return table.upper() - - def get_schema_name(self, schema): - return schema.upper() - - -class DBSqlite: - def __init__(self, db): - self.db = db - - def get_string_connection(self): - url = "sqlite:///%s" % self.db['PATH_FILE'] - return url - - def get_engine(self): - return "sqlite3" - - def get_dialect(self): - return sqlite - - def get_raw_sql_limit(self, line_number): - return "LIMIT(%s)" % line_number - - def get_table_properties(self, table, schema=None): - raise("Implement this method") - - def get_table_name(self, table): - return table - - def get_schema_name(self, schema): - return schema - - -# classe generica - nao ligada a este problema class DBBase: - available_engines = list(['sqlite3', 'oracle']) + # Django database engines + available_engines = list(['sqlite3', 'oracle', 'postgresql_psycopg2']) def __init__(self, database, credentials=None): @@ -156,6 +62,28 @@ def prepare_connection(self, db_name): connection_data['USER'] = db_settings_django['USER'] connection_data['PASSWORD'] = db_settings_django['PASSWORD'] + elif connection_data['ENGINE'] == 'postgresql_psycopg2': + connection_data['USER'] = db_settings_django['USER'] + connection_data['PASSWORD'] = db_settings_django['PASSWORD'] + connection_data['HOST'] = db_settings_django['HOST'] + connection_data['PORT'] = db_settings_django['PORT'] + connection_data['DATABASE'] = db_settings_django['NAME'] + + # Para o caso do banco de dados estar configurado para um SCHEMA especifico. + try: + # Considerando que o valor de Options é este + # 'OPTIONS': {'options': '-c search_path=dri_catalog,public'} + # procura pela chave search_path e separa os schemas na ',' + # o schema usado sera o primeiro + opt = db_settings_django['OPTIONS']['options'] + if opt.find('search_path='): + a = opt.split('search_path=')[1] + schema = a.split(',')[0] + self.schema = schema + except: + self.schema = None + + else: raise Exception('Unknown database') @@ -171,12 +99,22 @@ def set_database(self, db_settings): if db_settings['ENGINE'] == 'oracle': return DBOracle(db_settings) + if db_settings['ENGINE'] == 'postgresql_psycopg2': + return DBPostgresql(db_settings) + def get_string_connection(self): return self.database.get_string_connection() def get_engine(self): return self.database.get_engine() + def get_connection_data(self): + return self.connection_data + + def get_connection_schema(self): + return self.schema + + def get_table_columns(self, table, schema=None): # Desabilitar os warnings na criacao da tabela with warnings.catch_warnings(): @@ -235,6 +173,51 @@ def get_count(self, table, schema=None): result = con.execute(stm) return result.fetchone()[0] + def get_table_size_bytes(self, table, schema=None): + """ + Retorna o tamanho de uma tabela em bytes. + """ + try: + sql = self.database.get_raw_sql_size_table_bytes(table, schema=schema) + with self.engine.connect() as con: + queryset = con.execute(sql) + return queryset.fetchone()[0] + except: + try: + # Se nao tiver uma funcao expecifica para contar as colunas + # recupera todas as colunas e retorna a quantidade + columns = self.get_table_columns(table, schema=None) + return len(columns) + except: + return 0 + + def get_table_columns_count(self, table, schema=None): + """ + Retorna a quantidade de colunas de uma tabela. + """ + try: + sql = self.database.get_raw_sql_number_columns(table, schema=schema) + with self.engine.connect() as con: + queryset = con.execute(sql) + return queryset.fetchone()[0] + except: + return 0 + + def get_estimated_rows_count(self, table, schema=None): + """ + Retorna a quantidade de rows estimada para a tabela. + Consultando as tabelas adm do SGBD. + é mas rapida que um count em tabelas grandes, mas pode ser pouco precisa. + """ + try: + sql = self.database.get_raw_sql_table_rows(table, schema=schema) + with self.engine.connect() as con: + queryset = con.execute(sql) + return queryset.fetchone()[0] + except: + return 0 + + def table_exists(self, table, schema=None): table = self.database.get_table_name(table) if schema: @@ -394,8 +377,23 @@ def drop_table(self, table, schema=None): Use this method to Drop a table in the database. """ with self.engine.connect() as con: - drop_stm = self.DropTable(table, schema) - return con.execute(drop_stm) + try: + drop_stm = self.DropTable(table, schema) + + trans = con.begin() + con.execute(drop_stm) + trans.commit() + + if not self.table_exists(table, schema): + return True + else: + trans.rollback() + raise Exception ("Failed to drop the table. Tablename: [%s] Schema: [%s]" % (table, schema)) + except Exception as e: + trans.rollback() + raise e + + # ------------------------ Filtro Por Posicao ---------------------------------- def filter_by_coordinate_square(self, property_ra, property_dec, lowerleft, upperright): diff --git a/api/product/importproduct.py b/api/product/importproduct.py index d50e95906..52fa1c628 100644 --- a/api/product/importproduct.py +++ b/api/product/importproduct.py @@ -12,7 +12,7 @@ class ImportTargetListCSV: def __init__(self): # Get an instance of a logger - self.logger = logging.getLogger('product_import') + self.logger = logging.getLogger('import_target_csv') self.csv_separator = ',' @@ -72,6 +72,9 @@ def start_import(self, user_id, data): self.logger.debug(data) + # Instancia do banco de dados + self.db = CatalogDB() + # Recuperar o Usuario pelo ID user = self.set_user(user_id) self.logger.debug('User: %s' % user.username) @@ -113,8 +116,16 @@ def start_import(self, user_id, data): # primeira linha de dados self._columns_type = self.get_columns_type(self._table_data[0]) + # Recuperar o nome do schema se o banco for postgresq. + # TODO: Não tenho certeza do impact desta parte no oracle, por isso + # estou condicionando a regra ao postgresql. + if self.db.get_engine() == 'postgresql_psycopg2': + self.schema = self.db.get_connection_schema() + self.logger.debug('Postgresql Schema: %s' % self.schema) + + # tendo os dados e o nome das colunas pode ser criado a tabela com SqlAlchemy - self.table = self.create_table(self.internal_name, self._columns_type) + self.table = self.create_table(self.internal_name, self._columns_type, schema=self.schema) # Inserir os dados na nova tabela self.populate_table(self.table, self._table_data) @@ -318,19 +329,17 @@ def get_associations(self): return associations # %%%%%%%%%%%%%%%%%%%%%%%%%% Create Table %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - def create_table(self, name, columns_type): + def create_table(self, name, columns_type, schema=None): self.logger.info('Create table with SqlAlchemy') self.logger.debug('Table name: %s' % name) - self.db = CatalogDB() - cols = list() for col in columns_type: cols.append(columns_type.get(col)) try: - table = self.db.create_table(name, columns=cols) + table = self.db.create_table(name, columns=cols, schema=schema) self.logger.debug('Table %s Created' % name) @@ -339,7 +348,7 @@ def create_table(self, name, columns_type): except Exception as e: raise e - def populate_table(self, table, data): + def populate_table(self, table, data ): self.logger.info('Populate Table') try: diff --git a/api/product/serializers.py b/api/product/serializers.py index 2fea7be3f..370428cfd 100644 --- a/api/product/serializers.py +++ b/api/product/serializers.py @@ -214,8 +214,6 @@ class Meta: 'pgr_group', 'pgr_display_name', - 'ctl_num_objects', - 'epr_original_id', 'epr_name', 'epr_username', @@ -227,6 +225,8 @@ class Meta: 'tbl_schema', 'tbl_name', 'tbl_size', + 'tbl_num_columns', + 'tbl_rows', 'release_id', 'release_display_name', diff --git a/api/product_classifier/fixtures/initial_data.json b/api/product_classifier/fixtures/initial_data.json index f1177826f..82584c438 100644 --- a/api/product_classifier/fixtures/initial_data.json +++ b/api/product_classifier/fixtures/initial_data.json @@ -1,25902 +1,26142 @@ -[ -{ - "model": "product_classifier.productgroup", - "pk": 1, - "fields": { - "pgr_name": "targets", - "pgr_display_name": "Targets", - "is_catalog": true - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 2, - "fields": { - "pgr_name": "value_added_catalogs", - "pgr_display_name": "Value-Added Catalogs", - "is_catalog": true - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 3, - "fields": { - "pgr_name": "simulations", - "pgr_display_name": "Simulations", - "is_catalog": true - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 4, - "fields": { - "pgr_name": "objects_catalog", - "pgr_display_name": "Objects Catalog", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 5, - "fields": { - "pgr_name": "galaxy_properties", - "pgr_display_name": "Galaxy Properties", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 6, - "fields": { - "pgr_name": "mangle_mask", - "pgr_display_name": "Mangle Mask", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 7, - "fields": { - "pgr_name": "photoz", - "pgr_display_name": "Photo-z", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 8, - "fields": { - "pgr_name": "training_set", - "pgr_display_name": "Training Set", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 9, - "fields": { - "pgr_name": "validation_set", - "pgr_display_name": "Validation Set", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 10, - "fields": { - "pgr_name": "sg_classification", - "pgr_display_name": "S/G Classification", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 11, - "fields": { - "pgr_name": "zeropoints", - "pgr_display_name": "Zeropoints", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 12, - "fields": { - "pgr_name": "external_catalogs", - "pgr_display_name": "External Catalogs", - "is_catalog": true - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 13, - "fields": { - "pgr_name": "systematic_maps", - "pgr_display_name": "Systematic Maps", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 14, - "fields": { - "pgr_name": "depth_maps", - "pgr_display_name": "Depth Maps", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 15, - "fields": { - "pgr_name": "mangle_maps", - "pgr_display_name": "Mangle Healpix Maps", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 16, - "fields": { - "pgr_name": "effective_map", - "pgr_display_name": "Effective Map", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 17, - "fields": { - "pgr_name": "photoz_maps", - "pgr_display_name": "Photo-z Maps", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 18, - "fields": { - "pgr_name": "images", - "pgr_display_name": "Images", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 19, - "fields": { - "pgr_name": "training_subset", - "pgr_display_name": "Training Subset", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 20, - "fields": { - "pgr_name": "training_file", - "pgr_display_name": "Training File", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 21, - "fields": { - "pgr_name": "training_statistic", - "pgr_display_name": "Training Statistic", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 22, - "fields": { - "pgr_name": "region_selection", - "pgr_display_name": "Region Selection", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 23, - "fields": { - "pgr_name": "aux", - "pgr_display_name": "Auxiliary", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 24, - "fields": { - "pgr_name": "bright_mask", - "pgr_display_name": "Bright Mask", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productgroup", - "pk": 25, - "fields": { - "pgr_name": "other", - "pgr_display_name": "Other", - "is_catalog": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 1, - "fields": { - "pcl_name": "objects", - "pcl_group": 1, - "pcl_display_name": "Objects", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 2, - "fields": { - "pcl_name": "galaxy_clusters", - "pcl_group": 1, - "pcl_display_name": "Galaxy Clusters", - "pcl_is_system": true - } -}, -{ - "model": "product_classifier.productclass", - "pk": 3, - "fields": { - "pcl_name": "qsos", - "pcl_group": 1, - "pcl_display_name": "QSOs", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 4, - "fields": { - "pcl_name": "training_set_spectroscopy", - "pcl_group": 1, - "pcl_display_name": "Training Set Spectroscopy", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 5, - "fields": { - "pcl_name": "stellar_systems", - "pcl_group": 1, - "pcl_display_name": "Stellar Systems", - "pcl_is_system": true - } -}, -{ - "model": "product_classifier.productclass", - "pk": 6, - "fields": { - "pcl_name": "strong_lensing", - "pcl_group": 1, - "pcl_display_name": "Strong Lensing", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 7, - "fields": { - "pcl_name": "color_outliers", - "pcl_group": 1, - "pcl_display_name": "Color Outliers", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 8, - "fields": { - "pcl_name": "external_astrometry", - "pcl_group": 12, - "pcl_display_name": "Astrometry", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 11, - "fields": { - "pcl_name": "coadd_objects", - "pcl_group": 4, - "pcl_display_name": "Coadd Objects", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 14, - "fields": { - "pcl_name": "lephare", - "pcl_group": 5, - "pcl_display_name": "Lephare", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 15, - "fields": { - "pcl_name": "mass_color", - "pcl_group": 5, - "pcl_display_name": "Mass Color", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 16, - "fields": { - "pcl_name": "simulations", - "pcl_group": 3, - "pcl_display_name": "Simulations", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 17, - "fields": { - "pcl_name": "weighted_training_set", - "pcl_group": 8, - "pcl_display_name": "Training Set", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 18, - "fields": { - "pcl_name": "validation_set", - "pcl_group": 9, - "pcl_display_name": "Validation Set", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 26, - "fields": { - "pcl_name": "annz", - "pcl_group": 7, - "pcl_display_name": "ANNz", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 28, - "fields": { - "pcl_name": "lephare_photoz", - "pcl_group": 7, - "pcl_display_name": "Lephare Photo-z", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 29, - "fields": { - "pcl_name": "slr", - "pcl_group": 11, - "pcl_display_name": "SLR", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 31, - "fields": { - "pcl_name": "class_star", - "pcl_group": 10, - "pcl_display_name": "Class Star", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 32, - "fields": { - "pcl_name": "modest", - "pcl_group": 10, - "pcl_display_name": "Modest", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 33, - "fields": { - "pcl_name": "spread_model", - "pcl_group": 10, - "pcl_display_name": "Spread Model", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 46, - "fields": { - "pcl_name": "annz2", - "pcl_group": 7, - "pcl_display_name": "ANNZ2", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 47, - "fields": { - "pcl_name": "arborz", - "pcl_group": 7, - "pcl_display_name": "Arborz", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 48, - "fields": { - "pcl_name": "mlz", - "pcl_group": 7, - "pcl_display_name": "MLZ", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 49, - "fields": { - "pcl_name": "pofz", - "pcl_group": 7, - "pcl_display_name": "P(z)", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 50, - "fields": { - "pcl_name": "skynet", - "pcl_group": 7, - "pcl_display_name": "Skynet", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 51, - "fields": { - "pcl_name": "zebra", - "pcl_group": 7, - "pcl_display_name": "Zebra", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 52, - "fields": { - "pcl_name": "dnf", - "pcl_group": 7, - "pcl_display_name": "DNF", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 53, - "fields": { - "pcl_name": "y1_modest_v1", - "pcl_group": 10, - "pcl_display_name": "Y1 Modest v1", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 54, - "fields": { - "pcl_name": "y1_modest_v2", - "pcl_group": 10, - "pcl_display_name": "Y1 Modest v2", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 55, - "fields": { - "pcl_name": "systematic_maps_sky_sigma", - "pcl_group": 13, - "pcl_display_name": "Sky Sigma", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 56, - "fields": { - "pcl_name": "systematic_maps_count_total", - "pcl_group": 13, - "pcl_display_name": "Count Total", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 58, - "fields": { - "pcl_name": "systematic_maps_airmass", - "pcl_group": 13, - "pcl_display_name": "Airmass", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 59, - "fields": { - "pcl_name": "systematic_maps_fwhm", - "pcl_group": 13, - "pcl_display_name": "FWHM", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 60, - "fields": { - "pcl_name": "systematic_maps_sky_brightness", - "pcl_group": 13, - "pcl_display_name": "Sky Brightness", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 61, - "fields": { - "pcl_name": "systematic_maps_mag_limit", - "pcl_group": 13, - "pcl_display_name": "Mag Limit", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 62, - "fields": { - "pcl_name": "systematic_maps_exposure_time", - "pcl_group": 13, - "pcl_display_name": "Exposure Time", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 63, - "fields": { - "pcl_name": "mag_auto", - "pcl_group": 14, - "pcl_display_name": "Mag Auto", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 64, - "fields": { - "pcl_name": "mag_aper_4", - "pcl_group": 14, - "pcl_display_name": "Mag Aper 4", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 66, - "fields": { - "pcl_name": "mag_psf", - "pcl_group": 14, - "pcl_display_name": "Mag PSF", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 67, - "fields": { - "pcl_name": "mangle_maps_exposure_time", - "pcl_group": 15, - "pcl_display_name": "Exposure Time", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 68, - "fields": { - "pcl_name": "mangle_maps_mag_limit", - "pcl_group": 15, - "pcl_display_name": "Mag Limit", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 69, - "fields": { - "pcl_name": "mangle_maps_coadds", - "pcl_group": 15, - "pcl_display_name": "Mangle Healpix Coadds", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 70, - "fields": { - "pcl_name": "mangle_maps_weight", - "pcl_group": 15, - "pcl_display_name": "Weight", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 71, - "fields": { - "pcl_name": "mangle_maps_area_fraction", - "pcl_group": 15, - "pcl_display_name": "Area Fraction", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 72, - "fields": { - "pcl_name": "effective_map_healpix_coadds", - "pcl_group": 16, - "pcl_display_name": "Effective Map Healpix Coadds", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 73, - "fields": { - "pcl_name": "region_selection", - "pcl_group": 16, - "pcl_display_name": "Region Selection", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 74, - "fields": { - "pcl_name": "annz_median", - "pcl_group": 17, - "pcl_display_name": "Annz Median", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 75, - "fields": { - "pcl_name": "annz_error", - "pcl_group": 17, - "pcl_display_name": "Annz Error", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 76, - "fields": { - "pcl_name": "annz2_median", - "pcl_group": 17, - "pcl_display_name": "Annz2 Median", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 77, - "fields": { - "pcl_name": "annz2_error", - "pcl_group": 17, - "pcl_display_name": "Annz2 Error", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 78, - "fields": { - "pcl_name": "arborz_median", - "pcl_group": 17, - "pcl_display_name": "Arborz Median", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 79, - "fields": { - "pcl_name": "arborz_error", - "pcl_group": 17, - "pcl_display_name": "Arborz Error", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 80, - "fields": { - "pcl_name": "mlz_median", - "pcl_group": 17, - "pcl_display_name": "MLZ Median", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 81, - "fields": { - "pcl_name": "mlz_error", - "pcl_group": 17, - "pcl_display_name": "MLZ Error", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 82, - "fields": { - "pcl_name": "lephare_median", - "pcl_group": 17, - "pcl_display_name": "Lephare Median", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 84, - "fields": { - "pcl_name": "lephare_error", - "pcl_group": 17, - "pcl_display_name": "Lephare Error", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 85, - "fields": { - "pcl_name": "molygon", - "pcl_group": 6, - "pcl_display_name": "Molygon", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 86, - "fields": { - "pcl_name": "starbitmask", - "pcl_group": 6, - "pcl_display_name": "Starbitmask", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 87, - "fields": { - "pcl_name": "molygon_coadds", - "pcl_group": 6, - "pcl_display_name": "Molygon Coadds", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 88, - "fields": { - "pcl_name": "raw_images", - "pcl_group": 18, - "pcl_display_name": "Raw Images", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 89, - "fields": { - "pcl_name": "calibration_images", - "pcl_group": 18, - "pcl_display_name": "Calibration Images", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 90, - "fields": { - "pcl_name": "reduced_images", - "pcl_group": 18, - "pcl_display_name": "Reduced Images", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 91, - "fields": { - "pcl_name": "coadd_images", - "pcl_group": 18, - "pcl_display_name": "Coadd Images", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 92, - "fields": { - "pcl_name": "coadd_molygon", - "pcl_group": 23, - "pcl_display_name": "Coadd Molygon", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 93, - "fields": { - "pcl_name": "coadd_healpix", - "pcl_group": 23, - "pcl_display_name": "Coadd Healpix", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 94, - "fields": { - "pcl_name": "bcc_simulation", - "pcl_group": 3, - "pcl_display_name": "BCC", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 95, - "fields": { - "pcl_name": "mice_simulation", - "pcl_group": 3, - "pcl_display_name": "Mice", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 96, - "fields": { - "pcl_name": "addstar_simulation", - "pcl_group": 3, - "pcl_display_name": "Addstar", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 97, - "fields": { - "pcl_name": "external_photometry", - "pcl_group": 12, - "pcl_display_name": "Photometry", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 98, - "fields": { - "pcl_name": "external_spectroscopy", - "pcl_group": 1, - "pcl_display_name": "External Spectroscopy", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 99, - "fields": { - "pcl_name": "external_image_quality", - "pcl_group": 12, - "pcl_display_name": "Image Quality", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 100, - "fields": { - "pcl_name": "cluster_members", - "pcl_group": 1, - "pcl_display_name": "Cluster Members", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 101, - "fields": { - "pcl_name": "astrometry_outliers", - "pcl_group": 1, - "pcl_display_name": "Astrometry Outliers", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 102, - "fields": { - "pcl_name": "footprint_map", - "pcl_group": 22, - "pcl_display_name": "Footprint map", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 103, - "fields": { - "pcl_name": "vac_generic", - "pcl_group": 2, - "pcl_display_name": "Generic", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 122, - "fields": { - "pcl_name": "training_subset", - "pcl_group": 19, - "pcl_display_name": "Training Subset", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 123, - "fields": { - "pcl_name": "validation_subset", - "pcl_group": 19, - "pcl_display_name": "Validation Subset", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 124, - "fields": { - "pcl_name": "annz_training", - "pcl_group": 20, - "pcl_display_name": "ANNz Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 125, - "fields": { - "pcl_name": "annz2_training", - "pcl_group": 20, - "pcl_display_name": "ANNZ2 Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 126, - "fields": { - "pcl_name": "arborz_training", - "pcl_group": 20, - "pcl_display_name": "Arborz Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 127, - "fields": { - "pcl_name": "dnf_training", - "pcl_group": 20, - "pcl_display_name": "DNF Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 128, - "fields": { - "pcl_name": "mlz_training", - "pcl_group": 20, - "pcl_display_name": "MLZ Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 129, - "fields": { - "pcl_name": "pofz_training", - "pcl_group": 20, - "pcl_display_name": "P(z) Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 130, - "fields": { - "pcl_name": "skynet_training", - "pcl_group": 20, - "pcl_display_name": "Skynet Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 131, - "fields": { - "pcl_name": "zebra_training", - "pcl_group": 20, - "pcl_display_name": "Zebra Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 132, - "fields": { - "pcl_name": "lephare_training", - "pcl_group": 20, - "pcl_display_name": "Lephare Training", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 133, - "fields": { - "pcl_name": "annz_stats", - "pcl_group": 21, - "pcl_display_name": "ANNz Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 134, - "fields": { - "pcl_name": "annz2_stats", - "pcl_group": 21, - "pcl_display_name": "ANNZ2 Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 135, - "fields": { - "pcl_name": "arborz_stats", - "pcl_group": 21, - "pcl_display_name": "Arborz Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 136, - "fields": { - "pcl_name": "dnf_stats", - "pcl_group": 21, - "pcl_display_name": "DNF Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 137, - "fields": { - "pcl_name": "mlz_stats", - "pcl_group": 21, - "pcl_display_name": "MLZ Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 138, - "fields": { - "pcl_name": "pofz_stats", - "pcl_group": 21, - "pcl_display_name": "P(z) Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 139, - "fields": { - "pcl_name": "skynet_stats", - "pcl_group": 21, - "pcl_display_name": "Skynet Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 140, - "fields": { - "pcl_name": "zebra_stats", - "pcl_group": 21, - "pcl_display_name": "Zebra Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 141, - "fields": { - "pcl_name": "lephare_stats", - "pcl_group": 21, - "pcl_display_name": "Lephare Statistics", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 143, - "fields": { - "pcl_name": "map_images", - "pcl_group": 18, - "pcl_display_name": "Map Images", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 144, - "fields": { - "pcl_name": "bright_mask", - "pcl_group": 24, - "pcl_display_name": "Bright Mask", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 145, - "fields": { - "pcl_name": "vac_cluster", - "pcl_group": 2, - "pcl_display_name": "Cluster Catalog", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 147, - "fields": { - "pcl_name": "vac_ga", - "pcl_group": 2, - "pcl_display_name": "GA", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 148, - "fields": { - "pcl_name": "vac_ge", - "pcl_group": 2, - "pcl_display_name": "GE", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 149, - "fields": { - "pcl_name": "vac_lss", - "pcl_group": 2, - "pcl_display_name": "LSS", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 150, - "fields": { - "pcl_name": "external_vac_lss", - "pcl_group": 2, - "pcl_display_name": "External VAC LSS", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 151, - "fields": { - "pcl_name": "external_footprint_map", - "pcl_group": 22, - "pcl_display_name": "External Footprint Map", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 152, - "fields": { - "pcl_name": "y1_modest_v3", - "pcl_group": 10, - "pcl_display_name": "Y1 Modest v3", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 153, - "fields": { - "pcl_name": "unmatched_clusters", - "pcl_group": 1, - "pcl_display_name": "Unmatched Clusters", - "pcl_is_system": true - } -}, -{ - "model": "product_classifier.productclass", - "pk": 154, - "fields": { - "pcl_name": "systematic_maps_n_images", - "pcl_group": 13, - "pcl_display_name": "NImages", - "pcl_is_system": false - } -}, -{ - "model": "product_classifier.productclass", - "pk": 155, - "fields": { - "pcl_name": "matched_clusters", - "pcl_group": 1, - "pcl_display_name": "Matched Clusters", - "pcl_is_system": true - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 1, - "fields": { - "cct_name": "Astrometry" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 2, - "fields": { - "cct_name": "Base" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 3, - "fields": { - "cct_name": "Common" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 4, - "fields": { - "cct_name": "Flux" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 5, - "fields": { - "cct_name": "Magnitude" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 6, - "fields": { - "cct_name": "Mask" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 7, - "fields": { - "cct_name": "Model Fit" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 8, - "fields": { - "cct_name": "Quality" - } -}, -{ - "model": "product_classifier.contentcategory", - "pk": 9, - "fields": { - "cct_name": "Shape" - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1, - "fields": { - "pcc_class": null, - "pcc_category": 3, - "pcc_name": "id", - "pcc_display_name": "ID", - "pcc_ucd": "meta.id;meta.main", - "pcc_unit": "", - "pcc_reference": null, - "pcc_mandatory": true - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 2, - "fields": { - "pcc_class": null, - "pcc_category": 1, - "pcc_name": "RA", - "pcc_display_name": "RA", - "pcc_ucd": "pos.eq.ra;meta.main", - "pcc_unit": "deg", - "pcc_reference": "J2000", - "pcc_mandatory": true - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3, - "fields": { - "pcc_class": null, - "pcc_category": 1, - "pcc_name": "Dec", - "pcc_display_name": "Dec", - "pcc_ucd": "pos.eq.dec;meta.main", - "pcc_unit": "deg", - "pcc_reference": "J2000", - "pcc_mandatory": true - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 4, - "fields": { - "pcc_class": null, - "pcc_category": 2, - "pcc_name": "tilename", - "pcc_display_name": "Tilename", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 5, - "fields": { - "pcc_class": null, - "pcc_category": 3, - "pcc_name": "name", - "pcc_display_name": "Name", - "pcc_ucd": "meta.id.assoc", - "pcc_unit": "", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 6, - "fields": { - "pcc_class": null, - "pcc_category": 3, - "pcc_name": "l", - "pcc_display_name": "l", - "pcc_ucd": "pos.galactic.lat", - "pcc_unit": "deg", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 7, - "fields": { - "pcc_class": null, - "pcc_category": 3, - "pcc_name": "b", - "pcc_display_name": "b", - "pcc_ucd": "pos.galactic.lon", - "pcc_unit": "deg", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 8, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_g", - "pcc_display_name": "g", - "pcc_ucd": "phot.mag;meta.main;em.opt.g", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 9, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_r", - "pcc_display_name": "r", - "pcc_ucd": "phot.mag;meta.main;em.opt.r", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 10, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_i", - "pcc_display_name": "i", - "pcc_ucd": "phot.mag;meta.main;em.opt.i", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 11, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_z", - "pcc_display_name": "z", - "pcc_ucd": "phot.mag;meta.main;em.opt.z", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 12, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_Y", - "pcc_display_name": "Y", - "pcc_ucd": "phot.mag;meta.main;em.opt.Y", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 13, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_J", - "pcc_display_name": "J", - "pcc_ucd": "phot.mag;meta.main;em.opt.J", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 14, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_H", - "pcc_display_name": "H", - "pcc_ucd": "phot.mag;meta.main;em.opt.H", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 15, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_K", - "pcc_display_name": "K", - "pcc_ucd": "phot.mag;meta.main;em.opt.K", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 16, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_g", - "pcc_display_name": "g_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 17, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_r", - "pcc_display_name": "r_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 18, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_i", - "pcc_display_name": "i_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 19, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_z", - "pcc_display_name": "z_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 20, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_Y", - "pcc_display_name": "Y_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 21, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_J", - "pcc_display_name": "J_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.J", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 22, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_H", - "pcc_display_name": "H_err", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.H", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 23, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "mag_err_K", - "pcc_display_name": "K_err_K", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.K", - "pcc_unit": "mag", - "pcc_reference": "AB", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 24, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "photo_z", - "pcc_display_name": "Photo-z", - "pcc_ucd": "src.redshift.phot", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 25, - "fields": { - "pcc_class": 1, - "pcc_category": null, - "pcc_name": "photo_z_err", - "pcc_display_name": "photo-z err", - "pcc_ucd": "stat.error;src.redshift.phot", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 26, - "fields": { - "pcc_class": 98, - "pcc_category": null, - "pcc_name": "mag_i", - "pcc_display_name": "i", - "pcc_ucd": "phot.mag;meta.main;em.opt.i", - "pcc_unit": "mag", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 27, - "fields": { - "pcc_class": 98, - "pcc_category": null, - "pcc_name": "z", - "pcc_display_name": "Spec-z", - "pcc_ucd": "src.redshift", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 28, - "fields": { - "pcc_class": 98, - "pcc_category": null, - "pcc_name": "z_err", - "pcc_display_name": "Spec-z err", - "pcc_ucd": "stat.error;src.redshift", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 29, - "fields": { - "pcc_class": 98, - "pcc_category": null, - "pcc_name": "flag", - "pcc_display_name": "Spec-z quality", - "pcc_ucd": "src.redshift;meta.code.qual", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 30, - "fields": { - "pcc_class": 98, - "pcc_category": null, - "pcc_name": "source", - "pcc_display_name": "Spec-z source", - "pcc_ucd": "src.redshift;meta.table", - "pcc_unit": "src", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 31, - "fields": { - "pcc_class": 2, - "pcc_category": null, - "pcc_name": "richness", - "pcc_display_name": "Richness", - "pcc_ucd": "src.class.richness", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 32, - "fields": { - "pcc_class": 2, - "pcc_category": null, - "pcc_name": "radius_mpc", - "pcc_display_name": "Radius", - "pcc_ucd": "phys.size.radius", - "pcc_unit": "Mpc", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 33, - "fields": { - "pcc_class": 6, - "pcc_category": null, - "pcc_name": "radius_mpc", - "pcc_display_name": "Radius", - "pcc_ucd": "phys.size.radius", - "pcc_unit": "Mpc", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 34, - "fields": { - "pcc_class": 6, - "pcc_category": null, - "pcc_name": "multiplicity", - "pcc_display_name": "Multiplicity", - "pcc_ucd": "meta.code.multip", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 35, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "dist_mod", - "pcc_display_name": "Distance modulus", - "pcc_ucd": "phot.mag.distMod", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 36, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "log_age", - "pcc_display_name": "Log age", - "pcc_ucd": "time.age", - "pcc_unit": "log(yrs)", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 37, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "abund_z", - "pcc_display_name": "[Fe/H]", - "pcc_ucd": "phys.abund.Z", - "pcc_unit": null, - "pcc_reference": "[Fe/H] = log10 (Z/0.018)", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 38, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "color_excess", - "pcc_display_name": "E(B-V)", - "pcc_ucd": "phot.color.excess", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 39, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "major_axis", - "pcc_display_name": "Major axis", - "pcc_ucd": "phys.angSize.smajAxis", - "pcc_unit": "arcmin", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 40, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "ellipticity", - "pcc_display_name": "Ellipticity", - "pcc_ucd": "src.ellipticity", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 41, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "richness", - "pcc_display_name": "# of stars", - "pcc_ucd": "src;meta.number", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 42, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "luminosity", - "pcc_display_name": "Luminosity", - "pcc_ucd": "phys.luminosity", - "pcc_unit": "Mabs = 4.8 - 2.5*log(L/L_sun) for V band", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 43, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "stellar_mass", - "pcc_display_name": "Stellar mass", - "pcc_ucd": "phys.mass", - "pcc_unit": "M_sun", - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 44, - "fields": { - "pcc_class": 5, - "pcc_category": null, - "pcc_name": "radius_mpc", - "pcc_display_name": "Radius", - "pcc_ucd": "phys.size.radius", - "pcc_unit": "Mpc", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 45, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_g", - "pcc_display_name": "Alphawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 46, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_i", - "pcc_display_name": "Alphawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 47, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_r", - "pcc_display_name": "Alphawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 48, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_y", - "pcc_display_name": "Alphawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 49, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_z", - "pcc_display_name": "Alphawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 50, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "a_image", - "pcc_display_name": "A image", - "pcc_ucd": "phys.size.smajAxis;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 51, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "background_g", - "pcc_display_name": "Background g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 52, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "background_i", - "pcc_display_name": "Background i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 53, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "background_r", - "pcc_display_name": "Background r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 54, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "background_y", - "pcc_display_name": "Background Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 55, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "background_z", - "pcc_display_name": "Background z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 56, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "b_image", - "pcc_display_name": "B image", - "pcc_ucd": "phys.size.sminAxis;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 57, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "catalogid_g", - "pcc_display_name": "Catalogid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 58, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "catalogid_i", - "pcc_display_name": "Catalogid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 59, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "catalogid_r", - "pcc_display_name": "Catalogid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 60, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "catalogid_y", - "pcc_display_name": "Catalogid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 61, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "catalogid_z", - "pcc_display_name": "Catalogid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 62, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_model_g", - "pcc_display_name": "Chi2 model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 63, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_model_i", - "pcc_display_name": "Chi2 model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 64, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_model_r", - "pcc_display_name": "Chi2 model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 65, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_model_y", - "pcc_display_name": "Chi2 model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 66, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_model_z", - "pcc_display_name": "Chi2 model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 67, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_psf_g", - "pcc_display_name": "Chi2 psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 68, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_psf_i", - "pcc_display_name": "Chi2 psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 69, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_psf_r", - "pcc_display_name": "Chi2 psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 70, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_psf_y", - "pcc_display_name": "Chi2 psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 71, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_psf_z", - "pcc_display_name": "Chi2 psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 72, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "class_star_g", - "pcc_display_name": "Class star g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 73, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "class_star_i", - "pcc_display_name": "Class star i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 74, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "class_star_r", - "pcc_display_name": "Class star r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 75, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "class_star_y", - "pcc_display_name": "Class star Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 76, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "class_star_z", - "pcc_display_name": "Class star z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 77, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "coadd_objects_id", - "pcc_display_name": "Coadd objects id", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 78, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "concentration_model_g", - "pcc_display_name": "Concentration model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 79, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "concentration_model_i", - "pcc_display_name": "Concentration model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 80, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "concentration_model_r", - "pcc_display_name": "Concentration model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 81, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "concentration_model_y", - "pcc_display_name": "Concentration model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 82, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "concentration_model_z", - "pcc_display_name": "Concentration model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 83, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_g", - "pcc_display_name": "Deltawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 84, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_i", - "pcc_display_name": "Deltawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 85, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_r", - "pcc_display_name": "Deltawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 86, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_y", - "pcc_display_name": "Deltawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 87, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_z", - "pcc_display_name": "Deltawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 88, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "duration_analysis_g", - "pcc_display_name": "Duration analysis g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 89, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "duration_analysis_i", - "pcc_display_name": "Duration analysis i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 90, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "duration_analysis_r", - "pcc_display_name": "Duration analysis r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 91, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "duration_analysis_y", - "pcc_display_name": "Duration analysis Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 92, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "duration_analysis_z", - "pcc_display_name": "Duration analysis z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 93, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_g", - "pcc_display_name": "Ellip1errmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 94, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_i", - "pcc_display_name": "Ellip1errmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 95, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_r", - "pcc_display_name": "Ellip1errmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 96, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_y", - "pcc_display_name": "Ellip1errmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 97, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_z", - "pcc_display_name": "Ellip1errmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 98, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1model_world_g", - "pcc_display_name": "Ellip1model world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 99, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1model_world_i", - "pcc_display_name": "Ellip1model world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 100, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1model_world_r", - "pcc_display_name": "Ellip1model world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 101, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1model_world_y", - "pcc_display_name": "Ellip1model world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 102, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip1model_world_z", - "pcc_display_name": "Ellip1model world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 103, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_g", - "pcc_display_name": "Ellip2errmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 104, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_i", - "pcc_display_name": "Ellip2errmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 105, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_r", - "pcc_display_name": "Ellip2errmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 106, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_y", - "pcc_display_name": "Ellip2errmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 107, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_z", - "pcc_display_name": "Ellip2errmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 108, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2model_world_g", - "pcc_display_name": "Ellip2model world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 109, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2model_world_i", - "pcc_display_name": "Ellip2model world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 110, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2model_world_r", - "pcc_display_name": "Ellip2model world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 111, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2model_world_y", - "pcc_display_name": "Ellip2model world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 112, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellip2model_world_z", - "pcc_display_name": "Ellip2model world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 113, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_g", - "pcc_display_name": "Ellipcorrmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 114, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_i", - "pcc_display_name": "Ellipcorrmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 115, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_r", - "pcc_display_name": "Ellipcorrmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 116, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_y", - "pcc_display_name": "Ellipcorrmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 117, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_z", - "pcc_display_name": "Ellipcorrmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 118, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipticity_g", - "pcc_display_name": "Ellipticity g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 119, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipticity_i", - "pcc_display_name": "Ellipticity i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 120, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipticity_r", - "pcc_display_name": "Ellipticity r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 121, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipticity_y", - "pcc_display_name": "Ellipticity Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 122, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "ellipticity_z", - "pcc_display_name": "Ellipticity z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 123, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "equinox", - "pcc_display_name": "Equinox", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 124, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errawin_world_g", - "pcc_display_name": "Errawin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 125, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errawin_world_i", - "pcc_display_name": "Errawin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 126, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errawin_world_r", - "pcc_display_name": "Errawin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 127, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errawin_world_y", - "pcc_display_name": "Errawin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 128, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errawin_world_z", - "pcc_display_name": "Errawin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 129, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errbwin_world_g", - "pcc_display_name": "Errbwin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 130, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errbwin_world_i", - "pcc_display_name": "Errbwin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 131, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errbwin_world_r", - "pcc_display_name": "Errbwin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 132, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errbwin_world_y", - "pcc_display_name": "Errbwin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 133, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errbwin_world_z", - "pcc_display_name": "Errbwin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 134, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errb_image_g", - "pcc_display_name": "Errb image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 135, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errb_image_i", - "pcc_display_name": "Errb image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 136, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errb_image_r", - "pcc_display_name": "Errb image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 137, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errb_image_y", - "pcc_display_name": "Errb image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 138, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errb_image_z", - "pcc_display_name": "Errb image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 139, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "errdec", - "pcc_display_name": "Errdec", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 140, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "errra", - "pcc_display_name": "Errra", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 141, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_g", - "pcc_display_name": "Errthetawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 142, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_i", - "pcc_display_name": "Errthetawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 143, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_r", - "pcc_display_name": "Errthetawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 144, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_y", - "pcc_display_name": "Errthetawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 145, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_z", - "pcc_display_name": "Errthetawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 146, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errx2_world", - "pcc_display_name": "Errx2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 147, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxy_world_g", - "pcc_display_name": "Errxy world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 148, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxy_world_i", - "pcc_display_name": "Errxy world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 149, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxy_world_r", - "pcc_display_name": "Errxy world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 150, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxy_world_y", - "pcc_display_name": "Errxy world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 151, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxy_world_z", - "pcc_display_name": "Errxy world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 152, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "erry2_world", - "pcc_display_name": "Erry2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 153, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "errzeropoint_g", - "pcc_display_name": "Errzeropoint g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 154, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "errzeropoint_i", - "pcc_display_name": "Errzeropoint i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 155, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "errzeropoint_r", - "pcc_display_name": "Errzeropoint r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 156, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "errzeropoint_y", - "pcc_display_name": "Errzeropoint Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 157, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "errzeropoint_z", - "pcc_display_name": "Errzeropoint z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 158, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_g", - "pcc_display_name": "Flags g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 159, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_i", - "pcc_display_name": "Flags i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 160, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_model_g", - "pcc_display_name": "Flags model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 161, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_model_i", - "pcc_display_name": "Flags model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 162, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_model_r", - "pcc_display_name": "Flags model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 163, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_model_y", - "pcc_display_name": "Flags model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 164, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_model_z", - "pcc_display_name": "Flags model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 165, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_r", - "pcc_display_name": "Flags r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 166, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_weight_g", - "pcc_display_name": "Flags weight g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 167, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_weight_i", - "pcc_display_name": "Flags weight i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 168, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_weight_r", - "pcc_display_name": "Flags weight r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 169, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_weight_y", - "pcc_display_name": "Flags weight Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 170, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_weight_z", - "pcc_display_name": "Flags weight z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 171, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_y", - "pcc_display_name": "Flags Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 172, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_z", - "pcc_display_name": "Flags z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 173, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_g", - "pcc_display_name": "Fluxerr aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 174, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_i", - "pcc_display_name": "Fluxerr aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 175, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_r", - "pcc_display_name": "Fluxerr aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 176, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_y", - "pcc_display_name": "Fluxerr aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 177, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_z", - "pcc_display_name": "Fluxerr aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 178, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_g", - "pcc_display_name": "Fluxerr aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 179, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_i", - "pcc_display_name": "Fluxerr aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 180, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_r", - "pcc_display_name": "Fluxerr aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 181, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_y", - "pcc_display_name": "Fluxerr aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 182, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_z", - "pcc_display_name": "Fluxerr aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 183, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_g", - "pcc_display_name": "Fluxerr aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 184, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_i", - "pcc_display_name": "Fluxerr aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 185, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_r", - "pcc_display_name": "Fluxerr aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 186, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_y", - "pcc_display_name": "Fluxerr aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 187, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_z", - "pcc_display_name": "Fluxerr aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 188, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_g", - "pcc_display_name": "Fluxerr aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 189, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_i", - "pcc_display_name": "Fluxerr aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 190, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_r", - "pcc_display_name": "Fluxerr aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 191, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_y", - "pcc_display_name": "Fluxerr aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 192, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_z", - "pcc_display_name": "Fluxerr aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 193, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_g", - "pcc_display_name": "Fluxerr aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 194, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_i", - "pcc_display_name": "Fluxerr aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 195, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_r", - "pcc_display_name": "Fluxerr aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 196, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_y", - "pcc_display_name": "Fluxerr aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 197, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_z", - "pcc_display_name": "Fluxerr aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 198, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_g", - "pcc_display_name": "Fluxerr auto g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 199, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_i", - "pcc_display_name": "Fluxerr auto i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 200, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_r", - "pcc_display_name": "Fluxerr auto r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 201, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_y", - "pcc_display_name": "Fluxerr auto Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 202, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_z", - "pcc_display_name": "Fluxerr auto z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 203, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_model_g", - "pcc_display_name": "Fluxerr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 204, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_model_i", - "pcc_display_name": "Fluxerr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 205, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_model_r", - "pcc_display_name": "Fluxerr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 206, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_model_y", - "pcc_display_name": "Fluxerr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 207, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_model_z", - "pcc_display_name": "Fluxerr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 208, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_1_g", - "pcc_display_name": "Flux aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 209, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_1_i", - "pcc_display_name": "Flux aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 210, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_1_r", - "pcc_display_name": "Flux aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 211, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_1_y", - "pcc_display_name": "Flux aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 212, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_1_z", - "pcc_display_name": "Flux aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 213, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_2_g", - "pcc_display_name": "Flux aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 214, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_2_i", - "pcc_display_name": "Flux aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 215, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_2_r", - "pcc_display_name": "Flux aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 216, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_2_y", - "pcc_display_name": "Flux aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 217, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_2_z", - "pcc_display_name": "Flux aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 218, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_3_g", - "pcc_display_name": "Flux aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 219, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_3_i", - "pcc_display_name": "Flux aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 220, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_3_r", - "pcc_display_name": "Flux aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 221, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_3_y", - "pcc_display_name": "Flux aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 222, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_3_z", - "pcc_display_name": "Flux aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 223, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_4_g", - "pcc_display_name": "Flux aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 224, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_4_i", - "pcc_display_name": "Flux aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 225, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_4_r", - "pcc_display_name": "Flux aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 226, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_4_y", - "pcc_display_name": "Flux aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 227, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_4_z", - "pcc_display_name": "Flux aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 228, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_5_g", - "pcc_display_name": "Flux aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 229, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_5_i", - "pcc_display_name": "Flux aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 230, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_5_r", - "pcc_display_name": "Flux aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 231, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_5_y", - "pcc_display_name": "Flux aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 232, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_aper_5_z", - "pcc_display_name": "Flux aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 233, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_auto_g", - "pcc_display_name": "Flux auto g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 234, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_auto_i", - "pcc_display_name": "Flux auto i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 235, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_auto_r", - "pcc_display_name": "Flux auto r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 236, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_auto_y", - "pcc_display_name": "Flux auto Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 237, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_auto_z", - "pcc_display_name": "Flux auto z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 238, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_model_g", - "pcc_display_name": "Flux model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 239, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_model_i", - "pcc_display_name": "Flux model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 240, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_model_r", - "pcc_display_name": "Flux model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 241, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_model_y", - "pcc_display_name": "Flux model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 242, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_model_z", - "pcc_display_name": "Flux model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 243, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "flux_radius_g", - "pcc_display_name": "Flux radius g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 244, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "flux_radius_i", - "pcc_display_name": "Flux radius i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 245, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "flux_radius_r", - "pcc_display_name": "Flux radius r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 246, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "flux_radius_y", - "pcc_display_name": "Flux radius Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 247, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "flux_radius_z", - "pcc_display_name": "Flux radius z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 248, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "fwhm_world_g", - "pcc_display_name": "Fwhm world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 249, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "fwhm_world_i", - "pcc_display_name": "Fwhm world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 250, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "fwhm_world_r", - "pcc_display_name": "Fwhm world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 251, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "fwhm_world_y", - "pcc_display_name": "Fwhm world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 252, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "fwhm_world_z", - "pcc_display_name": "Fwhm world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 253, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "imageid_g", - "pcc_display_name": "Imageid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 254, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "imageid_i", - "pcc_display_name": "Imageid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 255, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "imageid_r", - "pcc_display_name": "Imageid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 256, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "imageid_y", - "pcc_display_name": "Imageid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 257, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "imageid_z", - "pcc_display_name": "Imageid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 258, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "isoarea_world_g", - "pcc_display_name": "Isoarea world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 259, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "isoarea_world_i", - "pcc_display_name": "Isoarea world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 260, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "isoarea_world_r", - "pcc_display_name": "Isoarea world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 261, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "isoarea_world_y", - "pcc_display_name": "Isoarea world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 262, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "isoarea_world_z", - "pcc_display_name": "Isoarea world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 263, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "kron_radius", - "pcc_display_name": "Kron radius", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 264, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_g", - "pcc_display_name": "Magerr aper 10 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 265, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_i", - "pcc_display_name": "Magerr aper 10 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 266, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_r", - "pcc_display_name": "Magerr aper 10 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 267, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_y", - "pcc_display_name": "Magerr aper 10 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 268, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_z", - "pcc_display_name": "Magerr aper 10 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 269, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_g", - "pcc_display_name": "Magerr aper 11 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 270, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_i", - "pcc_display_name": "Magerr aper 11 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 271, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_r", - "pcc_display_name": "Magerr aper 11 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 272, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_y", - "pcc_display_name": "Magerr aper 11 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 273, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_z", - "pcc_display_name": "Magerr aper 11 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 274, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_g", - "pcc_display_name": "Magerr aper 12 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 275, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_i", - "pcc_display_name": "Magerr aper 12 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 276, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_r", - "pcc_display_name": "Magerr aper 12 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 277, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_y", - "pcc_display_name": "Magerr aper 12 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 278, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_z", - "pcc_display_name": "Magerr aper 12 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 279, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_g", - "pcc_display_name": "Magerr aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 280, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_i", - "pcc_display_name": "Magerr aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 281, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_r", - "pcc_display_name": "Magerr aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 282, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_y", - "pcc_display_name": "Magerr aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 283, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_z", - "pcc_display_name": "Magerr aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 284, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_g", - "pcc_display_name": "Magerr aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 285, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_i", - "pcc_display_name": "Magerr aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 286, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_r", - "pcc_display_name": "Magerr aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 287, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_y", - "pcc_display_name": "Magerr aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 288, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_z", - "pcc_display_name": "Magerr aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 289, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_g", - "pcc_display_name": "Magerr aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 290, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_i", - "pcc_display_name": "Magerr aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 291, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_r", - "pcc_display_name": "Magerr aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 292, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_y", - "pcc_display_name": "Magerr aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 293, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_z", - "pcc_display_name": "Magerr aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 294, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_g", - "pcc_display_name": "Magerr aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 295, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_i", - "pcc_display_name": "Magerr aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 296, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_r", - "pcc_display_name": "Magerr aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 297, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_y", - "pcc_display_name": "Magerr aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 298, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_z", - "pcc_display_name": "Magerr aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 299, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_g", - "pcc_display_name": "Magerr aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 300, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_i", - "pcc_display_name": "Magerr aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 301, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_r", - "pcc_display_name": "Magerr aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 302, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_y", - "pcc_display_name": "Magerr aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 303, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_z", - "pcc_display_name": "Magerr aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 304, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_g", - "pcc_display_name": "Magerr aper 6 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 305, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_i", - "pcc_display_name": "Magerr aper 6 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 306, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_r", - "pcc_display_name": "Magerr aper 6 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 307, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_y", - "pcc_display_name": "Magerr aper 6 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 308, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_z", - "pcc_display_name": "Magerr aper 6 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 309, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_g", - "pcc_display_name": "Magerr aper 7 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 310, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_i", - "pcc_display_name": "Magerr aper 7 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 311, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_r", - "pcc_display_name": "Magerr aper 7 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 312, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_y", - "pcc_display_name": "Magerr aper 7 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 313, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_z", - "pcc_display_name": "Magerr aper 7 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 314, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_g", - "pcc_display_name": "Magerr aper 8 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 315, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_i", - "pcc_display_name": "Magerr aper 8 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 316, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_r", - "pcc_display_name": "Magerr aper 8 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 317, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_y", - "pcc_display_name": "Magerr aper 8 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 318, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_z", - "pcc_display_name": "Magerr aper 8 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 319, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_g", - "pcc_display_name": "Magerr aper 9 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 320, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_i", - "pcc_display_name": "Magerr aper 9 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 321, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_r", - "pcc_display_name": "Magerr aper 9 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 322, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_y", - "pcc_display_name": "Magerr aper 9 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 323, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_z", - "pcc_display_name": "Magerr aper 9 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 324, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_auto_g", - "pcc_display_name": "Magerr auto g", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 325, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_auto_i", - "pcc_display_name": "Magerr auto i", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 326, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_auto_r", - "pcc_display_name": "Magerr auto r", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 327, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_auto_y", - "pcc_display_name": "Magerr auto Y", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 328, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_auto_z", - "pcc_display_name": "Magerr auto z", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 329, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_g", - "pcc_display_name": "Magerr hybrid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 330, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_i", - "pcc_display_name": "Magerr hybrid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 331, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_r", - "pcc_display_name": "Magerr hybrid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 332, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_y", - "pcc_display_name": "Magerr hybrid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 333, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_z", - "pcc_display_name": "Magerr hybrid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 334, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_iso_g", - "pcc_display_name": "Magerr iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 335, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_iso_i", - "pcc_display_name": "Magerr iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 336, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_iso_r", - "pcc_display_name": "Magerr iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 337, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_iso_y", - "pcc_display_name": "Magerr iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 338, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_iso_z", - "pcc_display_name": "Magerr iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 339, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_model_g", - "pcc_display_name": "Magerr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 340, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_model_i", - "pcc_display_name": "Magerr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 341, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_model_r", - "pcc_display_name": "Magerr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 342, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_model_y", - "pcc_display_name": "Magerr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 343, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_model_z", - "pcc_display_name": "Magerr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 344, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_petro_g", - "pcc_display_name": "Magerr petro g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 345, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_petro_i", - "pcc_display_name": "Magerr petro i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 346, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_petro_r", - "pcc_display_name": "Magerr petro r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 347, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_petro_y", - "pcc_display_name": "Magerr petro Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 348, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_petro_z", - "pcc_display_name": "Magerr petro z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 349, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_psf_g", - "pcc_display_name": "Magerr psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 350, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_psf_i", - "pcc_display_name": "Magerr psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 351, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_psf_r", - "pcc_display_name": "Magerr psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 352, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_psf_y", - "pcc_display_name": "Magerr psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 353, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_psf_z", - "pcc_display_name": "Magerr psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 354, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_g", - "pcc_display_name": "Magerr spheroid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 355, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_i", - "pcc_display_name": "Magerr spheroid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 356, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_r", - "pcc_display_name": "Magerr spheroid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 357, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_y", - "pcc_display_name": "Magerr spheroid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 358, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_z", - "pcc_display_name": "Magerr spheroid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 359, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_10_g", - "pcc_display_name": "Mag aper 10 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 360, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_10_i", - "pcc_display_name": "Mag aper 10 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 361, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_10_r", - "pcc_display_name": "Mag aper 10 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 362, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_10_y", - "pcc_display_name": "Mag aper 10 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 363, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_10_z", - "pcc_display_name": "Mag aper 10 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 364, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_11_g", - "pcc_display_name": "Mag aper 11 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 365, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_11_i", - "pcc_display_name": "Mag aper 11 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 366, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_11_r", - "pcc_display_name": "Mag aper 11 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 367, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_11_y", - "pcc_display_name": "Mag aper 11 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 368, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_11_z", - "pcc_display_name": "Mag aper 11 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 369, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_12_g", - "pcc_display_name": "Mag aper 12 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 370, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_12_i", - "pcc_display_name": "Mag aper 12 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 371, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_12_r", - "pcc_display_name": "Mag aper 12 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 372, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_12_y", - "pcc_display_name": "Mag aper 12 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 373, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_12_z", - "pcc_display_name": "Mag aper 12 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 374, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_1_g", - "pcc_display_name": "Mag aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 375, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_1_i", - "pcc_display_name": "Mag aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 376, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_1_r", - "pcc_display_name": "Mag aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 377, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_1_y", - "pcc_display_name": "Mag aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 378, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_1_z", - "pcc_display_name": "Mag aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 379, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_2_g", - "pcc_display_name": "Mag aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 380, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_2_i", - "pcc_display_name": "Mag aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 381, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_2_r", - "pcc_display_name": "Mag aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 382, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_2_y", - "pcc_display_name": "Mag aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 383, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_2_z", - "pcc_display_name": "Mag aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 384, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_3_g", - "pcc_display_name": "Mag aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 385, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_3_i", - "pcc_display_name": "Mag aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 386, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_3_r", - "pcc_display_name": "Mag aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 387, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_3_y", - "pcc_display_name": "Mag aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 388, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_3_z", - "pcc_display_name": "Mag aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 389, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_4_g", - "pcc_display_name": "Mag aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 390, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_4_i", - "pcc_display_name": "Mag aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 391, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_4_r", - "pcc_display_name": "Mag aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 392, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_4_y", - "pcc_display_name": "Mag aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 393, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_4_z", - "pcc_display_name": "Mag aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 394, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_5_g", - "pcc_display_name": "Mag aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 395, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_5_i", - "pcc_display_name": "Mag aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 396, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_5_r", - "pcc_display_name": "Mag aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 397, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_5_y", - "pcc_display_name": "Mag aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 398, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_5_z", - "pcc_display_name": "Mag aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 399, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_6_g", - "pcc_display_name": "Mag aper 6 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 400, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_6_i", - "pcc_display_name": "Mag aper 6 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 401, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_6_r", - "pcc_display_name": "Mag aper 6 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 402, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_6_y", - "pcc_display_name": "Mag aper 6 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 403, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_6_z", - "pcc_display_name": "Mag aper 6 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 404, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_7_g", - "pcc_display_name": "Mag aper 7 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 405, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_7_i", - "pcc_display_name": "Mag aper 7 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 406, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_7_r", - "pcc_display_name": "Mag aper 7 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 407, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_7_y", - "pcc_display_name": "Mag aper 7 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 408, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_7_z", - "pcc_display_name": "Mag aper 7 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 409, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_8_g", - "pcc_display_name": "Mag aper 8 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 410, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_8_i", - "pcc_display_name": "Mag aper 8 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 411, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_8_r", - "pcc_display_name": "Mag aper 8 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 412, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_8_y", - "pcc_display_name": "Mag aper 8 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 413, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_8_z", - "pcc_display_name": "Mag aper 8 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 414, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_9_g", - "pcc_display_name": "Mag aper 9 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 415, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_9_i", - "pcc_display_name": "Mag aper 9 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 416, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_9_r", - "pcc_display_name": "Mag aper 9 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 417, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_9_y", - "pcc_display_name": "Mag aper 9 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 418, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_aper_9_z", - "pcc_display_name": "Mag aper 9 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 419, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_auto_g", - "pcc_display_name": "Mag auto g", - "pcc_ucd": "phot.mag;meta.main;em.opt.g", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 420, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_auto_i", - "pcc_display_name": "Mag auto i", - "pcc_ucd": "phot.mag;meta.main;em.opt.i", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 421, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_auto_r", - "pcc_display_name": "Mag auto r", - "pcc_ucd": "phot.mag;meta.main;em.opt.r", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 422, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_auto_y", - "pcc_display_name": "Mag auto Y", - "pcc_ucd": "phot.mag;meta.main;em.opt.Y", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 423, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_auto_z", - "pcc_display_name": "Mag auto z", - "pcc_ucd": "phot.mag;meta.main;em.opt.z", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 424, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_hybrid_g", - "pcc_display_name": "Mag hybrid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 425, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_hybrid_i", - "pcc_display_name": "Mag hybrid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 426, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_hybrid_r", - "pcc_display_name": "Mag hybrid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 427, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_hybrid_y", - "pcc_display_name": "Mag hybrid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 428, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_hybrid_z", - "pcc_display_name": "Mag hybrid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 429, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_iso_g", - "pcc_display_name": "Mag iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 430, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_iso_i", - "pcc_display_name": "Mag iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 431, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_iso_r", - "pcc_display_name": "Mag iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 432, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_iso_y", - "pcc_display_name": "Mag iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 433, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_iso_z", - "pcc_display_name": "Mag iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 434, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_model_g", - "pcc_display_name": "Mag model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 435, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_model_i", - "pcc_display_name": "Mag model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 436, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_model_r", - "pcc_display_name": "Mag model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 437, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_model_y", - "pcc_display_name": "Mag model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 438, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_model_z", - "pcc_display_name": "Mag model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 439, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_petro_g", - "pcc_display_name": "Mag petro g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 440, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_petro_i", - "pcc_display_name": "Mag petro i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 441, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_petro_r", - "pcc_display_name": "Mag petro r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 442, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_petro_y", - "pcc_display_name": "Mag petro Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 443, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_petro_z", - "pcc_display_name": "Mag petro z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 444, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_psf_g", - "pcc_display_name": "Mag psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 445, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_psf_i", - "pcc_display_name": "Mag psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 446, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_psf_r", - "pcc_display_name": "Mag psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 447, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_psf_y", - "pcc_display_name": "Mag psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 448, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_psf_z", - "pcc_display_name": "Mag psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 449, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_spheroid_g", - "pcc_display_name": "Mag spheroid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 450, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_spheroid_i", - "pcc_display_name": "Mag spheroid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 451, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_spheroid_r", - "pcc_display_name": "Mag spheroid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 452, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_spheroid_y", - "pcc_display_name": "Mag spheroid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 453, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_spheroid_z", - "pcc_display_name": "Mag spheroid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 454, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_eff_model_g", - "pcc_display_name": "Mu eff model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 455, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_eff_model_i", - "pcc_display_name": "Mu eff model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 456, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_eff_model_r", - "pcc_display_name": "Mu eff model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 457, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_eff_model_y", - "pcc_display_name": "Mu eff model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 458, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_eff_model_z", - "pcc_display_name": "Mu eff model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 459, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_g", - "pcc_display_name": "Mu max g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 460, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_i", - "pcc_display_name": "Mu max i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 461, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_model_g", - "pcc_display_name": "Mu max model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 462, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_model_i", - "pcc_display_name": "Mu max model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 463, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_model_r", - "pcc_display_name": "Mu max model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 464, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_model_y", - "pcc_display_name": "Mu max model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 465, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_model_z", - "pcc_display_name": "Mu max model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 466, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_r", - "pcc_display_name": "Mu max r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 467, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_y", - "pcc_display_name": "Mu max Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 468, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_max_z", - "pcc_display_name": "Mu max z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 469, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_mean_model_g", - "pcc_display_name": "Mu mean model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 470, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_mean_model_i", - "pcc_display_name": "Mu mean model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 471, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_mean_model_r", - "pcc_display_name": "Mu mean model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 472, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_mean_model_y", - "pcc_display_name": "Mu mean model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 473, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_mean_model_z", - "pcc_display_name": "Mu mean model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 474, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mu_threshold", - "pcc_display_name": "Mu threshold", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 475, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_model_g", - "pcc_display_name": "Niter model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 476, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_model_i", - "pcc_display_name": "Niter model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 477, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_model_r", - "pcc_display_name": "Niter model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 478, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_model_y", - "pcc_display_name": "Niter model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 479, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_model_z", - "pcc_display_name": "Niter model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 480, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_psf_g", - "pcc_display_name": "Niter psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 481, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_psf_i", - "pcc_display_name": "Niter psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 482, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_psf_r", - "pcc_display_name": "Niter psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 483, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_psf_y", - "pcc_display_name": "Niter psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 484, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_psf_z", - "pcc_display_name": "Niter psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 485, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "nlowdweight_iso", - "pcc_display_name": "Nlowdweight iso", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 486, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_g", - "pcc_display_name": "Nlowweight iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 487, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_i", - "pcc_display_name": "Nlowweight iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 488, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_r", - "pcc_display_name": "Nlowweight iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 489, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_y", - "pcc_display_name": "Nlowweight iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 490, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_z", - "pcc_display_name": "Nlowweight iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 491, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "object_number", - "pcc_display_name": "Object number", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 492, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "petro_radius", - "pcc_display_name": "Petro radius", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 493, - "fields": { - "pcc_class": 16, - "pcc_category": 2, - "pcc_name": "softid", - "pcc_display_name": "Softid", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 494, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spreaderr_model_g", - "pcc_display_name": "Spreaderr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 495, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spreaderr_model_i", - "pcc_display_name": "Spreaderr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 496, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spreaderr_model_r", - "pcc_display_name": "Spreaderr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 497, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spreaderr_model_y", - "pcc_display_name": "Spreaderr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 498, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spreaderr_model_z", - "pcc_display_name": "Spreaderr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 499, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spread_model_g", - "pcc_display_name": "Spread model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 500, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spread_model_i", - "pcc_display_name": "Spread model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 501, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spread_model_r", - "pcc_display_name": "Spread model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 502, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spread_model_y", - "pcc_display_name": "Spread model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 503, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "spread_model_z", - "pcc_display_name": "Spread model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 504, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "theta_image", - "pcc_display_name": "Theta image", - "pcc_ucd": "pos.posAng;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 505, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "theta_image_g", - "pcc_display_name": "Theta image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 506, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "theta_image_i", - "pcc_display_name": "Theta image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 507, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "theta_image_r", - "pcc_display_name": "Theta image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 508, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "theta_image_y", - "pcc_display_name": "Theta image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 509, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "theta_image_z", - "pcc_display_name": "Theta image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 510, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "threshold", - "pcc_display_name": "Threshold", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 511, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "x2_world", - "pcc_display_name": "X2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 512, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xmax_image", - "pcc_display_name": "Xmax image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 513, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xmin_image", - "pcc_display_name": "Xmin image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 514, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xwin_image_g", - "pcc_display_name": "Xwin image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 515, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xwin_image_i", - "pcc_display_name": "Xwin image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 516, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xwin_image_r", - "pcc_display_name": "Xwin image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 517, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xwin_image_y", - "pcc_display_name": "Xwin image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 518, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "xwin_image_z", - "pcc_display_name": "Xwin image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 519, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "xy_world", - "pcc_display_name": "Xy world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 520, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "y2_world", - "pcc_display_name": "Y2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 521, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ymax_image", - "pcc_display_name": "Ymax image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 522, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ymin_image", - "pcc_display_name": "Ymin image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 523, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ywin_image_g", - "pcc_display_name": "Ywin image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 524, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ywin_image_i", - "pcc_display_name": "Ywin image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 525, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ywin_image_r", - "pcc_display_name": "Ywin image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 526, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ywin_image_y", - "pcc_display_name": "Ywin image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 527, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "ywin_image_z", - "pcc_display_name": "Ywin image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 528, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropointid_g", - "pcc_display_name": "Zeropointid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 529, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropointid_i", - "pcc_display_name": "Zeropointid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 530, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropointid_r", - "pcc_display_name": "Zeropointid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 531, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropointid_y", - "pcc_display_name": "Zeropointid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 532, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropointid_z", - "pcc_display_name": "Zeropointid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 533, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropoint_g", - "pcc_display_name": "Zeropoint g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 534, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropoint_i", - "pcc_display_name": "Zeropoint i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 535, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropoint_r", - "pcc_display_name": "Zeropoint r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 536, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropoint_y", - "pcc_display_name": "Zeropoint Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 537, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "zeropoint_z", - "pcc_display_name": "Zeropoint z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 538, - "fields": { - "pcc_class": 16, - "pcc_category": 1, - "pcc_name": "radec_source_band", - "pcc_display_name": "Radec source band", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 539, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_detmodel_g", - "pcc_display_name": "Flux detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 540, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_detmodel_i", - "pcc_display_name": "Flux detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 541, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_detmodel_r", - "pcc_display_name": "Flux detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 542, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_detmodel_z", - "pcc_display_name": "Flux detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 543, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "flux_detmodel_y", - "pcc_display_name": "Flux detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 544, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_detmodel_g", - "pcc_display_name": "Mag detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 545, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_detmodel_i", - "pcc_display_name": "Mag detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 546, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_detmodel_r", - "pcc_display_name": "Mag detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 547, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_detmodel_z", - "pcc_display_name": "Mag detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 548, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "mag_detmodel_y", - "pcc_display_name": "Mag detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 549, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_detmodel_g", - "pcc_display_name": "Flags detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 550, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_detmodel_i", - "pcc_display_name": "Flags detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 551, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_detmodel_r", - "pcc_display_name": "Flags detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 552, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_detmodel_z", - "pcc_display_name": "Flags detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 553, - "fields": { - "pcc_class": 16, - "pcc_category": 8, - "pcc_name": "flags_detmodel_y", - "pcc_display_name": "Flags detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 554, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_detmodel_g", - "pcc_display_name": "Niter detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 555, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_detmodel_i", - "pcc_display_name": "Niter detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 556, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_detmodel_r", - "pcc_display_name": "Niter detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 557, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_detmodel_z", - "pcc_display_name": "Niter detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 558, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "niter_detmodel_y", - "pcc_display_name": "Niter detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 559, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_g", - "pcc_display_name": "Magerr detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 560, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_i", - "pcc_display_name": "Magerr detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 561, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_r", - "pcc_display_name": "Magerr detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 562, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_z", - "pcc_display_name": "Magerr detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 563, - "fields": { - "pcc_class": 16, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_y", - "pcc_display_name": "Magerr detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 564, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_g", - "pcc_display_name": "Fluxerr detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 565, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_i", - "pcc_display_name": "Fluxerr detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 566, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_r", - "pcc_display_name": "Fluxerr detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 567, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_z", - "pcc_display_name": "Fluxerr detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 568, - "fields": { - "pcc_class": 16, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_y", - "pcc_display_name": "Fluxerr detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 569, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_g", - "pcc_display_name": "Chi2 detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 570, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_i", - "pcc_display_name": "Chi2 detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 571, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_r", - "pcc_display_name": "Chi2 detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 572, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_z", - "pcc_display_name": "Chi2 detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 573, - "fields": { - "pcc_class": 16, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_y", - "pcc_display_name": "Chi2 detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 574, - "fields": { - "pcc_class": 16, - "pcc_category": 6, - "pcc_name": "molygon_id_g", - "pcc_display_name": "Molygon id g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 575, - "fields": { - "pcc_class": 16, - "pcc_category": 6, - "pcc_name": "molygon_id_i", - "pcc_display_name": "Molygon id i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 576, - "fields": { - "pcc_class": 16, - "pcc_category": 6, - "pcc_name": "molygon_id_r", - "pcc_display_name": "Molygon id r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 577, - "fields": { - "pcc_class": 16, - "pcc_category": 6, - "pcc_name": "molygon_id_y", - "pcc_display_name": "Molygon id Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 578, - "fields": { - "pcc_class": 16, - "pcc_category": 6, - "pcc_name": "molygon_id_z", - "pcc_display_name": "Molygon id z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 579, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "x2win_world_g", - "pcc_display_name": "X2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 580, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "xywin_world_g", - "pcc_display_name": "Xywin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 581, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "y2win_world_g", - "pcc_display_name": "Y2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 582, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errx2win_world_g", - "pcc_display_name": "Errx2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 583, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "erry2win_world_g", - "pcc_display_name": "Erry2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 584, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxywin_world_g", - "pcc_display_name": "Errxywin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 585, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "x2win_world_r", - "pcc_display_name": "X2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 586, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "xywin_world_r", - "pcc_display_name": "Xywin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 587, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "y2win_world_r", - "pcc_display_name": "Y2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 588, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errx2win_world_r", - "pcc_display_name": "Errx2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 589, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "erry2win_world_r", - "pcc_display_name": "Erry2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 590, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxywin_world_r", - "pcc_display_name": "Errxywin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 591, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "x2win_world_i", - "pcc_display_name": "X2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 592, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "xywin_world_i", - "pcc_display_name": "Xywin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 593, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "y2win_world_i", - "pcc_display_name": "Y2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 594, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errx2win_world_i", - "pcc_display_name": "Errx2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 595, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "erry2win_world_i", - "pcc_display_name": "Erry2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 596, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxywin_world_i", - "pcc_display_name": "Errxywin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 597, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "x2win_world_z", - "pcc_display_name": "X2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 598, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "xywin_world_z", - "pcc_display_name": "Xywin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 599, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "y2win_world_z", - "pcc_display_name": "Y2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 600, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errx2win_world_z", - "pcc_display_name": "Errx2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 601, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "erry2win_world_z", - "pcc_display_name": "Erry2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 602, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxywin_world_z", - "pcc_display_name": "Errxywin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 603, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "x2win_world_y", - "pcc_display_name": "X2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 604, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "xywin_world_y", - "pcc_display_name": "Xywin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 605, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "y2win_world_y", - "pcc_display_name": "Y2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 606, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errx2win_world_y", - "pcc_display_name": "Errx2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 607, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "erry2win_world_y", - "pcc_display_name": "Erry2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 608, - "fields": { - "pcc_class": 16, - "pcc_category": 9, - "pcc_name": "errxywin_world_y", - "pcc_display_name": "Errxywin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 609, - "fields": { - "pcc_class": null, - "pcc_category": 3, - "pcc_name": "original_id", - "pcc_display_name": "Original ID", - "pcc_ucd": "", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 610, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_g", - "pcc_display_name": "Alphawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 611, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_i", - "pcc_display_name": "Alphawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 612, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_r", - "pcc_display_name": "Alphawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 613, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_y", - "pcc_display_name": "Alphawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 614, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_z", - "pcc_display_name": "Alphawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 615, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "a_image", - "pcc_display_name": "A image", - "pcc_ucd": "phys.size.smajAxis;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 616, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "background_g", - "pcc_display_name": "Background g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 617, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "background_i", - "pcc_display_name": "Background i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 618, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "background_r", - "pcc_display_name": "Background r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 619, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "background_y", - "pcc_display_name": "Background Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 620, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "background_z", - "pcc_display_name": "Background z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 621, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "b_image", - "pcc_display_name": "B image", - "pcc_ucd": "phys.size.sminAxis;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 622, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "catalogid_g", - "pcc_display_name": "Catalogid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 623, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "catalogid_i", - "pcc_display_name": "Catalogid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 624, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "catalogid_r", - "pcc_display_name": "Catalogid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 625, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "catalogid_y", - "pcc_display_name": "Catalogid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 626, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "catalogid_z", - "pcc_display_name": "Catalogid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 627, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_model_g", - "pcc_display_name": "Chi2 model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 628, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_model_i", - "pcc_display_name": "Chi2 model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 629, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_model_r", - "pcc_display_name": "Chi2 model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 630, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_model_y", - "pcc_display_name": "Chi2 model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 631, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_model_z", - "pcc_display_name": "Chi2 model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 632, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_psf_g", - "pcc_display_name": "Chi2 psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 633, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_psf_i", - "pcc_display_name": "Chi2 psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 634, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_psf_r", - "pcc_display_name": "Chi2 psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 635, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_psf_y", - "pcc_display_name": "Chi2 psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 636, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_psf_z", - "pcc_display_name": "Chi2 psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 637, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "class_star_g", - "pcc_display_name": "Class star g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 638, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "class_star_i", - "pcc_display_name": "Class star i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 639, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "class_star_r", - "pcc_display_name": "Class star r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 640, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "class_star_y", - "pcc_display_name": "Class star Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 641, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "class_star_z", - "pcc_display_name": "Class star z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 642, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "coadd_objects_id", - "pcc_display_name": "Coadd objects id", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 643, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "concentration_model_g", - "pcc_display_name": "Concentration model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 644, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "concentration_model_i", - "pcc_display_name": "Concentration model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 645, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "concentration_model_r", - "pcc_display_name": "Concentration model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 646, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "concentration_model_y", - "pcc_display_name": "Concentration model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 647, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "concentration_model_z", - "pcc_display_name": "Concentration model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 648, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_g", - "pcc_display_name": "Deltawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 649, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_i", - "pcc_display_name": "Deltawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 650, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_r", - "pcc_display_name": "Deltawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 651, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_y", - "pcc_display_name": "Deltawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 652, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_z", - "pcc_display_name": "Deltawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 653, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "duration_analysis_g", - "pcc_display_name": "Duration analysis g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 654, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "duration_analysis_i", - "pcc_display_name": "Duration analysis i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 655, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "duration_analysis_r", - "pcc_display_name": "Duration analysis r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 656, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "duration_analysis_y", - "pcc_display_name": "Duration analysis Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 657, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "duration_analysis_z", - "pcc_display_name": "Duration analysis z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 658, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_g", - "pcc_display_name": "Ellip1errmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 659, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_i", - "pcc_display_name": "Ellip1errmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 660, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_r", - "pcc_display_name": "Ellip1errmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 661, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_y", - "pcc_display_name": "Ellip1errmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 662, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_z", - "pcc_display_name": "Ellip1errmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 663, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1model_world_g", - "pcc_display_name": "Ellip1model world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 664, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1model_world_i", - "pcc_display_name": "Ellip1model world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 665, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1model_world_r", - "pcc_display_name": "Ellip1model world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 666, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1model_world_y", - "pcc_display_name": "Ellip1model world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 667, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip1model_world_z", - "pcc_display_name": "Ellip1model world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 668, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_g", - "pcc_display_name": "Ellip2errmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 669, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_i", - "pcc_display_name": "Ellip2errmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 670, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_r", - "pcc_display_name": "Ellip2errmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 671, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_y", - "pcc_display_name": "Ellip2errmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 672, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_z", - "pcc_display_name": "Ellip2errmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 673, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2model_world_g", - "pcc_display_name": "Ellip2model world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 674, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2model_world_i", - "pcc_display_name": "Ellip2model world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 675, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2model_world_r", - "pcc_display_name": "Ellip2model world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 676, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2model_world_y", - "pcc_display_name": "Ellip2model world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 677, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellip2model_world_z", - "pcc_display_name": "Ellip2model world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 678, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_g", - "pcc_display_name": "Ellipcorrmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 679, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_i", - "pcc_display_name": "Ellipcorrmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 680, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_r", - "pcc_display_name": "Ellipcorrmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 681, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_y", - "pcc_display_name": "Ellipcorrmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 682, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_z", - "pcc_display_name": "Ellipcorrmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 683, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipticity_g", - "pcc_display_name": "Ellipticity g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 684, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipticity_i", - "pcc_display_name": "Ellipticity i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 685, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipticity_r", - "pcc_display_name": "Ellipticity r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 686, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipticity_y", - "pcc_display_name": "Ellipticity Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 687, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "ellipticity_z", - "pcc_display_name": "Ellipticity z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 688, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "equinox", - "pcc_display_name": "Equinox", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 689, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errawin_world_g", - "pcc_display_name": "Errawin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 690, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errawin_world_i", - "pcc_display_name": "Errawin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 691, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errawin_world_r", - "pcc_display_name": "Errawin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 692, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errawin_world_y", - "pcc_display_name": "Errawin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 693, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errawin_world_z", - "pcc_display_name": "Errawin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 694, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errbwin_world_g", - "pcc_display_name": "Errbwin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 695, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errbwin_world_i", - "pcc_display_name": "Errbwin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 696, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errbwin_world_r", - "pcc_display_name": "Errbwin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 697, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errbwin_world_y", - "pcc_display_name": "Errbwin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 698, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errbwin_world_z", - "pcc_display_name": "Errbwin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 699, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errb_image_g", - "pcc_display_name": "Errb image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 700, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errb_image_i", - "pcc_display_name": "Errb image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 701, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errb_image_r", - "pcc_display_name": "Errb image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 702, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errb_image_y", - "pcc_display_name": "Errb image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 703, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errb_image_z", - "pcc_display_name": "Errb image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 704, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "errdec", - "pcc_display_name": "Errdec", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 705, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "errra", - "pcc_display_name": "Errra", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 706, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_g", - "pcc_display_name": "Errthetawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 707, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_i", - "pcc_display_name": "Errthetawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 708, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_r", - "pcc_display_name": "Errthetawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 709, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_y", - "pcc_display_name": "Errthetawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 710, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_z", - "pcc_display_name": "Errthetawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 711, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errx2_world", - "pcc_display_name": "Errx2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 712, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxy_world_g", - "pcc_display_name": "Errxy world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 713, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxy_world_i", - "pcc_display_name": "Errxy world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 714, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxy_world_r", - "pcc_display_name": "Errxy world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 715, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxy_world_y", - "pcc_display_name": "Errxy world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 716, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxy_world_z", - "pcc_display_name": "Errxy world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 717, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "erry2_world", - "pcc_display_name": "Erry2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 718, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "errzeropoint_g", - "pcc_display_name": "Errzeropoint g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 719, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "errzeropoint_i", - "pcc_display_name": "Errzeropoint i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 720, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "errzeropoint_r", - "pcc_display_name": "Errzeropoint r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 721, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "errzeropoint_y", - "pcc_display_name": "Errzeropoint Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 722, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "errzeropoint_z", - "pcc_display_name": "Errzeropoint z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 723, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_g", - "pcc_display_name": "Flags g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 724, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_i", - "pcc_display_name": "Flags i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 725, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_model_g", - "pcc_display_name": "Flags model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 726, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_model_i", - "pcc_display_name": "Flags model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 727, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_model_r", - "pcc_display_name": "Flags model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 728, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_model_y", - "pcc_display_name": "Flags model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 729, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_model_z", - "pcc_display_name": "Flags model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 730, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_r", - "pcc_display_name": "Flags r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 731, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_weight_g", - "pcc_display_name": "Flags weight g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 732, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_weight_i", - "pcc_display_name": "Flags weight i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 733, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_weight_r", - "pcc_display_name": "Flags weight r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 734, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_weight_y", - "pcc_display_name": "Flags weight Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 735, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_weight_z", - "pcc_display_name": "Flags weight z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 736, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_y", - "pcc_display_name": "Flags Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 737, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_z", - "pcc_display_name": "Flags z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 738, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_g", - "pcc_display_name": "Fluxerr aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 739, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_i", - "pcc_display_name": "Fluxerr aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 740, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_r", - "pcc_display_name": "Fluxerr aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 741, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_y", - "pcc_display_name": "Fluxerr aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 742, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_z", - "pcc_display_name": "Fluxerr aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 743, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_g", - "pcc_display_name": "Fluxerr aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 744, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_i", - "pcc_display_name": "Fluxerr aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 745, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_r", - "pcc_display_name": "Fluxerr aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 746, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_y", - "pcc_display_name": "Fluxerr aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 747, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_z", - "pcc_display_name": "Fluxerr aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 748, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_g", - "pcc_display_name": "Fluxerr aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 749, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_i", - "pcc_display_name": "Fluxerr aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 750, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_r", - "pcc_display_name": "Fluxerr aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 751, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_y", - "pcc_display_name": "Fluxerr aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 752, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_z", - "pcc_display_name": "Fluxerr aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 753, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_g", - "pcc_display_name": "Fluxerr aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 754, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_i", - "pcc_display_name": "Fluxerr aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 755, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_r", - "pcc_display_name": "Fluxerr aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 756, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_y", - "pcc_display_name": "Fluxerr aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 757, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_z", - "pcc_display_name": "Fluxerr aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 758, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_g", - "pcc_display_name": "Fluxerr aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 759, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_i", - "pcc_display_name": "Fluxerr aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 760, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_r", - "pcc_display_name": "Fluxerr aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 761, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_y", - "pcc_display_name": "Fluxerr aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 762, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_z", - "pcc_display_name": "Fluxerr aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 763, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_g", - "pcc_display_name": "Fluxerr auto g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 764, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_i", - "pcc_display_name": "Fluxerr auto i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 765, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_r", - "pcc_display_name": "Fluxerr auto r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 766, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_y", - "pcc_display_name": "Fluxerr auto Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 767, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_z", - "pcc_display_name": "Fluxerr auto z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 768, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_model_g", - "pcc_display_name": "Fluxerr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 769, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_model_i", - "pcc_display_name": "Fluxerr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 770, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_model_r", - "pcc_display_name": "Fluxerr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 771, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_model_y", - "pcc_display_name": "Fluxerr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 772, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_model_z", - "pcc_display_name": "Fluxerr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 773, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_1_g", - "pcc_display_name": "Flux aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 774, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_1_i", - "pcc_display_name": "Flux aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 775, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_1_r", - "pcc_display_name": "Flux aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 776, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_1_y", - "pcc_display_name": "Flux aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 777, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_1_z", - "pcc_display_name": "Flux aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 778, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_2_g", - "pcc_display_name": "Flux aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 779, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_2_i", - "pcc_display_name": "Flux aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 780, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_2_r", - "pcc_display_name": "Flux aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 781, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_2_y", - "pcc_display_name": "Flux aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 782, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_2_z", - "pcc_display_name": "Flux aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 783, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_3_g", - "pcc_display_name": "Flux aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 784, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_3_i", - "pcc_display_name": "Flux aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 785, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_3_r", - "pcc_display_name": "Flux aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 786, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_3_y", - "pcc_display_name": "Flux aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 787, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_3_z", - "pcc_display_name": "Flux aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 788, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_4_g", - "pcc_display_name": "Flux aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 789, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_4_i", - "pcc_display_name": "Flux aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 790, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_4_r", - "pcc_display_name": "Flux aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 791, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_4_y", - "pcc_display_name": "Flux aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 792, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_4_z", - "pcc_display_name": "Flux aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 793, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_5_g", - "pcc_display_name": "Flux aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 794, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_5_i", - "pcc_display_name": "Flux aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 795, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_5_r", - "pcc_display_name": "Flux aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 796, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_5_y", - "pcc_display_name": "Flux aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 797, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_aper_5_z", - "pcc_display_name": "Flux aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 798, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_auto_g", - "pcc_display_name": "Flux auto g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 799, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_auto_i", - "pcc_display_name": "Flux auto i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 800, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_auto_r", - "pcc_display_name": "Flux auto r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 801, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_auto_y", - "pcc_display_name": "Flux auto Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 802, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_auto_z", - "pcc_display_name": "Flux auto z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 803, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_model_g", - "pcc_display_name": "Flux model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 804, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_model_i", - "pcc_display_name": "Flux model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 805, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_model_r", - "pcc_display_name": "Flux model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 806, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_model_y", - "pcc_display_name": "Flux model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 807, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_model_z", - "pcc_display_name": "Flux model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 808, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "flux_radius_g", - "pcc_display_name": "Flux radius g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 809, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "flux_radius_i", - "pcc_display_name": "Flux radius i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 810, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "flux_radius_r", - "pcc_display_name": "Flux radius r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 811, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "flux_radius_y", - "pcc_display_name": "Flux radius Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 812, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "flux_radius_z", - "pcc_display_name": "Flux radius z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 813, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "fwhm_world_g", - "pcc_display_name": "Fwhm world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 814, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "fwhm_world_i", - "pcc_display_name": "Fwhm world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 815, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "fwhm_world_r", - "pcc_display_name": "Fwhm world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 816, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "fwhm_world_y", - "pcc_display_name": "Fwhm world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 817, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "fwhm_world_z", - "pcc_display_name": "Fwhm world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 818, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "imageid_g", - "pcc_display_name": "Imageid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 819, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "imageid_i", - "pcc_display_name": "Imageid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 820, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "imageid_r", - "pcc_display_name": "Imageid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 821, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "imageid_y", - "pcc_display_name": "Imageid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 822, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "imageid_z", - "pcc_display_name": "Imageid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 823, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "isoarea_world_g", - "pcc_display_name": "Isoarea world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 824, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "isoarea_world_i", - "pcc_display_name": "Isoarea world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 825, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "isoarea_world_r", - "pcc_display_name": "Isoarea world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 826, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "isoarea_world_y", - "pcc_display_name": "Isoarea world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 827, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "isoarea_world_z", - "pcc_display_name": "Isoarea world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 828, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "kron_radius", - "pcc_display_name": "Kron radius", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 829, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_g", - "pcc_display_name": "Magerr aper 10 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 830, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_i", - "pcc_display_name": "Magerr aper 10 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 831, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_r", - "pcc_display_name": "Magerr aper 10 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 832, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_y", - "pcc_display_name": "Magerr aper 10 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 833, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_z", - "pcc_display_name": "Magerr aper 10 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 834, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_g", - "pcc_display_name": "Magerr aper 11 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 835, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_i", - "pcc_display_name": "Magerr aper 11 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 836, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_r", - "pcc_display_name": "Magerr aper 11 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 837, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_y", - "pcc_display_name": "Magerr aper 11 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 838, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_z", - "pcc_display_name": "Magerr aper 11 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 839, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_g", - "pcc_display_name": "Magerr aper 12 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 840, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_i", - "pcc_display_name": "Magerr aper 12 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 841, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_r", - "pcc_display_name": "Magerr aper 12 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 842, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_y", - "pcc_display_name": "Magerr aper 12 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 843, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_z", - "pcc_display_name": "Magerr aper 12 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 844, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_g", - "pcc_display_name": "Magerr aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 845, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_i", - "pcc_display_name": "Magerr aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 846, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_r", - "pcc_display_name": "Magerr aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 847, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_y", - "pcc_display_name": "Magerr aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 848, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_z", - "pcc_display_name": "Magerr aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 849, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_g", - "pcc_display_name": "Magerr aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 850, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_i", - "pcc_display_name": "Magerr aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 851, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_r", - "pcc_display_name": "Magerr aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 852, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_y", - "pcc_display_name": "Magerr aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 853, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_z", - "pcc_display_name": "Magerr aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 854, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_g", - "pcc_display_name": "Magerr aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 855, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_i", - "pcc_display_name": "Magerr aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 856, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_r", - "pcc_display_name": "Magerr aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 857, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_y", - "pcc_display_name": "Magerr aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 858, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_z", - "pcc_display_name": "Magerr aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 859, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_g", - "pcc_display_name": "Magerr aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 860, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_i", - "pcc_display_name": "Magerr aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 861, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_r", - "pcc_display_name": "Magerr aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 862, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_y", - "pcc_display_name": "Magerr aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 863, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_z", - "pcc_display_name": "Magerr aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 864, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_g", - "pcc_display_name": "Magerr aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 865, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_i", - "pcc_display_name": "Magerr aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 866, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_r", - "pcc_display_name": "Magerr aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 867, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_y", - "pcc_display_name": "Magerr aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 868, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_z", - "pcc_display_name": "Magerr aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 869, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_g", - "pcc_display_name": "Magerr aper 6 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 870, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_i", - "pcc_display_name": "Magerr aper 6 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 871, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_r", - "pcc_display_name": "Magerr aper 6 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 872, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_y", - "pcc_display_name": "Magerr aper 6 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 873, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_z", - "pcc_display_name": "Magerr aper 6 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 874, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_g", - "pcc_display_name": "Magerr aper 7 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 875, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_i", - "pcc_display_name": "Magerr aper 7 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 876, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_r", - "pcc_display_name": "Magerr aper 7 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 877, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_y", - "pcc_display_name": "Magerr aper 7 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 878, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_z", - "pcc_display_name": "Magerr aper 7 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 879, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_g", - "pcc_display_name": "Magerr aper 8 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 880, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_i", - "pcc_display_name": "Magerr aper 8 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 881, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_r", - "pcc_display_name": "Magerr aper 8 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 882, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_y", - "pcc_display_name": "Magerr aper 8 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 883, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_z", - "pcc_display_name": "Magerr aper 8 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 884, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_g", - "pcc_display_name": "Magerr aper 9 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 885, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_i", - "pcc_display_name": "Magerr aper 9 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 886, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_r", - "pcc_display_name": "Magerr aper 9 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 887, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_y", - "pcc_display_name": "Magerr aper 9 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 888, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_z", - "pcc_display_name": "Magerr aper 9 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 889, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_auto_g", - "pcc_display_name": "Magerr auto g", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 890, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_auto_i", - "pcc_display_name": "Magerr auto i", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 891, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_auto_r", - "pcc_display_name": "Magerr auto r", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 892, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_auto_y", - "pcc_display_name": "Magerr auto Y", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 893, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_auto_z", - "pcc_display_name": "Magerr auto z", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 894, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_g", - "pcc_display_name": "Magerr hybrid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 895, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_i", - "pcc_display_name": "Magerr hybrid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 896, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_r", - "pcc_display_name": "Magerr hybrid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 897, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_y", - "pcc_display_name": "Magerr hybrid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 898, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_z", - "pcc_display_name": "Magerr hybrid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 899, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_iso_g", - "pcc_display_name": "Magerr iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 900, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_iso_i", - "pcc_display_name": "Magerr iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 901, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_iso_r", - "pcc_display_name": "Magerr iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 902, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_iso_y", - "pcc_display_name": "Magerr iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 903, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_iso_z", - "pcc_display_name": "Magerr iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 904, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_model_g", - "pcc_display_name": "Magerr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 905, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_model_i", - "pcc_display_name": "Magerr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 906, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_model_r", - "pcc_display_name": "Magerr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 907, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_model_y", - "pcc_display_name": "Magerr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 908, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_model_z", - "pcc_display_name": "Magerr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 909, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_petro_g", - "pcc_display_name": "Magerr petro g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 910, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_petro_i", - "pcc_display_name": "Magerr petro i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 911, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_petro_r", - "pcc_display_name": "Magerr petro r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 912, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_petro_y", - "pcc_display_name": "Magerr petro Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 913, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_petro_z", - "pcc_display_name": "Magerr petro z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 914, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_psf_g", - "pcc_display_name": "Magerr psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 915, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_psf_i", - "pcc_display_name": "Magerr psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 916, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_psf_r", - "pcc_display_name": "Magerr psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 917, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_psf_y", - "pcc_display_name": "Magerr psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 918, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_psf_z", - "pcc_display_name": "Magerr psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 919, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_g", - "pcc_display_name": "Magerr spheroid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 920, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_i", - "pcc_display_name": "Magerr spheroid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 921, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_r", - "pcc_display_name": "Magerr spheroid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 922, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_y", - "pcc_display_name": "Magerr spheroid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 923, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_z", - "pcc_display_name": "Magerr spheroid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 924, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_10_g", - "pcc_display_name": "Mag aper 10 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 925, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_10_i", - "pcc_display_name": "Mag aper 10 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 926, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_10_r", - "pcc_display_name": "Mag aper 10 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 927, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_10_y", - "pcc_display_name": "Mag aper 10 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 928, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_10_z", - "pcc_display_name": "Mag aper 10 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 929, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_11_g", - "pcc_display_name": "Mag aper 11 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 930, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_11_i", - "pcc_display_name": "Mag aper 11 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 931, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_11_r", - "pcc_display_name": "Mag aper 11 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 932, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_11_y", - "pcc_display_name": "Mag aper 11 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 933, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_11_z", - "pcc_display_name": "Mag aper 11 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 934, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_12_g", - "pcc_display_name": "Mag aper 12 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 935, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_12_i", - "pcc_display_name": "Mag aper 12 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 936, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_12_r", - "pcc_display_name": "Mag aper 12 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 937, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_12_y", - "pcc_display_name": "Mag aper 12 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 938, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_12_z", - "pcc_display_name": "Mag aper 12 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 939, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_1_g", - "pcc_display_name": "Mag aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 940, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_1_i", - "pcc_display_name": "Mag aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 941, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_1_r", - "pcc_display_name": "Mag aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 942, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_1_y", - "pcc_display_name": "Mag aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 943, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_1_z", - "pcc_display_name": "Mag aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 944, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_2_g", - "pcc_display_name": "Mag aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 945, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_2_i", - "pcc_display_name": "Mag aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 946, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_2_r", - "pcc_display_name": "Mag aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 947, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_2_y", - "pcc_display_name": "Mag aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 948, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_2_z", - "pcc_display_name": "Mag aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 949, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_3_g", - "pcc_display_name": "Mag aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 950, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_3_i", - "pcc_display_name": "Mag aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 951, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_3_r", - "pcc_display_name": "Mag aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 952, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_3_y", - "pcc_display_name": "Mag aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 953, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_3_z", - "pcc_display_name": "Mag aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 954, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_4_g", - "pcc_display_name": "Mag aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 955, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_4_i", - "pcc_display_name": "Mag aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 956, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_4_r", - "pcc_display_name": "Mag aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 957, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_4_y", - "pcc_display_name": "Mag aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 958, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_4_z", - "pcc_display_name": "Mag aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 959, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_5_g", - "pcc_display_name": "Mag aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 960, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_5_i", - "pcc_display_name": "Mag aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 961, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_5_r", - "pcc_display_name": "Mag aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 962, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_5_y", - "pcc_display_name": "Mag aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 963, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_5_z", - "pcc_display_name": "Mag aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 964, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_6_g", - "pcc_display_name": "Mag aper 6 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 965, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_6_i", - "pcc_display_name": "Mag aper 6 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 966, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_6_r", - "pcc_display_name": "Mag aper 6 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 967, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_6_y", - "pcc_display_name": "Mag aper 6 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 968, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_6_z", - "pcc_display_name": "Mag aper 6 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 969, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_7_g", - "pcc_display_name": "Mag aper 7 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 970, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_7_i", - "pcc_display_name": "Mag aper 7 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 971, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_7_r", - "pcc_display_name": "Mag aper 7 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 972, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_7_y", - "pcc_display_name": "Mag aper 7 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 973, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_7_z", - "pcc_display_name": "Mag aper 7 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 974, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_8_g", - "pcc_display_name": "Mag aper 8 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 975, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_8_i", - "pcc_display_name": "Mag aper 8 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 976, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_8_r", - "pcc_display_name": "Mag aper 8 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 977, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_8_y", - "pcc_display_name": "Mag aper 8 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 978, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_8_z", - "pcc_display_name": "Mag aper 8 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 979, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_9_g", - "pcc_display_name": "Mag aper 9 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 980, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_9_i", - "pcc_display_name": "Mag aper 9 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 981, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_9_r", - "pcc_display_name": "Mag aper 9 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 982, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_9_y", - "pcc_display_name": "Mag aper 9 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 983, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_aper_9_z", - "pcc_display_name": "Mag aper 9 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 984, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_auto_g", - "pcc_display_name": "Mag auto g", - "pcc_ucd": "phot.mag;meta.main;em.opt.g", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 985, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_auto_i", - "pcc_display_name": "Mag auto i", - "pcc_ucd": "phot.mag;meta.main;em.opt.i", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 986, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_auto_r", - "pcc_display_name": "Mag auto r", - "pcc_ucd": "phot.mag;meta.main;em.opt.r", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 987, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_auto_y", - "pcc_display_name": "Mag auto Y", - "pcc_ucd": "phot.mag;meta.main;em.opt.Y", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 988, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_auto_z", - "pcc_display_name": "Mag auto z", - "pcc_ucd": "phot.mag;meta.main;em.opt.z", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 989, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_hybrid_g", - "pcc_display_name": "Mag hybrid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 990, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_hybrid_i", - "pcc_display_name": "Mag hybrid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 991, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_hybrid_r", - "pcc_display_name": "Mag hybrid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 992, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_hybrid_y", - "pcc_display_name": "Mag hybrid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 993, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_hybrid_z", - "pcc_display_name": "Mag hybrid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 994, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_iso_g", - "pcc_display_name": "Mag iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 995, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_iso_i", - "pcc_display_name": "Mag iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 996, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_iso_r", - "pcc_display_name": "Mag iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 997, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_iso_y", - "pcc_display_name": "Mag iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 998, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_iso_z", - "pcc_display_name": "Mag iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 999, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_model_g", - "pcc_display_name": "Mag model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1000, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_model_i", - "pcc_display_name": "Mag model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1001, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_model_r", - "pcc_display_name": "Mag model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1002, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_model_y", - "pcc_display_name": "Mag model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1003, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_model_z", - "pcc_display_name": "Mag model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1004, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_petro_g", - "pcc_display_name": "Mag petro g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1005, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_petro_i", - "pcc_display_name": "Mag petro i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1006, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_petro_r", - "pcc_display_name": "Mag petro r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1007, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_petro_y", - "pcc_display_name": "Mag petro Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1008, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_petro_z", - "pcc_display_name": "Mag petro z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1009, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_psf_g", - "pcc_display_name": "Mag psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1010, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_psf_i", - "pcc_display_name": "Mag psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1011, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_psf_r", - "pcc_display_name": "Mag psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1012, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_psf_y", - "pcc_display_name": "Mag psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1013, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_psf_z", - "pcc_display_name": "Mag psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1014, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_spheroid_g", - "pcc_display_name": "Mag spheroid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1015, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_spheroid_i", - "pcc_display_name": "Mag spheroid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1016, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_spheroid_r", - "pcc_display_name": "Mag spheroid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1017, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_spheroid_y", - "pcc_display_name": "Mag spheroid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1018, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_spheroid_z", - "pcc_display_name": "Mag spheroid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1019, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_eff_model_g", - "pcc_display_name": "Mu eff model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1020, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_eff_model_i", - "pcc_display_name": "Mu eff model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1021, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_eff_model_r", - "pcc_display_name": "Mu eff model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1022, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_eff_model_y", - "pcc_display_name": "Mu eff model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1023, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_eff_model_z", - "pcc_display_name": "Mu eff model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1024, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_g", - "pcc_display_name": "Mu max g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1025, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_i", - "pcc_display_name": "Mu max i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1026, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_model_g", - "pcc_display_name": "Mu max model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1027, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_model_i", - "pcc_display_name": "Mu max model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1028, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_model_r", - "pcc_display_name": "Mu max model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1029, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_model_y", - "pcc_display_name": "Mu max model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1030, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_model_z", - "pcc_display_name": "Mu max model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1031, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_r", - "pcc_display_name": "Mu max r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1032, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_y", - "pcc_display_name": "Mu max Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1033, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_max_z", - "pcc_display_name": "Mu max z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1034, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_mean_model_g", - "pcc_display_name": "Mu mean model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1035, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_mean_model_i", - "pcc_display_name": "Mu mean model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1036, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_mean_model_r", - "pcc_display_name": "Mu mean model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1037, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_mean_model_y", - "pcc_display_name": "Mu mean model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1038, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_mean_model_z", - "pcc_display_name": "Mu mean model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1039, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mu_threshold", - "pcc_display_name": "Mu threshold", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1040, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_model_g", - "pcc_display_name": "Niter model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1041, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_model_i", - "pcc_display_name": "Niter model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1042, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_model_r", - "pcc_display_name": "Niter model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1043, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_model_y", - "pcc_display_name": "Niter model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1044, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_model_z", - "pcc_display_name": "Niter model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1045, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_psf_g", - "pcc_display_name": "Niter psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1046, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_psf_i", - "pcc_display_name": "Niter psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1047, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_psf_r", - "pcc_display_name": "Niter psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1048, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_psf_y", - "pcc_display_name": "Niter psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1049, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_psf_z", - "pcc_display_name": "Niter psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1050, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "nlowdweight_iso", - "pcc_display_name": "Nlowdweight iso", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1051, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_g", - "pcc_display_name": "Nlowweight iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1052, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_i", - "pcc_display_name": "Nlowweight iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1053, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_r", - "pcc_display_name": "Nlowweight iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1054, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_y", - "pcc_display_name": "Nlowweight iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1055, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_z", - "pcc_display_name": "Nlowweight iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1056, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "object_number", - "pcc_display_name": "Object number", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1057, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "petro_radius", - "pcc_display_name": "Petro radius", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1058, - "fields": { - "pcc_class": 8, - "pcc_category": 2, - "pcc_name": "softid", - "pcc_display_name": "Softid", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1059, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spreaderr_model_g", - "pcc_display_name": "Spreaderr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1060, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spreaderr_model_i", - "pcc_display_name": "Spreaderr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1061, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spreaderr_model_r", - "pcc_display_name": "Spreaderr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1062, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spreaderr_model_y", - "pcc_display_name": "Spreaderr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1063, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spreaderr_model_z", - "pcc_display_name": "Spreaderr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1064, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spread_model_g", - "pcc_display_name": "Spread model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1065, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spread_model_i", - "pcc_display_name": "Spread model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1066, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spread_model_r", - "pcc_display_name": "Spread model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1067, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spread_model_y", - "pcc_display_name": "Spread model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1068, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "spread_model_z", - "pcc_display_name": "Spread model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1069, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "theta_image", - "pcc_display_name": "Theta image", - "pcc_ucd": "pos.posAng;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1070, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "theta_image_g", - "pcc_display_name": "Theta image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1071, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "theta_image_i", - "pcc_display_name": "Theta image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1072, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "theta_image_r", - "pcc_display_name": "Theta image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1073, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "theta_image_y", - "pcc_display_name": "Theta image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1074, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "theta_image_z", - "pcc_display_name": "Theta image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1075, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "threshold", - "pcc_display_name": "Threshold", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1076, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "x2_world", - "pcc_display_name": "X2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1077, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xmax_image", - "pcc_display_name": "Xmax image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1078, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xmin_image", - "pcc_display_name": "Xmin image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1079, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xwin_image_g", - "pcc_display_name": "Xwin image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1080, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xwin_image_i", - "pcc_display_name": "Xwin image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1081, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xwin_image_r", - "pcc_display_name": "Xwin image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1082, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xwin_image_y", - "pcc_display_name": "Xwin image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1083, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "xwin_image_z", - "pcc_display_name": "Xwin image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1084, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "xy_world", - "pcc_display_name": "Xy world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1085, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "y2_world", - "pcc_display_name": "Y2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1086, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ymax_image", - "pcc_display_name": "Ymax image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1087, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ymin_image", - "pcc_display_name": "Ymin image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1088, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ywin_image_g", - "pcc_display_name": "Ywin image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1089, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ywin_image_i", - "pcc_display_name": "Ywin image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1090, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ywin_image_r", - "pcc_display_name": "Ywin image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1091, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ywin_image_y", - "pcc_display_name": "Ywin image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1092, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "ywin_image_z", - "pcc_display_name": "Ywin image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1093, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropointid_g", - "pcc_display_name": "Zeropointid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1094, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropointid_i", - "pcc_display_name": "Zeropointid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1095, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropointid_r", - "pcc_display_name": "Zeropointid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1096, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropointid_y", - "pcc_display_name": "Zeropointid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1097, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropointid_z", - "pcc_display_name": "Zeropointid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1098, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropoint_g", - "pcc_display_name": "Zeropoint g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1099, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropoint_i", - "pcc_display_name": "Zeropoint i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1100, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropoint_r", - "pcc_display_name": "Zeropoint r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1101, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropoint_y", - "pcc_display_name": "Zeropoint Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1102, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "zeropoint_z", - "pcc_display_name": "Zeropoint z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1103, - "fields": { - "pcc_class": 8, - "pcc_category": 1, - "pcc_name": "radec_source_band", - "pcc_display_name": "Radec source band", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1104, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_detmodel_g", - "pcc_display_name": "Flux detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1105, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_detmodel_i", - "pcc_display_name": "Flux detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1106, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_detmodel_r", - "pcc_display_name": "Flux detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1107, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_detmodel_z", - "pcc_display_name": "Flux detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1108, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "flux_detmodel_y", - "pcc_display_name": "Flux detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1109, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_detmodel_g", - "pcc_display_name": "Mag detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1110, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_detmodel_i", - "pcc_display_name": "Mag detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1111, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_detmodel_r", - "pcc_display_name": "Mag detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1112, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_detmodel_z", - "pcc_display_name": "Mag detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1113, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "mag_detmodel_y", - "pcc_display_name": "Mag detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1114, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_detmodel_g", - "pcc_display_name": "Flags detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1115, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_detmodel_i", - "pcc_display_name": "Flags detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1116, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_detmodel_r", - "pcc_display_name": "Flags detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1117, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_detmodel_z", - "pcc_display_name": "Flags detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1118, - "fields": { - "pcc_class": 8, - "pcc_category": 8, - "pcc_name": "flags_detmodel_y", - "pcc_display_name": "Flags detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1119, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_detmodel_g", - "pcc_display_name": "Niter detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1120, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_detmodel_i", - "pcc_display_name": "Niter detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1121, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_detmodel_r", - "pcc_display_name": "Niter detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1122, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_detmodel_z", - "pcc_display_name": "Niter detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1123, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "niter_detmodel_y", - "pcc_display_name": "Niter detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1124, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_g", - "pcc_display_name": "Magerr detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1125, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_i", - "pcc_display_name": "Magerr detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1126, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_r", - "pcc_display_name": "Magerr detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1127, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_z", - "pcc_display_name": "Magerr detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1128, - "fields": { - "pcc_class": 8, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_y", - "pcc_display_name": "Magerr detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1129, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_g", - "pcc_display_name": "Fluxerr detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1130, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_i", - "pcc_display_name": "Fluxerr detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1131, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_r", - "pcc_display_name": "Fluxerr detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1132, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_z", - "pcc_display_name": "Fluxerr detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1133, - "fields": { - "pcc_class": 8, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_y", - "pcc_display_name": "Fluxerr detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1134, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_g", - "pcc_display_name": "Chi2 detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1135, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_i", - "pcc_display_name": "Chi2 detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1136, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_r", - "pcc_display_name": "Chi2 detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1137, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_z", - "pcc_display_name": "Chi2 detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1138, - "fields": { - "pcc_class": 8, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_y", - "pcc_display_name": "Chi2 detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1139, - "fields": { - "pcc_class": 8, - "pcc_category": 6, - "pcc_name": "molygon_id_g", - "pcc_display_name": "Molygon id g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1140, - "fields": { - "pcc_class": 8, - "pcc_category": 6, - "pcc_name": "molygon_id_i", - "pcc_display_name": "Molygon id i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1141, - "fields": { - "pcc_class": 8, - "pcc_category": 6, - "pcc_name": "molygon_id_r", - "pcc_display_name": "Molygon id r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1142, - "fields": { - "pcc_class": 8, - "pcc_category": 6, - "pcc_name": "molygon_id_y", - "pcc_display_name": "Molygon id Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1143, - "fields": { - "pcc_class": 8, - "pcc_category": 6, - "pcc_name": "molygon_id_z", - "pcc_display_name": "Molygon id z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1144, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "x2win_world_g", - "pcc_display_name": "X2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1145, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "xywin_world_g", - "pcc_display_name": "Xywin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1146, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "y2win_world_g", - "pcc_display_name": "Y2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1147, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errx2win_world_g", - "pcc_display_name": "Errx2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1148, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "erry2win_world_g", - "pcc_display_name": "Erry2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1149, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxywin_world_g", - "pcc_display_name": "Errxywin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1150, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "x2win_world_r", - "pcc_display_name": "X2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1151, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "xywin_world_r", - "pcc_display_name": "Xywin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1152, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "y2win_world_r", - "pcc_display_name": "Y2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1153, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errx2win_world_r", - "pcc_display_name": "Errx2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1154, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "erry2win_world_r", - "pcc_display_name": "Erry2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1155, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxywin_world_r", - "pcc_display_name": "Errxywin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1156, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "x2win_world_i", - "pcc_display_name": "X2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1157, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "xywin_world_i", - "pcc_display_name": "Xywin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1158, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "y2win_world_i", - "pcc_display_name": "Y2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1159, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errx2win_world_i", - "pcc_display_name": "Errx2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1160, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "erry2win_world_i", - "pcc_display_name": "Erry2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1161, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxywin_world_i", - "pcc_display_name": "Errxywin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1162, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "x2win_world_z", - "pcc_display_name": "X2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1163, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "xywin_world_z", - "pcc_display_name": "Xywin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1164, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "y2win_world_z", - "pcc_display_name": "Y2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1165, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errx2win_world_z", - "pcc_display_name": "Errx2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1166, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "erry2win_world_z", - "pcc_display_name": "Erry2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1167, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxywin_world_z", - "pcc_display_name": "Errxywin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1168, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "x2win_world_y", - "pcc_display_name": "X2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1169, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "xywin_world_y", - "pcc_display_name": "Xywin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1170, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "y2win_world_y", - "pcc_display_name": "Y2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1171, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errx2win_world_y", - "pcc_display_name": "Errx2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1172, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "erry2win_world_y", - "pcc_display_name": "Erry2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1173, - "fields": { - "pcc_class": 8, - "pcc_category": 9, - "pcc_name": "errxywin_world_y", - "pcc_display_name": "Errxywin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1174, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_g", - "pcc_display_name": "Alphawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1175, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_i", - "pcc_display_name": "Alphawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1176, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_r", - "pcc_display_name": "Alphawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1177, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_y", - "pcc_display_name": "Alphawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1178, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "alphawin_j2000_z", - "pcc_display_name": "Alphawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1179, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "a_image", - "pcc_display_name": "A image", - "pcc_ucd": "phys.size.smajAxis;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1180, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "background_g", - "pcc_display_name": "Background g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1181, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "background_i", - "pcc_display_name": "Background i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1182, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "background_r", - "pcc_display_name": "Background r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1183, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "background_y", - "pcc_display_name": "Background Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1184, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "background_z", - "pcc_display_name": "Background z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1185, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "b_image", - "pcc_display_name": "B image", - "pcc_ucd": "phys.size.sminAxis;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1186, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "catalogid_g", - "pcc_display_name": "Catalogid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1187, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "catalogid_i", - "pcc_display_name": "Catalogid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1188, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "catalogid_r", - "pcc_display_name": "Catalogid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1189, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "catalogid_y", - "pcc_display_name": "Catalogid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1190, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "catalogid_z", - "pcc_display_name": "Catalogid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1191, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_model_g", - "pcc_display_name": "Chi2 model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1192, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_model_i", - "pcc_display_name": "Chi2 model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1193, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_model_r", - "pcc_display_name": "Chi2 model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1194, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_model_y", - "pcc_display_name": "Chi2 model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1195, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_model_z", - "pcc_display_name": "Chi2 model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1196, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_psf_g", - "pcc_display_name": "Chi2 psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1197, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_psf_i", - "pcc_display_name": "Chi2 psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1198, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_psf_r", - "pcc_display_name": "Chi2 psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1199, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_psf_y", - "pcc_display_name": "Chi2 psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1200, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_psf_z", - "pcc_display_name": "Chi2 psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1201, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "class_star_g", - "pcc_display_name": "Class star g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1202, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "class_star_i", - "pcc_display_name": "Class star i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1203, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "class_star_r", - "pcc_display_name": "Class star r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1204, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "class_star_y", - "pcc_display_name": "Class star Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1205, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "class_star_z", - "pcc_display_name": "Class star z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1206, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "coadd_objects_id", - "pcc_display_name": "Coadd objects id", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1207, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "concentration_model_g", - "pcc_display_name": "Concentration model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1208, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "concentration_model_i", - "pcc_display_name": "Concentration model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1209, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "concentration_model_r", - "pcc_display_name": "Concentration model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1210, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "concentration_model_y", - "pcc_display_name": "Concentration model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1211, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "concentration_model_z", - "pcc_display_name": "Concentration model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1212, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_g", - "pcc_display_name": "Deltawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1213, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_i", - "pcc_display_name": "Deltawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1214, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_r", - "pcc_display_name": "Deltawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1215, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_y", - "pcc_display_name": "Deltawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1216, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "deltawin_j2000_z", - "pcc_display_name": "Deltawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1217, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "duration_analysis_g", - "pcc_display_name": "Duration analysis g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1218, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "duration_analysis_i", - "pcc_display_name": "Duration analysis i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1219, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "duration_analysis_r", - "pcc_display_name": "Duration analysis r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1220, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "duration_analysis_y", - "pcc_display_name": "Duration analysis Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1221, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "duration_analysis_z", - "pcc_display_name": "Duration analysis z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1222, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_g", - "pcc_display_name": "Ellip1errmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1223, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_i", - "pcc_display_name": "Ellip1errmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1224, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_r", - "pcc_display_name": "Ellip1errmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1225, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_y", - "pcc_display_name": "Ellip1errmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1226, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1errmodel_world_z", - "pcc_display_name": "Ellip1errmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1227, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1model_world_g", - "pcc_display_name": "Ellip1model world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1228, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1model_world_i", - "pcc_display_name": "Ellip1model world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1229, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1model_world_r", - "pcc_display_name": "Ellip1model world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1230, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1model_world_y", - "pcc_display_name": "Ellip1model world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1231, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip1model_world_z", - "pcc_display_name": "Ellip1model world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1232, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_g", - "pcc_display_name": "Ellip2errmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1233, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_i", - "pcc_display_name": "Ellip2errmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1234, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_r", - "pcc_display_name": "Ellip2errmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1235, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_y", - "pcc_display_name": "Ellip2errmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1236, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2errmodel_world_z", - "pcc_display_name": "Ellip2errmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1237, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2model_world_g", - "pcc_display_name": "Ellip2model world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1238, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2model_world_i", - "pcc_display_name": "Ellip2model world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1239, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2model_world_r", - "pcc_display_name": "Ellip2model world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1240, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2model_world_y", - "pcc_display_name": "Ellip2model world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1241, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellip2model_world_z", - "pcc_display_name": "Ellip2model world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1242, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_g", - "pcc_display_name": "Ellipcorrmodel world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1243, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_i", - "pcc_display_name": "Ellipcorrmodel world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1244, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_r", - "pcc_display_name": "Ellipcorrmodel world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1245, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_y", - "pcc_display_name": "Ellipcorrmodel world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1246, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipcorrmodel_world_z", - "pcc_display_name": "Ellipcorrmodel world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1247, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipticity_g", - "pcc_display_name": "Ellipticity g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1248, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipticity_i", - "pcc_display_name": "Ellipticity i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1249, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipticity_r", - "pcc_display_name": "Ellipticity r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1250, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipticity_y", - "pcc_display_name": "Ellipticity Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1251, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "ellipticity_z", - "pcc_display_name": "Ellipticity z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1252, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "equinox", - "pcc_display_name": "Equinox", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1253, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errawin_world_g", - "pcc_display_name": "Errawin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1254, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errawin_world_i", - "pcc_display_name": "Errawin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1255, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errawin_world_r", - "pcc_display_name": "Errawin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1256, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errawin_world_y", - "pcc_display_name": "Errawin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1257, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errawin_world_z", - "pcc_display_name": "Errawin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1258, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errbwin_world_g", - "pcc_display_name": "Errbwin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1259, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errbwin_world_i", - "pcc_display_name": "Errbwin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1260, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errbwin_world_r", - "pcc_display_name": "Errbwin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1261, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errbwin_world_y", - "pcc_display_name": "Errbwin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1262, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errbwin_world_z", - "pcc_display_name": "Errbwin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1263, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errb_image_g", - "pcc_display_name": "Errb image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1264, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errb_image_i", - "pcc_display_name": "Errb image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1265, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errb_image_r", - "pcc_display_name": "Errb image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1266, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errb_image_y", - "pcc_display_name": "Errb image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1267, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errb_image_z", - "pcc_display_name": "Errb image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1268, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "errdec", - "pcc_display_name": "Errdec", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1269, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "errra", - "pcc_display_name": "Errra", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1270, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_g", - "pcc_display_name": "Errthetawin j2000 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1271, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_i", - "pcc_display_name": "Errthetawin j2000 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1272, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_r", - "pcc_display_name": "Errthetawin j2000 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1273, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_y", - "pcc_display_name": "Errthetawin j2000 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1274, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errthetawin_j2000_z", - "pcc_display_name": "Errthetawin j2000 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1275, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errx2_world", - "pcc_display_name": "Errx2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1276, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxy_world_g", - "pcc_display_name": "Errxy world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1277, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxy_world_i", - "pcc_display_name": "Errxy world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1278, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxy_world_r", - "pcc_display_name": "Errxy world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1279, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxy_world_y", - "pcc_display_name": "Errxy world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1280, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxy_world_z", - "pcc_display_name": "Errxy world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1281, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "erry2_world", - "pcc_display_name": "Erry2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1282, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "errzeropoint_g", - "pcc_display_name": "Errzeropoint g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1283, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "errzeropoint_i", - "pcc_display_name": "Errzeropoint i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1284, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "errzeropoint_r", - "pcc_display_name": "Errzeropoint r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1285, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "errzeropoint_y", - "pcc_display_name": "Errzeropoint Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1286, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "errzeropoint_z", - "pcc_display_name": "Errzeropoint z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1287, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_g", - "pcc_display_name": "Flags g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1288, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_i", - "pcc_display_name": "Flags i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1289, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_model_g", - "pcc_display_name": "Flags model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1290, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_model_i", - "pcc_display_name": "Flags model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1291, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_model_r", - "pcc_display_name": "Flags model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1292, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_model_y", - "pcc_display_name": "Flags model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1293, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_model_z", - "pcc_display_name": "Flags model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1294, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_r", - "pcc_display_name": "Flags r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1295, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_weight_g", - "pcc_display_name": "Flags weight g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1296, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_weight_i", - "pcc_display_name": "Flags weight i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1297, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_weight_r", - "pcc_display_name": "Flags weight r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1298, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_weight_y", - "pcc_display_name": "Flags weight Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1299, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_weight_z", - "pcc_display_name": "Flags weight z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1300, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_y", - "pcc_display_name": "Flags Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1301, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_z", - "pcc_display_name": "Flags z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1302, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_g", - "pcc_display_name": "Fluxerr aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1303, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_i", - "pcc_display_name": "Fluxerr aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1304, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_r", - "pcc_display_name": "Fluxerr aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1305, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_y", - "pcc_display_name": "Fluxerr aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1306, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_1_z", - "pcc_display_name": "Fluxerr aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1307, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_g", - "pcc_display_name": "Fluxerr aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1308, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_i", - "pcc_display_name": "Fluxerr aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1309, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_r", - "pcc_display_name": "Fluxerr aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1310, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_y", - "pcc_display_name": "Fluxerr aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1311, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_2_z", - "pcc_display_name": "Fluxerr aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1312, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_g", - "pcc_display_name": "Fluxerr aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1313, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_i", - "pcc_display_name": "Fluxerr aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1314, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_r", - "pcc_display_name": "Fluxerr aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1315, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_y", - "pcc_display_name": "Fluxerr aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1316, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_3_z", - "pcc_display_name": "Fluxerr aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1317, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_g", - "pcc_display_name": "Fluxerr aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1318, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_i", - "pcc_display_name": "Fluxerr aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1319, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_r", - "pcc_display_name": "Fluxerr aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1320, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_y", - "pcc_display_name": "Fluxerr aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1321, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_4_z", - "pcc_display_name": "Fluxerr aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1322, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_g", - "pcc_display_name": "Fluxerr aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1323, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_i", - "pcc_display_name": "Fluxerr aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1324, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_r", - "pcc_display_name": "Fluxerr aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1325, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_y", - "pcc_display_name": "Fluxerr aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1326, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_aper_5_z", - "pcc_display_name": "Fluxerr aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1327, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_g", - "pcc_display_name": "Fluxerr auto g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1328, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_i", - "pcc_display_name": "Fluxerr auto i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1329, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_r", - "pcc_display_name": "Fluxerr auto r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1330, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_y", - "pcc_display_name": "Fluxerr auto Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1331, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_auto_z", - "pcc_display_name": "Fluxerr auto z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1332, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_model_g", - "pcc_display_name": "Fluxerr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1333, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_model_i", - "pcc_display_name": "Fluxerr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1334, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_model_r", - "pcc_display_name": "Fluxerr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1335, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_model_y", - "pcc_display_name": "Fluxerr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1336, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_model_z", - "pcc_display_name": "Fluxerr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1337, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_1_g", - "pcc_display_name": "Flux aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1338, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_1_i", - "pcc_display_name": "Flux aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1339, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_1_r", - "pcc_display_name": "Flux aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1340, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_1_y", - "pcc_display_name": "Flux aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1341, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_1_z", - "pcc_display_name": "Flux aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1342, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_2_g", - "pcc_display_name": "Flux aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1343, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_2_i", - "pcc_display_name": "Flux aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1344, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_2_r", - "pcc_display_name": "Flux aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1345, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_2_y", - "pcc_display_name": "Flux aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1346, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_2_z", - "pcc_display_name": "Flux aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1347, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_3_g", - "pcc_display_name": "Flux aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1348, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_3_i", - "pcc_display_name": "Flux aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1349, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_3_r", - "pcc_display_name": "Flux aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1350, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_3_y", - "pcc_display_name": "Flux aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1351, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_3_z", - "pcc_display_name": "Flux aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1352, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_4_g", - "pcc_display_name": "Flux aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1353, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_4_i", - "pcc_display_name": "Flux aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1354, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_4_r", - "pcc_display_name": "Flux aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1355, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_4_y", - "pcc_display_name": "Flux aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1356, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_4_z", - "pcc_display_name": "Flux aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1357, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_5_g", - "pcc_display_name": "Flux aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1358, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_5_i", - "pcc_display_name": "Flux aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1359, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_5_r", - "pcc_display_name": "Flux aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1360, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_5_y", - "pcc_display_name": "Flux aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1361, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_aper_5_z", - "pcc_display_name": "Flux aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1362, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_auto_g", - "pcc_display_name": "Flux auto g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1363, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_auto_i", - "pcc_display_name": "Flux auto i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1364, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_auto_r", - "pcc_display_name": "Flux auto r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1365, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_auto_y", - "pcc_display_name": "Flux auto Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1366, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_auto_z", - "pcc_display_name": "Flux auto z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1367, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_model_g", - "pcc_display_name": "Flux model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1368, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_model_i", - "pcc_display_name": "Flux model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1369, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_model_r", - "pcc_display_name": "Flux model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1370, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_model_y", - "pcc_display_name": "Flux model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1371, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_model_z", - "pcc_display_name": "Flux model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1372, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "flux_radius_g", - "pcc_display_name": "Flux radius g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1373, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "flux_radius_i", - "pcc_display_name": "Flux radius i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1374, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "flux_radius_r", - "pcc_display_name": "Flux radius r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1375, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "flux_radius_y", - "pcc_display_name": "Flux radius Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1376, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "flux_radius_z", - "pcc_display_name": "Flux radius z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1377, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "fwhm_world_g", - "pcc_display_name": "Fwhm world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1378, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "fwhm_world_i", - "pcc_display_name": "Fwhm world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1379, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "fwhm_world_r", - "pcc_display_name": "Fwhm world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1380, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "fwhm_world_y", - "pcc_display_name": "Fwhm world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1381, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "fwhm_world_z", - "pcc_display_name": "Fwhm world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1382, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "imageid_g", - "pcc_display_name": "Imageid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1383, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "imageid_i", - "pcc_display_name": "Imageid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1384, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "imageid_r", - "pcc_display_name": "Imageid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1385, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "imageid_y", - "pcc_display_name": "Imageid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1386, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "imageid_z", - "pcc_display_name": "Imageid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1387, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "isoarea_world_g", - "pcc_display_name": "Isoarea world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1388, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "isoarea_world_i", - "pcc_display_name": "Isoarea world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1389, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "isoarea_world_r", - "pcc_display_name": "Isoarea world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1390, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "isoarea_world_y", - "pcc_display_name": "Isoarea world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1391, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "isoarea_world_z", - "pcc_display_name": "Isoarea world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1392, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "kron_radius", - "pcc_display_name": "Kron radius", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1393, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_g", - "pcc_display_name": "Magerr aper 10 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1394, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_i", - "pcc_display_name": "Magerr aper 10 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1395, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_r", - "pcc_display_name": "Magerr aper 10 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1396, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_y", - "pcc_display_name": "Magerr aper 10 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1397, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_10_z", - "pcc_display_name": "Magerr aper 10 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1398, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_g", - "pcc_display_name": "Magerr aper 11 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1399, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_i", - "pcc_display_name": "Magerr aper 11 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1400, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_r", - "pcc_display_name": "Magerr aper 11 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1401, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_y", - "pcc_display_name": "Magerr aper 11 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1402, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_11_z", - "pcc_display_name": "Magerr aper 11 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1403, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_g", - "pcc_display_name": "Magerr aper 12 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1404, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_i", - "pcc_display_name": "Magerr aper 12 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1405, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_r", - "pcc_display_name": "Magerr aper 12 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1406, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_y", - "pcc_display_name": "Magerr aper 12 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1407, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_12_z", - "pcc_display_name": "Magerr aper 12 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1408, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_g", - "pcc_display_name": "Magerr aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1409, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_i", - "pcc_display_name": "Magerr aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1410, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_r", - "pcc_display_name": "Magerr aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1411, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_y", - "pcc_display_name": "Magerr aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1412, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_1_z", - "pcc_display_name": "Magerr aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1413, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_g", - "pcc_display_name": "Magerr aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1414, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_i", - "pcc_display_name": "Magerr aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1415, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_r", - "pcc_display_name": "Magerr aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1416, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_y", - "pcc_display_name": "Magerr aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1417, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_2_z", - "pcc_display_name": "Magerr aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1418, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_g", - "pcc_display_name": "Magerr aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1419, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_i", - "pcc_display_name": "Magerr aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1420, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_r", - "pcc_display_name": "Magerr aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1421, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_y", - "pcc_display_name": "Magerr aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1422, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_3_z", - "pcc_display_name": "Magerr aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1423, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_g", - "pcc_display_name": "Magerr aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1424, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_i", - "pcc_display_name": "Magerr aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1425, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_r", - "pcc_display_name": "Magerr aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1426, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_y", - "pcc_display_name": "Magerr aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1427, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_4_z", - "pcc_display_name": "Magerr aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1428, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_g", - "pcc_display_name": "Magerr aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1429, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_i", - "pcc_display_name": "Magerr aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1430, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_r", - "pcc_display_name": "Magerr aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1431, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_y", - "pcc_display_name": "Magerr aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1432, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_5_z", - "pcc_display_name": "Magerr aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1433, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_g", - "pcc_display_name": "Magerr aper 6 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1434, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_i", - "pcc_display_name": "Magerr aper 6 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1435, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_r", - "pcc_display_name": "Magerr aper 6 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1436, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_y", - "pcc_display_name": "Magerr aper 6 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1437, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_6_z", - "pcc_display_name": "Magerr aper 6 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1438, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_g", - "pcc_display_name": "Magerr aper 7 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1439, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_i", - "pcc_display_name": "Magerr aper 7 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1440, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_r", - "pcc_display_name": "Magerr aper 7 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1441, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_y", - "pcc_display_name": "Magerr aper 7 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1442, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_7_z", - "pcc_display_name": "Magerr aper 7 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1443, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_g", - "pcc_display_name": "Magerr aper 8 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1444, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_i", - "pcc_display_name": "Magerr aper 8 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1445, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_r", - "pcc_display_name": "Magerr aper 8 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1446, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_y", - "pcc_display_name": "Magerr aper 8 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1447, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_8_z", - "pcc_display_name": "Magerr aper 8 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1448, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_g", - "pcc_display_name": "Magerr aper 9 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1449, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_i", - "pcc_display_name": "Magerr aper 9 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1450, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_r", - "pcc_display_name": "Magerr aper 9 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1451, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_y", - "pcc_display_name": "Magerr aper 9 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1452, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_aper_9_z", - "pcc_display_name": "Magerr aper 9 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1453, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_auto_g", - "pcc_display_name": "Magerr auto g", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1454, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_auto_i", - "pcc_display_name": "Magerr auto i", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1455, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_auto_r", - "pcc_display_name": "Magerr auto r", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1456, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_auto_y", - "pcc_display_name": "Magerr auto Y", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1457, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_auto_z", - "pcc_display_name": "Magerr auto z", - "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1458, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_g", - "pcc_display_name": "Magerr hybrid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1459, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_i", - "pcc_display_name": "Magerr hybrid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1460, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_r", - "pcc_display_name": "Magerr hybrid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1461, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_y", - "pcc_display_name": "Magerr hybrid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1462, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_hybrid_z", - "pcc_display_name": "Magerr hybrid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1463, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_iso_g", - "pcc_display_name": "Magerr iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1464, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_iso_i", - "pcc_display_name": "Magerr iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1465, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_iso_r", - "pcc_display_name": "Magerr iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1466, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_iso_y", - "pcc_display_name": "Magerr iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1467, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_iso_z", - "pcc_display_name": "Magerr iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1468, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_model_g", - "pcc_display_name": "Magerr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1469, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_model_i", - "pcc_display_name": "Magerr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1470, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_model_r", - "pcc_display_name": "Magerr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1471, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_model_y", - "pcc_display_name": "Magerr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1472, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_model_z", - "pcc_display_name": "Magerr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1473, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_petro_g", - "pcc_display_name": "Magerr petro g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1474, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_petro_i", - "pcc_display_name": "Magerr petro i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1475, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_petro_r", - "pcc_display_name": "Magerr petro r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1476, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_petro_y", - "pcc_display_name": "Magerr petro Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1477, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_petro_z", - "pcc_display_name": "Magerr petro z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1478, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_psf_g", - "pcc_display_name": "Magerr psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1479, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_psf_i", - "pcc_display_name": "Magerr psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1480, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_psf_r", - "pcc_display_name": "Magerr psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1481, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_psf_y", - "pcc_display_name": "Magerr psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1482, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_psf_z", - "pcc_display_name": "Magerr psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1483, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_g", - "pcc_display_name": "Magerr spheroid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1484, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_i", - "pcc_display_name": "Magerr spheroid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1485, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_r", - "pcc_display_name": "Magerr spheroid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1486, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_y", - "pcc_display_name": "Magerr spheroid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1487, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_spheroid_z", - "pcc_display_name": "Magerr spheroid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1488, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_10_g", - "pcc_display_name": "Mag aper 10 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1489, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_10_i", - "pcc_display_name": "Mag aper 10 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1490, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_10_r", - "pcc_display_name": "Mag aper 10 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1491, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_10_y", - "pcc_display_name": "Mag aper 10 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1492, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_10_z", - "pcc_display_name": "Mag aper 10 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1493, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_11_g", - "pcc_display_name": "Mag aper 11 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1494, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_11_i", - "pcc_display_name": "Mag aper 11 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1495, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_11_r", - "pcc_display_name": "Mag aper 11 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1496, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_11_y", - "pcc_display_name": "Mag aper 11 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1497, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_11_z", - "pcc_display_name": "Mag aper 11 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1498, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_12_g", - "pcc_display_name": "Mag aper 12 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1499, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_12_i", - "pcc_display_name": "Mag aper 12 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1500, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_12_r", - "pcc_display_name": "Mag aper 12 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1501, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_12_y", - "pcc_display_name": "Mag aper 12 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1502, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_12_z", - "pcc_display_name": "Mag aper 12 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1503, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_1_g", - "pcc_display_name": "Mag aper 1 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1504, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_1_i", - "pcc_display_name": "Mag aper 1 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1505, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_1_r", - "pcc_display_name": "Mag aper 1 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1506, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_1_y", - "pcc_display_name": "Mag aper 1 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1507, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_1_z", - "pcc_display_name": "Mag aper 1 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1508, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_2_g", - "pcc_display_name": "Mag aper 2 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1509, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_2_i", - "pcc_display_name": "Mag aper 2 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1510, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_2_r", - "pcc_display_name": "Mag aper 2 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1511, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_2_y", - "pcc_display_name": "Mag aper 2 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1512, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_2_z", - "pcc_display_name": "Mag aper 2 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1513, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_3_g", - "pcc_display_name": "Mag aper 3 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1514, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_3_i", - "pcc_display_name": "Mag aper 3 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1515, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_3_r", - "pcc_display_name": "Mag aper 3 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1516, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_3_y", - "pcc_display_name": "Mag aper 3 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1517, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_3_z", - "pcc_display_name": "Mag aper 3 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1518, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_4_g", - "pcc_display_name": "Mag aper 4 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1519, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_4_i", - "pcc_display_name": "Mag aper 4 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1520, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_4_r", - "pcc_display_name": "Mag aper 4 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1521, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_4_y", - "pcc_display_name": "Mag aper 4 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1522, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_4_z", - "pcc_display_name": "Mag aper 4 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1523, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_5_g", - "pcc_display_name": "Mag aper 5 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1524, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_5_i", - "pcc_display_name": "Mag aper 5 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1525, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_5_r", - "pcc_display_name": "Mag aper 5 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1526, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_5_y", - "pcc_display_name": "Mag aper 5 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1527, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_5_z", - "pcc_display_name": "Mag aper 5 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1528, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_6_g", - "pcc_display_name": "Mag aper 6 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1529, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_6_i", - "pcc_display_name": "Mag aper 6 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1530, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_6_r", - "pcc_display_name": "Mag aper 6 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1531, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_6_y", - "pcc_display_name": "Mag aper 6 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1532, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_6_z", - "pcc_display_name": "Mag aper 6 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1533, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_7_g", - "pcc_display_name": "Mag aper 7 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1534, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_7_i", - "pcc_display_name": "Mag aper 7 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1535, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_7_r", - "pcc_display_name": "Mag aper 7 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1536, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_7_y", - "pcc_display_name": "Mag aper 7 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1537, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_7_z", - "pcc_display_name": "Mag aper 7 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1538, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_8_g", - "pcc_display_name": "Mag aper 8 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1539, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_8_i", - "pcc_display_name": "Mag aper 8 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1540, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_8_r", - "pcc_display_name": "Mag aper 8 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1541, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_8_y", - "pcc_display_name": "Mag aper 8 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1542, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_8_z", - "pcc_display_name": "Mag aper 8 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1543, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_9_g", - "pcc_display_name": "Mag aper 9 g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1544, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_9_i", - "pcc_display_name": "Mag aper 9 i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1545, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_9_r", - "pcc_display_name": "Mag aper 9 r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1546, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_9_y", - "pcc_display_name": "Mag aper 9 Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1547, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_aper_9_z", - "pcc_display_name": "Mag aper 9 z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1548, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_auto_g", - "pcc_display_name": "Mag auto g", - "pcc_ucd": "phot.mag;meta.main;em.opt.g", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1549, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_auto_i", - "pcc_display_name": "Mag auto i", - "pcc_ucd": "phot.mag;meta.main;em.opt.i", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1550, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_auto_r", - "pcc_display_name": "Mag auto r", - "pcc_ucd": "phot.mag;meta.main;em.opt.r", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1551, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_auto_y", - "pcc_display_name": "Mag auto Y", - "pcc_ucd": "phot.mag;meta.main;em.opt.Y", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1552, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_auto_z", - "pcc_display_name": "Mag auto z", - "pcc_ucd": "phot.mag;meta.main;em.opt.z", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1553, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_hybrid_g", - "pcc_display_name": "Mag hybrid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1554, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_hybrid_i", - "pcc_display_name": "Mag hybrid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1555, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_hybrid_r", - "pcc_display_name": "Mag hybrid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1556, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_hybrid_y", - "pcc_display_name": "Mag hybrid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1557, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_hybrid_z", - "pcc_display_name": "Mag hybrid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1558, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_iso_g", - "pcc_display_name": "Mag iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1559, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_iso_i", - "pcc_display_name": "Mag iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1560, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_iso_r", - "pcc_display_name": "Mag iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1561, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_iso_y", - "pcc_display_name": "Mag iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1562, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_iso_z", - "pcc_display_name": "Mag iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1563, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_model_g", - "pcc_display_name": "Mag model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1564, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_model_i", - "pcc_display_name": "Mag model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1565, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_model_r", - "pcc_display_name": "Mag model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1566, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_model_y", - "pcc_display_name": "Mag model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1567, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_model_z", - "pcc_display_name": "Mag model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1568, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_petro_g", - "pcc_display_name": "Mag petro g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1569, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_petro_i", - "pcc_display_name": "Mag petro i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1570, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_petro_r", - "pcc_display_name": "Mag petro r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1571, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_petro_y", - "pcc_display_name": "Mag petro Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1572, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_petro_z", - "pcc_display_name": "Mag petro z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1573, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_psf_g", - "pcc_display_name": "Mag psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1574, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_psf_i", - "pcc_display_name": "Mag psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1575, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_psf_r", - "pcc_display_name": "Mag psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1576, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_psf_y", - "pcc_display_name": "Mag psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1577, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_psf_z", - "pcc_display_name": "Mag psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1578, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_spheroid_g", - "pcc_display_name": "Mag spheroid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1579, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_spheroid_i", - "pcc_display_name": "Mag spheroid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1580, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_spheroid_r", - "pcc_display_name": "Mag spheroid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1581, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_spheroid_y", - "pcc_display_name": "Mag spheroid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1582, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_spheroid_z", - "pcc_display_name": "Mag spheroid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1583, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_eff_model_g", - "pcc_display_name": "Mu eff model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1584, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_eff_model_i", - "pcc_display_name": "Mu eff model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1585, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_eff_model_r", - "pcc_display_name": "Mu eff model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1586, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_eff_model_y", - "pcc_display_name": "Mu eff model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1587, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_eff_model_z", - "pcc_display_name": "Mu eff model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1588, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_g", - "pcc_display_name": "Mu max g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1589, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_i", - "pcc_display_name": "Mu max i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1590, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_model_g", - "pcc_display_name": "Mu max model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1591, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_model_i", - "pcc_display_name": "Mu max model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1592, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_model_r", - "pcc_display_name": "Mu max model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1593, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_model_y", - "pcc_display_name": "Mu max model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1594, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_model_z", - "pcc_display_name": "Mu max model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1595, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_r", - "pcc_display_name": "Mu max r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1596, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_y", - "pcc_display_name": "Mu max Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1597, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_max_z", - "pcc_display_name": "Mu max z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1598, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_mean_model_g", - "pcc_display_name": "Mu mean model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1599, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_mean_model_i", - "pcc_display_name": "Mu mean model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1600, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_mean_model_r", - "pcc_display_name": "Mu mean model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1601, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_mean_model_y", - "pcc_display_name": "Mu mean model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1602, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_mean_model_z", - "pcc_display_name": "Mu mean model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1603, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mu_threshold", - "pcc_display_name": "Mu threshold", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1604, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_model_g", - "pcc_display_name": "Niter model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1605, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_model_i", - "pcc_display_name": "Niter model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1606, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_model_r", - "pcc_display_name": "Niter model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1607, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_model_y", - "pcc_display_name": "Niter model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1608, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_model_z", - "pcc_display_name": "Niter model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1609, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_psf_g", - "pcc_display_name": "Niter psf g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1610, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_psf_i", - "pcc_display_name": "Niter psf i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1611, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_psf_r", - "pcc_display_name": "Niter psf r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1612, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_psf_y", - "pcc_display_name": "Niter psf Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1613, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_psf_z", - "pcc_display_name": "Niter psf z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1614, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "nlowdweight_iso", - "pcc_display_name": "Nlowdweight iso", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1615, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_g", - "pcc_display_name": "Nlowweight iso g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1616, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_i", - "pcc_display_name": "Nlowweight iso i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1617, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_r", - "pcc_display_name": "Nlowweight iso r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1618, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_y", - "pcc_display_name": "Nlowweight iso Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1619, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "nlowweight_iso_z", - "pcc_display_name": "Nlowweight iso z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1620, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "object_number", - "pcc_display_name": "Object number", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1621, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "petro_radius", - "pcc_display_name": "Petro radius", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1622, - "fields": { - "pcc_class": 11, - "pcc_category": 2, - "pcc_name": "softid", - "pcc_display_name": "Softid", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1623, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spreaderr_model_g", - "pcc_display_name": "Spreaderr model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1624, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spreaderr_model_i", - "pcc_display_name": "Spreaderr model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1625, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spreaderr_model_r", - "pcc_display_name": "Spreaderr model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1626, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spreaderr_model_y", - "pcc_display_name": "Spreaderr model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1627, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spreaderr_model_z", - "pcc_display_name": "Spreaderr model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1628, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spread_model_g", - "pcc_display_name": "Spread model g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1629, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spread_model_i", - "pcc_display_name": "Spread model i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1630, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spread_model_r", - "pcc_display_name": "Spread model r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1631, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spread_model_y", - "pcc_display_name": "Spread model Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1632, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "spread_model_z", - "pcc_display_name": "Spread model z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1633, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "theta_image", - "pcc_display_name": "Theta image", - "pcc_ucd": "pos.posAng;instr.det;meta.main", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1634, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "theta_image_g", - "pcc_display_name": "Theta image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1635, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "theta_image_i", - "pcc_display_name": "Theta image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1636, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "theta_image_r", - "pcc_display_name": "Theta image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1637, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "theta_image_y", - "pcc_display_name": "Theta image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1638, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "theta_image_z", - "pcc_display_name": "Theta image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1639, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "threshold", - "pcc_display_name": "Threshold", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1640, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "x2_world", - "pcc_display_name": "X2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1641, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xmax_image", - "pcc_display_name": "Xmax image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1642, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xmin_image", - "pcc_display_name": "Xmin image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1643, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xwin_image_g", - "pcc_display_name": "Xwin image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1644, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xwin_image_i", - "pcc_display_name": "Xwin image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1645, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xwin_image_r", - "pcc_display_name": "Xwin image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1646, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xwin_image_y", - "pcc_display_name": "Xwin image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1647, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "xwin_image_z", - "pcc_display_name": "Xwin image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1648, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "xy_world", - "pcc_display_name": "Xy world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1649, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "y2_world", - "pcc_display_name": "Y2 world", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1650, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ymax_image", - "pcc_display_name": "Ymax image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1651, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ymin_image", - "pcc_display_name": "Ymin image", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1652, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ywin_image_g", - "pcc_display_name": "Ywin image g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1653, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ywin_image_i", - "pcc_display_name": "Ywin image i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1654, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ywin_image_r", - "pcc_display_name": "Ywin image r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1655, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ywin_image_y", - "pcc_display_name": "Ywin image Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1656, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "ywin_image_z", - "pcc_display_name": "Ywin image z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1657, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropointid_g", - "pcc_display_name": "Zeropointid g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1658, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropointid_i", - "pcc_display_name": "Zeropointid i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1659, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropointid_r", - "pcc_display_name": "Zeropointid r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1660, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropointid_y", - "pcc_display_name": "Zeropointid Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1661, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropointid_z", - "pcc_display_name": "Zeropointid z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1662, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropoint_g", - "pcc_display_name": "Zeropoint g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1663, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropoint_i", - "pcc_display_name": "Zeropoint i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1664, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropoint_r", - "pcc_display_name": "Zeropoint r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1665, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropoint_y", - "pcc_display_name": "Zeropoint Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1666, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "zeropoint_z", - "pcc_display_name": "Zeropoint z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1667, - "fields": { - "pcc_class": 11, - "pcc_category": 1, - "pcc_name": "radec_source_band", - "pcc_display_name": "Radec source band", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1668, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_detmodel_g", - "pcc_display_name": "Flux detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1669, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_detmodel_i", - "pcc_display_name": "Flux detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1670, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_detmodel_r", - "pcc_display_name": "Flux detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1671, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_detmodel_z", - "pcc_display_name": "Flux detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1672, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "flux_detmodel_y", - "pcc_display_name": "Flux detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1673, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_detmodel_g", - "pcc_display_name": "Mag detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1674, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_detmodel_i", - "pcc_display_name": "Mag detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1675, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_detmodel_r", - "pcc_display_name": "Mag detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1676, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_detmodel_z", - "pcc_display_name": "Mag detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1677, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "mag_detmodel_y", - "pcc_display_name": "Mag detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1678, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_detmodel_g", - "pcc_display_name": "Flags detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1679, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_detmodel_i", - "pcc_display_name": "Flags detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1680, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_detmodel_r", - "pcc_display_name": "Flags detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1681, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_detmodel_z", - "pcc_display_name": "Flags detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1682, - "fields": { - "pcc_class": 11, - "pcc_category": 8, - "pcc_name": "flags_detmodel_y", - "pcc_display_name": "Flags detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1683, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_detmodel_g", - "pcc_display_name": "Niter detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1684, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_detmodel_i", - "pcc_display_name": "Niter detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1685, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_detmodel_r", - "pcc_display_name": "Niter detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1686, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_detmodel_z", - "pcc_display_name": "Niter detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1687, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "niter_detmodel_y", - "pcc_display_name": "Niter detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1688, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_g", - "pcc_display_name": "Magerr detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1689, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_i", - "pcc_display_name": "Magerr detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1690, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_r", - "pcc_display_name": "Magerr detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1691, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_z", - "pcc_display_name": "Magerr detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1692, - "fields": { - "pcc_class": 11, - "pcc_category": 5, - "pcc_name": "magerr_detmodel_y", - "pcc_display_name": "Magerr detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1693, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_g", - "pcc_display_name": "Fluxerr detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1694, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_i", - "pcc_display_name": "Fluxerr detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1695, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_r", - "pcc_display_name": "Fluxerr detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1696, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_z", - "pcc_display_name": "Fluxerr detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1697, - "fields": { - "pcc_class": 11, - "pcc_category": 4, - "pcc_name": "fluxerr_detmodel_y", - "pcc_display_name": "Fluxerr detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1698, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_g", - "pcc_display_name": "Chi2 detmodel g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1699, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_i", - "pcc_display_name": "Chi2 detmodel i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1700, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_r", - "pcc_display_name": "Chi2 detmodel r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1701, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_z", - "pcc_display_name": "Chi2 detmodel z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1702, - "fields": { - "pcc_class": 11, - "pcc_category": 7, - "pcc_name": "chi2_detmodel_y", - "pcc_display_name": "Chi2 detmodel Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1703, - "fields": { - "pcc_class": 11, - "pcc_category": 6, - "pcc_name": "molygon_id_g", - "pcc_display_name": "Molygon id g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1704, - "fields": { - "pcc_class": 11, - "pcc_category": 6, - "pcc_name": "molygon_id_i", - "pcc_display_name": "Molygon id i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1705, - "fields": { - "pcc_class": 11, - "pcc_category": 6, - "pcc_name": "molygon_id_r", - "pcc_display_name": "Molygon id r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1706, - "fields": { - "pcc_class": 11, - "pcc_category": 6, - "pcc_name": "molygon_id_y", - "pcc_display_name": "Molygon id Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1707, - "fields": { - "pcc_class": 11, - "pcc_category": 6, - "pcc_name": "molygon_id_z", - "pcc_display_name": "Molygon id z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1708, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "x2win_world_g", - "pcc_display_name": "X2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1709, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "xywin_world_g", - "pcc_display_name": "Xywin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1710, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "y2win_world_g", - "pcc_display_name": "Y2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1711, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errx2win_world_g", - "pcc_display_name": "Errx2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1712, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "erry2win_world_g", - "pcc_display_name": "Erry2win world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1713, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxywin_world_g", - "pcc_display_name": "Errxywin world g", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1714, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "x2win_world_r", - "pcc_display_name": "X2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1715, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "xywin_world_r", - "pcc_display_name": "Xywin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1716, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "y2win_world_r", - "pcc_display_name": "Y2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1717, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errx2win_world_r", - "pcc_display_name": "Errx2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1718, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "erry2win_world_r", - "pcc_display_name": "Erry2win world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1719, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxywin_world_r", - "pcc_display_name": "Errxywin world r", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1720, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "x2win_world_i", - "pcc_display_name": "X2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1721, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "xywin_world_i", - "pcc_display_name": "Xywin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1722, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "y2win_world_i", - "pcc_display_name": "Y2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1723, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errx2win_world_i", - "pcc_display_name": "Errx2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1724, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "erry2win_world_i", - "pcc_display_name": "Erry2win world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1725, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxywin_world_i", - "pcc_display_name": "Errxywin world i", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1726, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "x2win_world_z", - "pcc_display_name": "X2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1727, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "xywin_world_z", - "pcc_display_name": "Xywin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1728, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "y2win_world_z", - "pcc_display_name": "Y2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1729, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errx2win_world_z", - "pcc_display_name": "Errx2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1730, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "erry2win_world_z", - "pcc_display_name": "Erry2win world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1731, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxywin_world_z", - "pcc_display_name": "Errxywin world z", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1732, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "x2win_world_y", - "pcc_display_name": "X2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1733, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "xywin_world_y", - "pcc_display_name": "Xywin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1734, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "y2win_world_y", - "pcc_display_name": "Y2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1735, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errx2win_world_y", - "pcc_display_name": "Errx2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1736, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "erry2win_world_y", - "pcc_display_name": "Erry2win world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1737, - "fields": { - "pcc_class": 11, - "pcc_category": 9, - "pcc_name": "errxywin_world_y", - "pcc_display_name": "Errxywin world Y", - "pcc_ucd": null, - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1738, - "fields": { - "pcc_class": 2, - "pcc_category": null, - "pcc_name": "photo_z", - "pcc_display_name": "Photo-z", - "pcc_ucd": "src.redshift.phot", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1739, - "fields": { - "pcc_class": 2, - "pcc_category": null, - "pcc_name": "radius_arcmin", - "pcc_display_name": "Radius", - "pcc_ucd": "phys.angSize;src", - "pcc_unit": "arcmin", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 1740, - "fields": { - "pcc_class": 2, - "pcc_category": null, - "pcc_name": "snr", - "pcc_display_name": "SNR", - "pcc_ucd": "stat.snr", - "pcc_unit": null, - "pcc_reference": null, - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3481, - "fields": { - "pcc_class": 153, - "pcc_category": null, - "pcc_name": "richness", - "pcc_display_name": "Richness", - "pcc_ucd": "src.class.richness", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3482, - "fields": { - "pcc_class": 153, - "pcc_category": null, - "pcc_name": "radius_mpc", - "pcc_display_name": "Radius", - "pcc_ucd": "phys.size.radius", - "pcc_unit": "Mpc", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3483, - "fields": { - "pcc_class": 153, - "pcc_category": null, - "pcc_name": "radius_arcmin", - "pcc_display_name": "Radius", - "pcc_ucd": "phys.angSize;src", - "pcc_unit": "arcmin", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3484, - "fields": { - "pcc_class": 153, - "pcc_category": null, - "pcc_name": "photo_z", - "pcc_display_name": "Photo-z", - "pcc_ucd": "src.redshift.phot", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3485, - "fields": { - "pcc_class": 153, - "pcc_category": null, - "pcc_name": "snr", - "pcc_display_name": "SNR", - "pcc_ucd": "stat.snr", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3486, - "fields": { - "pcc_class": null, - "pcc_category": 3, - "pcc_name": "cross_identification", - "pcc_display_name": "Cross identification", - "pcc_ucd": "meta.id.cross", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3487, - "fields": { - "pcc_class": 2, - "pcc_category": null, - "pcc_name": "mass", - "pcc_display_name": "Mass", - "pcc_ucd": "", - "pcc_unit": "M_sum/h", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3488, - "fields": { - "pcc_class": 100, - "pcc_category": 5, - "pcc_name": "mag_auto_g", - "pcc_display_name": "Mag auto g", - "pcc_ucd": "phot.mag;meta.main;em.opt.g", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3489, - "fields": { - "pcc_class": 100, - "pcc_category": 5, - "pcc_name": "mag_auto_r", - "pcc_display_name": "Mag auto r", - "pcc_ucd": "phot.mag;meta.main;em.opt.r", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3490, - "fields": { - "pcc_class": 100, - "pcc_category": 5, - "pcc_name": "mag_auto_i", - "pcc_display_name": "Mag auto i", - "pcc_ucd": "phot.mag;meta.main;em.opt.i", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3491, - "fields": { - "pcc_class": 100, - "pcc_category": 5, - "pcc_name": "mag_auto_z", - "pcc_display_name": "Mag auto z", - "pcc_ucd": "phot.mag;meta.main;em.opt.z", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3492, - "fields": { - "pcc_class": 100, - "pcc_category": 5, - "pcc_name": "mag_auto_y", - "pcc_display_name": "Mag auto Y", - "pcc_ucd": "phot.mag;meta.main;em.opt.Y", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -}, -{ - "model": "product_classifier.productclasscontent", - "pk": 3493, - "fields": { - "pcc_class": 100, - "pcc_category": 5, - "pcc_name": "photo_z", - "pcc_display_name": "Photo-z", - "pcc_ucd": "src.redshift.phot", - "pcc_unit": "", - "pcc_reference": "", - "pcc_mandatory": false - } -} -] +[ +{ + "model": "product_classifier.productgroup", + "pk": 1, + "fields": { + "pgr_name": "targets", + "pgr_display_name": "Targets", + "is_catalog": true + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 2, + "fields": { + "pgr_name": "value_added_catalogs", + "pgr_display_name": "Value-Added Catalogs", + "is_catalog": true + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 3, + "fields": { + "pgr_name": "simulations", + "pgr_display_name": "Simulations", + "is_catalog": true + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 4, + "fields": { + "pgr_name": "objects_catalog", + "pgr_display_name": "Objects Catalog", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 5, + "fields": { + "pgr_name": "galaxy_properties", + "pgr_display_name": "Galaxy Properties", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 6, + "fields": { + "pgr_name": "mangle_mask", + "pgr_display_name": "Mangle Mask", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 7, + "fields": { + "pgr_name": "photoz", + "pgr_display_name": "Photo-z", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 8, + "fields": { + "pgr_name": "training_set", + "pgr_display_name": "Training Set", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 9, + "fields": { + "pgr_name": "validation_set", + "pgr_display_name": "Validation Set", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 10, + "fields": { + "pgr_name": "sg_classification", + "pgr_display_name": "S/G Classification", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 11, + "fields": { + "pgr_name": "zeropoints", + "pgr_display_name": "Zeropoints", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 12, + "fields": { + "pgr_name": "external_catalogs", + "pgr_display_name": "External Catalogs", + "is_catalog": true + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 13, + "fields": { + "pgr_name": "systematic_maps", + "pgr_display_name": "Systematic Maps", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 14, + "fields": { + "pgr_name": "depth_maps", + "pgr_display_name": "Depth Maps", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 15, + "fields": { + "pgr_name": "mangle_maps", + "pgr_display_name": "Mangle Healpix Maps", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 16, + "fields": { + "pgr_name": "effective_map", + "pgr_display_name": "Effective Map", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 17, + "fields": { + "pgr_name": "photoz_maps", + "pgr_display_name": "Photo-z Maps", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 18, + "fields": { + "pgr_name": "images", + "pgr_display_name": "Images", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 19, + "fields": { + "pgr_name": "training_subset", + "pgr_display_name": "Training Subset", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 20, + "fields": { + "pgr_name": "training_file", + "pgr_display_name": "Training File", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 21, + "fields": { + "pgr_name": "training_statistic", + "pgr_display_name": "Training Statistic", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 22, + "fields": { + "pgr_name": "region_selection", + "pgr_display_name": "Region Selection", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 23, + "fields": { + "pgr_name": "aux", + "pgr_display_name": "Auxiliary", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 24, + "fields": { + "pgr_name": "bright_mask", + "pgr_display_name": "Bright Mask", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productgroup", + "pk": 25, + "fields": { + "pgr_name": "other", + "pgr_display_name": "Other", + "is_catalog": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 1, + "fields": { + "pcl_name": "objects", + "pcl_group": 1, + "pcl_display_name": "Objects", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 2, + "fields": { + "pcl_name": "galaxy_clusters", + "pcl_group": 1, + "pcl_display_name": "Galaxy Clusters", + "pcl_is_system": true + } +}, +{ + "model": "product_classifier.productclass", + "pk": 3, + "fields": { + "pcl_name": "qsos", + "pcl_group": 1, + "pcl_display_name": "QSOs", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 4, + "fields": { + "pcl_name": "training_set_spectroscopy", + "pcl_group": 1, + "pcl_display_name": "Training Set Spectroscopy", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 5, + "fields": { + "pcl_name": "stellar_systems", + "pcl_group": 1, + "pcl_display_name": "Stellar Systems", + "pcl_is_system": true + } +}, +{ + "model": "product_classifier.productclass", + "pk": 6, + "fields": { + "pcl_name": "strong_lensing", + "pcl_group": 1, + "pcl_display_name": "Strong Lensing", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 7, + "fields": { + "pcl_name": "color_outliers", + "pcl_group": 1, + "pcl_display_name": "Color Outliers", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 8, + "fields": { + "pcl_name": "external_astrometry", + "pcl_group": 12, + "pcl_display_name": "Astrometry", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 11, + "fields": { + "pcl_name": "coadd_objects", + "pcl_group": 4, + "pcl_display_name": "Coadd Objects", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 14, + "fields": { + "pcl_name": "lephare", + "pcl_group": 5, + "pcl_display_name": "Lephare", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 15, + "fields": { + "pcl_name": "mass_color", + "pcl_group": 5, + "pcl_display_name": "Mass Color", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 16, + "fields": { + "pcl_name": "simulations", + "pcl_group": 3, + "pcl_display_name": "Simulations", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 17, + "fields": { + "pcl_name": "weighted_training_set", + "pcl_group": 8, + "pcl_display_name": "Training Set", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 18, + "fields": { + "pcl_name": "validation_set", + "pcl_group": 9, + "pcl_display_name": "Validation Set", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 26, + "fields": { + "pcl_name": "annz", + "pcl_group": 7, + "pcl_display_name": "ANNz", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 28, + "fields": { + "pcl_name": "lephare_photoz", + "pcl_group": 7, + "pcl_display_name": "Lephare Photo-z", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 29, + "fields": { + "pcl_name": "slr", + "pcl_group": 11, + "pcl_display_name": "SLR", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 31, + "fields": { + "pcl_name": "class_star", + "pcl_group": 10, + "pcl_display_name": "Class Star", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 32, + "fields": { + "pcl_name": "modest", + "pcl_group": 10, + "pcl_display_name": "Modest", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 33, + "fields": { + "pcl_name": "spread_model", + "pcl_group": 10, + "pcl_display_name": "Spread Model", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 46, + "fields": { + "pcl_name": "annz2", + "pcl_group": 7, + "pcl_display_name": "ANNZ2", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 47, + "fields": { + "pcl_name": "arborz", + "pcl_group": 7, + "pcl_display_name": "Arborz", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 48, + "fields": { + "pcl_name": "mlz", + "pcl_group": 7, + "pcl_display_name": "MLZ", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 49, + "fields": { + "pcl_name": "pofz", + "pcl_group": 7, + "pcl_display_name": "P(z)", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 50, + "fields": { + "pcl_name": "skynet", + "pcl_group": 7, + "pcl_display_name": "Skynet", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 51, + "fields": { + "pcl_name": "zebra", + "pcl_group": 7, + "pcl_display_name": "Zebra", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 52, + "fields": { + "pcl_name": "dnf", + "pcl_group": 7, + "pcl_display_name": "DNF", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 53, + "fields": { + "pcl_name": "y1_modest_v1", + "pcl_group": 10, + "pcl_display_name": "Y1 Modest v1", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 54, + "fields": { + "pcl_name": "y1_modest_v2", + "pcl_group": 10, + "pcl_display_name": "Y1 Modest v2", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 55, + "fields": { + "pcl_name": "systematic_maps_sky_sigma", + "pcl_group": 13, + "pcl_display_name": "Sky Sigma", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 56, + "fields": { + "pcl_name": "systematic_maps_count_total", + "pcl_group": 13, + "pcl_display_name": "Count Total", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 58, + "fields": { + "pcl_name": "systematic_maps_airmass", + "pcl_group": 13, + "pcl_display_name": "Airmass", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 59, + "fields": { + "pcl_name": "systematic_maps_fwhm", + "pcl_group": 13, + "pcl_display_name": "FWHM", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 60, + "fields": { + "pcl_name": "systematic_maps_sky_brightness", + "pcl_group": 13, + "pcl_display_name": "Sky Brightness", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 61, + "fields": { + "pcl_name": "systematic_maps_mag_limit", + "pcl_group": 13, + "pcl_display_name": "Mag Limit", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 62, + "fields": { + "pcl_name": "systematic_maps_exposure_time", + "pcl_group": 13, + "pcl_display_name": "Exposure Time", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 63, + "fields": { + "pcl_name": "mag_auto", + "pcl_group": 14, + "pcl_display_name": "Mag Auto", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 64, + "fields": { + "pcl_name": "mag_aper_4", + "pcl_group": 14, + "pcl_display_name": "Mag Aper 4", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 66, + "fields": { + "pcl_name": "mag_psf", + "pcl_group": 14, + "pcl_display_name": "Mag PSF", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 67, + "fields": { + "pcl_name": "mangle_maps_exposure_time", + "pcl_group": 15, + "pcl_display_name": "Exposure Time", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 68, + "fields": { + "pcl_name": "mangle_maps_mag_limit", + "pcl_group": 13, + "pcl_display_name": "Mag Limit", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 69, + "fields": { + "pcl_name": "mangle_maps_coadds", + "pcl_group": 15, + "pcl_display_name": "Mangle Healpix Coadds", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 70, + "fields": { + "pcl_name": "mangle_maps_weight", + "pcl_group": 15, + "pcl_display_name": "Weight", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 71, + "fields": { + "pcl_name": "mangle_maps_area_fraction", + "pcl_group": 13, + "pcl_display_name": "Area Fraction", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 72, + "fields": { + "pcl_name": "effective_map_healpix_coadds", + "pcl_group": 16, + "pcl_display_name": "Effective Map Healpix Coadds", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 73, + "fields": { + "pcl_name": "region_selection", + "pcl_group": 16, + "pcl_display_name": "Region Selection", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 74, + "fields": { + "pcl_name": "annz_median", + "pcl_group": 17, + "pcl_display_name": "Annz Median", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 75, + "fields": { + "pcl_name": "annz_error", + "pcl_group": 17, + "pcl_display_name": "Annz Error", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 76, + "fields": { + "pcl_name": "annz2_median", + "pcl_group": 17, + "pcl_display_name": "Annz2 Median", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 77, + "fields": { + "pcl_name": "annz2_error", + "pcl_group": 17, + "pcl_display_name": "Annz2 Error", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 78, + "fields": { + "pcl_name": "arborz_median", + "pcl_group": 17, + "pcl_display_name": "Arborz Median", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 79, + "fields": { + "pcl_name": "arborz_error", + "pcl_group": 17, + "pcl_display_name": "Arborz Error", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 80, + "fields": { + "pcl_name": "mlz_median", + "pcl_group": 17, + "pcl_display_name": "MLZ Median", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 81, + "fields": { + "pcl_name": "mlz_error", + "pcl_group": 17, + "pcl_display_name": "MLZ Error", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 82, + "fields": { + "pcl_name": "lephare_median", + "pcl_group": 17, + "pcl_display_name": "Lephare Median", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 84, + "fields": { + "pcl_name": "lephare_error", + "pcl_group": 17, + "pcl_display_name": "Lephare Error", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 85, + "fields": { + "pcl_name": "molygon", + "pcl_group": 6, + "pcl_display_name": "Molygon", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 86, + "fields": { + "pcl_name": "starbitmask", + "pcl_group": 6, + "pcl_display_name": "Starbitmask", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 87, + "fields": { + "pcl_name": "molygon_coadds", + "pcl_group": 6, + "pcl_display_name": "Molygon Coadds", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 88, + "fields": { + "pcl_name": "raw_images", + "pcl_group": 18, + "pcl_display_name": "Raw Images", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 89, + "fields": { + "pcl_name": "calibration_images", + "pcl_group": 18, + "pcl_display_name": "Calibration Images", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 90, + "fields": { + "pcl_name": "reduced_images", + "pcl_group": 18, + "pcl_display_name": "Reduced Images", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 91, + "fields": { + "pcl_name": "coadd_images", + "pcl_group": 18, + "pcl_display_name": "Coadd Images", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 92, + "fields": { + "pcl_name": "coadd_molygon", + "pcl_group": 23, + "pcl_display_name": "Coadd Molygon", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 93, + "fields": { + "pcl_name": "coadd_healpix", + "pcl_group": 23, + "pcl_display_name": "Coadd Healpix", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 94, + "fields": { + "pcl_name": "bcc_simulation", + "pcl_group": 3, + "pcl_display_name": "BCC", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 95, + "fields": { + "pcl_name": "mice_simulation", + "pcl_group": 3, + "pcl_display_name": "Mice", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 96, + "fields": { + "pcl_name": "addstar_simulation", + "pcl_group": 3, + "pcl_display_name": "Addstar", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 97, + "fields": { + "pcl_name": "external_photometry", + "pcl_group": 12, + "pcl_display_name": "Photometry", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 98, + "fields": { + "pcl_name": "external_spectroscopy", + "pcl_group": 1, + "pcl_display_name": "External Spectroscopy", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 99, + "fields": { + "pcl_name": "external_image_quality", + "pcl_group": 12, + "pcl_display_name": "Image Quality", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 100, + "fields": { + "pcl_name": "cluster_members", + "pcl_group": 1, + "pcl_display_name": "Cluster Members", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 101, + "fields": { + "pcl_name": "astrometry_outliers", + "pcl_group": 1, + "pcl_display_name": "Astrometry Outliers", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 102, + "fields": { + "pcl_name": "footprint_map", + "pcl_group": 22, + "pcl_display_name": "Footprint map", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 103, + "fields": { + "pcl_name": "vac_generic", + "pcl_group": 2, + "pcl_display_name": "Generic", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 122, + "fields": { + "pcl_name": "training_subset", + "pcl_group": 19, + "pcl_display_name": "Training Subset", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 123, + "fields": { + "pcl_name": "validation_subset", + "pcl_group": 19, + "pcl_display_name": "Validation Subset", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 124, + "fields": { + "pcl_name": "annz_training", + "pcl_group": 20, + "pcl_display_name": "ANNz Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 125, + "fields": { + "pcl_name": "annz2_training", + "pcl_group": 20, + "pcl_display_name": "ANNZ2 Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 126, + "fields": { + "pcl_name": "arborz_training", + "pcl_group": 20, + "pcl_display_name": "Arborz Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 127, + "fields": { + "pcl_name": "dnf_training", + "pcl_group": 20, + "pcl_display_name": "DNF Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 128, + "fields": { + "pcl_name": "mlz_training", + "pcl_group": 20, + "pcl_display_name": "MLZ Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 129, + "fields": { + "pcl_name": "pofz_training", + "pcl_group": 20, + "pcl_display_name": "P(z) Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 130, + "fields": { + "pcl_name": "skynet_training", + "pcl_group": 20, + "pcl_display_name": "Skynet Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 131, + "fields": { + "pcl_name": "zebra_training", + "pcl_group": 20, + "pcl_display_name": "Zebra Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 132, + "fields": { + "pcl_name": "lephare_training", + "pcl_group": 20, + "pcl_display_name": "Lephare Training", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 133, + "fields": { + "pcl_name": "annz_stats", + "pcl_group": 21, + "pcl_display_name": "ANNz Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 134, + "fields": { + "pcl_name": "annz2_stats", + "pcl_group": 21, + "pcl_display_name": "ANNZ2 Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 135, + "fields": { + "pcl_name": "arborz_stats", + "pcl_group": 21, + "pcl_display_name": "Arborz Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 136, + "fields": { + "pcl_name": "dnf_stats", + "pcl_group": 21, + "pcl_display_name": "DNF Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 137, + "fields": { + "pcl_name": "mlz_stats", + "pcl_group": 21, + "pcl_display_name": "MLZ Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 138, + "fields": { + "pcl_name": "pofz_stats", + "pcl_group": 21, + "pcl_display_name": "P(z) Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 139, + "fields": { + "pcl_name": "skynet_stats", + "pcl_group": 21, + "pcl_display_name": "Skynet Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 140, + "fields": { + "pcl_name": "zebra_stats", + "pcl_group": 21, + "pcl_display_name": "Zebra Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 141, + "fields": { + "pcl_name": "lephare_stats", + "pcl_group": 21, + "pcl_display_name": "Lephare Statistics", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 143, + "fields": { + "pcl_name": "map_images", + "pcl_group": 18, + "pcl_display_name": "Map Images", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 144, + "fields": { + "pcl_name": "bright_mask", + "pcl_group": 24, + "pcl_display_name": "Bright Mask", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 145, + "fields": { + "pcl_name": "vac_cluster", + "pcl_group": 2, + "pcl_display_name": "Cluster Catalog", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 147, + "fields": { + "pcl_name": "vac_ga", + "pcl_group": 2, + "pcl_display_name": "GA", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 148, + "fields": { + "pcl_name": "vac_ge", + "pcl_group": 2, + "pcl_display_name": "GE", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 149, + "fields": { + "pcl_name": "vac_lss", + "pcl_group": 2, + "pcl_display_name": "LSS", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 150, + "fields": { + "pcl_name": "external_vac_lss", + "pcl_group": 2, + "pcl_display_name": "External VAC LSS", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 151, + "fields": { + "pcl_name": "external_footprint_map", + "pcl_group": 22, + "pcl_display_name": "External Footprint Map", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 152, + "fields": { + "pcl_name": "y1_modest_v3", + "pcl_group": 10, + "pcl_display_name": "Y1 Modest v3", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 153, + "fields": { + "pcl_name": "unmatched_clusters", + "pcl_group": 1, + "pcl_display_name": "Unmatched Clusters", + "pcl_is_system": true + } +}, +{ + "model": "product_classifier.productclass", + "pk": 154, + "fields": { + "pcl_name": "systematic_maps_n_images", + "pcl_group": 13, + "pcl_display_name": "NImages", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 155, + "fields": { + "pcl_name": "matched_clusters", + "pcl_group": 1, + "pcl_display_name": "Matched Clusters", + "pcl_is_system": true + } +}, +{ + "model": "product_classifier.productclass", + "pk": 156, + "fields": { + "pcl_name": "bad_regions_map", + "pcl_group": 16, + "pcl_display_name": "Bad Regions Map", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 157, + "fields": { + "pcl_name": "systematic_maps_skyvar_uncertainty", + "pcl_group": 13, + "pcl_display_name": "Skyvar Uncertainty", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 158, + "fields": { + "pcl_name": "systematic_maps_fwhm_fluxrad_wmean", + "pcl_group": 13, + "pcl_display_name": "Fwhm Fluxrad Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 159, + "fields": { + "pcl_name": "systematic_maps_fwhm_fluxrad_max", + "pcl_group": 13, + "pcl_display_name": "Fwhm Fluxrad Max", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 160, + "fields": { + "pcl_name": "systematic_maps_fwhm_fluxrad_min", + "pcl_group": 13, + "pcl_display_name": "Fwhm Fluxrad Min", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 161, + "fields": { + "pcl_name": "systematic_maps_fwhm_wmean", + "pcl_group": 13, + "pcl_display_name": "Fwhm Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 162, + "fields": { + "pcl_name": "systematic_maps_fracdet", + "pcl_group": 13, + "pcl_display_name": "Fracdet", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 163, + "fields": { + "pcl_name": "systematic_maps_airmass_max", + "pcl_group": 13, + "pcl_display_name": "Airmass Max", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 164, + "fields": { + "pcl_name": "systematic_maps_airmass_min", + "pcl_group": 13, + "pcl_display_name": "Airmass Min", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 165, + "fields": { + "pcl_name": "systematic_maps_airmass_wmean", + "pcl_group": 13, + "pcl_display_name": "Airmass Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 166, + "fields": { + "pcl_name": "systematic_maps_exptime_sum", + "pcl_group": 13, + "pcl_display_name": "ExpTime Sum", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 167, + "fields": { + "pcl_name": "systematic_maps_fgcm_gry_min", + "pcl_group": 13, + "pcl_display_name": "FGCM GRY Min", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 168, + "fields": { + "pcl_name": "systematic_maps_fgcm_gry_wmean", + "pcl_group": 13, + "pcl_display_name": "Fgcm Gry Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 169, + "fields": { + "pcl_name": "systematic_maps_fwhm_max", + "pcl_group": 13, + "pcl_display_name": "Fwhm Max", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 170, + "fields": { + "pcl_name": "systematic_maps_fwhm_min", + "pcl_group": 13, + "pcl_display_name": "Fwhm Min", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 171, + "fields": { + "pcl_name": "systematic_maps_sigma_mag_zero_qsum", + "pcl_group": 13, + "pcl_display_name": "Sigma MagZero Qsum", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 172, + "fields": { + "pcl_name": "systematic_maps_skybrite_wmean", + "pcl_group": 13, + "pcl_display_name": "Skybrite Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 173, + "fields": { + "pcl_name": "systematic_maps_skysigma_max", + "pcl_group": 13, + "pcl_display_name": "Skysigma Max", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 174, + "fields": { + "pcl_name": "systematic_maps_skysigma_min", + "pcl_group": 13, + "pcl_display_name": "SkySigma Min", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 175, + "fields": { + "pcl_name": "systematic_maps_skysigma_wmean", + "pcl_group": 13, + "pcl_display_name": "SkySigma Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 176, + "fields": { + "pcl_name": "systematic_maps_t_eff_exptime_sum", + "pcl_group": 13, + "pcl_display_name": "Teff ExpTime Sum", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 177, + "fields": { + "pcl_name": "systematic_maps_t_eff_max", + "pcl_group": 13, + "pcl_display_name": "Teff Max", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 178, + "fields": { + "pcl_name": "systematic_maps_t_eff_min", + "pcl_group": 13, + "pcl_display_name": "Teff Min", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.productclass", + "pk": 179, + "fields": { + "pcl_name": "systematic_maps_t_eff_wmean", + "pcl_group": 13, + "pcl_display_name": "Teff Wmean", + "pcl_is_system": false + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 1, + "fields": { + "cct_name": "Astrometry" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 2, + "fields": { + "cct_name": "Base" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 3, + "fields": { + "cct_name": "Common" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 4, + "fields": { + "cct_name": "Flux" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 5, + "fields": { + "cct_name": "Magnitude" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 6, + "fields": { + "cct_name": "Mask" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 7, + "fields": { + "cct_name": "Model Fit" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 8, + "fields": { + "cct_name": "Quality" + } +}, +{ + "model": "product_classifier.contentcategory", + "pk": 9, + "fields": { + "cct_name": "Shape" + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1, + "fields": { + "pcc_class": null, + "pcc_category": 3, + "pcc_name": "id", + "pcc_display_name": "ID", + "pcc_ucd": "meta.id;meta.main", + "pcc_unit": "", + "pcc_reference": null, + "pcc_mandatory": true + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 2, + "fields": { + "pcc_class": null, + "pcc_category": 1, + "pcc_name": "RA", + "pcc_display_name": "RA", + "pcc_ucd": "pos.eq.ra;meta.main", + "pcc_unit": "deg", + "pcc_reference": "J2000", + "pcc_mandatory": true + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3, + "fields": { + "pcc_class": null, + "pcc_category": 1, + "pcc_name": "Dec", + "pcc_display_name": "Dec", + "pcc_ucd": "pos.eq.dec;meta.main", + "pcc_unit": "deg", + "pcc_reference": "J2000", + "pcc_mandatory": true + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 4, + "fields": { + "pcc_class": null, + "pcc_category": 2, + "pcc_name": "tilename", + "pcc_display_name": "Tilename", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 5, + "fields": { + "pcc_class": null, + "pcc_category": 3, + "pcc_name": "name", + "pcc_display_name": "Name", + "pcc_ucd": "meta.id.assoc", + "pcc_unit": "", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 6, + "fields": { + "pcc_class": null, + "pcc_category": 3, + "pcc_name": "l", + "pcc_display_name": "l", + "pcc_ucd": "pos.galactic.lat", + "pcc_unit": "deg", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 7, + "fields": { + "pcc_class": null, + "pcc_category": 3, + "pcc_name": "b", + "pcc_display_name": "b", + "pcc_ucd": "pos.galactic.lon", + "pcc_unit": "deg", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 8, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_g", + "pcc_display_name": "g", + "pcc_ucd": "phot.mag;meta.main;em.opt.g", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 9, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_r", + "pcc_display_name": "r", + "pcc_ucd": "phot.mag;meta.main;em.opt.r", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 10, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_i", + "pcc_display_name": "i", + "pcc_ucd": "phot.mag;meta.main;em.opt.i", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 11, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_z", + "pcc_display_name": "z", + "pcc_ucd": "phot.mag;meta.main;em.opt.z", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 12, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_Y", + "pcc_display_name": "Y", + "pcc_ucd": "phot.mag;meta.main;em.opt.Y", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 13, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_J", + "pcc_display_name": "J", + "pcc_ucd": "phot.mag;meta.main;em.opt.J", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 14, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_H", + "pcc_display_name": "H", + "pcc_ucd": "phot.mag;meta.main;em.opt.H", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 15, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_K", + "pcc_display_name": "K", + "pcc_ucd": "phot.mag;meta.main;em.opt.K", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 16, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_g", + "pcc_display_name": "g_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 17, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_r", + "pcc_display_name": "r_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 18, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_i", + "pcc_display_name": "i_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 19, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_z", + "pcc_display_name": "z_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 20, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_Y", + "pcc_display_name": "Y_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 21, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_J", + "pcc_display_name": "J_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.J", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 22, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_H", + "pcc_display_name": "H_err", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.H", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 23, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "mag_err_K", + "pcc_display_name": "K_err_K", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.K", + "pcc_unit": "mag", + "pcc_reference": "AB", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 24, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "photo_z", + "pcc_display_name": "Photo-z", + "pcc_ucd": "src.redshift.phot", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 25, + "fields": { + "pcc_class": 1, + "pcc_category": null, + "pcc_name": "photo_z_err", + "pcc_display_name": "photo-z err", + "pcc_ucd": "stat.error;src.redshift.phot", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 26, + "fields": { + "pcc_class": 98, + "pcc_category": null, + "pcc_name": "mag_i", + "pcc_display_name": "i", + "pcc_ucd": "phot.mag;meta.main;em.opt.i", + "pcc_unit": "mag", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 27, + "fields": { + "pcc_class": 98, + "pcc_category": null, + "pcc_name": "z", + "pcc_display_name": "Spec-z", + "pcc_ucd": "src.redshift", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 28, + "fields": { + "pcc_class": 98, + "pcc_category": null, + "pcc_name": "z_err", + "pcc_display_name": "Spec-z err", + "pcc_ucd": "stat.error;src.redshift", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 29, + "fields": { + "pcc_class": 98, + "pcc_category": null, + "pcc_name": "flag", + "pcc_display_name": "Spec-z quality", + "pcc_ucd": "src.redshift;meta.code.qual", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 30, + "fields": { + "pcc_class": 98, + "pcc_category": null, + "pcc_name": "source", + "pcc_display_name": "Spec-z source", + "pcc_ucd": "src.redshift;meta.table", + "pcc_unit": "src", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 31, + "fields": { + "pcc_class": 2, + "pcc_category": null, + "pcc_name": "richness", + "pcc_display_name": "Richness", + "pcc_ucd": "src.class.richness", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 32, + "fields": { + "pcc_class": 2, + "pcc_category": null, + "pcc_name": "radius_mpc", + "pcc_display_name": "Radius", + "pcc_ucd": "phys.size.radius", + "pcc_unit": "Mpc", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 33, + "fields": { + "pcc_class": 6, + "pcc_category": null, + "pcc_name": "radius_mpc", + "pcc_display_name": "Radius", + "pcc_ucd": "phys.size.radius", + "pcc_unit": "Mpc", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 34, + "fields": { + "pcc_class": 6, + "pcc_category": null, + "pcc_name": "multiplicity", + "pcc_display_name": "Multiplicity", + "pcc_ucd": "meta.code.multip", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 35, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "dist_mod", + "pcc_display_name": "Distance modulus", + "pcc_ucd": "phot.mag.distMod", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 36, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "log_age", + "pcc_display_name": "Log age", + "pcc_ucd": "time.age", + "pcc_unit": "log(yrs)", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 37, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "abund_z", + "pcc_display_name": "[Fe/H]", + "pcc_ucd": "phys.abund.Z", + "pcc_unit": null, + "pcc_reference": "[Fe/H] = log10 (Z/0.018)", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 38, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "color_excess", + "pcc_display_name": "E(B-V)", + "pcc_ucd": "phot.color.excess", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 39, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "major_axis", + "pcc_display_name": "Major axis", + "pcc_ucd": "phys.angSize.smajAxis", + "pcc_unit": "arcmin", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 40, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "ellipticity", + "pcc_display_name": "Ellipticity", + "pcc_ucd": "src.ellipticity", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 41, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "richness", + "pcc_display_name": "# of stars", + "pcc_ucd": "src;meta.number", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 42, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "luminosity", + "pcc_display_name": "Luminosity", + "pcc_ucd": "phys.luminosity", + "pcc_unit": "Mabs = 4.8 - 2.5*log(L/L_sun) for V band", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 43, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "stellar_mass", + "pcc_display_name": "Stellar mass", + "pcc_ucd": "phys.mass", + "pcc_unit": "M_sun", + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 44, + "fields": { + "pcc_class": 5, + "pcc_category": null, + "pcc_name": "radius_mpc", + "pcc_display_name": "Radius", + "pcc_ucd": "phys.size.radius", + "pcc_unit": "Mpc", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 45, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_g", + "pcc_display_name": "Alphawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 46, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_i", + "pcc_display_name": "Alphawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 47, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_r", + "pcc_display_name": "Alphawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 48, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_y", + "pcc_display_name": "Alphawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 49, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_z", + "pcc_display_name": "Alphawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 50, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "a_image", + "pcc_display_name": "A image", + "pcc_ucd": "phys.size.smajAxis;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 51, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "background_g", + "pcc_display_name": "Background g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 52, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "background_i", + "pcc_display_name": "Background i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 53, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "background_r", + "pcc_display_name": "Background r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 54, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "background_y", + "pcc_display_name": "Background Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 55, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "background_z", + "pcc_display_name": "Background z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 56, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "b_image", + "pcc_display_name": "B image", + "pcc_ucd": "phys.size.sminAxis;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 57, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "catalogid_g", + "pcc_display_name": "Catalogid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 58, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "catalogid_i", + "pcc_display_name": "Catalogid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 59, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "catalogid_r", + "pcc_display_name": "Catalogid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 60, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "catalogid_y", + "pcc_display_name": "Catalogid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 61, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "catalogid_z", + "pcc_display_name": "Catalogid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 62, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_model_g", + "pcc_display_name": "Chi2 model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 63, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_model_i", + "pcc_display_name": "Chi2 model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 64, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_model_r", + "pcc_display_name": "Chi2 model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 65, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_model_y", + "pcc_display_name": "Chi2 model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 66, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_model_z", + "pcc_display_name": "Chi2 model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 67, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_psf_g", + "pcc_display_name": "Chi2 psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 68, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_psf_i", + "pcc_display_name": "Chi2 psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 69, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_psf_r", + "pcc_display_name": "Chi2 psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 70, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_psf_y", + "pcc_display_name": "Chi2 psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 71, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_psf_z", + "pcc_display_name": "Chi2 psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 72, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "class_star_g", + "pcc_display_name": "Class star g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 73, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "class_star_i", + "pcc_display_name": "Class star i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 74, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "class_star_r", + "pcc_display_name": "Class star r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 75, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "class_star_y", + "pcc_display_name": "Class star Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 76, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "class_star_z", + "pcc_display_name": "Class star z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 77, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "coadd_objects_id", + "pcc_display_name": "Coadd objects id", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 78, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "concentration_model_g", + "pcc_display_name": "Concentration model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 79, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "concentration_model_i", + "pcc_display_name": "Concentration model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 80, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "concentration_model_r", + "pcc_display_name": "Concentration model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 81, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "concentration_model_y", + "pcc_display_name": "Concentration model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 82, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "concentration_model_z", + "pcc_display_name": "Concentration model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 83, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_g", + "pcc_display_name": "Deltawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 84, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_i", + "pcc_display_name": "Deltawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 85, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_r", + "pcc_display_name": "Deltawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 86, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_y", + "pcc_display_name": "Deltawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 87, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_z", + "pcc_display_name": "Deltawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 88, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "duration_analysis_g", + "pcc_display_name": "Duration analysis g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 89, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "duration_analysis_i", + "pcc_display_name": "Duration analysis i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 90, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "duration_analysis_r", + "pcc_display_name": "Duration analysis r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 91, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "duration_analysis_y", + "pcc_display_name": "Duration analysis Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 92, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "duration_analysis_z", + "pcc_display_name": "Duration analysis z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 93, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_g", + "pcc_display_name": "Ellip1errmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 94, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_i", + "pcc_display_name": "Ellip1errmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 95, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_r", + "pcc_display_name": "Ellip1errmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 96, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_y", + "pcc_display_name": "Ellip1errmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 97, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_z", + "pcc_display_name": "Ellip1errmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 98, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1model_world_g", + "pcc_display_name": "Ellip1model world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 99, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1model_world_i", + "pcc_display_name": "Ellip1model world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 100, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1model_world_r", + "pcc_display_name": "Ellip1model world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 101, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1model_world_y", + "pcc_display_name": "Ellip1model world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 102, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip1model_world_z", + "pcc_display_name": "Ellip1model world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 103, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_g", + "pcc_display_name": "Ellip2errmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 104, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_i", + "pcc_display_name": "Ellip2errmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 105, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_r", + "pcc_display_name": "Ellip2errmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 106, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_y", + "pcc_display_name": "Ellip2errmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 107, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_z", + "pcc_display_name": "Ellip2errmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 108, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2model_world_g", + "pcc_display_name": "Ellip2model world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 109, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2model_world_i", + "pcc_display_name": "Ellip2model world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 110, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2model_world_r", + "pcc_display_name": "Ellip2model world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 111, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2model_world_y", + "pcc_display_name": "Ellip2model world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 112, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellip2model_world_z", + "pcc_display_name": "Ellip2model world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 113, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_g", + "pcc_display_name": "Ellipcorrmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 114, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_i", + "pcc_display_name": "Ellipcorrmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 115, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_r", + "pcc_display_name": "Ellipcorrmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 116, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_y", + "pcc_display_name": "Ellipcorrmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 117, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_z", + "pcc_display_name": "Ellipcorrmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 118, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipticity_g", + "pcc_display_name": "Ellipticity g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 119, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipticity_i", + "pcc_display_name": "Ellipticity i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 120, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipticity_r", + "pcc_display_name": "Ellipticity r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 121, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipticity_y", + "pcc_display_name": "Ellipticity Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 122, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "ellipticity_z", + "pcc_display_name": "Ellipticity z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 123, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "equinox", + "pcc_display_name": "Equinox", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 124, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errawin_world_g", + "pcc_display_name": "Errawin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 125, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errawin_world_i", + "pcc_display_name": "Errawin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 126, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errawin_world_r", + "pcc_display_name": "Errawin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 127, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errawin_world_y", + "pcc_display_name": "Errawin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 128, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errawin_world_z", + "pcc_display_name": "Errawin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 129, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errbwin_world_g", + "pcc_display_name": "Errbwin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 130, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errbwin_world_i", + "pcc_display_name": "Errbwin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 131, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errbwin_world_r", + "pcc_display_name": "Errbwin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 132, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errbwin_world_y", + "pcc_display_name": "Errbwin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 133, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errbwin_world_z", + "pcc_display_name": "Errbwin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 134, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errb_image_g", + "pcc_display_name": "Errb image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 135, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errb_image_i", + "pcc_display_name": "Errb image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 136, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errb_image_r", + "pcc_display_name": "Errb image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 137, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errb_image_y", + "pcc_display_name": "Errb image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 138, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errb_image_z", + "pcc_display_name": "Errb image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 139, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "errdec", + "pcc_display_name": "Errdec", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 140, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "errra", + "pcc_display_name": "Errra", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 141, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_g", + "pcc_display_name": "Errthetawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 142, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_i", + "pcc_display_name": "Errthetawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 143, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_r", + "pcc_display_name": "Errthetawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 144, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_y", + "pcc_display_name": "Errthetawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 145, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_z", + "pcc_display_name": "Errthetawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 146, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errx2_world", + "pcc_display_name": "Errx2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 147, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxy_world_g", + "pcc_display_name": "Errxy world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 148, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxy_world_i", + "pcc_display_name": "Errxy world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 149, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxy_world_r", + "pcc_display_name": "Errxy world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 150, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxy_world_y", + "pcc_display_name": "Errxy world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 151, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxy_world_z", + "pcc_display_name": "Errxy world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 152, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "erry2_world", + "pcc_display_name": "Erry2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 153, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "errzeropoint_g", + "pcc_display_name": "Errzeropoint g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 154, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "errzeropoint_i", + "pcc_display_name": "Errzeropoint i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 155, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "errzeropoint_r", + "pcc_display_name": "Errzeropoint r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 156, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "errzeropoint_y", + "pcc_display_name": "Errzeropoint Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 157, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "errzeropoint_z", + "pcc_display_name": "Errzeropoint z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 158, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_g", + "pcc_display_name": "Flags g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 159, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_i", + "pcc_display_name": "Flags i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 160, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_model_g", + "pcc_display_name": "Flags model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 161, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_model_i", + "pcc_display_name": "Flags model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 162, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_model_r", + "pcc_display_name": "Flags model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 163, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_model_y", + "pcc_display_name": "Flags model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 164, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_model_z", + "pcc_display_name": "Flags model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 165, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_r", + "pcc_display_name": "Flags r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 166, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_weight_g", + "pcc_display_name": "Flags weight g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 167, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_weight_i", + "pcc_display_name": "Flags weight i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 168, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_weight_r", + "pcc_display_name": "Flags weight r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 169, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_weight_y", + "pcc_display_name": "Flags weight Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 170, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_weight_z", + "pcc_display_name": "Flags weight z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 171, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_y", + "pcc_display_name": "Flags Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 172, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_z", + "pcc_display_name": "Flags z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 173, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_g", + "pcc_display_name": "Fluxerr aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 174, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_i", + "pcc_display_name": "Fluxerr aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 175, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_r", + "pcc_display_name": "Fluxerr aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 176, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_y", + "pcc_display_name": "Fluxerr aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 177, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_z", + "pcc_display_name": "Fluxerr aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 178, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_g", + "pcc_display_name": "Fluxerr aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 179, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_i", + "pcc_display_name": "Fluxerr aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 180, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_r", + "pcc_display_name": "Fluxerr aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 181, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_y", + "pcc_display_name": "Fluxerr aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 182, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_z", + "pcc_display_name": "Fluxerr aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 183, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_g", + "pcc_display_name": "Fluxerr aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 184, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_i", + "pcc_display_name": "Fluxerr aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 185, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_r", + "pcc_display_name": "Fluxerr aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 186, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_y", + "pcc_display_name": "Fluxerr aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 187, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_z", + "pcc_display_name": "Fluxerr aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 188, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_g", + "pcc_display_name": "Fluxerr aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 189, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_i", + "pcc_display_name": "Fluxerr aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 190, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_r", + "pcc_display_name": "Fluxerr aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 191, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_y", + "pcc_display_name": "Fluxerr aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 192, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_z", + "pcc_display_name": "Fluxerr aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 193, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_g", + "pcc_display_name": "Fluxerr aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 194, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_i", + "pcc_display_name": "Fluxerr aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 195, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_r", + "pcc_display_name": "Fluxerr aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 196, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_y", + "pcc_display_name": "Fluxerr aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 197, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_z", + "pcc_display_name": "Fluxerr aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 198, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_g", + "pcc_display_name": "Fluxerr auto g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 199, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_i", + "pcc_display_name": "Fluxerr auto i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 200, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_r", + "pcc_display_name": "Fluxerr auto r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 201, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_y", + "pcc_display_name": "Fluxerr auto Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 202, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_z", + "pcc_display_name": "Fluxerr auto z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 203, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_model_g", + "pcc_display_name": "Fluxerr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 204, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_model_i", + "pcc_display_name": "Fluxerr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 205, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_model_r", + "pcc_display_name": "Fluxerr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 206, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_model_y", + "pcc_display_name": "Fluxerr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 207, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_model_z", + "pcc_display_name": "Fluxerr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 208, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_1_g", + "pcc_display_name": "Flux aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 209, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_1_i", + "pcc_display_name": "Flux aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 210, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_1_r", + "pcc_display_name": "Flux aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 211, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_1_y", + "pcc_display_name": "Flux aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 212, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_1_z", + "pcc_display_name": "Flux aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 213, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_2_g", + "pcc_display_name": "Flux aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 214, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_2_i", + "pcc_display_name": "Flux aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 215, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_2_r", + "pcc_display_name": "Flux aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 216, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_2_y", + "pcc_display_name": "Flux aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 217, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_2_z", + "pcc_display_name": "Flux aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 218, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_3_g", + "pcc_display_name": "Flux aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 219, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_3_i", + "pcc_display_name": "Flux aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 220, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_3_r", + "pcc_display_name": "Flux aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 221, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_3_y", + "pcc_display_name": "Flux aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 222, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_3_z", + "pcc_display_name": "Flux aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 223, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_4_g", + "pcc_display_name": "Flux aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 224, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_4_i", + "pcc_display_name": "Flux aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 225, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_4_r", + "pcc_display_name": "Flux aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 226, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_4_y", + "pcc_display_name": "Flux aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 227, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_4_z", + "pcc_display_name": "Flux aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 228, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_5_g", + "pcc_display_name": "Flux aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 229, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_5_i", + "pcc_display_name": "Flux aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 230, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_5_r", + "pcc_display_name": "Flux aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 231, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_5_y", + "pcc_display_name": "Flux aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 232, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_aper_5_z", + "pcc_display_name": "Flux aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 233, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_auto_g", + "pcc_display_name": "Flux auto g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 234, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_auto_i", + "pcc_display_name": "Flux auto i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 235, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_auto_r", + "pcc_display_name": "Flux auto r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 236, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_auto_y", + "pcc_display_name": "Flux auto Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 237, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_auto_z", + "pcc_display_name": "Flux auto z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 238, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_model_g", + "pcc_display_name": "Flux model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 239, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_model_i", + "pcc_display_name": "Flux model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 240, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_model_r", + "pcc_display_name": "Flux model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 241, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_model_y", + "pcc_display_name": "Flux model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 242, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_model_z", + "pcc_display_name": "Flux model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 243, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "flux_radius_g", + "pcc_display_name": "Flux radius g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 244, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "flux_radius_i", + "pcc_display_name": "Flux radius i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 245, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "flux_radius_r", + "pcc_display_name": "Flux radius r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 246, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "flux_radius_y", + "pcc_display_name": "Flux radius Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 247, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "flux_radius_z", + "pcc_display_name": "Flux radius z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 248, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "fwhm_world_g", + "pcc_display_name": "Fwhm world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 249, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "fwhm_world_i", + "pcc_display_name": "Fwhm world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 250, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "fwhm_world_r", + "pcc_display_name": "Fwhm world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 251, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "fwhm_world_y", + "pcc_display_name": "Fwhm world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 252, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "fwhm_world_z", + "pcc_display_name": "Fwhm world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 253, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "imageid_g", + "pcc_display_name": "Imageid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 254, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "imageid_i", + "pcc_display_name": "Imageid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 255, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "imageid_r", + "pcc_display_name": "Imageid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 256, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "imageid_y", + "pcc_display_name": "Imageid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 257, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "imageid_z", + "pcc_display_name": "Imageid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 258, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "isoarea_world_g", + "pcc_display_name": "Isoarea world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 259, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "isoarea_world_i", + "pcc_display_name": "Isoarea world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 260, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "isoarea_world_r", + "pcc_display_name": "Isoarea world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 261, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "isoarea_world_y", + "pcc_display_name": "Isoarea world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 262, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "isoarea_world_z", + "pcc_display_name": "Isoarea world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 263, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "kron_radius", + "pcc_display_name": "Kron radius", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 264, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_g", + "pcc_display_name": "Magerr aper 10 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 265, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_i", + "pcc_display_name": "Magerr aper 10 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 266, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_r", + "pcc_display_name": "Magerr aper 10 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 267, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_y", + "pcc_display_name": "Magerr aper 10 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 268, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_z", + "pcc_display_name": "Magerr aper 10 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 269, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_g", + "pcc_display_name": "Magerr aper 11 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 270, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_i", + "pcc_display_name": "Magerr aper 11 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 271, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_r", + "pcc_display_name": "Magerr aper 11 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 272, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_y", + "pcc_display_name": "Magerr aper 11 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 273, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_z", + "pcc_display_name": "Magerr aper 11 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 274, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_g", + "pcc_display_name": "Magerr aper 12 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 275, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_i", + "pcc_display_name": "Magerr aper 12 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 276, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_r", + "pcc_display_name": "Magerr aper 12 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 277, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_y", + "pcc_display_name": "Magerr aper 12 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 278, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_z", + "pcc_display_name": "Magerr aper 12 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 279, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_g", + "pcc_display_name": "Magerr aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 280, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_i", + "pcc_display_name": "Magerr aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 281, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_r", + "pcc_display_name": "Magerr aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 282, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_y", + "pcc_display_name": "Magerr aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 283, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_z", + "pcc_display_name": "Magerr aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 284, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_g", + "pcc_display_name": "Magerr aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 285, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_i", + "pcc_display_name": "Magerr aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 286, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_r", + "pcc_display_name": "Magerr aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 287, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_y", + "pcc_display_name": "Magerr aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 288, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_z", + "pcc_display_name": "Magerr aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 289, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_g", + "pcc_display_name": "Magerr aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 290, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_i", + "pcc_display_name": "Magerr aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 291, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_r", + "pcc_display_name": "Magerr aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 292, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_y", + "pcc_display_name": "Magerr aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 293, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_z", + "pcc_display_name": "Magerr aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 294, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_g", + "pcc_display_name": "Magerr aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 295, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_i", + "pcc_display_name": "Magerr aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 296, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_r", + "pcc_display_name": "Magerr aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 297, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_y", + "pcc_display_name": "Magerr aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 298, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_z", + "pcc_display_name": "Magerr aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 299, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_g", + "pcc_display_name": "Magerr aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 300, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_i", + "pcc_display_name": "Magerr aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 301, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_r", + "pcc_display_name": "Magerr aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 302, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_y", + "pcc_display_name": "Magerr aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 303, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_z", + "pcc_display_name": "Magerr aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 304, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_g", + "pcc_display_name": "Magerr aper 6 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 305, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_i", + "pcc_display_name": "Magerr aper 6 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 306, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_r", + "pcc_display_name": "Magerr aper 6 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 307, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_y", + "pcc_display_name": "Magerr aper 6 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 308, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_z", + "pcc_display_name": "Magerr aper 6 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 309, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_g", + "pcc_display_name": "Magerr aper 7 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 310, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_i", + "pcc_display_name": "Magerr aper 7 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 311, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_r", + "pcc_display_name": "Magerr aper 7 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 312, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_y", + "pcc_display_name": "Magerr aper 7 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 313, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_z", + "pcc_display_name": "Magerr aper 7 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 314, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_g", + "pcc_display_name": "Magerr aper 8 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 315, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_i", + "pcc_display_name": "Magerr aper 8 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 316, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_r", + "pcc_display_name": "Magerr aper 8 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 317, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_y", + "pcc_display_name": "Magerr aper 8 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 318, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_z", + "pcc_display_name": "Magerr aper 8 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 319, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_g", + "pcc_display_name": "Magerr aper 9 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 320, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_i", + "pcc_display_name": "Magerr aper 9 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 321, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_r", + "pcc_display_name": "Magerr aper 9 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 322, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_y", + "pcc_display_name": "Magerr aper 9 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 323, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_z", + "pcc_display_name": "Magerr aper 9 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 324, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_auto_g", + "pcc_display_name": "Magerr auto g", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 325, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_auto_i", + "pcc_display_name": "Magerr auto i", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 326, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_auto_r", + "pcc_display_name": "Magerr auto r", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 327, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_auto_y", + "pcc_display_name": "Magerr auto Y", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 328, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_auto_z", + "pcc_display_name": "Magerr auto z", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 329, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_g", + "pcc_display_name": "Magerr hybrid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 330, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_i", + "pcc_display_name": "Magerr hybrid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 331, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_r", + "pcc_display_name": "Magerr hybrid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 332, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_y", + "pcc_display_name": "Magerr hybrid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 333, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_z", + "pcc_display_name": "Magerr hybrid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 334, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_iso_g", + "pcc_display_name": "Magerr iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 335, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_iso_i", + "pcc_display_name": "Magerr iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 336, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_iso_r", + "pcc_display_name": "Magerr iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 337, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_iso_y", + "pcc_display_name": "Magerr iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 338, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_iso_z", + "pcc_display_name": "Magerr iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 339, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_model_g", + "pcc_display_name": "Magerr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 340, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_model_i", + "pcc_display_name": "Magerr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 341, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_model_r", + "pcc_display_name": "Magerr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 342, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_model_y", + "pcc_display_name": "Magerr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 343, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_model_z", + "pcc_display_name": "Magerr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 344, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_petro_g", + "pcc_display_name": "Magerr petro g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 345, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_petro_i", + "pcc_display_name": "Magerr petro i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 346, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_petro_r", + "pcc_display_name": "Magerr petro r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 347, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_petro_y", + "pcc_display_name": "Magerr petro Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 348, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_petro_z", + "pcc_display_name": "Magerr petro z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 349, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_psf_g", + "pcc_display_name": "Magerr psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 350, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_psf_i", + "pcc_display_name": "Magerr psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 351, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_psf_r", + "pcc_display_name": "Magerr psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 352, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_psf_y", + "pcc_display_name": "Magerr psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 353, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_psf_z", + "pcc_display_name": "Magerr psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 354, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_g", + "pcc_display_name": "Magerr spheroid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 355, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_i", + "pcc_display_name": "Magerr spheroid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 356, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_r", + "pcc_display_name": "Magerr spheroid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 357, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_y", + "pcc_display_name": "Magerr spheroid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 358, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_z", + "pcc_display_name": "Magerr spheroid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 359, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_10_g", + "pcc_display_name": "Mag aper 10 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 360, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_10_i", + "pcc_display_name": "Mag aper 10 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 361, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_10_r", + "pcc_display_name": "Mag aper 10 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 362, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_10_y", + "pcc_display_name": "Mag aper 10 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 363, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_10_z", + "pcc_display_name": "Mag aper 10 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 364, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_11_g", + "pcc_display_name": "Mag aper 11 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 365, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_11_i", + "pcc_display_name": "Mag aper 11 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 366, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_11_r", + "pcc_display_name": "Mag aper 11 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 367, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_11_y", + "pcc_display_name": "Mag aper 11 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 368, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_11_z", + "pcc_display_name": "Mag aper 11 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 369, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_12_g", + "pcc_display_name": "Mag aper 12 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 370, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_12_i", + "pcc_display_name": "Mag aper 12 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 371, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_12_r", + "pcc_display_name": "Mag aper 12 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 372, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_12_y", + "pcc_display_name": "Mag aper 12 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 373, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_12_z", + "pcc_display_name": "Mag aper 12 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 374, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_1_g", + "pcc_display_name": "Mag aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 375, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_1_i", + "pcc_display_name": "Mag aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 376, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_1_r", + "pcc_display_name": "Mag aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 377, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_1_y", + "pcc_display_name": "Mag aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 378, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_1_z", + "pcc_display_name": "Mag aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 379, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_2_g", + "pcc_display_name": "Mag aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 380, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_2_i", + "pcc_display_name": "Mag aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 381, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_2_r", + "pcc_display_name": "Mag aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 382, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_2_y", + "pcc_display_name": "Mag aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 383, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_2_z", + "pcc_display_name": "Mag aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 384, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_3_g", + "pcc_display_name": "Mag aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 385, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_3_i", + "pcc_display_name": "Mag aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 386, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_3_r", + "pcc_display_name": "Mag aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 387, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_3_y", + "pcc_display_name": "Mag aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 388, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_3_z", + "pcc_display_name": "Mag aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 389, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_4_g", + "pcc_display_name": "Mag aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 390, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_4_i", + "pcc_display_name": "Mag aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 391, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_4_r", + "pcc_display_name": "Mag aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 392, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_4_y", + "pcc_display_name": "Mag aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 393, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_4_z", + "pcc_display_name": "Mag aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 394, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_5_g", + "pcc_display_name": "Mag aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 395, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_5_i", + "pcc_display_name": "Mag aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 396, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_5_r", + "pcc_display_name": "Mag aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 397, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_5_y", + "pcc_display_name": "Mag aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 398, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_5_z", + "pcc_display_name": "Mag aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 399, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_6_g", + "pcc_display_name": "Mag aper 6 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 400, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_6_i", + "pcc_display_name": "Mag aper 6 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 401, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_6_r", + "pcc_display_name": "Mag aper 6 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 402, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_6_y", + "pcc_display_name": "Mag aper 6 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 403, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_6_z", + "pcc_display_name": "Mag aper 6 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 404, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_7_g", + "pcc_display_name": "Mag aper 7 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 405, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_7_i", + "pcc_display_name": "Mag aper 7 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 406, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_7_r", + "pcc_display_name": "Mag aper 7 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 407, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_7_y", + "pcc_display_name": "Mag aper 7 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 408, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_7_z", + "pcc_display_name": "Mag aper 7 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 409, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_8_g", + "pcc_display_name": "Mag aper 8 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 410, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_8_i", + "pcc_display_name": "Mag aper 8 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 411, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_8_r", + "pcc_display_name": "Mag aper 8 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 412, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_8_y", + "pcc_display_name": "Mag aper 8 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 413, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_8_z", + "pcc_display_name": "Mag aper 8 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 414, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_9_g", + "pcc_display_name": "Mag aper 9 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 415, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_9_i", + "pcc_display_name": "Mag aper 9 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 416, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_9_r", + "pcc_display_name": "Mag aper 9 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 417, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_9_y", + "pcc_display_name": "Mag aper 9 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 418, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_aper_9_z", + "pcc_display_name": "Mag aper 9 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 419, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_auto_g", + "pcc_display_name": "Mag auto g", + "pcc_ucd": "phot.mag;meta.main;em.opt.g", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 420, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_auto_i", + "pcc_display_name": "Mag auto i", + "pcc_ucd": "phot.mag;meta.main;em.opt.i", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 421, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_auto_r", + "pcc_display_name": "Mag auto r", + "pcc_ucd": "phot.mag;meta.main;em.opt.r", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 422, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_auto_y", + "pcc_display_name": "Mag auto Y", + "pcc_ucd": "phot.mag;meta.main;em.opt.Y", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 423, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_auto_z", + "pcc_display_name": "Mag auto z", + "pcc_ucd": "phot.mag;meta.main;em.opt.z", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 424, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_hybrid_g", + "pcc_display_name": "Mag hybrid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 425, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_hybrid_i", + "pcc_display_name": "Mag hybrid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 426, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_hybrid_r", + "pcc_display_name": "Mag hybrid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 427, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_hybrid_y", + "pcc_display_name": "Mag hybrid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 428, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_hybrid_z", + "pcc_display_name": "Mag hybrid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 429, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_iso_g", + "pcc_display_name": "Mag iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 430, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_iso_i", + "pcc_display_name": "Mag iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 431, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_iso_r", + "pcc_display_name": "Mag iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 432, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_iso_y", + "pcc_display_name": "Mag iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 433, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_iso_z", + "pcc_display_name": "Mag iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 434, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_model_g", + "pcc_display_name": "Mag model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 435, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_model_i", + "pcc_display_name": "Mag model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 436, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_model_r", + "pcc_display_name": "Mag model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 437, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_model_y", + "pcc_display_name": "Mag model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 438, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_model_z", + "pcc_display_name": "Mag model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 439, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_petro_g", + "pcc_display_name": "Mag petro g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 440, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_petro_i", + "pcc_display_name": "Mag petro i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 441, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_petro_r", + "pcc_display_name": "Mag petro r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 442, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_petro_y", + "pcc_display_name": "Mag petro Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 443, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_petro_z", + "pcc_display_name": "Mag petro z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 444, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_psf_g", + "pcc_display_name": "Mag psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 445, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_psf_i", + "pcc_display_name": "Mag psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 446, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_psf_r", + "pcc_display_name": "Mag psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 447, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_psf_y", + "pcc_display_name": "Mag psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 448, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_psf_z", + "pcc_display_name": "Mag psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 449, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_spheroid_g", + "pcc_display_name": "Mag spheroid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 450, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_spheroid_i", + "pcc_display_name": "Mag spheroid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 451, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_spheroid_r", + "pcc_display_name": "Mag spheroid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 452, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_spheroid_y", + "pcc_display_name": "Mag spheroid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 453, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_spheroid_z", + "pcc_display_name": "Mag spheroid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 454, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_eff_model_g", + "pcc_display_name": "Mu eff model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 455, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_eff_model_i", + "pcc_display_name": "Mu eff model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 456, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_eff_model_r", + "pcc_display_name": "Mu eff model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 457, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_eff_model_y", + "pcc_display_name": "Mu eff model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 458, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_eff_model_z", + "pcc_display_name": "Mu eff model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 459, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_g", + "pcc_display_name": "Mu max g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 460, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_i", + "pcc_display_name": "Mu max i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 461, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_model_g", + "pcc_display_name": "Mu max model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 462, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_model_i", + "pcc_display_name": "Mu max model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 463, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_model_r", + "pcc_display_name": "Mu max model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 464, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_model_y", + "pcc_display_name": "Mu max model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 465, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_model_z", + "pcc_display_name": "Mu max model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 466, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_r", + "pcc_display_name": "Mu max r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 467, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_y", + "pcc_display_name": "Mu max Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 468, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_max_z", + "pcc_display_name": "Mu max z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 469, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_mean_model_g", + "pcc_display_name": "Mu mean model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 470, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_mean_model_i", + "pcc_display_name": "Mu mean model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 471, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_mean_model_r", + "pcc_display_name": "Mu mean model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 472, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_mean_model_y", + "pcc_display_name": "Mu mean model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 473, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_mean_model_z", + "pcc_display_name": "Mu mean model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 474, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mu_threshold", + "pcc_display_name": "Mu threshold", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 475, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_model_g", + "pcc_display_name": "Niter model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 476, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_model_i", + "pcc_display_name": "Niter model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 477, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_model_r", + "pcc_display_name": "Niter model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 478, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_model_y", + "pcc_display_name": "Niter model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 479, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_model_z", + "pcc_display_name": "Niter model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 480, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_psf_g", + "pcc_display_name": "Niter psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 481, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_psf_i", + "pcc_display_name": "Niter psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 482, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_psf_r", + "pcc_display_name": "Niter psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 483, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_psf_y", + "pcc_display_name": "Niter psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 484, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_psf_z", + "pcc_display_name": "Niter psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 485, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "nlowdweight_iso", + "pcc_display_name": "Nlowdweight iso", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 486, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_g", + "pcc_display_name": "Nlowweight iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 487, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_i", + "pcc_display_name": "Nlowweight iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 488, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_r", + "pcc_display_name": "Nlowweight iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 489, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_y", + "pcc_display_name": "Nlowweight iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 490, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_z", + "pcc_display_name": "Nlowweight iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 491, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "object_number", + "pcc_display_name": "Object number", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 492, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "petro_radius", + "pcc_display_name": "Petro radius", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 493, + "fields": { + "pcc_class": 16, + "pcc_category": 2, + "pcc_name": "softid", + "pcc_display_name": "Softid", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 494, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spreaderr_model_g", + "pcc_display_name": "Spreaderr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 495, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spreaderr_model_i", + "pcc_display_name": "Spreaderr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 496, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spreaderr_model_r", + "pcc_display_name": "Spreaderr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 497, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spreaderr_model_y", + "pcc_display_name": "Spreaderr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 498, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spreaderr_model_z", + "pcc_display_name": "Spreaderr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 499, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spread_model_g", + "pcc_display_name": "Spread model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 500, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spread_model_i", + "pcc_display_name": "Spread model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 501, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spread_model_r", + "pcc_display_name": "Spread model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 502, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spread_model_y", + "pcc_display_name": "Spread model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 503, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "spread_model_z", + "pcc_display_name": "Spread model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 504, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "theta_image", + "pcc_display_name": "Theta image", + "pcc_ucd": "pos.posAng;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 505, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "theta_image_g", + "pcc_display_name": "Theta image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 506, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "theta_image_i", + "pcc_display_name": "Theta image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 507, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "theta_image_r", + "pcc_display_name": "Theta image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 508, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "theta_image_y", + "pcc_display_name": "Theta image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 509, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "theta_image_z", + "pcc_display_name": "Theta image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 510, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "threshold", + "pcc_display_name": "Threshold", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 511, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "x2_world", + "pcc_display_name": "X2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 512, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xmax_image", + "pcc_display_name": "Xmax image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 513, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xmin_image", + "pcc_display_name": "Xmin image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 514, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xwin_image_g", + "pcc_display_name": "Xwin image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 515, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xwin_image_i", + "pcc_display_name": "Xwin image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 516, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xwin_image_r", + "pcc_display_name": "Xwin image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 517, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xwin_image_y", + "pcc_display_name": "Xwin image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 518, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "xwin_image_z", + "pcc_display_name": "Xwin image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 519, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "xy_world", + "pcc_display_name": "Xy world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 520, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "y2_world", + "pcc_display_name": "Y2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 521, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ymax_image", + "pcc_display_name": "Ymax image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 522, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ymin_image", + "pcc_display_name": "Ymin image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 523, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ywin_image_g", + "pcc_display_name": "Ywin image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 524, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ywin_image_i", + "pcc_display_name": "Ywin image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 525, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ywin_image_r", + "pcc_display_name": "Ywin image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 526, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ywin_image_y", + "pcc_display_name": "Ywin image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 527, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "ywin_image_z", + "pcc_display_name": "Ywin image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 528, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropointid_g", + "pcc_display_name": "Zeropointid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 529, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropointid_i", + "pcc_display_name": "Zeropointid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 530, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropointid_r", + "pcc_display_name": "Zeropointid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 531, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropointid_y", + "pcc_display_name": "Zeropointid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 532, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropointid_z", + "pcc_display_name": "Zeropointid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 533, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropoint_g", + "pcc_display_name": "Zeropoint g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 534, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropoint_i", + "pcc_display_name": "Zeropoint i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 535, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropoint_r", + "pcc_display_name": "Zeropoint r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 536, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropoint_y", + "pcc_display_name": "Zeropoint Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 537, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "zeropoint_z", + "pcc_display_name": "Zeropoint z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 538, + "fields": { + "pcc_class": 16, + "pcc_category": 1, + "pcc_name": "radec_source_band", + "pcc_display_name": "Radec source band", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 539, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_detmodel_g", + "pcc_display_name": "Flux detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 540, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_detmodel_i", + "pcc_display_name": "Flux detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 541, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_detmodel_r", + "pcc_display_name": "Flux detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 542, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_detmodel_z", + "pcc_display_name": "Flux detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 543, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "flux_detmodel_y", + "pcc_display_name": "Flux detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 544, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_detmodel_g", + "pcc_display_name": "Mag detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 545, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_detmodel_i", + "pcc_display_name": "Mag detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 546, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_detmodel_r", + "pcc_display_name": "Mag detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 547, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_detmodel_z", + "pcc_display_name": "Mag detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 548, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "mag_detmodel_y", + "pcc_display_name": "Mag detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 549, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_detmodel_g", + "pcc_display_name": "Flags detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 550, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_detmodel_i", + "pcc_display_name": "Flags detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 551, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_detmodel_r", + "pcc_display_name": "Flags detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 552, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_detmodel_z", + "pcc_display_name": "Flags detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 553, + "fields": { + "pcc_class": 16, + "pcc_category": 8, + "pcc_name": "flags_detmodel_y", + "pcc_display_name": "Flags detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 554, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_detmodel_g", + "pcc_display_name": "Niter detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 555, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_detmodel_i", + "pcc_display_name": "Niter detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 556, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_detmodel_r", + "pcc_display_name": "Niter detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 557, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_detmodel_z", + "pcc_display_name": "Niter detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 558, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "niter_detmodel_y", + "pcc_display_name": "Niter detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 559, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_g", + "pcc_display_name": "Magerr detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 560, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_i", + "pcc_display_name": "Magerr detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 561, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_r", + "pcc_display_name": "Magerr detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 562, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_z", + "pcc_display_name": "Magerr detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 563, + "fields": { + "pcc_class": 16, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_y", + "pcc_display_name": "Magerr detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 564, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_g", + "pcc_display_name": "Fluxerr detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 565, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_i", + "pcc_display_name": "Fluxerr detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 566, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_r", + "pcc_display_name": "Fluxerr detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 567, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_z", + "pcc_display_name": "Fluxerr detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 568, + "fields": { + "pcc_class": 16, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_y", + "pcc_display_name": "Fluxerr detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 569, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_g", + "pcc_display_name": "Chi2 detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 570, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_i", + "pcc_display_name": "Chi2 detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 571, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_r", + "pcc_display_name": "Chi2 detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 572, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_z", + "pcc_display_name": "Chi2 detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 573, + "fields": { + "pcc_class": 16, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_y", + "pcc_display_name": "Chi2 detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 574, + "fields": { + "pcc_class": 16, + "pcc_category": 6, + "pcc_name": "molygon_id_g", + "pcc_display_name": "Molygon id g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 575, + "fields": { + "pcc_class": 16, + "pcc_category": 6, + "pcc_name": "molygon_id_i", + "pcc_display_name": "Molygon id i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 576, + "fields": { + "pcc_class": 16, + "pcc_category": 6, + "pcc_name": "molygon_id_r", + "pcc_display_name": "Molygon id r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 577, + "fields": { + "pcc_class": 16, + "pcc_category": 6, + "pcc_name": "molygon_id_y", + "pcc_display_name": "Molygon id Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 578, + "fields": { + "pcc_class": 16, + "pcc_category": 6, + "pcc_name": "molygon_id_z", + "pcc_display_name": "Molygon id z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 579, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "x2win_world_g", + "pcc_display_name": "X2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 580, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "xywin_world_g", + "pcc_display_name": "Xywin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 581, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "y2win_world_g", + "pcc_display_name": "Y2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 582, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errx2win_world_g", + "pcc_display_name": "Errx2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 583, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "erry2win_world_g", + "pcc_display_name": "Erry2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 584, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxywin_world_g", + "pcc_display_name": "Errxywin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 585, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "x2win_world_r", + "pcc_display_name": "X2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 586, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "xywin_world_r", + "pcc_display_name": "Xywin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 587, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "y2win_world_r", + "pcc_display_name": "Y2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 588, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errx2win_world_r", + "pcc_display_name": "Errx2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 589, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "erry2win_world_r", + "pcc_display_name": "Erry2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 590, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxywin_world_r", + "pcc_display_name": "Errxywin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 591, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "x2win_world_i", + "pcc_display_name": "X2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 592, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "xywin_world_i", + "pcc_display_name": "Xywin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 593, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "y2win_world_i", + "pcc_display_name": "Y2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 594, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errx2win_world_i", + "pcc_display_name": "Errx2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 595, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "erry2win_world_i", + "pcc_display_name": "Erry2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 596, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxywin_world_i", + "pcc_display_name": "Errxywin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 597, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "x2win_world_z", + "pcc_display_name": "X2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 598, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "xywin_world_z", + "pcc_display_name": "Xywin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 599, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "y2win_world_z", + "pcc_display_name": "Y2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 600, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errx2win_world_z", + "pcc_display_name": "Errx2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 601, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "erry2win_world_z", + "pcc_display_name": "Erry2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 602, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxywin_world_z", + "pcc_display_name": "Errxywin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 603, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "x2win_world_y", + "pcc_display_name": "X2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 604, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "xywin_world_y", + "pcc_display_name": "Xywin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 605, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "y2win_world_y", + "pcc_display_name": "Y2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 606, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errx2win_world_y", + "pcc_display_name": "Errx2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 607, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "erry2win_world_y", + "pcc_display_name": "Erry2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 608, + "fields": { + "pcc_class": 16, + "pcc_category": 9, + "pcc_name": "errxywin_world_y", + "pcc_display_name": "Errxywin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 609, + "fields": { + "pcc_class": null, + "pcc_category": 3, + "pcc_name": "original_id", + "pcc_display_name": "Original ID", + "pcc_ucd": "", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 610, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_g", + "pcc_display_name": "Alphawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 611, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_i", + "pcc_display_name": "Alphawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 612, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_r", + "pcc_display_name": "Alphawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 613, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_y", + "pcc_display_name": "Alphawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 614, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_z", + "pcc_display_name": "Alphawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 615, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "a_image", + "pcc_display_name": "A image", + "pcc_ucd": "phys.size.smajAxis;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 616, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "background_g", + "pcc_display_name": "Background g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 617, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "background_i", + "pcc_display_name": "Background i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 618, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "background_r", + "pcc_display_name": "Background r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 619, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "background_y", + "pcc_display_name": "Background Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 620, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "background_z", + "pcc_display_name": "Background z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 621, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "b_image", + "pcc_display_name": "B image", + "pcc_ucd": "phys.size.sminAxis;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 622, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "catalogid_g", + "pcc_display_name": "Catalogid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 623, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "catalogid_i", + "pcc_display_name": "Catalogid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 624, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "catalogid_r", + "pcc_display_name": "Catalogid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 625, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "catalogid_y", + "pcc_display_name": "Catalogid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 626, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "catalogid_z", + "pcc_display_name": "Catalogid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 627, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_model_g", + "pcc_display_name": "Chi2 model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 628, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_model_i", + "pcc_display_name": "Chi2 model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 629, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_model_r", + "pcc_display_name": "Chi2 model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 630, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_model_y", + "pcc_display_name": "Chi2 model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 631, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_model_z", + "pcc_display_name": "Chi2 model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 632, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_psf_g", + "pcc_display_name": "Chi2 psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 633, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_psf_i", + "pcc_display_name": "Chi2 psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 634, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_psf_r", + "pcc_display_name": "Chi2 psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 635, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_psf_y", + "pcc_display_name": "Chi2 psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 636, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_psf_z", + "pcc_display_name": "Chi2 psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 637, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "class_star_g", + "pcc_display_name": "Class star g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 638, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "class_star_i", + "pcc_display_name": "Class star i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 639, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "class_star_r", + "pcc_display_name": "Class star r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 640, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "class_star_y", + "pcc_display_name": "Class star Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 641, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "class_star_z", + "pcc_display_name": "Class star z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 642, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "coadd_objects_id", + "pcc_display_name": "Coadd objects id", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 643, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "concentration_model_g", + "pcc_display_name": "Concentration model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 644, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "concentration_model_i", + "pcc_display_name": "Concentration model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 645, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "concentration_model_r", + "pcc_display_name": "Concentration model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 646, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "concentration_model_y", + "pcc_display_name": "Concentration model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 647, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "concentration_model_z", + "pcc_display_name": "Concentration model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 648, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_g", + "pcc_display_name": "Deltawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 649, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_i", + "pcc_display_name": "Deltawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 650, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_r", + "pcc_display_name": "Deltawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 651, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_y", + "pcc_display_name": "Deltawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 652, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_z", + "pcc_display_name": "Deltawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 653, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "duration_analysis_g", + "pcc_display_name": "Duration analysis g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 654, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "duration_analysis_i", + "pcc_display_name": "Duration analysis i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 655, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "duration_analysis_r", + "pcc_display_name": "Duration analysis r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 656, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "duration_analysis_y", + "pcc_display_name": "Duration analysis Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 657, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "duration_analysis_z", + "pcc_display_name": "Duration analysis z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 658, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_g", + "pcc_display_name": "Ellip1errmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 659, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_i", + "pcc_display_name": "Ellip1errmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 660, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_r", + "pcc_display_name": "Ellip1errmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 661, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_y", + "pcc_display_name": "Ellip1errmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 662, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_z", + "pcc_display_name": "Ellip1errmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 663, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1model_world_g", + "pcc_display_name": "Ellip1model world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 664, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1model_world_i", + "pcc_display_name": "Ellip1model world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 665, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1model_world_r", + "pcc_display_name": "Ellip1model world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 666, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1model_world_y", + "pcc_display_name": "Ellip1model world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 667, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip1model_world_z", + "pcc_display_name": "Ellip1model world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 668, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_g", + "pcc_display_name": "Ellip2errmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 669, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_i", + "pcc_display_name": "Ellip2errmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 670, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_r", + "pcc_display_name": "Ellip2errmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 671, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_y", + "pcc_display_name": "Ellip2errmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 672, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_z", + "pcc_display_name": "Ellip2errmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 673, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2model_world_g", + "pcc_display_name": "Ellip2model world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 674, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2model_world_i", + "pcc_display_name": "Ellip2model world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 675, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2model_world_r", + "pcc_display_name": "Ellip2model world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 676, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2model_world_y", + "pcc_display_name": "Ellip2model world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 677, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellip2model_world_z", + "pcc_display_name": "Ellip2model world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 678, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_g", + "pcc_display_name": "Ellipcorrmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 679, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_i", + "pcc_display_name": "Ellipcorrmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 680, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_r", + "pcc_display_name": "Ellipcorrmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 681, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_y", + "pcc_display_name": "Ellipcorrmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 682, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_z", + "pcc_display_name": "Ellipcorrmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 683, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipticity_g", + "pcc_display_name": "Ellipticity g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 684, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipticity_i", + "pcc_display_name": "Ellipticity i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 685, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipticity_r", + "pcc_display_name": "Ellipticity r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 686, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipticity_y", + "pcc_display_name": "Ellipticity Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 687, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "ellipticity_z", + "pcc_display_name": "Ellipticity z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 688, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "equinox", + "pcc_display_name": "Equinox", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 689, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errawin_world_g", + "pcc_display_name": "Errawin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 690, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errawin_world_i", + "pcc_display_name": "Errawin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 691, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errawin_world_r", + "pcc_display_name": "Errawin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 692, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errawin_world_y", + "pcc_display_name": "Errawin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 693, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errawin_world_z", + "pcc_display_name": "Errawin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 694, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errbwin_world_g", + "pcc_display_name": "Errbwin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 695, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errbwin_world_i", + "pcc_display_name": "Errbwin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 696, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errbwin_world_r", + "pcc_display_name": "Errbwin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 697, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errbwin_world_y", + "pcc_display_name": "Errbwin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 698, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errbwin_world_z", + "pcc_display_name": "Errbwin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 699, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errb_image_g", + "pcc_display_name": "Errb image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 700, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errb_image_i", + "pcc_display_name": "Errb image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 701, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errb_image_r", + "pcc_display_name": "Errb image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 702, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errb_image_y", + "pcc_display_name": "Errb image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 703, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errb_image_z", + "pcc_display_name": "Errb image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 704, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "errdec", + "pcc_display_name": "Errdec", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 705, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "errra", + "pcc_display_name": "Errra", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 706, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_g", + "pcc_display_name": "Errthetawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 707, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_i", + "pcc_display_name": "Errthetawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 708, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_r", + "pcc_display_name": "Errthetawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 709, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_y", + "pcc_display_name": "Errthetawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 710, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_z", + "pcc_display_name": "Errthetawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 711, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errx2_world", + "pcc_display_name": "Errx2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 712, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxy_world_g", + "pcc_display_name": "Errxy world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 713, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxy_world_i", + "pcc_display_name": "Errxy world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 714, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxy_world_r", + "pcc_display_name": "Errxy world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 715, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxy_world_y", + "pcc_display_name": "Errxy world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 716, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxy_world_z", + "pcc_display_name": "Errxy world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 717, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "erry2_world", + "pcc_display_name": "Erry2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 718, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "errzeropoint_g", + "pcc_display_name": "Errzeropoint g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 719, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "errzeropoint_i", + "pcc_display_name": "Errzeropoint i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 720, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "errzeropoint_r", + "pcc_display_name": "Errzeropoint r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 721, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "errzeropoint_y", + "pcc_display_name": "Errzeropoint Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 722, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "errzeropoint_z", + "pcc_display_name": "Errzeropoint z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 723, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_g", + "pcc_display_name": "Flags g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 724, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_i", + "pcc_display_name": "Flags i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 725, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_model_g", + "pcc_display_name": "Flags model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 726, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_model_i", + "pcc_display_name": "Flags model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 727, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_model_r", + "pcc_display_name": "Flags model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 728, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_model_y", + "pcc_display_name": "Flags model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 729, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_model_z", + "pcc_display_name": "Flags model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 730, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_r", + "pcc_display_name": "Flags r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 731, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_weight_g", + "pcc_display_name": "Flags weight g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 732, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_weight_i", + "pcc_display_name": "Flags weight i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 733, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_weight_r", + "pcc_display_name": "Flags weight r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 734, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_weight_y", + "pcc_display_name": "Flags weight Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 735, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_weight_z", + "pcc_display_name": "Flags weight z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 736, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_y", + "pcc_display_name": "Flags Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 737, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_z", + "pcc_display_name": "Flags z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 738, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_g", + "pcc_display_name": "Fluxerr aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 739, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_i", + "pcc_display_name": "Fluxerr aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 740, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_r", + "pcc_display_name": "Fluxerr aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 741, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_y", + "pcc_display_name": "Fluxerr aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 742, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_z", + "pcc_display_name": "Fluxerr aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 743, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_g", + "pcc_display_name": "Fluxerr aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 744, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_i", + "pcc_display_name": "Fluxerr aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 745, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_r", + "pcc_display_name": "Fluxerr aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 746, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_y", + "pcc_display_name": "Fluxerr aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 747, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_z", + "pcc_display_name": "Fluxerr aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 748, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_g", + "pcc_display_name": "Fluxerr aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 749, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_i", + "pcc_display_name": "Fluxerr aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 750, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_r", + "pcc_display_name": "Fluxerr aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 751, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_y", + "pcc_display_name": "Fluxerr aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 752, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_z", + "pcc_display_name": "Fluxerr aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 753, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_g", + "pcc_display_name": "Fluxerr aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 754, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_i", + "pcc_display_name": "Fluxerr aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 755, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_r", + "pcc_display_name": "Fluxerr aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 756, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_y", + "pcc_display_name": "Fluxerr aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 757, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_z", + "pcc_display_name": "Fluxerr aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 758, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_g", + "pcc_display_name": "Fluxerr aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 759, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_i", + "pcc_display_name": "Fluxerr aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 760, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_r", + "pcc_display_name": "Fluxerr aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 761, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_y", + "pcc_display_name": "Fluxerr aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 762, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_z", + "pcc_display_name": "Fluxerr aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 763, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_g", + "pcc_display_name": "Fluxerr auto g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 764, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_i", + "pcc_display_name": "Fluxerr auto i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 765, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_r", + "pcc_display_name": "Fluxerr auto r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 766, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_y", + "pcc_display_name": "Fluxerr auto Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 767, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_z", + "pcc_display_name": "Fluxerr auto z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 768, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_model_g", + "pcc_display_name": "Fluxerr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 769, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_model_i", + "pcc_display_name": "Fluxerr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 770, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_model_r", + "pcc_display_name": "Fluxerr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 771, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_model_y", + "pcc_display_name": "Fluxerr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 772, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_model_z", + "pcc_display_name": "Fluxerr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 773, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_1_g", + "pcc_display_name": "Flux aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 774, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_1_i", + "pcc_display_name": "Flux aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 775, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_1_r", + "pcc_display_name": "Flux aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 776, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_1_y", + "pcc_display_name": "Flux aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 777, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_1_z", + "pcc_display_name": "Flux aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 778, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_2_g", + "pcc_display_name": "Flux aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 779, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_2_i", + "pcc_display_name": "Flux aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 780, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_2_r", + "pcc_display_name": "Flux aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 781, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_2_y", + "pcc_display_name": "Flux aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 782, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_2_z", + "pcc_display_name": "Flux aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 783, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_3_g", + "pcc_display_name": "Flux aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 784, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_3_i", + "pcc_display_name": "Flux aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 785, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_3_r", + "pcc_display_name": "Flux aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 786, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_3_y", + "pcc_display_name": "Flux aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 787, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_3_z", + "pcc_display_name": "Flux aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 788, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_4_g", + "pcc_display_name": "Flux aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 789, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_4_i", + "pcc_display_name": "Flux aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 790, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_4_r", + "pcc_display_name": "Flux aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 791, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_4_y", + "pcc_display_name": "Flux aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 792, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_4_z", + "pcc_display_name": "Flux aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 793, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_5_g", + "pcc_display_name": "Flux aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 794, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_5_i", + "pcc_display_name": "Flux aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 795, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_5_r", + "pcc_display_name": "Flux aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 796, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_5_y", + "pcc_display_name": "Flux aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 797, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_aper_5_z", + "pcc_display_name": "Flux aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 798, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_auto_g", + "pcc_display_name": "Flux auto g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 799, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_auto_i", + "pcc_display_name": "Flux auto i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 800, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_auto_r", + "pcc_display_name": "Flux auto r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 801, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_auto_y", + "pcc_display_name": "Flux auto Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 802, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_auto_z", + "pcc_display_name": "Flux auto z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 803, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_model_g", + "pcc_display_name": "Flux model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 804, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_model_i", + "pcc_display_name": "Flux model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 805, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_model_r", + "pcc_display_name": "Flux model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 806, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_model_y", + "pcc_display_name": "Flux model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 807, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_model_z", + "pcc_display_name": "Flux model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 808, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "flux_radius_g", + "pcc_display_name": "Flux radius g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 809, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "flux_radius_i", + "pcc_display_name": "Flux radius i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 810, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "flux_radius_r", + "pcc_display_name": "Flux radius r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 811, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "flux_radius_y", + "pcc_display_name": "Flux radius Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 812, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "flux_radius_z", + "pcc_display_name": "Flux radius z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 813, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "fwhm_world_g", + "pcc_display_name": "Fwhm world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 814, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "fwhm_world_i", + "pcc_display_name": "Fwhm world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 815, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "fwhm_world_r", + "pcc_display_name": "Fwhm world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 816, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "fwhm_world_y", + "pcc_display_name": "Fwhm world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 817, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "fwhm_world_z", + "pcc_display_name": "Fwhm world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 818, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "imageid_g", + "pcc_display_name": "Imageid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 819, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "imageid_i", + "pcc_display_name": "Imageid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 820, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "imageid_r", + "pcc_display_name": "Imageid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 821, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "imageid_y", + "pcc_display_name": "Imageid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 822, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "imageid_z", + "pcc_display_name": "Imageid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 823, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "isoarea_world_g", + "pcc_display_name": "Isoarea world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 824, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "isoarea_world_i", + "pcc_display_name": "Isoarea world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 825, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "isoarea_world_r", + "pcc_display_name": "Isoarea world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 826, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "isoarea_world_y", + "pcc_display_name": "Isoarea world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 827, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "isoarea_world_z", + "pcc_display_name": "Isoarea world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 828, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "kron_radius", + "pcc_display_name": "Kron radius", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 829, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_g", + "pcc_display_name": "Magerr aper 10 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 830, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_i", + "pcc_display_name": "Magerr aper 10 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 831, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_r", + "pcc_display_name": "Magerr aper 10 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 832, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_y", + "pcc_display_name": "Magerr aper 10 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 833, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_z", + "pcc_display_name": "Magerr aper 10 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 834, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_g", + "pcc_display_name": "Magerr aper 11 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 835, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_i", + "pcc_display_name": "Magerr aper 11 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 836, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_r", + "pcc_display_name": "Magerr aper 11 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 837, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_y", + "pcc_display_name": "Magerr aper 11 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 838, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_z", + "pcc_display_name": "Magerr aper 11 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 839, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_g", + "pcc_display_name": "Magerr aper 12 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 840, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_i", + "pcc_display_name": "Magerr aper 12 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 841, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_r", + "pcc_display_name": "Magerr aper 12 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 842, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_y", + "pcc_display_name": "Magerr aper 12 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 843, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_z", + "pcc_display_name": "Magerr aper 12 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 844, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_g", + "pcc_display_name": "Magerr aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 845, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_i", + "pcc_display_name": "Magerr aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 846, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_r", + "pcc_display_name": "Magerr aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 847, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_y", + "pcc_display_name": "Magerr aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 848, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_z", + "pcc_display_name": "Magerr aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 849, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_g", + "pcc_display_name": "Magerr aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 850, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_i", + "pcc_display_name": "Magerr aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 851, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_r", + "pcc_display_name": "Magerr aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 852, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_y", + "pcc_display_name": "Magerr aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 853, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_z", + "pcc_display_name": "Magerr aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 854, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_g", + "pcc_display_name": "Magerr aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 855, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_i", + "pcc_display_name": "Magerr aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 856, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_r", + "pcc_display_name": "Magerr aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 857, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_y", + "pcc_display_name": "Magerr aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 858, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_z", + "pcc_display_name": "Magerr aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 859, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_g", + "pcc_display_name": "Magerr aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 860, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_i", + "pcc_display_name": "Magerr aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 861, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_r", + "pcc_display_name": "Magerr aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 862, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_y", + "pcc_display_name": "Magerr aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 863, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_z", + "pcc_display_name": "Magerr aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 864, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_g", + "pcc_display_name": "Magerr aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 865, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_i", + "pcc_display_name": "Magerr aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 866, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_r", + "pcc_display_name": "Magerr aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 867, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_y", + "pcc_display_name": "Magerr aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 868, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_z", + "pcc_display_name": "Magerr aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 869, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_g", + "pcc_display_name": "Magerr aper 6 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 870, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_i", + "pcc_display_name": "Magerr aper 6 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 871, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_r", + "pcc_display_name": "Magerr aper 6 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 872, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_y", + "pcc_display_name": "Magerr aper 6 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 873, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_z", + "pcc_display_name": "Magerr aper 6 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 874, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_g", + "pcc_display_name": "Magerr aper 7 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 875, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_i", + "pcc_display_name": "Magerr aper 7 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 876, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_r", + "pcc_display_name": "Magerr aper 7 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 877, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_y", + "pcc_display_name": "Magerr aper 7 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 878, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_z", + "pcc_display_name": "Magerr aper 7 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 879, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_g", + "pcc_display_name": "Magerr aper 8 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 880, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_i", + "pcc_display_name": "Magerr aper 8 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 881, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_r", + "pcc_display_name": "Magerr aper 8 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 882, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_y", + "pcc_display_name": "Magerr aper 8 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 883, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_z", + "pcc_display_name": "Magerr aper 8 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 884, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_g", + "pcc_display_name": "Magerr aper 9 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 885, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_i", + "pcc_display_name": "Magerr aper 9 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 886, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_r", + "pcc_display_name": "Magerr aper 9 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 887, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_y", + "pcc_display_name": "Magerr aper 9 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 888, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_z", + "pcc_display_name": "Magerr aper 9 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 889, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_auto_g", + "pcc_display_name": "Magerr auto g", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 890, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_auto_i", + "pcc_display_name": "Magerr auto i", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 891, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_auto_r", + "pcc_display_name": "Magerr auto r", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 892, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_auto_y", + "pcc_display_name": "Magerr auto Y", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 893, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_auto_z", + "pcc_display_name": "Magerr auto z", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 894, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_g", + "pcc_display_name": "Magerr hybrid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 895, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_i", + "pcc_display_name": "Magerr hybrid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 896, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_r", + "pcc_display_name": "Magerr hybrid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 897, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_y", + "pcc_display_name": "Magerr hybrid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 898, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_z", + "pcc_display_name": "Magerr hybrid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 899, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_iso_g", + "pcc_display_name": "Magerr iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 900, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_iso_i", + "pcc_display_name": "Magerr iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 901, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_iso_r", + "pcc_display_name": "Magerr iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 902, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_iso_y", + "pcc_display_name": "Magerr iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 903, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_iso_z", + "pcc_display_name": "Magerr iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 904, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_model_g", + "pcc_display_name": "Magerr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 905, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_model_i", + "pcc_display_name": "Magerr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 906, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_model_r", + "pcc_display_name": "Magerr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 907, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_model_y", + "pcc_display_name": "Magerr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 908, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_model_z", + "pcc_display_name": "Magerr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 909, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_petro_g", + "pcc_display_name": "Magerr petro g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 910, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_petro_i", + "pcc_display_name": "Magerr petro i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 911, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_petro_r", + "pcc_display_name": "Magerr petro r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 912, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_petro_y", + "pcc_display_name": "Magerr petro Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 913, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_petro_z", + "pcc_display_name": "Magerr petro z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 914, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_psf_g", + "pcc_display_name": "Magerr psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 915, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_psf_i", + "pcc_display_name": "Magerr psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 916, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_psf_r", + "pcc_display_name": "Magerr psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 917, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_psf_y", + "pcc_display_name": "Magerr psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 918, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_psf_z", + "pcc_display_name": "Magerr psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 919, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_g", + "pcc_display_name": "Magerr spheroid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 920, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_i", + "pcc_display_name": "Magerr spheroid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 921, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_r", + "pcc_display_name": "Magerr spheroid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 922, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_y", + "pcc_display_name": "Magerr spheroid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 923, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_z", + "pcc_display_name": "Magerr spheroid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 924, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_10_g", + "pcc_display_name": "Mag aper 10 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 925, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_10_i", + "pcc_display_name": "Mag aper 10 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 926, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_10_r", + "pcc_display_name": "Mag aper 10 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 927, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_10_y", + "pcc_display_name": "Mag aper 10 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 928, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_10_z", + "pcc_display_name": "Mag aper 10 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 929, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_11_g", + "pcc_display_name": "Mag aper 11 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 930, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_11_i", + "pcc_display_name": "Mag aper 11 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 931, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_11_r", + "pcc_display_name": "Mag aper 11 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 932, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_11_y", + "pcc_display_name": "Mag aper 11 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 933, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_11_z", + "pcc_display_name": "Mag aper 11 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 934, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_12_g", + "pcc_display_name": "Mag aper 12 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 935, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_12_i", + "pcc_display_name": "Mag aper 12 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 936, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_12_r", + "pcc_display_name": "Mag aper 12 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 937, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_12_y", + "pcc_display_name": "Mag aper 12 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 938, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_12_z", + "pcc_display_name": "Mag aper 12 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 939, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_1_g", + "pcc_display_name": "Mag aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 940, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_1_i", + "pcc_display_name": "Mag aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 941, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_1_r", + "pcc_display_name": "Mag aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 942, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_1_y", + "pcc_display_name": "Mag aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 943, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_1_z", + "pcc_display_name": "Mag aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 944, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_2_g", + "pcc_display_name": "Mag aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 945, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_2_i", + "pcc_display_name": "Mag aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 946, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_2_r", + "pcc_display_name": "Mag aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 947, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_2_y", + "pcc_display_name": "Mag aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 948, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_2_z", + "pcc_display_name": "Mag aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 949, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_3_g", + "pcc_display_name": "Mag aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 950, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_3_i", + "pcc_display_name": "Mag aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 951, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_3_r", + "pcc_display_name": "Mag aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 952, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_3_y", + "pcc_display_name": "Mag aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 953, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_3_z", + "pcc_display_name": "Mag aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 954, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_4_g", + "pcc_display_name": "Mag aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 955, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_4_i", + "pcc_display_name": "Mag aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 956, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_4_r", + "pcc_display_name": "Mag aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 957, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_4_y", + "pcc_display_name": "Mag aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 958, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_4_z", + "pcc_display_name": "Mag aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 959, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_5_g", + "pcc_display_name": "Mag aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 960, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_5_i", + "pcc_display_name": "Mag aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 961, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_5_r", + "pcc_display_name": "Mag aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 962, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_5_y", + "pcc_display_name": "Mag aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 963, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_5_z", + "pcc_display_name": "Mag aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 964, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_6_g", + "pcc_display_name": "Mag aper 6 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 965, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_6_i", + "pcc_display_name": "Mag aper 6 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 966, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_6_r", + "pcc_display_name": "Mag aper 6 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 967, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_6_y", + "pcc_display_name": "Mag aper 6 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 968, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_6_z", + "pcc_display_name": "Mag aper 6 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 969, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_7_g", + "pcc_display_name": "Mag aper 7 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 970, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_7_i", + "pcc_display_name": "Mag aper 7 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 971, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_7_r", + "pcc_display_name": "Mag aper 7 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 972, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_7_y", + "pcc_display_name": "Mag aper 7 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 973, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_7_z", + "pcc_display_name": "Mag aper 7 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 974, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_8_g", + "pcc_display_name": "Mag aper 8 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 975, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_8_i", + "pcc_display_name": "Mag aper 8 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 976, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_8_r", + "pcc_display_name": "Mag aper 8 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 977, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_8_y", + "pcc_display_name": "Mag aper 8 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 978, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_8_z", + "pcc_display_name": "Mag aper 8 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 979, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_9_g", + "pcc_display_name": "Mag aper 9 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 980, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_9_i", + "pcc_display_name": "Mag aper 9 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 981, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_9_r", + "pcc_display_name": "Mag aper 9 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 982, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_9_y", + "pcc_display_name": "Mag aper 9 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 983, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_aper_9_z", + "pcc_display_name": "Mag aper 9 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 984, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_auto_g", + "pcc_display_name": "Mag auto g", + "pcc_ucd": "phot.mag;meta.main;em.opt.g", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 985, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_auto_i", + "pcc_display_name": "Mag auto i", + "pcc_ucd": "phot.mag;meta.main;em.opt.i", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 986, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_auto_r", + "pcc_display_name": "Mag auto r", + "pcc_ucd": "phot.mag;meta.main;em.opt.r", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 987, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_auto_y", + "pcc_display_name": "Mag auto Y", + "pcc_ucd": "phot.mag;meta.main;em.opt.Y", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 988, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_auto_z", + "pcc_display_name": "Mag auto z", + "pcc_ucd": "phot.mag;meta.main;em.opt.z", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 989, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_hybrid_g", + "pcc_display_name": "Mag hybrid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 990, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_hybrid_i", + "pcc_display_name": "Mag hybrid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 991, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_hybrid_r", + "pcc_display_name": "Mag hybrid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 992, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_hybrid_y", + "pcc_display_name": "Mag hybrid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 993, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_hybrid_z", + "pcc_display_name": "Mag hybrid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 994, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_iso_g", + "pcc_display_name": "Mag iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 995, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_iso_i", + "pcc_display_name": "Mag iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 996, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_iso_r", + "pcc_display_name": "Mag iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 997, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_iso_y", + "pcc_display_name": "Mag iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 998, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_iso_z", + "pcc_display_name": "Mag iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 999, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_model_g", + "pcc_display_name": "Mag model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1000, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_model_i", + "pcc_display_name": "Mag model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1001, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_model_r", + "pcc_display_name": "Mag model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1002, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_model_y", + "pcc_display_name": "Mag model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1003, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_model_z", + "pcc_display_name": "Mag model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1004, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_petro_g", + "pcc_display_name": "Mag petro g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1005, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_petro_i", + "pcc_display_name": "Mag petro i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1006, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_petro_r", + "pcc_display_name": "Mag petro r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1007, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_petro_y", + "pcc_display_name": "Mag petro Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1008, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_petro_z", + "pcc_display_name": "Mag petro z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1009, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_psf_g", + "pcc_display_name": "Mag psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1010, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_psf_i", + "pcc_display_name": "Mag psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1011, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_psf_r", + "pcc_display_name": "Mag psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1012, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_psf_y", + "pcc_display_name": "Mag psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1013, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_psf_z", + "pcc_display_name": "Mag psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1014, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_spheroid_g", + "pcc_display_name": "Mag spheroid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1015, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_spheroid_i", + "pcc_display_name": "Mag spheroid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1016, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_spheroid_r", + "pcc_display_name": "Mag spheroid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1017, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_spheroid_y", + "pcc_display_name": "Mag spheroid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1018, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_spheroid_z", + "pcc_display_name": "Mag spheroid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1019, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_eff_model_g", + "pcc_display_name": "Mu eff model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1020, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_eff_model_i", + "pcc_display_name": "Mu eff model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1021, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_eff_model_r", + "pcc_display_name": "Mu eff model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1022, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_eff_model_y", + "pcc_display_name": "Mu eff model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1023, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_eff_model_z", + "pcc_display_name": "Mu eff model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1024, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_g", + "pcc_display_name": "Mu max g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1025, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_i", + "pcc_display_name": "Mu max i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1026, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_model_g", + "pcc_display_name": "Mu max model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1027, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_model_i", + "pcc_display_name": "Mu max model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1028, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_model_r", + "pcc_display_name": "Mu max model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1029, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_model_y", + "pcc_display_name": "Mu max model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1030, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_model_z", + "pcc_display_name": "Mu max model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1031, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_r", + "pcc_display_name": "Mu max r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1032, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_y", + "pcc_display_name": "Mu max Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1033, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_max_z", + "pcc_display_name": "Mu max z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1034, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_mean_model_g", + "pcc_display_name": "Mu mean model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1035, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_mean_model_i", + "pcc_display_name": "Mu mean model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1036, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_mean_model_r", + "pcc_display_name": "Mu mean model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1037, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_mean_model_y", + "pcc_display_name": "Mu mean model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1038, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_mean_model_z", + "pcc_display_name": "Mu mean model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1039, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mu_threshold", + "pcc_display_name": "Mu threshold", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1040, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_model_g", + "pcc_display_name": "Niter model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1041, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_model_i", + "pcc_display_name": "Niter model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1042, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_model_r", + "pcc_display_name": "Niter model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1043, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_model_y", + "pcc_display_name": "Niter model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1044, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_model_z", + "pcc_display_name": "Niter model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1045, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_psf_g", + "pcc_display_name": "Niter psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1046, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_psf_i", + "pcc_display_name": "Niter psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1047, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_psf_r", + "pcc_display_name": "Niter psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1048, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_psf_y", + "pcc_display_name": "Niter psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1049, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_psf_z", + "pcc_display_name": "Niter psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1050, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "nlowdweight_iso", + "pcc_display_name": "Nlowdweight iso", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1051, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_g", + "pcc_display_name": "Nlowweight iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1052, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_i", + "pcc_display_name": "Nlowweight iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1053, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_r", + "pcc_display_name": "Nlowweight iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1054, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_y", + "pcc_display_name": "Nlowweight iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1055, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_z", + "pcc_display_name": "Nlowweight iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1056, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "object_number", + "pcc_display_name": "Object number", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1057, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "petro_radius", + "pcc_display_name": "Petro radius", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1058, + "fields": { + "pcc_class": 8, + "pcc_category": 2, + "pcc_name": "softid", + "pcc_display_name": "Softid", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1059, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spreaderr_model_g", + "pcc_display_name": "Spreaderr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1060, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spreaderr_model_i", + "pcc_display_name": "Spreaderr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1061, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spreaderr_model_r", + "pcc_display_name": "Spreaderr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1062, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spreaderr_model_y", + "pcc_display_name": "Spreaderr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1063, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spreaderr_model_z", + "pcc_display_name": "Spreaderr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1064, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spread_model_g", + "pcc_display_name": "Spread model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1065, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spread_model_i", + "pcc_display_name": "Spread model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1066, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spread_model_r", + "pcc_display_name": "Spread model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1067, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spread_model_y", + "pcc_display_name": "Spread model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1068, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "spread_model_z", + "pcc_display_name": "Spread model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1069, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "theta_image", + "pcc_display_name": "Theta image", + "pcc_ucd": "pos.posAng;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1070, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "theta_image_g", + "pcc_display_name": "Theta image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1071, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "theta_image_i", + "pcc_display_name": "Theta image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1072, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "theta_image_r", + "pcc_display_name": "Theta image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1073, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "theta_image_y", + "pcc_display_name": "Theta image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1074, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "theta_image_z", + "pcc_display_name": "Theta image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1075, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "threshold", + "pcc_display_name": "Threshold", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1076, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "x2_world", + "pcc_display_name": "X2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1077, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xmax_image", + "pcc_display_name": "Xmax image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1078, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xmin_image", + "pcc_display_name": "Xmin image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1079, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xwin_image_g", + "pcc_display_name": "Xwin image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1080, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xwin_image_i", + "pcc_display_name": "Xwin image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1081, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xwin_image_r", + "pcc_display_name": "Xwin image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1082, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xwin_image_y", + "pcc_display_name": "Xwin image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1083, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "xwin_image_z", + "pcc_display_name": "Xwin image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1084, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "xy_world", + "pcc_display_name": "Xy world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1085, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "y2_world", + "pcc_display_name": "Y2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1086, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ymax_image", + "pcc_display_name": "Ymax image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1087, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ymin_image", + "pcc_display_name": "Ymin image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1088, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ywin_image_g", + "pcc_display_name": "Ywin image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1089, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ywin_image_i", + "pcc_display_name": "Ywin image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1090, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ywin_image_r", + "pcc_display_name": "Ywin image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1091, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ywin_image_y", + "pcc_display_name": "Ywin image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1092, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "ywin_image_z", + "pcc_display_name": "Ywin image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1093, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropointid_g", + "pcc_display_name": "Zeropointid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1094, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropointid_i", + "pcc_display_name": "Zeropointid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1095, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropointid_r", + "pcc_display_name": "Zeropointid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1096, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropointid_y", + "pcc_display_name": "Zeropointid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1097, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropointid_z", + "pcc_display_name": "Zeropointid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1098, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropoint_g", + "pcc_display_name": "Zeropoint g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1099, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropoint_i", + "pcc_display_name": "Zeropoint i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1100, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropoint_r", + "pcc_display_name": "Zeropoint r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1101, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropoint_y", + "pcc_display_name": "Zeropoint Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1102, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "zeropoint_z", + "pcc_display_name": "Zeropoint z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1103, + "fields": { + "pcc_class": 8, + "pcc_category": 1, + "pcc_name": "radec_source_band", + "pcc_display_name": "Radec source band", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1104, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_detmodel_g", + "pcc_display_name": "Flux detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1105, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_detmodel_i", + "pcc_display_name": "Flux detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1106, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_detmodel_r", + "pcc_display_name": "Flux detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1107, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_detmodel_z", + "pcc_display_name": "Flux detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1108, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "flux_detmodel_y", + "pcc_display_name": "Flux detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1109, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_detmodel_g", + "pcc_display_name": "Mag detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1110, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_detmodel_i", + "pcc_display_name": "Mag detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1111, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_detmodel_r", + "pcc_display_name": "Mag detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1112, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_detmodel_z", + "pcc_display_name": "Mag detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1113, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "mag_detmodel_y", + "pcc_display_name": "Mag detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1114, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_detmodel_g", + "pcc_display_name": "Flags detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1115, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_detmodel_i", + "pcc_display_name": "Flags detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1116, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_detmodel_r", + "pcc_display_name": "Flags detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1117, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_detmodel_z", + "pcc_display_name": "Flags detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1118, + "fields": { + "pcc_class": 8, + "pcc_category": 8, + "pcc_name": "flags_detmodel_y", + "pcc_display_name": "Flags detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1119, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_detmodel_g", + "pcc_display_name": "Niter detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1120, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_detmodel_i", + "pcc_display_name": "Niter detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1121, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_detmodel_r", + "pcc_display_name": "Niter detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1122, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_detmodel_z", + "pcc_display_name": "Niter detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1123, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "niter_detmodel_y", + "pcc_display_name": "Niter detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1124, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_g", + "pcc_display_name": "Magerr detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1125, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_i", + "pcc_display_name": "Magerr detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1126, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_r", + "pcc_display_name": "Magerr detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1127, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_z", + "pcc_display_name": "Magerr detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1128, + "fields": { + "pcc_class": 8, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_y", + "pcc_display_name": "Magerr detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1129, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_g", + "pcc_display_name": "Fluxerr detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1130, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_i", + "pcc_display_name": "Fluxerr detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1131, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_r", + "pcc_display_name": "Fluxerr detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1132, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_z", + "pcc_display_name": "Fluxerr detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1133, + "fields": { + "pcc_class": 8, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_y", + "pcc_display_name": "Fluxerr detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1134, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_g", + "pcc_display_name": "Chi2 detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1135, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_i", + "pcc_display_name": "Chi2 detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1136, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_r", + "pcc_display_name": "Chi2 detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1137, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_z", + "pcc_display_name": "Chi2 detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1138, + "fields": { + "pcc_class": 8, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_y", + "pcc_display_name": "Chi2 detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1139, + "fields": { + "pcc_class": 8, + "pcc_category": 6, + "pcc_name": "molygon_id_g", + "pcc_display_name": "Molygon id g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1140, + "fields": { + "pcc_class": 8, + "pcc_category": 6, + "pcc_name": "molygon_id_i", + "pcc_display_name": "Molygon id i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1141, + "fields": { + "pcc_class": 8, + "pcc_category": 6, + "pcc_name": "molygon_id_r", + "pcc_display_name": "Molygon id r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1142, + "fields": { + "pcc_class": 8, + "pcc_category": 6, + "pcc_name": "molygon_id_y", + "pcc_display_name": "Molygon id Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1143, + "fields": { + "pcc_class": 8, + "pcc_category": 6, + "pcc_name": "molygon_id_z", + "pcc_display_name": "Molygon id z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1144, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "x2win_world_g", + "pcc_display_name": "X2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1145, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "xywin_world_g", + "pcc_display_name": "Xywin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1146, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "y2win_world_g", + "pcc_display_name": "Y2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1147, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errx2win_world_g", + "pcc_display_name": "Errx2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1148, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "erry2win_world_g", + "pcc_display_name": "Erry2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1149, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxywin_world_g", + "pcc_display_name": "Errxywin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1150, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "x2win_world_r", + "pcc_display_name": "X2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1151, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "xywin_world_r", + "pcc_display_name": "Xywin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1152, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "y2win_world_r", + "pcc_display_name": "Y2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1153, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errx2win_world_r", + "pcc_display_name": "Errx2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1154, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "erry2win_world_r", + "pcc_display_name": "Erry2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1155, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxywin_world_r", + "pcc_display_name": "Errxywin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1156, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "x2win_world_i", + "pcc_display_name": "X2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1157, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "xywin_world_i", + "pcc_display_name": "Xywin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1158, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "y2win_world_i", + "pcc_display_name": "Y2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1159, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errx2win_world_i", + "pcc_display_name": "Errx2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1160, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "erry2win_world_i", + "pcc_display_name": "Erry2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1161, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxywin_world_i", + "pcc_display_name": "Errxywin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1162, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "x2win_world_z", + "pcc_display_name": "X2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1163, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "xywin_world_z", + "pcc_display_name": "Xywin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1164, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "y2win_world_z", + "pcc_display_name": "Y2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1165, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errx2win_world_z", + "pcc_display_name": "Errx2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1166, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "erry2win_world_z", + "pcc_display_name": "Erry2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1167, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxywin_world_z", + "pcc_display_name": "Errxywin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1168, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "x2win_world_y", + "pcc_display_name": "X2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1169, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "xywin_world_y", + "pcc_display_name": "Xywin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1170, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "y2win_world_y", + "pcc_display_name": "Y2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1171, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errx2win_world_y", + "pcc_display_name": "Errx2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1172, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "erry2win_world_y", + "pcc_display_name": "Erry2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1173, + "fields": { + "pcc_class": 8, + "pcc_category": 9, + "pcc_name": "errxywin_world_y", + "pcc_display_name": "Errxywin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1174, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_g", + "pcc_display_name": "Alphawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1175, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_i", + "pcc_display_name": "Alphawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1176, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_r", + "pcc_display_name": "Alphawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1177, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_y", + "pcc_display_name": "Alphawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1178, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "alphawin_j2000_z", + "pcc_display_name": "Alphawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1179, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "a_image", + "pcc_display_name": "A image", + "pcc_ucd": "phys.size.smajAxis;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1180, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "background_g", + "pcc_display_name": "Background g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1181, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "background_i", + "pcc_display_name": "Background i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1182, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "background_r", + "pcc_display_name": "Background r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1183, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "background_y", + "pcc_display_name": "Background Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1184, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "background_z", + "pcc_display_name": "Background z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1185, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "b_image", + "pcc_display_name": "B image", + "pcc_ucd": "phys.size.sminAxis;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1186, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "catalogid_g", + "pcc_display_name": "Catalogid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1187, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "catalogid_i", + "pcc_display_name": "Catalogid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1188, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "catalogid_r", + "pcc_display_name": "Catalogid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1189, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "catalogid_y", + "pcc_display_name": "Catalogid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1190, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "catalogid_z", + "pcc_display_name": "Catalogid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1191, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_model_g", + "pcc_display_name": "Chi2 model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1192, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_model_i", + "pcc_display_name": "Chi2 model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1193, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_model_r", + "pcc_display_name": "Chi2 model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1194, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_model_y", + "pcc_display_name": "Chi2 model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1195, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_model_z", + "pcc_display_name": "Chi2 model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1196, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_psf_g", + "pcc_display_name": "Chi2 psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1197, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_psf_i", + "pcc_display_name": "Chi2 psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1198, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_psf_r", + "pcc_display_name": "Chi2 psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1199, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_psf_y", + "pcc_display_name": "Chi2 psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1200, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_psf_z", + "pcc_display_name": "Chi2 psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1201, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "class_star_g", + "pcc_display_name": "Class star g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1202, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "class_star_i", + "pcc_display_name": "Class star i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1203, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "class_star_r", + "pcc_display_name": "Class star r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1204, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "class_star_y", + "pcc_display_name": "Class star Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1205, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "class_star_z", + "pcc_display_name": "Class star z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1206, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "coadd_objects_id", + "pcc_display_name": "Coadd objects id", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1207, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "concentration_model_g", + "pcc_display_name": "Concentration model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1208, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "concentration_model_i", + "pcc_display_name": "Concentration model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1209, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "concentration_model_r", + "pcc_display_name": "Concentration model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1210, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "concentration_model_y", + "pcc_display_name": "Concentration model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1211, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "concentration_model_z", + "pcc_display_name": "Concentration model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1212, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_g", + "pcc_display_name": "Deltawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1213, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_i", + "pcc_display_name": "Deltawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1214, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_r", + "pcc_display_name": "Deltawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1215, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_y", + "pcc_display_name": "Deltawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1216, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "deltawin_j2000_z", + "pcc_display_name": "Deltawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1217, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "duration_analysis_g", + "pcc_display_name": "Duration analysis g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1218, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "duration_analysis_i", + "pcc_display_name": "Duration analysis i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1219, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "duration_analysis_r", + "pcc_display_name": "Duration analysis r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1220, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "duration_analysis_y", + "pcc_display_name": "Duration analysis Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1221, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "duration_analysis_z", + "pcc_display_name": "Duration analysis z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1222, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_g", + "pcc_display_name": "Ellip1errmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1223, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_i", + "pcc_display_name": "Ellip1errmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1224, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_r", + "pcc_display_name": "Ellip1errmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1225, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_y", + "pcc_display_name": "Ellip1errmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1226, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1errmodel_world_z", + "pcc_display_name": "Ellip1errmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1227, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1model_world_g", + "pcc_display_name": "Ellip1model world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1228, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1model_world_i", + "pcc_display_name": "Ellip1model world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1229, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1model_world_r", + "pcc_display_name": "Ellip1model world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1230, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1model_world_y", + "pcc_display_name": "Ellip1model world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1231, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip1model_world_z", + "pcc_display_name": "Ellip1model world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1232, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_g", + "pcc_display_name": "Ellip2errmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1233, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_i", + "pcc_display_name": "Ellip2errmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1234, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_r", + "pcc_display_name": "Ellip2errmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1235, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_y", + "pcc_display_name": "Ellip2errmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1236, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2errmodel_world_z", + "pcc_display_name": "Ellip2errmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1237, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2model_world_g", + "pcc_display_name": "Ellip2model world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1238, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2model_world_i", + "pcc_display_name": "Ellip2model world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1239, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2model_world_r", + "pcc_display_name": "Ellip2model world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1240, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2model_world_y", + "pcc_display_name": "Ellip2model world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1241, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellip2model_world_z", + "pcc_display_name": "Ellip2model world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1242, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_g", + "pcc_display_name": "Ellipcorrmodel world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1243, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_i", + "pcc_display_name": "Ellipcorrmodel world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1244, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_r", + "pcc_display_name": "Ellipcorrmodel world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1245, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_y", + "pcc_display_name": "Ellipcorrmodel world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1246, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipcorrmodel_world_z", + "pcc_display_name": "Ellipcorrmodel world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1247, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipticity_g", + "pcc_display_name": "Ellipticity g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1248, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipticity_i", + "pcc_display_name": "Ellipticity i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1249, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipticity_r", + "pcc_display_name": "Ellipticity r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1250, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipticity_y", + "pcc_display_name": "Ellipticity Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1251, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "ellipticity_z", + "pcc_display_name": "Ellipticity z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1252, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "equinox", + "pcc_display_name": "Equinox", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1253, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errawin_world_g", + "pcc_display_name": "Errawin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1254, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errawin_world_i", + "pcc_display_name": "Errawin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1255, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errawin_world_r", + "pcc_display_name": "Errawin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1256, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errawin_world_y", + "pcc_display_name": "Errawin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1257, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errawin_world_z", + "pcc_display_name": "Errawin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1258, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errbwin_world_g", + "pcc_display_name": "Errbwin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1259, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errbwin_world_i", + "pcc_display_name": "Errbwin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1260, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errbwin_world_r", + "pcc_display_name": "Errbwin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1261, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errbwin_world_y", + "pcc_display_name": "Errbwin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1262, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errbwin_world_z", + "pcc_display_name": "Errbwin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1263, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errb_image_g", + "pcc_display_name": "Errb image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1264, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errb_image_i", + "pcc_display_name": "Errb image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1265, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errb_image_r", + "pcc_display_name": "Errb image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1266, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errb_image_y", + "pcc_display_name": "Errb image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1267, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errb_image_z", + "pcc_display_name": "Errb image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1268, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "errdec", + "pcc_display_name": "Errdec", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1269, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "errra", + "pcc_display_name": "Errra", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1270, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_g", + "pcc_display_name": "Errthetawin j2000 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1271, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_i", + "pcc_display_name": "Errthetawin j2000 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1272, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_r", + "pcc_display_name": "Errthetawin j2000 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1273, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_y", + "pcc_display_name": "Errthetawin j2000 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1274, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errthetawin_j2000_z", + "pcc_display_name": "Errthetawin j2000 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1275, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errx2_world", + "pcc_display_name": "Errx2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1276, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxy_world_g", + "pcc_display_name": "Errxy world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1277, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxy_world_i", + "pcc_display_name": "Errxy world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1278, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxy_world_r", + "pcc_display_name": "Errxy world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1279, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxy_world_y", + "pcc_display_name": "Errxy world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1280, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxy_world_z", + "pcc_display_name": "Errxy world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1281, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "erry2_world", + "pcc_display_name": "Erry2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1282, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "errzeropoint_g", + "pcc_display_name": "Errzeropoint g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1283, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "errzeropoint_i", + "pcc_display_name": "Errzeropoint i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1284, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "errzeropoint_r", + "pcc_display_name": "Errzeropoint r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1285, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "errzeropoint_y", + "pcc_display_name": "Errzeropoint Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1286, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "errzeropoint_z", + "pcc_display_name": "Errzeropoint z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1287, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_g", + "pcc_display_name": "Flags g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1288, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_i", + "pcc_display_name": "Flags i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1289, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_model_g", + "pcc_display_name": "Flags model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1290, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_model_i", + "pcc_display_name": "Flags model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1291, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_model_r", + "pcc_display_name": "Flags model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1292, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_model_y", + "pcc_display_name": "Flags model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1293, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_model_z", + "pcc_display_name": "Flags model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1294, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_r", + "pcc_display_name": "Flags r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1295, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_weight_g", + "pcc_display_name": "Flags weight g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1296, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_weight_i", + "pcc_display_name": "Flags weight i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1297, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_weight_r", + "pcc_display_name": "Flags weight r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1298, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_weight_y", + "pcc_display_name": "Flags weight Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1299, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_weight_z", + "pcc_display_name": "Flags weight z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1300, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_y", + "pcc_display_name": "Flags Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1301, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_z", + "pcc_display_name": "Flags z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1302, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_g", + "pcc_display_name": "Fluxerr aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1303, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_i", + "pcc_display_name": "Fluxerr aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1304, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_r", + "pcc_display_name": "Fluxerr aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1305, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_y", + "pcc_display_name": "Fluxerr aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1306, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_1_z", + "pcc_display_name": "Fluxerr aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1307, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_g", + "pcc_display_name": "Fluxerr aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1308, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_i", + "pcc_display_name": "Fluxerr aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1309, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_r", + "pcc_display_name": "Fluxerr aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1310, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_y", + "pcc_display_name": "Fluxerr aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1311, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_2_z", + "pcc_display_name": "Fluxerr aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1312, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_g", + "pcc_display_name": "Fluxerr aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1313, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_i", + "pcc_display_name": "Fluxerr aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1314, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_r", + "pcc_display_name": "Fluxerr aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1315, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_y", + "pcc_display_name": "Fluxerr aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1316, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_3_z", + "pcc_display_name": "Fluxerr aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1317, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_g", + "pcc_display_name": "Fluxerr aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1318, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_i", + "pcc_display_name": "Fluxerr aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1319, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_r", + "pcc_display_name": "Fluxerr aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1320, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_y", + "pcc_display_name": "Fluxerr aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1321, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_4_z", + "pcc_display_name": "Fluxerr aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1322, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_g", + "pcc_display_name": "Fluxerr aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1323, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_i", + "pcc_display_name": "Fluxerr aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1324, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_r", + "pcc_display_name": "Fluxerr aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1325, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_y", + "pcc_display_name": "Fluxerr aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1326, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_aper_5_z", + "pcc_display_name": "Fluxerr aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1327, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_g", + "pcc_display_name": "Fluxerr auto g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1328, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_i", + "pcc_display_name": "Fluxerr auto i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1329, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_r", + "pcc_display_name": "Fluxerr auto r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1330, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_y", + "pcc_display_name": "Fluxerr auto Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1331, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_auto_z", + "pcc_display_name": "Fluxerr auto z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1332, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_model_g", + "pcc_display_name": "Fluxerr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1333, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_model_i", + "pcc_display_name": "Fluxerr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1334, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_model_r", + "pcc_display_name": "Fluxerr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1335, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_model_y", + "pcc_display_name": "Fluxerr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1336, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_model_z", + "pcc_display_name": "Fluxerr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1337, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_1_g", + "pcc_display_name": "Flux aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1338, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_1_i", + "pcc_display_name": "Flux aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1339, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_1_r", + "pcc_display_name": "Flux aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1340, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_1_y", + "pcc_display_name": "Flux aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1341, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_1_z", + "pcc_display_name": "Flux aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1342, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_2_g", + "pcc_display_name": "Flux aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1343, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_2_i", + "pcc_display_name": "Flux aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1344, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_2_r", + "pcc_display_name": "Flux aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1345, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_2_y", + "pcc_display_name": "Flux aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1346, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_2_z", + "pcc_display_name": "Flux aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1347, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_3_g", + "pcc_display_name": "Flux aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1348, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_3_i", + "pcc_display_name": "Flux aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1349, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_3_r", + "pcc_display_name": "Flux aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1350, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_3_y", + "pcc_display_name": "Flux aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1351, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_3_z", + "pcc_display_name": "Flux aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1352, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_4_g", + "pcc_display_name": "Flux aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1353, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_4_i", + "pcc_display_name": "Flux aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1354, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_4_r", + "pcc_display_name": "Flux aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1355, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_4_y", + "pcc_display_name": "Flux aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1356, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_4_z", + "pcc_display_name": "Flux aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1357, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_5_g", + "pcc_display_name": "Flux aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1358, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_5_i", + "pcc_display_name": "Flux aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1359, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_5_r", + "pcc_display_name": "Flux aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1360, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_5_y", + "pcc_display_name": "Flux aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1361, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_aper_5_z", + "pcc_display_name": "Flux aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1362, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_auto_g", + "pcc_display_name": "Flux auto g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1363, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_auto_i", + "pcc_display_name": "Flux auto i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1364, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_auto_r", + "pcc_display_name": "Flux auto r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1365, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_auto_y", + "pcc_display_name": "Flux auto Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1366, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_auto_z", + "pcc_display_name": "Flux auto z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1367, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_model_g", + "pcc_display_name": "Flux model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1368, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_model_i", + "pcc_display_name": "Flux model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1369, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_model_r", + "pcc_display_name": "Flux model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1370, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_model_y", + "pcc_display_name": "Flux model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1371, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_model_z", + "pcc_display_name": "Flux model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1372, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "flux_radius_g", + "pcc_display_name": "Flux radius g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1373, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "flux_radius_i", + "pcc_display_name": "Flux radius i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1374, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "flux_radius_r", + "pcc_display_name": "Flux radius r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1375, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "flux_radius_y", + "pcc_display_name": "Flux radius Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1376, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "flux_radius_z", + "pcc_display_name": "Flux radius z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1377, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "fwhm_world_g", + "pcc_display_name": "Fwhm world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1378, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "fwhm_world_i", + "pcc_display_name": "Fwhm world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1379, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "fwhm_world_r", + "pcc_display_name": "Fwhm world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1380, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "fwhm_world_y", + "pcc_display_name": "Fwhm world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1381, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "fwhm_world_z", + "pcc_display_name": "Fwhm world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1382, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "imageid_g", + "pcc_display_name": "Imageid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1383, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "imageid_i", + "pcc_display_name": "Imageid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1384, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "imageid_r", + "pcc_display_name": "Imageid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1385, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "imageid_y", + "pcc_display_name": "Imageid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1386, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "imageid_z", + "pcc_display_name": "Imageid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1387, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "isoarea_world_g", + "pcc_display_name": "Isoarea world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1388, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "isoarea_world_i", + "pcc_display_name": "Isoarea world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1389, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "isoarea_world_r", + "pcc_display_name": "Isoarea world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1390, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "isoarea_world_y", + "pcc_display_name": "Isoarea world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1391, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "isoarea_world_z", + "pcc_display_name": "Isoarea world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1392, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "kron_radius", + "pcc_display_name": "Kron radius", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1393, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_g", + "pcc_display_name": "Magerr aper 10 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1394, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_i", + "pcc_display_name": "Magerr aper 10 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1395, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_r", + "pcc_display_name": "Magerr aper 10 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1396, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_y", + "pcc_display_name": "Magerr aper 10 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1397, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_10_z", + "pcc_display_name": "Magerr aper 10 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1398, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_g", + "pcc_display_name": "Magerr aper 11 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1399, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_i", + "pcc_display_name": "Magerr aper 11 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1400, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_r", + "pcc_display_name": "Magerr aper 11 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1401, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_y", + "pcc_display_name": "Magerr aper 11 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1402, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_11_z", + "pcc_display_name": "Magerr aper 11 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1403, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_g", + "pcc_display_name": "Magerr aper 12 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1404, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_i", + "pcc_display_name": "Magerr aper 12 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1405, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_r", + "pcc_display_name": "Magerr aper 12 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1406, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_y", + "pcc_display_name": "Magerr aper 12 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1407, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_12_z", + "pcc_display_name": "Magerr aper 12 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1408, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_g", + "pcc_display_name": "Magerr aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1409, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_i", + "pcc_display_name": "Magerr aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1410, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_r", + "pcc_display_name": "Magerr aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1411, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_y", + "pcc_display_name": "Magerr aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1412, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_1_z", + "pcc_display_name": "Magerr aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1413, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_g", + "pcc_display_name": "Magerr aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1414, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_i", + "pcc_display_name": "Magerr aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1415, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_r", + "pcc_display_name": "Magerr aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1416, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_y", + "pcc_display_name": "Magerr aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1417, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_2_z", + "pcc_display_name": "Magerr aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1418, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_g", + "pcc_display_name": "Magerr aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1419, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_i", + "pcc_display_name": "Magerr aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1420, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_r", + "pcc_display_name": "Magerr aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1421, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_y", + "pcc_display_name": "Magerr aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1422, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_3_z", + "pcc_display_name": "Magerr aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1423, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_g", + "pcc_display_name": "Magerr aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1424, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_i", + "pcc_display_name": "Magerr aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1425, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_r", + "pcc_display_name": "Magerr aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1426, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_y", + "pcc_display_name": "Magerr aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1427, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_4_z", + "pcc_display_name": "Magerr aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1428, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_g", + "pcc_display_name": "Magerr aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1429, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_i", + "pcc_display_name": "Magerr aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1430, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_r", + "pcc_display_name": "Magerr aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1431, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_y", + "pcc_display_name": "Magerr aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1432, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_5_z", + "pcc_display_name": "Magerr aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1433, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_g", + "pcc_display_name": "Magerr aper 6 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1434, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_i", + "pcc_display_name": "Magerr aper 6 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1435, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_r", + "pcc_display_name": "Magerr aper 6 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1436, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_y", + "pcc_display_name": "Magerr aper 6 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1437, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_6_z", + "pcc_display_name": "Magerr aper 6 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1438, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_g", + "pcc_display_name": "Magerr aper 7 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1439, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_i", + "pcc_display_name": "Magerr aper 7 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1440, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_r", + "pcc_display_name": "Magerr aper 7 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1441, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_y", + "pcc_display_name": "Magerr aper 7 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1442, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_7_z", + "pcc_display_name": "Magerr aper 7 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1443, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_g", + "pcc_display_name": "Magerr aper 8 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1444, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_i", + "pcc_display_name": "Magerr aper 8 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1445, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_r", + "pcc_display_name": "Magerr aper 8 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1446, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_y", + "pcc_display_name": "Magerr aper 8 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1447, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_8_z", + "pcc_display_name": "Magerr aper 8 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1448, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_g", + "pcc_display_name": "Magerr aper 9 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1449, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_i", + "pcc_display_name": "Magerr aper 9 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1450, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_r", + "pcc_display_name": "Magerr aper 9 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1451, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_y", + "pcc_display_name": "Magerr aper 9 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1452, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_aper_9_z", + "pcc_display_name": "Magerr aper 9 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1453, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_auto_g", + "pcc_display_name": "Magerr auto g", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.g", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1454, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_auto_i", + "pcc_display_name": "Magerr auto i", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.i", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1455, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_auto_r", + "pcc_display_name": "Magerr auto r", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.r", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1456, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_auto_y", + "pcc_display_name": "Magerr auto Y", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.Y", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1457, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_auto_z", + "pcc_display_name": "Magerr auto z", + "pcc_ucd": "stat.error;phot.mag;meta.main;em.opt.z", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1458, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_g", + "pcc_display_name": "Magerr hybrid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1459, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_i", + "pcc_display_name": "Magerr hybrid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1460, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_r", + "pcc_display_name": "Magerr hybrid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1461, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_y", + "pcc_display_name": "Magerr hybrid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1462, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_hybrid_z", + "pcc_display_name": "Magerr hybrid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1463, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_iso_g", + "pcc_display_name": "Magerr iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1464, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_iso_i", + "pcc_display_name": "Magerr iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1465, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_iso_r", + "pcc_display_name": "Magerr iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1466, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_iso_y", + "pcc_display_name": "Magerr iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1467, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_iso_z", + "pcc_display_name": "Magerr iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1468, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_model_g", + "pcc_display_name": "Magerr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1469, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_model_i", + "pcc_display_name": "Magerr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1470, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_model_r", + "pcc_display_name": "Magerr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1471, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_model_y", + "pcc_display_name": "Magerr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1472, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_model_z", + "pcc_display_name": "Magerr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1473, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_petro_g", + "pcc_display_name": "Magerr petro g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1474, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_petro_i", + "pcc_display_name": "Magerr petro i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1475, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_petro_r", + "pcc_display_name": "Magerr petro r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1476, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_petro_y", + "pcc_display_name": "Magerr petro Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1477, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_petro_z", + "pcc_display_name": "Magerr petro z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1478, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_psf_g", + "pcc_display_name": "Magerr psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1479, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_psf_i", + "pcc_display_name": "Magerr psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1480, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_psf_r", + "pcc_display_name": "Magerr psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1481, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_psf_y", + "pcc_display_name": "Magerr psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1482, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_psf_z", + "pcc_display_name": "Magerr psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1483, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_g", + "pcc_display_name": "Magerr spheroid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1484, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_i", + "pcc_display_name": "Magerr spheroid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1485, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_r", + "pcc_display_name": "Magerr spheroid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1486, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_y", + "pcc_display_name": "Magerr spheroid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1487, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_spheroid_z", + "pcc_display_name": "Magerr spheroid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1488, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_10_g", + "pcc_display_name": "Mag aper 10 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1489, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_10_i", + "pcc_display_name": "Mag aper 10 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1490, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_10_r", + "pcc_display_name": "Mag aper 10 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1491, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_10_y", + "pcc_display_name": "Mag aper 10 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1492, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_10_z", + "pcc_display_name": "Mag aper 10 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1493, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_11_g", + "pcc_display_name": "Mag aper 11 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1494, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_11_i", + "pcc_display_name": "Mag aper 11 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1495, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_11_r", + "pcc_display_name": "Mag aper 11 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1496, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_11_y", + "pcc_display_name": "Mag aper 11 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1497, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_11_z", + "pcc_display_name": "Mag aper 11 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1498, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_12_g", + "pcc_display_name": "Mag aper 12 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1499, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_12_i", + "pcc_display_name": "Mag aper 12 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1500, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_12_r", + "pcc_display_name": "Mag aper 12 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1501, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_12_y", + "pcc_display_name": "Mag aper 12 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1502, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_12_z", + "pcc_display_name": "Mag aper 12 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1503, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_1_g", + "pcc_display_name": "Mag aper 1 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1504, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_1_i", + "pcc_display_name": "Mag aper 1 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1505, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_1_r", + "pcc_display_name": "Mag aper 1 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1506, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_1_y", + "pcc_display_name": "Mag aper 1 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1507, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_1_z", + "pcc_display_name": "Mag aper 1 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1508, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_2_g", + "pcc_display_name": "Mag aper 2 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1509, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_2_i", + "pcc_display_name": "Mag aper 2 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1510, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_2_r", + "pcc_display_name": "Mag aper 2 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1511, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_2_y", + "pcc_display_name": "Mag aper 2 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1512, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_2_z", + "pcc_display_name": "Mag aper 2 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1513, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_3_g", + "pcc_display_name": "Mag aper 3 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1514, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_3_i", + "pcc_display_name": "Mag aper 3 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1515, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_3_r", + "pcc_display_name": "Mag aper 3 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1516, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_3_y", + "pcc_display_name": "Mag aper 3 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1517, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_3_z", + "pcc_display_name": "Mag aper 3 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1518, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_4_g", + "pcc_display_name": "Mag aper 4 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1519, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_4_i", + "pcc_display_name": "Mag aper 4 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1520, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_4_r", + "pcc_display_name": "Mag aper 4 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1521, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_4_y", + "pcc_display_name": "Mag aper 4 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1522, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_4_z", + "pcc_display_name": "Mag aper 4 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1523, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_5_g", + "pcc_display_name": "Mag aper 5 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1524, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_5_i", + "pcc_display_name": "Mag aper 5 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1525, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_5_r", + "pcc_display_name": "Mag aper 5 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1526, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_5_y", + "pcc_display_name": "Mag aper 5 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1527, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_5_z", + "pcc_display_name": "Mag aper 5 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1528, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_6_g", + "pcc_display_name": "Mag aper 6 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1529, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_6_i", + "pcc_display_name": "Mag aper 6 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1530, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_6_r", + "pcc_display_name": "Mag aper 6 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1531, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_6_y", + "pcc_display_name": "Mag aper 6 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1532, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_6_z", + "pcc_display_name": "Mag aper 6 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1533, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_7_g", + "pcc_display_name": "Mag aper 7 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1534, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_7_i", + "pcc_display_name": "Mag aper 7 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1535, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_7_r", + "pcc_display_name": "Mag aper 7 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1536, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_7_y", + "pcc_display_name": "Mag aper 7 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1537, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_7_z", + "pcc_display_name": "Mag aper 7 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1538, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_8_g", + "pcc_display_name": "Mag aper 8 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1539, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_8_i", + "pcc_display_name": "Mag aper 8 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1540, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_8_r", + "pcc_display_name": "Mag aper 8 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1541, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_8_y", + "pcc_display_name": "Mag aper 8 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1542, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_8_z", + "pcc_display_name": "Mag aper 8 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1543, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_9_g", + "pcc_display_name": "Mag aper 9 g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1544, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_9_i", + "pcc_display_name": "Mag aper 9 i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1545, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_9_r", + "pcc_display_name": "Mag aper 9 r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1546, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_9_y", + "pcc_display_name": "Mag aper 9 Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1547, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_aper_9_z", + "pcc_display_name": "Mag aper 9 z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1548, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_auto_g", + "pcc_display_name": "Mag auto g", + "pcc_ucd": "phot.mag;meta.main;em.opt.g", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1549, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_auto_i", + "pcc_display_name": "Mag auto i", + "pcc_ucd": "phot.mag;meta.main;em.opt.i", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1550, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_auto_r", + "pcc_display_name": "Mag auto r", + "pcc_ucd": "phot.mag;meta.main;em.opt.r", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1551, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_auto_y", + "pcc_display_name": "Mag auto Y", + "pcc_ucd": "phot.mag;meta.main;em.opt.Y", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1552, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_auto_z", + "pcc_display_name": "Mag auto z", + "pcc_ucd": "phot.mag;meta.main;em.opt.z", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1553, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_hybrid_g", + "pcc_display_name": "Mag hybrid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1554, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_hybrid_i", + "pcc_display_name": "Mag hybrid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1555, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_hybrid_r", + "pcc_display_name": "Mag hybrid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1556, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_hybrid_y", + "pcc_display_name": "Mag hybrid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1557, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_hybrid_z", + "pcc_display_name": "Mag hybrid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1558, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_iso_g", + "pcc_display_name": "Mag iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1559, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_iso_i", + "pcc_display_name": "Mag iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1560, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_iso_r", + "pcc_display_name": "Mag iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1561, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_iso_y", + "pcc_display_name": "Mag iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1562, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_iso_z", + "pcc_display_name": "Mag iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1563, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_model_g", + "pcc_display_name": "Mag model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1564, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_model_i", + "pcc_display_name": "Mag model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1565, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_model_r", + "pcc_display_name": "Mag model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1566, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_model_y", + "pcc_display_name": "Mag model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1567, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_model_z", + "pcc_display_name": "Mag model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1568, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_petro_g", + "pcc_display_name": "Mag petro g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1569, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_petro_i", + "pcc_display_name": "Mag petro i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1570, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_petro_r", + "pcc_display_name": "Mag petro r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1571, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_petro_y", + "pcc_display_name": "Mag petro Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1572, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_petro_z", + "pcc_display_name": "Mag petro z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1573, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_psf_g", + "pcc_display_name": "Mag psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1574, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_psf_i", + "pcc_display_name": "Mag psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1575, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_psf_r", + "pcc_display_name": "Mag psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1576, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_psf_y", + "pcc_display_name": "Mag psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1577, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_psf_z", + "pcc_display_name": "Mag psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1578, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_spheroid_g", + "pcc_display_name": "Mag spheroid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1579, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_spheroid_i", + "pcc_display_name": "Mag spheroid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1580, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_spheroid_r", + "pcc_display_name": "Mag spheroid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1581, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_spheroid_y", + "pcc_display_name": "Mag spheroid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1582, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_spheroid_z", + "pcc_display_name": "Mag spheroid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1583, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_eff_model_g", + "pcc_display_name": "Mu eff model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1584, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_eff_model_i", + "pcc_display_name": "Mu eff model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1585, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_eff_model_r", + "pcc_display_name": "Mu eff model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1586, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_eff_model_y", + "pcc_display_name": "Mu eff model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1587, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_eff_model_z", + "pcc_display_name": "Mu eff model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1588, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_g", + "pcc_display_name": "Mu max g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1589, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_i", + "pcc_display_name": "Mu max i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1590, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_model_g", + "pcc_display_name": "Mu max model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1591, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_model_i", + "pcc_display_name": "Mu max model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1592, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_model_r", + "pcc_display_name": "Mu max model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1593, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_model_y", + "pcc_display_name": "Mu max model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1594, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_model_z", + "pcc_display_name": "Mu max model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1595, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_r", + "pcc_display_name": "Mu max r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1596, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_y", + "pcc_display_name": "Mu max Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1597, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_max_z", + "pcc_display_name": "Mu max z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1598, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_mean_model_g", + "pcc_display_name": "Mu mean model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1599, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_mean_model_i", + "pcc_display_name": "Mu mean model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1600, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_mean_model_r", + "pcc_display_name": "Mu mean model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1601, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_mean_model_y", + "pcc_display_name": "Mu mean model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1602, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_mean_model_z", + "pcc_display_name": "Mu mean model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1603, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mu_threshold", + "pcc_display_name": "Mu threshold", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1604, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_model_g", + "pcc_display_name": "Niter model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1605, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_model_i", + "pcc_display_name": "Niter model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1606, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_model_r", + "pcc_display_name": "Niter model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1607, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_model_y", + "pcc_display_name": "Niter model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1608, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_model_z", + "pcc_display_name": "Niter model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1609, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_psf_g", + "pcc_display_name": "Niter psf g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1610, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_psf_i", + "pcc_display_name": "Niter psf i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1611, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_psf_r", + "pcc_display_name": "Niter psf r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1612, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_psf_y", + "pcc_display_name": "Niter psf Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1613, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_psf_z", + "pcc_display_name": "Niter psf z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1614, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "nlowdweight_iso", + "pcc_display_name": "Nlowdweight iso", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1615, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_g", + "pcc_display_name": "Nlowweight iso g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1616, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_i", + "pcc_display_name": "Nlowweight iso i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1617, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_r", + "pcc_display_name": "Nlowweight iso r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1618, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_y", + "pcc_display_name": "Nlowweight iso Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1619, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "nlowweight_iso_z", + "pcc_display_name": "Nlowweight iso z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1620, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "object_number", + "pcc_display_name": "Object number", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1621, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "petro_radius", + "pcc_display_name": "Petro radius", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1622, + "fields": { + "pcc_class": 11, + "pcc_category": 2, + "pcc_name": "softid", + "pcc_display_name": "Softid", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1623, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spreaderr_model_g", + "pcc_display_name": "Spreaderr model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1624, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spreaderr_model_i", + "pcc_display_name": "Spreaderr model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1625, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spreaderr_model_r", + "pcc_display_name": "Spreaderr model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1626, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spreaderr_model_y", + "pcc_display_name": "Spreaderr model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1627, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spreaderr_model_z", + "pcc_display_name": "Spreaderr model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1628, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spread_model_g", + "pcc_display_name": "Spread model g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1629, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spread_model_i", + "pcc_display_name": "Spread model i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1630, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spread_model_r", + "pcc_display_name": "Spread model r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1631, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spread_model_y", + "pcc_display_name": "Spread model Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1632, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "spread_model_z", + "pcc_display_name": "Spread model z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1633, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "theta_image", + "pcc_display_name": "Theta image", + "pcc_ucd": "pos.posAng;instr.det;meta.main", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1634, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "theta_image_g", + "pcc_display_name": "Theta image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1635, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "theta_image_i", + "pcc_display_name": "Theta image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1636, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "theta_image_r", + "pcc_display_name": "Theta image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1637, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "theta_image_y", + "pcc_display_name": "Theta image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1638, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "theta_image_z", + "pcc_display_name": "Theta image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1639, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "threshold", + "pcc_display_name": "Threshold", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1640, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "x2_world", + "pcc_display_name": "X2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1641, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xmax_image", + "pcc_display_name": "Xmax image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1642, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xmin_image", + "pcc_display_name": "Xmin image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1643, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xwin_image_g", + "pcc_display_name": "Xwin image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1644, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xwin_image_i", + "pcc_display_name": "Xwin image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1645, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xwin_image_r", + "pcc_display_name": "Xwin image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1646, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xwin_image_y", + "pcc_display_name": "Xwin image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1647, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "xwin_image_z", + "pcc_display_name": "Xwin image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1648, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "xy_world", + "pcc_display_name": "Xy world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1649, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "y2_world", + "pcc_display_name": "Y2 world", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1650, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ymax_image", + "pcc_display_name": "Ymax image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1651, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ymin_image", + "pcc_display_name": "Ymin image", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1652, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ywin_image_g", + "pcc_display_name": "Ywin image g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1653, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ywin_image_i", + "pcc_display_name": "Ywin image i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1654, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ywin_image_r", + "pcc_display_name": "Ywin image r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1655, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ywin_image_y", + "pcc_display_name": "Ywin image Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1656, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "ywin_image_z", + "pcc_display_name": "Ywin image z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1657, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropointid_g", + "pcc_display_name": "Zeropointid g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1658, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropointid_i", + "pcc_display_name": "Zeropointid i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1659, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropointid_r", + "pcc_display_name": "Zeropointid r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1660, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropointid_y", + "pcc_display_name": "Zeropointid Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1661, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropointid_z", + "pcc_display_name": "Zeropointid z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1662, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropoint_g", + "pcc_display_name": "Zeropoint g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1663, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropoint_i", + "pcc_display_name": "Zeropoint i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1664, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropoint_r", + "pcc_display_name": "Zeropoint r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1665, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropoint_y", + "pcc_display_name": "Zeropoint Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1666, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "zeropoint_z", + "pcc_display_name": "Zeropoint z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1667, + "fields": { + "pcc_class": 11, + "pcc_category": 1, + "pcc_name": "radec_source_band", + "pcc_display_name": "Radec source band", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1668, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_detmodel_g", + "pcc_display_name": "Flux detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1669, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_detmodel_i", + "pcc_display_name": "Flux detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1670, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_detmodel_r", + "pcc_display_name": "Flux detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1671, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_detmodel_z", + "pcc_display_name": "Flux detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1672, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "flux_detmodel_y", + "pcc_display_name": "Flux detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1673, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_detmodel_g", + "pcc_display_name": "Mag detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1674, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_detmodel_i", + "pcc_display_name": "Mag detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1675, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_detmodel_r", + "pcc_display_name": "Mag detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1676, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_detmodel_z", + "pcc_display_name": "Mag detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1677, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "mag_detmodel_y", + "pcc_display_name": "Mag detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1678, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_detmodel_g", + "pcc_display_name": "Flags detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1679, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_detmodel_i", + "pcc_display_name": "Flags detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1680, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_detmodel_r", + "pcc_display_name": "Flags detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1681, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_detmodel_z", + "pcc_display_name": "Flags detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1682, + "fields": { + "pcc_class": 11, + "pcc_category": 8, + "pcc_name": "flags_detmodel_y", + "pcc_display_name": "Flags detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1683, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_detmodel_g", + "pcc_display_name": "Niter detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1684, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_detmodel_i", + "pcc_display_name": "Niter detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1685, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_detmodel_r", + "pcc_display_name": "Niter detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1686, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_detmodel_z", + "pcc_display_name": "Niter detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1687, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "niter_detmodel_y", + "pcc_display_name": "Niter detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1688, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_g", + "pcc_display_name": "Magerr detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1689, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_i", + "pcc_display_name": "Magerr detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1690, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_r", + "pcc_display_name": "Magerr detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1691, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_z", + "pcc_display_name": "Magerr detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1692, + "fields": { + "pcc_class": 11, + "pcc_category": 5, + "pcc_name": "magerr_detmodel_y", + "pcc_display_name": "Magerr detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1693, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_g", + "pcc_display_name": "Fluxerr detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1694, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_i", + "pcc_display_name": "Fluxerr detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1695, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_r", + "pcc_display_name": "Fluxerr detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1696, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_z", + "pcc_display_name": "Fluxerr detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1697, + "fields": { + "pcc_class": 11, + "pcc_category": 4, + "pcc_name": "fluxerr_detmodel_y", + "pcc_display_name": "Fluxerr detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1698, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_g", + "pcc_display_name": "Chi2 detmodel g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1699, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_i", + "pcc_display_name": "Chi2 detmodel i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1700, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_r", + "pcc_display_name": "Chi2 detmodel r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1701, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_z", + "pcc_display_name": "Chi2 detmodel z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1702, + "fields": { + "pcc_class": 11, + "pcc_category": 7, + "pcc_name": "chi2_detmodel_y", + "pcc_display_name": "Chi2 detmodel Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1703, + "fields": { + "pcc_class": 11, + "pcc_category": 6, + "pcc_name": "molygon_id_g", + "pcc_display_name": "Molygon id g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1704, + "fields": { + "pcc_class": 11, + "pcc_category": 6, + "pcc_name": "molygon_id_i", + "pcc_display_name": "Molygon id i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1705, + "fields": { + "pcc_class": 11, + "pcc_category": 6, + "pcc_name": "molygon_id_r", + "pcc_display_name": "Molygon id r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1706, + "fields": { + "pcc_class": 11, + "pcc_category": 6, + "pcc_name": "molygon_id_y", + "pcc_display_name": "Molygon id Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1707, + "fields": { + "pcc_class": 11, + "pcc_category": 6, + "pcc_name": "molygon_id_z", + "pcc_display_name": "Molygon id z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1708, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "x2win_world_g", + "pcc_display_name": "X2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1709, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "xywin_world_g", + "pcc_display_name": "Xywin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1710, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "y2win_world_g", + "pcc_display_name": "Y2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1711, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errx2win_world_g", + "pcc_display_name": "Errx2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1712, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "erry2win_world_g", + "pcc_display_name": "Erry2win world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1713, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxywin_world_g", + "pcc_display_name": "Errxywin world g", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1714, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "x2win_world_r", + "pcc_display_name": "X2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1715, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "xywin_world_r", + "pcc_display_name": "Xywin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1716, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "y2win_world_r", + "pcc_display_name": "Y2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1717, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errx2win_world_r", + "pcc_display_name": "Errx2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1718, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "erry2win_world_r", + "pcc_display_name": "Erry2win world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1719, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxywin_world_r", + "pcc_display_name": "Errxywin world r", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1720, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "x2win_world_i", + "pcc_display_name": "X2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1721, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "xywin_world_i", + "pcc_display_name": "Xywin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1722, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "y2win_world_i", + "pcc_display_name": "Y2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1723, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errx2win_world_i", + "pcc_display_name": "Errx2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1724, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "erry2win_world_i", + "pcc_display_name": "Erry2win world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1725, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxywin_world_i", + "pcc_display_name": "Errxywin world i", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1726, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "x2win_world_z", + "pcc_display_name": "X2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1727, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "xywin_world_z", + "pcc_display_name": "Xywin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1728, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "y2win_world_z", + "pcc_display_name": "Y2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1729, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errx2win_world_z", + "pcc_display_name": "Errx2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1730, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "erry2win_world_z", + "pcc_display_name": "Erry2win world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1731, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxywin_world_z", + "pcc_display_name": "Errxywin world z", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1732, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "x2win_world_y", + "pcc_display_name": "X2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1733, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "xywin_world_y", + "pcc_display_name": "Xywin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1734, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "y2win_world_y", + "pcc_display_name": "Y2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1735, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errx2win_world_y", + "pcc_display_name": "Errx2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1736, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "erry2win_world_y", + "pcc_display_name": "Erry2win world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1737, + "fields": { + "pcc_class": 11, + "pcc_category": 9, + "pcc_name": "errxywin_world_y", + "pcc_display_name": "Errxywin world Y", + "pcc_ucd": null, + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1738, + "fields": { + "pcc_class": 2, + "pcc_category": null, + "pcc_name": "photo_z", + "pcc_display_name": "Photo-z", + "pcc_ucd": "src.redshift.phot", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1739, + "fields": { + "pcc_class": 2, + "pcc_category": null, + "pcc_name": "radius_arcmin", + "pcc_display_name": "Radius", + "pcc_ucd": "phys.angSize;src", + "pcc_unit": "arcmin", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 1740, + "fields": { + "pcc_class": 2, + "pcc_category": null, + "pcc_name": "snr", + "pcc_display_name": "SNR", + "pcc_ucd": "stat.snr", + "pcc_unit": null, + "pcc_reference": null, + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3481, + "fields": { + "pcc_class": 153, + "pcc_category": null, + "pcc_name": "richness", + "pcc_display_name": "Richness", + "pcc_ucd": "src.class.richness", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3482, + "fields": { + "pcc_class": 153, + "pcc_category": null, + "pcc_name": "radius_mpc", + "pcc_display_name": "Radius", + "pcc_ucd": "phys.size.radius", + "pcc_unit": "Mpc", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3483, + "fields": { + "pcc_class": 153, + "pcc_category": null, + "pcc_name": "radius_arcmin", + "pcc_display_name": "Radius", + "pcc_ucd": "phys.angSize;src", + "pcc_unit": "arcmin", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3484, + "fields": { + "pcc_class": 153, + "pcc_category": null, + "pcc_name": "photo_z", + "pcc_display_name": "Photo-z", + "pcc_ucd": "src.redshift.phot", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3485, + "fields": { + "pcc_class": 153, + "pcc_category": null, + "pcc_name": "snr", + "pcc_display_name": "SNR", + "pcc_ucd": "stat.snr", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3486, + "fields": { + "pcc_class": null, + "pcc_category": 3, + "pcc_name": "cross_identification", + "pcc_display_name": "Cross identification", + "pcc_ucd": "meta.id.cross", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3487, + "fields": { + "pcc_class": 2, + "pcc_category": null, + "pcc_name": "mass", + "pcc_display_name": "Mass", + "pcc_ucd": "", + "pcc_unit": "M_sum/h", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3488, + "fields": { + "pcc_class": 100, + "pcc_category": 5, + "pcc_name": "mag_auto_g", + "pcc_display_name": "Mag auto g", + "pcc_ucd": "phot.mag;meta.main;em.opt.g", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3489, + "fields": { + "pcc_class": 100, + "pcc_category": 5, + "pcc_name": "mag_auto_r", + "pcc_display_name": "Mag auto r", + "pcc_ucd": "phot.mag;meta.main;em.opt.r", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3490, + "fields": { + "pcc_class": 100, + "pcc_category": 5, + "pcc_name": "mag_auto_i", + "pcc_display_name": "Mag auto i", + "pcc_ucd": "phot.mag;meta.main;em.opt.i", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3491, + "fields": { + "pcc_class": 100, + "pcc_category": 5, + "pcc_name": "mag_auto_z", + "pcc_display_name": "Mag auto z", + "pcc_ucd": "phot.mag;meta.main;em.opt.z", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3492, + "fields": { + "pcc_class": 100, + "pcc_category": 5, + "pcc_name": "mag_auto_y", + "pcc_display_name": "Mag auto Y", + "pcc_ucd": "phot.mag;meta.main;em.opt.Y", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +}, +{ + "model": "product_classifier.productclasscontent", + "pk": 3493, + "fields": { + "pcc_class": 100, + "pcc_category": 5, + "pcc_name": "photo_z", + "pcc_display_name": "Photo-z", + "pcc_ucd": "src.redshift.phot", + "pcc_unit": "", + "pcc_reference": "", + "pcc_mandatory": false + } +} +] diff --git a/api/product_register/ImportProcess.py b/api/product_register/ImportProcess.py index 021d91df3..64525c47c 100644 --- a/api/product_register/ImportProcess.py +++ b/api/product_register/ImportProcess.py @@ -239,11 +239,7 @@ def register_catalog(self, data): if not self.db.table_exists(data.get('table'), schema=data.get('schema', None)): raise Exception("Table or view %s.%s does not exist" % (data.get('schema', None), data.get('table'))) - - # Recuperar a quantidade de linhas da tabela - count = 0 - if data.get('class') is not 'coadd_objects': - count = self.db.get_count(data.get('table'), schema=data.get('schema', None)) + # Recuperar a classe do produto cls = self.get_product_class(data.get('class')) @@ -256,6 +252,18 @@ def register_catalog(self, data): tbl_rows = tbl_info.get('n_imported_rows', None) tbl_num_columns = tbl_info.get('n_imported_columns', None) tbl_size = tbl_info.get('table_size_in_bytes', None) + else: + # Recuperar a quantidade de linhas da tabela + tbl_rows = self.db.get_estimated_rows_count(data.get('table'), schema=data.get('schema', None)) + # A o count estimado for 0, faz o count convencional. + if tbl_rows == 0: + tbl_rows = self.db.get_count(data.get('table'), schema=data.get('schema', None)) + + # Recuperar a quantidade de colunas da tabela + tbl_num_columns = self.db.get_table_columns_count(data.get('table'), schema=data.get('schema', None)) + + # Tamanho da tabela em bytes + tbl_size = self.db.get_table_size_bytes(data.get('table'), schema=data.get('schema', None)) # Data do produto caso o produto tenha processo a data do produto = data de start do processo date = None @@ -310,7 +318,7 @@ def register_catalog(self, data): "tbl_rows": tbl_rows, "tbl_num_columns": tbl_num_columns, "tbl_size": tbl_size, - "ctl_num_objects": count, + "ctl_num_objects": tbl_rows, } ) diff --git a/api/requirements.txt b/api/requirements.txt index 51c21696d..1931d5887 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -31,5 +31,6 @@ celery==4.1.1 coverage==4.5.2 cx-Oracle==7.0.0 defusedxml==0.5.0 +psycopg2-binary==2.8.4 python-ldap==3.2.0 django-auth-ldap==2.1.1 diff --git a/api/todo.md b/api/todo.md new file mode 100644 index 000000000..7e9cc2ada --- /dev/null +++ b/api/todo.md @@ -0,0 +1,34 @@ +# Integração DRI + Postgresql + +## Sky Viewer +- [ ] Implementar q3c + +## Target Viewer +- [x] Total de objetos zerado ao fazer um upload via csv. +- [ ] Ao importar uma tabela csv, marcar uma flag que indique que ela pode ser drop. +- [ ] Drop table, quando o usuario remover uma lista de targets. (no Oracle não era possivel) +- [ ] Ao remover uma lista de target, deve remover as relações com as tabelas Rating/Reject/Coment do target. + +## Exploer Sistemas +- [ ] Faltando a setinha que indica qual o System Members que está selecionado. + +## User Query +- [ ] Criar um parametro opicional que permita adicionar uma coluna Primary Key. +- [ ] Permitir o uso de Limit na query do usuario + +## Catalogos de exemplo +- [ ] Criar um subset do catalogo de coadd +- [ ] Criar um release de teste com poucas tiles. +- [x] Criar um subset de catalogo externo ex: Gaia para as mesmas tiles do release de teste. +- [ ] Criar uma lista de target de single objetcs. +- [ ] Criar uma lista de targets de Clusters. + + +- [ ] Updates de seguraça do backend +- [ ] Interface Explorer para objetos que não sejam das classes coadd e galaxy_cluster. +- [ ] Desabilitar o Botão de Download tile fits. +- [ ] Revisar as funcionalidades de comentário por posição (preview do target). +- [ ] Melhorar a barra de ferramentas do target list (separar ações das listas de açoes de um objeto.) +- [ ] Desabilitar as funções de cutout temporariamente. + + diff --git a/api/userquery/create_table_as.py b/api/userquery/create_table_as.py index b7d4d5934..5ae60ada8 100644 --- a/api/userquery/create_table_as.py +++ b/api/userquery/create_table_as.py @@ -33,7 +33,7 @@ def __init__(self, job_id, user_id, table_name, table_display_name, release_id, self.job = Job.objects.get(pk=job_id) # Get an instance of a logger - self.logger = logging.getLogger('userquery create_table_as') + self.logger = logging.getLogger('userquery') # state variables self.is_table_successfully_created = False @@ -72,19 +72,33 @@ def _send_notifications_by_email_after_table_creation_attempt(self): self._notify_user_by_email_failure(self.error_message) def _create_table_by_job_id(self): - self.logger.info("_create_table_by_job_id - job_id: %s" % self.job.pk) + self.logger.info("Creating the table") + self.logger.debug("Job ID: [%s]" % self.job.pk) + + db = DBBase('catalog') + if self.schema is None: + self.schema = db.get_connection_schema() + + self.logger.debug("Schema: %s" % self.schema) + self.logger.debug("Tablename: %s" % self.table_name) - db = None try: - db = DBBase('catalog') + + release = Release.objects.get(pk=self.release_id) + self.logger.debug("Release: %s" % release) + + # Criacao da tabela db.create_table_raw_sql(self.table_name, self.job.sql_sentence, schema=self.schema, timeout=self.job.timeout) - if self.associate_target_viewer: - db.create_auto_increment_column(self.table_name, 'meta_id', schema=self.schema) + + # Criacao da Primary key + db.create_auto_increment_column(self.table_name, 'meta_id', schema=self.schema) + self.is_table_successfully_created = True - release = Release.objects.get(pk=self.release_id) count = db.get_count(self.table_name, schema=self.schema) + self.logger.debug("Rows Count: %s" % count) + self.table = Table(table_name=self.table_name, display_name=self.job.display_name, owner=self.job.owner, @@ -93,11 +107,21 @@ def _create_table_by_job_id(self): tbl_num_objects=count) self.table.save() + + self.logger.info("Table Created successfully.") + except Exception as e: self.error_message = str(e) - self.logger.info("CreateTableAs Error: %s" % self.error_message) + self.logger.error("Table creation failed: %s" % self.error_message) + self.logger.info("Checking if the table was created, if it has been, it will be droped.") + if db.table_exists(self.table_name, schema=self.schema): - db.drop_table(self.table_name, schema=self.schema) + self.logger.info("Trying to drop the table.") + try: + db.drop_table(self.table_name, schema=self.schema) + self.logger.info("Table successfully droped") + except Exception as e: + self.logger.error("Failed to drop the table. %s" % e) def _associate_target_viewer(self): if self.associate_target_viewer: diff --git a/api/userquery/db.py b/api/userquery/db.py index 36606c4e8..bec61a4f2 100644 --- a/api/userquery/db.py +++ b/api/userquery/db.py @@ -14,7 +14,7 @@ def __init__(self, raw_sql, db='catalog', use_count=False, maxrows=0): if maxrows>0: raw_sql = raw_sql + ' ' + self.database.get_raw_sql_limit(0, maxrows) - sql = 'SELECT COUNT(*) FROM (' + raw_sql + ')' + sql = 'SELECT COUNT(*) FROM (' + raw_sql + ') as main_query' row = con.execute(sql).fetchone() self._count = row[0] diff --git a/api/userquery/email.py b/api/userquery/email.py index 9fbf2a651..3c1330e59 100644 --- a/api/userquery/email.py +++ b/api/userquery/email.py @@ -8,7 +8,7 @@ class Email: def __init__(self): - self.logger = logging.getLogger('userquery email') + self.logger = logging.getLogger('userquery') def send(self, data): self.logger.info("Sending mail by template %s" % data["template"]) diff --git a/api/userquery/target_viewer.py b/api/userquery/target_viewer.py index 2e76d73b2..4e372efc4 100644 --- a/api/userquery/target_viewer.py +++ b/api/userquery/target_viewer.py @@ -11,7 +11,7 @@ class TargetViewer: def register(user, table_pk, release_name, description=None): """ register table im target viewer """ - logger = logging.getLogger('register_table_in_the_target_viewer') + logger = logging.getLogger('userquery') logger.info("Register the new table as a product") table = Table.objects.get(pk=table_pk) @@ -57,16 +57,16 @@ def register(user, table_pk, release_name, description=None): table.product = product table.save() - logger.info("New Product -id %s- was Registered" % product.pk) + logger.info("New Product was Registered. Product ID: [%s]" % product.pk) @staticmethod def unregister(product_id): """ uregister table im target viewer """ - logger = logging.getLogger('uregister_table_in_the_target_viewer') + logger = logging.getLogger('userquery') logger.info("Unregister the new table as a product") product = ProductTable.objects.get(product_ptr_id=product_id) product.delete() - logger.info("Product -id %s- was Registered" % product_id) + logger.info("Product was Unregistered. Product ID: [%s]" % product_id) diff --git a/api/userquery/tasks.py b/api/userquery/tasks.py index 27e1d719a..330e223e8 100644 --- a/api/userquery/tasks.py +++ b/api/userquery/tasks.py @@ -28,7 +28,7 @@ def create_table(self, job_id, user_id, table_name, table_display_name, release_ logger = create_table_as.logger - logger.info("Task create_table_as has started\n") + logger.info("Task create_table_as has started") # start teble creation process create_table_as.do_all() diff --git a/api/userquery/views.py b/api/userquery/views.py index e225d6687..2adfc1fe7 100644 --- a/api/userquery/views.py +++ b/api/userquery/views.py @@ -22,9 +22,6 @@ from lib.sqlalchemy_wrapper import DBBase -logger = logging.getLogger(__name__) - - class QueryViewSet(viewsets.ModelViewSet): queryset = Query.objects.filter() serializer_class = QuerySerializer @@ -147,8 +144,7 @@ def create(self, request, *args, **kwargs): table_display_name=display_name, release_id=release_id, release_name=release_name, - associate_target_viewer=associate_target_viewer, - schema=settings.DATABASES['catalog']['USER']) + associate_target_viewer=associate_target_viewer) return HttpResponse(status=200) diff --git a/database_subset/gaia_dump.sql b/database_subset/gaia_dump.sql new file mode 100644 index 000000000..09b8d2667 --- /dev/null +++ b/database_subset/gaia_dump.sql @@ -0,0 +1,5305 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 9.6.11 +-- Dumped by pg_dump version 9.6.11 + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: gaia; Type: SCHEMA; Schema: -; Owner: postgres +-- + +CREATE SCHEMA gaia; + + +ALTER SCHEMA gaia OWNER TO postgres; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: gaia_dr2; Type: TABLE; Schema: gaia; Owner: postgres +-- + +CREATE TABLE gaia.gaia_dr2 ( + solution_id bigint, + designation text, + source_id bigint, + random_index integer, + ref_epoch real, + ra double precision, + ra_error double precision, + "dec" double precision, + dec_error double precision, + parallax double precision, + parallax_error double precision, + parallax_over_error double precision, + pmra double precision, + pmra_error double precision, + pmdec double precision, + pmdec_error double precision, + ra_dec_corr double precision, + ra_parallax_corr double precision, + ra_pmra_corr double precision, + ra_pmdec_corr double precision, + dec_parallax_corr double precision, + dec_pmra_corr double precision, + dec_pmdec_corr double precision, + parallax_pmra_corr double precision, + parallax_pmdec_corr double precision, + pmra_pmdec_corr double precision, + astrometric_n_obs_al smallint, + astrometric_n_obs_ac smallint, + astrometric_n_good_obs_al smallint, + astrometric_n_bad_obs_al smallint, + astrometric_gof_al double precision, + astrometric_chi2_al real, + astrometric_excess_noise double precision, + astrometric_excess_noise_sig double precision, + astrometric_params_solved smallint, + astrometric_primary_flag text, + astrometric_weight_al double precision, + astrometric_pseudo_colour double precision, + astrometric_pseudo_colour_error double precision, + mean_varpi_factor_al double precision, + astrometric_matched_observations smallint, + visibility_periods_used smallint, + astrometric_sigma5d_max double precision, + frame_rotator_object_type smallint, + matched_observations smallint, + duplicated_source text, + phot_g_n_obs smallint, + phot_g_mean_flux double precision, + phot_g_mean_flux_error double precision, + phot_g_mean_flux_over_error real, + phot_g_mean_mag double precision, + phot_bp_n_obs smallint, + phot_bp_mean_flux double precision, + phot_bp_mean_flux_error double precision, + phot_bp_mean_flux_over_error double precision, + phot_bp_mean_mag double precision, + phot_rp_n_obs smallint, + phot_rp_mean_flux double precision, + phot_rp_mean_flux_error double precision, + phot_rp_mean_flux_over_error double precision, + phot_rp_mean_mag double precision, + phot_bp_rp_excess_factor double precision, + phot_proc_mode smallint, + bp_rp double precision, + bp_g double precision, + g_rp double precision, + radial_velocity double precision, + radial_velocity_error double precision, + rv_nb_transits smallint, + rv_template_teff real, + rv_template_logg real, + rv_template_fe_h real, + phot_variable_flag text, + l double precision, + b double precision, + ecl_lon double precision, + ecl_lat double precision, + priam_flags integer, + teff_val real, + teff_percentile_lower real, + teff_percentile_upper real, + a_g_val real, + a_g_percentile_lower real, + a_g_percentile_upper real, + e_bp_min_rp_val real, + e_bp_min_rp_percentile_lower real, + e_bp_min_rp_percentile_upper real, + flame_flags integer, + radius_val double precision, + radius_percentile_lower double precision, + radius_percentile_upper double precision, + lum_val double precision, + lum_percentile_lower double precision, + lum_percentile_upper double precision +); + + +ALTER TABLE gaia.gaia_dr2 OWNER TO postgres; + +-- +-- Data for Name: gaia_dr2; Type: TABLE DATA; Schema: gaia; Owner: postgres +-- + +COPY gaia.gaia_dr2 (solution_id, designation, source_id, random_index, ref_epoch, ra, ra_error, "dec", dec_error, parallax, parallax_error, parallax_over_error, pmra, pmra_error, pmdec, pmdec_error, ra_dec_corr, ra_parallax_corr, ra_pmra_corr, ra_pmdec_corr, dec_parallax_corr, dec_pmra_corr, dec_pmdec_corr, parallax_pmra_corr, parallax_pmdec_corr, pmra_pmdec_corr, astrometric_n_obs_al, astrometric_n_obs_ac, astrometric_n_good_obs_al, astrometric_n_bad_obs_al, astrometric_gof_al, astrometric_chi2_al, astrometric_excess_noise, astrometric_excess_noise_sig, astrometric_params_solved, astrometric_primary_flag, astrometric_weight_al, astrometric_pseudo_colour, astrometric_pseudo_colour_error, mean_varpi_factor_al, astrometric_matched_observations, visibility_periods_used, astrometric_sigma5d_max, frame_rotator_object_type, matched_observations, duplicated_source, phot_g_n_obs, phot_g_mean_flux, phot_g_mean_flux_error, phot_g_mean_flux_over_error, phot_g_mean_mag, phot_bp_n_obs, phot_bp_mean_flux, phot_bp_mean_flux_error, phot_bp_mean_flux_over_error, phot_bp_mean_mag, phot_rp_n_obs, phot_rp_mean_flux, phot_rp_mean_flux_error, phot_rp_mean_flux_over_error, phot_rp_mean_mag, phot_bp_rp_excess_factor, phot_proc_mode, bp_rp, bp_g, g_rp, radial_velocity, radial_velocity_error, rv_nb_transits, rv_template_teff, rv_template_logg, rv_template_fe_h, phot_variable_flag, l, b, ecl_lon, ecl_lat, priam_flags, teff_val, teff_percentile_lower, teff_percentile_upper, a_g_val, a_g_percentile_lower, a_g_percentile_upper, e_bp_min_rp_val, e_bp_min_rp_percentile_lower, e_bp_min_rp_percentile_upper, flame_flags, radius_val, radius_percentile_lower, radius_percentile_upper, lum_val, lum_percentile_lower, lum_percentile_upper) FROM stdin; +1635721458409799680 Gaia DR2 2481164162647472896 2481164162647472896 1283555620 2015.5 25.6125071432180995 0.0368574707818805011 -3.40107774130800999 0.0307092791757127004 1.77916330993685001 0.0461817688982135016 38.5252300000000005 8.31220058538112028 0.0696568069779081034 7.2255803982078497 0.0693109162272113055 -0.0220538199999999983 0.512727900000000014 -0.0435121600000000011 -0.0010030836999999999 -0.365447159999999993 -0.237157900000000005 -0.424675320000000023 0.164061280000000004 0.272597460000000014 0.352671620000000019 174 174 173 1 6.2790619999999997 310.377991 0 0 31 true 375.366759999999999 1.54580822205143997 0.00970721766305148934 0.00938651499999999979 20 10 0.0510629000000000013 0 21 false 169 408038.820195635024 112.311809003760004 3633.09009 11.6616119999999999 20 192654.225905998988 212.095171405569999 908.33856000000003 12.1394415000000002 20 304769.691959525982 257.862210765359009 1181.90900000000011 11.0519905000000005 1.21906029999999999 0 1.08745099999999995 0.477829930000000014 0.609621049999999998 8.78205433575196004 1.19658704380712999 3 5000 4.5 0 NOT_AVAILABLE 152.327115678502992 -63.323438254330803 22.4706981603640017 -13.0663398778517994 100001 4993.87988 4862.95996 5099.31982 \N \N \N \N \N \N 200111 3.16943140000000012 3.03971549999999979 3.34238269999999993 5.62872199999999978 5.42368030000000001 5.83376400000000039 +1635721458409799680 Gaia DR2 2481164162647215872 2481164162647215872 593209286 2015.5 25.6124278693609 1.38271353624402993 -3.39986096035101992 1.8240097247076299 \N \N \N \N \N \N \N 0.553453149999999949 \N \N \N \N \N \N \N \N \N 67 0 66 1 1.92892409999999992 84.0541992 3.07980894163569996 1.93572476094905999 3 false 0.0240299650000000004 \N \N 0.191123860000000007 8 7 6.95778229999999986 0 8 false 66 107.197880106431001 1.83872000946095993 58.3003006 20.6128999999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.325771215662996 -63.3223787873948964 22.4710825860748997 -13.0651794521540996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164815482501760 2481164815482501760 1550813836 2015.5 25.6405138604540994 0.0488334116277370986 -3.39845373990014021 0.0360108775184004026 0.582586029336297995 0.0579322730947431017 10.0563300000000009 4.84857969302206016 0.0907547639657153016 -5.91091335695669962 0.0724745807869389969 0.056607339999999999 0.521139559999999946 -0.0102079389999999992 0.0154866589999999998 -0.137402560000000007 -0.114542179999999993 -0.0650290200000000068 0.0559450400000000014 0.190211770000000002 0.137163879999999988 144 0 142 2 -0.733592000000000022 124.584999 0 0 31 true 12.6933249999999997 1.59470386704343992 0.0129122537401892001 0.0074914650000000001 17 10 0.0872061499999999962 0 17 false 141 10875.2930241305003 7.07607793978672017 1536.91003 15.5972629999999999 16 5988.5728474159796 19.6600324711093997 304.606449999999995 15.90808 16 7253.26027825292022 33.4067381735354019 217.119670000000013 15.1105870000000007 1.21760700000000011 0 0.797493000000000007 0.310816760000000025 0.486676219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.380524756021003 -63.3088349056739972 22.4983747552407998 -13.0741937713001004 100001 5884 5777.81982 6129.25 0.140000001 0.0680000037 0.207100004 0.0710000023 0.0340000018 0.103100002 200111 1.07930470000000001 0.994660199999999994 1.11933839999999996 1.25797939999999997 0.988463940000000041 1.52749489999999999 +1635721458409799680 Gaia DR2 2481164879909667968 2481164879909667968 1160168844 2015.5 25.6405971378387996 0.633586336215247958 -3.39742276149340983 0.535106492273533019 1.33352481891858998 0.80552595953332895 1.65547099999999991 -4.65011043528463031 1.24843539354975008 -6.66919781335311956 0.929434723162356979 0.125405149999999993 0.4533084 0.134405730000000001 0.0791806199999999932 -0.0538386400000000001 -0.131446570000000013 0.284124800000000011 -0.028589802000000001 0.295857939999999986 -0.00798403599999999991 140 0 139 1 3.02371200000000018 189.005997 0.935646648906566014 0.409506043886225024 31 false 0.0547848000000000016 1.24194344937587009 0.163298732187110995 0.0559084700000000018 17 10 1.1011953000000001 0 17 false 138 159.301627137959997 1.26429816506839998 126 20.182815999999999 10 96.9502259122203043 19.117277369560199 5.07134060000000009 20.3850149999999992 12 217.85706454806899 8.24803908503301919 26.4131950000000018 18.9164899999999996 1.97617130000000008 0 1.46852490000000002 0.202199939999999995 1.26632499999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.379685064856005 -63.3078718051511018 22.4988437579220992 -13.0732658063552005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165945058506112 2481165945058506112 526038033 2015.5 25.6089969281385983 0.580416660476230972 -3.36126570267424007 0.398965057183487015 1.27431706393980004 0.743202475764112025 1.71462979999999998 52.3302801705723013 0.878619566654335049 6.41697713322331964 0.626118912321778964 -0.407682060000000013 0.698245169999999971 0.233882730000000011 -0.0365530770000000033 -0.578129349999999986 -0.186883359999999998 0.184517010000000009 0.152795569999999992 0.0653091150000000009 0.0462320700000000001 154 0 152 2 2.05550530000000009 184.360001 1.31297552895565994 3.61101154879712016 31 false 0.109104000000000007 1.3955305400418001 0.107552701514661994 -0.0585441179999999992 18 9 0.846846039999999967 0 18 false 152 291.849964666798996 1.7980882287892701 162.311005 19.525466999999999 14 80.2438490163503957 9.71591333463602069 8.25901200000000024 20.5903589999999994 14 404.433598841648006 7.33399635393286964 55.1450499999999977 18.244802 1.66070760000000006 0 2.34555630000000015 1.06489180000000005 1.28066440000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.281346357144002 -63.2891666619103006 22.4824011949555995 -13.0280345737494994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166116857201408 2481166116857201408 426486472 2015.5 25.610122273456799 0.103440558379347 -3.3354383213434402 0.0801682919541673034 0.136914149300144006 0.127248004050762004 1.075963 3.95315348010288004 0.195129439838091001 -5.42405903905581965 0.17021361236518201 -0.141597329999999993 0.509646999999999961 0.100159529999999997 -0.039763699999999999 -0.399573920000000027 -0.16808613 -0.107285829999999999 0.0714714399999999972 0.170575279999999996 0.170627919999999988 157 0 156 1 0.409583120000000023 157.542999 0 0 31 false 2.1643631000000001 1.62183034645915991 0.024430381511112001 -0.00696703649999999997 18 10 0.182036239999999988 0 18 false 155 2327.77441985794985 3.30028457217902016 705.325012 17.2710129999999999 16 1245.75514474739998 19.1032111493980992 65.211820000000003 17.6128059999999991 17 1615.9444073509701 13.7695438256132991 117.35642 16.7408539999999988 1.22937150000000006 0 0.871952060000000029 0.341793059999999982 0.530159000000000047 \N \N 0 \N \N \N NOT_AVAILABLE 152.258505427970988 -63.2654427623537003 22.4932325916078995 -13.0044348314608005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166151216940416 2481166151216940416 170125203 2015.5 25.6155610979392989 0.584281789338228053 -3.33335973248575002 0.423409523402698995 0.598649180938559011 0.726325543120403982 0.824216069999999967 -0.746573065469682051 1.11185162387039993 -2.86765079599571981 0.724923494133170032 -0.25093167999999999 0.518526400000000054 0.0962533299999999981 -0.0333448949999999994 -0.477563919999999975 -0.14296143 0.184863269999999996 0.0971091199999999932 0.0980768499999999932 0.0171213319999999995 154 0 153 1 1.04568860000000008 166.009003 0.878661832202614956 0.557698985169507999 31 false 0.0783583449999999959 1.59504679325941989 0.123889944440868996 -0.0527870429999999988 18 10 0.983421800000000013 0 18 false 151 221.593581093869005 1.78929683606767997 123.844002 19.8244720000000001 16 72.0987194244297029 5.47138286438369015 13.177422 20.7065699999999993 16 264.197544478981001 10.1715956550296003 25.9740499999999983 18.7070979999999984 1.51762639999999993 0 1.99947169999999996 0.882097240000000005 1.1173744000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.267344872821013 -63.2612017183552027 22.4991991275167003 -13.0045010258708995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165773259813760 2481165773259813760 406947106 2015.5 25.6326116811954989 1.45969658248903 -3.36774574193482978 1.33812374032986003 -4.18502236058899957 2.15340654954205979 -1.94344270000000008 9.94820883678817047 2.28578997758443014 -14.6333862586789998 3.30310171273317987 -0.305639559999999977 0.735636900000000038 0.285774299999999981 -0.00590238859999999994 -0.640227850000000043 -0.536766469999999996 -0.553920030000000008 0.36224561999999999 0.365368499999999985 0.534050800000000048 100 0 99 1 -0.16553967 91.0940018 0 0 31 false 0.0287324620000000003 1.8355655689594399 0.304203742788764997 0.0640649699999999989 13 8 3.3701620000000001 0 13 false 99 100.501926558264998 1.36624202458267008 73.5608978 20.6829299999999989 10 55.3267202605992026 9.08034053413000031 6.09302299999999963 20.9940509999999989 13 107.465069210989 11.0093535652921002 9.76125099999999968 19.6837519999999984 1.61978770000000005 0 1.31029890000000004 0.311120999999999981 0.999177929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.334812132263011 -63.2846845390170998 22.5024505384606002 -13.0427383397688992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165777555175808 2481165777555175808 641777810 2015.5 25.6449172869976003 3.13092692756882984 -3.3737287768264701 1.98906920378863994 \N \N \N \N \N \N \N -0.3200326 \N \N \N \N \N \N \N \N \N 113 0 113 0 29.7570149999999991 1397.57996 12.9629126425224008 73.1794163001797955 3 false 0.00517551500000000032 \N \N 0.0336386259999999979 14 8 4.83151439999999965 0 14 false 121 190.593035174225008 2.70670350526581993 70.4151993 19.9880980000000008 12 161.735044350381997 12.8199777362060008 12.6158599999999996 19.8293779999999984 12 403.058620296368986 10.1784465054923992 39.5992279999999965 18.2484989999999989 2.96334890000000017 0 1.58087920000000004 -0.158720019999999989 1.73959920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.365206140243998 -63.2846841139480034 22.5119141303828982 -13.0528232966274995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705420800 2481165051705420800 31738011 2015.5 25.6595287748480985 1.14527714952477 -3.36965839606491002 1.09453440196057006 -0.527470163836989969 1.49562004528381998 -0.352676570000000023 0.0804113206528598995 2.05592551235102983 -2.72630050802604007 2.55119709029116004 0.10274701 0.572728000000000015 0.0478473640000000033 -0.104164839999999995 -0.365420940000000027 -0.518111050000000017 -0.614213349999999991 0.311726479999999972 0.44617772 0.447127849999999993 105 0 102 3 -0.139777469999999987 94.4098969 0 0 31 false 0.0310266969999999989 1.89564853442239989 0.268738378899585018 0.0789275499999999991 12 9 2.64444070000000009 0 13 false 101 114.807974061161005 1.6012820883162 71.6975021 20.5384349999999998 9 39.9611939197105031 10.7756630411338996 3.70846719999999985 21.3472919999999995 9 140.38153495031699 4.01221156907022003 34.9885670000000033 19.3936439999999983 1.57082060000000001 0 1.95364760000000004 0.808856959999999958 1.1447906000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.390396933156012 -63.2746326874132023 22.5273740064655001 -13.0544076152378992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166151217031808 2481166151217031808 191074380 2015.5 25.6198906581887016 3.12811885872411022 -3.32810978830069981 2.06530288692867003 \N \N \N \N \N \N \N -0.29254891999999999 \N \N \N \N \N \N \N \N \N 64 0 62 2 0.577392499999999975 62.676899 1.5763424020611001 0.237383029084418995 3 false 0.0172007550000000016 \N \N -0.00528508749999999968 9 7 5.50191069999999982 0 9 false 61 84.1356319641162997 1.84178926668385001 45.6814995 20.8759160000000001 7 39.5388752207383973 11.4933637250962999 3.4401484 21.358827999999999 6 99.7788592951127953 30.1951778247279989 3.30446339999999994 19.7643239999999984 1.65587079999999998 0 1.59450340000000002 0.482912059999999976 1.11159129999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.270889601356998 -63.2545911528346991 22.5053070608197991 -13.0012108078823996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166533468889216 2481166533468889216 929951184 2015.5 25.6339861040931005 0.458739252845777989 -3.32574366485785999 0.333052999998000976 0.68076833760548805 0.610750587814221979 1.11464209999999997 -14.1698828706824003 0.772779303949114982 -12.9147231394904001 0.551450704787947998 -0.22258441000000001 0.591895159999999976 0.107560779999999995 0.0717416599999999988 -0.503341730000000043 -0.0354452649999999966 0.0926767299999999988 0.0581612199999999996 0.132677080000000003 0.17338400000000001 170 0 169 1 1.44999900000000004 190.947998 0.637846901033292002 0.473663418126613001 31 false 0.120010569999999997 1.33727781742111995 0.102184123573968 -0.0111041030000000006 20 10 0.696023940000000008 0 20 false 168 277.663394462438987 1.57516268433316009 176.276001 19.5795689999999993 16 70.1526592019373965 7.00581780537896037 10.0134860000000003 20.7362789999999997 16 394.172036508589997 12.4566696442807991 31.6434539999999984 18.2727049999999984 1.67225749999999995 0 2.46357349999999986 1.15670969999999995 1.30686379999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.296713464507008 -63.2463137986270993 22.5196289629098985 -13.0041903865418007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165876340171776 2481165876340171776 1637181883 2015.5 25.6458036029213012 1.53838071741171989 -3.34608003883362981 1.23826423948788999 0.156047815649651006 1.83415327032097997 0.0850789400000000057 -15.0708882684429 3.66960230511890995 -9.02118255895186039 3.43528401535062011 -0.23227798999999999 0.327177139999999977 -0.445153679999999996 4.11324439999999998e-05 -0.630910900000000052 -0.065821599999999994 -0.327373899999999995 0.0937872500000000026 0.0764185339999999963 0.502384500000000012 104 0 103 1 -0.88369909999999996 85.5311966 0 0 31 false 0.0196264439999999998 1.76675279386637007 0.357409212178549984 -0.050257259999999998 13 8 3.85866210000000009 0 13 false 107 92.7018698932339049 1.56625799516245001 59.1867981 20.7706449999999982 6 64.6788558609474933 13.6863242265593996 4.72580199999999984 20.8244819999999997 8 115.625201983943995 15.0473634935530001 7.68408400000000036 19.6042880000000004 1.94498839999999995 0 1.22019389999999994 0.0538368229999999989 1.16635700000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.340052826572986 -63.2594401887723023 22.5232050303472988 -13.0274413849087001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166254296153600 2481166254296153600 225304589 2015.5 25.6536470583296001 0.588740137864329993 -3.34736588057250017 0.410176800760389981 0.571534776833553027 0.819130656040657046 0.69773333999999998 2.94225889009773001 0.934258023967109996 -5.51286148028843037 0.663721513795893947 -0.108842685999999994 0.640348999999999946 0.0939904200000000051 0.194990859999999988 -0.414662750000000024 -0.0701971099999999931 0.0276688190000000007 0.167127890000000001 0.292414159999999979 0.229107169999999999 144 0 144 0 0.758228959999999952 151.322998 0 1.70462085379786998e-15 31 false 0.0903852700000000037 1.62687708598423009 0.124841166833749004 0.0823015599999999958 17 9 0.88348850000000001 0 17 false 144 235.053203270161987 1.63995185973474999 143.328995 19.7604499999999987 14 135.598285136818987 8.37303294254708064 16.1946429999999992 20.0207520000000017 13 181.513734172556013 15.4235509148196002 11.7686089999999997 19.1146470000000015 1.34910740000000007 0 0.906105040000000028 0.260301600000000022 0.645803449999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.356948596914009 -63.2571676563219967 22.5301920973316996 -13.0315188635242993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481354511303129600 2481354511303129600 794977365 2015.5 25.6100717819434003 0.555128729551690014 -3.27818692642498988 0.406862947813402986 -0.109721703437884996 0.724405091339911045 -0.151464569999999993 0.288084851452653001 0.968101312609952025 0.998490100053099017 0.699065483378105035 -0.205532860000000012 0.564108429999999994 0.118815270000000001 0.046509540000000002 -0.491671379999999991 -0.0245942619999999987 0.100536264 0.0246154760000000007 0.102502770000000007 0.176444290000000004 172 0 172 0 1.71485160000000003 199.589996 1.33962657316622002 1.4739327365111099 31 false 0.0772025660000000002 1.5013303493854 0.123530670955614 -0.0044970727000000002 20 10 0.86834789999999995 0 20 false 172 236.919491941399002 1.70291182682372999 139.126007 19.7518630000000002 15 157.537758250492999 8.32873275589568074 18.9149740000000008 19.8579270000000001 16 168.188104918524999 9.66259154502905027 17.4061069999999987 19.1974319999999992 1.37483780000000011 0 0.660495759999999987 0.106063840000000006 0.554431899999999978 \N \N 0 \N \N \N NOT_AVAILABLE 152.202933973091007 -63.2139486131294035 22.5148111557594994 -12.9511847247564003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166499109681280 2481166499109681280 1218633287 2015.5 25.6513772923241987 0.0854264090713447999 -3.31576107886596994 0.0628357608522868982 5.3527229665534799 0.105760747375852004 50.6116200000000021 8.00703739372240086 0.158066548275045987 20.9680582521482997 0.121761356030353998 -0.118661580000000003 0.505742099999999972 0.021843864000000001 0.0506624499999999978 -0.398685899999999982 -0.0560330230000000012 -0.0657317699999999949 0.056255593999999999 0.16132529000000001 0.206509369999999998 172 0 172 0 1.58402979999999993 196.908997 0 0 31 true 3.08109710000000003 1.31493838808732999 0.0199037368439531001 -0.00540702460000000006 20 10 0.146344360000000007 0 20 false 172 3055.55381925820984 3.45527836939881006 884.315002 16.9756409999999995 19 607.130726195616035 13.3826290498644003 45.3670729999999978 18.3931830000000005 18 3826.1754341883402 7.88332054257420012 485.350739999999973 15.8050080000000008 1.450901 0 2.5881748 1.41754150000000001 1.17063329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.321693321650997 -63.2297435882461016 22.5399677940376009 -13.0012983154545996 100001 3370 3261.5 3697.62012 0.0496999994 0.0198999997 0.145600006 0.0222999994 0.0133999996 0.0684999973 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481354408223913472 2481354408223913472 1151198257 2015.5 25.6299917877848991 0.433644466745224999 -3.28949609581969016 0.298575698141388013 0.832075793734891045 0.535505290093483022 1.55381429999999998 15.4976898163223993 0.820817931093051012 -33.356794710960898 0.510864766355182964 -0.181363390000000013 0.475643800000000005 -0.108164380000000004 0.0769086100000000022 -0.467779800000000023 0.00849030199999999992 0.0839173500000000017 0.0846091499999999941 0.117555103999999994 0.143491800000000003 165 0 162 3 1.36251490000000008 181.667007 0.612644764897990024 0.54690170814286998 31 false 0.135762109999999991 1.45274923235242004 0.0955014399434055972 -0.0323982699999999998 19 10 0.72668666000000004 0 19 false 162 320.454997116483014 1.68095701945601994 190.638 19.4239479999999993 17 138.820046365570988 10.6384413951468009 13.0489080000000008 19.9952579999999998 18 319.193323068512996 17.0975300998841 18.6689720000000001 18.5017850000000017 1.42925949999999991 0 1.49347300000000005 0.571310039999999963 0.922162999999999955 \N \N 0 \N \N \N NOT_AVAILABLE 152.253591318927988 -63.2154500416200023 22.5295148247050996 -12.9690194769291995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481354373864185472 2481354373864185472 1073088190 2015.5 25.6526816009249998 1.3707663524898801 -3.28504188336291003 1.40504689288664997 3.38859891960429982 1.81263077569528996 1.86943700000000002 1.72654511953575995 2.7528091409401898 6.01628553030066993 3.86852676514874982 -0.24574609 0.384518399999999982 0.326529349999999996 -0.10940155 -0.688880260000000022 -0.479183079999999983 -0.648172999999999999 0.286468400000000012 0.551365600000000011 0.297536079999999981 108 0 106 2 0.695324999999999971 110.499001 0 0 31 false 0.0214224889999999994 1.46537012739808992 0.316685823700488978 -0.0992158650000000003 13 8 3.74937630000000022 0 13 false 107 94.8679260705253 1.59539576473087008 59.4636002 20.7455670000000012 8 75.083658645421707 17.9351821719012996 4.18638940000000037 20.6625249999999987 10 74.9369498659150963 12.2651319813352 6.10975499999999982 20.0751799999999996 1.58136279999999996 0 0.587345099999999953 -0.0830421449999999978 0.67038726999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.294481638566992 -63.2015479219610015 22.5528113092325988 -12.9732138026773001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377841565481600 2481377841565481600 1092156734 2015.5 25.6606912859690013 0.091393948873351602 -3.27795935544838013 0.0675551286483697944 0.245636621565156005 0.111560825179979006 2.20181799999999983 -0.0922558972055362997 0.172388485432523997 -7.5376353917838701 0.130006217839119004 -0.144039899999999998 0.48678305999999999 0.0682679040000000042 0.0164954070000000001 -0.39504172999999998 -0.0833159599999999945 -0.0050161225000000002 0.0474352129999999969 0.154023870000000007 0.139196020000000004 166 0 165 1 -1.22872779999999993 138.404999 0 0 31 false 2.73929480000000014 1.54027456114221994 0.0223901703392019001 -0.0247979559999999995 19 10 0.15700842000000001 0 19 false 163 2778.79866959703986 3.11585524647921996 891.825012 17.0787240000000011 17 1478.50595094573009 28.5938384715345997 51.7071529999999981 17.4268299999999989 16 1894.92554385408994 20.0048078870071002 94.7235000000000014 16.5679400000000001 1.21398910000000004 0 0.858890530000000041 0.348106379999999993 0.510784149999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.303564330829005 -63.191682193029898 22.563115820472099 -12.9695704458295999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164952921455104 2481164952921455104 531666361 2015.5 25.6647616331408983 0.132323307924513994 -3.37903262498269985 0.0873295196709211047 2.66695726291227997 0.174288871647644006 15.3019359999999995 -11.1136934897265007 0.182036961676517006 -3.31746421394873003 0.145084694734740005 -0.270937380000000005 0.747262699999999946 0.130406629999999996 0.0209370479999999998 -0.481823700000000021 -0.0202385129999999996 0.236956240000000012 0.0576646140000000029 0.0197840500000000009 0.184484800000000004 131 0 131 0 3.36044030000000005 186.360992 0.304297311855408981 2.26990374538888018 31 true 2.77833079999999999 1.36729086589811 0.0247472627697007015 0.0398461260000000025 15 9 0.179352359999999988 0 15 false 127 3574.98293257795012 3.80813031696690985 938.776001 16.8051819999999985 13 998.807505141234969 7.71308623365994972 129.495180000000005 17.852684 14 3885.58587618932006 13.6401576681478005 284.863699999999994 15.7882789999999993 1.36627040000000011 0 2.06440540000000006 1.0475025 1.01690290000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.409980197231988 -63.2807661616409973 22.5288181508391006 -13.0650464612829005 100001 3782.72998 3637 4234.91992 0.239500001 0.0829000026 0.400299996 0.133000001 0.0524999984 0.218799993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307008 2481165051705307008 1663287751 2015.5 25.6665804108209983 0.720360762326065052 -3.37565885253675013 0.562981872215738033 0.479213212751383011 0.999443715682253986 0.479479939999999993 -0.188638506347123008 1.12923909792461008 -4.28163970014611017 0.89459586487766396 -0.102847499999999994 0.641236959999999967 0.145802719999999997 0.123203404000000002 -0.433843970000000023 0.069376199999999999 0.251894859999999998 0.00965289599999999935 0.0870494700000000038 0.246427310000000011 144 0 144 0 1.19609030000000005 159.181 0 0 31 false 0.0571776140000000016 1.89922947124436003 0.16127368140958101 0.0838848499999999969 17 10 1.05252830000000008 0 17 false 144 171.402470996212003 1.53807186384638994 111.440002 20.1033229999999996 13 112.320326843686004 10.2378528254886003 10.9710830000000001 20.225242999999999 12 118.481422881487006 8.65273869501477932 13.6929390000000009 19.5777949999999983 1.34654859999999998 0 0.647447600000000012 0.121919630000000001 0.525527949999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.410316954347991 -63.2769378613012989 22.5318259025718994 -13.0625777668876992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161753170420992 2481161753170420992 1094778668 2015.5 25.7121730720417006 0.978706578502115954 -3.40207693125078015 0.769881538174501001 \N \N \N \N \N \N \N 0.0912290699999999954 \N \N \N \N \N \N \N \N \N 137 0 136 1 44.7573050000000023 3006.15991 5.93151674780332971 218.083947720630988 3 false 0.0266130379999999986 \N \N 0.129169449999999991 16 10 1.67212010000000011 0 16 false 136 820.844157931244013 6.25444683051811978 131.242004 18.4027139999999996 12 685.377144087599959 9.58231865377060998 71.5251849999999934 18.2615639999999999 11 1141.1746743972999 8.97942911821001921 127.08766 17.1185399999999994 2.22521140000000006 0 1.14302440000000005 -0.141149520000000001 1.28417399999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.527057830625012 -63.280663798881001 22.5652912853541991 -13.1038911727221006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162062408066176 2481162062408066176 879182275 2015.5 25.7309660901159987 0.546871161384190008 -3.40332455953369006 0.426210176678534003 0.600923456061966954 0.758797510174950007 0.79194176000000005 8.98686402483706992 0.877721811857854028 -4.17154419979010971 0.67242660467281401 -0.0633129000000000053 0.620456930000000018 0.108365569999999994 0.153612169999999992 -0.430045500000000025 0.120812799999999998 0.261615429999999982 -0.00323646209999999988 0.0815362599999999993 0.27710918000000001 147 0 144 3 1.54423329999999992 165.619995 0.969783232602822953 0.896065759539357964 31 false 0.0984727600000000064 1.33831691243925999 0.117036755303545001 0.0962725700000000018 17 10 0.815457639999999984 0 17 false 145 257.462454121861015 1.61802721683388007 159.121002 19.6615810000000018 14 87.5873173590145058 10.9702696409959 7.98406199999999977 20.4952849999999991 16 319.067657577114005 11.7100364819842007 27.2473659999999995 18.5022130000000011 1.57947290000000007 0 1.99307250000000002 0.833704000000000001 1.15936850000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.565731715607001 -63.273518685361303 22.5827304030101992 -13.1119539703519994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162101063184000 2481162101063184000 660812533 2015.5 25.7341883744049014 0.865964213235225988 -3.3997065116969698 0.771635357722006976 \N \N \N \N \N \N \N 0.102743029999999999 \N \N \N \N \N \N \N \N \N 140 113 140 0 399.764279999999985 689052 8.00153881763755948 20872.7173751646005 3 false 0.0148545540000000007 \N \N 0.0722207049999999962 16 10 1.60946250000000002 0 19 true 136 173169.961333268991 164.250887612117992 1054.30005 12.5921839999999996 16 78136.7175130117976 93.7249582190799941 833.68100000000004 13.1192499999999992 16 138327.22697334399 132.116997511521987 1047.00549999999998 11.9096510000000002 1.25000859999999991 0 1.20959949999999994 0.527066229999999969 0.68253326000000003 -2.2677644922127298 2.20707705676850985 6 5500 4.5 0 NOT_AVAILABLE 152.568604578740008 -63.2688531464800974 22.5871682225686996 -13.1097731563263 130001 4892 4791.25977 5066.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162268566499328 2481162268566499328 1120850265 2015.5 25.7402435199083008 0.410145568462409016 -3.37311814871805016 0.318560670746971974 1.94238456854266994 0.556582243231740992 3.48984300000000003 11.4835145717096996 0.671576968311570988 -4.34478183709438959 0.517754196784408038 -0.0555930619999999986 0.607862400000000025 0.0977928639999999932 0.135113220000000006 -0.396231300000000008 0.0884010340000000033 0.25076989999999999 0.00689665799999999996 0.0904284100000000007 0.242375249999999987 136 0 136 0 1.94648160000000003 164.322998 0.721794130615990959 0.863835743500620978 31 false 0.177320260000000007 1.01610625318635006 0.0936057417277301046 0.0866685900000000037 16 10 0.617141840000000053 0 16 false 135 372.611501807590002 1.46406994731247009 254.503998 19.2602249999999984 12 93.8722000783783983 9.09345560659478025 10.3230505000000008 20.4200459999999993 13 471.276262420336991 13.8371231825246994 34.0588339999999974 18.0787319999999987 1.51672300000000004 0 2.34131430000000007 1.15982059999999998 1.18149379999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.554618905415992 -63.2423226526530016 22.6029818547666999 -13.0872731464470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307264 2481165051705307264 250403498 2015.5 25.6698624879292012 0.271105876441821991 -3.37284203193090004 0.187350239616844993 0.256745275253644989 0.356310454261632992 0.720566200000000046 44.2504196860057988 0.389047787819502 -19.5324850382223012 0.333604413129437005 0.13439029999999999 0.708636500000000003 0.0873387600000000014 0.148755090000000006 -0.155167219999999995 0.0668807800000000008 0.142728309999999997 0.0227106600000000006 0.136120380000000013 0.319327650000000018 131 0 130 1 1.13525000000000009 143.091995 0.436525610213974014 0.817938061227846958 31 false 0.513153300000000034 1.51500703341528009 0.0640600067815186996 0.175147770000000008 15 9 0.381164759999999991 0 15 false 129 803.083895335195052 2.1563222474019601 372.432007 18.4264639999999993 13 381.757387319728991 14.6620546354170997 26.0370999999999988 18.8969200000000015 11 643.895723929653968 8.84417651384067049 72.8044900000000013 17.7398820000000015 1.27714309999999998 0 1.15703770000000006 0.470455169999999978 0.686582570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.414115700695987 -63.2729691344911984 22.5360174821400001 -13.0611645264398994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165429662430208 2481165429662430208 1514059112 2015.5 25.6741497471831011 0.379510949585849022 -3.36402981774307008 0.252271070042159984 0.74891108523532901 0.506367837847745972 1.47898630000000009 -3.88341108789501011 0.538073064516979005 -18.2421892180859011 0.406451716202536006 0.0780085900000000027 0.708702999999999972 0.110139585999999998 0.224466799999999994 -0.205997779999999991 0.120581480000000005 0.31466814999999998 0.0313401040000000006 0.172757729999999998 0.250878270000000014 141 0 140 1 2.73437330000000012 184.278 0.745371915755921988 1.34386558848184001 31 false 0.263637779999999988 1.54540229176717991 0.0771267096341388958 0.141697380000000012 16 9 0.519565700000000019 0 16 false 141 515.586023690497996 1.94264773691401005 265.403992 18.9076139999999988 13 157.607184868670004 7.35998072378265977 21.4140760000000014 19.857448999999999 14 549.41072827492701 11.0324269239127997 49.7996249999999989 17.9121780000000008 1.3712899999999999 0 1.9452704999999999 0.949834799999999979 0.995435700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.414069811350004 -63.2631726132200001 22.5434318115366992 -13.0545459072696008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165395302692736 2481165395302692736 442634520 2015.5 25.6894741685770001 2.80133867579119 -3.35985014866573994 2.65093805587726017 \N \N \N \N \N \N \N 0.0333592559999999969 \N \N \N \N \N \N \N \N \N 113 0 111 2 29.3819769999999991 1363.77002 15.3541239679118 489.855447475616018 3 false 0.00367012480000000014 \N \N 0.206519160000000007 14 9 5.71597579999999983 0 14 false 116 156.722543274107011 1.61900142049180995 96.802002 20.2005370000000006 10 154.647238500022013 10.5551436863852004 14.6513620000000007 19.8780329999999985 11 373.891855552376001 11.7249603227911994 31.8885380000000005 18.3300550000000015 3.37245099999999987 0 1.54797739999999995 -0.322504039999999992 1.87048149999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.440539908503013 -63.2527021319469966 22.5596127032782015 -13.0562891283216 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165464022170880 2481165464022170880 1263486626 2015.5 25.6857913286827007 0.495897498934138981 -3.35032976307922992 0.35857195376981299 0.315579246062499985 0.638031121739368046 0.494614180000000014 -0.554175219990562962 0.839636378706992037 -0.666237113278767001 0.553835766952987973 0.0220205800000000014 0.559579399999999949 0.26416516000000001 0.176614369999999993 -0.322901339999999981 0.13635122999999999 0.372187140000000027 -0.0735275700000000004 0.118926390000000007 0.191667140000000014 131 0 129 2 0.868731260000000005 137.475006 0.80510735413423995 1.16503882725385011 31 false 0.144876690000000002 1.86875342542453993 0.103972940090971994 0.0958123099999999978 15 10 0.770096800000000026 0 15 false 130 333.903671978793 2.87308791787835993 116.218002 19.3793129999999998 14 222.338554391759004 11.8489915011862994 18.7643430000000002 19.4838500000000003 15 228.978396859176001 8.61356150077129001 26.583475 18.8624340000000004 1.35163820000000001 0 0.621416100000000027 0.104537963999999997 0.516878100000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.423915495447005 -63.2457622484891004 22.5596995904958995 -13.0460838634066008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165498381908736 2481165498381908736 1343673565 2015.5 25.7042055323736989 0.768313384852628012 -3.35415855644846017 0.583038983368442953 -0.788186293194145016 1.07492088780920003 -0.733250500000000027 10.6290343166837005 1.19914850175961996 -6.23626034611173985 0.870138424830579016 -0.118869364000000005 0.637156959999999994 0.127395779999999986 0.153411949999999991 -0.462494699999999981 0.115313559999999996 0.299881249999999988 0.00056183804 0.0813632100000000053 0.241047079999999997 145 0 144 1 0.741604700000000006 151.029999 0 0 31 false 0.0538591740000000027 1.16290033824384009 0.163745364617361999 0.088480390000000006 17 10 1.10259299999999993 0 17 false 145 162.663022700130995 1.28179679798433011 126.902 20.1601430000000015 15 85.6835660079178041 17.5144700552945984 4.89215849999999985 20.5191440000000007 16 192.977276582938003 5.71799073563101956 33.749139999999997 19.0481550000000013 1.71311740000000001 0 1.4709892 0.359001159999999986 1.11198810000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.46433434693401 -63.2411289728029971 22.5757997756571989 -13.0564079181636998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165601461126656 2481165601461126656 1118585628 2015.5 25.7055024054428003 0.332416108253844989 -3.33317038547171007 0.252237611160045005 2.14378742341017992 0.437719446240044996 4.89762900000000023 -8.31498219649825998 0.563487094208636963 -28.7707808357941985 0.416430104807444024 -0.0398530699999999974 0.582496400000000025 0.0841835499999999959 0.121109530000000007 -0.361986279999999994 0.082537910000000006 0.26711111999999998 -0.00405882599999999975 0.083431795000000003 0.212679940000000012 139 0 139 0 4.21469200000000033 214.604004 0.845567296325555051 1.89156989787771002 31 false 0.25935069999999999 1.35896956230325006 0.0806865920450246937 0.0797788200000000003 16 10 0.510044929999999952 0 16 false 138 516.331064323411965 1.97522312062993999 261.403992 18.9060459999999999 10 103.338295872032006 18.0946862175398984 5.7109747000000004 20.3157350000000001 13 744.154120714339001 14.8727870291321 50.0346100000000007 17.5827640000000009 1.64137409999999995 0 2.73297120000000016 1.40968899999999997 1.32328219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.446444430626002 -63.2217058493565034 22.5849619162336985 -13.0373681523306999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165292223477504 2481165292223477504 534627943 2015.5 25.7185524326828983 0.168722941809527988 -3.36060188213973987 0.108958316011088005 0.0363009125255092033 0.222539159358603994 0.163121459999999996 -3.07680501667313999 0.22946848465747699 -5.51592428421067016 0.192519132508790991 -0.22221689 0.750912849999999965 0.108568189999999995 0.0545640550000000002 -0.448024599999999995 -0.00081989509999999999 0.125155450000000001 0.0445823149999999974 0.0553779599999999969 0.257327560000000011 121 0 119 2 1.18842270000000005 132.166 0.306231266121243018 1.38221201543077998 31 false 1.77922340000000001 1.5926551802862301 0.037299596632137999 0.0560849719999999968 14 9 0.227303969999999994 0 14 false 118 2207.47547755721007 2.9952775315687501 736.984985 17.3286270000000009 12 1150.00038190994997 12.1270185058770998 94.8296050000000008 17.6996439999999993 14 1577.28358808653002 13.6769600237793991 115.324134999999998 16.7671449999999993 1.23547650000000009 0 0.932498929999999948 0.371017460000000021 0.561481499999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.499197076602997 -63.2406188657860966 22.5870376801512016 -13.0676686596384002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165262158601344 2481165262158601344 159083683 2015.5 25.7435078446419006 1.50883249377151007 -3.35467455287846983 2.09434855767065997 \N \N \N \N \N \N \N 0.843362570000000034 \N \N \N \N \N \N \N \N \N 61 0 61 0 0.426602099999999984 59.9369011 0.619242071953656992 0.217556173350670012 3 false 0.106812779999999996 \N \N 0.563186760000000008 7 5 3.83090850000000005 0 7 false 60 241.987221437660992 4.28263401785434006 56.5042992 19.7288840000000008 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.543070982322007 -63.2243299305825985 22.6130578419269987 -13.0713213721670005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165262159112704 2481165262159112704 992556638 2015.5 25.7437665754094986 0.305611801472963018 -3.35481679903847008 0.235380440208746988 -0.634226858013193007 0.388413285781171014 -1.63286599999999993 2.86158318817382007 0.553273418143687024 3.19296530594536998 0.398642390095730992 -0.00367518770000000014 0.528325799999999957 0.0353728719999999996 0.115227090000000004 -0.31455240000000001 0.091668949999999999 0.302719559999999999 -0.0145158679999999995 0.0657365550000000021 0.175163790000000014 139 0 137 2 10.0389689999999998 370.199005 1.47106911788864991 13.5869183877042996 31 false 0.288593140000000026 1.45627206233628992 0.0678411930355966031 0.0713690800000000014 16 10 0.494804259999999996 0 16 false 137 1046.03234597074993 4.24683973272883986 246.307999 18.1395030000000013 15 432.95263147285101 11.5564194134130993 37.4642520000000019 18.7602860000000007 16 1183.68699821916994 15.0378741484077008 78.713719999999995 17.0788270000000004 1.5454968 0 1.68145940000000005 0.620782849999999997 1.06067660000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.543724786707998 -63.2243438528209012 22.6132506970084002 -13.0715486511300991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188729860417920 2481188729860417920 183453984 2015.5 25.7473732950867991 0.108000967176070994 -3.35284473026305019 0.0845766289032872931 -0.0113599311014716993 0.13814422085377101 -0.0822323999999999972 -0.414689554712702024 0.193033174317494005 -2.98629276258786991 0.156561431452842986 -0.00334681869999999991 0.547574000000000005 0.0497243070000000023 0.0732130700000000051 -0.314746379999999992 0.0587064360000000007 0.178845850000000001 -0.0231194369999999996 0.0549818239999999986 0.234372799999999992 139 0 138 1 2.43349219999999988 175.962997 0.263467914172858975 1.4159808504098399 31 false 2.35234619999999994 1.50722004598608006 0.0256959492595923988 0.0758930899999999964 16 10 0.179351840000000012 0 16 false 138 2889.35536701743013 3.56777255230961021 809.848999 17.036363999999999 14 1364.41265731388989 9.79775678893822999 139.257659999999987 17.5140250000000002 15 2206.22486586592004 12.6780300478908998 174.019530000000003 16.4027959999999986 1.23579039999999996 0 1.11122900000000002 0.477661129999999989 0.633567800000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.548970909864011 -63.2209872477065034 22.6174325517816008 -13.0710391853253007 110001 4957 4768.7998 5141.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165537037019264 2481165537037019264 1680718785 2015.5 25.7266417649471002 0.0902196273627309947 -3.33986340924551994 0.0710820611901936961 0.130821619472885009 0.114599248110963003 1.1415575 -0.535435830848012051 0.163038044310936991 -2.31121638049138012 0.141935418900164007 0.0143356200000000003 0.550688599999999973 0.0293270630000000004 0.0370356250000000026 -0.297837259999999993 0.0169171320000000014 0.0769525699999999979 -0.0172219719999999986 0.0515559299999999998 0.276104240000000001 130 0 129 1 -0.336798759999999975 118.125 0 0 31 true 3.56813119999999984 1.50158316836130989 0.0245896480591254012 0.0947098200000000001 15 10 0.15651733000000001 0 15 false 129 3431.07231145951982 4.42367238883348968 775.616028 16.8497899999999987 12 1523.7147526153301 9.11147956684759919 167.230220000000003 17.3941289999999995 13 2780.08484142448015 34.0196305798367007 81.7200200000000052 16.1517750000000007 1.25435999999999992 0 1.24235340000000005 0.544338199999999994 0.698015199999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.495044755381002 -63.2184422984946011 22.6025779849816004 -13.0513552334923002 100001 4861.5 4772.50977 5056.4502 2.07299995 1.60169995 2.68829989 1.04400003 0.778900027 1.33710003 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161993688589696 2481161993688589696 933103685 2015.5 25.7663310573168012 0.241150185962847013 -3.40043449439085999 0.171628242570842998 1.47375469637868006 0.313033755596573982 4.7079740000000001 38.5722394766603998 0.372473890025598997 -7.52257588908227959 0.321456989199712995 0.0882843100000000047 0.668450100000000047 0.0510295549999999973 0.091840580000000005 -0.175044759999999994 0.0171282180000000006 0.0892680099999999949 0.0136129819999999992 0.112068585999999998 0.267589479999999991 121 0 120 1 4.66017100000000006 200.175995 0.723549465449299989 3.65270653313395988 31 false 0.619290400000000019 1.2640437540540499 0.0532749603704974969 0.139110609999999996 14 9 0.351600999999999997 0 14 false 119 1155.45024187849003 2.79839545536411993 412.897003 18.0314879999999995 12 273.168477226285972 8.41142649552016941 32.4758799999999965 19.2603110000000015 10 1409.52196987704997 15.6144377790297 90.2704240000000055 16.8892400000000009 1.45630719999999991 0 2.37107089999999987 1.22882270000000005 1.14224820000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.633315018041003 -63.2553464420825975 22.6175285382343993 -13.1222537032007001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161203414469504 2481161203414469504 1436430937 2015.5 25.7909983493318009 0.0378827246059701001 -3.40724981977546992 0.0297771721984246007 1.43902731898272007 0.0460853047643891012 31.2252960000000002 -4.67094398175388026 0.0743317304380249066 -6.67382555448233994 0.0648555278068878999 0.0211079469999999984 0.486066459999999978 -0.118242200000000006 -0.00617564559999999978 -0.285211619999999999 -0.0470233600000000002 -0.0484878980000000015 0.0483120500000000022 0.0673752950000000017 0.26446082999999998 130 0 130 0 -0.891770399999999963 110.806999 0 0 31 true 29.765668999999999 1.5525725322127899 0.0107329801939459006 0.031557474000000002 15 10 0.077537250000000002 0 15 false 129 24550.3364982979001 9.8622639315768108 2489.32007 14.7132225000000005 14 12017.1906184791005 16.9446939778329018 709.200799999999958 15.1518809999999995 14 18091.2054433324993 29.264975333780999 618.18629999999996 14.1182510000000008 1.2263944 0 1.03363040000000006 0.438658700000000012 0.594971660000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.68908541063999 -63.2505726203255989 22.6384669181978992 -13.1376480618034002 100001 5078.06006 4737.33008 5329.5 0.0860000029 0.0335999988 0.150099993 0.0434999987 0.0176999997 0.0768000036 200111 0.921571699999999994 0.836665499999999951 1.05890459999999997 0.508796699999999991 0.472539749999999981 0.545053659999999995 +1635721458409799680 Gaia DR2 2481161993688590720 2481161993688590720 338210721 2015.5 25.7629498917906012 0.498953793060110007 -3.39143336085759994 0.535824764226391026 -0.292601479636590001 0.812477911188839053 -0.360134699999999974 10.3486530998779998 0.931983384665360015 -21.3142046348441987 0.783301329771661003 -0.0826986360000000059 0.517014199999999979 0.0854032859999999949 0.0784426559999999995 -0.640093699999999988 0.370019380000000009 0.539600250000000004 -0.255455229999999978 -0.269382029999999995 0.446788000000000018 129 0 129 0 1.80743720000000008 153.925995 1.13785066197803997 1.20777859565116996 31 false 0.118580065999999998 1.6017652592490299 0.123107566180950007 0.127515080000000003 15 9 1.00322479999999992 0 15 false 129 292.320952588755006 1.59130868549565996 183.697998 19.5237160000000003 14 79.6150138433464036 10.8041346402934 7.36893940000000036 20.5989000000000004 14 362.610119865488002 11.8126208609330998 30.6968379999999996 18.3633200000000016 1.5128067999999999 0 2.23558039999999991 1.07518390000000008 1.16039659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.617753977770008 -63.2487613426960991 22.6177054467542007 -13.1126421015465002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161993689855232 2481161993689855232 1319684419 2015.5 25.7686478690255001 4.33801858856793032 -3.39671743172378982 4.32811204742947009 \N \N \N \N \N \N \N 0.662985150000000023 \N \N \N \N \N \N \N \N \N 56 0 55 1 0.148971700000000012 50.8275986 0 0 3 false 0.0207538550000000016 \N \N 0.406350500000000003 7 5 8.78519299999999959 0 7 false 57 90.7675549859517048 1.86266112557082009 48.7299995 20.7935400000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.634276713980995 -63.2509900693798031 22.6211406774223001 -13.1196479154789003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161993688590592 2481161993688590592 1687003751 2015.5 25.7689791011049003 0.172217935399669009 -3.39308257632640009 0.108852933525508996 0.669127981178360032 0.223738176530489996 2.99067429999999979 4.26853321434338007 0.238095327206666013 3.18873609044924011 0.20657575740912601 0.00424059799999999994 0.742900849999999946 0.051418837000000002 0.0722186100000000025 -0.218445699999999993 -0.00116814559999999998 0.0719091300000000017 0.0291468629999999986 0.0910895500000000052 0.266488400000000014 122 0 118 4 5.95949300000000015 227.289993 0.480503915979378027 3.97187073256804979 31 false 1.60203730000000011 1.33402355955947005 0.0357332393434817985 0.13040489999999999 14 9 0.230030459999999992 0 14 false 111 2650.63425687972995 4.72712690888946963 560.728027 17.1299920000000014 11 773.956732853314975 18.0629832679484004 42.8476679999999988 18.1295970000000004 9 2913.39820228050985 16.5381648759278015 176.162119999999987 16.1009199999999986 1.39112170000000002 0 2.02867700000000006 0.999605199999999972 1.02907180000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.631368491394994 -63.2475830217536981 22.6228291781990016 -13.1163894917898993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185431325535616 2481185431325535616 1102039333 2015.5 25.7981129912069989 0.0302961311490795998 -3.39052122818625001 0.0247454934925980009 0.887464815464842016 0.0384188195821296985 23.0997410000000016 4.65777875929174012 0.0558590136802789988 2.43085295470452012 0.0539115009581647014 0.0795093600000000011 0.54279949999999999 -0.0766746600000000056 0.0338347219999999976 -0.277054670000000003 -0.0177519790000000011 -0.166078000000000003 0.0174677729999999989 0.0665721100000000038 0.417541859999999987 145 0 145 0 -2.94035029999999997 95.8186035 0 0 31 false 54.8784940000000034 1.58217227310586006 0.00817167635772213068 0.075750479999999995 17 10 0.0659076900000000049 0 17 false 144 44340.4987426552034 16.4464928734145985 2696.05005 14.0713640000000009 17 23819.9563222717006 24.9965131029664001 952.931150000000002 14.4090360000000004 15 29899.5100601874983 41.2354233499965019 725.092830000000049 13.5727600000000006 1.21152149999999992 0 0.836276050000000049 0.337671280000000018 0.498604769999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.686790676427989 -63.2324282392297974 22.6515659252219983 -13.1247036546700997 100001 5804.33008 5756 5851 0.37349999 0.0935999975 0.663600028 0.197300002 0.0419000015 0.342099994 200111 1.47333190000000003 1.44992349999999992 1.49817909999999999 2.21975640000000007 1.99889359999999994 2.44061899999999987 +1635721458409799680 Gaia DR2 2481184606691814912 2481184606691814912 33327278 2015.5 25.818299039051201 0.0770071757144226987 -3.39796401004783988 0.0598931748284785986 0.531601066811455025 0.0998067031525667059 5.32630629999999972 0.077553651226222195 0.138436777922297 -8.69308870200393002 0.113485169588633 0.0188253620000000017 0.537393200000000015 -0.00862888300000000039 0.102190829999999996 -0.345087020000000022 0.0858761150000000029 0.0462093349999999972 -0.00975580399999999986 0.0697521339999999934 0.335803779999999996 148 0 148 0 0.294239819999999985 147.352997 0 1.68061091013976992e-15 31 false 4.59493200000000002 1.53493678436464998 0.0186781024809742 0.0853496799999999972 17 10 0.134336170000000005 0 17 false 148 4282.74616719793994 4.27718436774083965 1001.29999 16.6090599999999995 15 2065.51105628799996 17.6970652676073996 116.714889999999997 17.0638199999999998 16 3200.68600383333978 14.4753077837570991 221.113499999999988 15.9988130000000002 1.22963099999999992 0 1.06500719999999993 0.454759599999999986 0.610247600000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.734223287242003 -63.230179149427201 22.6679976165554997 -13.1390347127042997 100001 5125.22998 5034.68994 5662.70996 0.423999995 0.252900004 0.606999993 0.209000006 0.128999993 0.300099999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185431325535488 2481185431325535488 127736674 2015.5 25.7991878728485986 0.153227472756928995 -3.38206490792078007 0.119148725959433002 1.41758127736874995 0.194231476076022008 7.2984119999999999 -8.24063614377796938 0.278037766867935021 -0.857833258085605954 0.208098234939444987 0.0316311459999999989 0.52078610000000003 0.0410139080000000017 0.123171089999999997 -0.306657000000000013 0.114066765000000001 0.245820459999999991 -0.0264413800000000004 0.0635075199999999979 0.234070969999999989 147 0 142 5 10.3773979999999995 389.233002 0.673703630203166037 9.16073007396717998 31 false 1.10864009999999991 1.35110649512270009 0.0352889298217088018 0.0763989999999999947 17 10 0.25416008000000001 0 17 false 134 2491.61542311669018 3.7105506206513601 671.494995 17.1971629999999998 15 758.437487374959005 10.8614228952428995 69.828559999999996 18.1515880000000003 14 2603.17293964976989 12.2406792693852999 212.665729999999996 16.2231619999999985 1.34916900000000006 0 1.92842669999999994 0.954425799999999991 0.974000929999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.680621094911004 -63.2243698352938992 22.6557835024528984 -13.1172344249589994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185461389896704 2481185461389896704 1653679993 2015.5 25.8100856656288009 0.670849288763647023 -3.38233943475032994 0.483185253506349999 0.564526102292248977 0.919373479793845982 0.614033460000000031 -0.22935858490380101 1.03171971833505993 -4.5810877437322004 0.75318790894381904 -0.0513034050000000033 0.633629259999999972 0.025166029999999999 0.213927079999999992 -0.398682560000000019 0.21749352999999999 0.225856930000000011 -0.0197077130000000017 0.095501859999999994 0.311996759999999984 134 0 134 0 1.24439129999999998 149.302002 0 0 31 false 0.0762470299999999934 1.64285454420673993 0.144664887794467012 0.086175699999999994 16 10 0.957837339999999982 0 16 false 134 201.53263706940001 1.52653316975661002 132.020004 19.9275020000000005 14 116.690865480710002 7.51365532204504039 15.5305049999999998 20.183796000000001 16 130.906666985809011 7.46694776446959008 17.5314830000000015 19.4695150000000012 1.22857280000000002 0 0.714281100000000002 0.256294250000000001 0.457986830000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.702544242829987 -63.2198018413497991 22.6660676282640985 -13.1214899608204991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481184636756271232 2481184636756271232 583592839 2015.5 25.8298030275098007 2.56443208035299985 -3.3934968948341 5.0633975734434804 \N \N \N \N \N \N \N -0.763024200000000041 \N \N \N \N \N \N \N \N \N 59 0 59 0 -0.161888720000000014 51.6847992 0 0 3 false 0.0218299570000000005 \N \N 0.268266380000000026 7 5 16.7280119999999997 0 7 false 59 82.3903291205930941 1.42794910385864005 57.6983986 20.8986759999999983 4 59.6371840747530015 17.5754507975273988 3.39320950000000021 20.9125960000000006 4 56.0374944561839001 4.10820899927894967 13.640371 20.3907220000000002 1.40398369999999995 0 0.52187349999999999 0.0139198299999999994 0.507953639999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.752679575112012 -63.2210847893783026 22.6806507063969001 -13.1391028515079 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185770627545600 2481185770627545600 1348442828 2015.5 25.7686868866117003 0.209946857449904989 -3.35473388058148991 0.161474864330330009 1.47428428516285992 0.278723264110560975 5.28941969999999984 0.518659499747436969 0.359813469775630002 -0.997007179039888003 0.27547545612385399 0.00312132320000000013 0.563626199999999966 0.0248723799999999995 0.157665940000000004 -0.37663046 0.139116540000000011 0.157379080000000005 -0.00414423830000000028 0.0885993100000000006 0.317530480000000004 144 0 143 1 0.656223099999999948 148.490005 0 0 31 false 0.623464800000000041 1.41295878654262008 0.0475572452682528971 0.103837120000000005 17 10 0.335645970000000016 0 17 false 142 846.826473729596046 2.18156550598208998 388.174011 18.3688800000000008 13 323.143471811136976 13.9832683377085996 23.1092949999999995 19.0778999999999996 13 814.170371485667033 11.9585226440614996 68.082854999999995 17.4851320000000001 1.34303060000000007 0 1.59276770000000001 0.709020600000000001 0.883747100000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.593200749597003 -63.2133021009585008 22.6370316813084997 -13.0806214024916994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185908066500992 2481185908066500992 948702218 2015.5 25.7767129492096991 0.449453307128201973 -3.34107139506871009 0.345022375638259993 0.332278588612583026 0.634567259673515016 0.523630200000000046 1.76066660424192989 0.723470932682497958 1.66053492271617009 0.539181264541786054 -0.106799920000000007 0.609787599999999985 0.0526025499999999979 0.175431969999999993 -0.495280270000000022 0.180250749999999987 0.186268600000000006 -0.0337266660000000024 0.0712010299999999985 0.335273030000000027 148 0 148 0 1.15803929999999999 162.764008 0 0 31 false 0.146555199999999997 1.33451277045385996 0.097104203413013096 0.102256979999999997 17 10 0.675843300000000036 0 17 false 148 304.634386662670011 1.86405592017259991 163.425995 19.4789180000000002 14 128.878616135178987 7.32839629072855026 17.5861969999999985 20.0759350000000012 13 270.231682946196997 6.90243859765920043 39.1501769999999993 18.6825790000000005 1.31012879999999998 0 1.39335629999999999 0.597017299999999973 0.796339039999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.595779481376013 -63.1975062106022989 22.6498389561580993 -13.0708627785190998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188863004092800 2481188863004092800 919067189 2015.5 25.7799975580168983 2.2050083962309599 -3.33262342503606002 4.52110849085874023 \N \N \N \N \N \N \N -0.772463200000000016 \N \N \N \N \N \N \N \N \N 75 0 75 0 -0.53174882999999995 63.2695999 0 0 3 false 0.0259622600000000009 \N \N 0.187376049999999988 9 6 13.1114639999999998 0 9 false 77 90.7716701726328949 1.6665631531007099 54.4664001 20.7934899999999985 5 41.8234032702345999 8.11509507018275933 5.15377859999999988 21.2978400000000008 6 80.9699532825402031 13.5405557187172008 5.97980999999999963 19.991109999999999 1.35277179999999997 0 1.3067302999999999 0.504350659999999951 0.802379599999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.594039710103004 -63.1884782162167014 22.6561583429284994 -13.0642124289293005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188897363740928 2481188897363740928 619906523 2015.5 25.7773032407685001 0.198777504693536 -3.32384502743281018 0.168356638407352988 -0.314410465357160995 0.289945611813517024 -1.08437739999999994 -0.531040600642665006 0.348233124146470008 -2.87659503591115984 0.277979662551113005 -0.0142536955 0.533945439999999993 0.0546102450000000017 0.169899510000000004 -0.472903799999999985 0.0533388500000000002 0.00734996329999999982 0.0589200370000000015 0.189861279999999993 0.357891440000000005 136 0 136 0 1.89458199999999999 163.348007 0.396005245977390008 0.898630152432069007 31 false 0.68691933000000005 1.58986290832992005 0.0465836569765393019 0.170075819999999989 16 9 0.332727400000000006 0 16 false 134 999.067491848006966 2.37009644767260985 421.529999 18.1893789999999989 12 539.863197563779977 28.8716975842763013 18.6986999999999988 18.5206799999999987 12 730.860633645197026 8.62052305216895043 84.7814699999999988 17.6023330000000016 1.2719100000000001 0 0.918346400000000007 0.331300739999999982 0.587045669999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.580105072510008 -63.1817863694099984 22.6569041191392984 -13.0550599779497993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185942426240896 2481185942426240896 794991935 2015.5 25.7914741367336013 0.126626114085266001 -3.32678080570831014 0.116670622662065002 0.675503159622077964 0.181023934637471989 3.73156800000000022 5.45550158707437038 0.230215838973675008 -12.1166591509322004 0.195066944014126997 0.152027350000000006 0.52966179999999996 0.072703056000000002 0.180956139999999988 -0.401595860000000027 0.390876900000000027 0.479215380000000024 -0.208485110000000001 -0.170201030000000003 0.494768619999999992 133 0 129 4 1.90349860000000004 155.679993 0.322678557898133989 2.0100660367999299 31 true 2.07063079999999999 1.59279078824409992 0.0312028856124745013 0.189992140000000004 15 8 0.244173659999999987 0 15 false 128 2762.83721808442988 4.84570735306953981 570.161987 17.0849779999999996 14 1442.92714887992997 24.654592124991499 58.5256960000000035 17.453278000000001 12 1985.50791201006996 22.2056316879985012 89.4146099999999961 16.517240000000001 1.2409110000000001 0 0.936037059999999976 0.368299480000000012 0.567737599999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.611114048144998 -63.1781792097113026 22.6693013626872002 -13.0629917237436004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185564469208448 2481185564469208448 496032543 2015.5 25.8091106360304003 1.47586140258116005 -3.36734907630476998 1.69561089096486994 \N \N \N \N \N \N \N -0.332572499999999993 \N \N \N \N \N \N \N \N \N 81 0 81 0 -0.35761156999999999 71.0365982 0 0 3 false 0.0244722659999999995 \N \N 0.0502089930000000004 10 8 4.31084629999999969 0 10 false 85 92.2053493371801949 1.6029930658037399 57.5206985 20.7764759999999988 6 50.6573352392667999 10.8793613643267992 4.65627860000000027 21.0897830000000006 7 62.9946341593398031 8.93710437290656934 7.04866270000000039 20.2636600000000016 1.23259629999999998 0 0.826122299999999976 0.313306799999999996 0.51281549999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.685886914008989 -63.2067901652562014 22.6707975871891989 -13.1071917969204002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185839347023488 2481185839347023488 1532437102 2015.5 25.8023743199441 0.249883175799551993 -3.34717463598631015 0.16890686855571399 1.90218828935717998 0.349307147410120977 5.44560400000000033 56.0266703435508973 0.348820845780288991 -4.69523911447402043 0.261858648221927004 -0.243257610000000013 0.718164559999999952 0.0643766149999999981 0.163036380000000009 -0.534491099999999997 0.116302299999999997 0.131207450000000003 0.0102640119999999994 0.104269100000000003 0.306564930000000013 142 0 142 0 1.2193141999999999 157.457993 0.328383474232747996 0.604960572337436053 31 false 0.653238949999999985 1.30578338568323993 0.0494025148075917034 0.0607222020000000029 16 9 0.341147780000000012 0 16 false 139 897.754323524561983 2.17696694548960989 412.388 18.3054710000000007 14 222.014982653504006 8.42590169923438026 26.349105999999999 19.4854319999999994 15 1085.79512404913999 19.5021865144213002 55.6755599999999973 17.1725500000000011 1.45675719999999997 0 2.31288150000000003 1.17996030000000007 1.13292119999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.652723704943014 -63.191669323410899 22.6719925221159002 -13.0859579603131007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185598828853248 2481185598828853248 1671757923 2015.5 25.8231072419510994 0.686912566456515994 -3.35885504703038018 0.510148119110807041 1.21790074952228 1.02629533771979009 1.18669620000000009 1.62124820563722993 0.97863478141554705 -10.7057031554850006 0.720249585975591966 -0.282545150000000023 0.701946700000000035 0.0566556340000000033 0.162427139999999998 -0.616672749999999992 0.178212499999999996 0.186810959999999998 -0.040474083000000001 0.0565268900000000032 0.336220320000000017 140 0 140 0 1.88385420000000003 167.610001 1.3681686503074999 1.60265887554354003 31 false 0.0843174700000000055 1.48567541307560003 0.137643322939657003 0.0709239239999999993 16 9 0.968324069999999981 0 16 false 139 237.256350068258996 1.57356958579442008 150.776001 19.7503199999999985 12 174.198512524438996 28.0008030489100008 6.22119700000000009 19.7487770000000005 14 186.927615963197013 8.81035103786003937 21.216818 19.0827370000000016 1.52209259999999991 0 0.666040399999999977 -0.00154304500000000005 0.667583469999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.705338592013987 -63.1929894353820032 22.6873453748175002 -13.1044297066022999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185667548803968 2481185667548803968 926294477 2015.5 25.8241206162464003 1.29728081109806004 -3.35056770161566009 2.14832879362093987 \N \N \N \N \N \N \N -0.0883007299999999939 \N \N \N \N \N \N \N \N \N 105 0 104 1 3.16614059999999986 149.688995 3.73043177160649986 2.54850642159669016 3 false 0.0174628200000000004 \N \N 0.196532160000000011 12 8 6.14394799999999996 0 12 false 104 94.8726078748687058 1.40559910070836991 67.4962006 20.745514 5 63.794709998947198 38.3920828227414006 1.66166320000000001 20.8394259999999996 10 188.913664039805013 13.5912632495354995 13.8996399999999998 19.0712620000000008 2.66366000000000014 0 1.76816369999999989 0.0939121249999999991 1.67425160000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.699216518213007 -63.1851104473724021 22.6914393436904014 -13.0970945837645001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185981081408512 2481185981081408512 1200977593 2015.5 25.8329402192271012 3.30034294838017983 -3.34641544055573981 3.0048350185112902 \N \N \N \N \N \N \N 0.117166450000000005 \N \N \N \N \N \N \N \N \N 117 0 116 1 30.5510249999999992 1468.23999 19.3787605660466014 87.4059234022873 3 false 0.00239649230000000017 \N \N 0.152932089999999993 14 9 8.17253200000000035 0 14 false 122 130.712755759416012 2.05515421507968998 63.6024017 20.3975720000000003 9 169.706456021499008 10.2565930783389003 16.5460850000000015 19.7771420000000013 11 368.829199887699986 10.9114171771532007 33.8021349999999998 18.3448560000000001 4.11999300000000002 0 1.43228529999999998 -0.620430000000000037 2.05271530000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.712640562207014 -63.1774894251797008 22.7014132364502004 -13.0964696150013999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190409192233216 2481190409192233216 958817443 2015.5 25.7623430441182002 0.168710001607430993 -3.27414098125588016 0.149011824663551007 1.89664361448542995 0.214597782997172998 8.83813199999999988 3.37191945903960999 0.342511434198765008 9.26499342496238043 0.256552133572178986 0.199151749999999989 0.36267197000000001 0.0402911379999999972 0.190640670000000012 -0.300655630000000007 0.239164640000000012 0.302030980000000004 -0.0846781300000000042 -0.000507997699999999963 0.344696669999999983 158 0 156 2 3.54151250000000006 220.425995 0.621592574154856026 3.22301026199304985 31 false 0.71328676000000002 1.3140160220755801 0.0411720212753124981 0.146876200000000012 18 10 0.324207929999999978 0 18 false 155 1254.90362203554992 2.59563471253648981 483.46701 17.9418399999999991 16 335.187593620461996 12.5389244000222 26.7317660000000004 19.0381679999999989 16 1443.67150307574002 8.33011415353644047 173.307530000000014 16.8632489999999997 1.41752649999999991 0 2.17491909999999988 1.09632869999999993 1.07859039999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.501911606937 -63.1437417032167971 22.6614061636485999 -13.0033461472322998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185873706763392 2481185873706763392 317191868 2015.5 25.8088381113557013 0.0623570746171156001 -3.33472017430548018 0.0484344951809378005 1.8225268269811199 0.0784986880478809046 23.2172899999999984 9.87925139770569949 0.111793265541045003 -1.97139410016623007 0.0945219897949182986 0.00738899970000000007 0.529785300000000015 -0.0276978540000000009 0.0989659100000000042 -0.305835960000000018 0.0783983399999999969 0.000727804550000000052 -0.00478127400000000029 0.0712944640000000018 0.306640499999999983 139 0 139 0 -0.510111599999999998 125.182999 0 0 31 false 7.64929680000000012 1.45398294118849991 0.0151597307672110999 0.0655897200000000041 16 10 0.109971434000000007 0 16 false 137 6699.62617084471003 5.47763204511861002 1223.08997 16.1232399999999991 15 2356.71733960426991 8.07100455917444037 291.998019999999997 16.9206199999999995 15 6329.67246934432023 12.7922396194451 494.805659999999989 15.2584669999999996 1.2965485000000001 0 1.66215320000000011 0.797380450000000018 0.864772800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.653352307191994 -63.1776453473913975 22.6828541433736 -13.0767481273613999 100001 4213 4094.17993 4298.52979 0.444999993 0.0540000014 0.666100025 0.167300001 0.0103000002 0.299299985 200111 0.642111899999999958 0.616813999999999973 0.679923060000000024 0.117025900000000002 0.106487095000000004 0.127564700000000003 +1635721458409799680 Gaia DR2 2481186045506791168 2481186045506791168 363338569 2015.5 25.8304349611115001 5.03233677032651983 -3.33941199753284002 4.85282198373217977 \N \N \N \N \N \N \N -0.582497950000000042 \N \N \N \N \N \N \N \N \N 41 0 40 1 0.172661449999999994 35.783699 0 0 3 false 0.0156740339999999999 \N \N 0.194664659999999989 5 4 7079.10900000000038 0 5 false 42 64.2839623377695943 2.35047465003331979 27.3493996 21.1681099999999986 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.700800437900995 -63.1723169264109998 22.7016683342304013 -13.0890371554007992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186251663885312 2481186251663885312 1637659471 2015.5 25.8220537381898012 0.157366859716494001 -3.33496535895325996 0.120851965115773993 1.29345277540126991 0.209020566754350989 6.18816040000000012 -1.08514639937117008 0.275704438809962982 1.85406106302115004 0.206842669002278989 -0.00768744200000000006 0.541791739999999966 0.0245380159999999993 0.147910220000000009 -0.386655570000000004 0.134604449999999987 0.149610460000000001 -0.0151575049999999999 0.0834103300000000047 0.302234200000000008 152 0 151 1 1.57354620000000001 173.822998 0.145217738563727994 0.194726263633973995 31 false 1.04761949999999993 1.37238691199436991 0.0367708177166835015 0.095274600000000001 17 10 0.255825970000000014 0 17 false 147 1277.24040749609003 2.08786462986318 611.744995 17.9226840000000003 15 389.72027061060902 10.7471675982263992 36.2626040000000032 18.8745060000000002 16 1347.60798227349005 10.8581855525213999 124.109870000000001 16.9380109999999995 1.3602202000000001 0 1.93649479999999996 0.95182230000000001 0.98467254999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.679815116252996 -63.1720316200567993 22.6953578069396009 -13.0818261941357008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186187239777792 2481186187239777792 1448542713 2015.5 25.8406984782515998 0.0371415605085793979 -3.32227562848078017 0.0326698141614370011 0.50587901192356699 0.0429424500082467991 11.7803950000000004 -5.28115867134197003 0.076312760596863205 -9.22298433133985007 0.0645899636248351977 0.281848370000000015 0.38281807000000001 -0.13535641000000001 0.0830334100000000019 -0.0985097499999999932 0.0721149999999999985 -0.0199030169999999985 0.066866670000000003 0.0778591000000000005 0.36646709999999999 143 0 142 1 -1.32159260000000001 115.670998 0 0 31 true 22.0952359999999999 1.54379967514194005 0.0108051916016072003 0.128456120000000007 16 10 0.0825093759999999954 0 17 false 137 18640.7475301757986 7.85440728099720964 2373.29004 15.0122070000000001 17 9156.92753103417999 17.4812786702696989 523.813350000000014 15.4470139999999994 17 13737.277131756 20.9039097579223991 657.163000000000011 14.4171689999999995 1.22818059999999996 0 1.02984520000000002 0.434806819999999983 0.595038399999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.704349360323988 -63.1524153624504976 22.7179176893002008 -13.0768664057098007 100001 5307 5041.60986 5557.83008 \N \N \N \N \N \N 200111 2.0522990000000001 1.8712314000000001 2.27405169999999979 3.0100403 2.43472860000000013 3.58535199999999987 +1635721458409799680 Gaia DR2 2481166597893540992 2481166597893540992 641954929 2015.5 25.665763274010299 0.177347333993664008 -3.30961497166721985 0.119426242648304995 1.07826360906442997 0.218315840381407 4.93900779999999973 6.71729440246545018 0.307313546116497027 2.13344044432626978 0.211814764698223995 -0.0242466130000000002 0.551416200000000023 0.146300960000000008 0.107917639999999995 -0.255899900000000013 -0.0237502059999999994 0.072033410000000006 0.0164832100000000016 0.212104979999999999 0.144959090000000013 148 0 147 1 0.296569230000000017 146.375 0 0 31 false 0.890778359999999991 1.4122226916513001 0.038447924436383403 0.0195165630000000007 17 10 0.276472569999999973 0 17 false 146 1144.56208215152992 2.21450684442502999 516.846985 18.0417670000000001 14 371.886256794819985 11.0948465402539007 33.5188300000000012 18.9253639999999983 13 1184.14148446288004 8.44190526775945926 140.269450000000006 17.0784109999999991 1.3594961000000001 0 1.84695239999999994 0.883596399999999949 0.96335599999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.344387126002005 -63.2179318970251032 22.5559944914047001 -13.0008684547859996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166602188896128 2481166602188896128 1556784141 2015.5 25.6703416725192 0.478458581759669987 -3.31009142315321991 0.328403158753612978 0.677652562220932952 0.622134826012364028 1.08923750000000008 5.72395644993399966 0.828824806093052979 -5.93801794780318026 0.553512336532637983 -0.0186563530000000005 0.548271240000000049 0.158246140000000007 0.141037990000000002 -0.294038399999999978 -0.0292781400000000011 0.0929214800000000007 0.042469396999999999 0.261769699999999994 0.145873300000000011 143 0 142 1 6.92899799999999999 285.591003 1.78722495209029009 5.51768438955128993 31 false 0.124623609999999996 1.13177804609287991 0.0996622187015653999 0.0531141529999999973 17 10 0.744383400000000028 0 17 false 141 418.098965983667995 1.96499194208993999 212.774002 19.1351680000000002 13 107.087270771399005 16.9886961569632007 6.30344250000000006 20.2770440000000001 11 525.168333752159015 5.46467432295576039 96.1024000000000029 17.9611739999999998 1.51221509999999992 0 2.31587029999999983 1.14187620000000001 1.17399410000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.353969519885993 -63.2163588822986 22.5601764824380986 -13.0029933247006007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166632253280768 2481166632253280768 82639251 2015.5 25.6693444774742012 0.0617608282095424982 -3.30099962086482979 0.0468206520357858993 1.18585429901845996 0.0765317091880192979 15.4949410000000007 -5.53876125198476998 0.107560167546633001 -14.8626822898872994 0.0938210113907319981 0.0335789839999999992 0.57787347 0.0290268680000000008 0.0333377160000000033 -0.219729499999999994 -0.0903971499999999956 -0.0608543900000000013 0.0571458899999999978 0.163089630000000013 0.226678939999999995 139 0 138 1 -1.18918900000000005 113.93 0 0 31 false 7.67293930000000035 1.52458647428384997 0.0152071304013265997 0.0717014150000000045 16 10 0.104613600000000001 0 16 false 134 6834.35588903995995 4.1974961922486802 1628.19995 16.101621999999999 14 3003.98104220415007 17.5098003531080018 171.559979999999996 16.6571449999999999 14 5480.63977335104028 13.1458155374170005 416.911350000000027 15.4148420000000002 1.24146599999999996 0 1.2423029000000001 0.555522900000000042 0.686779999999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.343150609042993 -63.2086208222788031 22.5626597174752987 -12.9941730368002002 100001 4978.7002 4787.3501 5127 0.0280000009 0 0.210999995 0.0120000001 0 0.0939999968 200111 0.620201349999999985 0.584841300000000008 0.670772400000000046 0.212923720000000011 0.184135059999999989 0.241712380000000004 +1635721458409799680 Gaia DR2 2481190168674152192 2481190168674152192 1314619763 2015.5 25.6733697135721997 0.862393446977485989 -3.29101721766781008 0.583305571512035992 0.42541294718884598 1.17902531481007 0.360817500000000013 2.29458747452230005 1.3784225028524999 -10.5987049755522005 0.942731259979174951 -0.122062290000000004 0.617661299999999969 0.218409170000000014 0.170041770000000009 -0.395400320000000027 -0.0658304200000000006 0.0538383760000000003 0.0872856749999999931 0.295874179999999987 0.158881720000000004 129 0 129 0 2.79921050000000005 172.679001 0.99041235656786597 0.427732939336803009 31 false 0.0477808639999999993 1.31735095063586005 0.181171639224131986 0.0443606500000000015 15 9 1.28787220000000002 0 15 false 127 155.60011270516199 1.63336379272836996 95.2636032 20.2083419999999983 10 30.2346381014158005 9.19968285788402085 3.28648700000000016 21.6501260000000002 13 195.97925499934999 10.3774618363190996 18.8850860000000011 19.0313949999999998 1.45381570000000004 0 2.61873049999999985 1.4417838999999999 1.17694659999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.341471771388996 -63.1978865549478002 22.5702638326654998 -12.9863694181719005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481189206601387904 2481189206601387904 996392271 2015.5 25.7449246008298012 0.293323537385824007 -3.3041682753087902 0.222524576630985987 1.47796888968861007 0.394907669743191025 3.74256829999999985 -11.0426156567204004 0.49440268446684299 -4.18579039370470962 0.367939665611843991 -0.00889672399999999995 0.568722069999999968 0.067570955000000002 0.175085220000000014 -0.392934620000000012 0.153347519999999987 0.169894669999999998 -0.0202798819999999991 0.101024080000000002 0.310273699999999986 149 0 148 1 0.626604700000000014 153.162003 0.319797855640113982 0.293586022661783019 31 false 0.315801529999999997 1.26942047070739994 0.0643328911451500063 0.111101569999999997 17 10 0.458838299999999977 0 17 false 145 532.319154685770968 1.58170015931086994 336.549011 18.8729359999999993 14 123.256255540753003 9.96237440475482927 12.3721759999999996 20.1243650000000009 15 676.466979227633033 11.8767823893922007 56.9570920000000029 17.6863039999999998 1.50233789999999989 0 2.43806080000000014 1.25142859999999989 1.18663220000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.496577298593991 -63.1783573297798995 22.6334759785822008 -13.0248753357042002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190001170735488 2481190001170735488 195136317 2015.5 25.7473922357467018 7.55891416863487997 -3.28756855406244997 4.86366322386320959 \N \N \N \N \N \N \N -0.288380740000000024 \N \N \N \N \N \N \N \N \N 42 0 42 0 43.9253160000000022 3147.81006 17.8779065164684994 246.262743476624991 3 false 0.00297049039999999981 \N \N -0.198490470000000002 8 6 18.0410420000000009 0 9 true 72 392.02767755331098 7.95843404345385963 49.2593994 19.2050739999999998 6 681.691785935951998 79.7159102751677011 8.5515150000000002 18.2674179999999993 6 1238.10910941297993 16.5773032570300991 74.6870040000000017 17.0300240000000009 4.89710570000000001 0 1.23739430000000006 -0.937656399999999945 2.17505069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.485305007231005 -63.1623655852243999 22.6420927182805016 -13.0103447187797006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190374832494976 2481190374832494976 1107049934 2015.5 25.7519606029887989 0.321106818920317005 -3.27290309333849017 0.269220709245181988 0.13789524161602601 0.412791328276430003 0.334055570000000024 0.545920348686336987 0.637034031062231998 1.40084472737596011 0.465824051577725995 0.143010570000000004 0.38337156 0.0323995580000000019 0.16530721000000001 -0.317310419999999982 0.17941298 0.192067900000000014 -0.0511543559999999981 0.062235730000000003 0.314030230000000021 159 0 158 1 3.09830400000000017 213.016998 0.797862880952743048 1.26683952390868004 31 true 0.193419549999999996 1.72364187429057991 0.0796583855209850034 0.136224580000000012 18 10 0.588856399999999947 3 18 false 155 435.111945001975982 1.66172596427727992 261.842987 19.0918640000000011 15 277.267698131249006 7.59187261355889031 36.5216500000000011 19.2441400000000016 15 409.905768737768994 13.2449174073855005 30.9481560000000009 18.2302099999999996 1.57930269999999995 0 1.01393130000000009 0.152276999999999996 0.861654299999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.48009807254499 -63.147188348798899 22.6519802732896984 -12.9983837804802995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377841567335424 2481377841567335424 137405535 2015.5 25.6703894787553999 1.62199435444402007 -3.27392607160870019 1.80071597082758994 \N \N \N \N \N \N \N -0.274687740000000014 \N \N \N \N \N \N \N \N \N 107 0 106 1 0.0067403430000000002 100.43 0 0 3 false 0.0193960869999999994 \N \N 0.080194689999999999 13 8 4.59997939999999961 0 13 false 107 90.1920005813783945 1.53040409640735997 58.9334984 20.8004460000000009 6 22.1458439314334008 5.78399030454507024 3.82881759999999982 21.9881570000000011 10 131.050316422994001 12.3213706321089997 10.636018 19.4683250000000001 1.69855599999999995 0 2.51983259999999998 1.18771169999999993 1.33212090000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.31895764455399 -63.1838206491406993 22.5738774786379004 -12.9693823612249997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481189172241650048 2481189172241650048 603344925 2015.5 25.7657461205707996 0.592140183448198965 -3.30049493340295985 0.443264336465540976 2.81236196891225987 0.784317541193250034 3.58574409999999988 -4.51491436085795961 0.980646966970910028 -13.3848965273821001 0.718167527069918044 0.0182306820000000015 0.580083670000000051 0.0324387959999999989 0.196058840000000012 -0.344775529999999997 0.189023300000000005 0.239348200000000011 -0.012841 0.0921812199999999943 0.294811370000000017 146 0 142 4 7.53566900000000039 302.294006 2.1820034595823099 6.35839385245351973 31 false 0.0817590950000000039 1.68061154877213004 0.125433720916054009 0.101371124000000007 17 10 0.904809599999999992 0 17 false 137 308.378082492296016 1.77034479841837999 174.190994 19.4656559999999992 14 101.898570488793993 13.0086015066284997 7.8331685000000002 20.3309689999999996 14 360.45742926556602 8.10633407614886004 44.4661449999999974 18.3697850000000003 1.49931539999999996 0 1.96118349999999997 0.865312599999999987 1.09587100000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.534353465978995 -63.1659103142762035 22.6547035723265004 -13.0291032398029003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481189550198772480 2481189550198772480 569473809 2015.5 25.7761031161946015 0.149020056184874988 -3.3005489386234399 0.131112237314979008 0.362943404559512017 0.190028754572329012 1.90993940000000006 9.59616277393126005 0.303036274881024026 -17.7635891335695 0.264038350048651005 0.163728099999999988 0.395322139999999989 0.00383620480000000002 0.0846425739999999982 -0.28736552999999998 0.0752003799999999972 -0.0165535769999999999 -0.03651364 0.0630273600000000045 0.386738059999999995 149 0 149 0 -1.13349900000000003 125 0 0 31 false 0.89693350000000005 1.53462395566433996 0.0386619418432187015 0.156433509999999998 17 10 0.29783204000000002 0 17 false 149 1152.3277735428801 2.41425520209892008 477.302002 18.0344259999999998 12 578.809860947602033 9.89050173950112921 58.5217900000000029 18.4450499999999984 15 871.707046796101963 11.1232543536644002 78.367990000000006 17.4109939999999987 1.25877109999999992 0 1.03405569999999991 0.410623550000000004 0.623432160000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.554968135131986 -63.1614040554241001 22.6645528811016987 -13.0329552302757001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481189584558360832 2481189584558360832 581744007 2015.5 25.7806274316432003 0.0271775560400127 -3.28340999699454006 0.0259637902223943985 0.615915906351289011 0.0338452988841463007 18.1979749999999996 -5.79639404344880038 0.0567684167213800966 -22.8350990273929995 0.0616108368728068984 0.250822129999999976 0.437902330000000006 -0.0886380100000000032 -0.0408264200000000022 -0.204503180000000007 -0.0905714600000000064 -0.254731920000000001 -0.00866554999999999929 0.0401180199999999973 0.515856699999999946 148 0 147 1 2.24139260000000018 182.432007 0.0809175589581661997 1.19541340818130992 31 false 49.5862580000000008 1.66000199916353997 0.00791725091206373077 0.158750040000000009 17 10 0.0758392700000000003 0 17 false 147 61313.3030437881025 20.2661600052171984 3025.3999 13.7194789999999998 16 37669.8608347979971 42.4957241682287972 886.438840000000027 13.911403 15 35608.264937839398 40.2835631373290965 883.940299999999979 13.3830430000000007 1.19514239999999994 0 0.528359400000000035 0.191924099999999986 0.336435319999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.547226123017992 -63.1440281976865023 22.6753319052501006 -13.0186772651747003 100001 7211.02979 6998 7510 0.71329999 0.459199995 1.04709995 0.333999991 0.213300005 0.519299984 200111 1.60890010000000006 1.48335060000000007 1.70834590000000008 6.30582759999999976 5.48818099999999998 7.12347399999999986 +1635721458409799680 Gaia DR2 2481189691933089792 2481189691933089792 771799576 2015.5 25.7941087495732013 0.085470992259813805 -3.27622921807247991 0.0747472027088512958 0.204010466846360011 0.109035980766639007 1.87103810000000004 5.31352537852886986 0.176129027205634003 -11.3059303190256006 0.139439307405037988 0.179212530000000009 0.352206799999999987 -0.0135595319999999991 0.110840850000000005 -0.286200200000000016 0.0980724899999999983 0.0756193849999999973 -0.0122272400000000003 0.0871160799999999985 0.332755630000000024 154 0 152 2 0.00831355599999999972 146.477005 0 0 31 false 2.79123639999999984 1.65725535748055997 0.0225993141862028991 0.151337859999999991 18 10 0.16873689 0 18 false 152 2873.33527057643005 3.23653151065964018 887.781982 17.0424000000000007 16 1677.77412496440002 9.76352880874548035 171.840959999999995 17.289555 13 1802.27876435481994 12.6425910673860002 142.556119999999993 16.6223659999999995 1.21115449999999991 0 0.667188639999999999 0.247154239999999997 0.420034399999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.566962217576986 -63.1316512104341001 22.6908882523942985 -13.0169470630569002 100001 6264 5990 6620.5 0.283499986 0.105300002 0.398999989 0.143999994 0.0649000034 0.208299994 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186320383454208 2481186320383454208 1662109592 2015.5 25.8074323641510013 0.937919801944009035 -3.31887003281507997 1.12062070191959995 0.890922433531275981 1.3659070744061601 0.652256970000000047 0.79156566771390402 2.37783808691724019 0.337608768784655011 3.00863093942736004 0.0754566299999999968 0.377096560000000025 0.0429243070000000018 0.0431417259999999983 -0.523688299999999995 -0.276442560000000004 -0.514082970000000028 0.0592737529999999985 0.209257689999999996 0.71065109999999998 128 0 127 1 -0.453933030000000015 114.405998 0 0 31 false 0.0254019389999999984 1.89526452989967997 0.299720834709585993 0.182317499999999993 15 9 3.17586039999999992 0 15 false 128 106.801844703040004 1.27625648636521993 83.6837006 20.6169189999999993 12 75.3498403314274015 10.3659898833121993 7.26894799999999996 20.6586819999999989 13 73.7222521573934984 10.8357454988615007 6.80361599999999989 20.092924 1.39578200000000008 0 0.565757749999999948 0.041763306 0.523994450000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.635045301409008 -63.1640465593403988 22.6874961618499 -13.0614919825668991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186324678731008 2481186324678731008 1619187604 2015.5 25.8085106569238008 0.044921741673031701 -3.31618372863930011 0.0398579992583025025 1.94709381235416989 0.0562135660738704995 34.637436000000001 10.2256534293466999 0.0929370699705018982 11.5196421869805992 0.0820011074386331057 0.192195300000000013 0.384102759999999988 -0.0277510839999999988 0.0654826099999999967 -0.245963299999999996 0.0602669830000000031 -0.0133697309999999993 -0.0280717740000000007 0.0512005050000000003 0.382565949999999988 160 0 159 1 1.31951360000000006 177.602997 0.0762730392236384003 0.422430161875545995 31 true 10.7916109999999996 1.4840006845887499 0.0125707639102866 0.131723200000000012 18 10 0.0981754499999999974 0 18 false 155 9897.77040661674073 6.83765573586537023 1447.54004 15.699522 17 3762.33460482148985 16.9448362489738997 222.034289999999999 16.412745000000001 16 8974.80216378411933 17.9785500667670988 499.194999999999993 14.8793570000000006 1.28686929999999999 0 1.53338719999999995 0.713222499999999981 0.820164699999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.634556091426987 -63.1611610311288985 22.6895375945029016 -13.0593895028543994 100001 4311.5498 4190.10986 4447.33008 0.421999991 0.0939000025 0.575999975 0.215000004 0.0829999968 0.281699985 200111 0.679930299999999987 0.639047000000000032 0.719915300000000036 0.143932599999999994 0.134945719999999991 0.152919470000000002 +1635721458409799680 Gaia DR2 2481186359038469504 2481186359038469504 754191215 2015.5 25.8166462126961989 0.136205784173687006 -3.31792660174760012 0.123400017142095003 4.55806745101641031 0.184579831219998991 24.6942880000000002 22.2135615971935003 0.276984050153002981 -19.1207504517332012 0.212339675430844005 0.167046009999999995 0.338011000000000006 -0.0114964850000000007 0.12897053 -0.368307200000000001 0.0670934700000000023 0.0648155499999999996 0.0476858000000000004 0.158485340000000002 0.330665619999999993 150 0 149 1 3.58215050000000002 212.880997 0.529820975394390992 3.45561595491362006 31 true 1.09008539999999998 1.22957023838809998 0.0349415861074963974 0.181587799999999994 17 9 0.259662569999999981 0 18 false 147 1732.39056313551009 2.64636103523449995 654.630981 17.5917509999999986 17 337.761024680026026 13.5864583547808007 24.8601230000000015 19.0298650000000009 16 2221.44523114000003 10.0150313980802004 221.811110000000014 16.3953300000000013 1.47726869999999999 0 2.63453479999999995 1.43811420000000001 1.1964207 \N \N 0 \N \N \N NOT_AVAILABLE 152.652399309009013 -63.1591358838470001 22.6966337788098009 -13.0639959580151004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481189412761140224 2481189412761140224 1618112583 2015.5 25.8222960740866014 1.75597388806460009 -3.29870977307375002 1.71303916288482005 -1.46221614686533008 2.21006092902671991 -0.661618049999999958 8.33533674380317002 3.57201234808453982 -12.3910970605717008 4.42594965614316038 -0.123048774999999999 0.448739769999999982 0.167916659999999995 0.0706383500000000025 -0.461389480000000018 -0.210936769999999996 -0.463266220000000006 0.0216112039999999984 0.21189464999999999 0.461706600000000023 77 0 75 2 1.70719599999999994 91.4064026 4.29626410784439994 2.32745259513164982 31 false 0.0128574039999999994 \N \N 0.0132378640000000002 9 8 4.40333899999999989 0 9 false 77 86.1148298994273063 1.55087354976934999 55.5266991 20.8506719999999994 6 44.0550447928362985 13.8400392454266008 3.18315890000000001 21.2413999999999987 7 108.157594355661004 9.14846042932870063 11.8224920000000004 19.6767770000000013 1.76755430000000002 0 1.56462290000000004 0.39072800000000002 1.17389490000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.644799964517006 -63.1394046924886965 22.7092695263863007 -13.0481976334995995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186427757945344 2481186427757945344 1323043687 2015.5 25.8427153820476008 3.09554490333360999 -3.30107733056751984 2.37452898135884016 \N \N \N \N \N \N \N 0.0130658570000000002 \N \N \N \N \N \N \N \N \N 110 0 109 1 41.4087000000000032 2568.02002 17.4516487729550001 142.52315335694999 3 false 0.00302059459999999991 \N \N 0.0303703919999999995 15 9 5.97076459999999987 0 15 true 131 222.706422671848003 6.35747969538333013 35.0306015 19.8190349999999995 14 243.574256802640008 10.9008704848120992 22.3444770000000013 19.3848100000000017 14 562.925839345473037 14.4985695140650002 38.8263000000000034 17.8857919999999986 3.62135980000000002 0 1.49901770000000001 -0.434225079999999986 1.93324279999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.68758034947399 -63.1325148732390034 22.7278379289136012 -13.0578916393144002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481189447119557888 2481189447119557888 1685355084 2015.5 25.8203808093722991 0.696517116883780041 -3.28581241201526009 0.60506033752189603 1.06173004149852002 0.930907202789529986 1.14053260000000001 -0.750124682017098032 1.40104235697298996 -13.0107042025225006 1.06919158924766999 0.0875905099999999964 0.365160549999999973 0.0118014220000000006 0.167615440000000004 -0.441801730000000004 0.201187630000000006 0.098887119999999995 -0.0688379259999999937 0.0346424099999999985 0.403627159999999985 142 0 139 3 1.05315179999999997 151.266998 0 0 31 false 0.0471210199999999996 1.38670628795073991 0.18769438393277299 0.166562450000000001 16 10 1.33223580000000008 0 16 false 139 152.392354806701007 1.61751804439036007 94.2136993 20.2309570000000001 11 54.348694503728197 9.35572733669553003 5.80913639999999987 21.0134159999999994 15 234.060499809981991 6.14263362334946006 38.1042599999999965 18.8385999999999996 1.89254370000000005 0 2.17481610000000014 0.78245925999999999 1.39235690000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.628396586780013 -63.1286786035618022 22.7123100077698012 -13.0355002203411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186496477256704 2481186496477256704 158073591 2015.5 25.8423583978776996 6.13190743623562007 -3.28949019301049006 10.5417718602963006 \N \N \N \N \N \N \N 0.87816890000000003 \N \N \N \N \N \N \N \N \N 41 0 41 0 -2.13188529999999998 20.3125 0 0 3 false 0.0129206140000000004 \N \N 0.144633079999999997 5 4 14069.4969999999994 0 5 false 45 67.2936214735425011 1.43520692565156005 46.8876991 21.1184310000000011 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.675533583779014 -63.1222807065572979 22.7318687960803985 -13.0469843204009006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190512271448832 2481190512271448832 981870537 2015.5 25.7758703270004013 0.719771386430926974 -3.2601692187721798 0.589732825287979989 0.916300958518006969 0.934579702945332991 0.980441750000000001 26.7806181490065001 1.41646060004061991 -6.49013670590014957 0.987389686170227043 0.0536999439999999995 0.393470260000000016 0.0782757800000000031 0.138073730000000006 -0.366339399999999982 0.136458920000000011 0.223611150000000009 -0.0585248299999999999 0.0825309459999999939 0.233643199999999995 148 0 146 2 1.81072830000000007 172.880997 0.966485934262934054 0.406331220476805977 31 false 0.0425405240000000032 0.966419406910092982 0.170437065404097005 0.122850260000000003 17 10 1.27808830000000007 0 17 false 143 154.777054394343992 1.54786044437666992 99.9942017 20.2140999999999984 13 57.5523484180607028 10.9739098578354 5.24447059999999965 20.9512309999999999 14 225.812762088759001 12.1918505317899992 18.5216160000000016 18.8775480000000009 1.8307952999999999 0 2.07368279999999983 0.737131100000000039 1.33655170000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.515144952637996 -63.1252527507230994 22.6795676777115993 -12.9953179585883998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190963243409152 2481190963243409152 1186856819 2015.5 25.8421777654066993 0.0497473894241423978 -3.2652848362934499 0.0439630226473542024 0.933691493954739049 0.061109514394329198 15.2789870000000008 12.0417007030691998 0.103111970033271994 3.37529781909658011 0.0931549355804631024 0.201155570000000006 0.387041750000000018 -0.0460273000000000002 0.0484213400000000002 -0.212020049999999988 0.0344598299999999969 -0.0796572100000000061 -0.0200159440000000008 0.0529109499999999983 0.391349999999999976 151 0 149 2 -0.202844980000000008 139.929993 0 0 31 false 8.88926299999999969 1.57868519163286991 0.0151737115561255999 0.146246579999999987 17 10 0.109070780000000006 0 17 false 149 7782.61010710423034 5.78345092669109029 1345.67004 15.9605519999999999 15 3840.1564949481899 12.4796349805644997 307.713840000000005 16.3905160000000016 15 5647.74420332188038 22.0876695337463005 255.696699999999993 15.3822329999999994 1.21911550000000002 0 1.00828359999999995 0.429964069999999976 0.578319550000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.651514044973993 -63.1006490779340012 22.7408266151774008 -13.0244061950007008 100001 5286.25 5175 5413.25 0.00800000038 0.00400000019 0.0439000018 0.00499999989 0.00230000005 0.0149999997 200111 0.725191200000000036 0.69156295000000001 0.75670599999999999 0.369990439999999976 0.318142499999999995 0.421838370000000018 +1635721458409799680 Gaia DR2 2481172748287001984 2481172748287001984 676340015 2015.5 25.8896774112436994 0.709844363571087045 -3.40220438740329012 0.463788422120767985 0.456902336427286004 0.82240010470602698 0.555571849999999978 12.9298456136474993 1.23849637357268993 -12.1997434038727999 0.908495816838452042 -0.0913188999999999945 0.544901500000000039 0.104341954000000001 0.0900832300000000002 -0.321051660000000016 0.110375374999999998 0.0684873240000000022 -0.100440650000000006 0.0113237519999999994 0.248300340000000008 149 0 148 1 1.72699800000000003 173.479996 0.756535432546202036 0.299285968474928998 31 false 0.0557333269999999992 1.13874143293776009 0.151482015027254002 -0.0048245136000000001 17 10 1.12571920000000003 0 17 false 149 163.762371814689999 1.30899333257061001 125.106003 20.1528300000000016 12 73.715050140547504 8.59420194315418051 8.57729999999999926 20.6824970000000015 12 127.072608816168 9.35236897817618029 13.5872109999999999 19.5017910000000008 1.22609149999999989 0 1.18070600000000003 0.529666900000000052 0.651039099999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.880074522797003 -63.2023353529597003 22.7344459900985001 -13.1691712704617991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481184739836761856 2481184739836761856 670010062 2015.5 25.8476993121138001 2.08675847964769012 -3.38894042646637006 7.65824648591550972 \N \N \N \N \N \N \N -0.288706269999999987 \N \N \N \N \N \N \N \N \N 85 0 83 2 2.95564220000000022 120.154999 4.34590308230333022 3.07231073740608984 3 false 0.0150440469999999996 \N \N 0.107198500000000002 10 6 106.901725999999996 0 10 false 83 89.5221257498215977 1.64512472925295006 54.4165993 20.8085400000000007 4 36.0262809805648985 5.03976570537605983 7.1484040000000002 21.4598389999999988 7 132.611998497020011 10.7777612665275004 12.3042250000000006 19.4554630000000017 1.88376089999999996 0 2.00437550000000009 0.651298500000000002 1.35307690000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.783724594715011 -63.2090767998822969 22.6994314377637991 -13.1414332487997996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481184568037005184 2481184568037005184 1677673009 2015.5 25.8624008767645996 0.867090849179330991 -3.38984187350575006 0.795018154984702963 -0.615825670653385004 1.30287964143734003 -0.472665039999999981 -0.182450361216992013 1.72642062454161005 -0.750113133871461946 1.56436899689600994 -0.0829039139999999952 0.47911933000000001 0.120415634999999993 0.140188919999999995 -0.59329206000000001 0.106664170000000003 -0.102925903999999999 -0.123775800000000005 0.0547112930000000011 0.522149439999999965 123 0 122 1 -1.66409969999999996 92.7733994 0 0 31 false 0.038435223999999997 2.09770512475845994 0.248027307583008005 0.0899623299999999931 14 10 1.79019639999999991 0 14 false 122 131.154612886306012 1.54650785024908011 84.8069 20.3939079999999997 9 91.7171026481916982 9.89246622593246983 9.27140900000000023 20.4452630000000006 11 102.001343219269998 8.88247924673775913 11.4834320000000005 19.7404060000000001 1.47702350000000004 0 0.704856900000000008 0.0513553620000000016 0.653501499999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.813784308326007 -63.2033687750422999 22.7131067334269012 -13.1476662877246007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185152152563840 2481185152152563840 915573741 2015.5 25.8619292860472001 0.606861724656780011 -3.37260301998718015 0.562611178864016015 0.147599201935670998 0.929102734379519957 0.158862079999999989 -6.16137739631512993 1.03818179491591001 -8.01737889456394015 0.840660374370406971 -0.0112807749999999998 0.540623399999999976 0.108040430000000007 0.21743019999999999 -0.542721299999999962 0.19608856999999999 0.157759199999999988 -0.0311530469999999997 0.0964726499999999931 0.425246500000000027 124 0 124 0 3.11314650000000004 172.921005 0.943364121604055028 0.624362844594273048 31 false 0.0826866200000000023 1.45810211449553995 0.146380634159220008 0.221810580000000007 14 9 1.01897009999999999 0 14 false 123 217.26602230992799 1.46696773240837008 148.106003 19.8458860000000001 10 75.6864071903354017 9.04262130416739041 8.36996300000000026 20.6538429999999984 10 231.658509124396005 9.11901826633637924 25.403887000000001 18.8497999999999983 1.41460180000000002 0 1.80404279999999995 0.807956699999999972 0.996086099999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.795873358156001 -63.1881318297312973 22.7191638279951 -13.1314611276205007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481184980353872768 2481184980353872768 1058346162 2015.5 25.8896618032247012 0.131713400353062005 -3.36886027483333983 0.113674532928400004 0.0939866897975881049 0.167567606516347001 0.560888199999999948 -0.837478905036340038 0.267662151541427973 -2.62176684977112018 0.203636821009223007 0.147815119999999994 0.364631099999999986 0.00339692060000000009 0.145197670000000001 -0.309541940000000015 0.161199330000000002 0.183096869999999995 -0.0411061299999999977 0.0470747239999999983 0.31415860000000001 161 0 160 1 2.80686349999999996 209.042999 0.433592483399472983 2.20159945296588022 31 true 1.11202040000000002 1.64286980250468995 0.0342364025856823975 0.127489490000000011 18 10 0.25078085 0 18 false 160 1628.3930679801399 2.50485686327703982 650.093994 17.6589680000000016 15 940.614201314592947 12.7540226155159999 73.7503999999999991 17.917860000000001 18 1018.03708796332 9.59838212542589986 106.063410000000005 17.2425120000000014 1.20281229999999995 0 0.675348300000000012 0.258892059999999979 0.416456219999999988 \N \N 0 \N \N \N NOT_AVAILABLE 152.847159445957004 -63.1724791473708009 22.7470151200594017 -13.1381546905190998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481173164898937856 2481173164898937856 347237903 2015.5 25.8997275723961984 1.87638826704871997 -3.39018024824983 1.2898538354926099 \N \N \N \N \N \N \N 0.0349533900000000008 \N \N \N \N \N \N \N \N \N 145 0 145 0 53.2685430000000011 4254.77979 11.0480409104570008 221.233539488164013 3 false 0.00773010260000000018 \N \N 0.0344045399999999973 19 10 2.86612700000000009 0 19 false 169 458.399703862426009 8.41042070373796058 54.5037994 19.0352549999999994 16 550.637132366170022 22.8107536963223012 24.139365999999999 18.4992240000000017 16 1198.4199730677401 25.0452040098660014 47.8502769999999984 17.0653970000000008 3.81557199999999996 0 1.43382640000000006 -0.5360317 1.9698582 \N \N 0 \N \N \N NOT_AVAILABLE 152.888127183570987 -63.1871023645153969 22.7485664552461984 -13.1616754643325997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481184915929459456 2481184915929459456 1405289906 2015.5 25.8899623191400003 0.0264287384554410011 -3.37822414903595991 0.0190067698240032994 0.309513412352266981 0.031421876452367499 9.85025199999999934 8.57574303588424058 0.0488181698694526017 -8.19444681362974059 0.0425664768643820995 0.140767780000000009 0.550255950000000049 0.0423597770000000012 0.0393975500000000034 -0.110421580000000005 0.114500925000000003 0.0255037939999999998 -0.161176879999999995 -0.110208294999999998 0.380855999999999972 151 0 150 1 -0.812474499999999988 130.975998 0 0 31 false 111.164599999999993 1.53748762682295004 0.00649011965521602979 0.0110978320000000002 17 10 0.0572409499999999988 0 17 false 148 88664.8434023467998 32.5193224956995977 2726.53003 13.3189869999999999 15 41071.3820176887966 69.6271026317947985 589.876340000000027 13.8175399999999993 14 68041.523451496003 69.5155266084778987 978.796100000000024 12.6799850000000003 1.23062190000000005 0 1.13755509999999993 0.498553279999999988 0.639001849999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.856982829922003 -63.1807328195942972 22.7437680435802001 -13.1469736316901997 100001 5016.5 4920.62012 5229.62988 \N \N \N \N \N \N 200111 8.39584999999999937 7.72545099999999962 8.72622999999999927 40.2186359999999965 30.4204650000000001 50.0168079999999975 +1635721458409799680 Gaia DR2 2481185156447627520 2481185156447627520 963026449 2015.5 25.8592616053951012 0.0855381957435299989 -3.36163156359407012 0.0675331055280063985 0.857437951097426043 0.113244696865389002 7.57155039999999957 7.86990765522882985 0.152049289103735996 -13.8252218693380993 0.124414773018070995 0.0192422720000000012 0.544661799999999974 0.00544942399999999959 0.115015010000000001 -0.36466090000000001 0.103264413999999999 0.0768990699999999999 -0.0139568049999999992 0.068350099999999997 0.346049429999999991 152 0 152 0 0.820336339999999997 160.809998 0 0 31 false 3.60637160000000012 1.51311602210974994 0.0206098960575758008 0.0987711399999999934 17 10 0.14721767999999999 0 17 false 149 3480.38195745585017 3.47607595425691018 1001.23999 16.8342999999999989 15 1581.0719880357201 13.3612832091426998 118.332344000000006 17.3540099999999988 16 2754.78401831810015 14.8833196726349009 185.092039999999997 16.1617010000000008 1.2457990000000001 0 1.19230839999999993 0.519710540000000054 0.672597899999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.779789780268999 -63.1794820627536993 22.7207614004150997 -13.1202788108530992 100001 4918.5498 4829.5 5177.27979 0.0480000004 0.00529999984 0.222299993 0.0130000003 0.00190000003 0.108499996 200111 0.631542900000000018 0.569999999999999951 0.655048249999999999 0.210305180000000008 0.153474660000000013 0.267135699999999976 +1635721458409799680 Gaia DR2 2481186015441086208 2481186015441086208 701757376 2015.5 25.8457488792770995 3.72645150996965002 -3.33597391197513993 4.05712464926492977 \N \N \N \N \N \N \N -0.00112637460000000007 \N \N \N \N \N \N \N \N \N 34 0 34 0 27.6016539999999999 1148.41003 13.3990934301360003 132.918071037420987 3 false 0.00528008700000000015 \N \N 0.143483300000000008 7 6 7.80715800000000026 0 10 true 66 390.467966115262016 7.96681101213440979 49.0117989 19.2094020000000008 6 627.373976718342988 29.5894161326700988 21.2026479999999999 18.3575729999999986 5 1281.36038489697989 13.5646918045574001 94.4629199999999969 16.9927430000000008 4.88832500000000003 0 1.36482999999999999 -0.851829500000000017 2.2166595 \N \N 0 \N \N \N NOT_AVAILABLE 152.727794964626014 -63.1624645711629 22.7175628404186014 -13.0914590079719009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186015441086336 2481186015441086336 62845267 2015.5 25.8509719033464016 0.0318652062786436013 -3.33794417084796979 0.0284280436450241002 1.55345616558548993 0.0395070122348957983 39.3210219999999993 16.5186178677166993 0.065431952669537205 0.365218786372443982 0.0612641281315145989 0.201663000000000009 0.410754100000000011 -0.0588337930000000023 0.0321404080000000023 -0.216633560000000003 0.0138920740000000008 -0.0955140800000000012 -0.0117410645000000004 0.050321552999999998 0.407832799999999995 161 0 160 1 -1.93137160000000008 122.848999 0 0 31 true 25.844297000000001 1.53159815262429011 0.00937994179015150947 0.126695869999999988 18 10 0.0754057100000000008 0 18 false 161 21010.1150370705982 8.32403253696750944 2524.03003 14.8822949999999992 18 9770.9008665263791 24.2148482471523998 403.508669999999995 15.3765520000000002 16 16132.1767279961005 27.285388737592001 591.238650000000007 14.2426870000000001 1.23288609999999998 0 1.13386439999999999 0.494256970000000018 0.639607400000000048 \N \N 0 \N \N \N NOT_AVAILABLE 152.740082458862986 -63.1619205831504971 22.7217980341806012 -13.0952077564594997 100001 4977 4892 5061.6499 0.199000001 0.063699998 0.379799992 0.111299999 0.0302000009 0.187999994 200111 0.830824400000000018 0.80326766000000005 0.85994685000000004 0.381578330000000021 0.359393660000000004 0.403762999999999983 +1635721458409799680 Gaia DR2 2481186011146030592 2481186011146030592 331254817 2015.5 25.8593830659912989 1.46807817995215006 -3.34093717331758011 1.80069149570798004 \N \N \N \N \N \N \N -0.0315795999999999993 \N \N \N \N \N \N \N \N \N 76 0 75 1 0.198755349999999997 71.6986008 0 0 3 false 0.0178102930000000013 \N \N 0.197464749999999994 9 8 6.88760569999999994 0 9 false 78 84.8416309013154972 1.26615954459083002 67.007103 20.8668419999999983 7 80.9420825766063956 11.281420726196 7.17481300000000033 20.5809519999999999 8 68.6725473296260986 8.21570298691798051 8.35869399999999985 20.1699620000000017 1.76345780000000008 0 0.410989759999999982 -0.285890580000000005 0.696880339999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.759692555594 -63.1608811351322004 22.7286864849870014 -13.1010773228577992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481185358311003520 2481185358311003520 1545928866 2015.5 25.8701169199755014 1.10962272863459011 -3.33405923106636992 1.32085256573928 \N \N \N \N \N \N \N 0.197536529999999988 \N \N \N \N \N \N \N \N \N 94 0 92 2 -0.472944799999999999 80.2758026 0 1.07732211571787006e-15 3 false 0.0224429519999999987 \N \N 0.255422900000000008 11 8 5.04479900000000026 0 12 false 96 97.4835778265510982 2.00044179700516001 48.730999 20.7160380000000011 9 77.7352975114012992 19.5424799501044006 3.97775999999999996 20.624842000000001 9 87.1111714657360068 13.4512163423946003 6.47608139999999999 19.9117360000000012 1.69101790000000007 0 0.713106160000000044 -0.0911960599999999955 0.804302199999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.774205166193013 -63.1499640370296973 22.7415137259470015 -13.0986185898435998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186152880038912 2481186152880038912 1196879149 2015.5 25.8832709111842014 5.19340802825754988 -3.32209237464785012 2.99023101307360006 \N \N \N \N \N \N \N -0.32651754999999999 \N \N \N \N \N \N \N \N \N 70 0 70 0 29.3782730000000001 1299.90002 16.7071681415218016 103.511607728838001 3 false 0.00331322379999999996 \N \N -0.169991000000000003 9 6 17.6260800000000017 0 10 true 80 182.296576052710009 3.35040270972370013 54.4103012 20.0364189999999986 7 212.335850070227991 12.9136484565167002 16.4427470000000007 19.5338299999999983 7 529.005901123606009 14.3439164432202997 36.880156999999997 17.9532680000000013 4.06667950000000022 0 1.58056259999999993 -0.502588299999999988 2.08315090000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.788500491240001 -63.133412941265199 22.7585676003101014 -13.0923141765874007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186801420017408 2481186801420017408 200497567 2015.5 25.9061524900075995 0.178882090048147008 -3.3281750627755402 0.156701655402223 0.353083996603125005 0.229545337190291993 1.53818849999999996 -0.318376314173429986 0.367882366773618019 -2.78541843972677006 0.266574163565474975 0.149673150000000005 0.326406450000000015 0.0129555409999999992 0.176058650000000011 -0.356982829999999973 0.206819100000000006 0.240372140000000012 -0.0534676300000000021 0.0317894369999999968 0.32064608 156 0 156 0 -0.0591143219999999969 149.311996 0 0 31 false 0.621712799999999954 1.51122282837471 0.0463790594459854988 0.134336050000000012 18 10 0.342201529999999976 0 18 false 154 874.904242699349993 1.93954540355021998 451.087006 18.3334639999999993 18 428.474316489697003 15.5928806611244006 27.4788439999999987 18.7715759999999996 14 679.897909905795018 7.73701733755576004 87.8759699999999953 17.680810000000001 1.26684979999999991 0 1.09076499999999998 0.438112259999999976 0.652652739999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.839762419251997 -63.1287168324572008 22.7780862110052986 -13.1063639915762007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186182944730240 2481186182944730240 1060012935 2015.5 25.8504323188046001 0.230510235058320995 -3.31706171750674983 0.197124562865889003 0.125479464971468002 0.298633049805896 0.42017943000000002 0.978021144671699982 0.475103785939504975 -0.244104954508109012 0.360406670963563991 0.103675379999999998 0.343527399999999983 -0.0111123550000000008 0.127051949999999997 -0.369636540000000013 0.142207090000000008 0.105111085000000007 -0.0408466420000000024 0.0522917359999999984 0.327977929999999973 159 0 158 1 1.41197090000000003 178.313004 0.491526616611874023 0.868993488720435026 31 false 0.358631599999999995 1.68974392683033003 0.0605527069746560967 0.130745200000000006 18 10 0.442190799999999995 0 18 false 158 627.50004885101805 2.72905792086420007 229.932999 18.6943319999999993 16 362.262379318341004 20.8036943502103995 17.4133679999999984 18.95383 15 424.995232940945016 7.68588968317354038 55.2955169999999967 18.1909600000000005 1.25459370000000003 0 0.76287079999999996 0.259498600000000024 0.503372200000000047 \N \N 0 \N \N \N NOT_AVAILABLE 152.718528417288013 -63.143437781427302 22.7291629264175015 -13.0755887420029993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186221599515392 2481186221599515392 858631467 2015.5 25.8557654149301008 1.62271226611855002 -3.3100563281394999 1.3843889024929501 \N \N \N \N \N \N \N 0.242010670000000011 \N \N \N \N \N \N \N \N \N 129 0 128 1 78.1442100000000011 9914.54004 10.2350463892588994 293.875451744710972 3 false 0.00894642499999999917 \N \N 0.169284970000000007 18 10 3.06865800000000011 0 18 false 159 494.883873504189978 6.29134710513863027 78.6610031 18.9521079999999991 16 632.883532632700053 15.4750921503943992 40.8969149999999999 18.348078000000001 17 1471.96396855351009 9.94818704566575995 147.963040000000007 16.8421759999999985 4.25321499999999997 0 1.50590130000000011 -0.604030599999999973 2.10993200000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.722226648324011 -63.1347988995619005 22.7368892265329983 -13.0710301225148005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186427757945472 2481186427757945472 906242678 2015.5 25.8462426201324007 0.0221536445078567013 -3.3042004127683402 0.0206843509140130014 2.02348760813521 0.0273446437276330008 73.9994099999999975 15.6134817914078994 0.0460870686722782003 -11.1812444837458003 0.0480743521303272983 0.200414960000000003 0.417858659999999993 -0.0533236529999999986 -0.0454644699999999999 -0.190828770000000009 -0.0801826499999999942 -0.112045939999999997 -0.00947976199999999922 0.0691105999999999943 0.367334500000000008 151 0 151 0 -4.05647040000000025 86.6027985 0 0 31 true 108.16628 1.57075294931363008 0.00671421041473956037 0.112096070000000006 17 10 0.0600512029999999974 0 17 false 151 85616.7422756949964 30.2901710649230012 2826.55005 13.3569689999999994 17 44461.057610330703 56.6463766003951008 784.887939999999958 13.731439 16 59426.2990994522988 83.4397552035473069 712.206050000000005 12.8269730000000006 1.21340000000000003 0 0.904465700000000039 0.374469759999999985 0.529995899999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.697626034024012 -63.1337573151632014 22.7300216592661002 -13.0620902799911001 100001 5480.2002 5432.04004 5500.16016 \N \N \N \N \N \N 200111 1.02041340000000003 1.0130205000000001 1.03858709999999999 0.846121129999999999 0.817721840000000033 0.874520399999999976 +1635721458409799680 Gaia DR2 2481161753170420992 2481161753170420992 1094778668 2015.5 25.7121730720417006 0.978706578502115954 -3.40207693125078015 0.769881538174501001 \N \N \N \N \N \N \N 0.0912290699999999954 \N \N \N \N \N \N \N \N \N 137 0 136 1 44.7573050000000023 3006.15991 5.93151674780332971 218.083947720630988 3 false 0.0266130379999999986 \N \N 0.129169449999999991 16 10 1.67212010000000011 0 16 false 136 820.844157931244013 6.25444683051811978 131.242004 18.4027139999999996 12 685.377144087599959 9.58231865377060998 71.5251849999999934 18.2615639999999999 11 1141.1746743972999 8.97942911821001921 127.08766 17.1185399999999994 2.22521140000000006 0 1.14302440000000005 -0.141149520000000001 1.28417399999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.527057830625012 -63.280663798881001 22.5652912853541991 -13.1038911727221006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186423462902016 2481186423462902016 815870128 2015.5 25.8528221968158007 0.501529802858578955 -3.30137203232228016 0.443188236710359007 -0.385146275185838993 0.673879267184148034 -0.571536000000000044 -2.37592734404185979 1.03404048055429998 2.21315241938672003 0.730355104104164043 0.118483809999999995 0.323738159999999997 0.0558876099999999973 0.176616880000000004 -0.431190699999999982 0.242365520000000001 0.275413929999999973 -0.112921160000000007 -0.0113489379999999994 0.336988960000000004 158 0 153 5 2.81757260000000009 201.141006 1.72514447643591007 3.00102323700000007 31 false 0.0815162660000000039 1.56541588694847 0.122577854423580004 0.141969650000000003 18 10 0.962641199999999975 0 18 false 152 267.132397387762978 1.71027593728710992 156.192993 19.6215499999999992 16 120.215452733910993 14.2947650431996998 8.40975399999999951 20.1514869999999995 14 258.075383944324983 12.8026603153238998 20.1579499999999996 18.7325529999999993 1.41611740000000008 0 1.41893390000000008 0.529937740000000046 0.888996099999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.707888483928002 -63.1283135462559031 22.7373599526539003 -13.0618736785762 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481186423463017472 2481186423463017472 523817150 2015.5 25.849008644974699 1.70077311067304993 -3.29682557728939996 1.48084007856888 \N \N \N \N \N \N \N 0.354650299999999974 \N \N \N \N \N \N \N \N \N 76 0 76 0 1.40003999999999995 88.251297 2.62120542692812997 0.79803436383114601 3 false 0.0154521429999999998 \N \N 0.213499410000000001 9 6 9.55826949999999975 0 9 false 75 84.0668804316658935 2.0470936005834699 41.0665016 20.8768020000000014 8 60.257611943763699 11.2394818021308005 5.36124470000000031 20.9013579999999983 9 75.789992717452904 14.6050169913083998 5.18931200000000015 20.0628910000000005 1.61832580000000004 0 0.838466640000000041 0.0245552059999999996 0.813911440000000042 \N \N 0 \N \N \N NOT_AVAILABLE 152.695883602274989 -63.1259219126444009 22.7354401634103986 -13.0562462593793995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481187733428002944 2481187733428002944 279567233 2015.5 25.8741677754513013 0.065316562679985396 -3.29412081729905015 0.0557356768850569007 1.0221079109608 0.0811211047485311948 12.5997780000000006 -1.23650757780740994 0.135440368922800008 -11.0853613103634991 0.108016551934230001 0.161721329999999996 0.354654279999999988 -0.0415577849999999999 0.10265552 -0.261932900000000024 0.104081110000000004 0.0525295620000000019 -0.0179898269999999999 0.0605199640000000025 0.329595479999999996 160 0 158 2 1.05374100000000004 171.462997 0 0 31 true 4.81518460000000026 1.51305103036478994 0.0174790888629056014 0.120991230000000005 18 10 0.132073849999999993 0 18 false 157 4550.82872154443976 4.80922742888778032 946.27002 16.5431400000000011 17 1925.08672632662001 19.3917848563485009 99.2733149999999966 17.1402630000000009 14 3803.1035039398098 21.4602319394429983 177.216319999999996 15.8115749999999995 1.2587136000000001 0 1.32868769999999992 0.597122200000000047 0.73156549999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.743042425423994 -63.1123731746581029 22.760441097110899 -13.0629599796725007 100001 4795.08008 4643.25977 5082.75 0.166199997 0.0240000002 0.324499995 0.101999998 0.0130000003 0.171800002 200111 0.647761900000000002 0.576512499999999983 0.69081159999999997 0.199851379999999995 0.166771260000000004 0.232931500000000014 +1635721458409799680 Gaia DR2 2481187935291392768 2481187935291392768 1283770608 2015.5 25.8666273546214995 1.15375722133471004 -3.28682120831855995 1.24679112131329006 0.522676121921862968 1.47432098903815989 0.354519899999999999 33.8071289924126006 2.80038424080106019 -33.8262405085705993 3.52971119665790001 0.106771364999999993 0.268007600000000012 0.00327035709999999981 -0.0550078599999999987 -0.418369829999999998 -0.215508580000000005 -0.423611899999999986 0.0273047930000000008 0.180592329999999995 0.528923869999999963 106 0 106 0 3.39041900000000007 156.363007 2.61383312164470993 1.08225815729841002 31 false 0.0173494499999999989 1.24066453325706005 0.34566762140357199 0.19076034 12 9 3.5321224 0 12 false 103 100.942239235768 1.36876362212413993 73.7470016 20.6781830000000006 8 58.4829487606186973 21.0171768315445 2.78262639999999983 20.9338149999999992 12 102.922174050151995 7.97396521081214971 12.9072759999999995 19.7306479999999986 1.5989850000000001 0 1.2031670000000001 0.255632399999999982 0.947534560000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.72096952084101 -63.1091641781771031 22.756006950226201 -13.0534050349872004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188004010872832 2481188004010872832 1360539191 2015.5 25.8551120154286984 0.279864153816502981 -3.2716068629580799 0.236956187460279993 -0.124965775220437003 0.360626783898609027 -0.346523819999999982 1.13013350309692995 0.587162550812890038 -3.18932937348726986 0.406983785307170998 0.134365499999999999 0.29438861999999999 0.00128809910000000005 0.162786999999999987 -0.369052900000000017 0.198482679999999995 0.201875849999999996 -0.0640256550000000008 0.0331859899999999985 0.30734309999999998 157 0 156 1 1.36986549999999996 175.341003 0.630740416011684957 0.934525948864528999 31 false 0.252477000000000007 1.57563591435690009 0.0709461731137091961 0.129777979999999987 18 10 0.538429599999999953 0 18 false 154 510.764468718237993 1.68478001473981998 303.164001 18.9178139999999999 16 303.788622825260006 15.4736712258218994 19.6326140000000002 19.144957999999999 15 356.343489941286975 9.99632905521606041 35.647433999999997 18.3822480000000006 1.29243930000000007 0 0.762710600000000016 0.227144239999999997 0.535566329999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.683293183616001 -63.1006099841138024 22.7507695518599 -13.0350308012047993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481187939586432896 2481187939586432896 853648650 2015.5 25.8734604559627002 0.130018002895507995 -3.27823767099696006 0.109858639139526995 0.684453139191908977 0.164510948785271005 4.16053250000000041 3.89042462014193013 0.271907872754604985 -11.1429569346902007 0.197990546297106995 0.141004459999999998 0.317062100000000013 0.00293344239999999978 0.137885649999999998 -0.319103420000000026 0.156805870000000014 0.152917620000000004 -0.0527126159999999969 0.0524088669999999979 0.299068029999999985 160 0 158 2 0.744719499999999979 165.695999 0 0 31 false 1.1526031000000001 1.56054745809747009 0.0333125959010711972 0.119413434999999998 18 10 0.251945299999999983 0 18 false 156 1388.08480303008992 2.18995162767832996 633.843018 17.8323250000000009 15 502.938744797093022 7.61926959633863987 66.0087900000000047 18.5975999999999999 12 1293.44651371354007 6.23996437194495979 207.284269999999992 16.9825499999999998 1.29414669999999998 0 1.61505129999999997 0.765275959999999977 0.849775300000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.726085818822014 -63.0984469747829024 22.7657571942605017 -13.0479282065939994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188107090089472 2481188107090089472 371300096 2015.5 25.8647741689291983 0.677943169129374024 -3.26378527889042003 0.570900969662172963 0.180527977129101014 0.841266374328139999 0.214590740000000002 -1.62958348654182994 1.53948139502751991 -5.52651233877050974 1.24410478693192994 0.064132854000000003 0.239078420000000014 -0.134115430000000008 0.0823700500000000002 -0.410941800000000024 0.0840560600000000019 -0.103585460000000004 -0.0223163590000000009 0.0250980030000000007 0.400302260000000021 132 0 132 0 -0.189114260000000006 123.355003 0 0 31 false 0.0495251400000000022 1.55461459895878007 0.207179839717623993 0.134087339999999999 15 10 1.47450419999999993 0 15 false 129 163.282558459558004 1.40344239808946991 116.344002 20.156015 11 99.8399433418636022 16.3995920111279005 6.08795299999999973 20.3531270000000006 10 113.486972739750996 13.3324507312955003 8.51208699999999929 19.6245559999999983 1.30648929999999996 0 0.72857094 0.197111129999999996 0.531459800000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.694763143008004 -63.0893276180845035 22.7629282519286988 -13.0313004570130992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157045886244352 2481157045886244352 1133779350 2015.5 25.4564915603523012 0.261798125140400018 -3.51000858229794988 0.202211900194921995 3.31636515258980991 0.324492369807197978 10.2201629999999994 24.1143110966949017 0.51564826673819697 0.232249232714512005 0.374814767355908018 0.0428751969999999968 0.447218329999999997 -0.0813510600000000028 0.073828413999999995 -0.281911100000000026 -0.020644974 0.0722335199999999955 0.0868002550000000067 0.155126530000000012 0.199596820000000008 157 0 154 3 1.82663930000000008 182.046005 0.585263026424900024 0.986137921686150998 31 false 0.310414079999999981 1.25823779960564996 0.0654027176126569937 -0.000796252860000000039 18 10 0.463220860000000012 0 18 false 159 500.893863944678003 1.53317805981905009 326.703003 18.9390010000000011 14 89.7958450049974033 12.5629738685889993 7.1476582999999998 20.4682479999999991 15 700.354011829494993 10.4866569318293994 66.7852500000000049 17.6486260000000001 1.57747959999999998 0 2.81962199999999985 1.52924729999999998 1.29037479999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.120228298777988 -63.4893927727345968 22.2808528348930999 -13.1102183893118003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157286404416000 2481157286404416000 662618515 2015.5 25.4536209076443996 0.255456711864679997 -3.49464313103558011 0.219539066251446008 0.807973777155207018 0.307179907958074982 2.63029499999999983 2.46127500531712995 0.566186939892646013 -11.9913757253662006 0.390709116399774015 0.204347460000000009 0.266958330000000021 -0.109939090000000003 0.113951759999999999 -0.16735797999999999 0.0437496939999999987 0.22515853999999999 0.0547570900000000013 0.138712840000000004 0.171829019999999999 177 0 176 1 0.743287150000000008 184.414993 0 0 31 false 0.243383349999999998 1.41618098126011005 0.0668528137471390005 0.0135651739999999993 20 10 0.504894550000000053 0 20 false 175 385.013535979458027 1.3015242227519801 295.816986 19.2246759999999988 15 113.040917959287 10.0014467869900994 11.3024570000000004 20.2182999999999993 16 416.489581576271007 6.58841876039492025 63.2154099999999985 18.2129100000000008 1.37535549999999995 0 2.0053901999999999 0.993623730000000038 1.01176639999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.099487890820001 -63.4768005889736031 22.2839359427128016 -13.0948792261220994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157737376395136 2481157737376395136 172581060 2015.5 25.4645324900388985 0.0703383812578458056 -3.4704017773393101 0.0562870744997783015 1.73286801612643004 0.0846622729111948941 20.4680080000000011 20.4464805311799012 0.14627989245610401 11.4852577597389995 0.106069864571833997 0.0869706650000000026 0.361365349999999974 -0.0215742800000000012 0.0653598499999999971 -0.219872280000000003 0.000704128239999999954 0.087226323999999994 0.0207634400000000011 0.155744099999999996 0.165097419999999995 188 0 185 3 4.82564539999999997 287.050995 0.299677338730026999 3.63347329017013987 31 false 3.39109779999999983 1.44155677360229006 0.0171850469944869015 0.0367999859999999998 21 10 0.135071899999999995 0 21 false 180 4426.51507446127016 3.99959264610895016 1106.73999 16.5732120000000016 19 1528.31412517991998 12.0433263592098001 126.901330000000002 17.3908559999999994 19 4296.71494048120985 12.8395141819397001 334.647800000000018 15.6790789999999998 1.31594009999999995 0 1.71177669999999993 0.817644099999999985 0.894132600000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.09786631403199 -63.4502347898750969 22.3035065266772001 -13.0763618886785995 100001 3999.66992 3940.19995 4317 0.168200001 0.0460000001 0.354999989 0.1052 0.0540000014 0.207699999 200111 0.648637800000000042 0.556782699999999964 0.66836439999999997 0.0970050699999999988 0.0871509899999999976 0.10685915 +1635721458409799680 Gaia DR2 2481345509051087744 2481345509051087744 1285072800 2015.5 25.4492901570208012 0.291428438765597986 -3.44700167292727988 0.264868826884110009 -0.164635491615589991 0.359357926557902996 -0.458137930000000027 0.686609560911831007 0.642057109411608984 -0.583410602618913976 0.511767325175097043 0.204665469999999988 0.277899700000000027 -0.00532163300000000009 0.047450214999999997 -0.189517989999999997 -0.00320072450000000001 0.106893559999999999 -0.0173670720000000008 0.145441409999999993 0.212302299999999999 177 0 175 2 0.0440484360000000033 170.145996 0 0 31 false 0.172663349999999993 1.54841419051753992 0.0800030306679928027 0.0425009500000000026 20 10 0.582047599999999998 0 20 false 176 306.182818358865973 1.40573598275874989 217.809998 19.4734130000000007 15 146.681062508823004 10.5430197285819993 13.912623 19.935452999999999 15 226.139020573824013 10.6869227427007996 21.1603490000000001 18.8759799999999984 1.21763890000000008 0 1.05947300000000011 0.462039949999999977 0.59743310000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.044487201117988 -63.4357605944579035 22.2978448706146999 -13.0490007644360997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351522005306368 2481351522005306368 1440377864 2015.5 25.4767464998067013 0.399113072925876999 -3.41209000174002997 0.340658598891798003 0.22544769102918899 0.508244909220315955 0.443580799999999997 4.20055715545780028 0.789532231232903947 -3.12990165946331 0.622543248480592948 0.0783991140000000059 0.429474599999999984 0.0749534800000000029 0.0665737400000000062 -0.268086900000000017 -0.00420920270000000023 0.174356800000000006 -0.00931648350000000014 0.137448270000000011 0.18254477999999999 176 0 172 4 1.19478369999999989 189.076004 0.655003002498628972 0.486254016065906014 31 false 0.107993809999999996 1.51181169301013996 0.104709763464396005 0.0131168629999999994 20 10 0.710326699999999978 0 20 false 173 241.125696562734987 1.33452658816204006 180.682999 19.7327580000000005 14 87.2043188197726948 12.4970058805386 6.97801700000000036 20.500043999999999 14 221.391706938207989 11.8016026907521994 18.7594600000000007 18.8990170000000006 1.27981389999999995 0 1.60102649999999991 0.767286299999999977 0.833740229999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.065811397047014 -63.3924143014403967 22.3372063689932006 -13.0266512708137991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351796885353600 2481351796885353600 75833813 2015.5 25.4527164772512009 0.883302703794016986 -3.38944973932458016 0.996539685537713993 1.00721596089840992 1.17211721835519 0.859313369999999965 3.26936847384213003 2.46422223940564011 -14.5350645006523997 3.60957272636579996 0.257769729999999975 0.277790340000000024 -0.0288017690000000014 -0.110372074000000001 -0.317778320000000003 -0.0757886799999999972 -0.153533639999999999 -0.204026600000000002 -0.133112389999999997 0.681625000000000036 108 0 103 5 1.07303360000000003 113.068001 1.79347557581582007 36.388569045865701 31 false 0.0287880410000000003 1.85121752546787999 0.303011083159916983 0.0272469860000000008 13 9 3.56852100000000005 0 13 false 103 95.5883366242841959 1.27991885754443002 74.6830978 20.7373539999999998 8 41.9328731736809033 4.73047517940185003 8.86440999999999946 21.2950020000000002 10 109.174676222846003 13.7746416694738993 7.92577269999999956 19.6666150000000002 1.5808158000000001 0 1.6283875000000001 0.557647699999999968 1.07073970000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.995643599027005 -63.3824134088774969 22.3228850751530992 -12.9967633283549997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253360528406912 2481253360528406912 1523763198 2015.5 25.1631259226031005 1.33738940154337005 -3.50748038230738013 0.974258528419825964 \N \N \N \N \N \N \N 0.0481780949999999972 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.4329070000000002 3370.41992 7.56474835960970005 196.879574778301986 3 false 0.0165532879999999993 \N \N 0.00702743740000000023 16 9 2.64817049999999998 0 16 false 142 694.690433539818969 9.7120319198795606 71.528801 18.5838870000000007 14 794.396038988346959 11.9208062407524995 66.6394599999999997 18.1012950000000004 14 1699.13493541708999 17.9840945746881999 94.4798700000000053 16.6863500000000009 3.58941320000000008 0 1.41494560000000003 -0.482591629999999994 1.89753719999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.524484263004013 -63.6132553070146969 22.0024545572459012 -12.9997803542763002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351801178894592 2481351801178894592 289455600 2015.5 25.4612993869220006 1.67990465798774991 -3.39517049619341993 0.933735684048945025 3.86149362580151001 1.96988465694967996 1.96026379999999989 3.1165759788612899 2.69338270781027012 -1.09347380126696003 2.31555954792316987 -0.0964012149999999984 0.680744099999999963 0.368149969999999993 -0.191428999999999988 -0.278029320000000024 -0.304324450000000024 -0.296758350000000004 -0.0242985450000000013 0.0017935786999999999 0.274950980000000011 99 0 99 0 1.8652884999999999 121.174004 1.47545634904762002 0.48830683299720401 31 false 0.0299700599999999998 1.45949673804703006 0.302060235458516013 0.000217391189999999992 12 7 2.60073260000000017 0 13 false 101 100.909132607253994 1.41464554559547007 71.3317032 20.6785400000000017 12 54.6354209962428996 9.65840214464147984 5.65677640000000004 21.0077019999999983 11 78.7098504397955026 7.38897566793168004 10.652336 20.0218470000000011 1.32143900000000003 0 0.985855099999999984 0.329162600000000027 0.656692500000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.018411488885988 -63.3838573024080034 22.3288950089841016 -13.0052394230171995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351762523476352 2481351762523476352 26162654 2015.5 25.4786718509800991 0.652820766668389951 -3.4009281961445299 0.688656708500608006 1.93327896506048003 0.827601895489489037 2.33600120000000011 13.1001292149678008 1.49359743816754009 5.97270551694576035 1.99297153916261993 0.204431000000000002 0.351949200000000018 -0.0259663540000000005 -0.182982119999999998 -0.316620740000000012 -0.272426000000000001 -0.383867530000000012 0.0083238419999999997 0.151696620000000004 0.513669500000000001 131 0 131 0 1.34719480000000003 147.876007 1.14843090002788006 0.569830260925654031 31 false 0.0477456149999999982 1.51764904529436007 0.208018220698832995 0.0576720100000000027 15 9 1.95708820000000006 0 15 false 132 134.298906120108995 1.21065324292760002 110.931 20.3681850000000004 13 62.0230576461224032 11.1892925585168008 5.54307200000000044 20.870004999999999 13 186.971299662831996 14.9150673411424997 12.5357330000000005 19.0824829999999999 1.8540312000000001 0 1.78752139999999993 0.501819600000000032 1.28570180000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.058862457409987 -63.3815244037474983 22.3432626857279004 -13.0169836437335995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351835538609024 2481351835538609024 1168434449 2015.5 25.4661166614671011 0.0767087764205020006 -3.37983223325388993 0.0529658767383658011 0.302994090843781982 0.085925729960401806 3.52623249999999988 6.40217209317984981 0.149772718842091007 -7.4043396294569801 0.100206869590478004 -0.0238567299999999996 0.457860299999999998 -0.117380810000000002 0.0871468559999999948 -0.227014419999999995 0.0709930059999999974 0.140656019999999993 0.0204217270000000006 0.0754790600000000006 0.128009420000000013 178 0 178 0 -0.376496459999999977 165.442993 0 0 31 false 3.72161870000000006 1.59327856790597999 0.0183181651112200999 -0.0505328329999999992 20 10 0.137554850000000006 0 20 false 178 3524.65034011896978 3.19730979234384982 1102.38 16.8205759999999991 18 1829.01570604714993 11.2166476017620003 163.06259 17.1958449999999985 17 2494.51557204534993 12.8565218771828 194.027250000000009 16.2694550000000007 1.22665540000000006 0 0.926389699999999983 0.375268939999999995 0.551120759999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.013249317825995 -63.3679502023356989 22.3392849505303985 -12.9927534972208996 100001 5317.25 5002 5445.3999 0.493000001 0.230000004 0.66049999 0.239299998 0.114 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156637864767488 2481156637864767488 1086362152 2015.5 25.4956193948715999 0.0464096216586436031 -3.50331236469929008 0.0473707296557685023 1.33125563546196002 0.0594805596860518981 22.3813570000000013 6.13528861064617015 0.112359906891143002 -0.801394491156915967 0.0908593815290150014 0.248629120000000009 0.142943769999999998 -0.0361191800000000007 0.201098520000000003 -0.441587659999999993 0.336539419999999978 0.419522369999999978 -0.161815939999999991 -0.212328779999999995 0.458012340000000018 157 0 155 2 2.69162649999999992 200.806 0.135244703991036996 1.37235483396003999 31 true 10.635999 1.53174202683653005 0.0131175740361694996 0.0946344300000000055 18 9 0.12031319 0 18 false 152 10958.0288312948996 8.4361069230906196 1298.93994 15.5890350000000009 14 4916.0517496101802 12.7937757746210004 384.253399999999999 16.1223470000000013 16 8679.32183105413969 28.4212564231720002 305.381349999999998 14.9157060000000001 1.24067689999999997 0 1.20664119999999997 0.533311839999999981 0.673329350000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.19243741996101 -63.4663625395427999 22.3206629888087988 -13.1183939983563995 100001 4938.75977 4866 5100.5 0.0715000033 0.00200000009 0.264999986 0.0403000005 0.000899999985 0.135100007 200111 0.714159129999999975 0.669583700000000004 0.735675300000000032 0.273372899999999974 0.247138959999999991 0.299606829999999991 +1635721458409799680 Gaia DR2 2481157526922586368 2481157526922586368 955893381 2015.5 25.5124639234090012 0.178358664528428995 -3.48615741788314004 0.159778509142575992 1.21434748328412989 0.221730595119136009 5.47667999999999999 1.03164391693829005 0.383590583697644982 -18.8509817272868005 0.305277706211926014 0.170992179999999994 0.309775619999999974 -0.00200929519999999999 0.0557397599999999993 -0.223911639999999995 -0.00428201029999999983 0.0979945799999999978 0.00385720210000000015 0.155171570000000009 0.211451169999999994 178 0 177 1 0.785395399999999966 186.278 0 0 31 false 0.469959879999999997 1.35830891392143993 0.0461550501563594978 0.0470555760000000017 20 10 0.349003500000000022 0 20 false 175 623.453707217519991 1.52620584915999991 408.498993 18.7013549999999995 18 129.748530259077995 9.81663054792755929 13.2172164999999993 20.0686320000000009 16 772.559775646323033 9.74531983836899052 79.2749560000000031 17.5420900000000017 1.44727399999999995 0 2.52654269999999981 1.36727709999999991 1.15926550000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.209562115953986 -63.4435939865893985 22.3432037634661995 -13.1086449830544005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156466066152832 2481156466066152832 1670244909 2015.5 25.5632118661490004 0.763632335688084973 -3.50789837089355006 0.929312441672916045 1.83472989750881998 0.948379101422155979 1.93459549999999991 -1.8877278856403501 2.42461943337085994 0.64752455302313805 3.56231115819814015 0.415610099999999982 0.0244552209999999992 0.0460122560000000014 -0.0595693769999999997 -0.248034719999999986 -0.090721099999999999 -0.216113030000000012 -0.253667399999999987 -0.113615179999999996 0.707279600000000008 117 0 117 0 -0.333598549999999994 106.434998 0 9.49502669955479904e-16 31 false 0.0324684500000000029 1.18446117240162008 0.248711054076478005 0.147163729999999993 15 9 3.54051349999999987 0 16 false 122 101.848664943038003 1.01958534453127991 99.8921967 20.6684780000000003 13 102.216740675178997 20.0899017201200003 5.08796599999999977 20.3275830000000006 12 58.7472126603034965 8.98720001994890083 6.5367645999999997 20.3394529999999989 1.58042280000000002 0 -0.0118694309999999997 -0.340894699999999995 0.329025269999999981 \N \N 0 \N \N \N NOT_AVAILABLE 152.332716010403999 -63.4410203614683965 22.3833277806683988 -13.1475237260499007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156740943987712 2481156740943987712 754221326 2015.5 25.5378439718102008 0.080676900336070001 -3.49364941900071013 0.068432145522952903 0.264481544232038013 0.0964305668222586038 2.74271500000000001 3.57383541673452987 0.172692095975778004 -2.46589021060276981 0.134969877976093999 0.113969799999999996 0.298985359999999978 -0.0737305199999999938 0.0591210900000000011 -0.212007449999999986 0.0104746600000000002 -0.000554608500000000008 0.0393062569999999972 0.150131839999999989 0.19931857 168 0 168 0 0.802695040000000026 177.220993 0 0 31 true 2.53914019999999985 1.59976956590829 0.0208505876415930984 0.0277042429999999999 19 10 0.160288480000000011 0 19 false 165 2467.02480315205003 2.69717327696257003 914.669983 17.2079319999999996 19 1256.64411234213003 7.22841456823567974 173.847820000000013 17.603356999999999 17 1756.85461770026996 14.7305220889581996 119.266279999999995 16.6500799999999991 1.22151140000000002 0 0.953277599999999947 0.395425799999999994 0.557851800000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.267853309793992 -63.4392782929769012 22.3645489082683007 -13.1249464918111993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156736648602752 2481156736648602752 1340020125 2015.5 25.5399839575085998 0.539023790335956043 -3.49228554917521006 0.595783235160784019 0.0635813025038697993 0.662085676728067951 0.0960318399999999933 6.1069402198126399 1.26384934819139994 -6.28787092862170027 1.49737308037039996 0.332504179999999983 0.21264211999999999 -0.0432924439999999994 -0.128232139999999994 -0.233042909999999992 -0.171427970000000013 -0.249519380000000013 -0.00135991829999999999 0.183808489999999991 0.436765340000000002 152 0 152 0 2.33438349999999994 189.977005 1.33541497221566008 0.976071243060855021 31 false 0.0531032400000000029 1.05453806787427995 0.169961275365654002 0.102909975000000001 18 10 1.48087060000000004 0 18 false 152 148.751492216791007 1.09270601270762002 136.130997 20.2572119999999991 10 68.131480732862201 7.05459556878447991 9.65774399999999922 20.7680189999999989 12 161.010840806348995 8.50270126037560914 18.9364339999999984 19.2447809999999997 1.54043709999999989 0 1.52323720000000007 0.51080703999999999 1.01243020000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.270817726741996 -63.4371183101852978 22.3671039508310017 -13.1244658223816 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368081664 2481156805368081664 615261745 2015.5 25.5322622390197012 0.510803448269041005 -3.4824731616446698 0.508287077204074955 0.990049326358909965 0.634857774896484983 1.55948210000000009 3.36799457720892015 1.12256391412478007 -7.49803297694799031 0.951418576524946991 0.254637959999999997 0.267092349999999978 0.0361090640000000032 0.0813796600000000064 -0.179213580000000011 0.0154507010000000007 0.220693159999999999 -0.0355184750000000007 0.149012759999999994 0.206268759999999995 154 0 151 3 2.10787129999999978 184.283005 1.34320750872771 1.08275144730578998 31 false 0.0622829800000000017 1.60083068265080009 0.145398894835916004 0.0695095700000000066 18 10 1.02623099999999989 0 18 false 152 161.856453869084987 1.20256278225076008 134.593002 20.16554 15 65.2078467724877981 6.76653113509765003 9.63682099999999942 20.8156379999999999 17 132.117989015364998 7.01990228121274029 18.820488000000001 19.4595149999999997 1.21914100000000003 0 1.35612299999999997 0.650096899999999978 0.70602609999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.245732259476 -63.4316569729977999 22.3634601730011013 -13.1125036278781995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157870519974400 2481157870519974400 1331314081 2015.5 25.4820067762410005 0.113942188533391997 -3.45739515454607993 0.0907759848345447984 1.02003011068533 0.14001704447626101 7.28504229999999975 -1.42768771794420002 0.226956613061630008 2.24727824398067 0.165414073254087995 0.0578593719999999992 0.410170970000000024 -0.00811285699999999936 0.0857955600000000068 -0.25467873000000002 0.0176618940000000009 0.125369940000000013 0.0278097339999999991 0.147692010000000012 0.173403959999999996 183 0 182 1 1.44786330000000008 204.927002 0.0999530040028863004 0.122215266062142003 31 false 1.32546629999999999 1.4817567062625201 0.0277816993172136997 0.0162262859999999995 21 10 0.205091830000000003 0 21 false 181 1443.68147024894006 2.07201783496548986 696.750977 17.7896880000000017 19 501.803445408561004 9.99419853936364078 50.2094730000000027 18.6000540000000001 20 1366.14469181969002 9.50119880778470005 143.786560000000009 16.9231780000000001 1.29387830000000004 0 1.67687610000000009 0.810365699999999967 0.866510400000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.120353815507997 -63.4309394407403033 22.3250743903337998 -13.0707017652920001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157836160340096 2481157836160340096 224359691 2015.5 25.5004174978360005 0.526396132234074998 -3.45671562029203017 0.492585160048039983 0.239029307886514997 0.693961665498947 0.344441649999999988 -1.58949879735038002 1.25583043469076006 -1.25405834996462007 0.842538395859662947 0.221993949999999995 0.0977985900000000047 0.239891589999999988 0.0555408599999999975 -0.267668520000000021 0.0482286499999999979 0.303589900000000024 -0.21698176999999999 0.168783369999999988 0.0898024699999999954 165 0 165 0 0.875077400000000005 175.460007 0.791993721455912958 0.368422492828081982 31 false 0.0602551139999999985 1.3552510352629199 0.139271767418753994 0.0398380350000000008 19 9 1.11926400000000004 0 20 false 167 155.142321420002986 1.52737030028808007 101.574997 20.2115399999999994 17 121.069510629050001 9.38521527600427952 12.9000240000000002 20.1437999999999988 17 99.161808607114807 7.89153332587075962 12.5655950000000001 19.771059000000001 1.41954369999999996 0 0.372741700000000009 -0.0677394899999999994 0.440481200000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.156681921733991 -63.4223322051780016 22.3428693069205018 -13.0768440768834004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157526922587904 2481157526922587904 472420254 2015.5 25.5117420342144996 0.130066818151440999 -3.47779567024986003 0.118425039456308001 0.641675125756477005 0.157746977790287013 4.06774900000000006 1.25050293388970002 0.272330363501032013 -5.57927055128048011 0.219141055290309 0.233317699999999989 0.338673859999999993 -0.0147515819999999992 0.0848756600000000055 -0.140299170000000001 -0.00107831450000000009 0.108256210000000005 0.0323530659999999998 0.190952869999999997 0.217540860000000003 167 0 166 1 1.02362540000000002 179.358002 0.0544744535828066007 0.0244485944575534991 31 false 0.951141360000000047 1.52593059269317011 0.0348749336476767008 0.076655223999999994 19 10 0.25019619999999998 0 19 false 164 1106.05175757430993 1.90721826169616993 579.929016 18.0789280000000012 18 454.281174355047028 10.6839792358594998 42.5198480000000032 18.7080759999999984 16 947.299278297865953 8.81539466812101935 107.459655999999995 17.3207020000000007 1.26719249999999994 0 1.38737489999999997 0.629148499999999999 0.758226399999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.199958670714011 -63.4363829337745031 22.3456804996987017 -13.1006063798447006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368082048 2481156805368082048 680500812 2015.5 25.5250443055754985 0.289269202551296012 -3.4778346874100099 0.312188737300506003 -0.165849855054320011 0.342235937415352021 -0.48460677000000002 -0.910126630866643027 0.621487468524668962 -3.80702480203165017 0.543656853627492054 0.367670119999999989 0.259131820000000013 0.0533314159999999995 0.18119616999999999 -0.104511514 0.0911016760000000064 0.345265749999999982 -0.0239693989999999989 0.157075169999999986 0.244516490000000003 144 0 142 2 0.0828922200000000026 137.707001 0 0 31 false 0.209091709999999986 1.57109758565202995 0.0808737852793857959 0.0908935139999999947 17 9 0.587296299999999993 0 18 false 140 349.972736572090014 1.65315132999424996 211.699997 19.3282799999999995 13 166.254556080459992 7.0158746400966896 23.696909999999999 19.7994540000000008 13 257.030876264649009 8.90132435310082037 28.8755759999999988 18.7369580000000013 1.20948110000000009 0 1.0624962 0.471174240000000022 0.591321949999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.226713410074012 -63.4306276624009016 22.3583387155568012 -13.1055364224647004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157630001806592 2481157630001806592 787801497 2015.5 25.5105118985061985 0.294231520742975983 -3.45425560377044016 0.240040537862407005 0.72222988619737305 0.352082532793651981 2.05130839999999992 7.0681974884048504 0.663291752446219962 -15.2196443783040003 0.414549140641509994 0.217165069999999988 0.26032913000000002 -0.164997969999999994 0.125113830000000009 -0.0894878800000000058 0.00920066299999999955 0.248192300000000005 0.0954675450000000009 0.191945029999999989 0.108464329999999998 167 0 166 1 1.98601770000000011 198.563995 0.604225997186368047 0.730160978734177957 31 false 0.205527110000000013 1.55351160974235003 0.0749076102154404982 0.0435075279999999967 19 10 0.587322829999999962 0 19 false 166 378.804984918341972 1.21299224050584997 312.290009 19.2423269999999995 16 147.734760398389994 9.20772838688590056 16.0446470000000012 19.9276809999999998 17 332.91637027818399 14.3432774290313994 23.2106199999999987 18.4560810000000011 1.26886169999999998 0 1.47159960000000001 0.685354229999999953 0.786245349999999954 \N \N 0 \N \N \N NOT_AVAILABLE 152.174559334456006 -63.4157301594269995 22.3534162271321009 -13.0782709776310995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163711675499520 2481163711675499520 1337774177 2015.5 25.5103301112973 0.180566625629233007 -3.44543883543509999 0.139060640585900008 0.362598521606108004 0.226700808701943007 1.59945849999999989 1.51468472496139994 0.34459219029895799 -8.9809456218296404 0.244743456615547 -0.0102791940000000002 0.472631999999999997 0.0123680084999999995 0.0832652799999999971 -0.313568979999999997 -0.00568704349999999987 0.161057800000000001 0.0476659499999999986 0.145563529999999997 0.154895320000000003 176 0 176 0 2.53602499999999997 221.524002 0.198072568011691014 0.218787997297577003 31 false 0.593309799999999998 1.41470576850595009 0.0449632462296910979 0.00171080119999999993 20 10 0.307427229999999996 0 20 false 176 773.995456805198955 1.76966360985383009 437.368988 18.4665199999999992 16 240.845306024985007 16.4501292770058996 14.6409369999999992 19.397043 15 840.106250233696983 18.8892321717215985 44.475406999999997 17.4510840000000016 1.39658639999999989 0 1.94595910000000005 0.930522900000000042 1.0154361999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.165615551052014 -63.4078724105261031 22.3565789455299999 -13.0700079634687008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163746035361792 2481163746035361792 508289993 2015.5 25.5215928124227993 0.895187636585358049 -3.4371851541136702 0.654962232903740005 5.02322242997539981 1.25142293693303008 4.01400850000000009 -17.7580133909050986 1.16920123283273991 -61.1148933280985034 0.977235346545162975 -0.21103733999999999 0.765201750000000014 0.212690679999999993 0.126243999999999995 -0.48309713999999998 -0.000104933750000000005 0.312670100000000006 0.113484829999999995 0.0903887450000000064 0.238645639999999992 137 0 136 1 2.13000400000000001 167.802994 1.34034083100365997 0.874127080245890031 31 false 0.0543676729999999983 1.31104972896993011 0.158389848669988009 0.00856115200000000069 16 9 1.25895500000000005 0 16 false 136 163.058901680840989 1.54010500130349004 105.875 20.1575050000000005 9 38.823056045007803 12.7893098306899997 3.0355865999999998 21.3786640000000006 10 287.417922693622984 6.97548916297203014 41.2039800000000014 18.615635000000001 2.00075529999999979 0 2.76302899999999996 1.22115900000000011 1.54187009999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.180189843085003 -63.3955462586630034 22.3704304936998994 -13.0664782841645994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163436797588608 2481163436797588608 1496778633 2015.5 25.5305909012858017 0.38077970590711302 -3.46495076787401013 0.381827113693270992 0.68963441858029495 0.461328470931835988 1.49488810000000005 -0.0933297459763813009 0.75053890528779299 -2.05074799939034014 0.650219921220461017 0.361407130000000021 0.385185200000000005 0.0665110800000000002 0.162296770000000007 -0.0391309339999999992 0.0344059430000000013 0.242599399999999993 0.00581375139999999995 0.230376479999999995 0.237629040000000014 152 0 151 1 3.24116399999999993 207.839005 0.727918685877066984 0.589438038011125043 31 false 0.123426610000000006 1.71718493435239994 0.101749599742130006 0.127220820000000012 18 9 0.70212960000000002 0 18 false 150 270.129017831734018 1.56464451041933006 172.645996 19.6094380000000008 9 175.603156684831987 17.463118709875701 10.0556579999999993 19.7400570000000002 12 203.297392627986994 11.9331654033529002 17.0363350000000011 18.9915899999999986 1.40266510000000011 0 0.748466500000000035 0.130619049999999987 0.617847440000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.225285059972009 -63.4166191309439 22.3684980430966007 -13.0955997273216003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163471157328896 2481163471157328896 1667660371 2015.5 25.5490044486157011 0.285914565300453005 -3.45523248572128994 0.21818587916160101 2.19327810086522978 0.353003301256267998 6.2131943999999999 9.21932480330579018 0.569809786767034976 -6.97276811406621988 0.394965220436144016 -0.0716871899999999979 0.424718859999999976 0.213928040000000014 -0.0035222719999999999 -0.325360629999999984 -0.0877292199999999966 0.166196079999999996 -0.0362707079999999987 0.168170939999999991 0.0526271430000000012 149 9 149 0 3.87512759999999989 219.397995 0.820269595894719039 2.33020205833366001 31 false 0.314121570000000017 1.2427959236450401 0.0669557547454345953 -0.0431214899999999984 17 10 0.483347120000000019 0 17 false 147 570.60449401532901 1.76875706968134994 322.60199 18.7975269999999988 12 100.138350968189002 7.60601936471331008 13.1656709999999997 20.349888 11 799.217361505311032 19.0576816958433 41.9367560000000026 17.5052589999999988 1.57614549999999998 0 2.84462929999999981 1.55236050000000003 1.2922688 \N \N 0 \N \N \N NOT_AVAILABLE 152.25275348018701 -63.3998535595433026 22.3897174978460995 -13.0933381457343998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163647251398400 2481163647251398400 1630473781 2015.5 25.5392378317851012 0.0537130218408223975 -3.43433287845796009 0.0430055077975744979 2.73082487937204998 0.0626077644087325025 43.617992000000001 -9.6667513262042899 0.107282500097385006 -6.21444181772609028 0.0924581970112983986 0.0808747799999999933 0.439580299999999979 -0.161692859999999994 0.0183106159999999983 -0.248958440000000003 -0.115036669999999994 -0.267304719999999996 0.145298759999999999 0.210981370000000001 0.306987400000000021 134 0 134 0 0.924086199999999969 143.701996 0 0 31 true 9.54392999999999958 1.41420880993777009 0.0140810511511038003 0.0388161299999999973 15 10 0.109529874999999999 0 16 false 134 7901.01272704708026 5.84755989921251018 1351.16003 15.9441590000000009 16 2469.80851169549987 29.0446694407048014 85.0348299999999995 16.8697300000000006 14 8125.57621688103973 16.1005420153825014 504.677200000000028 14.987285 1.34101599999999999 1 1.8824453000000001 0.925571440000000023 0.956873900000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.212806263870988 -63.3853024284208999 22.3883187474858012 -13.0703168570322994 100002 3817 3786.66992 4023.93994 0.0149999997 0.0103000002 0.0259000007 0.00800000038 0.00490000006 0.0154999997 200111 0.642279570000000022 0.577918400000000054 0.652610840000000025 0.0788917539999999945 0.0750291939999999935 0.0827543139999999955 +1635721458409799680 Gaia DR2 2481163574236545664 2481163574236545664 37487756 2015.5 25.5566524538705018 0.086230162159292606 -3.44850985971245994 0.0677032675877538986 0.470400275514715027 0.106852920421230999 4.40231559999999966 25.0346500446792994 0.170370991763053009 -10.4097349306934994 0.133284400209855991 -0.0558614730000000018 0.448137430000000003 0.0382579570000000022 0.00854166399999999916 -0.347058980000000017 -0.0787976900000000036 0.0171791999999999986 0.0397327400000000025 0.149498219999999987 0.159914730000000005 169 0 167 2 0.377647730000000015 168.209 0.0332246866924935033 0.0247965879643174993 31 false 2.71041940000000015 1.62549482268877998 0.0216751883060217997 -0.01628427 19 10 0.15613724000000001 0 20 false 164 2621.43658964350016 3.14644400699439997 833.143005 17.1420169999999992 15 1423.23402713249993 20.572943488421199 69.1798900000000003 17.468197 15 1771.60074996405001 8.52195679258372074 207.88660999999999 16.6410049999999998 1.2187344 0 0.827192299999999991 0.326179500000000011 0.501012800000000036 \N \N 0 \N \N \N NOT_AVAILABLE 152.261533892079996 -63.3904721065579011 22.3995469604578012 -13.0899012246522997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162822617233280 2481162822617233280 1663064566 2015.5 25.5664727249920993 8.47362455433587947 -3.44712360151945996 4.0331180885344704 \N \N \N \N \N \N \N 0.798348399999999958 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.53921930000000007 47.4996986 3.34269065305513013 1.31653311768932002 3 false 0.0199146200000000009 \N \N 0.182898179999999994 5 5 28.2778069999999992 0 9 false 43 96.130332398602107 1.9733749949571 48.7136993 20.7312149999999988 3 170.808203401973003 29.0816755852992017 5.87339639999999985 19.7701169999999991 4 283.733055749272012 24.7644930126351994 11.4572524999999992 18.629643999999999 4.72838539999999963 0 1.14047239999999994 -0.961097700000000055 2.1015701 \N \N 0 \N \N \N NOT_AVAILABLE 152.279866326903004 -63.3849428033212021 22.4094274548968997 -13.0922238927212007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162818322301824 2481162818322301824 1006931154 2015.5 25.5666303385641989 1.36228662255875999 -3.44707290025885982 1.5746668262877499 \N \N \N \N \N \N \N 0.170641619999999994 \N \N \N \N \N \N \N \N \N 86 0 81 5 10.2544979999999999 283.878998 5.08966932606382993 6.17267499654922958 3 false 0.0163755600000000008 \N \N 0.136587950000000014 10 8 4.15526000000000018 0 11 false 88 114.306178359330005 1.4421500126276201 79.2609024 20.5431920000000012 8 59.3293013528370992 15.5015086121096992 3.82732440000000018 20.918215 7 267.696150398112991 10.6129064370384008 25.2236420000000017 18.6928139999999985 2.86096050000000002 0 2.22540100000000018 0.375022899999999992 1.85037800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.280132749855994 -63.3848284487914029 22.4095967980661008 -13.0922347179986005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163574236546304 2481163574236546304 205544693 2015.5 25.5629061354872 0.897392013893163032 -3.44332303030780018 1.01862834652218992 -0.139398349243052 1.17367386504811 -0.118770940000000005 -3.40474387285425983 2.4666980458770702 -7.29218314645833043 4.15781835070804018 0.267009380000000018 0.293694999999999984 -0.16114908 -0.315230730000000015 -0.355039060000000017 -0.264450430000000014 -0.302115599999999984 -0.0917372199999999943 -0.00355736980000000017 0.689676700000000031 110 0 108 2 -0.363557579999999991 97.2266998 0 0 31 false 0.0301058849999999989 1.42529760848167997 0.301387245904091994 0.118019289999999999 13 8 4.0083120000000001 0 13 false 109 94.8976669872937038 1.72154115780601003 55.1236992 20.7452280000000009 11 76.2838308823027944 13.8958604836491997 5.48968029999999985 20.645308 12 61.5073101470120989 8.87035301681691024 6.9340320000000002 20.2896019999999986 1.4519972000000001 0 0.355705260000000023 -0.0999202700000000055 0.455625530000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.269011902393004 -63.383079632124101 22.4074669286177013 -13.0873790551508993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163608596285696 2481163608596285696 843529582 2015.5 25.5608481077872014 0.211485955362500005 -3.43500545640889987 0.167061919658273994 0.146115409942947999 0.261666750796585024 0.558402660000000051 4.47189284791778974 0.419191009088483002 -3.25855489199275006 0.316080269468291986 -0.0468922069999999983 0.412104279999999989 -0.0232737470000000009 0.0564765740000000016 -0.347205099999999989 -0.0031228813000000002 0.0459969159999999988 0.0355996900000000033 0.131450380000000006 0.168005690000000013 168 0 166 2 1.24641819999999992 183.688995 0.42023640592956002 0.706013845236489024 31 false 0.419875439999999989 1.68418072926915996 0.0551664245629973973 -0.0296175829999999994 19 10 0.37520224000000002 0 19 false 165 658.320330248531036 1.84206224941514995 357.381989 18.6422729999999994 16 336.436559792723983 8.91709932508969949 37.729374 19.0341300000000011 17 499.668502391783022 12.9928737007167996 38.4571200000000033 18.0152150000000013 1.27005799999999991 0 1.01891519999999991 0.391857149999999987 0.627058000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.256780147281006 -63.3764945134660991 22.4086520995595002 -13.0788896726062003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159451067931520 2481159451067931520 44851599 2015.5 25.6126566381653014 0.462717120413222993 -3.50227582495090006 0.411596267687906026 1.01696975761132991 0.594347736743068955 1.71106859999999994 -3.14912746347639994 0.957728604239705961 -4.20246074649618961 0.693412517596806 0.186085749999999994 0.348898649999999977 0.21731608999999999 0.135836989999999991 -0.246209470000000014 0.115473599999999996 0.354684300000000008 -0.151814830000000012 0.096037835000000002 0.19257566000000001 138 0 136 2 2.70943429999999985 179.110001 1.28558234139423 1.89731834655039999 31 false 0.107007190000000002 1.61779273634915999 0.116387752777088002 0.0623981799999999975 16 10 0.870146749999999969 0 16 false 136 267.066134361002014 1.42244151292724008 187.751999 19.6218189999999986 14 91.0870402698327979 7.55616072807444983 12.0546720000000001 20.4527469999999987 14 289.447831578055002 6.39272590020094977 45.2776870000000002 18.6079940000000015 1.42487129999999995 0 1.84475330000000004 0.830928800000000023 1.01382449999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.426367889382988 -63.4143326176951021 22.432571968238701 -13.1604796221980997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162444660556416 2481162444660556416 566526788 2015.5 25.5792863268952004 0.0289706677803447006 -3.48380350116728987 0.0220838273646866007 0.787157203033901021 0.034492768016242098 22.8209340000000012 -3.04556995391117002 0.0609251891449563016 -8.6218867122248497 0.0485831960872451993 -0.025066950000000001 0.370029869999999983 -0.0885877000000000053 -0.00229943960000000011 -0.377414000000000027 -0.155880330000000011 -0.340964319999999987 0.114245150000000004 0.245667639999999993 0.290076520000000004 156 0 155 1 -0.431762219999999974 142.001999 0 0 31 false 51.9111249999999984 1.59278393579695998 0.00738617479781814024 -0.0678180800000000028 18 10 0.066789100000000004 0 19 false 154 41529.2551862972978 15.5113180899423995 2677.3501 14.1424800000000008 19 22652.6062505414993 34.2265823701132987 661.842470000000048 14.4635929999999995 18 27553.1367985217003 33.635776673835899 819.161600000000021 13.6614920000000009 1.20892479999999991 1 0.802100200000000041 0.32111263000000001 0.480987549999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.341382821937003 -63.412333100879998 22.4077611561818983 -13.1310358733707009 100002 5760 5449.58984 5879.33008 0.864499986 0.751600027 1.10430002 0.432000011 0.351599991 0.549399972 200111 1.63460110000000003 1.56891920000000007 1.82611729999999994 2.64977030000000013 2.37691700000000017 2.9226236000000001 +1635721458409799680 Gaia DR2 2481162474725018368 2481162474725018368 1345442893 2015.5 25.5884550947572009 1.10372886953162008 -3.48051324390677985 1.24486371385370997 \N \N \N \N \N \N \N 0.218859300000000007 \N \N \N \N \N \N \N \N \N 95 0 94 1 1.60624400000000001 111.419998 2.16644810394253007 0.676776358114928978 3 false 0.0192324279999999993 \N \N 0.0688560399999999934 12 8 4.75864799999999999 0 12 false 97 84.1732284171636991 1.12981786078664004 74.5016022 20.875430999999999 8 56.7212071089004013 9.61138229764645047 5.90146200000000043 20.9670239999999986 10 64.4689172146488971 9.94899927852054056 6.47994000000000003 20.238544000000001 1.43977050000000006 0 0.728479399999999999 0.0915927899999999934 0.636886599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.35654436736101 -63.4053672065480995 22.4177424371975 -13.1313486664428005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159451067932928 2481159451067932928 1677155739 2015.5 25.6134623420862013 0.442611972947255017 -3.49637471292163982 0.407700893817956989 0.541631745919028962 0.563913822995362968 0.960486700000000027 -1.4813497990606399 0.931529325409915954 -8.82886867011660037 0.682805316009926999 0.207616329999999988 0.336984930000000016 0.0339877999999999986 0.166762219999999989 -0.279763370000000011 0.143190970000000001 0.384650199999999998 -0.0498761939999999987 0.0420121700000000015 0.244041900000000006 130 0 128 2 1.40225590000000011 145.582993 1.02990486191607999 1.20456776198629001 31 false 0.118729409999999994 1.31651451657662011 0.118074993311998 0.0646536100000000002 16 10 0.848647299999999993 0 16 false 129 277.672662186377011 1.57179517831290005 176.660004 19.5795330000000014 12 99.7903779448773065 6.43492471736531968 15.5076219999999996 20.3536660000000005 12 298.688257035511015 14.2702787663339006 20.9307939999999988 18.573875000000001 1.43506610000000001 0 1.77979090000000006 0.774133700000000036 1.00565719999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.42219475153999 -63.4086774302224967 22.4355721176739991 -13.1552896922027003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159592802272128 2481159592802272128 381460939 2015.5 25.6596373852168007 0.0295543894636953984 -3.5036976981877701 0.0245118950206591017 0.836740948113222971 0.0383673508725412976 21.8086720000000014 10.2457850875076009 0.0538173912081889028 -0.0376677822615143001 0.0518810705075500034 0.111341229999999999 0.556437300000000024 -0.0164360890000000009 0.0359746550000000012 -0.274944540000000015 0.000264587960000000006 -0.0916147499999999948 -0.00937085200000000069 0.056880258000000003 0.427469549999999976 149 0 147 2 -1.75849260000000007 113.803001 0 0 31 true 60.4203100000000006 1.61252078489765993 0.0079466404493716801 0.101604239999999998 17 10 0.0636208500000000066 0 17 false 146 47337.1072001025968 16.2071361653923987 2920.76001 14.0003609999999998 16 25950.7116132529991 48.2413880018653032 537.934600000000046 14.3160150000000002 13 31151.5564497583 32.7158928157916975 952.184200000000033 13.5282199999999992 1.20628979999999997 0 0.787795070000000042 0.315653799999999984 0.472141270000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.521843461638014 -63.3949935479942965 22.4768083366728 -13.1790725253536998 100001 5884 5816 6279.5 0.796299994 0.671899974 1.03429997 0.378699988 0.313899994 0.452499986 200111 1.56781020000000004 1.37653800000000004 1.6046859 2.65443659999999992 2.37461540000000015 2.93425769999999986 +1635721458409799680 Gaia DR2 2481159485427671424 2481159485427671424 563549228 2015.5 25.6292852033465017 0.659075445392601988 -3.49570337911571016 0.650999991027602976 -0.321974060613828994 0.824644211109898051 -0.390439959999999975 -2.57208643522199987 1.22186833830152008 -5.13944434155052043 1.33353370430298002 0.374606759999999983 0.509263200000000027 -0.00709251799999999991 -0.0231936759999999999 -0.0599407370000000009 -0.101582309999999995 -0.09215922 -0.0116734839999999996 0.124768496000000007 0.420254599999999978 123 0 121 2 2.05995559999999989 149.498993 1.57360234320843007 1.17918177453691997 31 false 0.0590791260000000026 1.78088098070177003 0.193852980785591988 0.188684639999999987 14 9 1.3423731000000001 0 14 false 121 178.787792563844988 1.18357127648816007 151.057999 20.0575219999999987 12 139.956846544716996 20.7545338416918987 6.74343499999999985 19.9864029999999993 12 131.446379622193007 9.8831093238538692 13.3001039999999993 19.4650479999999995 1.51801870000000005 0 0.521354699999999949 -0.071119310000000005 0.592473999999999945 \N \N 0 \N \N \N NOT_AVAILABLE 152.453230661303991 -63.4011386679011011 22.4509049693803995 -13.1604828109972996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159558442533376 2481159558442533376 501905504 2015.5 25.6179647637090007 0.0292287967093876992 -3.48638451063576005 0.0245734509534877993 3.00043348137218002 0.0378911716610908014 79.1855549999999937 15.0243884894446005 0.0536565248033315997 -4.09660611346786041 0.0524994291275686989 0.117690580000000003 0.554140570000000054 -0.017496778000000001 0.0392049179999999983 -0.278552350000000004 0.0316705499999999987 -0.0494372920000000007 -0.0288020039999999991 0.0251008589999999997 0.444494840000000002 148 0 148 0 -4.00063369999999985 84.9802017 0 0 31 false 60.8817999999999984 1.50642691121446992 0.00787963451229902953 0.107399980000000006 17 10 0.064378829999999998 0 17 false 148 47670.4029659228036 23.6270685747231006 2017.62 13.9927434999999996 16 21128.5366590507983 55.9093485257348988 377.907039999999995 14.5392150000000004 15 38073.7565963201996 110.513424873947997 344.517029999999977 13.3103560000000005 1.24190880000000003 0 1.22885899999999992 0.546471599999999946 0.682387349999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.421419750826004 -63.3977284407554009 22.4436416655075988 -13.1476572496366 100001 5038 4860 5169 0.163000003 0.00889999978 0.30399999 0.0869999975 0.0285999998 0.158999994 200111 0.628236649999999952 0.596796899999999964 0.675098360000000008 0.229073019999999988 0.222405049999999993 0.235740990000000011 +1635721458409799680 Gaia DR2 2481159485427673984 2481159485427673984 584946176 2015.5 25.6350696350266993 0.144016358724934013 -3.48467372525266983 0.120171035326342004 0.622454760524749018 0.186152216867274012 3.34379459999999984 10.5235363331493001 0.25929200682515402 4.6496825780894504 0.217572076746296 0.0961833099999999941 0.53407115000000005 0.0355395749999999969 0.108607179999999998 -0.264892300000000025 0.0739701900000000051 0.199862050000000013 -0.00243515640000000009 0.0800980260000000027 0.276232399999999989 146 0 144 2 0.515554850000000009 147.080994 0 0 31 false 1.14448250000000007 1.49625449199981997 0.0367625242258005011 0.101704515999999995 17 10 0.244357899999999989 0 17 false 143 1273.79458085961005 2.27224844839757978 560.588013 17.925616999999999 12 456.913157812280986 5.57038980400082018 82.0253450000000015 18.7018030000000017 14 1234.3147267715101 11.0462544376915996 111.740570000000005 17.0333560000000013 1.32770849999999996 0 1.66844750000000008 0.776186000000000043 0.892261500000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.453991210765992 -63.3886938738394008 22.4605892197794006 -13.1523549050351996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159592802272000 2481159592802272000 191352344 2015.5 25.6595320099920983 0.255682950020174993 -3.49919838870420019 0.218987338789463998 2.21589623616451004 0.328083166551832006 6.75406900000000032 2.11183433158574996 0.523188460969611024 -5.01434893682893978 0.409645294916208991 0.14290217999999999 0.387990700000000022 0.14300328000000001 0.0737611060000000068 -0.270422249999999975 0.0569372500000000017 0.156527269999999996 -0.100744790000000001 0.0939382099999999942 0.252800049999999998 130 0 130 0 1.40968169999999993 147.893005 0.618200918581743974 1.19160672311121996 31 false 0.357007919999999979 1.3197076590949699 0.0760555126292400963 0.077076875000000003 15 10 0.481085959999999979 0 15 false 130 590.624472023632961 1.90206788462830989 310.516998 18.7600879999999997 12 150.577151191670993 11.2471727497327993 13.3880005000000004 19.9069900000000004 12 777.888440230099945 23.4757490035574996 33.1358299999999986 17.5346259999999994 1.57200659999999992 0 2.37236400000000014 1.14690209999999992 1.22546200000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.517209759711989 -63.3910000500562987 22.4784095560228003 -13.1748506561691006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162440365174656 2481162440365174656 1612224417 2015.5 25.5792053420909014 0.705617453069790956 -3.47446870475922998 0.801032408241348026 0.896773438501353048 0.919357659698574969 0.975434800000000046 -11.4094879281503996 1.61809665297064997 -66.3012443377419061 2.25787345914985016 0.23581162 0.358947159999999987 -0.0930146800000000024 -0.201050759999999995 -0.36419994 -0.365285130000000013 -0.498929920000000027 0.110968499999999998 0.235575349999999989 0.580158770000000046 140 0 138 2 1.12422650000000002 151.462997 1.18607802223268011 0.47169037285374299 31 false 0.0398584749999999974 1.59918842317115995 0.210421958099764994 0.07043431 17 9 2.25182819999999984 0 17 false 139 124.302268029372001 1.19427539469127009 104.082001 20.4521680000000003 11 58.4885667754283034 15.4839226770824006 3.77737400000000001 20.9337100000000014 11 159.475755033360997 11.9958277700124007 13.2942689999999999 19.2551839999999999 1.75350239999999991 0 1.6785258999999999 0.481542599999999987 1.19698330000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.332091309374988 -63.4039756965184012 22.4112153619299015 -13.1223278994773001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162543444390272 2481162543444390272 1468168913 2015.5 25.597424303685699 0.367720235265454998 -3.47150380187113994 0.329097509455155979 0.188235407734907989 0.500225774304505988 0.376300899999999994 -0.944520465025884048 0.789186717303620999 -3.29521923672432981 0.675480296809670033 0.0562774050000000026 0.312156739999999988 0.145971829999999997 -0.0421131599999999967 -0.407694639999999997 -0.150179979999999991 -0.19795407000000001 0.00495930999999999976 0.284278099999999978 0.244583949999999994 147 0 147 0 1.84478059999999999 174.645996 1.00483547252770999 1.44384439843543011 31 false 0.145449040000000002 1.63715558296096009 0.098251207848254099 0.0244666229999999998 17 9 0.737824440000000026 0 17 false 147 327.242377518736987 1.47311932472705998 222.141998 19.4011920000000018 12 237.969639680032998 13.1775846234151999 18.0586680000000008 19.4100840000000012 12 210.637325281389991 9.53141144449072009 22.0992800000000003 18.953081000000001 1.37087059999999994 0 0.457002640000000016 0.00889205900000000077 0.448110579999999981 \N \N 0 \N \N \N NOT_AVAILABLE 152.365702642101013 -63.3933462029689991 22.4296969038045013 -13.1262707850733999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163986553408896 2481163986553408896 1155385798 2015.5 25.5718595994194011 0.249362904762155002 -3.42917855531355009 0.202225907964036999 1.03027424513034993 0.317623533105412026 3.24369620000000003 7.35919441569536037 0.492973198197139972 -5.59310755554279027 0.381586738148535998 -0.0208775099999999984 0.437537549999999997 0.0221131900000000013 0.0420665849999999966 -0.35962048000000002 -0.0248002800000000009 0.0722752499999999992 0.0276424070000000008 0.128071469999999993 0.194434689999999993 174 0 173 1 3.58119630000000022 241.714996 0.827288192074770001 2.25648202162490019 31 false 0.290397760000000005 1.36210473961447009 0.0638695575959151024 0.00395193460000000003 20 10 0.444118349999999995 0 20 false 171 556.953854865079961 1.73102507387577997 321.747986 18.8238179999999993 18 160.876355809654001 7.48739767195425987 21.4862840000000013 19.8351569999999988 17 621.310704493542971 8.25318242243369049 75.2813500000000033 17.7786480000000005 1.40440190000000009 0 2.05650900000000014 1.0113392000000001 1.04516980000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.273162855363012 -63.3664518805897998 22.4213466402073998 -13.0775217397738004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163234934280320 2481163234934280320 1057182072 2015.5 25.5922244582177996 1.24690680336821003 -3.43676881657074995 1.17790915283181996 0.474812360706057979 1.84974285090514989 0.256691000000000003 -1.46818135417477991 1.92053065712601989 -3.35060350066564983 2.77906439125982985 -0.315497000000000027 0.757443960000000027 0.145433430000000002 0.151696040000000004 -0.619475899999999968 -0.462402020000000025 -0.645501259999999966 0.320367840000000015 0.404314549999999995 0.594943760000000044 116 0 115 1 -1.35030770000000011 90.5756989 0 0 31 false 0.0299077090000000011 1.36254953969355008 0.284572529942349994 0.0150950830000000005 15 8 2.91161370000000019 0 15 false 118 106.393827447689006 1.77447658091979998 59.957901 20.6210750000000012 13 81.9430809050085998 16.0064667697924001 5.11937330000000035 20.5676079999999999 13 76.2505211059626049 7.22178000569737044 10.5584109999999995 20.0563129999999994 1.48686830000000003 0 0.511295300000000008 -0.0534667970000000034 0.564762100000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.321347234358001 -63.3643904183388997 22.4378790543346014 -13.0920661692340001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163166215075072 2481163166215075072 168294759 2015.5 25.5981626764868011 0.0749750545490188991 -3.45206358809031011 0.0589724170689088015 5.13840390472070041 0.0923530046817199052 55.6387300000000025 57.9671433956924034 0.146780989539459006 -31.0715860073325985 0.126596278291991993 -0.0548814129999999969 0.463091199999999981 -0.0712694100000000053 0.0284663850000000003 -0.381759020000000004 -0.0956049340000000025 -0.21820951999999999 0.0896446199999999943 0.177657700000000002 0.289577340000000016 165 0 161 4 6.77893900000000027 307.937988 0.338785144555412976 5.9962972751291499 31 false 3.90652750000000015 1.26992463053478999 0.0184746493769123998 0.00348350750000000001 19 10 0.14360661999999999 0 19 false 161 6437.02742470716021 5.75186620162518025 1119.12 16.1666530000000002 19 1359.58786195143011 9.82617419114843926 138.363900000000001 17.5178699999999985 17 7925.29683292547998 20.760561520751299 381.747700000000009 15.0143810000000002 1.44241810000000004 0 2.50348850000000001 1.35121730000000007 1.1522713 \N \N 0 \N \N \N NOT_AVAILABLE 152.348173772387014 -63.3755474371440002 22.437753039775 -13.1084689166741999 100001 3354 3323 3584.3999 0.187000006 0.100500003 0.647099972 0.0973000005 0.0590000004 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159554148290048 2481159554148290048 1040484981 2015.5 25.6204958577722017 0.549859605211617031 -3.47303545441552997 0.516612508963081973 0.885286775879650989 0.698771783436728966 1.26691829999999994 -20.5155753713526003 0.996110285095973991 -23.5450677959801986 0.858713404213397036 0.242518929999999994 0.497092069999999997 0.106646000000000005 0.198669509999999994 -0.172218619999999989 0.11498121 0.364781619999999973 -0.00560512400000000039 0.130739479999999991 0.268216759999999999 140 0 140 0 3.80156420000000006 206.709 1.6613313957518101 1.94980882715014991 31 false 0.0747956199999999932 1.17577934184595989 0.142403851041812995 0.134179319999999991 16 10 0.952319559999999954 0 17 false 140 214.599582246208001 1.55030770298156995 138.423996 19.859293000000001 11 54.3555655212909983 8.46873195194065076 6.41838300000000039 21.0132790000000007 14 290.126144560212026 11.0427957401947001 26.2728879999999982 18.6054530000000007 1.60523009999999999 0 2.40782549999999995 1.15398599999999996 1.2538395 \N \N 0 \N \N \N NOT_AVAILABLE 152.413408326584005 -63.3846248417805 22.4511025688729013 -13.1361771526489992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159867680178432 2481159867680178432 548088704 2015.5 25.640933577165999 0.0437963890695389976 -3.47233907635391015 0.0378579908650686012 4.19206087328580956 0.0566125734401652994 74.0482300000000038 20.3991940595526984 0.0803369528016425055 -45.9468862720594018 0.0867849091198631961 0.149919780000000002 0.576010169999999988 -0.0863199159999999965 -0.0243358870000000005 -0.247999730000000002 -0.103950520000000005 -0.259973820000000022 0.0287025049999999997 0.0633082400000000017 0.504603400000000035 141 141 137 4 0.194669869999999995 134.511993 0 0 31 true 280.556150000000002 1.56902601729181002 0.0120853415150006006 0.118890986000000004 16 10 0.0603108200000000011 0 17 false 134 194955.08011417801 44.3193791137297026 4398.87012 12.4635300000000004 17 95034.4144290710974 144.11396763125299 659.439330000000041 12.9066860000000005 16 142056.194028186001 91.8261938428507989 1547.01170000000002 11.8807700000000001 1.21612940000000003 0 1.02591610000000011 0.443156239999999979 0.582759860000000018 26.2996133884480017 2.52177347998641999 5 5500 4.5 0 NOT_AVAILABLE 152.453631068888001 -63.3750418865116032 22.4708422119155991 -13.1430426577798993 100001 5118.25 5024.06982 5245 0.0700000003 0 0.275999993 0.0463000014 0 0.134100005 200111 0.874211999999999989 0.832470359999999965 0.907294869999999976 0.472513530000000015 0.464007400000000014 0.481019650000000021 +1635721458409799680 Gaia DR2 2481162994416369536 2481162994416369536 1437666744 2015.5 25.6273313332405017 0.0946800564411073992 -3.44478658691198003 0.0753916296051842932 0.257851341143979007 0.117228530310679993 2.19956139999999989 -0.91024531334285097 0.183412280640497999 -3.75588373257826014 0.137367895784412997 0.101173059999999995 0.462632659999999973 -0.0860626399999999958 0.11488719 -0.25793640000000001 0.0875888900000000026 0.177438129999999999 0.0355030929999999995 0.0776478899999999972 0.257062259999999987 141 0 141 0 1.94312740000000006 169.856003 0.161483380828277012 0.561779029426905052 31 true 2.82831980000000005 1.52383903225438 0.0225925751301955004 0.0670818400000000037 17 10 0.170346439999999988 0 17 false 137 3030.96252486508001 3.51400177626701016 862.539001 16.9844149999999985 15 1467.75906532590989 14.2316244773889995 103.133629999999997 17.4347519999999996 13 2314.50060035393017 13.2712698002641005 174.399339999999995 16.3507770000000008 1.24787409999999999 0 1.08397480000000002 0.450336459999999994 0.633638400000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.399438513169997 -63.3562462389878007 22.4682985876921997 -13.1124264677319999 100001 4919.81982 4381.9502 5155.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162921401516800 2481162921401516800 18743878 2015.5 25.6358657968709984 0.530725136607609005 -3.44783823866570982 0.442703614163617976 1.80057252748265006 0.642155483896709955 2.80395100000000008 -8.54445760391589992 1.00753052264394993 1.98173465592015008 0.722617606934471968 0.163512889999999994 0.454328860000000001 -0.111294955000000001 0.212143439999999989 -0.160857869999999986 0.134277210000000008 0.338745179999999979 0.102250754999999999 0.139161599999999996 0.199517680000000003 122 0 120 2 4.7576236999999999 202.322006 1.66596469181931006 3.28726153985676017 31 false 0.0977501350000000019 1.50830443450102991 0.130831769181285001 0.070898409999999995 14 10 0.907332660000000013 0 14 false 117 287.388174138763986 1.35360011639833999 212.313995 19.5421939999999985 10 76.856214879202696 16.5344971955103013 4.64823439999999977 20.6371900000000004 12 347.214291255619003 9.39910033464873962 36.9412269999999978 18.410425 1.47560179999999996 0 2.22676469999999993 1.09499550000000001 1.13176919999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.419494728158014 -63.3552508476013969 22.4752772986441016 -13.1184007214322005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163093201349504 2481163093201349504 908647154 2015.5 25.6317918753724001 0.747721754249329962 -3.43044110070285013 1.13231116083455996 0.29425631967761201 0.979273581046314012 0.300484269999999998 -3.61930359399427992 1.69258979743055993 -9.27141553956940001 2.75179233508344989 0.475010099999999991 0.149161600000000005 -0.275754060000000023 -0.418220599999999998 -0.462653580000000009 -0.648372529999999947 -0.805106600000000006 0.366872160000000003 0.54816233999999997 0.662578800000000023 119 0 119 0 1.65453800000000006 140.085999 0 0 31 false 0.0497723519999999989 1.22889552104049993 0.214910230781968997 0.167466449999999989 14 8 2.85310079999999999 0 14 false 115 133.722611620000009 1.41824125786985 94.2875977 20.3728540000000002 6 104.336049449067005 14.0865709315912007 7.40677400000000041 20.3053020000000011 7 154.810199576150012 13.8860932435757007 11.1485789999999998 19.2874200000000009 1.93793890000000002 0 1.01788140000000005 -0.0675525700000000062 1.08543400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.394333306498993 -63.3414012441702994 22.4779727209262994 -13.1007285404922005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163024480733056 2481163024480733056 906918443 2015.5 25.6409328260618992 0.473671323168997016 -3.44033567419474018 0.458130701851563016 -0.529863157585498956 0.603299484141131992 -0.878275499999999987 0.0825327501032740024 0.870402980728119946 1.12935933522631005 0.732041658974974974 0.235430510000000009 0.475356700000000021 0.219892589999999999 0.213947899999999996 -0.185043449999999998 0.137858540000000002 0.487754369999999993 -0.0847665100000000032 0.111440144000000005 0.223522589999999993 140 0 137 3 1.94201470000000009 165.358994 1.3917348517177901 2.44010443069501992 31 false 0.109491179999999994 1.53038298205431 0.118942625156575998 0.140746270000000007 16 10 0.830311829999999973 0 16 false 137 284.161793266532982 4.25967187959351001 66.7098007 19.5544510000000002 13 227.466203733621995 22.9599664559952004 9.90707899999999952 19.4590969999999999 14 191.848302326524987 13.7281695199453004 13.9747920000000008 19.0545250000000017 1.4756187999999999 0 0.404571530000000013 -0.0953540799999999938 0.499925600000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.422285779258999 -63.3462896289131976 22.4829423455388984 -13.1132876969207999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158454635517696 2481158454635517696 431731508 2015.5 25.6632459520502998 0.281776600329454008 -3.50995884287718996 0.231860221997397004 3.04599773433599985 0.361974979901103999 8.41493999999999964 -18.8215549915964004 0.557805512520221036 -36.2697763230953001 0.392930677458208977 0.100958099999999995 0.415380899999999997 0.198271040000000009 0.112395949999999994 -0.276075300000000023 0.0907680899999999957 0.311162600000000011 -0.117992130000000001 0.0965482899999999949 0.17607985000000001 138 0 137 1 2.78584860000000001 181.809006 0.791117820273780969 1.78989192887362991 31 false 0.310118530000000003 1.39977577394739994 0.0704816156796675974 0.0586026899999999989 16 10 0.503359699999999965 0 17 false 138 561.646078931491047 1.61811012364027995 347.100006 18.8147090000000006 16 119.522655871831006 8.23688146843871039 14.510669 20.1577629999999992 15 739.693322181120948 7.39501689737242973 100.025919999999999 17.5892899999999983 1.52981750000000005 0 2.56847199999999987 1.34305380000000008 1.22541809999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.535222108397988 -63.3990287023375032 22.4778796171842998 -13.1862200433414003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159622866625920 2481159622866625920 730186894 2015.5 25.678508210156501 0.401696576043096998 -3.4901075003563502 0.356800240379878009 1.56147292958143002 0.526541118982634004 2.96552900000000008 1.51934712404004002 0.751339410371297034 -4.83982717185500988 0.600812766264582021 0.141575620000000013 0.478721019999999997 0.0905421750000000025 0.147462430000000005 -0.264736650000000018 0.104957670000000003 0.329279900000000014 -0.0344464780000000026 0.084680430000000001 0.241606180000000004 149 0 148 1 4.10279940000000032 223.313004 1.35548015700263003 2.73902456662159999 31 false 0.133823749999999991 1.26447440974170999 0.104948990812349 0.111409253999999999 17 10 0.693690499999999988 0 17 false 148 330.883077829798992 1.6763709303946901 197.380997 19.3891799999999996 13 94.8012319189442962 8.81845166189756036 10.7503259999999994 20.4093529999999994 13 425.654215413441989 11.5400340673295005 36.8850059999999971 18.1892780000000016 1.57292849999999995 0 2.22007559999999993 1.02017399999999991 1.19990160000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.546228495002993 -63.3744963867749007 22.4999335588302998 -13.1733727366111992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159725945842816 2481159725945842816 983994729 2015.5 25.6820428272999983 1.00884328565259995 -3.48287986120503978 1.23020018974098999 -0.533633689462627014 1.11555359921045993 -0.478357729999999981 -2.28816867245887012 2.18493304038553982 -0.0818946346563422939 3.05072530058283986 0.518939200000000045 0.352679819999999977 -0.300298930000000019 -0.301926020000000017 0.0137763060000000003 -0.348234329999999981 -0.510786100000000021 0.0452265499999999973 0.0665183699999999933 0.554810499999999984 88 0 87 1 -0.0775869500000000017 80.3508987 0 0 31 false 0.0322510150000000009 1.85154490683236994 0.346459929160474023 0.154397620000000013 10 8 3.05501129999999987 0 10 false 87 105.718006599467003 1.5022763010692699 70.3719025 20.627993 6 77.1386823699484978 17.0731258224612006 4.51813459999999978 20.6332069999999987 6 88.4844611404318044 21.3877671186376013 4.13715269999999968 19.8947530000000015 1.56665030000000005 0 0.738454799999999967 0.0052146909999999996 0.73324009999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.546189608927989 -63.3664536398511018 22.5060353281700003 -13.1679517188609001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159725945842176 2481159725945842176 959549467 2015.5 25.6893904755444993 0.288375039248006004 -3.48543149069661995 0.246421027044168989 1.7275270155214999 0.375214232973114015 4.60410830000000004 28.6901925504542987 0.541928836599970043 -15.6526531769564006 0.416216224936198975 0.0970297100000000051 0.471184050000000021 0.0372934229999999992 0.141946879999999998 -0.290619400000000028 0.106924989999999998 0.284598919999999977 -0.00859208499999999931 0.0846409199999999945 0.234967509999999991 144 0 143 1 3.46796000000000015 203.139999 0.984283645643757032 2.89672336627837002 31 false 0.270503549999999982 1.29691837873956994 0.0740406168962881028 0.0953751949999999959 17 10 0.49471896999999998 0 17 false 144 553.106599124570948 1.78186120870200004 310.408997 18.8313430000000004 15 151.998358823858013 7.57215144189579981 20.0733379999999997 19.8967910000000003 13 656.494402882343024 9.4498401739215101 69.4714799999999997 17.7188419999999986 1.46173050000000004 0 2.17795000000000005 1.06544879999999997 1.11250110000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.563383693437999 -63.3655117764783 22.5120737223896015 -13.1730242031644007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158729513426176 2481158729513426176 908030086 2015.5 25.7226762912690994 0.106496122199007004 -3.50164511268377021 0.0896060700807561061 0.0795746772532378993 0.13511752301138899 0.588929359999999957 -0.908401695092364014 0.201814520906631989 -4.21174501984035032 0.170177740038329001 0.0476368439999999976 0.495136650000000011 0.029584876999999999 0.0567488300000000001 -0.271484940000000008 0.0246741120000000015 0.19786838000000001 -0.0118947600000000007 0.0662867399999999968 0.205854399999999993 140 0 137 3 2.24855779999999994 171.214996 0.307406708789929983 1.81982782316210989 31 true 2.11421629999999983 1.55329039912370992 0.0262399066344849996 0.0842434299999999942 16 10 0.18712123 0 16 false 135 2653.33241138018002 4.55342743825721019 582.710999 17.1288869999999989 15 1386.26262588462009 14.5744980932692005 95.1156299999999959 17.4967749999999995 14 1857.92850289635999 16.0765083382672991 115.567909999999998 16.5893480000000011 1.22268559999999993 0 0.907426830000000018 0.367887499999999978 0.539539340000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.645848682625001 -63.3653952029594976 22.5376711522719013 -13.2003295732731996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158729513427968 2481158729513427968 249126949 2015.5 25.7284254922786992 0.469767756077723975 -3.49288244713690021 0.479214655514105026 0.587822123465287949 0.597491897051766974 0.983816099999999971 3.23994642261776011 0.960916045132752972 -15.4615542152337007 0.826653376004861995 0.223952869999999998 0.365594860000000021 0.184657280000000007 0.126123440000000003 -0.16677749 0.0258478800000000002 0.395678160000000001 -0.0972798599999999958 0.157109990000000005 0.141847200000000007 124 0 124 0 1.98012319999999997 151.451996 0 0 31 false 0.101166110000000004 1.16884273704030006 0.133628759130635988 0.0935332700000000017 15 10 0.875387669999999951 0 15 false 124 223.55574553400001 2.0868528991602 107.125999 19.814900999999999 8 71.4434302116574003 12.6427337077524005 5.65094799999999964 20.7164819999999992 9 350.452349174116023 29.5699924601291997 11.8516220000000008 18.400347 1.88720620000000006 0 2.31613539999999984 0.90158079999999996 1.4145546 \N \N 0 \N \N \N NOT_AVAILABLE 152.648691405178994 -63.3549985704375018 22.5464643087301013 -13.1942942460983996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160481860087808 2481160481860087808 1528386141 2015.5 25.7166870190070007 2.74657164192780989 -3.47481500156425982 2.7923208227043399 \N \N \N \N \N \N \N 0.132911499999999988 \N \N \N \N \N \N \N \N \N 100 0 100 0 48.5661849999999973 3560.6001 14.9737973248545995 197.065655913560988 3 false 0.00410918570000000025 \N \N 0.131943119999999997 14 9 6.22115229999999997 0 14 false 123 281.896461255598012 3.01365112208661001 93.5398026 19.5631400000000006 10 419.127306255577992 19.6313137539269995 21.3499370000000006 18.7955229999999993 13 836.990918546139028 8.99525620024090955 93.0480349999999987 17.4551179999999988 4.45595599999999958 0 1.3404045 -0.767618200000000028 2.1080226999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.607463965313997 -63.3439647772110987 22.5421050424831009 -13.1731826181868001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159798960701568 2481159798960701568 246110891 2015.5 25.6727693191126995 0.0285283026182993997 -3.47031547746638003 0.0235804009000220999 2.75151725753153986 0.0365830626538986015 75.2128749999999968 1.96080043780838009 0.0505039322223923975 0.00248547772936480015 0.0512042019853488975 0.0618001670000000031 0.58766145000000003 0.00788807799999999976 -0.0135855790000000004 -0.264128949999999973 -0.0459834149999999997 -0.0131669760000000004 -0.000401536349999999983 0.0437561760000000008 0.343851770000000001 139 0 138 1 -4.62227199999999971 70.5218964 0 0 31 false 90.0568700000000035 1.54542221188111006 0.0080799439620147101 0.0825114900000000068 16 10 0.0599275100000000033 0 16 false 137 69975.6406551871041 17.6538904687526994 3963.75 13.5759980000000002 15 33347.1459289640989 51.3261080330456991 649.711199999999963 14.0437410000000007 15 52288.3280836703998 44.8089875102329032 1166.91609999999991 12.9659080000000007 1.22378980000000004 0 1.07783319999999994 0.467742920000000006 0.610090259999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.515311660678009 -63.3592498066447973 22.5019474585276988 -13.1528619538092002 100001 5062 4936 5221.9502 0.0329999998 0.00800000038 0.386799991 0.0149999997 0.00490000006 0.163299993 200111 0.820173440000000031 0.770698549999999982 0.862580600000000031 0.397919000000000023 0.385639159999999981 0.410198840000000009 +1635721458409799680 Gaia DR2 2481160000823753088 2481160000823753088 645485709 2015.5 25.6649320589012007 0.555610003952069054 -3.45873389081177018 0.512929636036139946 0.405950205146625998 0.721959886713787968 0.562289099999999986 -1.90546115129789007 1.05302868635456992 0.979500759963173984 0.848567396746667035 0.14308557999999999 0.464197399999999982 0.0942851900000000048 0.148575230000000003 -0.234975459999999997 0.0689308399999999932 0.387141530000000011 -0.0216638330000000004 0.108462370000000002 0.180052500000000004 140 0 138 2 2.09054800000000007 169.307999 1.47154447719664994 1.55453894519703995 31 false 0.0719213699999999984 1.65588001694055009 0.148298517723128992 0.078619720000000004 16 10 0.956862100000000049 0 16 false 138 197.372453866882012 1.6779405815336299 117.627998 19.9501500000000007 10 95.9323470542747998 15.5441451070074006 6.17160650000000022 20.3964749999999988 9 211.269069033846989 6.21567141849746996 33.9897419999999997 18.9498309999999996 1.55645539999999993 0 1.44664379999999992 0.44632529999999998 1.00031850000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.488283236168996 -63.3522916545732002 22.4988570170842017 -13.1392137052040994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253459312157440 2481253459312157440 254859509 2015.5 25.1799903327144001 2.04533509547160985 -3.50539711598535009 2.05260586705357007 \N \N \N \N \N \N \N 0.104891590000000007 \N \N \N \N \N \N \N \N \N 96 0 95 1 30.2358669999999989 1406.18994 11.0007017732123007 209.891268499500001 3 false 0.00763919440000000033 \N \N -0.0129292000000000001 13 7 4.54879429999999996 0 14 true 110 259.116105879316024 3.76861347702052019 68.7563019 19.6546289999999999 10 383.80873102976102 15.5708540312338002 24.6491779999999991 18.8911020000000001 9 850.130037932673986 14.3410109436275999 59.2796439999999976 17.438206000000001 4.76210739999999966 0 1.45289610000000002 -0.763526900000000008 2.21642299999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.556727520841008 -63.6041847153061966 22.0192978463413986 -13.0040638256195002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160005119131648 2481160005119131648 943318569 2015.5 25.6643895556342017 0.0380046236551504005 -3.45420719953366007 0.0311527778959223983 1.11517893276122004 0.0485417519973009998 22.9736019999999996 2.98238546021012008 0.0698956540540812965 -9.1652041640069406 0.0647948657307396009 0.104784760000000005 0.541615599999999975 -0.0364993919999999986 0.0471086539999999998 -0.262980250000000026 0.042836922999999999 -0.00776197759999999997 -0.0168732099999999996 0.0314883099999999985 0.387438740000000004 147 0 146 1 -0.409260779999999991 133.593994 0 0 31 false 24.2547999999999995 1.60070849792911996 0.0104450041889822993 0.100938219999999995 17 10 0.0768801939999999989 0 17 false 146 19705.7566623511011 8.72408507135109978 2258.78003 14.9518830000000005 15 10601.7441465444008 37.7545513653664031 280.807039999999972 15.2879450000000006 15 13325.2451184883994 22.7344810838478004 586.124900000000025 14.4502319999999997 1.21421310000000005 0 0.837713240000000026 0.336061480000000024 0.501651760000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.482760640139986 -63.3484643439622985 22.5000513831286 -13.1348056044753001 100001 5775 5470.25977 5808.25 0.0170000009 0.00800000038 0.0590999983 0.00800000038 0.00340000005 0.0228000004 200111 0.790288149999999967 0.781265850000000039 0.880791250000000026 0.625854800000000044 0.565727949999999979 0.685981630000000009 +1635721458409799680 Gaia DR2 2481161581371722496 2481161581371722496 1597838764 2015.5 25.6702766636283997 0.385158929916316006 -3.43276370133418984 0.357803711758993004 0.0490218523735469966 0.498805195888836983 0.0982785500000000062 3.2742249954685998 0.745093846075513988 -0.840413608359316 0.609665577900775024 0.110785334999999999 0.452462819999999988 0.114451310000000001 0.109236890000000003 -0.243505940000000004 0.0423632820000000021 0.385052799999999973 -0.0456552699999999978 0.0924302899999999983 0.151532009999999995 141 0 140 1 1.69949480000000008 164.134995 0.963830542883974961 1.34806421719983005 31 false 0.144573730000000011 1.66767203276067999 0.103059567632620003 0.090771660000000004 16 10 0.672560449999999976 0 16 false 140 317.10928969516101 1.51944254825448999 208.701004 19.4353429999999996 14 216.617147934642986 23.6919772381457996 9.14305899999999916 19.5121560000000009 14 218.139258805819992 6.51647859027333975 33.4750200000000007 18.9150850000000013 1.37099860000000007 0 0.597070699999999954 0.0768127440000000022 0.520257949999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.473512304541003 -63.3266209512499998 22.5137678161175003 -13.1170315044824992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164536309223808 2481164536309223808 1207350539 2015.5 25.6717134230801989 0.103336007140812994 -3.4257889189536499 0.0861430723723523029 1.99932094575936992 0.130741892038502006 15.2921220000000009 10.9314656987472993 0.195618973373284988 -9.45886509898149086 0.156093478088625004 0.0583137800000000026 0.495184400000000025 0.0635028799999999977 0.073232143999999999 -0.248825180000000007 0.0341110449999999996 0.280459820000000026 -0.0308368819999999995 0.0713149299999999986 0.170607120000000001 140 0 140 0 2.18162820000000002 173.326004 0.22100775369638101 0.921125795086927046 31 false 2.29145809999999983 1.38610083639241011 0.0268226858594305013 0.0832584650000000037 16 10 0.178777490000000011 0 16 false 140 2524.96517349067017 3.11586171124258993 810.359009 17.1827280000000009 15 780.517955311887022 7.10874294651260019 109.796906000000007 18.1204299999999989 14 2643.8216775491901 17.9508028549239 147.28152 16.2063389999999998 1.35619280000000009 0 1.91409110000000005 0.937702200000000041 0.976388930000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.469552611331011 -63.3197257252891035 22.5177732794479013 -13.1110744361984004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091321600 2481161650091321600 453588279 2015.5 25.7062115939085984 1.43794246712732998 -3.42633635808934001 1.42751840560969989 3.26584243872251978 2.13363227749597995 1.53064920000000004 3.58206355505358021 2.32090977048195013 -6.39522245027848957 3.43984001724526012 -0.27704898 0.731402600000000014 0.1416964 0.0670813499999999979 -0.620251400000000008 -0.434921149999999979 -0.494076159999999986 0.333340640000000021 0.349018930000000005 0.575403600000000015 75 0 75 0 0.646888499999999977 77.2225037 0 0 31 false 0.02970128 1.76371657946543992 0.371305563493570023 0.099293864999999995 10 8 3.47990369999999993 0 10 false 76 108.423582709125 1.53016415282634011 70.8574982 20.6005549999999999 5 27.9123784198543987 7.63579113532293974 3.65546660000000001 21.736896999999999 7 136.94179959393 11.8760498431414998 11.5309220000000003 19.4205800000000011 1.52046419999999993 0 2.31631659999999995 1.1363411000000001 1.17997550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.538941964195999 -63.3050647361063028 22.5504433484749001 -13.1242583260395005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161276429464576 2481161276429464576 1518712178 2015.5 25.7177112850987015 0.0477350441527805008 -3.45798472298890003 0.0405375295111621015 2.07642202612113991 0.0604412547077314982 34.354379999999999 37.6403073662176979 0.0890253132460159941 -7.86996760035335008 0.0887806400137896995 0.0835785899999999943 0.535570100000000049 0.0108840139999999991 -0.0114398620000000003 -0.247670019999999991 -0.0311583560000000016 0.00395019350000000002 -0.0215229819999999995 0.038731164999999998 0.325523320000000005 131 0 131 0 -2.58775699999999986 88.694603 0 0 31 false 13.2936130000000006 1.42584365605933994 0.0137588196151379998 0.108950465999999996 15 10 0.0960667359999999998 0 15 false 130 10782.1195607665995 7.22501289817869985 1492.32996 15.6066059999999993 14 3891.92195409331998 19.3584953394960984 201.04464999999999 16.3759779999999999 14 10034.7192902077004 25.8741010073930013 387.828700000000026 14.7581570000000006 1.29164229999999991 0 1.61782169999999992 0.769372940000000005 0.848448749999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.592956482315998 -63.3284110139150016 22.5494429157424996 -13.1579100130424003 100001 4379 4244 4566.85986 0.648000002 0.390300006 1.00699997 0.331699997 0.180000007 0.477499992 200111 0.634873099999999968 0.583715740000000038 0.675905599999999995 0.133526759999999994 0.125194090000000008 0.141859430000000009 +1635721458409799680 Gaia DR2 2481161650091200768 2481161650091200768 66892744 2015.5 25.7096733025149007 0.422510414432145986 -3.42615484374737012 0.285935433986651 1.4771759791279 0.577540358241361962 2.5577017999999998 18.5938820239998996 0.572705992656452945 2.15664556004005981 0.490482937631733007 -0.247386660000000008 0.746398200000000012 0.058008841999999998 0.10511007 -0.500262899999999955 0.0492775000000000019 0.0669344139999999976 0.0320793759999999997 0.0813023199999999974 0.315539499999999973 124 0 122 2 2.41726200000000002 157.195999 1.05533426411621001 2.83125627630225996 31 false 0.254228059999999978 1.3615538436227701 0.0904397060468116049 0.0676437700000000058 15 9 0.575304570000000015 0 15 false 120 554.93376344911303 1.77971687060098005 311.809998 18.8277630000000009 12 105.264753355989995 9.57140481698450962 10.9978370000000005 20.2956809999999983 10 727.200100960307964 14.9951280749586999 48.4957580000000021 17.6077839999999988 1.50011580000000011 0 2.68789670000000003 1.46791840000000007 1.21997829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.545669105465009 -63.3033795229342005 22.5538111320497983 -13.1253612416773002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351453289229056 2481351453289229056 1501239143 2015.5 25.4950024874349985 3.04002688819582989 -3.42637357128844 3.53940025415644 \N \N \N \N \N \N \N 0.36709172000000001 \N \N \N \N \N \N \N \N \N 70 0 69 1 12.8528230000000008 345.290985 13.4049879736998996 18.2627113270016999 3 false 0.00375080759999999987 \N \N 0.173868090000000003 8 7 12.3610190000000006 0 8 false 69 76.1272191107601941 1.3211596562258201 57.6214981 20.9845159999999993 6 57.9590241551399004 9.8092015221951101 5.90863850000000035 20.9435859999999998 5 154.998734579787993 3.28744064778507017 47.1487539999999967 19.2861000000000011 2.79739300000000002 0 1.65748600000000001 -0.0409297939999999985 1.69841580000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.116318610949008 -63.3973633019030984 22.3491913449217989 -13.0466459001857 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351590725364736 2481351590725364736 662668795 2015.5 25.5027883441767997 0.359013462413137974 -3.40863183067471986 0.283973982249147994 1.62553393012036995 0.450285810071524017 3.61000500000000013 13.4255658072046007 0.681718719634161974 1.82149444976311004 0.526224481824819956 0.037443746 0.482804149999999987 0.0546951030000000019 0.0646326499999999998 -0.266613500000000003 -0.0207147709999999999 0.113103079999999995 0.0176924079999999997 0.147832920000000007 0.183792399999999995 171 0 169 2 4.0846309999999999 248.774994 1.29276874327233005 3.11252903049937002 31 false 0.147812219999999994 1.29967723069375007 0.0943123364133740955 0.0237952339999999984 19 10 0.612300999999999984 0 19 false 170 354.605888289148027 1.5492539739190101 228.888 19.3140010000000011 18 78.8427273000132942 9.7586486510814705 8.07926699999999975 20.6094839999999984 16 436.926818170516981 8.85276727749437953 49.3548279999999977 18.1608979999999995 1.45448669999999991 0 2.44858550000000008 1.29548259999999993 1.15310289999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.114724879640988 -63.3780070667448001 22.363319058919501 -13.0330171772687002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163917833935616 2481163917833935616 1431730377 2015.5 25.5231562212971994 0.170373100188266013 -3.41490643742963984 0.120317004121450993 3.35882820514646019 0.210584315228548008 15.9500399999999996 -35.252789456391298 0.298270647021638025 -30.8562510628241 0.215081574471921999 0.0483290070000000002 0.5546373 0.0122388589999999995 0.127613169999999998 -0.209642980000000007 0.0293052 0.107780570000000006 0.0428287649999999978 0.171317200000000003 0.189575049999999995 160 0 159 1 32.5805930000000004 1722.06006 1.02641478241371997 66.3474889375203958 31 true 0.83414566999999995 1.40122900154857999 0.0373775000413901978 0.0622783380000000025 18 10 0.268356859999999975 0 18 false 158 8058.8407484695399 9.7681309588968297 825.013977 15.9226849999999995 15 2092.17312937834004 12.4216434343878994 168.429660000000013 17.0498939999999983 15 9191.69263155703084 14.5843507175219003 630.24350000000004 14.8534319999999997 1.4001847999999999 0 2.19646259999999982 1.12720970000000009 1.06925300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.161668347047993 -63.3748115284248001 22.3803470675612992 -13.0463423201927 100001 4011.83008 3538 4747.10986 1.06130004 0.711499989 1.39260006 0.502499998 0.328000009 0.648999989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351556365046528 2481351556365046528 1584136717 2015.5 25.4917053344786986 0.470491626770417004 -3.39932898595254995 0.415519145814488011 0.14184895621395599 0.598537925232692003 0.236992430000000004 -0.251575037281559 0.989412902137983052 -0.538505270477264042 0.770105093418710029 0.126412940000000001 0.368551850000000014 0.216350299999999995 0.0323972199999999974 -0.192352999999999996 -0.0130053500000000006 0.287078600000000017 -0.152388140000000005 0.121199875999999998 0.119092785000000007 152 0 150 2 0.476759969999999977 152.580994 0 0 31 false 0.0904749700000000018 1.69417924036212009 0.136800621042768994 0.046478499999999999 17 10 0.885427500000000034 0 18 false 150 194.742132792252988 2.66869192317271997 72.9729004 19.9647159999999992 13 99.4920629163682975 18.2202568870890005 5.46051929999999963 20.3569159999999982 13 110.111996737032996 8.48354816216182961 12.9794739999999997 19.6573330000000013 1.07631589999999999 0 0.699583049999999984 0.392200470000000023 0.307382580000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.083469066138008 -63.3744354954201015 22.3562814179942997 -13.0202919667401993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351663739917824 2481351663739917824 1237658832 2015.5 25.5007401323195992 0.311689861183238992 -3.40365157016067998 0.242471197149875001 2.10589649371333998 0.388547020529612985 5.41992700000000038 7.93094151216762988 0.601974870400960982 -21.8706935644398008 0.417271400135854009 0.00808555499999999948 0.455658500000000022 0.027759787000000001 0.0949503200000000047 -0.298718419999999985 0.0333006419999999984 0.240128200000000014 0.0128429159999999994 0.116686659999999998 0.143225309999999995 177 0 175 2 3.46176430000000002 241.311005 1.12134010679514007 3.1468677869269599 31 false 0.197454619999999997 1.39796503962983998 0.0772187468931144066 0.00510459300000000015 20 10 0.533571099999999965 0 21 false 175 432.282823143127985 1.44305105527799005 299.562012 19.0989460000000015 19 105.1597713261 12.5589294606963993 8.3733070000000005 20.2967639999999996 18 537.913942954250047 10.0832087293496002 53.3474959999999996 17.9351389999999995 1.48762259999999991 0 2.36162569999999983 1.19781880000000007 1.16380689999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.105785329870997 -63.3744105887960032 22.3632519096844007 -13.0276339553663991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351659444841728 2481351659444841728 1199228012 2015.5 25.502678219777799 0.155043307723679996 -3.40210641350215992 0.118916577752202005 1.88451831881755005 0.191527463804571002 9.83941599999999994 8.02727269161823997 0.298007977771632016 -22.1904102280682984 0.222108227536643998 -0.000944477739999999961 0.465233400000000019 0.0221522169999999984 0.0660291900000000015 -0.305926900000000002 -0.0155897569999999992 0.0626036700000000002 0.0342196229999999976 0.15039248999999999 0.190617499999999995 170 0 168 2 3.98636819999999981 245.212997 0.547546531266900005 2.96612395219981018 31 false 0.82759963999999997 1.34813907947230005 0.0400600985603350029 0.0198243469999999991 19 10 0.26884574 0 19 false 161 1261.19446197925004 2.13101758396358987 591.827026 17.9364099999999986 16 341.851443639203978 11.8069833060463001 28.9533270000000016 19.0167940000000009 15 1405.41803284503999 5.9392043192295203 236.634060000000005 16.8924060000000011 1.38540839999999998 0 2.12438770000000021 1.08038330000000005 1.04400439999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.10817466359299 -63.3721781558940975 22.3656823817694992 -13.0269104782132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351865602694272 2481351865602694272 1553858071 2015.5 25.4924351384856998 0.376434644784677974 -3.38888315984788013 0.284981637574391988 1.33686896798034005 0.456876744755738973 2.92610429999999999 17.2094903906464012 0.772809680786677 3.45717300736919997 0.493481073835546014 0.0225347969999999988 0.396893769999999979 -0.0790131200000000061 0.0934494200000000053 -0.276377079999999997 0.0104152120000000001 0.232513770000000008 0.0653422099999999978 0.132053969999999993 0.109152269999999996 169 0 168 1 1.72840140000000009 195.488007 0.974621437441969052 1.43559791403570003 31 false 0.140411559999999991 1.32890079203141998 0.0942773128703811997 -0.0288644379999999992 19 10 0.681580659999999949 0 19 false 168 311.862898300490997 1.27891541057048008 243.850006 19.4534570000000002 14 76.8276980047346996 9.00540899027697073 8.53128300000000017 20.637594 17 422.378783473427973 4.35620554881276956 96.960250000000002 18.1976639999999996 1.60072419999999993 0 2.43992999999999993 1.18413729999999995 1.25579259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.074813560541003 -63.3647095492041998 22.3609275170233985 -13.0108497903603997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351625085102976 2481351625085102976 655157852 2015.5 25.5191851218343011 0.0367480775385106984 -3.39101336912833018 0.0299073442626526 0.937924225175746029 0.0452667289643405024 20.7199479999999987 9.46816120308811016 0.0668173406316626001 -1.07639622142423996 0.0649136414783095944 0.0305390190000000006 0.540929199999999999 -0.0667079200000000039 0.0259430670000000002 -0.293250200000000016 -0.198191850000000003 -0.396122719999999984 0.165827959999999996 0.263391399999999998 0.350833769999999989 169 169 168 1 -0.237031390000000008 158.102997 0 0 31 true 388.346830000000011 1.52240208392772991 0.00955206299465696969 0.0152564299999999996 19 10 0.0485267200000000024 0 19 false 165 287094.847250233986 66.2723544253825025 4332.0498 12.0433029999999999 18 126472.389820734999 166.448833835543013 759.827449999999999 12.5963989999999999 19 226986.323406790994 355.912440018600023 637.75890000000004 11.3719210000000004 1.23115660000000005 0 1.22447869999999992 0.553096800000000055 0.671381950000000005 52.2953343908983967 1.4190499436403099 5 4500 3 0 NOT_AVAILABLE 152.130515224411994 -63.3550241702540973 22.3856008209710993 -13.0226696589023003 100001 4897.87988 4829.70996 4983.25 \N \N \N \N \N \N 200111 5.3014064000000003 5.1213160000000002 5.45210740000000005 14.5716149999999995 13.5792660000000005 15.5639649999999996 +1635721458409799680 Gaia DR2 2481352071761702272 2481352071761702272 853649647 2015.5 25.5184331325192986 0.546018109317984002 -3.38380377062745019 0.490434170678109016 2.16320937897499022 0.700937947467276001 3.08616400000000013 -0.414079747626670991 1.12174217133849008 0.503562666505563028 1.06466977966977994 0.0592323699999999995 0.399012800000000001 0.0865288699999999938 -0.0319644850000000008 -0.328371550000000012 -0.116002830000000001 -0.115243670000000006 0.00291423379999999985 0.176605139999999994 0.27538269999999998 151 0 151 0 0.900732599999999994 161.225998 0 0 31 false 0.0619975330000000005 1.77507346481930006 0.172309200096072007 0.0359390269999999984 17 10 1.08908549999999993 0 17 false 149 159.432225069816013 1.16108973955883998 137.313004 20.1819249999999997 14 101.398383733272993 6.34532546426962973 15.9800129999999996 20.3363109999999985 15 105.138632691591994 9.60767371413964 10.9431930000000008 19.7075139999999998 1.29545339999999998 0 0.628797530000000049 0.154386519999999999 0.474411000000000027 \N \N 0 \N \N \N NOT_AVAILABLE 152.122017661526996 -63.3488584319702994 22.3876109469469 -13.0156906705917006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114455808 2481163849114455808 225615739 2015.5 25.5275665708260995 3.01333597133963993 -3.42792792361785992 4.63896381837173966 \N \N \N \N \N \N \N 0.240683289999999994 \N \N \N \N \N \N \N \N \N 87 0 86 1 26.8542179999999995 1125.12 16.1902322723050993 67.7048055383821037 3 false 0.00326943200000000007 \N \N 0.266294399999999987 11 7 18.4509620000000005 0 11 false 98 121.914984675100996 1.67935189653252004 72.5964966 20.4732230000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.183169374084997 -63.3846158839201976 22.3796230174983997 -13.0600697926878002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114556544 2481163849114556544 759095019 2015.5 25.5346477372231 0.592065371065196966 -3.42403920034174991 0.562734552985425962 1.15864865724963995 0.760394609354173023 1.52374649999999989 4.47767501208409957 1.23309931720460009 -5.63211259575431988 1.27353060863365997 0.101404264999999993 0.391534800000000016 0.070142709999999997 -0.0752717400000000036 -0.291724600000000001 -0.154713180000000006 -0.0817787299999999939 0.00974386900000000049 0.181309310000000001 0.263271839999999979 141 0 140 1 0.69890540000000001 146.108994 0 0 31 false 0.0543081200000000014 1.32757152625542996 0.169746203382001998 0.0412858050000000018 16 10 1.24125050000000003 0 16 false 141 142.818614730462997 1.1381945684633501 125.477997 20.3014030000000005 10 72.5120980541804983 15.7396969799269009 4.6069564999999999 20.7003610000000009 15 181.840753584754992 9.63290351372183018 18.877044999999999 19.1126919999999991 1.78095029999999999 0 1.58766940000000001 0.398958199999999985 1.18871119999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.193587283645002 -63.3780357521993025 22.3878395733579012 -13.0590591698290996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163677315764352 2481163677315764352 1054936248 2015.5 25.552530829045299 3.21677557135926984 -3.42652237177260011 2.15583063371410022 \N \N \N \N \N \N \N -0.369773750000000012 \N \N \N \N \N \N \N \N \N 110 0 110 0 22.7057169999999999 894.625 14.0206412882661997 47.5430982285623998 3 false 0.00423559300000000017 \N \N -0.0768963399999999936 13 8 4.81167459999999991 0 13 false 111 111.378105906957998 2.15660050749343002 51.6451988 20.5713650000000001 9 118.275586739907993 11.9603911585044997 9.88893999999999984 20.1691509999999994 10 277.623882491039012 6.51668494121661013 42.6020129999999995 18.6532780000000002 3.55455370000000004 0 1.51587300000000003 -0.40221404999999999 1.9180870000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.231850224200002 -63.3724861661618988 22.4039366831425006 -13.0679445981245994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164055272889984 2481164055272889984 534332512 2015.5 25.5605740388714011 0.452054347004839985 -3.41021573779493981 0.388432268259812974 1.81245587406315001 0.586781409777217045 3.08880929999999987 10.2596722562949996 0.897108319983637048 -0.828730429998478013 0.705903935121896975 0.0524190299999999984 0.423057139999999998 0.0973805860000000051 0.0578926759999999971 -0.31080213000000001 -0.0152563149999999995 0.157348049999999989 -0.00991327699999999985 0.145103380000000004 0.179812200000000005 166 0 165 1 1.49877199999999999 187.593994 0.626727716103422039 0.312587448797405021 31 false 0.0882554799999999973 1.17118552562219991 0.119084366546366005 0.0237263269999999984 19 10 0.806775869999999951 0 19 false 164 207.90494266747001 1.30025423230408999 159.895996 19.8937029999999986 13 74.6367736343912043 13.8290970187875999 5.39708230000000011 20.6690059999999995 15 264.950110296791991 10.0013106557840992 26.4915389999999995 18.7040100000000002 1.63337580000000004 0 1.96499629999999992 0.775302900000000017 1.18969349999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.232094225466 -63.3543104250675029 22.4177659281397013 -13.0557425521422008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164295792134656 2481164295792134656 160723518 2015.5 25.5642569475309003 0.842725804335691997 -3.4039508256674802 1.24125976370163005 1.01725493285876989 1.21380007859288996 0.838074499999999944 -0.840220028657675977 2.15245570984594981 -12.5545804331880007 3.52249305082147979 0.359224800000000011 0.167021649999999994 -0.20683051999999999 -0.347864449999999992 -0.555039999999999978 -0.616449000000000025 -0.752935400000000032 0.354551459999999985 0.513281399999999999 0.708672940000000029 117 0 116 1 0.861013200000000034 123.612 1.06080058231301999 0.362584114674606994 31 false 0.0362563899999999995 1.11792802668078006 0.264179252772341 0.176066100000000003 14 8 3.58519580000000015 0 15 false 118 110.554301666279002 1.07644529727552007 102.703003 20.5794260000000016 12 46.1056568643102977 8.27837224222652956 5.56941099999999967 21.1920029999999997 12 136.343349662396008 11.4507935835382995 11.9068909999999999 19.4253350000000005 1.65031119999999998 0 1.76666830000000008 0.612577440000000029 1.15409089999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.233374928370012 -63.3470692192043003 22.4236434322283991 -13.0512724031774994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164330150799232 2481164330150799232 691380317 2015.5 25.5449506693380997 0.724539671946290986 -3.39364992090404982 0.885637521726052035 0.594448270075167984 0.964548482376797023 0.616296949999999955 32.2426265930113018 1.6472219167626001 -6.66656602315106017 1.73585379089278002 0.297780800000000012 0.222753570000000012 0.179183960000000003 0.200360879999999991 -0.408551300000000006 0.323540480000000019 0.463650019999999996 -0.232687919999999993 -0.173745260000000012 0.487386800000000009 107 0 107 0 0.0974452299999999938 102.726997 0 0 31 false 0.0443575599999999973 1.71113588440084996 0.244653992515950991 0.151277230000000013 13 9 1.88356849999999998 0 13 false 109 126.598504274817998 1.42360896064550002 88.9279022 20.4322949999999999 10 98.9742339816450993 21.3919610510212017 4.62670229999999982 20.3625830000000008 11 160.13370075348999 11.3859538673042007 14.0641440000000006 19.2507130000000011 2.04669020000000002 0 1.11186980000000002 -0.0697116849999999955 1.18158150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.184699804773004 -63.3462017206743013 22.4091468650624996 -13.0345965563373998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352346639012864 2481352346639012864 551649905 2015.5 25.4980668377594988 0.0229116100582162988 -3.36474276441109987 0.0186026607643779984 2.11777128163533002 0.0287997374128505998 73.5343900000000019 32.0899118049242986 0.0431067731721260991 -3.9663146881168001 0.0395206605984097029 0.00152872490000000006 0.514487099999999975 -0.0661289399999999972 0.043326240000000002 -0.348875729999999995 -0.0606216200000000011 -0.169274079999999993 0.0742857499999999976 0.142512770000000011 0.351499799999999973 168 0 167 1 0.502816139999999967 170.529007 0 0 31 false 140.254760000000005 1.58488329463288991 0.00608125849760021014 0.0290207019999999989 19 10 0.0520025900000000013 0 20 false 162 111605.008671402 48.3574064245053989 2307.91992 13.0691570000000006 16 59361.2760929309006 87.8710082468689961 675.550200000000018 13.4176300000000008 17 75566.6213093808037 88.1012717676553052 857.724550000000022 12.5660950000000007 1.20897710000000003 0 0.851534840000000015 0.348473550000000021 0.503061300000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.062741290210994 -63.3405217623656966 22.3754207621780985 -12.9904796904384003 100001 5742 5615.06006 5806 0.0930000022 0.0425999984 0.194800004 0.0469999984 0.0166999996 0.0970999971 200111 1.00283630000000001 0.980849500000000041 1.04868939999999999 0.984935050000000034 0.95210399999999995 1.01776610000000001 +1635721458409799680 Gaia DR2 2481352282215207552 2481352282215207552 655479307 2015.5 25.5178228614249001 0.0407109094369444979 -3.36887553025434006 0.0307006716443767001 0.714774408218231017 0.0497520144705312015 14.3667429999999996 0.340150598725483977 0.0757288981009248963 1.24992914254514997 0.0608185779388826994 -0.0195157640000000014 0.500550700000000015 -0.0341894739999999975 0.063203750000000003 -0.306294469999999985 -0.060270490000000003 -0.114136730000000006 0.0856452659999999977 0.18976092 0.237217000000000011 178 0 176 2 -0.592657100000000048 159.634995 0 1.53687003158857995e-15 31 true 15.025639 1.56907544185438996 0.0108650808770448006 0.00245341359999999998 20 10 0.0762055600000000055 0 20 false 174 12401.7902586710006 6.73789489772950034 1840.59998 15.4546550000000007 19 6325.81161107667958 30.4905015519745 207.468279999999993 15.8485980000000009 18 8830.1516718733892 17.2598402331962006 511.600999999999999 14.8969989999999992 1.22207869999999996 0 0.951598170000000021 0.393942830000000022 0.557655330000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.10633095684301 -63.3356792762984995 22.3926745332361996 -13.0015880912322004 100001 5403 5349.60986 5538.5 0.472499996 0.272700012 0.579299986 0.223000005 0.128000006 0.282099992 200111 1.1359840000000001 1.08108000000000004 1.15877309999999989 0.990784050000000027 0.839133699999999982 1.14243439999999996 +1635721458409799680 Gaia DR2 2481352140482902656 2481352140482902656 1161783875 2015.5 25.5559899529641008 2.7437460360108501 -3.36371480067540984 1.72951207593718004 \N \N \N \N \N \N \N -0.453405950000000002 \N \N \N \N \N \N \N \N \N 79 0 79 0 0.581252800000000014 80.5911026 0 0 3 false 0.022887438999999999 \N \N 0.313028870000000015 10 6 7.26465940000000021 0 10 false 80 85.6400724531392967 1.05775303747259009 80.9641037 20.8566719999999997 6 38.1064976595918026 12.2591941191193996 3.10840149999999982 21.398890999999999 7 109.620346244857998 13.5396490916918992 8.09624799999999922 19.662191 1.72497330000000004 0 1.73669999999999991 0.542219160000000033 1.19448090000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.177747245037011 -63.3144556090766031 22.4309802526034012 -13.0108255173056993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848654464 2481163990848654464 298539712 2015.5 25.5721238312505008 12.6784438446696992 -3.42028992328053993 3.89188482364406019 \N \N \N \N \N \N \N 0.731889099999999959 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.31567189999999989 45.2330017 3.77858695153652002 1.05440519618677997 3 false 0.0122438740000000001 \N \N -0.0564702560000000034 5 4 30716.2360000000008 0 5 false 38 66.9642097862226962 2.08017296240765015 32.1917 21.1237579999999987 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.265031763662989 -63.3583409386345977 22.4249597147660999 -13.0693552850940993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848610560 2481163990848610560 747161114 2015.5 25.5792991229081998 2.41844554539374013 -3.42130365415407001 8.05708749743594943 \N \N \N \N \N \N \N -0.384618459999999995 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.47710849999999994 75.7537003 2.46821570467816986 0.873430086219839974 3 false 0.0205804129999999988 \N \N -0.119195125999999998 8 4 483.285300000000007 0 10 false 67 104.042128738219006 1.80439323330065005 57.6604004 20.6453419999999994 4 101.482359326980998 5.44475778707749036 18.6385439999999996 20.3354110000000006 4 80.8871138483529961 4.51662988945713995 17.9087309999999995 19.9922220000000017 1.75284250000000008 0 0.343189240000000007 -0.309930800000000006 0.653120040000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.280387030593999 -63.3561236888829029 22.4314124072752001 -13.0729360121962994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848781696 2481163990848781696 1348090403 2015.5 25.5866981724091005 0.0452196765399230025 -3.42450785369730015 0.0399808550364295981 2.36223153513858009 0.0604092952065157021 39.1037749999999988 9.3310363629315507 0.0865197104769032943 10.5291315258265001 0.0884484421306129948 -0.0478339119999999993 0.518635630000000014 -0.0271641980000000005 0.0258136199999999989 -0.443667350000000016 -0.0781707299999999938 -0.17840737000000001 0.0622633729999999969 0.116432930000000004 0.416271270000000027 176 176 175 1 6.43266440000000017 317.325012 0 0 31 true 135.616000000000014 1.61315210174083989 0.0125940522244837004 0.0270895290000000011 20 10 0.060175880000000001 0 21 false 171 10333983.6445877999 3710.65721926913011 2784.94995 8.15269699999999986 18 5658634.88251749985 11037.7123681888006 512.663760000000025 8.46960900000000017 20 6569444.42197331041 13284.4677956344003 494.520719999999983 7.71809800000000035 1.18328809999999995 0 0.751511099999999987 0.316912650000000018 0.434598450000000025 13.0393633037475993 0.60822634728068703 9 6000 4.5 0 NOT_AVAILABLE 152.298323363171988 -63.3557772133308035 22.4372501603263999 -13.0786353668699 100001 5925 5837.1001 5993 \N \N \N \N \N \N 200111 8.08433499999999938 7.90191749999999971 8.32965000000000089 72.5666049999999956 70.1292200000000037 75.0039900000000017 +1635721458409799680 Gaia DR2 2481348021607651456 2481348021607651456 626394664 2015.5 25.2606912236566998 0.932537634709635022 -3.4259291242863501 0.680809319622947995 \N \N \N \N \N \N \N -0.00334128460000000013 \N \N \N \N \N \N \N \N \N 129 0 128 1 60.6709019999999981 5629.47998 5.77185156692495038 327.662580813438012 3 false 0.0289487470000000004 \N \N -0.0302793509999999995 16 10 1.87853979999999998 0 16 false 137 1397.37278351483997 13.7346699768616993 101.740997 17.8250850000000014 13 1260.32866029738011 14.4681635706647995 87.1104799999999955 17.6001779999999997 14 2082.13496128836005 13.4475113219491007 154.834229999999991 16.4656489999999991 2.39196279999999994 0 1.13452909999999996 -0.22490692000000001 1.35943600000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.643885272575005 -63.4978973612405966 22.1262376115234005 -12.9599615396240004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164128287734912 2481164128287734912 172532306 2015.5 25.5885643861059009 0.0390158734074513014 -3.40496472088576008 0.0306580978429056988 1.06175294046588009 0.0485786617241217994 21.8563650000000003 24.2976167244343983 0.0741043946276558063 -9.62730719747774089 0.0646873225648775946 -0.0406403879999999995 0.492278839999999995 -0.0331968299999999966 0.0306435800000000001 -0.356235440000000014 -0.101231299999999996 -0.205733510000000008 0.0827497539999999948 0.183698549999999988 0.283582239999999985 175 0 175 0 -0.941531959999999946 152.602005 0 0 31 true 15.9658549999999995 1.59593716347660997 0.0103515182528659006 0.00664618559999999997 20 10 0.0775362849999999965 0 20 false 173 13241.8777917069001 8.39818065691349958 1576.76001 15.3834914999999999 16 6736.71115946413011 12.6463849940797992 532.698549999999955 15.7802690000000005 16 9480.95660536129981 27.2813090681123001 347.52573000000001 14.8197899999999994 1.22472570000000003 0 0.960478799999999966 0.396777150000000023 0.563701600000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.283015220359999 -63.3373857173492993 22.4464174449133012 -13.0611521459534998 100001 5381 5325 5747.8999 0.0208000001 0.00800000038 0.125300005 0.0120000001 0.00389999989 0.0697999969 200111 0.79776347000000003 0.699169499999999999 0.814630999999999994 0.480723100000000014 0.432183680000000014 0.529262539999999948 +1635721458409799680 Gaia DR2 2481163368079238528 2481163368079238528 888152923 2015.5 25.6078935697833003 1.58402013395182006 -3.41992235285959012 1.91952789927854006 \N \N \N \N \N \N \N 0.661445599999999967 \N \N \N \N \N \N \N \N \N 86 0 86 0 0.733736999999999973 89.9854965 0.853093617317041031 0.119223202708373999 3 false 0.0229646600000000013 \N \N 0.0489937900000000023 11 6 6.76244449999999997 0 12 false 91 83.4220186115016986 1.22957893124296991 67.8460007 20.8851639999999996 6 44.2956859574990034 12.1045631253509001 3.65942049999999997 21.2354850000000006 6 109.236369410652998 16.6583041057372014 6.55747199999999975 19.6660019999999989 1.84042609999999995 0 1.56948280000000007 0.350320819999999977 1.21916200000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.336266300087999 -63.3423977610706004 22.4591783608053994 -13.0821643599755006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164128287747968 2481164128287747968 56818464 2015.5 25.6004809822494011 0.0347295873030738014 -3.40684020396234022 0.0290490979410788011 1.05712105170274007 0.0433340641249400013 24.3946900000000007 26.0142503489520003 0.0671459319516620051 -1.41543326042377005 0.0658340340658422063 -0.0198478199999999987 0.488167320000000016 -0.042953115 0.00472460730000000013 -0.365704240000000014 -0.176883299999999993 -0.351989200000000002 0.112861310000000006 0.221501480000000001 0.349120350000000024 166 0 166 0 -2.47459939999999978 120.002998 0 0 31 true 21.6074200000000012 1.5848164081368401 0.00928091625889720939 0.0154318579999999997 19 10 0.0773404699999999945 0 20 false 166 17680.8329202071 9.78715434773184079 1806.53003 15.0696089999999998 17 9449.86161537894077 23.7215121624875991 398.366759999999999 15.4128249999999998 17 12117.5546311065009 31.3120565729288991 386.993260000000021 14.5533830000000002 1.21981910000000005 0 0.859441760000000055 0.343215939999999997 0.516225799999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.308682335241997 -63.3338719509726005 22.4570617355801012 -13.0672766649508993 100001 5632.75 5380 6034.81982 0.0187999997 0.00800000038 0.0647 0.00800000038 0.00389999989 0.0299999993 200111 0.83427960000000001 0.72681450000000003 0.914509059999999985 0.631247760000000047 0.573075200000000007 0.689420339999999965 +1635721458409799680 Gaia DR2 2481164128287734784 2481164128287734784 1267889813 2015.5 25.6052467931424985 0.0655717671529455065 -3.4057454197234498 0.0507394575353945013 0.952437451052637996 0.0811691141950045963 11.7339889999999993 11.9259515799107998 0.127550573663409994 -0.108595330665438999 0.101767177823907998 -0.0493359569999999997 0.45749430000000002 -0.00841901200000000002 0.0353757140000000025 -0.358320599999999989 -0.0548657140000000029 -0.072617710000000002 0.0502458480000000027 0.154086749999999995 0.223287869999999999 176 0 174 2 -0.146685599999999999 165.658997 0 1.54593719008863991e-15 31 true 4.7518167 1.52749420931347002 0.0164823836380428995 -0.00471286760000000013 20 10 0.120875529999999995 0 20 false 174 4379.73834900670045 4.23901189270277978 1033.19995 16.5847450000000016 17 1992.32906931783009 9.22444696652386931 215.983579999999989 17.1029850000000003 16 3460.50145868828986 13.7672563313089995 251.357380000000006 15.9140720000000009 1.24501290000000009 0 1.18891330000000006 0.518240000000000034 0.670673399999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.317147429547987 -63.3308065052943974 22.4620162626205015 -13.0680107552459006 100001 4886 4763.87988 4953.5 0.0350000001 0.00260000001 0.322299987 0.00800000038 0 0.135100007 200111 0.648909799999999981 0.631344000000000016 0.682603900000000041 0.21621071 0.17778403000000001 0.254637400000000014 +1635721458409799680 Gaia DR2 2481164403165715968 2481164403165715968 1337583736 2015.5 25.5738713315194985 1.15152574279848996 -3.39075669920962008 1.12017533635682009 -0.330815164241131998 1.72456398096275998 -0.191825390000000012 10.4763973586346992 1.94476384662489998 -1.60476047731607996 2.70297861213899981 -0.293400470000000024 0.707929200000000036 0.225136609999999987 0.0501498169999999993 -0.648841699999999966 -0.48405585000000001 -0.548500899999999958 0.337759580000000004 0.380875620000000026 0.570050949999999945 124 0 123 1 0.090918250000000006 118.732002 0 0 31 false 0.030338045000000001 1.20242946287676999 0.266647116537375994 -0.00618997700000000015 15 8 2.79716869999999984 0 16 false 125 105.510016731817004 1.25657842100958006 83.9661026 20.6301300000000012 11 59.2358392245942014 12.2127947184887997 4.85031000000000034 20.9199279999999987 13 130.252838197561005 17.6465876746622996 7.38119130000000023 19.4749529999999993 1.79593069999999999 0 1.44497490000000006 0.289796830000000005 1.1551781000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.239788650348999 -63.3310095051782014 22.4377911695092003 -13.0425409179207996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164433230015360 2481164433230015360 218985119 2015.5 25.5868207976071993 0.273468456305352992 -3.3840392024182302 0.204445217139905988 2.09521384821549983 0.33367226211272899 6.27925700000000031 6.15627160481925984 0.567762147044972965 -8.9115325154835201 0.383498009330141998 -0.0542611139999999992 0.355376150000000002 0.188799959999999989 0.000278170500000000009 -0.336132819999999999 -0.0453585570000000007 0.0888107600000000025 -0.0745603700000000008 0.156116890000000008 0.0899862349999999978 167 0 166 1 3.81610819999999995 238.776993 1.01679542765713005 3.35532721545413981 31 false 0.271098799999999973 1.2558286399129801 0.0652602432370125995 -0.0381302459999999996 19 10 0.504005299999999989 0 19 false 164 586.819127340349041 2.10071631305109996 279.34201 18.7671050000000008 18 143.339893411318997 7.49718478792205989 19.1191619999999993 19.9604700000000008 18 694.469603107771945 9.45059687590202024 73.4842100000000045 17.657786999999999 1.42771340000000002 0 2.3026829000000002 1.19336510000000007 1.10931779999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.259162780865012 -63.3193227427742968 22.4526670915165987 -13.0410563643480995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164158352107520 2481164158352107520 121032293 2015.5 25.6030220850763008 0.14227715717384401 -3.3940509513901298 0.118446394008933004 0.166363293441561005 0.179893221816054993 0.924789129999999959 3.71568803965207994 0.284202079763997972 -1.54779645039228009 0.25080087575285398 -0.0168197549999999987 0.431880380000000008 0.0346971749999999968 0.00156890200000000006 -0.361289169999999993 -0.0946437900000000054 -0.130693930000000014 0.0355385999999999966 0.16791782999999999 0.255530360000000012 165 0 163 2 0.707155470000000008 170.205002 0 0 31 false 0.92464780000000002 1.59322743605979 0.0388419712961302968 0.00311280139999999981 19 10 0.269453529999999997 0 19 false 160 1130.90252075063995 2.56122787763970994 441.546997 18.0548019999999987 17 609.953822393560017 9.27734672032386953 65.7465799999999945 18.3881450000000015 14 800.099832645769993 11.5489078244007999 69.2792699999999968 17.5040590000000016 1.24683929999999998 0 0.884086599999999945 0.333343500000000015 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.301305088127009 -63.3212611223422002 22.4643174873185991 -13.0563202731011003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164162647472896 2481164162647472896 1283555620 2015.5 25.6125071432180995 0.0368574707818805011 -3.40107774130800999 0.0307092791757127004 1.77916330993685001 0.0461817688982135016 38.5252300000000005 8.31220058538112028 0.0696568069779081034 7.2255803982078497 0.0693109162272113055 -0.0220538199999999983 0.512727900000000014 -0.0435121600000000011 -0.0010030836999999999 -0.365447159999999993 -0.237157900000000005 -0.424675320000000023 0.164061280000000004 0.272597460000000014 0.352671620000000019 174 174 173 1 6.2790619999999997 310.377991 0 0 31 true 375.366759999999999 1.54580822205143997 0.00970721766305148934 0.00938651499999999979 20 10 0.0510629000000000013 0 21 false 169 408038.820195635024 112.311809003760004 3633.09009 11.6616119999999999 20 192654.225905998988 212.095171405569999 908.33856000000003 12.1394415000000002 20 304769.691959525982 257.862210765359009 1181.90900000000011 11.0519905000000005 1.21906029999999999 0 1.08745099999999995 0.477829930000000014 0.609621049999999998 8.78205433575196004 1.19658704380712999 3 5000 4.5 0 NOT_AVAILABLE 152.327115678502992 -63.323438254330803 22.4706981603640017 -13.0663398778517994 100001 4993.87988 4862.95996 5099.31982 \N \N \N \N \N \N 200111 3.16943140000000012 3.03971549999999979 3.34238269999999993 5.62872199999999978 5.42368030000000001 5.83376400000000039 +1635721458409799680 Gaia DR2 2481164162647215872 2481164162647215872 593209286 2015.5 25.6124278693609 1.38271353624402993 -3.39986096035101992 1.8240097247076299 \N \N \N \N \N \N \N 0.553453149999999949 \N \N \N \N \N \N \N \N \N 67 0 66 1 1.92892409999999992 84.0541992 3.07980894163569996 1.93572476094905999 3 false 0.0240299650000000004 \N \N 0.191123860000000007 8 7 6.95778229999999986 0 8 false 66 107.197880106431001 1.83872000946095993 58.3003006 20.6128999999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.325771215662996 -63.3223787873948964 22.4710825860748997 -13.0651794521540996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358643200 2481163299358643200 1398831606 2015.5 25.6252861819358984 0.119779783763746997 -3.42464169410584995 0.0866641073638800968 5.57601264137470043 0.149496535286853 37.298606999999997 10.5672379014485003 0.21271343413278801 -3.89957460837926018 0.161819730957601993 0.0100226759999999995 0.5499058 0.0117267540000000007 0.0812084400000000067 -0.245196610000000009 -0.0287152619999999983 0.0335411899999999985 0.0513185079999999988 0.168403500000000012 0.186801419999999996 168 0 165 3 3.84862100000000007 238.322006 0.39356962151108299 2.67266052331626991 31 false 1.59036299999999997 1.22847702971473005 0.0279207933436730997 0.0373599699999999993 19 10 0.193328069999999991 0 19 false 163 2193.53953081615009 3.09837978699746985 707.963013 17.3355029999999992 16 373.433627161739992 10.3806494735596004 35.9740139999999968 18.9208549999999995 17 2926.60044280648981 11.7299220806819999 249.498719999999992 16.0960120000000018 1.50443339999999992 0 2.82484249999999992 1.58535200000000009 1.23949050000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.375658595532002 -63.3390358550832033 22.4739661915173983 -13.0929453643560993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358644096 2481163299358644096 337110707 2015.5 25.6238817359053996 0.143774420195942998 -3.42001380962455004 0.122143503943403994 4.14128242085589982 0.19612621993114901 21.1153949999999995 2.91097258200727982 0.283774171332233982 -41.912973380793801 0.222978816801740004 -0.063057450000000001 0.433138970000000012 0.0483080369999999981 0.0434970100000000026 -0.453460479999999999 -0.108591270000000004 -0.050015416 0.103403314999999996 0.230465399999999987 0.216746820000000007 167 0 167 0 1.82744559999999989 196.412003 0.247963383324741993 0.512294725427522968 31 false 0.920345799999999992 1.2366522944879399 0.0370520352100816019 0.0338330800000000015 19 9 0.26093559999999999 0 19 false 163 1121.46348734786989 2.12497467347357993 527.754028 18.0639040000000008 18 221.659662545993001 7.51306152780532965 29.5032400000000017 19.487171 18 1469.16613809659998 10.8408888713869 135.520810000000012 16.8442420000000013 1.50769580000000003 0 2.64292900000000008 1.42326740000000007 1.21966170000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.36833093213599 -63.3354903658325981 22.4743775384833988 -13.0881264196519993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163368078122112 2481163368078122112 8961020 2015.5 25.6174548001983986 0.334419645113454012 -3.41344666151039 0.2955944208879 0.890944672668687043 0.427498835808325983 2.0840869999999998 -0.678631792076237028 0.651831614180202967 -5.05113951385710003 0.536981157147849997 0.0820805099999999954 0.438686279999999984 0.0833779050000000022 0.0751959759999999977 -0.278207329999999975 -0.0188745370000000003 0.15123412 0.0185386950000000009 0.166671320000000012 0.196007979999999998 166 0 164 2 1.03953059999999997 177.548996 0 1.59381032202658002e-15 31 false 0.157712550000000007 1.27025897797865994 0.0929204199744325943 0.0240108649999999993 19 10 0.592800140000000031 0 20 false 164 308.945824500260983 1.25107286835171005 246.945007 19.4636600000000008 17 101.194051409679005 10.8452699203894998 9.33070850000000007 20.3385010000000008 16 404.239806659133023 23.7378303051780009 17.0293500000000009 18.2453229999999991 1.63599509999999992 0 2.09317779999999987 0.874841700000000055 1.21833609999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.34907039219101 -63.3323970378115035 22.4707364703561012 -13.0796583475981993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164609324072192 2481164609324072192 578695905 2015.5 25.6580264187172986 0.146835460516791 -3.41476377377294993 0.120594666500551007 0.412307886959768999 0.189296272311019004 2.17810900000000007 0.450782019397032996 0.283124203584618983 -4.7475257889803899 0.213388835343988004 0.173845100000000002 0.472666499999999989 0.203358490000000003 0.0833148699999999992 -0.0570630430000000008 -0.034971002000000001 0.296704740000000022 -0.140805130000000001 0.193159009999999992 0.079449510000000001 119 0 118 1 -0.0869052560000000002 111.038002 0 0 31 false 1.38571700000000009 1.53529531173827993 0.037251073315369497 0.115921065000000004 14 9 0.254085479999999975 0 14 false 116 1508.52752893852994 2.61979844537646001 575.817993 17.7419830000000012 11 727.453735813797948 6.65465202532815958 109.315070000000006 18.1968749999999986 12 1122.1791788150399 11.7609330785029993 95.4158299999999997 17.1367650000000005 1.2261181000000001 0 1.06011009999999994 0.454891199999999996 0.605218900000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.431433740034009 -63.3158230899746997 22.5088975119283994 -13.0957940261315997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481255280378219904 2481255280378219904 424617913 2015.5 24.8449540776875004 6.29999044161630017 -3.67409809552676991 5.70223361345629964 \N \N \N \N \N \N \N 0.487421300000000002 \N \N \N \N \N \N \N \N \N 48 0 48 0 31.3011000000000017 1469.33997 17.8135055373471012 134.863548824828996 3 false 0.00293613359999999983 \N \N -0.0659609699999999938 8 6 24.075800000000001 0 9 true 72 301.53165077125999 6.4658685660415598 46.6343994 19.4900340000000014 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.033452040933014 -63.8986545910711001 21.6363855508504983 -13.0370787239086994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164815482501760 2481164815482501760 1550813836 2015.5 25.6405138604540994 0.0488334116277370986 -3.39845373990014021 0.0360108775184004026 0.582586029336297995 0.0579322730947431017 10.0563300000000009 4.84857969302206016 0.0907547639657153016 -5.91091335695669962 0.0724745807869389969 0.056607339999999999 0.521139559999999946 -0.0102079389999999992 0.0154866589999999998 -0.137402560000000007 -0.114542179999999993 -0.0650290200000000068 0.0559450400000000014 0.190211770000000002 0.137163879999999988 144 0 142 2 -0.733592000000000022 124.584999 0 0 31 true 12.6933249999999997 1.59470386704343992 0.0129122537401892001 0.0074914650000000001 17 10 0.0872061499999999962 0 17 false 141 10875.2930241305003 7.07607793978672017 1536.91003 15.5972629999999999 16 5988.5728474159796 19.6600324711093997 304.606449999999995 15.90808 16 7253.26027825292022 33.4067381735354019 217.119670000000013 15.1105870000000007 1.21760700000000011 0 0.797493000000000007 0.310816760000000025 0.486676219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.380524756021003 -63.3088349056739972 22.4983747552407998 -13.0741937713001004 100001 5884 5777.81982 6129.25 0.140000001 0.0680000037 0.207100004 0.0710000023 0.0340000018 0.103100002 200111 1.07930470000000001 0.994660199999999994 1.11933839999999996 1.25797939999999997 0.988463940000000041 1.52749489999999999 +1635721458409799680 Gaia DR2 2481164879909667968 2481164879909667968 1160168844 2015.5 25.6405971378387996 0.633586336215247958 -3.39742276149340983 0.535106492273533019 1.33352481891858998 0.80552595953332895 1.65547099999999991 -4.65011043528463031 1.24843539354975008 -6.66919781335311956 0.929434723162356979 0.125405149999999993 0.4533084 0.134405730000000001 0.0791806199999999932 -0.0538386400000000001 -0.131446570000000013 0.284124800000000011 -0.028589802000000001 0.295857939999999986 -0.00798403599999999991 140 0 139 1 3.02371200000000018 189.005997 0.935646648906566014 0.409506043886225024 31 false 0.0547848000000000016 1.24194344937587009 0.163298732187110995 0.0559084700000000018 17 10 1.1011953000000001 0 17 false 138 159.301627137959997 1.26429816506839998 126 20.182815999999999 10 96.9502259122203043 19.117277369560199 5.07134060000000009 20.3850149999999992 12 217.85706454806899 8.24803908503301919 26.4131950000000018 18.9164899999999996 1.97617130000000008 0 1.46852490000000002 0.202199939999999995 1.26632499999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.379685064856005 -63.3078718051511018 22.4988437579220992 -13.0732658063552005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165983713605888 2481165983713605888 662244427 2015.5 25.5881978180273997 0.847140053327565035 -3.36159871624724982 0.563682812217082052 2.78495221262003012 1.07028834705550002 2.60205799999999998 7.42888129909569983 1.31087788412320005 -18.4364511634673001 0.898323423954612954 -0.388887970000000027 0.668031599999999948 0.301879669999999989 -0.0206282869999999986 -0.569541159999999991 -0.164398850000000013 0.13383043 0.101923570000000005 0.0946621899999999933 0.0666224499999999997 146 0 146 0 4.40690570000000026 227.787994 2.24272054980405988 4.08418123417018997 31 false 0.0542940199999999984 1.33680191344972998 0.159799754009506995 -0.105396870000000004 17 9 1.25153390000000009 0 17 false 146 203.543839098834013 1.7320879424281399 117.514 19.916720999999999 13 94.385332032190604 8.38440815380299931 11.257244 20.4141270000000006 13 254.890606553191986 8.74348344284079992 29.1520650000000003 18.7460349999999991 1.71597400000000011 0 1.66809270000000009 0.497406000000000015 1.17068670000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.240107055535987 -63.2985333001119983 22.4624610097400996 -13.0206990370631992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165910701738240 2481165910701738240 1293646092 2015.5 25.5982799143685007 0.705068887733412031 -3.3747110062559198 0.848363349265419009 2.14321162551892019 0.968621224653403945 2.21264169999999982 8.00596390927628043 1.69281904914681003 -22.6253772884698989 2.51282739285234014 0.183303999999999995 0.32648617000000002 -0.0864909440000000002 -0.208386929999999998 -0.468434569999999995 -0.420359939999999987 -0.559649300000000016 0.170220630000000012 0.303605559999999997 0.613237440000000023 127 0 126 1 1.68970630000000011 148.470001 1.6764245878528099 1.0134206901754701 31 false 0.043301217000000003 1.61910248102608989 0.222562533109089994 0.0597559999999999966 16 9 2.49790100000000015 0 16 false 128 141.242915112546996 1.61103150839095011 87.6723022 20.3134499999999996 13 53.6130665602929994 8.1184963015599898 6.6038174999999999 21.0282119999999999 13 162.994265778426012 11.9158849169589001 13.6787379999999992 19.2314900000000009 1.53358020000000006 0 1.79672239999999994 0.714761729999999984 1.0819607 \N \N 0 \N \N \N NOT_AVAILABLE 152.273003476219998 -63.3059350745445997 22.4671098694751983 -13.0365960940796004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165945058506112 2481165945058506112 526038033 2015.5 25.6089969281385983 0.580416660476230972 -3.36126570267424007 0.398965057183487015 1.27431706393980004 0.743202475764112025 1.71462979999999998 52.3302801705723013 0.878619566654335049 6.41697713322331964 0.626118912321778964 -0.407682060000000013 0.698245169999999971 0.233882730000000011 -0.0365530770000000033 -0.578129349999999986 -0.186883359999999998 0.184517010000000009 0.152795569999999992 0.0653091150000000009 0.0462320700000000001 154 0 152 2 2.05550530000000009 184.360001 1.31297552895565994 3.61101154879712016 31 false 0.109104000000000007 1.3955305400418001 0.107552701514661994 -0.0585441179999999992 18 9 0.846846039999999967 0 18 false 152 291.849964666798996 1.7980882287892701 162.311005 19.525466999999999 14 80.2438490163503957 9.71591333463602069 8.25901200000000024 20.5903589999999994 14 404.433598841648006 7.33399635393286964 55.1450499999999977 18.244802 1.66070760000000006 0 2.34555630000000015 1.06489180000000005 1.28066440000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.281346357144002 -63.2891666619103006 22.4824011949555995 -13.0280345737494994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165773259813760 2481165773259813760 406947106 2015.5 25.6326116811954989 1.45969658248903 -3.36774574193482978 1.33812374032986003 -4.18502236058899957 2.15340654954205979 -1.94344270000000008 9.94820883678817047 2.28578997758443014 -14.6333862586789998 3.30310171273317987 -0.305639559999999977 0.735636900000000038 0.285774299999999981 -0.00590238859999999994 -0.640227850000000043 -0.536766469999999996 -0.553920030000000008 0.36224561999999999 0.365368499999999985 0.534050800000000048 100 0 99 1 -0.16553967 91.0940018 0 0 31 false 0.0287324620000000003 1.8355655689594399 0.304203742788764997 0.0640649699999999989 13 8 3.3701620000000001 0 13 false 99 100.501926558264998 1.36624202458267008 73.5608978 20.6829299999999989 10 55.3267202605992026 9.08034053413000031 6.09302299999999963 20.9940509999999989 13 107.465069210989 11.0093535652921002 9.76125099999999968 19.6837519999999984 1.61978770000000005 0 1.31029890000000004 0.311120999999999981 0.999177929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.334812132263011 -63.2846845390170998 22.5024505384606002 -13.0427383397688992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165777555175808 2481165777555175808 641777810 2015.5 25.6449172869976003 3.13092692756882984 -3.3737287768264701 1.98906920378863994 \N \N \N \N \N \N \N -0.3200326 \N \N \N \N \N \N \N \N \N 113 0 113 0 29.7570149999999991 1397.57996 12.9629126425224008 73.1794163001797955 3 false 0.00517551500000000032 \N \N 0.0336386259999999979 14 8 4.83151439999999965 0 14 false 121 190.593035174225008 2.70670350526581993 70.4151993 19.9880980000000008 12 161.735044350381997 12.8199777362060008 12.6158599999999996 19.8293779999999984 12 403.058620296368986 10.1784465054923992 39.5992279999999965 18.2484989999999989 2.96334890000000017 0 1.58087920000000004 -0.158720019999999989 1.73959920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.365206140243998 -63.2846841139480034 22.5119141303828982 -13.0528232966274995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705420800 2481165051705420800 31738011 2015.5 25.6595287748480985 1.14527714952477 -3.36965839606491002 1.09453440196057006 -0.527470163836989969 1.49562004528381998 -0.352676570000000023 0.0804113206528598995 2.05592551235102983 -2.72630050802604007 2.55119709029116004 0.10274701 0.572728000000000015 0.0478473640000000033 -0.104164839999999995 -0.365420940000000027 -0.518111050000000017 -0.614213349999999991 0.311726479999999972 0.44617772 0.447127849999999993 105 0 102 3 -0.139777469999999987 94.4098969 0 0 31 false 0.0310266969999999989 1.89564853442239989 0.268738378899585018 0.0789275499999999991 12 9 2.64444070000000009 0 13 false 101 114.807974061161005 1.6012820883162 71.6975021 20.5384349999999998 9 39.9611939197105031 10.7756630411338996 3.70846719999999985 21.3472919999999995 9 140.38153495031699 4.01221156907022003 34.9885670000000033 19.3936439999999983 1.57082060000000001 0 1.95364760000000004 0.808856959999999958 1.1447906000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.390396933156012 -63.2746326874132023 22.5273740064655001 -13.0544076152378992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164678043548544 2481164678043548544 975245292 2015.5 25.6873828454526993 0.0398741560340050982 -3.40979100825992987 0.0272219679036877008 3.04548895372243988 0.0534224688289317989 57.0076400000000021 37.0945954416717996 0.0546551698344752979 -25.3265099176044011 0.0552896188869693994 -0.219246030000000008 0.758797170000000021 -0.0181497670000000007 0.0255146829999999998 -0.455168499999999976 -0.00506191330000000002 -0.0700437099999999951 0.0146149769999999995 0.0260126609999999994 0.381656019999999985 121 8 119 2 -2.77679279999999995 76.4896011 0 0 31 true 145.019200000000012 1.56235685403547997 0.00850180443918478919 0.0116056930000000003 14 9 0.0590082629999999983 0 14 false 118 114341.285906125006 53.3411287142165023 2143.59009 13.0428580000000007 13 55845.1097136351018 108.513462186607995 514.637629999999945 13.4839249999999993 11 83938.3749510052003 153.940171385693986 545.266240000000039 12.4520189999999999 1.2225109999999999 0 1.03190610000000005 0.441066740000000013 0.590839400000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.485170824380987 -63.2984801076135994 22.5387516730835991 -13.1019569618012994 100001 5133.75 5063.74023 5304 0.216999993 0.133599997 0.319499999 0.107000001 0.0670000017 0.155399993 200111 0.91471385999999999 0.856934549999999962 0.940181849999999986 0.523605349999999969 0.504475950000000006 0.542734739999999993 +1635721458409799680 Gaia DR2 2481164673748044800 2481164673748044800 178891263 2015.5 25.6884775000479983 0.0614932868143584013 -3.40940695354864998 0.0419718223277772973 3.20905192646084991 0.0816026199063085989 39.3253559999999993 36.290393369567802 0.0850892475649775992 -25.3540845963615986 0.086500436188786306 -0.183240459999999994 0.752102200000000054 0.00447278239999999994 0.0410081200000000021 -0.422040579999999999 -0.0462750980000000006 -0.129388819999999988 0.0508029539999999974 0.0675398299999999951 0.381864370000000009 121 121 121 0 0.320264040000000028 120.263 0 0 31 true 349.197699999999998 1.57598159136633997 0.0134499952761337003 0.0107281579999999998 14 9 0.0552566099999999977 0 14 false 121 257262.489201074 3660.48804032581984 70.280899 12.1624239999999997 14 131152.646058096987 5929.84105842056033 22.1173970000000004 12.5569459999999999 14 186379.615360458993 7857.11983573604994 23.7211110000000005 11.5859240000000003 1.23427339999999997 0 0.971021649999999958 0.394521699999999975 0.576499940000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.486978978661 -63.2976546476562021 22.5399399730832002 -13.1020020335232008 100001 5293.33008 5030.33008 5570.60986 0.504999995 0.386500001 0.66079998 0.250999987 0.194900006 0.321999997 200111 1.2092681999999999 1.09188189999999996 1.33902169999999998 1.03432499999999994 0.998557000000000028 1.07009299999999996 +1635721458409799680 Gaia DR2 2481164952921455104 2481164952921455104 531666361 2015.5 25.6647616331408983 0.132323307924513994 -3.37903262498269985 0.0873295196709211047 2.66695726291227997 0.174288871647644006 15.3019359999999995 -11.1136934897265007 0.182036961676517006 -3.31746421394873003 0.145084694734740005 -0.270937380000000005 0.747262699999999946 0.130406629999999996 0.0209370479999999998 -0.481823700000000021 -0.0202385129999999996 0.236956240000000012 0.0576646140000000029 0.0197840500000000009 0.184484800000000004 131 0 131 0 3.36044030000000005 186.360992 0.304297311855408981 2.26990374538888018 31 true 2.77833079999999999 1.36729086589811 0.0247472627697007015 0.0398461260000000025 15 9 0.179352359999999988 0 15 false 127 3574.98293257795012 3.80813031696690985 938.776001 16.8051819999999985 13 998.807505141234969 7.71308623365994972 129.495180000000005 17.852684 14 3885.58587618932006 13.6401576681478005 284.863699999999994 15.7882789999999993 1.36627040000000011 0 2.06440540000000006 1.0475025 1.01690290000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.409980197231988 -63.2807661616409973 22.5288181508391006 -13.0650464612829005 100001 3782.72998 3637 4234.91992 0.239500001 0.0829000026 0.400299996 0.133000001 0.0524999984 0.218799993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307008 2481165051705307008 1663287751 2015.5 25.6665804108209983 0.720360762326065052 -3.37565885253675013 0.562981872215738033 0.479213212751383011 0.999443715682253986 0.479479939999999993 -0.188638506347123008 1.12923909792461008 -4.28163970014611017 0.89459586487766396 -0.102847499999999994 0.641236959999999967 0.145802719999999997 0.123203404000000002 -0.433843970000000023 0.069376199999999999 0.251894859999999998 0.00965289599999999935 0.0870494700000000038 0.246427310000000011 144 0 144 0 1.19609030000000005 159.181 0 0 31 false 0.0571776140000000016 1.89922947124436003 0.16127368140958101 0.0838848499999999969 17 10 1.05252830000000008 0 17 false 144 171.402470996212003 1.53807186384638994 111.440002 20.1033229999999996 13 112.320326843686004 10.2378528254886003 10.9710830000000001 20.225242999999999 12 118.481422881487006 8.65273869501477932 13.6929390000000009 19.5777949999999983 1.34654859999999998 0 0.647447600000000012 0.121919630000000001 0.525527949999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.410316954347991 -63.2769378613012989 22.5318259025718994 -13.0625777668876992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091201920 2481161650091201920 483875343 2015.5 25.7096134987193992 0.273054289227444014 -3.42217728409588018 0.181321889975770006 3.57853062651174003 0.374508262819233995 9.55527799999999949 36.7068227992835006 0.373405815324170998 -25.5144089819116004 0.311495818587289974 -0.215464829999999996 0.747158349999999971 0.0709544639999999949 0.100721574999999994 -0.483106599999999997 0.0421556699999999993 0.0915272300000000011 0.0367603300000000008 0.0802169699999999986 0.32153246000000002 129 0 128 1 4.27815000000000012 202.112 0.730208717402856977 3.69969509270962016 31 false 0.60617494999999999 1.29275010182023009 0.0561719402774739987 0.0862897999999999998 15 9 0.372743400000000003 0 15 false 127 1095.46219312990002 2.50862094974830008 436.678986 18.0893729999999984 14 188.480910609895005 5.90249691629596018 31.9324039999999982 19.663219999999999 14 1474.56593584392999 14.1183289958306002 104.443375000000003 16.8402600000000007 1.51812349999999996 0 2.82296000000000014 1.5738468000000001 1.24911309999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.541649697976993 -63.2998350502964016 22.5552571723994006 -13.1216408507214002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162062408066176 2481162062408066176 879182275 2015.5 25.7309660901159987 0.546871161384190008 -3.40332455953369006 0.426210176678534003 0.600923456061966954 0.758797510174950007 0.79194176000000005 8.98686402483706992 0.877721811857854028 -4.17154419979010971 0.67242660467281401 -0.0633129000000000053 0.620456930000000018 0.108365569999999994 0.153612169999999992 -0.430045500000000025 0.120812799999999998 0.261615429999999982 -0.00323646209999999988 0.0815362599999999993 0.27710918000000001 147 0 144 3 1.54423329999999992 165.619995 0.969783232602822953 0.896065759539357964 31 false 0.0984727600000000064 1.33831691243925999 0.117036755303545001 0.0962725700000000018 17 10 0.815457639999999984 0 17 false 145 257.462454121861015 1.61802721683388007 159.121002 19.6615810000000018 14 87.5873173590145058 10.9702696409959 7.98406199999999977 20.4952849999999991 16 319.067657577114005 11.7100364819842007 27.2473659999999995 18.5022130000000011 1.57947290000000007 0 1.99307250000000002 0.833704000000000001 1.15936850000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.565731715607001 -63.273518685361303 22.5827304030101992 -13.1119539703519994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162101063184000 2481162101063184000 660812533 2015.5 25.7341883744049014 0.865964213235225988 -3.3997065116969698 0.771635357722006976 \N \N \N \N \N \N \N 0.102743029999999999 \N \N \N \N \N \N \N \N \N 140 113 140 0 399.764279999999985 689052 8.00153881763755948 20872.7173751646005 3 false 0.0148545540000000007 \N \N 0.0722207049999999962 16 10 1.60946250000000002 0 19 true 136 173169.961333268991 164.250887612117992 1054.30005 12.5921839999999996 16 78136.7175130117976 93.7249582190799941 833.68100000000004 13.1192499999999992 16 138327.22697334399 132.116997511521987 1047.00549999999998 11.9096510000000002 1.25000859999999991 0 1.20959949999999994 0.527066229999999969 0.68253326000000003 -2.2677644922127298 2.20707705676850985 6 5500 4.5 0 NOT_AVAILABLE 152.568604578740008 -63.2688531464800974 22.5871682225686996 -13.1097731563263 130001 4892 4791.25977 5066.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162268566499328 2481162268566499328 1120850265 2015.5 25.7402435199083008 0.410145568462409016 -3.37311814871805016 0.318560670746971974 1.94238456854266994 0.556582243231740992 3.48984300000000003 11.4835145717096996 0.671576968311570988 -4.34478183709438959 0.517754196784408038 -0.0555930619999999986 0.607862400000000025 0.0977928639999999932 0.135113220000000006 -0.396231300000000008 0.0884010340000000033 0.25076989999999999 0.00689665799999999996 0.0904284100000000007 0.242375249999999987 136 0 136 0 1.94648160000000003 164.322998 0.721794130615990959 0.863835743500620978 31 false 0.177320260000000007 1.01610625318635006 0.0936057417277301046 0.0866685900000000037 16 10 0.617141840000000053 0 16 false 135 372.611501807590002 1.46406994731247009 254.503998 19.2602249999999984 12 93.8722000783783983 9.09345560659478025 10.3230505000000008 20.4200459999999993 13 471.276262420336991 13.8371231825246994 34.0588339999999974 18.0787319999999987 1.51672300000000004 0 2.34131430000000007 1.15982059999999998 1.18149379999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.554618905415992 -63.2423226526530016 22.6029818547666999 -13.0872731464470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307264 2481165051705307264 250403498 2015.5 25.6698624879292012 0.271105876441821991 -3.37284203193090004 0.187350239616844993 0.256745275253644989 0.356310454261632992 0.720566200000000046 44.2504196860057988 0.389047787819502 -19.5324850382223012 0.333604413129437005 0.13439029999999999 0.708636500000000003 0.0873387600000000014 0.148755090000000006 -0.155167219999999995 0.0668807800000000008 0.142728309999999997 0.0227106600000000006 0.136120380000000013 0.319327650000000018 131 0 130 1 1.13525000000000009 143.091995 0.436525610213974014 0.817938061227846958 31 false 0.513153300000000034 1.51500703341528009 0.0640600067815186996 0.175147770000000008 15 9 0.381164759999999991 0 15 false 129 803.083895335195052 2.1563222474019601 372.432007 18.4264639999999993 13 381.757387319728991 14.6620546354170997 26.0370999999999988 18.8969200000000015 11 643.895723929653968 8.84417651384067049 72.8044900000000013 17.7398820000000015 1.27714309999999998 0 1.15703770000000006 0.470455169999999978 0.686582570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.414115700695987 -63.2729691344911984 22.5360174821400001 -13.0611645264398994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165429662430208 2481165429662430208 1514059112 2015.5 25.6741497471831011 0.379510949585849022 -3.36402981774307008 0.252271070042159984 0.74891108523532901 0.506367837847745972 1.47898630000000009 -3.88341108789501011 0.538073064516979005 -18.2421892180859011 0.406451716202536006 0.0780085900000000027 0.708702999999999972 0.110139585999999998 0.224466799999999994 -0.205997779999999991 0.120581480000000005 0.31466814999999998 0.0313401040000000006 0.172757729999999998 0.250878270000000014 141 0 140 1 2.73437330000000012 184.278 0.745371915755921988 1.34386558848184001 31 false 0.263637779999999988 1.54540229176717991 0.0771267096341388958 0.141697380000000012 16 9 0.519565700000000019 0 16 false 141 515.586023690497996 1.94264773691401005 265.403992 18.9076139999999988 13 157.607184868670004 7.35998072378265977 21.4140760000000014 19.857448999999999 14 549.41072827492701 11.0324269239127997 49.7996249999999989 17.9121780000000008 1.3712899999999999 0 1.9452704999999999 0.949834799999999979 0.995435700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.414069811350004 -63.2631726132200001 22.5434318115366992 -13.0545459072696008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165292223477504 2481165292223477504 534627943 2015.5 25.7185524326828983 0.168722941809527988 -3.36060188213973987 0.108958316011088005 0.0363009125255092033 0.222539159358603994 0.163121459999999996 -3.07680501667313999 0.22946848465747699 -5.51592428421067016 0.192519132508790991 -0.22221689 0.750912849999999965 0.108568189999999995 0.0545640550000000002 -0.448024599999999995 -0.00081989509999999999 0.125155450000000001 0.0445823149999999974 0.0553779599999999969 0.257327560000000011 121 0 119 2 1.18842270000000005 132.166 0.306231266121243018 1.38221201543077998 31 false 1.77922340000000001 1.5926551802862301 0.037299596632137999 0.0560849719999999968 14 9 0.227303969999999994 0 14 false 118 2207.47547755721007 2.9952775315687501 736.984985 17.3286270000000009 12 1150.00038190994997 12.1270185058770998 94.8296050000000008 17.6996439999999993 14 1577.28358808653002 13.6769600237793991 115.324134999999998 16.7671449999999993 1.23547650000000009 0 0.932498929999999948 0.371017460000000021 0.561481499999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.499197076602997 -63.2406188657860966 22.5870376801512016 -13.0676686596384002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157286404416000 2481157286404416000 662618515 2015.5 25.4536209076443996 0.255456711864679997 -3.49464313103558011 0.219539066251446008 0.807973777155207018 0.307179907958074982 2.63029499999999983 2.46127500531712995 0.566186939892646013 -11.9913757253662006 0.390709116399774015 0.204347460000000009 0.266958330000000021 -0.109939090000000003 0.113951759999999999 -0.16735797999999999 0.0437496939999999987 0.22515853999999999 0.0547570900000000013 0.138712840000000004 0.171829019999999999 177 0 176 1 0.743287150000000008 184.414993 0 0 31 false 0.243383349999999998 1.41618098126011005 0.0668528137471390005 0.0135651739999999993 20 10 0.504894550000000053 0 20 false 175 385.013535979458027 1.3015242227519801 295.816986 19.2246759999999988 15 113.040917959287 10.0014467869900994 11.3024570000000004 20.2182999999999993 16 416.489581576271007 6.58841876039492025 63.2154099999999985 18.2129100000000008 1.37535549999999995 0 2.0053901999999999 0.993623730000000038 1.01176639999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.099487890820001 -63.4768005889736031 22.2839359427128016 -13.0948792261220994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157737376395136 2481157737376395136 172581060 2015.5 25.4645324900388985 0.0703383812578458056 -3.4704017773393101 0.0562870744997783015 1.73286801612643004 0.0846622729111948941 20.4680080000000011 20.4464805311799012 0.14627989245610401 11.4852577597389995 0.106069864571833997 0.0869706650000000026 0.361365349999999974 -0.0215742800000000012 0.0653598499999999971 -0.219872280000000003 0.000704128239999999954 0.087226323999999994 0.0207634400000000011 0.155744099999999996 0.165097419999999995 188 0 185 3 4.82564539999999997 287.050995 0.299677338730026999 3.63347329017013987 31 false 3.39109779999999983 1.44155677360229006 0.0171850469944869015 0.0367999859999999998 21 10 0.135071899999999995 0 21 false 180 4426.51507446127016 3.99959264610895016 1106.73999 16.5732120000000016 19 1528.31412517991998 12.0433263592098001 126.901330000000002 17.3908559999999994 19 4296.71494048120985 12.8395141819397001 334.647800000000018 15.6790789999999998 1.31594009999999995 0 1.71177669999999993 0.817644099999999985 0.894132600000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.09786631403199 -63.4502347898750969 22.3035065266772001 -13.0763618886785995 100001 3999.66992 3940.19995 4317 0.168200001 0.0460000001 0.354999989 0.1052 0.0540000014 0.207699999 200111 0.648637800000000042 0.556782699999999964 0.66836439999999997 0.0970050699999999988 0.0871509899999999976 0.10685915 +1635721458409799680 Gaia DR2 2481351522005306368 2481351522005306368 1440377864 2015.5 25.4767464998067013 0.399113072925876999 -3.41209000174002997 0.340658598891798003 0.22544769102918899 0.508244909220315955 0.443580799999999997 4.20055715545780028 0.789532231232903947 -3.12990165946331 0.622543248480592948 0.0783991140000000059 0.429474599999999984 0.0749534800000000029 0.0665737400000000062 -0.268086900000000017 -0.00420920270000000023 0.174356800000000006 -0.00931648350000000014 0.137448270000000011 0.18254477999999999 176 0 172 4 1.19478369999999989 189.076004 0.655003002498628972 0.486254016065906014 31 false 0.107993809999999996 1.51181169301013996 0.104709763464396005 0.0131168629999999994 20 10 0.710326699999999978 0 20 false 173 241.125696562734987 1.33452658816204006 180.682999 19.7327580000000005 14 87.2043188197726948 12.4970058805386 6.97801700000000036 20.500043999999999 14 221.391706938207989 11.8016026907521994 18.7594600000000007 18.8990170000000006 1.27981389999999995 0 1.60102649999999991 0.767286299999999977 0.833740229999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.065811397047014 -63.3924143014403967 22.3372063689932006 -13.0266512708137991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351796885353600 2481351796885353600 75833813 2015.5 25.4527164772512009 0.883302703794016986 -3.38944973932458016 0.996539685537713993 1.00721596089840992 1.17211721835519 0.859313369999999965 3.26936847384213003 2.46422223940564011 -14.5350645006523997 3.60957272636579996 0.257769729999999975 0.277790340000000024 -0.0288017690000000014 -0.110372074000000001 -0.317778320000000003 -0.0757886799999999972 -0.153533639999999999 -0.204026600000000002 -0.133112389999999997 0.681625000000000036 108 0 103 5 1.07303360000000003 113.068001 1.79347557581582007 36.388569045865701 31 false 0.0287880410000000003 1.85121752546787999 0.303011083159916983 0.0272469860000000008 13 9 3.56852100000000005 0 13 false 103 95.5883366242841959 1.27991885754443002 74.6830978 20.7373539999999998 8 41.9328731736809033 4.73047517940185003 8.86440999999999946 21.2950020000000002 10 109.174676222846003 13.7746416694738993 7.92577269999999956 19.6666150000000002 1.5808158000000001 0 1.6283875000000001 0.557647699999999968 1.07073970000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.995643599027005 -63.3824134088774969 22.3228850751530992 -12.9967633283549997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351801178894592 2481351801178894592 289455600 2015.5 25.4612993869220006 1.67990465798774991 -3.39517049619341993 0.933735684048945025 3.86149362580151001 1.96988465694967996 1.96026379999999989 3.1165759788612899 2.69338270781027012 -1.09347380126696003 2.31555954792316987 -0.0964012149999999984 0.680744099999999963 0.368149969999999993 -0.191428999999999988 -0.278029320000000024 -0.304324450000000024 -0.296758350000000004 -0.0242985450000000013 0.0017935786999999999 0.274950980000000011 99 0 99 0 1.8652884999999999 121.174004 1.47545634904762002 0.48830683299720401 31 false 0.0299700599999999998 1.45949673804703006 0.302060235458516013 0.000217391189999999992 12 7 2.60073260000000017 0 13 false 101 100.909132607253994 1.41464554559547007 71.3317032 20.6785400000000017 12 54.6354209962428996 9.65840214464147984 5.65677640000000004 21.0077019999999983 11 78.7098504397955026 7.38897566793168004 10.652336 20.0218470000000011 1.32143900000000003 0 0.985855099999999984 0.329162600000000027 0.656692500000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.018411488885988 -63.3838573024080034 22.3288950089841016 -13.0052394230171995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351762523476352 2481351762523476352 26162654 2015.5 25.4786718509800991 0.652820766668389951 -3.4009281961445299 0.688656708500608006 1.93327896506048003 0.827601895489489037 2.33600120000000011 13.1001292149678008 1.49359743816754009 5.97270551694576035 1.99297153916261993 0.204431000000000002 0.351949200000000018 -0.0259663540000000005 -0.182982119999999998 -0.316620740000000012 -0.272426000000000001 -0.383867530000000012 0.0083238419999999997 0.151696620000000004 0.513669500000000001 131 0 131 0 1.34719480000000003 147.876007 1.14843090002788006 0.569830260925654031 31 false 0.0477456149999999982 1.51764904529436007 0.208018220698832995 0.0576720100000000027 15 9 1.95708820000000006 0 15 false 132 134.298906120108995 1.21065324292760002 110.931 20.3681850000000004 13 62.0230576461224032 11.1892925585168008 5.54307200000000044 20.870004999999999 13 186.971299662831996 14.9150673411424997 12.5357330000000005 19.0824829999999999 1.8540312000000001 0 1.78752139999999993 0.501819600000000032 1.28570180000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.058862457409987 -63.3815244037474983 22.3432626857279004 -13.0169836437335995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351835538609024 2481351835538609024 1168434449 2015.5 25.4661166614671011 0.0767087764205020006 -3.37983223325388993 0.0529658767383658011 0.302994090843781982 0.085925729960401806 3.52623249999999988 6.40217209317984981 0.149772718842091007 -7.4043396294569801 0.100206869590478004 -0.0238567299999999996 0.457860299999999998 -0.117380810000000002 0.0871468559999999948 -0.227014419999999995 0.0709930059999999974 0.140656019999999993 0.0204217270000000006 0.0754790600000000006 0.128009420000000013 178 0 178 0 -0.376496459999999977 165.442993 0 0 31 false 3.72161870000000006 1.59327856790597999 0.0183181651112200999 -0.0505328329999999992 20 10 0.137554850000000006 0 20 false 178 3524.65034011896978 3.19730979234384982 1102.38 16.8205759999999991 18 1829.01570604714993 11.2166476017620003 163.06259 17.1958449999999985 17 2494.51557204534993 12.8565218771828 194.027250000000009 16.2694550000000007 1.22665540000000006 0 0.926389699999999983 0.375268939999999995 0.551120759999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.013249317825995 -63.3679502023356989 22.3392849505303985 -12.9927534972208996 100001 5317.25 5002 5445.3999 0.493000001 0.230000004 0.66049999 0.239299998 0.114 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240608769917312 2481240608769917312 766650338 2015.5 25.0208023508284008 4.04136299496055962 -3.73645601522899007 2.9480294284764601 \N \N \N \N \N \N \N 0.161884339999999988 \N \N \N \N \N \N \N \N \N 79 0 78 1 45.9236799999999974 3213.06006 19.5652580392419999 388.452632511421996 3 false 0.0025363743999999998 \N \N 0.0086945400000000006 14 9 9.76447499999999913 0 14 true 124 373.508550304409994 6.11383845939997972 61.0923004 19.2576140000000002 12 507.544019763820017 12.1711443967008002 41.7006000000000014 18.5877039999999987 10 1200.58614369902989 11.9205685527275005 100.715509999999995 17.0634370000000004 4.57320200000000021 0 1.52426719999999993 -0.669910429999999946 2.19417760000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.454689702966988 -63.8809340033701005 21.7800326752038984 -13.1599903635389008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352690238576640 2481352690238576640 449607541 2015.5 25.4672465361798999 1.78889162621542996 -3.36037204237875997 1.67774948571356997 -4.64029995789419036 2.6432905604013901 -1.75550129999999993 -0.315484082448437009 2.84302155972773996 -20.5109971981028991 4.06826022438592005 -0.344382520000000025 0.724240400000000006 0.362126950000000003 0.0581101399999999976 -0.67025570000000001 -0.576467900000000033 -0.643312450000000036 0.400065930000000014 0.454337570000000024 0.526301099999999966 87 0 86 1 -1.16265649999999998 66.498497 0 0 31 false 0.0231393519999999984 1.38275183475113006 0.366038178537945014 -0.0279244909999999992 12 8 4.24535939999999989 0 12 false 90 82.2240364746083969 1.23064926093606997 66.8134995 20.9008700000000012 9 35.9119474765814033 6.91255582191606965 5.19517659999999992 21.4632910000000017 10 97.7347041749377041 7.69003797465903016 12.7092620000000007 19.786798000000001 1.62539640000000007 0 1.67649270000000006 0.562421799999999972 1.11407089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.996715219044006 -63.3499222927720993 22.3477212123403 -12.9750788428194994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156637864767488 2481156637864767488 1086362152 2015.5 25.4956193948715999 0.0464096216586436031 -3.50331236469929008 0.0473707296557685023 1.33125563546196002 0.0594805596860518981 22.3813570000000013 6.13528861064617015 0.112359906891143002 -0.801394491156915967 0.0908593815290150014 0.248629120000000009 0.142943769999999998 -0.0361191800000000007 0.201098520000000003 -0.441587659999999993 0.336539419999999978 0.419522369999999978 -0.161815939999999991 -0.212328779999999995 0.458012340000000018 157 0 155 2 2.69162649999999992 200.806 0.135244703991036996 1.37235483396003999 31 true 10.635999 1.53174202683653005 0.0131175740361694996 0.0946344300000000055 18 9 0.12031319 0 18 false 152 10958.0288312948996 8.4361069230906196 1298.93994 15.5890350000000009 14 4916.0517496101802 12.7937757746210004 384.253399999999999 16.1223470000000013 16 8679.32183105413969 28.4212564231720002 305.381349999999998 14.9157060000000001 1.24067689999999997 0 1.20664119999999997 0.533311839999999981 0.673329350000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.19243741996101 -63.4663625395427999 22.3206629888087988 -13.1183939983563995 100001 4938.75977 4866 5100.5 0.0715000033 0.00200000009 0.264999986 0.0403000005 0.000899999985 0.135100007 200111 0.714159129999999975 0.669583700000000004 0.735675300000000032 0.273372899999999974 0.247138959999999991 0.299606829999999991 +1635721458409799680 Gaia DR2 2481157526922586368 2481157526922586368 955893381 2015.5 25.5124639234090012 0.178358664528428995 -3.48615741788314004 0.159778509142575992 1.21434748328412989 0.221730595119136009 5.47667999999999999 1.03164391693829005 0.383590583697644982 -18.8509817272868005 0.305277706211926014 0.170992179999999994 0.309775619999999974 -0.00200929519999999999 0.0557397599999999993 -0.223911639999999995 -0.00428201029999999983 0.0979945799999999978 0.00385720210000000015 0.155171570000000009 0.211451169999999994 178 0 177 1 0.785395399999999966 186.278 0 0 31 false 0.469959879999999997 1.35830891392143993 0.0461550501563594978 0.0470555760000000017 20 10 0.349003500000000022 0 20 false 175 623.453707217519991 1.52620584915999991 408.498993 18.7013549999999995 18 129.748530259077995 9.81663054792755929 13.2172164999999993 20.0686320000000009 16 772.559775646323033 9.74531983836899052 79.2749560000000031 17.5420900000000017 1.44727399999999995 0 2.52654269999999981 1.36727709999999991 1.15926550000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.209562115953986 -63.4435939865893985 22.3432037634661995 -13.1086449830544005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156740943987712 2481156740943987712 754221326 2015.5 25.5378439718102008 0.080676900336070001 -3.49364941900071013 0.068432145522952903 0.264481544232038013 0.0964305668222586038 2.74271500000000001 3.57383541673452987 0.172692095975778004 -2.46589021060276981 0.134969877976093999 0.113969799999999996 0.298985359999999978 -0.0737305199999999938 0.0591210900000000011 -0.212007449999999986 0.0104746600000000002 -0.000554608500000000008 0.0393062569999999972 0.150131839999999989 0.19931857 168 0 168 0 0.802695040000000026 177.220993 0 0 31 true 2.53914019999999985 1.59976956590829 0.0208505876415930984 0.0277042429999999999 19 10 0.160288480000000011 0 19 false 165 2467.02480315205003 2.69717327696257003 914.669983 17.2079319999999996 19 1256.64411234213003 7.22841456823567974 173.847820000000013 17.603356999999999 17 1756.85461770026996 14.7305220889581996 119.266279999999995 16.6500799999999991 1.22151140000000002 0 0.953277599999999947 0.395425799999999994 0.557851800000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.267853309793992 -63.4392782929769012 22.3645489082683007 -13.1249464918111993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156736648602752 2481156736648602752 1340020125 2015.5 25.5399839575085998 0.539023790335956043 -3.49228554917521006 0.595783235160784019 0.0635813025038697993 0.662085676728067951 0.0960318399999999933 6.1069402198126399 1.26384934819139994 -6.28787092862170027 1.49737308037039996 0.332504179999999983 0.21264211999999999 -0.0432924439999999994 -0.128232139999999994 -0.233042909999999992 -0.171427970000000013 -0.249519380000000013 -0.00135991829999999999 0.183808489999999991 0.436765340000000002 152 0 152 0 2.33438349999999994 189.977005 1.33541497221566008 0.976071243060855021 31 false 0.0531032400000000029 1.05453806787427995 0.169961275365654002 0.102909975000000001 18 10 1.48087060000000004 0 18 false 152 148.751492216791007 1.09270601270762002 136.130997 20.2572119999999991 10 68.131480732862201 7.05459556878447991 9.65774399999999922 20.7680189999999989 12 161.010840806348995 8.50270126037560914 18.9364339999999984 19.2447809999999997 1.54043709999999989 0 1.52323720000000007 0.51080703999999999 1.01243020000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.270817726741996 -63.4371183101852978 22.3671039508310017 -13.1244658223816 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368081664 2481156805368081664 615261745 2015.5 25.5322622390197012 0.510803448269041005 -3.4824731616446698 0.508287077204074955 0.990049326358909965 0.634857774896484983 1.55948210000000009 3.36799457720892015 1.12256391412478007 -7.49803297694799031 0.951418576524946991 0.254637959999999997 0.267092349999999978 0.0361090640000000032 0.0813796600000000064 -0.179213580000000011 0.0154507010000000007 0.220693159999999999 -0.0355184750000000007 0.149012759999999994 0.206268759999999995 154 0 151 3 2.10787129999999978 184.283005 1.34320750872771 1.08275144730578998 31 false 0.0622829800000000017 1.60083068265080009 0.145398894835916004 0.0695095700000000066 18 10 1.02623099999999989 0 18 false 152 161.856453869084987 1.20256278225076008 134.593002 20.16554 15 65.2078467724877981 6.76653113509765003 9.63682099999999942 20.8156379999999999 17 132.117989015364998 7.01990228121274029 18.820488000000001 19.4595149999999997 1.21914100000000003 0 1.35612299999999997 0.650096899999999978 0.70602609999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.245732259476 -63.4316569729977999 22.3634601730011013 -13.1125036278781995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157870519974400 2481157870519974400 1331314081 2015.5 25.4820067762410005 0.113942188533391997 -3.45739515454607993 0.0907759848345447984 1.02003011068533 0.14001704447626101 7.28504229999999975 -1.42768771794420002 0.226956613061630008 2.24727824398067 0.165414073254087995 0.0578593719999999992 0.410170970000000024 -0.00811285699999999936 0.0857955600000000068 -0.25467873000000002 0.0176618940000000009 0.125369940000000013 0.0278097339999999991 0.147692010000000012 0.173403959999999996 183 0 182 1 1.44786330000000008 204.927002 0.0999530040028863004 0.122215266062142003 31 false 1.32546629999999999 1.4817567062625201 0.0277816993172136997 0.0162262859999999995 21 10 0.205091830000000003 0 21 false 181 1443.68147024894006 2.07201783496548986 696.750977 17.7896880000000017 19 501.803445408561004 9.99419853936364078 50.2094730000000027 18.6000540000000001 20 1366.14469181969002 9.50119880778470005 143.786560000000009 16.9231780000000001 1.29387830000000004 0 1.67687610000000009 0.810365699999999967 0.866510400000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.120353815507997 -63.4309394407403033 22.3250743903337998 -13.0707017652920001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157836160340096 2481157836160340096 224359691 2015.5 25.5004174978360005 0.526396132234074998 -3.45671562029203017 0.492585160048039983 0.239029307886514997 0.693961665498947 0.344441649999999988 -1.58949879735038002 1.25583043469076006 -1.25405834996462007 0.842538395859662947 0.221993949999999995 0.0977985900000000047 0.239891589999999988 0.0555408599999999975 -0.267668520000000021 0.0482286499999999979 0.303589900000000024 -0.21698176999999999 0.168783369999999988 0.0898024699999999954 165 0 165 0 0.875077400000000005 175.460007 0.791993721455912958 0.368422492828081982 31 false 0.0602551139999999985 1.3552510352629199 0.139271767418753994 0.0398380350000000008 19 9 1.11926400000000004 0 20 false 167 155.142321420002986 1.52737030028808007 101.574997 20.2115399999999994 17 121.069510629050001 9.38521527600427952 12.9000240000000002 20.1437999999999988 17 99.161808607114807 7.89153332587075962 12.5655950000000001 19.771059000000001 1.41954369999999996 0 0.372741700000000009 -0.0677394899999999994 0.440481200000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.156681921733991 -63.4223322051780016 22.3428693069205018 -13.0768440768834004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157526922587904 2481157526922587904 472420254 2015.5 25.5117420342144996 0.130066818151440999 -3.47779567024986003 0.118425039456308001 0.641675125756477005 0.157746977790287013 4.06774900000000006 1.25050293388970002 0.272330363501032013 -5.57927055128048011 0.219141055290309 0.233317699999999989 0.338673859999999993 -0.0147515819999999992 0.0848756600000000055 -0.140299170000000001 -0.00107831450000000009 0.108256210000000005 0.0323530659999999998 0.190952869999999997 0.217540860000000003 167 0 166 1 1.02362540000000002 179.358002 0.0544744535828066007 0.0244485944575534991 31 false 0.951141360000000047 1.52593059269317011 0.0348749336476767008 0.076655223999999994 19 10 0.25019619999999998 0 19 false 164 1106.05175757430993 1.90721826169616993 579.929016 18.0789280000000012 18 454.281174355047028 10.6839792358594998 42.5198480000000032 18.7080759999999984 16 947.299278297865953 8.81539466812101935 107.459655999999995 17.3207020000000007 1.26719249999999994 0 1.38737489999999997 0.629148499999999999 0.758226399999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.199958670714011 -63.4363829337745031 22.3456804996987017 -13.1006063798447006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368082048 2481156805368082048 680500812 2015.5 25.5250443055754985 0.289269202551296012 -3.4778346874100099 0.312188737300506003 -0.165849855054320011 0.342235937415352021 -0.48460677000000002 -0.910126630866643027 0.621487468524668962 -3.80702480203165017 0.543656853627492054 0.367670119999999989 0.259131820000000013 0.0533314159999999995 0.18119616999999999 -0.104511514 0.0911016760000000064 0.345265749999999982 -0.0239693989999999989 0.157075169999999986 0.244516490000000003 144 0 142 2 0.0828922200000000026 137.707001 0 0 31 false 0.209091709999999986 1.57109758565202995 0.0808737852793857959 0.0908935139999999947 17 9 0.587296299999999993 0 18 false 140 349.972736572090014 1.65315132999424996 211.699997 19.3282799999999995 13 166.254556080459992 7.0158746400966896 23.696909999999999 19.7994540000000008 13 257.030876264649009 8.90132435310082037 28.8755759999999988 18.7369580000000013 1.20948110000000009 0 1.0624962 0.471174240000000022 0.591321949999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.226713410074012 -63.4306276624009016 22.3583387155568012 -13.1055364224647004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157630001806592 2481157630001806592 787801497 2015.5 25.5105118985061985 0.294231520742975983 -3.45425560377044016 0.240040537862407005 0.72222988619737305 0.352082532793651981 2.05130839999999992 7.0681974884048504 0.663291752446219962 -15.2196443783040003 0.414549140641509994 0.217165069999999988 0.26032913000000002 -0.164997969999999994 0.125113830000000009 -0.0894878800000000058 0.00920066299999999955 0.248192300000000005 0.0954675450000000009 0.191945029999999989 0.108464329999999998 167 0 166 1 1.98601770000000011 198.563995 0.604225997186368047 0.730160978734177957 31 false 0.205527110000000013 1.55351160974235003 0.0749076102154404982 0.0435075279999999967 19 10 0.587322829999999962 0 19 false 166 378.804984918341972 1.21299224050584997 312.290009 19.2423269999999995 16 147.734760398389994 9.20772838688590056 16.0446470000000012 19.9276809999999998 17 332.91637027818399 14.3432774290313994 23.2106199999999987 18.4560810000000011 1.26886169999999998 0 1.47159960000000001 0.685354229999999953 0.786245349999999954 \N \N 0 \N \N \N NOT_AVAILABLE 152.174559334456006 -63.4157301594269995 22.3534162271321009 -13.0782709776310995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163711675499520 2481163711675499520 1337774177 2015.5 25.5103301112973 0.180566625629233007 -3.44543883543509999 0.139060640585900008 0.362598521606108004 0.226700808701943007 1.59945849999999989 1.51468472496139994 0.34459219029895799 -8.9809456218296404 0.244743456615547 -0.0102791940000000002 0.472631999999999997 0.0123680084999999995 0.0832652799999999971 -0.313568979999999997 -0.00568704349999999987 0.161057800000000001 0.0476659499999999986 0.145563529999999997 0.154895320000000003 176 0 176 0 2.53602499999999997 221.524002 0.198072568011691014 0.218787997297577003 31 false 0.593309799999999998 1.41470576850595009 0.0449632462296910979 0.00171080119999999993 20 10 0.307427229999999996 0 20 false 176 773.995456805198955 1.76966360985383009 437.368988 18.4665199999999992 16 240.845306024985007 16.4501292770058996 14.6409369999999992 19.397043 15 840.106250233696983 18.8892321717215985 44.475406999999997 17.4510840000000016 1.39658639999999989 0 1.94595910000000005 0.930522900000000042 1.0154361999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.165615551052014 -63.4078724105261031 22.3565789455299999 -13.0700079634687008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163746035361792 2481163746035361792 508289993 2015.5 25.5215928124227993 0.895187636585358049 -3.4371851541136702 0.654962232903740005 5.02322242997539981 1.25142293693303008 4.01400850000000009 -17.7580133909050986 1.16920123283273991 -61.1148933280985034 0.977235346545162975 -0.21103733999999999 0.765201750000000014 0.212690679999999993 0.126243999999999995 -0.48309713999999998 -0.000104933750000000005 0.312670100000000006 0.113484829999999995 0.0903887450000000064 0.238645639999999992 137 0 136 1 2.13000400000000001 167.802994 1.34034083100365997 0.874127080245890031 31 false 0.0543676729999999983 1.31104972896993011 0.158389848669988009 0.00856115200000000069 16 9 1.25895500000000005 0 16 false 136 163.058901680840989 1.54010500130349004 105.875 20.1575050000000005 9 38.823056045007803 12.7893098306899997 3.0355865999999998 21.3786640000000006 10 287.417922693622984 6.97548916297203014 41.2039800000000014 18.615635000000001 2.00075529999999979 0 2.76302899999999996 1.22115900000000011 1.54187009999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.180189843085003 -63.3955462586630034 22.3704304936998994 -13.0664782841645994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481472983682115840 2481472983682115840 644380518 2015.5 25.1910230068015011 0.321790231422195983 -2.6371602261754199 0.200195071546098002 1.67793194309271998 0.325199269663389023 5.15970369999999967 23.4606417750769012 0.874533004788909052 20.057922944343499 0.360948812447260015 -0.13108765 0.0150151690000000001 0.323282699999999978 -0.112605940000000002 -0.279314669999999987 -0.0398177129999999976 0.380916699999999997 -0.281863900000000001 0.0963177759999999938 -0.170314700000000013 119 0 113 6 44.5420069999999981 2970.01001 1.54089814908295009 182.401919089576012 31 false 0.398221370000000019 1.46130194576269989 0.0670314540793311014 -0.144869069999999989 15 9 0.781527700000000047 0 16 false 106 13032.4722815128007 37.7047391087152022 345.644989 15.4007989999999992 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.76682069252999 -62.8122174198036021 22.3579513894426007 -12.2011116277182001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163436797588608 2481163436797588608 1496778633 2015.5 25.5305909012858017 0.38077970590711302 -3.46495076787401013 0.381827113693270992 0.68963441858029495 0.461328470931835988 1.49488810000000005 -0.0933297459763813009 0.75053890528779299 -2.05074799939034014 0.650219921220461017 0.361407130000000021 0.385185200000000005 0.0665110800000000002 0.162296770000000007 -0.0391309339999999992 0.0344059430000000013 0.242599399999999993 0.00581375139999999995 0.230376479999999995 0.237629040000000014 152 0 151 1 3.24116399999999993 207.839005 0.727918685877066984 0.589438038011125043 31 false 0.123426610000000006 1.71718493435239994 0.101749599742130006 0.127220820000000012 18 9 0.70212960000000002 0 18 false 150 270.129017831734018 1.56464451041933006 172.645996 19.6094380000000008 9 175.603156684831987 17.463118709875701 10.0556579999999993 19.7400570000000002 12 203.297392627986994 11.9331654033529002 17.0363350000000011 18.9915899999999986 1.40266510000000011 0 0.748466500000000035 0.130619049999999987 0.617847440000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.225285059972009 -63.4166191309439 22.3684980430966007 -13.0955997273216003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163471157328896 2481163471157328896 1667660371 2015.5 25.5490044486157011 0.285914565300453005 -3.45523248572128994 0.21818587916160101 2.19327810086522978 0.353003301256267998 6.2131943999999999 9.21932480330579018 0.569809786767034976 -6.97276811406621988 0.394965220436144016 -0.0716871899999999979 0.424718859999999976 0.213928040000000014 -0.0035222719999999999 -0.325360629999999984 -0.0877292199999999966 0.166196079999999996 -0.0362707079999999987 0.168170939999999991 0.0526271430000000012 149 9 149 0 3.87512759999999989 219.397995 0.820269595894719039 2.33020205833366001 31 false 0.314121570000000017 1.2427959236450401 0.0669557547454345953 -0.0431214899999999984 17 10 0.483347120000000019 0 17 false 147 570.60449401532901 1.76875706968134994 322.60199 18.7975269999999988 12 100.138350968189002 7.60601936471331008 13.1656709999999997 20.349888 11 799.217361505311032 19.0576816958433 41.9367560000000026 17.5052589999999988 1.57614549999999998 0 2.84462929999999981 1.55236050000000003 1.2922688 \N \N 0 \N \N \N NOT_AVAILABLE 152.25275348018701 -63.3998535595433026 22.3897174978460995 -13.0933381457343998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163647251398400 2481163647251398400 1630473781 2015.5 25.5392378317851012 0.0537130218408223975 -3.43433287845796009 0.0430055077975744979 2.73082487937204998 0.0626077644087325025 43.617992000000001 -9.6667513262042899 0.107282500097385006 -6.21444181772609028 0.0924581970112983986 0.0808747799999999933 0.439580299999999979 -0.161692859999999994 0.0183106159999999983 -0.248958440000000003 -0.115036669999999994 -0.267304719999999996 0.145298759999999999 0.210981370000000001 0.306987400000000021 134 0 134 0 0.924086199999999969 143.701996 0 0 31 true 9.54392999999999958 1.41420880993777009 0.0140810511511038003 0.0388161299999999973 15 10 0.109529874999999999 0 16 false 134 7901.01272704708026 5.84755989921251018 1351.16003 15.9441590000000009 16 2469.80851169549987 29.0446694407048014 85.0348299999999995 16.8697300000000006 14 8125.57621688103973 16.1005420153825014 504.677200000000028 14.987285 1.34101599999999999 1 1.8824453000000001 0.925571440000000023 0.956873900000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.212806263870988 -63.3853024284208999 22.3883187474858012 -13.0703168570322994 100002 3817 3786.66992 4023.93994 0.0149999997 0.0103000002 0.0259000007 0.00800000038 0.00490000006 0.0154999997 200111 0.642279570000000022 0.577918400000000054 0.652610840000000025 0.0788917539999999945 0.0750291939999999935 0.0827543139999999955 +1635721458409799680 Gaia DR2 2481163574236545664 2481163574236545664 37487756 2015.5 25.5566524538705018 0.086230162159292606 -3.44850985971245994 0.0677032675877538986 0.470400275514715027 0.106852920421230999 4.40231559999999966 25.0346500446792994 0.170370991763053009 -10.4097349306934994 0.133284400209855991 -0.0558614730000000018 0.448137430000000003 0.0382579570000000022 0.00854166399999999916 -0.347058980000000017 -0.0787976900000000036 0.0171791999999999986 0.0397327400000000025 0.149498219999999987 0.159914730000000005 169 0 167 2 0.377647730000000015 168.209 0.0332246866924935033 0.0247965879643174993 31 false 2.71041940000000015 1.62549482268877998 0.0216751883060217997 -0.01628427 19 10 0.15613724000000001 0 20 false 164 2621.43658964350016 3.14644400699439997 833.143005 17.1420169999999992 15 1423.23402713249993 20.572943488421199 69.1798900000000003 17.468197 15 1771.60074996405001 8.52195679258372074 207.88660999999999 16.6410049999999998 1.2187344 0 0.827192299999999991 0.326179500000000011 0.501012800000000036 \N \N 0 \N \N \N NOT_AVAILABLE 152.261533892079996 -63.3904721065579011 22.3995469604578012 -13.0899012246522997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162822617233280 2481162822617233280 1663064566 2015.5 25.5664727249920993 8.47362455433587947 -3.44712360151945996 4.0331180885344704 \N \N \N \N \N \N \N 0.798348399999999958 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.53921930000000007 47.4996986 3.34269065305513013 1.31653311768932002 3 false 0.0199146200000000009 \N \N 0.182898179999999994 5 5 28.2778069999999992 0 9 false 43 96.130332398602107 1.9733749949571 48.7136993 20.7312149999999988 3 170.808203401973003 29.0816755852992017 5.87339639999999985 19.7701169999999991 4 283.733055749272012 24.7644930126351994 11.4572524999999992 18.629643999999999 4.72838539999999963 0 1.14047239999999994 -0.961097700000000055 2.1015701 \N \N 0 \N \N \N NOT_AVAILABLE 152.279866326903004 -63.3849428033212021 22.4094274548968997 -13.0922238927212007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162818322301824 2481162818322301824 1006931154 2015.5 25.5666303385641989 1.36228662255875999 -3.44707290025885982 1.5746668262877499 \N \N \N \N \N \N \N 0.170641619999999994 \N \N \N \N \N \N \N \N \N 86 0 81 5 10.2544979999999999 283.878998 5.08966932606382993 6.17267499654922958 3 false 0.0163755600000000008 \N \N 0.136587950000000014 10 8 4.15526000000000018 0 11 false 88 114.306178359330005 1.4421500126276201 79.2609024 20.5431920000000012 8 59.3293013528370992 15.5015086121096992 3.82732440000000018 20.918215 7 267.696150398112991 10.6129064370384008 25.2236420000000017 18.6928139999999985 2.86096050000000002 0 2.22540100000000018 0.375022899999999992 1.85037800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.280132749855994 -63.3848284487914029 22.4095967980661008 -13.0922347179986005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163574236546304 2481163574236546304 205544693 2015.5 25.5629061354872 0.897392013893163032 -3.44332303030780018 1.01862834652218992 -0.139398349243052 1.17367386504811 -0.118770940000000005 -3.40474387285425983 2.4666980458770702 -7.29218314645833043 4.15781835070804018 0.267009380000000018 0.293694999999999984 -0.16114908 -0.315230730000000015 -0.355039060000000017 -0.264450430000000014 -0.302115599999999984 -0.0917372199999999943 -0.00355736980000000017 0.689676700000000031 110 0 108 2 -0.363557579999999991 97.2266998 0 0 31 false 0.0301058849999999989 1.42529760848167997 0.301387245904091994 0.118019289999999999 13 8 4.0083120000000001 0 13 false 109 94.8976669872937038 1.72154115780601003 55.1236992 20.7452280000000009 11 76.2838308823027944 13.8958604836491997 5.48968029999999985 20.645308 12 61.5073101470120989 8.87035301681691024 6.9340320000000002 20.2896019999999986 1.4519972000000001 0 0.355705260000000023 -0.0999202700000000055 0.455625530000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.269011902393004 -63.383079632124101 22.4074669286177013 -13.0873790551508993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163608596285696 2481163608596285696 843529582 2015.5 25.5608481077872014 0.211485955362500005 -3.43500545640889987 0.167061919658273994 0.146115409942947999 0.261666750796585024 0.558402660000000051 4.47189284791778974 0.419191009088483002 -3.25855489199275006 0.316080269468291986 -0.0468922069999999983 0.412104279999999989 -0.0232737470000000009 0.0564765740000000016 -0.347205099999999989 -0.0031228813000000002 0.0459969159999999988 0.0355996900000000033 0.131450380000000006 0.168005690000000013 168 0 166 2 1.24641819999999992 183.688995 0.42023640592956002 0.706013845236489024 31 false 0.419875439999999989 1.68418072926915996 0.0551664245629973973 -0.0296175829999999994 19 10 0.37520224000000002 0 19 false 165 658.320330248531036 1.84206224941514995 357.381989 18.6422729999999994 16 336.436559792723983 8.91709932508969949 37.729374 19.0341300000000011 17 499.668502391783022 12.9928737007167996 38.4571200000000033 18.0152150000000013 1.27005799999999991 0 1.01891519999999991 0.391857149999999987 0.627058000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.256780147281006 -63.3764945134660991 22.4086520995595002 -13.0788896726062003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159451067931520 2481159451067931520 44851599 2015.5 25.6126566381653014 0.462717120413222993 -3.50227582495090006 0.411596267687906026 1.01696975761132991 0.594347736743068955 1.71106859999999994 -3.14912746347639994 0.957728604239705961 -4.20246074649618961 0.693412517596806 0.186085749999999994 0.348898649999999977 0.21731608999999999 0.135836989999999991 -0.246209470000000014 0.115473599999999996 0.354684300000000008 -0.151814830000000012 0.096037835000000002 0.19257566000000001 138 0 136 2 2.70943429999999985 179.110001 1.28558234139423 1.89731834655039999 31 false 0.107007190000000002 1.61779273634915999 0.116387752777088002 0.0623981799999999975 16 10 0.870146749999999969 0 16 false 136 267.066134361002014 1.42244151292724008 187.751999 19.6218189999999986 14 91.0870402698327979 7.55616072807444983 12.0546720000000001 20.4527469999999987 14 289.447831578055002 6.39272590020094977 45.2776870000000002 18.6079940000000015 1.42487129999999995 0 1.84475330000000004 0.830928800000000023 1.01382449999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.426367889382988 -63.4143326176951021 22.432571968238701 -13.1604796221980997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162444660556416 2481162444660556416 566526788 2015.5 25.5792863268952004 0.0289706677803447006 -3.48380350116728987 0.0220838273646866007 0.787157203033901021 0.034492768016242098 22.8209340000000012 -3.04556995391117002 0.0609251891449563016 -8.6218867122248497 0.0485831960872451993 -0.025066950000000001 0.370029869999999983 -0.0885877000000000053 -0.00229943960000000011 -0.377414000000000027 -0.155880330000000011 -0.340964319999999987 0.114245150000000004 0.245667639999999993 0.290076520000000004 156 0 155 1 -0.431762219999999974 142.001999 0 0 31 false 51.9111249999999984 1.59278393579695998 0.00738617479781814024 -0.0678180800000000028 18 10 0.066789100000000004 0 19 false 154 41529.2551862972978 15.5113180899423995 2677.3501 14.1424800000000008 19 22652.6062505414993 34.2265823701132987 661.842470000000048 14.4635929999999995 18 27553.1367985217003 33.635776673835899 819.161600000000021 13.6614920000000009 1.20892479999999991 1 0.802100200000000041 0.32111263000000001 0.480987549999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.341382821937003 -63.412333100879998 22.4077611561818983 -13.1310358733707009 100002 5760 5449.58984 5879.33008 0.864499986 0.751600027 1.10430002 0.432000011 0.351599991 0.549399972 200111 1.63460110000000003 1.56891920000000007 1.82611729999999994 2.64977030000000013 2.37691700000000017 2.9226236000000001 +1635721458409799680 Gaia DR2 2481162474725018368 2481162474725018368 1345442893 2015.5 25.5884550947572009 1.10372886953162008 -3.48051324390677985 1.24486371385370997 \N \N \N \N \N \N \N 0.218859300000000007 \N \N \N \N \N \N \N \N \N 95 0 94 1 1.60624400000000001 111.419998 2.16644810394253007 0.676776358114928978 3 false 0.0192324279999999993 \N \N 0.0688560399999999934 12 8 4.75864799999999999 0 12 false 97 84.1732284171636991 1.12981786078664004 74.5016022 20.875430999999999 8 56.7212071089004013 9.61138229764645047 5.90146200000000043 20.9670239999999986 10 64.4689172146488971 9.94899927852054056 6.47994000000000003 20.238544000000001 1.43977050000000006 0 0.728479399999999999 0.0915927899999999934 0.636886599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.35654436736101 -63.4053672065480995 22.4177424371975 -13.1313486664428005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159451067932928 2481159451067932928 1677155739 2015.5 25.6134623420862013 0.442611972947255017 -3.49637471292163982 0.407700893817956989 0.541631745919028962 0.563913822995362968 0.960486700000000027 -1.4813497990606399 0.931529325409915954 -8.82886867011660037 0.682805316009926999 0.207616329999999988 0.336984930000000016 0.0339877999999999986 0.166762219999999989 -0.279763370000000011 0.143190970000000001 0.384650199999999998 -0.0498761939999999987 0.0420121700000000015 0.244041900000000006 130 0 128 2 1.40225590000000011 145.582993 1.02990486191607999 1.20456776198629001 31 false 0.118729409999999994 1.31651451657662011 0.118074993311998 0.0646536100000000002 16 10 0.848647299999999993 0 16 false 129 277.672662186377011 1.57179517831290005 176.660004 19.5795330000000014 12 99.7903779448773065 6.43492471736531968 15.5076219999999996 20.3536660000000005 12 298.688257035511015 14.2702787663339006 20.9307939999999988 18.573875000000001 1.43506610000000001 0 1.77979090000000006 0.774133700000000036 1.00565719999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.42219475153999 -63.4086774302224967 22.4355721176739991 -13.1552896922027003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159592802272128 2481159592802272128 381460939 2015.5 25.6596373852168007 0.0295543894636953984 -3.5036976981877701 0.0245118950206591017 0.836740948113222971 0.0383673508725412976 21.8086720000000014 10.2457850875076009 0.0538173912081889028 -0.0376677822615143001 0.0518810705075500034 0.111341229999999999 0.556437300000000024 -0.0164360890000000009 0.0359746550000000012 -0.274944540000000015 0.000264587960000000006 -0.0916147499999999948 -0.00937085200000000069 0.056880258000000003 0.427469549999999976 149 0 147 2 -1.75849260000000007 113.803001 0 0 31 true 60.4203100000000006 1.61252078489765993 0.0079466404493716801 0.101604239999999998 17 10 0.0636208500000000066 0 17 false 146 47337.1072001025968 16.2071361653923987 2920.76001 14.0003609999999998 16 25950.7116132529991 48.2413880018653032 537.934600000000046 14.3160150000000002 13 31151.5564497583 32.7158928157916975 952.184200000000033 13.5282199999999992 1.20628979999999997 0 0.787795070000000042 0.315653799999999984 0.472141270000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.521843461638014 -63.3949935479942965 22.4768083366728 -13.1790725253536998 100001 5884 5816 6279.5 0.796299994 0.671899974 1.03429997 0.378699988 0.313899994 0.452499986 200111 1.56781020000000004 1.37653800000000004 1.6046859 2.65443659999999992 2.37461540000000015 2.93425769999999986 +1635721458409799680 Gaia DR2 2481159485427671424 2481159485427671424 563549228 2015.5 25.6292852033465017 0.659075445392601988 -3.49570337911571016 0.650999991027602976 -0.321974060613828994 0.824644211109898051 -0.390439959999999975 -2.57208643522199987 1.22186833830152008 -5.13944434155052043 1.33353370430298002 0.374606759999999983 0.509263200000000027 -0.00709251799999999991 -0.0231936759999999999 -0.0599407370000000009 -0.101582309999999995 -0.09215922 -0.0116734839999999996 0.124768496000000007 0.420254599999999978 123 0 121 2 2.05995559999999989 149.498993 1.57360234320843007 1.17918177453691997 31 false 0.0590791260000000026 1.78088098070177003 0.193852980785591988 0.188684639999999987 14 9 1.3423731000000001 0 14 false 121 178.787792563844988 1.18357127648816007 151.057999 20.0575219999999987 12 139.956846544716996 20.7545338416918987 6.74343499999999985 19.9864029999999993 12 131.446379622193007 9.8831093238538692 13.3001039999999993 19.4650479999999995 1.51801870000000005 0 0.521354699999999949 -0.071119310000000005 0.592473999999999945 \N \N 0 \N \N \N NOT_AVAILABLE 152.453230661303991 -63.4011386679011011 22.4509049693803995 -13.1604828109972996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159558442533376 2481159558442533376 501905504 2015.5 25.6179647637090007 0.0292287967093876992 -3.48638451063576005 0.0245734509534877993 3.00043348137218002 0.0378911716610908014 79.1855549999999937 15.0243884894446005 0.0536565248033315997 -4.09660611346786041 0.0524994291275686989 0.117690580000000003 0.554140570000000054 -0.017496778000000001 0.0392049179999999983 -0.278552350000000004 0.0316705499999999987 -0.0494372920000000007 -0.0288020039999999991 0.0251008589999999997 0.444494840000000002 148 0 148 0 -4.00063369999999985 84.9802017 0 0 31 false 60.8817999999999984 1.50642691121446992 0.00787963451229902953 0.107399980000000006 17 10 0.064378829999999998 0 17 false 148 47670.4029659228036 23.6270685747231006 2017.62 13.9927434999999996 16 21128.5366590507983 55.9093485257348988 377.907039999999995 14.5392150000000004 15 38073.7565963201996 110.513424873947997 344.517029999999977 13.3103560000000005 1.24190880000000003 0 1.22885899999999992 0.546471599999999946 0.682387349999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.421419750826004 -63.3977284407554009 22.4436416655075988 -13.1476572496366 100001 5038 4860 5169 0.163000003 0.00889999978 0.30399999 0.0869999975 0.0285999998 0.158999994 200111 0.628236649999999952 0.596796899999999964 0.675098360000000008 0.229073019999999988 0.222405049999999993 0.235740990000000011 +1635721458409799680 Gaia DR2 2481159485427673984 2481159485427673984 584946176 2015.5 25.6350696350266993 0.144016358724934013 -3.48467372525266983 0.120171035326342004 0.622454760524749018 0.186152216867274012 3.34379459999999984 10.5235363331493001 0.25929200682515402 4.6496825780894504 0.217572076746296 0.0961833099999999941 0.53407115000000005 0.0355395749999999969 0.108607179999999998 -0.264892300000000025 0.0739701900000000051 0.199862050000000013 -0.00243515640000000009 0.0800980260000000027 0.276232399999999989 146 0 144 2 0.515554850000000009 147.080994 0 0 31 false 1.14448250000000007 1.49625449199981997 0.0367625242258005011 0.101704515999999995 17 10 0.244357899999999989 0 17 false 143 1273.79458085961005 2.27224844839757978 560.588013 17.925616999999999 12 456.913157812280986 5.57038980400082018 82.0253450000000015 18.7018030000000017 14 1234.3147267715101 11.0462544376915996 111.740570000000005 17.0333560000000013 1.32770849999999996 0 1.66844750000000008 0.776186000000000043 0.892261500000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.453991210765992 -63.3886938738394008 22.4605892197794006 -13.1523549050351996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159592802272000 2481159592802272000 191352344 2015.5 25.6595320099920983 0.255682950020174993 -3.49919838870420019 0.218987338789463998 2.21589623616451004 0.328083166551832006 6.75406900000000032 2.11183433158574996 0.523188460969611024 -5.01434893682893978 0.409645294916208991 0.14290217999999999 0.387990700000000022 0.14300328000000001 0.0737611060000000068 -0.270422249999999975 0.0569372500000000017 0.156527269999999996 -0.100744790000000001 0.0939382099999999942 0.252800049999999998 130 0 130 0 1.40968169999999993 147.893005 0.618200918581743974 1.19160672311121996 31 false 0.357007919999999979 1.3197076590949699 0.0760555126292400963 0.077076875000000003 15 10 0.481085959999999979 0 15 false 130 590.624472023632961 1.90206788462830989 310.516998 18.7600879999999997 12 150.577151191670993 11.2471727497327993 13.3880005000000004 19.9069900000000004 12 777.888440230099945 23.4757490035574996 33.1358299999999986 17.5346259999999994 1.57200659999999992 0 2.37236400000000014 1.14690209999999992 1.22546200000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.517209759711989 -63.3910000500562987 22.4784095560228003 -13.1748506561691006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162440365174656 2481162440365174656 1612224417 2015.5 25.5792053420909014 0.705617453069790956 -3.47446870475922998 0.801032408241348026 0.896773438501353048 0.919357659698574969 0.975434800000000046 -11.4094879281503996 1.61809665297064997 -66.3012443377419061 2.25787345914985016 0.23581162 0.358947159999999987 -0.0930146800000000024 -0.201050759999999995 -0.36419994 -0.365285130000000013 -0.498929920000000027 0.110968499999999998 0.235575349999999989 0.580158770000000046 140 0 138 2 1.12422650000000002 151.462997 1.18607802223268011 0.47169037285374299 31 false 0.0398584749999999974 1.59918842317115995 0.210421958099764994 0.07043431 17 9 2.25182819999999984 0 17 false 139 124.302268029372001 1.19427539469127009 104.082001 20.4521680000000003 11 58.4885667754283034 15.4839226770824006 3.77737400000000001 20.9337100000000014 11 159.475755033360997 11.9958277700124007 13.2942689999999999 19.2551839999999999 1.75350239999999991 0 1.6785258999999999 0.481542599999999987 1.19698330000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.332091309374988 -63.4039756965184012 22.4112153619299015 -13.1223278994773001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162543444390272 2481162543444390272 1468168913 2015.5 25.597424303685699 0.367720235265454998 -3.47150380187113994 0.329097509455155979 0.188235407734907989 0.500225774304505988 0.376300899999999994 -0.944520465025884048 0.789186717303620999 -3.29521923672432981 0.675480296809670033 0.0562774050000000026 0.312156739999999988 0.145971829999999997 -0.0421131599999999967 -0.407694639999999997 -0.150179979999999991 -0.19795407000000001 0.00495930999999999976 0.284278099999999978 0.244583949999999994 147 0 147 0 1.84478059999999999 174.645996 1.00483547252770999 1.44384439843543011 31 false 0.145449040000000002 1.63715558296096009 0.098251207848254099 0.0244666229999999998 17 9 0.737824440000000026 0 17 false 147 327.242377518736987 1.47311932472705998 222.141998 19.4011920000000018 12 237.969639680032998 13.1775846234151999 18.0586680000000008 19.4100840000000012 12 210.637325281389991 9.53141144449072009 22.0992800000000003 18.953081000000001 1.37087059999999994 0 0.457002640000000016 0.00889205900000000077 0.448110579999999981 \N \N 0 \N \N \N NOT_AVAILABLE 152.365702642101013 -63.3933462029689991 22.4296969038045013 -13.1262707850733999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163986553408896 2481163986553408896 1155385798 2015.5 25.5718595994194011 0.249362904762155002 -3.42917855531355009 0.202225907964036999 1.03027424513034993 0.317623533105412026 3.24369620000000003 7.35919441569536037 0.492973198197139972 -5.59310755554279027 0.381586738148535998 -0.0208775099999999984 0.437537549999999997 0.0221131900000000013 0.0420665849999999966 -0.35962048000000002 -0.0248002800000000009 0.0722752499999999992 0.0276424070000000008 0.128071469999999993 0.194434689999999993 174 0 173 1 3.58119630000000022 241.714996 0.827288192074770001 2.25648202162490019 31 false 0.290397760000000005 1.36210473961447009 0.0638695575959151024 0.00395193460000000003 20 10 0.444118349999999995 0 20 false 171 556.953854865079961 1.73102507387577997 321.747986 18.8238179999999993 18 160.876355809654001 7.48739767195425987 21.4862840000000013 19.8351569999999988 17 621.310704493542971 8.25318242243369049 75.2813500000000033 17.7786480000000005 1.40440190000000009 0 2.05650900000000014 1.0113392000000001 1.04516980000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.273162855363012 -63.3664518805897998 22.4213466402073998 -13.0775217397738004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163234934280320 2481163234934280320 1057182072 2015.5 25.5922244582177996 1.24690680336821003 -3.43676881657074995 1.17790915283181996 0.474812360706057979 1.84974285090514989 0.256691000000000003 -1.46818135417477991 1.92053065712601989 -3.35060350066564983 2.77906439125982985 -0.315497000000000027 0.757443960000000027 0.145433430000000002 0.151696040000000004 -0.619475899999999968 -0.462402020000000025 -0.645501259999999966 0.320367840000000015 0.404314549999999995 0.594943760000000044 116 0 115 1 -1.35030770000000011 90.5756989 0 0 31 false 0.0299077090000000011 1.36254953969355008 0.284572529942349994 0.0150950830000000005 15 8 2.91161370000000019 0 15 false 118 106.393827447689006 1.77447658091979998 59.957901 20.6210750000000012 13 81.9430809050085998 16.0064667697924001 5.11937330000000035 20.5676079999999999 13 76.2505211059626049 7.22178000569737044 10.5584109999999995 20.0563129999999994 1.48686830000000003 0 0.511295300000000008 -0.0534667970000000034 0.564762100000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.321347234358001 -63.3643904183388997 22.4378790543346014 -13.0920661692340001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163166215075072 2481163166215075072 168294759 2015.5 25.5981626764868011 0.0749750545490188991 -3.45206358809031011 0.0589724170689088015 5.13840390472070041 0.0923530046817199052 55.6387300000000025 57.9671433956924034 0.146780989539459006 -31.0715860073325985 0.126596278291991993 -0.0548814129999999969 0.463091199999999981 -0.0712694100000000053 0.0284663850000000003 -0.381759020000000004 -0.0956049340000000025 -0.21820951999999999 0.0896446199999999943 0.177657700000000002 0.289577340000000016 165 0 161 4 6.77893900000000027 307.937988 0.338785144555412976 5.9962972751291499 31 false 3.90652750000000015 1.26992463053478999 0.0184746493769123998 0.00348350750000000001 19 10 0.14360661999999999 0 19 false 161 6437.02742470716021 5.75186620162518025 1119.12 16.1666530000000002 19 1359.58786195143011 9.82617419114843926 138.363900000000001 17.5178699999999985 17 7925.29683292547998 20.760561520751299 381.747700000000009 15.0143810000000002 1.44241810000000004 0 2.50348850000000001 1.35121730000000007 1.1522713 \N \N 0 \N \N \N NOT_AVAILABLE 152.348173772387014 -63.3755474371440002 22.437753039775 -13.1084689166741999 100001 3354 3323 3584.3999 0.187000006 0.100500003 0.647099972 0.0973000005 0.0590000004 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159554148290048 2481159554148290048 1040484981 2015.5 25.6204958577722017 0.549859605211617031 -3.47303545441552997 0.516612508963081973 0.885286775879650989 0.698771783436728966 1.26691829999999994 -20.5155753713526003 0.996110285095973991 -23.5450677959801986 0.858713404213397036 0.242518929999999994 0.497092069999999997 0.106646000000000005 0.198669509999999994 -0.172218619999999989 0.11498121 0.364781619999999973 -0.00560512400000000039 0.130739479999999991 0.268216759999999999 140 0 140 0 3.80156420000000006 206.709 1.6613313957518101 1.94980882715014991 31 false 0.0747956199999999932 1.17577934184595989 0.142403851041812995 0.134179319999999991 16 10 0.952319559999999954 0 17 false 140 214.599582246208001 1.55030770298156995 138.423996 19.859293000000001 11 54.3555655212909983 8.46873195194065076 6.41838300000000039 21.0132790000000007 14 290.126144560212026 11.0427957401947001 26.2728879999999982 18.6054530000000007 1.60523009999999999 0 2.40782549999999995 1.15398599999999996 1.2538395 \N \N 0 \N \N \N NOT_AVAILABLE 152.413408326584005 -63.3846248417805 22.4511025688729013 -13.1361771526489992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159867680178432 2481159867680178432 548088704 2015.5 25.640933577165999 0.0437963890695389976 -3.47233907635391015 0.0378579908650686012 4.19206087328580956 0.0566125734401652994 74.0482300000000038 20.3991940595526984 0.0803369528016425055 -45.9468862720594018 0.0867849091198631961 0.149919780000000002 0.576010169999999988 -0.0863199159999999965 -0.0243358870000000005 -0.247999730000000002 -0.103950520000000005 -0.259973820000000022 0.0287025049999999997 0.0633082400000000017 0.504603400000000035 141 141 137 4 0.194669869999999995 134.511993 0 0 31 true 280.556150000000002 1.56902601729181002 0.0120853415150006006 0.118890986000000004 16 10 0.0603108200000000011 0 17 false 134 194955.08011417801 44.3193791137297026 4398.87012 12.4635300000000004 17 95034.4144290710974 144.11396763125299 659.439330000000041 12.9066860000000005 16 142056.194028186001 91.8261938428507989 1547.01170000000002 11.8807700000000001 1.21612940000000003 0 1.02591610000000011 0.443156239999999979 0.582759860000000018 26.2996133884480017 2.52177347998641999 5 5500 4.5 0 NOT_AVAILABLE 152.453631068888001 -63.3750418865116032 22.4708422119155991 -13.1430426577798993 100001 5118.25 5024.06982 5245 0.0700000003 0 0.275999993 0.0463000014 0 0.134100005 200111 0.874211999999999989 0.832470359999999965 0.907294869999999976 0.472513530000000015 0.464007400000000014 0.481019650000000021 +1635721458409799680 Gaia DR2 2481162994416369536 2481162994416369536 1437666744 2015.5 25.6273313332405017 0.0946800564411073992 -3.44478658691198003 0.0753916296051842932 0.257851341143979007 0.117228530310679993 2.19956139999999989 -0.91024531334285097 0.183412280640497999 -3.75588373257826014 0.137367895784412997 0.101173059999999995 0.462632659999999973 -0.0860626399999999958 0.11488719 -0.25793640000000001 0.0875888900000000026 0.177438129999999999 0.0355030929999999995 0.0776478899999999972 0.257062259999999987 141 0 141 0 1.94312740000000006 169.856003 0.161483380828277012 0.561779029426905052 31 true 2.82831980000000005 1.52383903225438 0.0225925751301955004 0.0670818400000000037 17 10 0.170346439999999988 0 17 false 137 3030.96252486508001 3.51400177626701016 862.539001 16.9844149999999985 15 1467.75906532590989 14.2316244773889995 103.133629999999997 17.4347519999999996 13 2314.50060035393017 13.2712698002641005 174.399339999999995 16.3507770000000008 1.24787409999999999 0 1.08397480000000002 0.450336459999999994 0.633638400000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.399438513169997 -63.3562462389878007 22.4682985876921997 -13.1124264677319999 100001 4919.81982 4381.9502 5155.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162921401516800 2481162921401516800 18743878 2015.5 25.6358657968709984 0.530725136607609005 -3.44783823866570982 0.442703614163617976 1.80057252748265006 0.642155483896709955 2.80395100000000008 -8.54445760391589992 1.00753052264394993 1.98173465592015008 0.722617606934471968 0.163512889999999994 0.454328860000000001 -0.111294955000000001 0.212143439999999989 -0.160857869999999986 0.134277210000000008 0.338745179999999979 0.102250754999999999 0.139161599999999996 0.199517680000000003 122 0 120 2 4.7576236999999999 202.322006 1.66596469181931006 3.28726153985676017 31 false 0.0977501350000000019 1.50830443450102991 0.130831769181285001 0.070898409999999995 14 10 0.907332660000000013 0 14 false 117 287.388174138763986 1.35360011639833999 212.313995 19.5421939999999985 10 76.856214879202696 16.5344971955103013 4.64823439999999977 20.6371900000000004 12 347.214291255619003 9.39910033464873962 36.9412269999999978 18.410425 1.47560179999999996 0 2.22676469999999993 1.09499550000000001 1.13176919999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.419494728158014 -63.3552508476013969 22.4752772986441016 -13.1184007214322005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163093201349504 2481163093201349504 908647154 2015.5 25.6317918753724001 0.747721754249329962 -3.43044110070285013 1.13231116083455996 0.29425631967761201 0.979273581046314012 0.300484269999999998 -3.61930359399427992 1.69258979743055993 -9.27141553956940001 2.75179233508344989 0.475010099999999991 0.149161600000000005 -0.275754060000000023 -0.418220599999999998 -0.462653580000000009 -0.648372529999999947 -0.805106600000000006 0.366872160000000003 0.54816233999999997 0.662578800000000023 119 0 119 0 1.65453800000000006 140.085999 0 0 31 false 0.0497723519999999989 1.22889552104049993 0.214910230781968997 0.167466449999999989 14 8 2.85310079999999999 0 14 false 115 133.722611620000009 1.41824125786985 94.2875977 20.3728540000000002 6 104.336049449067005 14.0865709315912007 7.40677400000000041 20.3053020000000011 7 154.810199576150012 13.8860932435757007 11.1485789999999998 19.2874200000000009 1.93793890000000002 0 1.01788140000000005 -0.0675525700000000062 1.08543400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.394333306498993 -63.3414012441702994 22.4779727209262994 -13.1007285404922005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163024480733056 2481163024480733056 906918443 2015.5 25.6409328260618992 0.473671323168997016 -3.44033567419474018 0.458130701851563016 -0.529863157585498956 0.603299484141131992 -0.878275499999999987 0.0825327501032740024 0.870402980728119946 1.12935933522631005 0.732041658974974974 0.235430510000000009 0.475356700000000021 0.219892589999999999 0.213947899999999996 -0.185043449999999998 0.137858540000000002 0.487754369999999993 -0.0847665100000000032 0.111440144000000005 0.223522589999999993 140 0 137 3 1.94201470000000009 165.358994 1.3917348517177901 2.44010443069501992 31 false 0.109491179999999994 1.53038298205431 0.118942625156575998 0.140746270000000007 16 10 0.830311829999999973 0 16 false 137 284.161793266532982 4.25967187959351001 66.7098007 19.5544510000000002 13 227.466203733621995 22.9599664559952004 9.90707899999999952 19.4590969999999999 14 191.848302326524987 13.7281695199453004 13.9747920000000008 19.0545250000000017 1.4756187999999999 0 0.404571530000000013 -0.0953540799999999938 0.499925600000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.422285779258999 -63.3462896289131976 22.4829423455388984 -13.1132876969207999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159622866625920 2481159622866625920 730186894 2015.5 25.678508210156501 0.401696576043096998 -3.4901075003563502 0.356800240379878009 1.56147292958143002 0.526541118982634004 2.96552900000000008 1.51934712404004002 0.751339410371297034 -4.83982717185500988 0.600812766264582021 0.141575620000000013 0.478721019999999997 0.0905421750000000025 0.147462430000000005 -0.264736650000000018 0.104957670000000003 0.329279900000000014 -0.0344464780000000026 0.084680430000000001 0.241606180000000004 149 0 148 1 4.10279940000000032 223.313004 1.35548015700263003 2.73902456662159999 31 false 0.133823749999999991 1.26447440974170999 0.104948990812349 0.111409253999999999 17 10 0.693690499999999988 0 17 false 148 330.883077829798992 1.6763709303946901 197.380997 19.3891799999999996 13 94.8012319189442962 8.81845166189756036 10.7503259999999994 20.4093529999999994 13 425.654215413441989 11.5400340673295005 36.8850059999999971 18.1892780000000016 1.57292849999999995 0 2.22007559999999993 1.02017399999999991 1.19990160000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.546228495002993 -63.3744963867749007 22.4999335588302998 -13.1733727366111992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159725945842816 2481159725945842816 983994729 2015.5 25.6820428272999983 1.00884328565259995 -3.48287986120503978 1.23020018974098999 -0.533633689462627014 1.11555359921045993 -0.478357729999999981 -2.28816867245887012 2.18493304038553982 -0.0818946346563422939 3.05072530058283986 0.518939200000000045 0.352679819999999977 -0.300298930000000019 -0.301926020000000017 0.0137763060000000003 -0.348234329999999981 -0.510786100000000021 0.0452265499999999973 0.0665183699999999933 0.554810499999999984 88 0 87 1 -0.0775869500000000017 80.3508987 0 0 31 false 0.0322510150000000009 1.85154490683236994 0.346459929160474023 0.154397620000000013 10 8 3.05501129999999987 0 10 false 87 105.718006599467003 1.5022763010692699 70.3719025 20.627993 6 77.1386823699484978 17.0731258224612006 4.51813459999999978 20.6332069999999987 6 88.4844611404318044 21.3877671186376013 4.13715269999999968 19.8947530000000015 1.56665030000000005 0 0.738454799999999967 0.0052146909999999996 0.73324009999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.546189608927989 -63.3664536398511018 22.5060353281700003 -13.1679517188609001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159725945842176 2481159725945842176 959549467 2015.5 25.6893904755444993 0.288375039248006004 -3.48543149069661995 0.246421027044168989 1.7275270155214999 0.375214232973114015 4.60410830000000004 28.6901925504542987 0.541928836599970043 -15.6526531769564006 0.416216224936198975 0.0970297100000000051 0.471184050000000021 0.0372934229999999992 0.141946879999999998 -0.290619400000000028 0.106924989999999998 0.284598919999999977 -0.00859208499999999931 0.0846409199999999945 0.234967509999999991 144 0 143 1 3.46796000000000015 203.139999 0.984283645643757032 2.89672336627837002 31 false 0.270503549999999982 1.29691837873956994 0.0740406168962881028 0.0953751949999999959 17 10 0.49471896999999998 0 17 false 144 553.106599124570948 1.78186120870200004 310.408997 18.8313430000000004 15 151.998358823858013 7.57215144189579981 20.0733379999999997 19.8967910000000003 13 656.494402882343024 9.4498401739215101 69.4714799999999997 17.7188419999999986 1.46173050000000004 0 2.17795000000000005 1.06544879999999997 1.11250110000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.563383693437999 -63.3655117764783 22.5120737223896015 -13.1730242031644007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158729513426176 2481158729513426176 908030086 2015.5 25.7226762912690994 0.106496122199007004 -3.50164511268377021 0.0896060700807561061 0.0795746772532378993 0.13511752301138899 0.588929359999999957 -0.908401695092364014 0.201814520906631989 -4.21174501984035032 0.170177740038329001 0.0476368439999999976 0.495136650000000011 0.029584876999999999 0.0567488300000000001 -0.271484940000000008 0.0246741120000000015 0.19786838000000001 -0.0118947600000000007 0.0662867399999999968 0.205854399999999993 140 0 137 3 2.24855779999999994 171.214996 0.307406708789929983 1.81982782316210989 31 true 2.11421629999999983 1.55329039912370992 0.0262399066344849996 0.0842434299999999942 16 10 0.18712123 0 16 false 135 2653.33241138018002 4.55342743825721019 582.710999 17.1288869999999989 15 1386.26262588462009 14.5744980932692005 95.1156299999999959 17.4967749999999995 14 1857.92850289635999 16.0765083382672991 115.567909999999998 16.5893480000000011 1.22268559999999993 0 0.907426830000000018 0.367887499999999978 0.539539340000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.645848682625001 -63.3653952029594976 22.5376711522719013 -13.2003295732731996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158729513427968 2481158729513427968 249126949 2015.5 25.7284254922786992 0.469767756077723975 -3.49288244713690021 0.479214655514105026 0.587822123465287949 0.597491897051766974 0.983816099999999971 3.23994642261776011 0.960916045132752972 -15.4615542152337007 0.826653376004861995 0.223952869999999998 0.365594860000000021 0.184657280000000007 0.126123440000000003 -0.16677749 0.0258478800000000002 0.395678160000000001 -0.0972798599999999958 0.157109990000000005 0.141847200000000007 124 0 124 0 1.98012319999999997 151.451996 0 0 31 false 0.101166110000000004 1.16884273704030006 0.133628759130635988 0.0935332700000000017 15 10 0.875387669999999951 0 15 false 124 223.55574553400001 2.0868528991602 107.125999 19.814900999999999 8 71.4434302116574003 12.6427337077524005 5.65094799999999964 20.7164819999999992 9 350.452349174116023 29.5699924601291997 11.8516220000000008 18.400347 1.88720620000000006 0 2.31613539999999984 0.90158079999999996 1.4145546 \N \N 0 \N \N \N NOT_AVAILABLE 152.648691405178994 -63.3549985704375018 22.5464643087301013 -13.1942942460983996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160481860087808 2481160481860087808 1528386141 2015.5 25.7166870190070007 2.74657164192780989 -3.47481500156425982 2.7923208227043399 \N \N \N \N \N \N \N 0.132911499999999988 \N \N \N \N \N \N \N \N \N 100 0 100 0 48.5661849999999973 3560.6001 14.9737973248545995 197.065655913560988 3 false 0.00410918570000000025 \N \N 0.131943119999999997 14 9 6.22115229999999997 0 14 false 123 281.896461255598012 3.01365112208661001 93.5398026 19.5631400000000006 10 419.127306255577992 19.6313137539269995 21.3499370000000006 18.7955229999999993 13 836.990918546139028 8.99525620024090955 93.0480349999999987 17.4551179999999988 4.45595599999999958 0 1.3404045 -0.767618200000000028 2.1080226999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.607463965313997 -63.3439647772110987 22.5421050424831009 -13.1731826181868001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159798960701568 2481159798960701568 246110891 2015.5 25.6727693191126995 0.0285283026182993997 -3.47031547746638003 0.0235804009000220999 2.75151725753153986 0.0365830626538986015 75.2128749999999968 1.96080043780838009 0.0505039322223923975 0.00248547772936480015 0.0512042019853488975 0.0618001670000000031 0.58766145000000003 0.00788807799999999976 -0.0135855790000000004 -0.264128949999999973 -0.0459834149999999997 -0.0131669760000000004 -0.000401536349999999983 0.0437561760000000008 0.343851770000000001 139 0 138 1 -4.62227199999999971 70.5218964 0 0 31 false 90.0568700000000035 1.54542221188111006 0.0080799439620147101 0.0825114900000000068 16 10 0.0599275100000000033 0 16 false 137 69975.6406551871041 17.6538904687526994 3963.75 13.5759980000000002 15 33347.1459289640989 51.3261080330456991 649.711199999999963 14.0437410000000007 15 52288.3280836703998 44.8089875102329032 1166.91609999999991 12.9659080000000007 1.22378980000000004 0 1.07783319999999994 0.467742920000000006 0.610090259999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.515311660678009 -63.3592498066447973 22.5019474585276988 -13.1528619538092002 100001 5062 4936 5221.9502 0.0329999998 0.00800000038 0.386799991 0.0149999997 0.00490000006 0.163299993 200111 0.820173440000000031 0.770698549999999982 0.862580600000000031 0.397919000000000023 0.385639159999999981 0.410198840000000009 +1635721458409799680 Gaia DR2 2481160000823753088 2481160000823753088 645485709 2015.5 25.6649320589012007 0.555610003952069054 -3.45873389081177018 0.512929636036139946 0.405950205146625998 0.721959886713787968 0.562289099999999986 -1.90546115129789007 1.05302868635456992 0.979500759963173984 0.848567396746667035 0.14308557999999999 0.464197399999999982 0.0942851900000000048 0.148575230000000003 -0.234975459999999997 0.0689308399999999932 0.387141530000000011 -0.0216638330000000004 0.108462370000000002 0.180052500000000004 140 0 138 2 2.09054800000000007 169.307999 1.47154447719664994 1.55453894519703995 31 false 0.0719213699999999984 1.65588001694055009 0.148298517723128992 0.078619720000000004 16 10 0.956862100000000049 0 16 false 138 197.372453866882012 1.6779405815336299 117.627998 19.9501500000000007 10 95.9323470542747998 15.5441451070074006 6.17160650000000022 20.3964749999999988 9 211.269069033846989 6.21567141849746996 33.9897419999999997 18.9498309999999996 1.55645539999999993 0 1.44664379999999992 0.44632529999999998 1.00031850000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.488283236168996 -63.3522916545732002 22.4988570170842017 -13.1392137052040994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160005119131648 2481160005119131648 943318569 2015.5 25.6643895556342017 0.0380046236551504005 -3.45420719953366007 0.0311527778959223983 1.11517893276122004 0.0485417519973009998 22.9736019999999996 2.98238546021012008 0.0698956540540812965 -9.1652041640069406 0.0647948657307396009 0.104784760000000005 0.541615599999999975 -0.0364993919999999986 0.0471086539999999998 -0.262980250000000026 0.042836922999999999 -0.00776197759999999997 -0.0168732099999999996 0.0314883099999999985 0.387438740000000004 147 0 146 1 -0.409260779999999991 133.593994 0 0 31 false 24.2547999999999995 1.60070849792911996 0.0104450041889822993 0.100938219999999995 17 10 0.0768801939999999989 0 17 false 146 19705.7566623511011 8.72408507135109978 2258.78003 14.9518830000000005 15 10601.7441465444008 37.7545513653664031 280.807039999999972 15.2879450000000006 15 13325.2451184883994 22.7344810838478004 586.124900000000025 14.4502319999999997 1.21421310000000005 0 0.837713240000000026 0.336061480000000024 0.501651760000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.482760640139986 -63.3484643439622985 22.5000513831286 -13.1348056044753001 100001 5775 5470.25977 5808.25 0.0170000009 0.00800000038 0.0590999983 0.00800000038 0.00340000005 0.0228000004 200111 0.790288149999999967 0.781265850000000039 0.880791250000000026 0.625854800000000044 0.565727949999999979 0.685981630000000009 +1635721458409799680 Gaia DR2 2481161581371722496 2481161581371722496 1597838764 2015.5 25.6702766636283997 0.385158929916316006 -3.43276370133418984 0.357803711758993004 0.0490218523735469966 0.498805195888836983 0.0982785500000000062 3.2742249954685998 0.745093846075513988 -0.840413608359316 0.609665577900775024 0.110785334999999999 0.452462819999999988 0.114451310000000001 0.109236890000000003 -0.243505940000000004 0.0423632820000000021 0.385052799999999973 -0.0456552699999999978 0.0924302899999999983 0.151532009999999995 141 0 140 1 1.69949480000000008 164.134995 0.963830542883974961 1.34806421719983005 31 false 0.144573730000000011 1.66767203276067999 0.103059567632620003 0.090771660000000004 16 10 0.672560449999999976 0 16 false 140 317.10928969516101 1.51944254825448999 208.701004 19.4353429999999996 14 216.617147934642986 23.6919772381457996 9.14305899999999916 19.5121560000000009 14 218.139258805819992 6.51647859027333975 33.4750200000000007 18.9150850000000013 1.37099860000000007 0 0.597070699999999954 0.0768127440000000022 0.520257949999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.473512304541003 -63.3266209512499998 22.5137678161175003 -13.1170315044824992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164536309223808 2481164536309223808 1207350539 2015.5 25.6717134230801989 0.103336007140812994 -3.4257889189536499 0.0861430723723523029 1.99932094575936992 0.130741892038502006 15.2921220000000009 10.9314656987472993 0.195618973373284988 -9.45886509898149086 0.156093478088625004 0.0583137800000000026 0.495184400000000025 0.0635028799999999977 0.073232143999999999 -0.248825180000000007 0.0341110449999999996 0.280459820000000026 -0.0308368819999999995 0.0713149299999999986 0.170607120000000001 140 0 140 0 2.18162820000000002 173.326004 0.22100775369638101 0.921125795086927046 31 false 2.29145809999999983 1.38610083639241011 0.0268226858594305013 0.0832584650000000037 16 10 0.178777490000000011 0 16 false 140 2524.96517349067017 3.11586171124258993 810.359009 17.1827280000000009 15 780.517955311887022 7.10874294651260019 109.796906000000007 18.1204299999999989 14 2643.8216775491901 17.9508028549239 147.28152 16.2063389999999998 1.35619280000000009 0 1.91409110000000005 0.937702200000000041 0.976388930000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.469552611331011 -63.3197257252891035 22.5177732794479013 -13.1110744361984004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091321600 2481161650091321600 453588279 2015.5 25.7062115939085984 1.43794246712732998 -3.42633635808934001 1.42751840560969989 3.26584243872251978 2.13363227749597995 1.53064920000000004 3.58206355505358021 2.32090977048195013 -6.39522245027848957 3.43984001724526012 -0.27704898 0.731402600000000014 0.1416964 0.0670813499999999979 -0.620251400000000008 -0.434921149999999979 -0.494076159999999986 0.333340640000000021 0.349018930000000005 0.575403600000000015 75 0 75 0 0.646888499999999977 77.2225037 0 0 31 false 0.02970128 1.76371657946543992 0.371305563493570023 0.099293864999999995 10 8 3.47990369999999993 0 10 false 76 108.423582709125 1.53016415282634011 70.8574982 20.6005549999999999 5 27.9123784198543987 7.63579113532293974 3.65546660000000001 21.736896999999999 7 136.94179959393 11.8760498431414998 11.5309220000000003 19.4205800000000011 1.52046419999999993 0 2.31631659999999995 1.1363411000000001 1.17997550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.538941964195999 -63.3050647361063028 22.5504433484749001 -13.1242583260395005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379495128007168 2481379495128007168 1134226241 2015.5 25.6677175447323016 2.25324490321597981 -3.19915554378281985 1.86827161240096995 \N \N \N \N \N \N \N 0.117106859999999993 \N \N \N \N \N \N \N \N \N 125 0 125 0 59.5301359999999988 5413.77979 14.5321014791514003 273.128695468524995 3 false 0.0044309893000000003 \N \N 0.0557326000000000002 20 10 4.7444267 0 20 false 173 354.918738675661018 5.01248749857670983 70.8069 19.3130440000000014 17 491.469683553833988 10.0365510662940007 48.9679829999999967 18.6226459999999996 16 1014.56205286973 14.5844756368241999 69.5645200000000017 17.2462230000000005 4.24331429999999976 0 1.37642289999999989 -0.690397260000000013 2.06682010000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.241315917880002 -63.1177290829752025 22.5995529287181007 -12.8988731622799992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161276429464576 2481161276429464576 1518712178 2015.5 25.7177112850987015 0.0477350441527805008 -3.45798472298890003 0.0405375295111621015 2.07642202612113991 0.0604412547077314982 34.354379999999999 37.6403073662176979 0.0890253132460159941 -7.86996760035335008 0.0887806400137896995 0.0835785899999999943 0.535570100000000049 0.0108840139999999991 -0.0114398620000000003 -0.247670019999999991 -0.0311583560000000016 0.00395019350000000002 -0.0215229819999999995 0.038731164999999998 0.325523320000000005 131 0 131 0 -2.58775699999999986 88.694603 0 0 31 false 13.2936130000000006 1.42584365605933994 0.0137588196151379998 0.108950465999999996 15 10 0.0960667359999999998 0 15 false 130 10782.1195607665995 7.22501289817869985 1492.32996 15.6066059999999993 14 3891.92195409331998 19.3584953394960984 201.04464999999999 16.3759779999999999 14 10034.7192902077004 25.8741010073930013 387.828700000000026 14.7581570000000006 1.29164229999999991 0 1.61782169999999992 0.769372940000000005 0.848448749999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.592956482315998 -63.3284110139150016 22.5494429157424996 -13.1579100130424003 100001 4379 4244 4566.85986 0.648000002 0.390300006 1.00699997 0.331699997 0.180000007 0.477499992 200111 0.634873099999999968 0.583715740000000038 0.675905599999999995 0.133526759999999994 0.125194090000000008 0.141859430000000009 +1635721458409799680 Gaia DR2 2481161650091200768 2481161650091200768 66892744 2015.5 25.7096733025149007 0.422510414432145986 -3.42615484374737012 0.285935433986651 1.4771759791279 0.577540358241361962 2.5577017999999998 18.5938820239998996 0.572705992656452945 2.15664556004005981 0.490482937631733007 -0.247386660000000008 0.746398200000000012 0.058008841999999998 0.10511007 -0.500262899999999955 0.0492775000000000019 0.0669344139999999976 0.0320793759999999997 0.0813023199999999974 0.315539499999999973 124 0 122 2 2.41726200000000002 157.195999 1.05533426411621001 2.83125627630225996 31 false 0.254228059999999978 1.3615538436227701 0.0904397060468116049 0.0676437700000000058 15 9 0.575304570000000015 0 15 false 120 554.93376344911303 1.77971687060098005 311.809998 18.8277630000000009 12 105.264753355989995 9.57140481698450962 10.9978370000000005 20.2956809999999983 10 727.200100960307964 14.9951280749586999 48.4957580000000021 17.6077839999999988 1.50011580000000011 0 2.68789670000000003 1.46791840000000007 1.21997829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.545669105465009 -63.3033795229342005 22.5538111320497983 -13.1253612416773002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351453289229056 2481351453289229056 1501239143 2015.5 25.4950024874349985 3.04002688819582989 -3.42637357128844 3.53940025415644 \N \N \N \N \N \N \N 0.36709172000000001 \N \N \N \N \N \N \N \N \N 70 0 69 1 12.8528230000000008 345.290985 13.4049879736998996 18.2627113270016999 3 false 0.00375080759999999987 \N \N 0.173868090000000003 8 7 12.3610190000000006 0 8 false 69 76.1272191107601941 1.3211596562258201 57.6214981 20.9845159999999993 6 57.9590241551399004 9.8092015221951101 5.90863850000000035 20.9435859999999998 5 154.998734579787993 3.28744064778507017 47.1487539999999967 19.2861000000000011 2.79739300000000002 0 1.65748600000000001 -0.0409297939999999985 1.69841580000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.116318610949008 -63.3973633019030984 22.3491913449217989 -13.0466459001857 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351590725364736 2481351590725364736 662668795 2015.5 25.5027883441767997 0.359013462413137974 -3.40863183067471986 0.283973982249147994 1.62553393012036995 0.450285810071524017 3.61000500000000013 13.4255658072046007 0.681718719634161974 1.82149444976311004 0.526224481824819956 0.037443746 0.482804149999999987 0.0546951030000000019 0.0646326499999999998 -0.266613500000000003 -0.0207147709999999999 0.113103079999999995 0.0176924079999999997 0.147832920000000007 0.183792399999999995 171 0 169 2 4.0846309999999999 248.774994 1.29276874327233005 3.11252903049937002 31 false 0.147812219999999994 1.29967723069375007 0.0943123364133740955 0.0237952339999999984 19 10 0.612300999999999984 0 19 false 170 354.605888289148027 1.5492539739190101 228.888 19.3140010000000011 18 78.8427273000132942 9.7586486510814705 8.07926699999999975 20.6094839999999984 16 436.926818170516981 8.85276727749437953 49.3548279999999977 18.1608979999999995 1.45448669999999991 0 2.44858550000000008 1.29548259999999993 1.15310289999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.114724879640988 -63.3780070667448001 22.363319058919501 -13.0330171772687002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163917833935616 2481163917833935616 1431730377 2015.5 25.5231562212971994 0.170373100188266013 -3.41490643742963984 0.120317004121450993 3.35882820514646019 0.210584315228548008 15.9500399999999996 -35.252789456391298 0.298270647021638025 -30.8562510628241 0.215081574471921999 0.0483290070000000002 0.5546373 0.0122388589999999995 0.127613169999999998 -0.209642980000000007 0.0293052 0.107780570000000006 0.0428287649999999978 0.171317200000000003 0.189575049999999995 160 0 159 1 32.5805930000000004 1722.06006 1.02641478241371997 66.3474889375203958 31 true 0.83414566999999995 1.40122900154857999 0.0373775000413901978 0.0622783380000000025 18 10 0.268356859999999975 0 18 false 158 8058.8407484695399 9.7681309588968297 825.013977 15.9226849999999995 15 2092.17312937834004 12.4216434343878994 168.429660000000013 17.0498939999999983 15 9191.69263155703084 14.5843507175219003 630.24350000000004 14.8534319999999997 1.4001847999999999 0 2.19646259999999982 1.12720970000000009 1.06925300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.161668347047993 -63.3748115284248001 22.3803470675612992 -13.0463423201927 100001 4011.83008 3538 4747.10986 1.06130004 0.711499989 1.39260006 0.502499998 0.328000009 0.648999989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351556365046528 2481351556365046528 1584136717 2015.5 25.4917053344786986 0.470491626770417004 -3.39932898595254995 0.415519145814488011 0.14184895621395599 0.598537925232692003 0.236992430000000004 -0.251575037281559 0.989412902137983052 -0.538505270477264042 0.770105093418710029 0.126412940000000001 0.368551850000000014 0.216350299999999995 0.0323972199999999974 -0.192352999999999996 -0.0130053500000000006 0.287078600000000017 -0.152388140000000005 0.121199875999999998 0.119092785000000007 152 0 150 2 0.476759969999999977 152.580994 0 0 31 false 0.0904749700000000018 1.69417924036212009 0.136800621042768994 0.046478499999999999 17 10 0.885427500000000034 0 18 false 150 194.742132792252988 2.66869192317271997 72.9729004 19.9647159999999992 13 99.4920629163682975 18.2202568870890005 5.46051929999999963 20.3569159999999982 13 110.111996737032996 8.48354816216182961 12.9794739999999997 19.6573330000000013 1.07631589999999999 0 0.699583049999999984 0.392200470000000023 0.307382580000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.083469066138008 -63.3744354954201015 22.3562814179942997 -13.0202919667401993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351663739917824 2481351663739917824 1237658832 2015.5 25.5007401323195992 0.311689861183238992 -3.40365157016067998 0.242471197149875001 2.10589649371333998 0.388547020529612985 5.41992700000000038 7.93094151216762988 0.601974870400960982 -21.8706935644398008 0.417271400135854009 0.00808555499999999948 0.455658500000000022 0.027759787000000001 0.0949503200000000047 -0.298718419999999985 0.0333006419999999984 0.240128200000000014 0.0128429159999999994 0.116686659999999998 0.143225309999999995 177 0 175 2 3.46176430000000002 241.311005 1.12134010679514007 3.1468677869269599 31 false 0.197454619999999997 1.39796503962983998 0.0772187468931144066 0.00510459300000000015 20 10 0.533571099999999965 0 21 false 175 432.282823143127985 1.44305105527799005 299.562012 19.0989460000000015 19 105.1597713261 12.5589294606963993 8.3733070000000005 20.2967639999999996 18 537.913942954250047 10.0832087293496002 53.3474959999999996 17.9351389999999995 1.48762259999999991 0 2.36162569999999983 1.19781880000000007 1.16380689999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.105785329870997 -63.3744105887960032 22.3632519096844007 -13.0276339553663991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351659444841728 2481351659444841728 1199228012 2015.5 25.502678219777799 0.155043307723679996 -3.40210641350215992 0.118916577752202005 1.88451831881755005 0.191527463804571002 9.83941599999999994 8.02727269161823997 0.298007977771632016 -22.1904102280682984 0.222108227536643998 -0.000944477739999999961 0.465233400000000019 0.0221522169999999984 0.0660291900000000015 -0.305926900000000002 -0.0155897569999999992 0.0626036700000000002 0.0342196229999999976 0.15039248999999999 0.190617499999999995 170 0 168 2 3.98636819999999981 245.212997 0.547546531266900005 2.96612395219981018 31 false 0.82759963999999997 1.34813907947230005 0.0400600985603350029 0.0198243469999999991 19 10 0.26884574 0 19 false 161 1261.19446197925004 2.13101758396358987 591.827026 17.9364099999999986 16 341.851443639203978 11.8069833060463001 28.9533270000000016 19.0167940000000009 15 1405.41803284503999 5.9392043192295203 236.634060000000005 16.8924060000000011 1.38540839999999998 0 2.12438770000000021 1.08038330000000005 1.04400439999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.10817466359299 -63.3721781558940975 22.3656823817694992 -13.0269104782132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351865602694272 2481351865602694272 1553858071 2015.5 25.4924351384856998 0.376434644784677974 -3.38888315984788013 0.284981637574391988 1.33686896798034005 0.456876744755738973 2.92610429999999999 17.2094903906464012 0.772809680786677 3.45717300736919997 0.493481073835546014 0.0225347969999999988 0.396893769999999979 -0.0790131200000000061 0.0934494200000000053 -0.276377079999999997 0.0104152120000000001 0.232513770000000008 0.0653422099999999978 0.132053969999999993 0.109152269999999996 169 0 168 1 1.72840140000000009 195.488007 0.974621437441969052 1.43559791403570003 31 false 0.140411559999999991 1.32890079203141998 0.0942773128703811997 -0.0288644379999999992 19 10 0.681580659999999949 0 19 false 168 311.862898300490997 1.27891541057048008 243.850006 19.4534570000000002 14 76.8276980047346996 9.00540899027697073 8.53128300000000017 20.637594 17 422.378783473427973 4.35620554881276956 96.960250000000002 18.1976639999999996 1.60072419999999993 0 2.43992999999999993 1.18413729999999995 1.25579259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.074813560541003 -63.3647095492041998 22.3609275170233985 -13.0108497903603997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351625085102976 2481351625085102976 655157852 2015.5 25.5191851218343011 0.0367480775385106984 -3.39101336912833018 0.0299073442626526 0.937924225175746029 0.0452667289643405024 20.7199479999999987 9.46816120308811016 0.0668173406316626001 -1.07639622142423996 0.0649136414783095944 0.0305390190000000006 0.540929199999999999 -0.0667079200000000039 0.0259430670000000002 -0.293250200000000016 -0.198191850000000003 -0.396122719999999984 0.165827959999999996 0.263391399999999998 0.350833769999999989 169 169 168 1 -0.237031390000000008 158.102997 0 0 31 true 388.346830000000011 1.52240208392772991 0.00955206299465696969 0.0152564299999999996 19 10 0.0485267200000000024 0 19 false 165 287094.847250233986 66.2723544253825025 4332.0498 12.0433029999999999 18 126472.389820734999 166.448833835543013 759.827449999999999 12.5963989999999999 19 226986.323406790994 355.912440018600023 637.75890000000004 11.3719210000000004 1.23115660000000005 0 1.22447869999999992 0.553096800000000055 0.671381950000000005 52.2953343908983967 1.4190499436403099 5 4500 3 0 NOT_AVAILABLE 152.130515224411994 -63.3550241702540973 22.3856008209710993 -13.0226696589023003 100001 4897.87988 4829.70996 4983.25 \N \N \N \N \N \N 200111 5.3014064000000003 5.1213160000000002 5.45210740000000005 14.5716149999999995 13.5792660000000005 15.5639649999999996 +1635721458409799680 Gaia DR2 2481352071761702272 2481352071761702272 853649647 2015.5 25.5184331325192986 0.546018109317984002 -3.38380377062745019 0.490434170678109016 2.16320937897499022 0.700937947467276001 3.08616400000000013 -0.414079747626670991 1.12174217133849008 0.503562666505563028 1.06466977966977994 0.0592323699999999995 0.399012800000000001 0.0865288699999999938 -0.0319644850000000008 -0.328371550000000012 -0.116002830000000001 -0.115243670000000006 0.00291423379999999985 0.176605139999999994 0.27538269999999998 151 0 151 0 0.900732599999999994 161.225998 0 0 31 false 0.0619975330000000005 1.77507346481930006 0.172309200096072007 0.0359390269999999984 17 10 1.08908549999999993 0 17 false 149 159.432225069816013 1.16108973955883998 137.313004 20.1819249999999997 14 101.398383733272993 6.34532546426962973 15.9800129999999996 20.3363109999999985 15 105.138632691591994 9.60767371413964 10.9431930000000008 19.7075139999999998 1.29545339999999998 0 0.628797530000000049 0.154386519999999999 0.474411000000000027 \N \N 0 \N \N \N NOT_AVAILABLE 152.122017661526996 -63.3488584319702994 22.3876109469469 -13.0156906705917006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114455808 2481163849114455808 225615739 2015.5 25.5275665708260995 3.01333597133963993 -3.42792792361785992 4.63896381837173966 \N \N \N \N \N \N \N 0.240683289999999994 \N \N \N \N \N \N \N \N \N 87 0 86 1 26.8542179999999995 1125.12 16.1902322723050993 67.7048055383821037 3 false 0.00326943200000000007 \N \N 0.266294399999999987 11 7 18.4509620000000005 0 11 false 98 121.914984675100996 1.67935189653252004 72.5964966 20.4732230000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.183169374084997 -63.3846158839201976 22.3796230174983997 -13.0600697926878002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114556544 2481163849114556544 759095019 2015.5 25.5346477372231 0.592065371065196966 -3.42403920034174991 0.562734552985425962 1.15864865724963995 0.760394609354173023 1.52374649999999989 4.47767501208409957 1.23309931720460009 -5.63211259575431988 1.27353060863365997 0.101404264999999993 0.391534800000000016 0.070142709999999997 -0.0752717400000000036 -0.291724600000000001 -0.154713180000000006 -0.0817787299999999939 0.00974386900000000049 0.181309310000000001 0.263271839999999979 141 0 140 1 0.69890540000000001 146.108994 0 0 31 false 0.0543081200000000014 1.32757152625542996 0.169746203382001998 0.0412858050000000018 16 10 1.24125050000000003 0 16 false 141 142.818614730462997 1.1381945684633501 125.477997 20.3014030000000005 10 72.5120980541804983 15.7396969799269009 4.6069564999999999 20.7003610000000009 15 181.840753584754992 9.63290351372183018 18.877044999999999 19.1126919999999991 1.78095029999999999 0 1.58766940000000001 0.398958199999999985 1.18871119999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.193587283645002 -63.3780357521993025 22.3878395733579012 -13.0590591698290996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163677315764352 2481163677315764352 1054936248 2015.5 25.552530829045299 3.21677557135926984 -3.42652237177260011 2.15583063371410022 \N \N \N \N \N \N \N -0.369773750000000012 \N \N \N \N \N \N \N \N \N 110 0 110 0 22.7057169999999999 894.625 14.0206412882661997 47.5430982285623998 3 false 0.00423559300000000017 \N \N -0.0768963399999999936 13 8 4.81167459999999991 0 13 false 111 111.378105906957998 2.15660050749343002 51.6451988 20.5713650000000001 9 118.275586739907993 11.9603911585044997 9.88893999999999984 20.1691509999999994 10 277.623882491039012 6.51668494121661013 42.6020129999999995 18.6532780000000002 3.55455370000000004 0 1.51587300000000003 -0.40221404999999999 1.9180870000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.231850224200002 -63.3724861661618988 22.4039366831425006 -13.0679445981245994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164055272889984 2481164055272889984 534332512 2015.5 25.5605740388714011 0.452054347004839985 -3.41021573779493981 0.388432268259812974 1.81245587406315001 0.586781409777217045 3.08880929999999987 10.2596722562949996 0.897108319983637048 -0.828730429998478013 0.705903935121896975 0.0524190299999999984 0.423057139999999998 0.0973805860000000051 0.0578926759999999971 -0.31080213000000001 -0.0152563149999999995 0.157348049999999989 -0.00991327699999999985 0.145103380000000004 0.179812200000000005 166 0 165 1 1.49877199999999999 187.593994 0.626727716103422039 0.312587448797405021 31 false 0.0882554799999999973 1.17118552562219991 0.119084366546366005 0.0237263269999999984 19 10 0.806775869999999951 0 19 false 164 207.90494266747001 1.30025423230408999 159.895996 19.8937029999999986 13 74.6367736343912043 13.8290970187875999 5.39708230000000011 20.6690059999999995 15 264.950110296791991 10.0013106557840992 26.4915389999999995 18.7040100000000002 1.63337580000000004 0 1.96499629999999992 0.775302900000000017 1.18969349999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.232094225466 -63.3543104250675029 22.4177659281397013 -13.0557425521422008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164295792134656 2481164295792134656 160723518 2015.5 25.5642569475309003 0.842725804335691997 -3.4039508256674802 1.24125976370163005 1.01725493285876989 1.21380007859288996 0.838074499999999944 -0.840220028657675977 2.15245570984594981 -12.5545804331880007 3.52249305082147979 0.359224800000000011 0.167021649999999994 -0.20683051999999999 -0.347864449999999992 -0.555039999999999978 -0.616449000000000025 -0.752935400000000032 0.354551459999999985 0.513281399999999999 0.708672940000000029 117 0 116 1 0.861013200000000034 123.612 1.06080058231301999 0.362584114674606994 31 false 0.0362563899999999995 1.11792802668078006 0.264179252772341 0.176066100000000003 14 8 3.58519580000000015 0 15 false 118 110.554301666279002 1.07644529727552007 102.703003 20.5794260000000016 12 46.1056568643102977 8.27837224222652956 5.56941099999999967 21.1920029999999997 12 136.343349662396008 11.4507935835382995 11.9068909999999999 19.4253350000000005 1.65031119999999998 0 1.76666830000000008 0.612577440000000029 1.15409089999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.233374928370012 -63.3470692192043003 22.4236434322283991 -13.0512724031774994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164330150799232 2481164330150799232 691380317 2015.5 25.5449506693380997 0.724539671946290986 -3.39364992090404982 0.885637521726052035 0.594448270075167984 0.964548482376797023 0.616296949999999955 32.2426265930113018 1.6472219167626001 -6.66656602315106017 1.73585379089278002 0.297780800000000012 0.222753570000000012 0.179183960000000003 0.200360879999999991 -0.408551300000000006 0.323540480000000019 0.463650019999999996 -0.232687919999999993 -0.173745260000000012 0.487386800000000009 107 0 107 0 0.0974452299999999938 102.726997 0 0 31 false 0.0443575599999999973 1.71113588440084996 0.244653992515950991 0.151277230000000013 13 9 1.88356849999999998 0 13 false 109 126.598504274817998 1.42360896064550002 88.9279022 20.4322949999999999 10 98.9742339816450993 21.3919610510212017 4.62670229999999982 20.3625830000000008 11 160.13370075348999 11.3859538673042007 14.0641440000000006 19.2507130000000011 2.04669020000000002 0 1.11186980000000002 -0.0697116849999999955 1.18158150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.184699804773004 -63.3462017206743013 22.4091468650624996 -13.0345965563373998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352346639012864 2481352346639012864 551649905 2015.5 25.4980668377594988 0.0229116100582162988 -3.36474276441109987 0.0186026607643779984 2.11777128163533002 0.0287997374128505998 73.5343900000000019 32.0899118049242986 0.0431067731721260991 -3.9663146881168001 0.0395206605984097029 0.00152872490000000006 0.514487099999999975 -0.0661289399999999972 0.043326240000000002 -0.348875729999999995 -0.0606216200000000011 -0.169274079999999993 0.0742857499999999976 0.142512770000000011 0.351499799999999973 168 0 167 1 0.502816139999999967 170.529007 0 0 31 false 140.254760000000005 1.58488329463288991 0.00608125849760021014 0.0290207019999999989 19 10 0.0520025900000000013 0 20 false 162 111605.008671402 48.3574064245053989 2307.91992 13.0691570000000006 16 59361.2760929309006 87.8710082468689961 675.550200000000018 13.4176300000000008 17 75566.6213093808037 88.1012717676553052 857.724550000000022 12.5660950000000007 1.20897710000000003 0 0.851534840000000015 0.348473550000000021 0.503061300000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.062741290210994 -63.3405217623656966 22.3754207621780985 -12.9904796904384003 100001 5742 5615.06006 5806 0.0930000022 0.0425999984 0.194800004 0.0469999984 0.0166999996 0.0970999971 200111 1.00283630000000001 0.980849500000000041 1.04868939999999999 0.984935050000000034 0.95210399999999995 1.01776610000000001 +1635721458409799680 Gaia DR2 2481352282215207552 2481352282215207552 655479307 2015.5 25.5178228614249001 0.0407109094369444979 -3.36887553025434006 0.0307006716443767001 0.714774408218231017 0.0497520144705312015 14.3667429999999996 0.340150598725483977 0.0757288981009248963 1.24992914254514997 0.0608185779388826994 -0.0195157640000000014 0.500550700000000015 -0.0341894739999999975 0.063203750000000003 -0.306294469999999985 -0.060270490000000003 -0.114136730000000006 0.0856452659999999977 0.18976092 0.237217000000000011 178 0 176 2 -0.592657100000000048 159.634995 0 1.53687003158857995e-15 31 true 15.025639 1.56907544185438996 0.0108650808770448006 0.00245341359999999998 20 10 0.0762055600000000055 0 20 false 174 12401.7902586710006 6.73789489772950034 1840.59998 15.4546550000000007 19 6325.81161107667958 30.4905015519745 207.468279999999993 15.8485980000000009 18 8830.1516718733892 17.2598402331962006 511.600999999999999 14.8969989999999992 1.22207869999999996 0 0.951598170000000021 0.393942830000000022 0.557655330000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.10633095684301 -63.3356792762984995 22.3926745332361996 -13.0015880912322004 100001 5403 5349.60986 5538.5 0.472499996 0.272700012 0.579299986 0.223000005 0.128000006 0.282099992 200111 1.1359840000000001 1.08108000000000004 1.15877309999999989 0.990784050000000027 0.839133699999999982 1.14243439999999996 +1635721458409799680 Gaia DR2 2481352312279298688 2481352312279298688 664495667 2015.5 25.5248194004044997 0.174215139561165994 -3.35808144391357999 0.121084684607411994 0.566809463028433047 0.194096938845415012 2.92023900000000003 4.27064485989930009 0.372676608616551996 -4.17336768025188043 0.230213495437462001 -0.0761190199999999956 0.298862930000000027 -0.0444156230000000013 0.0420261700000000016 -0.274150500000000019 0.00327074159999999996 0.0709976999999999969 0.00900706100000000023 0.14231764999999999 0.0459955820000000001 142 0 141 1 0.66646755000000002 146.587997 0 0 31 false 0.803995899999999986 1.60386283615758996 0.0423939222643706995 -0.104286745 16 10 0.329298020000000025 0 16 false 141 1011.54072836017997 2.01146190149575022 502.888 18.1759069999999987 16 411.049123800888026 6.93438599568724978 59.2769300000000001 18.8166539999999998 15 865.246903505244973 12.8394661700288992 67.3896299999999968 17.4190700000000014 1.2617347000000001 0 1.39758490000000002 0.640747100000000014 0.756837839999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.109893454381989 -63.3229223827596996 22.4034196540129003 -12.9941262989653001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352140482902656 2481352140482902656 1161783875 2015.5 25.5559899529641008 2.7437460360108501 -3.36371480067540984 1.72951207593718004 \N \N \N \N \N \N \N -0.453405950000000002 \N \N \N \N \N \N \N \N \N 79 0 79 0 0.581252800000000014 80.5911026 0 0 3 false 0.022887438999999999 \N \N 0.313028870000000015 10 6 7.26465940000000021 0 10 false 80 85.6400724531392967 1.05775303747259009 80.9641037 20.8566719999999997 6 38.1064976595918026 12.2591941191193996 3.10840149999999982 21.398890999999999 7 109.620346244857998 13.5396490916918992 8.09624799999999922 19.662191 1.72497330000000004 0 1.73669999999999991 0.542219160000000033 1.19448090000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.177747245037011 -63.3144556090766031 22.4309802526034012 -13.0108255173056993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848654464 2481163990848654464 298539712 2015.5 25.5721238312505008 12.6784438446696992 -3.42028992328053993 3.89188482364406019 \N \N \N \N \N \N \N 0.731889099999999959 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.31567189999999989 45.2330017 3.77858695153652002 1.05440519618677997 3 false 0.0122438740000000001 \N \N -0.0564702560000000034 5 4 30716.2360000000008 0 5 false 38 66.9642097862226962 2.08017296240765015 32.1917 21.1237579999999987 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.265031763662989 -63.3583409386345977 22.4249597147660999 -13.0693552850940993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848610560 2481163990848610560 747161114 2015.5 25.5792991229081998 2.41844554539374013 -3.42130365415407001 8.05708749743594943 \N \N \N \N \N \N \N -0.384618459999999995 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.47710849999999994 75.7537003 2.46821570467816986 0.873430086219839974 3 false 0.0205804129999999988 \N \N -0.119195125999999998 8 4 483.285300000000007 0 10 false 67 104.042128738219006 1.80439323330065005 57.6604004 20.6453419999999994 4 101.482359326980998 5.44475778707749036 18.6385439999999996 20.3354110000000006 4 80.8871138483529961 4.51662988945713995 17.9087309999999995 19.9922220000000017 1.75284250000000008 0 0.343189240000000007 -0.309930800000000006 0.653120040000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.280387030593999 -63.3561236888829029 22.4314124072752001 -13.0729360121962994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848781696 2481163990848781696 1348090403 2015.5 25.5866981724091005 0.0452196765399230025 -3.42450785369730015 0.0399808550364295981 2.36223153513858009 0.0604092952065157021 39.1037749999999988 9.3310363629315507 0.0865197104769032943 10.5291315258265001 0.0884484421306129948 -0.0478339119999999993 0.518635630000000014 -0.0271641980000000005 0.0258136199999999989 -0.443667350000000016 -0.0781707299999999938 -0.17840737000000001 0.0622633729999999969 0.116432930000000004 0.416271270000000027 176 176 175 1 6.43266440000000017 317.325012 0 0 31 true 135.616000000000014 1.61315210174083989 0.0125940522244837004 0.0270895290000000011 20 10 0.060175880000000001 0 21 false 171 10333983.6445877999 3710.65721926913011 2784.94995 8.15269699999999986 18 5658634.88251749985 11037.7123681888006 512.663760000000025 8.46960900000000017 20 6569444.42197331041 13284.4677956344003 494.520719999999983 7.71809800000000035 1.18328809999999995 0 0.751511099999999987 0.316912650000000018 0.434598450000000025 13.0393633037475993 0.60822634728068703 9 6000 4.5 0 NOT_AVAILABLE 152.298323363171988 -63.3557772133308035 22.4372501603263999 -13.0786353668699 100001 5925 5837.1001 5993 \N \N \N \N \N \N 200111 8.08433499999999938 7.90191749999999971 8.32965000000000089 72.5666049999999956 70.1292200000000037 75.0039900000000017 +1635721458409799680 Gaia DR2 2481164128287734912 2481164128287734912 172532306 2015.5 25.5885643861059009 0.0390158734074513014 -3.40496472088576008 0.0306580978429056988 1.06175294046588009 0.0485786617241217994 21.8563650000000003 24.2976167244343983 0.0741043946276558063 -9.62730719747774089 0.0646873225648775946 -0.0406403879999999995 0.492278839999999995 -0.0331968299999999966 0.0306435800000000001 -0.356235440000000014 -0.101231299999999996 -0.205733510000000008 0.0827497539999999948 0.183698549999999988 0.283582239999999985 175 0 175 0 -0.941531959999999946 152.602005 0 0 31 true 15.9658549999999995 1.59593716347660997 0.0103515182528659006 0.00664618559999999997 20 10 0.0775362849999999965 0 20 false 173 13241.8777917069001 8.39818065691349958 1576.76001 15.3834914999999999 16 6736.71115946413011 12.6463849940797992 532.698549999999955 15.7802690000000005 16 9480.95660536129981 27.2813090681123001 347.52573000000001 14.8197899999999994 1.22472570000000003 0 0.960478799999999966 0.396777150000000023 0.563701600000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.283015220359999 -63.3373857173492993 22.4464174449133012 -13.0611521459534998 100001 5381 5325 5747.8999 0.0208000001 0.00800000038 0.125300005 0.0120000001 0.00389999989 0.0697999969 200111 0.79776347000000003 0.699169499999999999 0.814630999999999994 0.480723100000000014 0.432183680000000014 0.529262539999999948 +1635721458409799680 Gaia DR2 2481163368079238528 2481163368079238528 888152923 2015.5 25.6078935697833003 1.58402013395182006 -3.41992235285959012 1.91952789927854006 \N \N \N \N \N \N \N 0.661445599999999967 \N \N \N \N \N \N \N \N \N 86 0 86 0 0.733736999999999973 89.9854965 0.853093617317041031 0.119223202708373999 3 false 0.0229646600000000013 \N \N 0.0489937900000000023 11 6 6.76244449999999997 0 12 false 91 83.4220186115016986 1.22957893124296991 67.8460007 20.8851639999999996 6 44.2956859574990034 12.1045631253509001 3.65942049999999997 21.2354850000000006 6 109.236369410652998 16.6583041057372014 6.55747199999999975 19.6660019999999989 1.84042609999999995 0 1.56948280000000007 0.350320819999999977 1.21916200000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.336266300087999 -63.3423977610706004 22.4591783608053994 -13.0821643599755006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164128287747968 2481164128287747968 56818464 2015.5 25.6004809822494011 0.0347295873030738014 -3.40684020396234022 0.0290490979410788011 1.05712105170274007 0.0433340641249400013 24.3946900000000007 26.0142503489520003 0.0671459319516620051 -1.41543326042377005 0.0658340340658422063 -0.0198478199999999987 0.488167320000000016 -0.042953115 0.00472460730000000013 -0.365704240000000014 -0.176883299999999993 -0.351989200000000002 0.112861310000000006 0.221501480000000001 0.349120350000000024 166 0 166 0 -2.47459939999999978 120.002998 0 0 31 true 21.6074200000000012 1.5848164081368401 0.00928091625889720939 0.0154318579999999997 19 10 0.0773404699999999945 0 20 false 166 17680.8329202071 9.78715434773184079 1806.53003 15.0696089999999998 17 9449.86161537894077 23.7215121624875991 398.366759999999999 15.4128249999999998 17 12117.5546311065009 31.3120565729288991 386.993260000000021 14.5533830000000002 1.21981910000000005 0 0.859441760000000055 0.343215939999999997 0.516225799999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.308682335241997 -63.3338719509726005 22.4570617355801012 -13.0672766649508993 100001 5632.75 5380 6034.81982 0.0187999997 0.00800000038 0.0647 0.00800000038 0.00389999989 0.0299999993 200111 0.83427960000000001 0.72681450000000003 0.914509059999999985 0.631247760000000047 0.573075200000000007 0.689420339999999965 +1635721458409799680 Gaia DR2 2481164128287734784 2481164128287734784 1267889813 2015.5 25.6052467931424985 0.0655717671529455065 -3.4057454197234498 0.0507394575353945013 0.952437451052637996 0.0811691141950045963 11.7339889999999993 11.9259515799107998 0.127550573663409994 -0.108595330665438999 0.101767177823907998 -0.0493359569999999997 0.45749430000000002 -0.00841901200000000002 0.0353757140000000025 -0.358320599999999989 -0.0548657140000000029 -0.072617710000000002 0.0502458480000000027 0.154086749999999995 0.223287869999999999 176 0 174 2 -0.146685599999999999 165.658997 0 1.54593719008863991e-15 31 true 4.7518167 1.52749420931347002 0.0164823836380428995 -0.00471286760000000013 20 10 0.120875529999999995 0 20 false 174 4379.73834900670045 4.23901189270277978 1033.19995 16.5847450000000016 17 1992.32906931783009 9.22444696652386931 215.983579999999989 17.1029850000000003 16 3460.50145868828986 13.7672563313089995 251.357380000000006 15.9140720000000009 1.24501290000000009 0 1.18891330000000006 0.518240000000000034 0.670673399999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.317147429547987 -63.3308065052943974 22.4620162626205015 -13.0680107552459006 100001 4886 4763.87988 4953.5 0.0350000001 0.00260000001 0.322299987 0.00800000038 0 0.135100007 200111 0.648909799999999981 0.631344000000000016 0.682603900000000041 0.21621071 0.17778403000000001 0.254637400000000014 +1635721458409799680 Gaia DR2 2481164403165715968 2481164403165715968 1337583736 2015.5 25.5738713315194985 1.15152574279848996 -3.39075669920962008 1.12017533635682009 -0.330815164241131998 1.72456398096275998 -0.191825390000000012 10.4763973586346992 1.94476384662489998 -1.60476047731607996 2.70297861213899981 -0.293400470000000024 0.707929200000000036 0.225136609999999987 0.0501498169999999993 -0.648841699999999966 -0.48405585000000001 -0.548500899999999958 0.337759580000000004 0.380875620000000026 0.570050949999999945 124 0 123 1 0.090918250000000006 118.732002 0 0 31 false 0.030338045000000001 1.20242946287676999 0.266647116537375994 -0.00618997700000000015 15 8 2.79716869999999984 0 16 false 125 105.510016731817004 1.25657842100958006 83.9661026 20.6301300000000012 11 59.2358392245942014 12.2127947184887997 4.85031000000000034 20.9199279999999987 13 130.252838197561005 17.6465876746622996 7.38119130000000023 19.4749529999999993 1.79593069999999999 0 1.44497490000000006 0.289796830000000005 1.1551781000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.239788650348999 -63.3310095051782014 22.4377911695092003 -13.0425409179207996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164433230015360 2481164433230015360 218985119 2015.5 25.5868207976071993 0.273468456305352992 -3.3840392024182302 0.204445217139905988 2.09521384821549983 0.33367226211272899 6.27925700000000031 6.15627160481925984 0.567762147044972965 -8.9115325154835201 0.383498009330141998 -0.0542611139999999992 0.355376150000000002 0.188799959999999989 0.000278170500000000009 -0.336132819999999999 -0.0453585570000000007 0.0888107600000000025 -0.0745603700000000008 0.156116890000000008 0.0899862349999999978 167 0 166 1 3.81610819999999995 238.776993 1.01679542765713005 3.35532721545413981 31 false 0.271098799999999973 1.2558286399129801 0.0652602432370125995 -0.0381302459999999996 19 10 0.504005299999999989 0 19 false 164 586.819127340349041 2.10071631305109996 279.34201 18.7671050000000008 18 143.339893411318997 7.49718478792205989 19.1191619999999993 19.9604700000000008 18 694.469603107771945 9.45059687590202024 73.4842100000000045 17.657786999999999 1.42771340000000002 0 2.3026829000000002 1.19336510000000007 1.10931779999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.259162780865012 -63.3193227427742968 22.4526670915165987 -13.0410563643480995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164158352107520 2481164158352107520 121032293 2015.5 25.6030220850763008 0.14227715717384401 -3.3940509513901298 0.118446394008933004 0.166363293441561005 0.179893221816054993 0.924789129999999959 3.71568803965207994 0.284202079763997972 -1.54779645039228009 0.25080087575285398 -0.0168197549999999987 0.431880380000000008 0.0346971749999999968 0.00156890200000000006 -0.361289169999999993 -0.0946437900000000054 -0.130693930000000014 0.0355385999999999966 0.16791782999999999 0.255530360000000012 165 0 163 2 0.707155470000000008 170.205002 0 0 31 false 0.92464780000000002 1.59322743605979 0.0388419712961302968 0.00311280139999999981 19 10 0.269453529999999997 0 19 false 160 1130.90252075063995 2.56122787763970994 441.546997 18.0548019999999987 17 609.953822393560017 9.27734672032386953 65.7465799999999945 18.3881450000000015 14 800.099832645769993 11.5489078244007999 69.2792699999999968 17.5040590000000016 1.24683929999999998 0 0.884086599999999945 0.333343500000000015 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.301305088127009 -63.3212611223422002 22.4643174873185991 -13.0563202731011003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164162647472896 2481164162647472896 1283555620 2015.5 25.6125071432180995 0.0368574707818805011 -3.40107774130800999 0.0307092791757127004 1.77916330993685001 0.0461817688982135016 38.5252300000000005 8.31220058538112028 0.0696568069779081034 7.2255803982078497 0.0693109162272113055 -0.0220538199999999983 0.512727900000000014 -0.0435121600000000011 -0.0010030836999999999 -0.365447159999999993 -0.237157900000000005 -0.424675320000000023 0.164061280000000004 0.272597460000000014 0.352671620000000019 174 174 173 1 6.2790619999999997 310.377991 0 0 31 true 375.366759999999999 1.54580822205143997 0.00970721766305148934 0.00938651499999999979 20 10 0.0510629000000000013 0 21 false 169 408038.820195635024 112.311809003760004 3633.09009 11.6616119999999999 20 192654.225905998988 212.095171405569999 908.33856000000003 12.1394415000000002 20 304769.691959525982 257.862210765359009 1181.90900000000011 11.0519905000000005 1.21906029999999999 0 1.08745099999999995 0.477829930000000014 0.609621049999999998 8.78205433575196004 1.19658704380712999 3 5000 4.5 0 NOT_AVAILABLE 152.327115678502992 -63.323438254330803 22.4706981603640017 -13.0663398778517994 100001 4993.87988 4862.95996 5099.31982 \N \N \N \N \N \N 200111 3.16943140000000012 3.03971549999999979 3.34238269999999993 5.62872199999999978 5.42368030000000001 5.83376400000000039 +1635721458409799680 Gaia DR2 2481164162647215872 2481164162647215872 593209286 2015.5 25.6124278693609 1.38271353624402993 -3.39986096035101992 1.8240097247076299 \N \N \N \N \N \N \N 0.553453149999999949 \N \N \N \N \N \N \N \N \N 67 0 66 1 1.92892409999999992 84.0541992 3.07980894163569996 1.93572476094905999 3 false 0.0240299650000000004 \N \N 0.191123860000000007 8 7 6.95778229999999986 0 8 false 66 107.197880106431001 1.83872000946095993 58.3003006 20.6128999999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.325771215662996 -63.3223787873948964 22.4710825860748997 -13.0651794521540996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358643200 2481163299358643200 1398831606 2015.5 25.6252861819358984 0.119779783763746997 -3.42464169410584995 0.0866641073638800968 5.57601264137470043 0.149496535286853 37.298606999999997 10.5672379014485003 0.21271343413278801 -3.89957460837926018 0.161819730957601993 0.0100226759999999995 0.5499058 0.0117267540000000007 0.0812084400000000067 -0.245196610000000009 -0.0287152619999999983 0.0335411899999999985 0.0513185079999999988 0.168403500000000012 0.186801419999999996 168 0 165 3 3.84862100000000007 238.322006 0.39356962151108299 2.67266052331626991 31 false 1.59036299999999997 1.22847702971473005 0.0279207933436730997 0.0373599699999999993 19 10 0.193328069999999991 0 19 false 163 2193.53953081615009 3.09837978699746985 707.963013 17.3355029999999992 16 373.433627161739992 10.3806494735596004 35.9740139999999968 18.9208549999999995 17 2926.60044280648981 11.7299220806819999 249.498719999999992 16.0960120000000018 1.50443339999999992 0 2.82484249999999992 1.58535200000000009 1.23949050000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.375658595532002 -63.3390358550832033 22.4739661915173983 -13.0929453643560993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358644096 2481163299358644096 337110707 2015.5 25.6238817359053996 0.143774420195942998 -3.42001380962455004 0.122143503943403994 4.14128242085589982 0.19612621993114901 21.1153949999999995 2.91097258200727982 0.283774171332233982 -41.912973380793801 0.222978816801740004 -0.063057450000000001 0.433138970000000012 0.0483080369999999981 0.0434970100000000026 -0.453460479999999999 -0.108591270000000004 -0.050015416 0.103403314999999996 0.230465399999999987 0.216746820000000007 167 0 167 0 1.82744559999999989 196.412003 0.247963383324741993 0.512294725427522968 31 false 0.920345799999999992 1.2366522944879399 0.0370520352100816019 0.0338330800000000015 19 9 0.26093559999999999 0 19 false 163 1121.46348734786989 2.12497467347357993 527.754028 18.0639040000000008 18 221.659662545993001 7.51306152780532965 29.5032400000000017 19.487171 18 1469.16613809659998 10.8408888713869 135.520810000000012 16.8442420000000013 1.50769580000000003 0 2.64292900000000008 1.42326740000000007 1.21966170000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.36833093213599 -63.3354903658325981 22.4743775384833988 -13.0881264196519993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163368078122112 2481163368078122112 8961020 2015.5 25.6174548001983986 0.334419645113454012 -3.41344666151039 0.2955944208879 0.890944672668687043 0.427498835808325983 2.0840869999999998 -0.678631792076237028 0.651831614180202967 -5.05113951385710003 0.536981157147849997 0.0820805099999999954 0.438686279999999984 0.0833779050000000022 0.0751959759999999977 -0.278207329999999975 -0.0188745370000000003 0.15123412 0.0185386950000000009 0.166671320000000012 0.196007979999999998 166 0 164 2 1.03953059999999997 177.548996 0 1.59381032202658002e-15 31 false 0.157712550000000007 1.27025897797865994 0.0929204199744325943 0.0240108649999999993 19 10 0.592800140000000031 0 20 false 164 308.945824500260983 1.25107286835171005 246.945007 19.4636600000000008 17 101.194051409679005 10.8452699203894998 9.33070850000000007 20.3385010000000008 16 404.239806659133023 23.7378303051780009 17.0293500000000009 18.2453229999999991 1.63599509999999992 0 2.09317779999999987 0.874841700000000055 1.21833609999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.34907039219101 -63.3323970378115035 22.4707364703561012 -13.0796583475981993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164609324072192 2481164609324072192 578695905 2015.5 25.6580264187172986 0.146835460516791 -3.41476377377294993 0.120594666500551007 0.412307886959768999 0.189296272311019004 2.17810900000000007 0.450782019397032996 0.283124203584618983 -4.7475257889803899 0.213388835343988004 0.173845100000000002 0.472666499999999989 0.203358490000000003 0.0833148699999999992 -0.0570630430000000008 -0.034971002000000001 0.296704740000000022 -0.140805130000000001 0.193159009999999992 0.079449510000000001 119 0 118 1 -0.0869052560000000002 111.038002 0 0 31 false 1.38571700000000009 1.53529531173827993 0.037251073315369497 0.115921065000000004 14 9 0.254085479999999975 0 14 false 116 1508.52752893852994 2.61979844537646001 575.817993 17.7419830000000012 11 727.453735813797948 6.65465202532815958 109.315070000000006 18.1968749999999986 12 1122.1791788150399 11.7609330785029993 95.4158299999999997 17.1367650000000005 1.2261181000000001 0 1.06011009999999994 0.454891199999999996 0.605218900000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.431433740034009 -63.3158230899746997 22.5088975119283994 -13.0957940261315997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164815482501760 2481164815482501760 1550813836 2015.5 25.6405138604540994 0.0488334116277370986 -3.39845373990014021 0.0360108775184004026 0.582586029336297995 0.0579322730947431017 10.0563300000000009 4.84857969302206016 0.0907547639657153016 -5.91091335695669962 0.0724745807869389969 0.056607339999999999 0.521139559999999946 -0.0102079389999999992 0.0154866589999999998 -0.137402560000000007 -0.114542179999999993 -0.0650290200000000068 0.0559450400000000014 0.190211770000000002 0.137163879999999988 144 0 142 2 -0.733592000000000022 124.584999 0 0 31 true 12.6933249999999997 1.59470386704343992 0.0129122537401892001 0.0074914650000000001 17 10 0.0872061499999999962 0 17 false 141 10875.2930241305003 7.07607793978672017 1536.91003 15.5972629999999999 16 5988.5728474159796 19.6600324711093997 304.606449999999995 15.90808 16 7253.26027825292022 33.4067381735354019 217.119670000000013 15.1105870000000007 1.21760700000000011 0 0.797493000000000007 0.310816760000000025 0.486676219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.380524756021003 -63.3088349056739972 22.4983747552407998 -13.0741937713001004 100001 5884 5777.81982 6129.25 0.140000001 0.0680000037 0.207100004 0.0710000023 0.0340000018 0.103100002 200111 1.07930470000000001 0.994660199999999994 1.11933839999999996 1.25797939999999997 0.988463940000000041 1.52749489999999999 +1635721458409799680 Gaia DR2 2481164879909667968 2481164879909667968 1160168844 2015.5 25.6405971378387996 0.633586336215247958 -3.39742276149340983 0.535106492273533019 1.33352481891858998 0.80552595953332895 1.65547099999999991 -4.65011043528463031 1.24843539354975008 -6.66919781335311956 0.929434723162356979 0.125405149999999993 0.4533084 0.134405730000000001 0.0791806199999999932 -0.0538386400000000001 -0.131446570000000013 0.284124800000000011 -0.028589802000000001 0.295857939999999986 -0.00798403599999999991 140 0 139 1 3.02371200000000018 189.005997 0.935646648906566014 0.409506043886225024 31 false 0.0547848000000000016 1.24194344937587009 0.163298732187110995 0.0559084700000000018 17 10 1.1011953000000001 0 17 false 138 159.301627137959997 1.26429816506839998 126 20.182815999999999 10 96.9502259122203043 19.117277369560199 5.07134060000000009 20.3850149999999992 12 217.85706454806899 8.24803908503301919 26.4131950000000018 18.9164899999999996 1.97617130000000008 0 1.46852490000000002 0.202199939999999995 1.26632499999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.379685064856005 -63.3078718051511018 22.4988437579220992 -13.0732658063552005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165983713605888 2481165983713605888 662244427 2015.5 25.5881978180273997 0.847140053327565035 -3.36159871624724982 0.563682812217082052 2.78495221262003012 1.07028834705550002 2.60205799999999998 7.42888129909569983 1.31087788412320005 -18.4364511634673001 0.898323423954612954 -0.388887970000000027 0.668031599999999948 0.301879669999999989 -0.0206282869999999986 -0.569541159999999991 -0.164398850000000013 0.13383043 0.101923570000000005 0.0946621899999999933 0.0666224499999999997 146 0 146 0 4.40690570000000026 227.787994 2.24272054980405988 4.08418123417018997 31 false 0.0542940199999999984 1.33680191344972998 0.159799754009506995 -0.105396870000000004 17 9 1.25153390000000009 0 17 false 146 203.543839098834013 1.7320879424281399 117.514 19.916720999999999 13 94.385332032190604 8.38440815380299931 11.257244 20.4141270000000006 13 254.890606553191986 8.74348344284079992 29.1520650000000003 18.7460349999999991 1.71597400000000011 0 1.66809270000000009 0.497406000000000015 1.17068670000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.240107055535987 -63.2985333001119983 22.4624610097400996 -13.0206990370631992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166013778077696 2481166013778077696 1114540472 2015.5 25.5943184537847017 3.74905182869736997 -3.35579992051254017 8.76031115318757969 \N \N \N \N \N \N \N -0.886874000000000051 \N \N \N \N \N \N \N \N \N 64 0 63 1 -2.67594200000000004 33.2275009 0 6.59722368031097022e-16 3 false 0.0183056459999999983 \N \N -0.0126630930000000003 8 6 97.5228100000000069 0 8 false 64 83.4973383524923065 1.81518427409909 45.9994011 20.8841840000000012 6 58.312095726582001 15.2751353476670992 3.81745199999999985 20.9369900000000015 7 62.7379672085818001 9.16713798047116946 6.84379000000000026 20.2680930000000004 1.44974760000000003 0 0.668897599999999981 0.0528068540000000003 0.61609080000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.246708182443001 -63.2906491958297011 22.4704832708648006 -13.0175575375502994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165910701738240 2481165910701738240 1293646092 2015.5 25.5982799143685007 0.705068887733412031 -3.3747110062559198 0.848363349265419009 2.14321162551892019 0.968621224653403945 2.21264169999999982 8.00596390927628043 1.69281904914681003 -22.6253772884698989 2.51282739285234014 0.183303999999999995 0.32648617000000002 -0.0864909440000000002 -0.208386929999999998 -0.468434569999999995 -0.420359939999999987 -0.559649300000000016 0.170220630000000012 0.303605559999999997 0.613237440000000023 127 0 126 1 1.68970630000000011 148.470001 1.6764245878528099 1.0134206901754701 31 false 0.043301217000000003 1.61910248102608989 0.222562533109089994 0.0597559999999999966 16 9 2.49790100000000015 0 16 false 128 141.242915112546996 1.61103150839095011 87.6723022 20.3134499999999996 13 53.6130665602929994 8.1184963015599898 6.6038174999999999 21.0282119999999999 13 162.994265778426012 11.9158849169589001 13.6787379999999992 19.2314900000000009 1.53358020000000006 0 1.79672239999999994 0.714761729999999984 1.0819607 \N \N 0 \N \N \N NOT_AVAILABLE 152.273003476219998 -63.3059350745445997 22.4671098694751983 -13.0365960940796004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166013777983616 2481166013777983616 1279528788 2015.5 25.5959935259763007 0.343386878194332001 -3.3572616360632801 0.235260580021649013 0.414653051773184012 0.432420356900781011 0.958911960000000008 0.756012575942829002 0.52997722858049201 -4.5654807631114398 0.383032305515129012 -0.412412759999999989 0.687197100000000005 0.226597729999999997 -0.0320068900000000031 -0.576769050000000005 -0.21674794 0.113287814000000001 0.174226309999999995 0.101117544000000004 0.0500713029999999976 155 0 149 6 3.85426070000000021 218.929993 0.838633995937244969 2.55046596152789995 31 false 0.310933620000000022 1.59090990229410001 0.0658583110741182004 -0.0799477799999999961 18 9 0.507638200000000039 0 18 false 146 621.411093233076031 2.38407426025049007 260.651001 18.7049179999999993 17 310.362913198255001 12.7749106687936003 24.2947239999999987 19.1217140000000008 15 472.861561575435985 9.48672674519905001 49.8445430000000016 18.0750850000000014 1.26039670000000004 0 1.04662900000000003 0.416795729999999975 0.629833199999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.251475100284011 -63.2912343309349978 22.4715265903364987 -13.0195322734514001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165945058506112 2481165945058506112 526038033 2015.5 25.6089969281385983 0.580416660476230972 -3.36126570267424007 0.398965057183487015 1.27431706393980004 0.743202475764112025 1.71462979999999998 52.3302801705723013 0.878619566654335049 6.41697713322331964 0.626118912321778964 -0.407682060000000013 0.698245169999999971 0.233882730000000011 -0.0365530770000000033 -0.578129349999999986 -0.186883359999999998 0.184517010000000009 0.152795569999999992 0.0653091150000000009 0.0462320700000000001 154 0 152 2 2.05550530000000009 184.360001 1.31297552895565994 3.61101154879712016 31 false 0.109104000000000007 1.3955305400418001 0.107552701514661994 -0.0585441179999999992 18 9 0.846846039999999967 0 18 false 152 291.849964666798996 1.7980882287892701 162.311005 19.525466999999999 14 80.2438490163503957 9.71591333463602069 8.25901200000000024 20.5903589999999994 14 404.433598841648006 7.33399635393286964 55.1450499999999977 18.244802 1.66070760000000006 0 2.34555630000000015 1.06489180000000005 1.28066440000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.281346357144002 -63.2891666619103006 22.4824011949555995 -13.0280345737494994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165773259813760 2481165773259813760 406947106 2015.5 25.6326116811954989 1.45969658248903 -3.36774574193482978 1.33812374032986003 -4.18502236058899957 2.15340654954205979 -1.94344270000000008 9.94820883678817047 2.28578997758443014 -14.6333862586789998 3.30310171273317987 -0.305639559999999977 0.735636900000000038 0.285774299999999981 -0.00590238859999999994 -0.640227850000000043 -0.536766469999999996 -0.553920030000000008 0.36224561999999999 0.365368499999999985 0.534050800000000048 100 0 99 1 -0.16553967 91.0940018 0 0 31 false 0.0287324620000000003 1.8355655689594399 0.304203742788764997 0.0640649699999999989 13 8 3.3701620000000001 0 13 false 99 100.501926558264998 1.36624202458267008 73.5608978 20.6829299999999989 10 55.3267202605992026 9.08034053413000031 6.09302299999999963 20.9940509999999989 13 107.465069210989 11.0093535652921002 9.76125099999999968 19.6837519999999984 1.61978770000000005 0 1.31029890000000004 0.311120999999999981 0.999177929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.334812132263011 -63.2846845390170998 22.5024505384606002 -13.0427383397688992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165777555175808 2481165777555175808 641777810 2015.5 25.6449172869976003 3.13092692756882984 -3.3737287768264701 1.98906920378863994 \N \N \N \N \N \N \N -0.3200326 \N \N \N \N \N \N \N \N \N 113 0 113 0 29.7570149999999991 1397.57996 12.9629126425224008 73.1794163001797955 3 false 0.00517551500000000032 \N \N 0.0336386259999999979 14 8 4.83151439999999965 0 14 false 121 190.593035174225008 2.70670350526581993 70.4151993 19.9880980000000008 12 161.735044350381997 12.8199777362060008 12.6158599999999996 19.8293779999999984 12 403.058620296368986 10.1784465054923992 39.5992279999999965 18.2484989999999989 2.96334890000000017 0 1.58087920000000004 -0.158720019999999989 1.73959920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.365206140243998 -63.2846841139480034 22.5119141303828982 -13.0528232966274995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705420800 2481165051705420800 31738011 2015.5 25.6595287748480985 1.14527714952477 -3.36965839606491002 1.09453440196057006 -0.527470163836989969 1.49562004528381998 -0.352676570000000023 0.0804113206528598995 2.05592551235102983 -2.72630050802604007 2.55119709029116004 0.10274701 0.572728000000000015 0.0478473640000000033 -0.104164839999999995 -0.365420940000000027 -0.518111050000000017 -0.614213349999999991 0.311726479999999972 0.44617772 0.447127849999999993 105 0 102 3 -0.139777469999999987 94.4098969 0 0 31 false 0.0310266969999999989 1.89564853442239989 0.268738378899585018 0.0789275499999999991 12 9 2.64444070000000009 0 13 false 101 114.807974061161005 1.6012820883162 71.6975021 20.5384349999999998 9 39.9611939197105031 10.7756630411338996 3.70846719999999985 21.3472919999999995 9 140.38153495031699 4.01221156907022003 34.9885670000000033 19.3936439999999983 1.57082060000000001 0 1.95364760000000004 0.808856959999999958 1.1447906000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.390396933156012 -63.2746326874132023 22.5273740064655001 -13.0544076152378992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164678043548544 2481164678043548544 975245292 2015.5 25.6873828454526993 0.0398741560340050982 -3.40979100825992987 0.0272219679036877008 3.04548895372243988 0.0534224688289317989 57.0076400000000021 37.0945954416717996 0.0546551698344752979 -25.3265099176044011 0.0552896188869693994 -0.219246030000000008 0.758797170000000021 -0.0181497670000000007 0.0255146829999999998 -0.455168499999999976 -0.00506191330000000002 -0.0700437099999999951 0.0146149769999999995 0.0260126609999999994 0.381656019999999985 121 8 119 2 -2.77679279999999995 76.4896011 0 0 31 true 145.019200000000012 1.56235685403547997 0.00850180443918478919 0.0116056930000000003 14 9 0.0590082629999999983 0 14 false 118 114341.285906125006 53.3411287142165023 2143.59009 13.0428580000000007 13 55845.1097136351018 108.513462186607995 514.637629999999945 13.4839249999999993 11 83938.3749510052003 153.940171385693986 545.266240000000039 12.4520189999999999 1.2225109999999999 0 1.03190610000000005 0.441066740000000013 0.590839400000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.485170824380987 -63.2984801076135994 22.5387516730835991 -13.1019569618012994 100001 5133.75 5063.74023 5304 0.216999993 0.133599997 0.319499999 0.107000001 0.0670000017 0.155399993 200111 0.91471385999999999 0.856934549999999962 0.940181849999999986 0.523605349999999969 0.504475950000000006 0.542734739999999993 +1635721458409799680 Gaia DR2 2481164673748044800 2481164673748044800 178891263 2015.5 25.6884775000479983 0.0614932868143584013 -3.40940695354864998 0.0419718223277772973 3.20905192646084991 0.0816026199063085989 39.3253559999999993 36.290393369567802 0.0850892475649775992 -25.3540845963615986 0.086500436188786306 -0.183240459999999994 0.752102200000000054 0.00447278239999999994 0.0410081200000000021 -0.422040579999999999 -0.0462750980000000006 -0.129388819999999988 0.0508029539999999974 0.0675398299999999951 0.381864370000000009 121 121 121 0 0.320264040000000028 120.263 0 0 31 true 349.197699999999998 1.57598159136633997 0.0134499952761337003 0.0107281579999999998 14 9 0.0552566099999999977 0 14 false 121 257262.489201074 3660.48804032581984 70.280899 12.1624239999999997 14 131152.646058096987 5929.84105842056033 22.1173970000000004 12.5569459999999999 14 186379.615360458993 7857.11983573604994 23.7211110000000005 11.5859240000000003 1.23427339999999997 0 0.971021649999999958 0.394521699999999975 0.576499940000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.486978978661 -63.2976546476562021 22.5399399730832002 -13.1020020335232008 100001 5293.33008 5030.33008 5570.60986 0.504999995 0.386500001 0.66079998 0.250999987 0.194900006 0.321999997 200111 1.2092681999999999 1.09188189999999996 1.33902169999999998 1.03432499999999994 0.998557000000000028 1.07009299999999996 +1635721458409799680 Gaia DR2 2481164952921455104 2481164952921455104 531666361 2015.5 25.6647616331408983 0.132323307924513994 -3.37903262498269985 0.0873295196709211047 2.66695726291227997 0.174288871647644006 15.3019359999999995 -11.1136934897265007 0.182036961676517006 -3.31746421394873003 0.145084694734740005 -0.270937380000000005 0.747262699999999946 0.130406629999999996 0.0209370479999999998 -0.481823700000000021 -0.0202385129999999996 0.236956240000000012 0.0576646140000000029 0.0197840500000000009 0.184484800000000004 131 0 131 0 3.36044030000000005 186.360992 0.304297311855408981 2.26990374538888018 31 true 2.77833079999999999 1.36729086589811 0.0247472627697007015 0.0398461260000000025 15 9 0.179352359999999988 0 15 false 127 3574.98293257795012 3.80813031696690985 938.776001 16.8051819999999985 13 998.807505141234969 7.71308623365994972 129.495180000000005 17.852684 14 3885.58587618932006 13.6401576681478005 284.863699999999994 15.7882789999999993 1.36627040000000011 0 2.06440540000000006 1.0475025 1.01690290000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.409980197231988 -63.2807661616409973 22.5288181508391006 -13.0650464612829005 100001 3782.72998 3637 4234.91992 0.239500001 0.0829000026 0.400299996 0.133000001 0.0524999984 0.218799993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307008 2481165051705307008 1663287751 2015.5 25.6665804108209983 0.720360762326065052 -3.37565885253675013 0.562981872215738033 0.479213212751383011 0.999443715682253986 0.479479939999999993 -0.188638506347123008 1.12923909792461008 -4.28163970014611017 0.89459586487766396 -0.102847499999999994 0.641236959999999967 0.145802719999999997 0.123203404000000002 -0.433843970000000023 0.069376199999999999 0.251894859999999998 0.00965289599999999935 0.0870494700000000038 0.246427310000000011 144 0 144 0 1.19609030000000005 159.181 0 0 31 false 0.0571776140000000016 1.89922947124436003 0.16127368140958101 0.0838848499999999969 17 10 1.05252830000000008 0 17 false 144 171.402470996212003 1.53807186384638994 111.440002 20.1033229999999996 13 112.320326843686004 10.2378528254886003 10.9710830000000001 20.225242999999999 12 118.481422881487006 8.65273869501477932 13.6929390000000009 19.5777949999999983 1.34654859999999998 0 0.647447600000000012 0.121919630000000001 0.525527949999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.410316954347991 -63.2769378613012989 22.5318259025718994 -13.0625777668876992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091201920 2481161650091201920 483875343 2015.5 25.7096134987193992 0.273054289227444014 -3.42217728409588018 0.181321889975770006 3.57853062651174003 0.374508262819233995 9.55527799999999949 36.7068227992835006 0.373405815324170998 -25.5144089819116004 0.311495818587289974 -0.215464829999999996 0.747158349999999971 0.0709544639999999949 0.100721574999999994 -0.483106599999999997 0.0421556699999999993 0.0915272300000000011 0.0367603300000000008 0.0802169699999999986 0.32153246000000002 129 0 128 1 4.27815000000000012 202.112 0.730208717402856977 3.69969509270962016 31 false 0.60617494999999999 1.29275010182023009 0.0561719402774739987 0.0862897999999999998 15 9 0.372743400000000003 0 15 false 127 1095.46219312990002 2.50862094974830008 436.678986 18.0893729999999984 14 188.480910609895005 5.90249691629596018 31.9324039999999982 19.663219999999999 14 1474.56593584392999 14.1183289958306002 104.443375000000003 16.8402600000000007 1.51812349999999996 0 2.82296000000000014 1.5738468000000001 1.24911309999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.541649697976993 -63.2998350502964016 22.5552571723994006 -13.1216408507214002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161753170420992 2481161753170420992 1094778668 2015.5 25.7121730720417006 0.978706578502115954 -3.40207693125078015 0.769881538174501001 \N \N \N \N \N \N \N 0.0912290699999999954 \N \N \N \N \N \N \N \N \N 137 0 136 1 44.7573050000000023 3006.15991 5.93151674780332971 218.083947720630988 3 false 0.0266130379999999986 \N \N 0.129169449999999991 16 10 1.67212010000000011 0 16 false 136 820.844157931244013 6.25444683051811978 131.242004 18.4027139999999996 12 685.377144087599959 9.58231865377060998 71.5251849999999934 18.2615639999999999 11 1141.1746743972999 8.97942911821001921 127.08766 17.1185399999999994 2.22521140000000006 0 1.14302440000000005 -0.141149520000000001 1.28417399999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.527057830625012 -63.280663798881001 22.5652912853541991 -13.1038911727221006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162062408066176 2481162062408066176 879182275 2015.5 25.7309660901159987 0.546871161384190008 -3.40332455953369006 0.426210176678534003 0.600923456061966954 0.758797510174950007 0.79194176000000005 8.98686402483706992 0.877721811857854028 -4.17154419979010971 0.67242660467281401 -0.0633129000000000053 0.620456930000000018 0.108365569999999994 0.153612169999999992 -0.430045500000000025 0.120812799999999998 0.261615429999999982 -0.00323646209999999988 0.0815362599999999993 0.27710918000000001 147 0 144 3 1.54423329999999992 165.619995 0.969783232602822953 0.896065759539357964 31 false 0.0984727600000000064 1.33831691243925999 0.117036755303545001 0.0962725700000000018 17 10 0.815457639999999984 0 17 false 145 257.462454121861015 1.61802721683388007 159.121002 19.6615810000000018 14 87.5873173590145058 10.9702696409959 7.98406199999999977 20.4952849999999991 16 319.067657577114005 11.7100364819842007 27.2473659999999995 18.5022130000000011 1.57947290000000007 0 1.99307250000000002 0.833704000000000001 1.15936850000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.565731715607001 -63.273518685361303 22.5827304030101992 -13.1119539703519994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162101063184000 2481162101063184000 660812533 2015.5 25.7341883744049014 0.865964213235225988 -3.3997065116969698 0.771635357722006976 \N \N \N \N \N \N \N 0.102743029999999999 \N \N \N \N \N \N \N \N \N 140 113 140 0 399.764279999999985 689052 8.00153881763755948 20872.7173751646005 3 false 0.0148545540000000007 \N \N 0.0722207049999999962 16 10 1.60946250000000002 0 19 true 136 173169.961333268991 164.250887612117992 1054.30005 12.5921839999999996 16 78136.7175130117976 93.7249582190799941 833.68100000000004 13.1192499999999992 16 138327.22697334399 132.116997511521987 1047.00549999999998 11.9096510000000002 1.25000859999999991 0 1.20959949999999994 0.527066229999999969 0.68253326000000003 -2.2677644922127298 2.20707705676850985 6 5500 4.5 0 NOT_AVAILABLE 152.568604578740008 -63.2688531464800974 22.5871682225686996 -13.1097731563263 130001 4892 4791.25977 5066.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162268566499328 2481162268566499328 1120850265 2015.5 25.7402435199083008 0.410145568462409016 -3.37311814871805016 0.318560670746971974 1.94238456854266994 0.556582243231740992 3.48984300000000003 11.4835145717096996 0.671576968311570988 -4.34478183709438959 0.517754196784408038 -0.0555930619999999986 0.607862400000000025 0.0977928639999999932 0.135113220000000006 -0.396231300000000008 0.0884010340000000033 0.25076989999999999 0.00689665799999999996 0.0904284100000000007 0.242375249999999987 136 0 136 0 1.94648160000000003 164.322998 0.721794130615990959 0.863835743500620978 31 false 0.177320260000000007 1.01610625318635006 0.0936057417277301046 0.0866685900000000037 16 10 0.617141840000000053 0 16 false 135 372.611501807590002 1.46406994731247009 254.503998 19.2602249999999984 12 93.8722000783783983 9.09345560659478025 10.3230505000000008 20.4200459999999993 13 471.276262420336991 13.8371231825246994 34.0588339999999974 18.0787319999999987 1.51672300000000004 0 2.34131430000000007 1.15982059999999998 1.18149379999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.554618905415992 -63.2423226526530016 22.6029818547666999 -13.0872731464470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307264 2481165051705307264 250403498 2015.5 25.6698624879292012 0.271105876441821991 -3.37284203193090004 0.187350239616844993 0.256745275253644989 0.356310454261632992 0.720566200000000046 44.2504196860057988 0.389047787819502 -19.5324850382223012 0.333604413129437005 0.13439029999999999 0.708636500000000003 0.0873387600000000014 0.148755090000000006 -0.155167219999999995 0.0668807800000000008 0.142728309999999997 0.0227106600000000006 0.136120380000000013 0.319327650000000018 131 0 130 1 1.13525000000000009 143.091995 0.436525610213974014 0.817938061227846958 31 false 0.513153300000000034 1.51500703341528009 0.0640600067815186996 0.175147770000000008 15 9 0.381164759999999991 0 15 false 129 803.083895335195052 2.1563222474019601 372.432007 18.4264639999999993 13 381.757387319728991 14.6620546354170997 26.0370999999999988 18.8969200000000015 11 643.895723929653968 8.84417651384067049 72.8044900000000013 17.7398820000000015 1.27714309999999998 0 1.15703770000000006 0.470455169999999978 0.686582570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.414115700695987 -63.2729691344911984 22.5360174821400001 -13.0611645264398994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165429662430208 2481165429662430208 1514059112 2015.5 25.6741497471831011 0.379510949585849022 -3.36402981774307008 0.252271070042159984 0.74891108523532901 0.506367837847745972 1.47898630000000009 -3.88341108789501011 0.538073064516979005 -18.2421892180859011 0.406451716202536006 0.0780085900000000027 0.708702999999999972 0.110139585999999998 0.224466799999999994 -0.205997779999999991 0.120581480000000005 0.31466814999999998 0.0313401040000000006 0.172757729999999998 0.250878270000000014 141 0 140 1 2.73437330000000012 184.278 0.745371915755921988 1.34386558848184001 31 false 0.263637779999999988 1.54540229176717991 0.0771267096341388958 0.141697380000000012 16 9 0.519565700000000019 0 16 false 141 515.586023690497996 1.94264773691401005 265.403992 18.9076139999999988 13 157.607184868670004 7.35998072378265977 21.4140760000000014 19.857448999999999 14 549.41072827492701 11.0324269239127997 49.7996249999999989 17.9121780000000008 1.3712899999999999 0 1.9452704999999999 0.949834799999999979 0.995435700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.414069811350004 -63.2631726132200001 22.5434318115366992 -13.0545459072696008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165395302692736 2481165395302692736 442634520 2015.5 25.6894741685770001 2.80133867579119 -3.35985014866573994 2.65093805587726017 \N \N \N \N \N \N \N 0.0333592559999999969 \N \N \N \N \N \N \N \N \N 113 0 111 2 29.3819769999999991 1363.77002 15.3541239679118 489.855447475616018 3 false 0.00367012480000000014 \N \N 0.206519160000000007 14 9 5.71597579999999983 0 14 false 116 156.722543274107011 1.61900142049180995 96.802002 20.2005370000000006 10 154.647238500022013 10.5551436863852004 14.6513620000000007 19.8780329999999985 11 373.891855552376001 11.7249603227911994 31.8885380000000005 18.3300550000000015 3.37245099999999987 0 1.54797739999999995 -0.322504039999999992 1.87048149999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.440539908503013 -63.2527021319469966 22.5596127032782015 -13.0562891283216 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165292223477504 2481165292223477504 534627943 2015.5 25.7185524326828983 0.168722941809527988 -3.36060188213973987 0.108958316011088005 0.0363009125255092033 0.222539159358603994 0.163121459999999996 -3.07680501667313999 0.22946848465747699 -5.51592428421067016 0.192519132508790991 -0.22221689 0.750912849999999965 0.108568189999999995 0.0545640550000000002 -0.448024599999999995 -0.00081989509999999999 0.125155450000000001 0.0445823149999999974 0.0553779599999999969 0.257327560000000011 121 0 119 2 1.18842270000000005 132.166 0.306231266121243018 1.38221201543077998 31 false 1.77922340000000001 1.5926551802862301 0.037299596632137999 0.0560849719999999968 14 9 0.227303969999999994 0 14 false 118 2207.47547755721007 2.9952775315687501 736.984985 17.3286270000000009 12 1150.00038190994997 12.1270185058770998 94.8296050000000008 17.6996439999999993 14 1577.28358808653002 13.6769600237793991 115.324134999999998 16.7671449999999993 1.23547650000000009 0 0.932498929999999948 0.371017460000000021 0.561481499999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.499197076602997 -63.2406188657860966 22.5870376801512016 -13.0676686596384002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165262158601344 2481165262158601344 159083683 2015.5 25.7435078446419006 1.50883249377151007 -3.35467455287846983 2.09434855767065997 \N \N \N \N \N \N \N 0.843362570000000034 \N \N \N \N \N \N \N \N \N 61 0 61 0 0.426602099999999984 59.9369011 0.619242071953656992 0.217556173350670012 3 false 0.106812779999999996 \N \N 0.563186760000000008 7 5 3.83090850000000005 0 7 false 60 241.987221437660992 4.28263401785434006 56.5042992 19.7288840000000008 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.543070982322007 -63.2243299305825985 22.6130578419269987 -13.0713213721670005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165262159112704 2481165262159112704 992556638 2015.5 25.7437665754094986 0.305611801472963018 -3.35481679903847008 0.235380440208746988 -0.634226858013193007 0.388413285781171014 -1.63286599999999993 2.86158318817382007 0.553273418143687024 3.19296530594536998 0.398642390095730992 -0.00367518770000000014 0.528325799999999957 0.0353728719999999996 0.115227090000000004 -0.31455240000000001 0.091668949999999999 0.302719559999999999 -0.0145158679999999995 0.0657365550000000021 0.175163790000000014 139 0 137 2 10.0389689999999998 370.199005 1.47106911788864991 13.5869183877042996 31 false 0.288593140000000026 1.45627206233628992 0.0678411930355966031 0.0713690800000000014 16 10 0.494804259999999996 0 16 false 137 1046.03234597074993 4.24683973272883986 246.307999 18.1395030000000013 15 432.95263147285101 11.5564194134130993 37.4642520000000019 18.7602860000000007 16 1183.68699821916994 15.0378741484077008 78.713719999999995 17.0788270000000004 1.5454968 0 1.68145940000000005 0.620782849999999997 1.06067660000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.543724786707998 -63.2243438528209012 22.6132506970084002 -13.0715486511300991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345062374487040 2481345062374487040 531792104 2015.5 25.4161142232738015 0.344531623290302014 -3.46635274174859997 0.308121668552048977 -0.0593777176794986969 0.401378918320387024 -0.147934320000000008 9.59766909432160986 0.790934850336547979 -22.5727076439745993 0.651064052706986973 0.195351059999999993 0.270971200000000023 -0.0808783599999999964 0.0280432920000000009 -0.106781500000000001 -0.00855453500000000026 0.112984310000000004 -0.0187113830000000016 0.0903825399999999973 0.170912890000000012 161 0 159 2 1.2559819000000001 176.380005 0.544417465879606044 0.377764630170769 31 false 0.133150899999999989 1.51609806662951008 0.0906968714295187939 -0.0351327359999999977 18 10 0.712435900000000011 0 18 false 158 260.35062947417498 1.16659806505206998 223.171005 19.6494700000000009 13 70.1134438836748046 5.69341469803262967 12.3148319999999991 20.7368850000000009 12 273.063108990101 9.31318794472907996 29.3200469999999989 18.6712629999999997 1.31813219999999998 0 2.0656222999999998 1.08741569999999999 0.978206629999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.996484974085007 -63.4675536766112032 22.2589217151447016 -13.0547765665202 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345302892656256 2481345302892656256 261353442 2015.5 25.4131460281434016 0.334394069651198 -3.45805229560470995 0.297803761310025006 1.71625280814581993 0.39272454022282699 4.37011859999999963 -4.82344497496135993 0.684133180407957009 -65.756627263601203 0.534117627093699032 0.245646279999999995 0.38640585999999999 0.0268053650000000011 0.137124030000000008 -0.0494707500000000008 0.0659783260000000038 0.266257799999999989 -0.025311053 0.146050650000000004 0.182478919999999989 174 0 172 2 3.8955839000000001 247.921997 1.38056776341602006 3.57324097580091005 31 false 0.143817339999999988 1.3846598624945301 0.0849334221265485023 0.0288519560000000015 20 10 0.616131500000000054 0 20 false 170 345.491742430729005 1.34260875227003007 257.32901 19.3422720000000012 17 92.1679726025420933 7.61114876873419988 12.1096009999999996 20.4399380000000015 17 403.109673972207986 7.03643846063873024 57.2888799999999989 18.2483620000000002 1.43354399999999993 0 2.19157599999999997 1.09766579999999991 1.09391020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.982461462026009 -63.4613549132064989 22.2592372161185992 -13.0459685592112997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345096734421760 2481345096734421760 1365238329 2015.5 25.4241306831824012 0.99739902746114395 -3.45956477849161015 1.02802025768815009 2.87782479175471995 1.13580128373893996 2.53373980000000021 11.4386620688404008 2.40612809954417006 -9.4525594039567995 2.72077585134698996 0.354360500000000023 0.248098550000000001 -0.198507800000000012 -0.147893400000000008 -0.118693370000000006 -0.183406740000000013 -0.32976896 0.0202062600000000002 0.0629505139999999991 0.47711389999999998 144 0 143 1 4.17049100000000017 218.619995 3.6776854662680698 4.75798904813162959 31 false 0.0178201529999999983 1.03359428528219 0.279220714340691012 0.038813590000000002 17 9 2.77542780000000011 0 17 false 144 88.3711706057246005 0.963238606020163979 91.7437973 20.8225900000000017 11 21.8656277963608012 5.83190334766089968 3.74931239999999999 22.0019840000000002 15 149.608221434933 8.88766614701319035 16.83324 19.3245320000000014 1.94038219999999995 0 2.67745200000000017 1.17939379999999994 1.49805830000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.006045394724993 -63.4579692747403001 22.2691265435651999 -13.0514181162607006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157737376395136 2481157737376395136 172581060 2015.5 25.4645324900388985 0.0703383812578458056 -3.4704017773393101 0.0562870744997783015 1.73286801612643004 0.0846622729111948941 20.4680080000000011 20.4464805311799012 0.14627989245610401 11.4852577597389995 0.106069864571833997 0.0869706650000000026 0.361365349999999974 -0.0215742800000000012 0.0653598499999999971 -0.219872280000000003 0.000704128239999999954 0.087226323999999994 0.0207634400000000011 0.155744099999999996 0.165097419999999995 188 0 185 3 4.82564539999999997 287.050995 0.299677338730026999 3.63347329017013987 31 false 3.39109779999999983 1.44155677360229006 0.0171850469944869015 0.0367999859999999998 21 10 0.135071899999999995 0 21 false 180 4426.51507446127016 3.99959264610895016 1106.73999 16.5732120000000016 19 1528.31412517991998 12.0433263592098001 126.901330000000002 17.3908559999999994 19 4296.71494048120985 12.8395141819397001 334.647800000000018 15.6790789999999998 1.31594009999999995 0 1.71177669999999993 0.817644099999999985 0.894132600000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.09786631403199 -63.4502347898750969 22.3035065266772001 -13.0763618886785995 100001 3999.66992 3940.19995 4317 0.168200001 0.0460000001 0.354999989 0.1052 0.0540000014 0.207699999 200111 0.648637800000000042 0.556782699999999964 0.66836439999999997 0.0970050699999999988 0.0871509899999999976 0.10685915 +1635721458409799680 Gaia DR2 2481345509051087744 2481345509051087744 1285072800 2015.5 25.4492901570208012 0.291428438765597986 -3.44700167292727988 0.264868826884110009 -0.164635491615589991 0.359357926557902996 -0.458137930000000027 0.686609560911831007 0.642057109411608984 -0.583410602618913976 0.511767325175097043 0.204665469999999988 0.277899700000000027 -0.00532163300000000009 0.047450214999999997 -0.189517989999999997 -0.00320072450000000001 0.106893559999999999 -0.0173670720000000008 0.145441409999999993 0.212302299999999999 177 0 175 2 0.0440484360000000033 170.145996 0 0 31 false 0.172663349999999993 1.54841419051753992 0.0800030306679928027 0.0425009500000000026 20 10 0.582047599999999998 0 20 false 176 306.182818358865973 1.40573598275874989 217.809998 19.4734130000000007 15 146.681062508823004 10.5430197285819993 13.912623 19.935452999999999 15 226.139020573824013 10.6869227427007996 21.1603490000000001 18.8759799999999984 1.21763890000000008 0 1.05947300000000011 0.462039949999999977 0.59743310000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.044487201117988 -63.4357605944579035 22.2978448706146999 -13.0490007644360997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345783928996864 2481345783928996864 502762141 2015.5 25.4192275272400998 0.158431625273922988 -3.42916734001045986 0.181223579590159001 1.25588473112029009 0.189851676619535004 6.61508369999999957 3.93579054737787004 0.380148990010817978 -9.32791091225242042 0.367470853377703022 0.391511050000000027 0.176692170000000009 0.193411420000000001 0.297929500000000014 -0.338066340000000021 0.434292500000000026 0.545603040000000039 -0.269314600000000015 -0.243385800000000013 0.548116860000000039 151 0 150 1 2.27343340000000005 186.473999 0.47148102596504099 1.6521531642976699 31 false 0.742591400000000013 1.37416600159982005 0.0406162103097012991 0.116921479999999994 17 9 0.430173369999999999 0 17 false 150 1040.67041826281002 1.67098588836658002 622.788025 18.1450819999999986 17 328.072744670380018 7.90719597433696997 41.4904020000000031 19.0614619999999988 15 1076.27547167793 8.29077753927393957 129.816000000000003 17.1821120000000001 1.34946490000000008 0 1.87935070000000004 0.916379900000000025 0.962970729999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.966735180609987 -63.4326883758673006 22.2759629051163017 -13.0213581663193008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346647218116224 2481346647218116224 930154776 2015.5 25.4242364749316998 0.511999835920828983 -3.4005014576321102 0.360735903848875994 -3.84772354793810978 0.574817166724767015 -6.69382140000000003 6.54745134598876977 0.999563877983880023 -1.21530829549600994 0.637003388534561954 0.107952856 0.434235539999999975 -0.0496685170000000023 0.152514709999999998 -0.0122940930000000007 0.126817170000000007 0.221238540000000011 -0.024868636999999999 0.119088009999999994 0.0974134650000000046 167 0 167 0 114.243904000000001 23173.5 3.53068342731838003 1160.94717013330001 31 true 0.0787065549999999975 1.77911650761601003 0.108664262616593996 0.0185301289999999994 19 10 0.880942169999999969 0 19 false 115 9537.26991586177064 47.4460849499763029 201.013 15.7398050000000005 17 6619.26661937856989 296.614244047979014 22.316078000000001 15.7993629999999996 13 11384.1874162215008 261.720361997280975 43.4975239999999985 14.6211649999999995 1.88769469999999995 0 1.17819790000000002 0.0595579150000000029 1.11864000000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.949096448946989 -63.4046805603831984 22.2915813122126991 -12.9965557620569996 112001 5143.4502 4279.41992 7050 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346642924553216 2481346642924553216 1542090929 2015.5 25.4243652055585017 1.82484331767214991 -3.40020777736549995 0.655011178071329025 \N \N \N \N \N \N \N -0.991865899999999967 \N \N \N \N \N \N \N \N \N 89 0 87 2 6.41955899999999957 193.559998 0.470280126077793015 7.77193167386148964 3 false 2.89815349999999983 \N \N -0.461978100000000003 10 5 2.4259643999999998 0 19 false 91 7989.09504225230012 12.0258913743414997 664.325012 15.9321219999999997 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.949071560530996 -63.4043601899336977 22.2918150292429011 -12.9963301509811995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192749949285888 2481192749949285888 410573831 2015.5 25.866164990839799 4.7837221531144003 -3.17350639509617016 8.11016700730269058 \N \N \N \N \N \N \N 0.955004630000000021 \N \N \N \N \N \N \N \N \N 62 0 62 0 2.61842560000000013 88.8775024 3.94635089815957985 2.0121839158611099 3 false 0.0177876390000000009 \N \N 0.546603740000000005 7 5 15.2552479999999999 0 7 false 62 118.248259302502007 2.16975973604036998 54.4982986 20.5063780000000015 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.609486174121997 -63.0077289513327017 22.7982865128857988 -12.9478429035090006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346750297330944 2481346750297330944 1455971191 2015.5 25.4140970926403007 0.0250716895595252988 -3.38517975553528983 0.017283663335591299 1.02450613527366996 0.0283678818767613 36.115000000000002 -3.26547446699906008 0.0425889192589697999 -4.7207799973200899 0.0365954845838031978 0.0232202450000000005 0.593194800000000022 -0.0533125249999999995 0.0441886069999999978 -0.13329916 -0.00738570839999999965 -0.123621464 0.0175431110000000001 0.0765706300000000006 0.216988349999999997 177 9 177 0 -1.99702350000000006 136.981995 0 1.49381188301628004e-15 31 true 86.479299999999995 1.57361830828191995 0.00617030662991643018 -0.0157894719999999988 20 10 0.0466810169999999983 0 20 false 174 66794.9792204809928 21.0188503709365015 3177.86011 13.6265059999999991 18 33390.1980861444972 48.8275035575687966 683.839969999999994 14.0423399999999994 18 47799.8295695989 44.7020316760817025 1069.29880000000003 13.0633545000000009 1.21551100000000001 0 0.978985800000000017 0.415834429999999977 0.56315135999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.91392186069001 -63.3952388175898989 22.2877232144847 -12.9785816574175996 100001 5349 5319.5 5383.25 1.57430005 1.17400002 1.88499999 0.791999996 0.596599996 0.952099979 200111 1.8829613999999999 1.8590776 1.90390370000000009 2.61497760000000001 2.44203500000000018 2.78792019999999985 +1635721458409799680 Gaia DR2 2481346681577854336 2481346681577854336 1009637662 2015.5 25.4338991743881984 2.19353067376319988 -3.38990184453697019 1.53623923379239002 \N \N \N \N \N \N \N -0.0160428230000000012 \N \N \N \N \N \N \N \N \N 143 0 143 0 62.6574329999999975 5981.62988 13.4835632255605997 244.788308394953987 3 false 0.00510492199999999959 \N \N -0.0283097009999999996 20 10 3.6164909999999999 0 20 false 173 317.886116101064999 5.02916682055106978 63.2084999 19.4326879999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.958279575949007 -63.3909516718956993 22.3047937207795997 -12.9902590017525998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351522005306368 2481351522005306368 1440377864 2015.5 25.4767464998067013 0.399113072925876999 -3.41209000174002997 0.340658598891798003 0.22544769102918899 0.508244909220315955 0.443580799999999997 4.20055715545780028 0.789532231232903947 -3.12990165946331 0.622543248480592948 0.0783991140000000059 0.429474599999999984 0.0749534800000000029 0.0665737400000000062 -0.268086900000000017 -0.00420920270000000023 0.174356800000000006 -0.00931648350000000014 0.137448270000000011 0.18254477999999999 176 0 172 4 1.19478369999999989 189.076004 0.655003002498628972 0.486254016065906014 31 false 0.107993809999999996 1.51181169301013996 0.104709763464396005 0.0131168629999999994 20 10 0.710326699999999978 0 20 false 173 241.125696562734987 1.33452658816204006 180.682999 19.7327580000000005 14 87.2043188197726948 12.4970058805386 6.97801700000000036 20.500043999999999 14 221.391706938207989 11.8016026907521994 18.7594600000000007 18.8990170000000006 1.27981389999999995 0 1.60102649999999991 0.767286299999999977 0.833740229999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.065811397047014 -63.3924143014403967 22.3372063689932006 -13.0266512708137991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352557093115008 2481352557093115008 735196513 2015.5 25.4408926860807014 0.0707835716869500975 -3.38422672693908 0.0646321418963384936 2.29200955756492997 0.108644285051964995 21.0964579999999984 29.4616989748666995 0.126233614403978012 4.61361367599641969 0.116012993083216998 -0.279872569999999987 0.651002170000000047 -0.101932703999999999 -0.101592249999999995 -0.67750189999999999 0.439813500000000024 0.541806760000000054 -0.356970039999999988 -0.419314320000000018 0.541675699999999982 151 0 149 2 0.899224400000000035 159.091995 0.107010823710894001 0.619836721000726953 31 false 7.72963670000000036 1.41264750038603992 0.0144664838140959005 0.0257942209999999991 17 8 0.149288950000000004 0 17 false 147 7226.68929050804036 6.01936932152837034 1200.56995 16.0410180000000011 15 2387.49854736654015 10.7328878164511998 222.44699 16.9065300000000001 16 7158.09928858540025 10.3693393223576997 690.31389999999999 15.1249260000000003 1.32088110000000003 0 1.78160479999999999 0.86551285 0.916091899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.966848928777011 -63.3828147578941028 22.3136007753125014 -12.9875572180214007 100001 4183.75977 3975.25 4721.29004 0.363200009 0.221000001 0.678499997 0.174999997 0.1215 0.326999992 200111 0.542096000000000022 0.425684720000000016 0.600456300000000054 0.0811176450000000021 0.0732357399999999936 0.0889995499999999967 +1635721458409799680 Gaia DR2 2481351796885353600 2481351796885353600 75833813 2015.5 25.4527164772512009 0.883302703794016986 -3.38944973932458016 0.996539685537713993 1.00721596089840992 1.17211721835519 0.859313369999999965 3.26936847384213003 2.46422223940564011 -14.5350645006523997 3.60957272636579996 0.257769729999999975 0.277790340000000024 -0.0288017690000000014 -0.110372074000000001 -0.317778320000000003 -0.0757886799999999972 -0.153533639999999999 -0.204026600000000002 -0.133112389999999997 0.681625000000000036 108 0 103 5 1.07303360000000003 113.068001 1.79347557581582007 36.388569045865701 31 false 0.0287880410000000003 1.85121752546787999 0.303011083159916983 0.0272469860000000008 13 9 3.56852100000000005 0 13 false 103 95.5883366242841959 1.27991885754443002 74.6830978 20.7373539999999998 8 41.9328731736809033 4.73047517940185003 8.86440999999999946 21.2950020000000002 10 109.174676222846003 13.7746416694738993 7.92577269999999956 19.6666150000000002 1.5808158000000001 0 1.6283875000000001 0.557647699999999968 1.07073970000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.995643599027005 -63.3824134088774969 22.3228850751530992 -12.9967633283549997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351801178894592 2481351801178894592 289455600 2015.5 25.4612993869220006 1.67990465798774991 -3.39517049619341993 0.933735684048945025 3.86149362580151001 1.96988465694967996 1.96026379999999989 3.1165759788612899 2.69338270781027012 -1.09347380126696003 2.31555954792316987 -0.0964012149999999984 0.680744099999999963 0.368149969999999993 -0.191428999999999988 -0.278029320000000024 -0.304324450000000024 -0.296758350000000004 -0.0242985450000000013 0.0017935786999999999 0.274950980000000011 99 0 99 0 1.8652884999999999 121.174004 1.47545634904762002 0.48830683299720401 31 false 0.0299700599999999998 1.45949673804703006 0.302060235458516013 0.000217391189999999992 12 7 2.60073260000000017 0 13 false 101 100.909132607253994 1.41464554559547007 71.3317032 20.6785400000000017 12 54.6354209962428996 9.65840214464147984 5.65677640000000004 21.0077019999999983 11 78.7098504397955026 7.38897566793168004 10.652336 20.0218470000000011 1.32143900000000003 0 0.985855099999999984 0.329162600000000027 0.656692500000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.018411488885988 -63.3838573024080034 22.3288950089841016 -13.0052394230171995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351762523476352 2481351762523476352 26162654 2015.5 25.4786718509800991 0.652820766668389951 -3.4009281961445299 0.688656708500608006 1.93327896506048003 0.827601895489489037 2.33600120000000011 13.1001292149678008 1.49359743816754009 5.97270551694576035 1.99297153916261993 0.204431000000000002 0.351949200000000018 -0.0259663540000000005 -0.182982119999999998 -0.316620740000000012 -0.272426000000000001 -0.383867530000000012 0.0083238419999999997 0.151696620000000004 0.513669500000000001 131 0 131 0 1.34719480000000003 147.876007 1.14843090002788006 0.569830260925654031 31 false 0.0477456149999999982 1.51764904529436007 0.208018220698832995 0.0576720100000000027 15 9 1.95708820000000006 0 15 false 132 134.298906120108995 1.21065324292760002 110.931 20.3681850000000004 13 62.0230576461224032 11.1892925585168008 5.54307200000000044 20.870004999999999 13 186.971299662831996 14.9150673411424997 12.5357330000000005 19.0824829999999999 1.8540312000000001 0 1.78752139999999993 0.501819600000000032 1.28570180000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.058862457409987 -63.3815244037474983 22.3432626857279004 -13.0169836437335995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352827675372544 2481352827675372544 1382858131 2015.5 25.4199491825817994 0.269912892476188992 -3.3707842379148798 0.215337401659185995 1.6697393368225899 0.328275981160335018 5.0863889999999996 -0.241121823742593 0.523200027894537012 -13.7100551288021997 0.393674843814335984 0.0942212199999999944 0.46313542000000002 0.0727364999999999956 0.0867212339999999943 -0.192944060000000001 0.0473765020000000009 0.240879819999999994 -0.0472999500000000003 0.0941048899999999966 0.174036980000000008 176 0 170 6 1.30399189999999998 189.108994 0 0 31 false 0.258570199999999972 1.26950140789191002 0.0688772480876073956 -0.0133159860000000001 20 10 0.469194049999999974 0 20 false 169 422.472944536187981 1.33611346394514996 316.195007 19.1238689999999991 15 117.262301702800002 12.8963662640543006 9.09266200000000069 20.1784919999999985 16 539.842924994619011 11.1539273290915002 48.399357000000002 17.9312520000000006 1.55537820000000004 0 2.24724000000000013 1.05462269999999991 1.19261740000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.911801979710987 -63.3797321344071989 22.2987422661528996 -12.9673540760594008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352896394850432 2481352896394850432 589290950 2015.5 25.4141341873364013 0.568962267477940986 -3.36103759912750988 0.446391229407837986 0.609751619269625955 0.70206972822392899 0.868505799999999994 7.66426095335785984 1.15098396290025007 -9.10706627564229976 0.804271115423628946 0.0852938000000000029 0.408362700000000023 0.176367200000000002 0.0577938799999999989 -0.196542250000000002 -0.00449852970000000005 0.227064459999999996 -0.0962960399999999994 0.147298490000000004 0.115358180000000005 168 0 166 2 2.37464299999999984 206.692993 1.4953597075865499 1.44522248266830999 31 false 0.0605398499999999992 1.39804164066179992 0.14476615672170301 -0.040272266000000001 19 10 1.02239039999999992 0 19 false 163 177.258389368378005 1.22002829649006994 145.289993 20.0668490000000013 14 97.261793559553098 9.10377983227867915 10.6836719999999996 20.381533000000001 13 184.982564410511998 9.76665408826099046 18.9402180000000016 19.0940930000000009 1.59227650000000009 0 1.28743929999999995 0.314683900000000016 0.972755429999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.890726312905002 -63.373447580856002 22.2968923455084003 -12.9561538732873007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352930756660096 2481352930756660096 1314493718 2015.5 25.4162732451540982 5.84824000374389996 -3.35215982577313998 4.82579059661911991 \N \N \N \N \N \N \N -0.573666499999999968 \N \N \N \N \N \N \N \N \N 41 0 40 1 3.33472439999999981 69.9078979 6.84629815074270986 3.86347406581425012 3 false 0.00853947700000000018 \N \N 0.0594258230000000026 5 4 9571.61100000000079 0 5 false 41 60.4561189458952981 2.64099082826405995 22.8915005 21.2347660000000005 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.886474933760013 -63.3645176740379981 22.3022874824616011 -12.9486886480260992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353033833808896 2481353033833808896 1129653748 2015.5 25.4349575248493984 0.411283829191677996 -3.33826703760224008 0.320182061951444996 2.13459837343535996 0.500827845774297953 4.2621399999999996 24.7893037743771991 0.787458923430513047 -5.44608876789954977 0.571762681274304962 0.062735810000000003 0.468740549999999978 0.0908524500000000013 0.101988529999999994 -0.243192989999999998 0.098212234999999995 0.276153450000000023 -0.0711235300000000042 0.0585257750000000021 0.194936649999999989 177 0 174 3 3.36685180000000006 237.925003 1.57663627050427002 3.82431166235214004 31 false 0.114505609999999994 1.23160714306914998 0.100754034228507997 -0.0177771299999999986 20 10 0.70793735999999996 0 20 false 173 314.426647097133014 1.38782738878184997 226.559998 19.4445669999999993 18 64.1334865152789035 7.71740027742340029 8.3102450000000001 20.8336749999999995 18 467.671821486229987 14.1479343907677997 33.0558359999999993 18.0870670000000011 1.6913494 0 2.7466086999999999 1.38910869999999997 1.35750009999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.910614629130009 -63.3439331956943974 22.3253333336854993 -12.9426498231956 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355988771308672 2481355988771308672 1190877365 2015.5 25.4243549340373001 0.133229581201325997 -3.33754439701939987 0.100379116306008001 -0.0748460764873332962 0.156300607547668002 -0.478859780000000013 -0.982388752944088006 0.254707703567678023 -14.4691039803701003 0.205423982321924992 0.0431020260000000016 0.48533084999999998 0.0644799800000000062 0.0294645169999999991 -0.188459159999999987 -0.00717199870000000041 0.0459767469999999984 -0.0433625799999999978 0.0821109000000000006 0.192781520000000012 169 0 168 1 0.480892900000000012 171.147995 0 0 31 false 1.1028233999999999 1.58180725578346992 0.0336562370082567966 -0.0203038570000000015 19 10 0.232627210000000001 0 19 false 168 1284.59990053446995 1.87557551852059001 684.909973 17.9164470000000016 17 777.413655152296997 5.21244729498028025 149.145610000000005 18.1247579999999999 17 804.193038608613961 4.75866328433573038 168.995569999999987 17.4985199999999992 1.23120570000000007 0 0.626237869999999974 0.20831108000000001 0.417926799999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.888637167348008 -63.3478514832941997 22.3155109174144997 -12.9380765942311005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352591452853248 2481352591452853248 1152635686 2015.5 25.4454975133436001 4.0030438548739804 -3.37841895535685 2.05784748560295006 \N \N \N \N \N \N \N -0.342577929999999975 \N \N \N \N \N \N \N \N \N 88 0 87 1 44.185299999999998 2940.1001 15.2156028921006996 220.008160764089013 3 false 0.00415744300000000025 \N \N -0.2566137 17 10 6.45381360000000015 0 21 false 178 343.831848644859008 5.09479683083298962 67.4869003 19.3475000000000001 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.970488780553012 -63.3755897419123002 22.3201830927105007 -12.9838529351636005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352655876681216 2481352655876681216 1021397175 2015.5 25.4354519911900994 0.563049269669224972 -3.36721743930955997 0.465124045742570991 0.447917648524950973 0.676849118926872051 0.661768849999999964 1.91833762251134998 1.07677191337527001 -18.7986316810390015 0.830549790483909978 0.246381240000000001 0.489481100000000002 -0.0364282760000000025 0.131348770000000004 -0.0210263600000000009 0.0301212070000000005 0.246761869999999994 0.0183146110000000015 0.152362439999999988 0.18199499999999999 148 0 147 1 -0.306351130000000027 136.25 0 0 31 false 0.0676374700000000051 1.45845421506431006 0.15158612690013501 0.0120732860000000008 17 10 0.965424060000000028 0 17 false 147 174.789022113382003 1.0712960635814599 163.156998 20.0820800000000013 11 49.5086738952156011 5.27150529919112021 9.39175200000000032 21.1146850000000015 13 173.053662216720994 9.98757249988753948 17.3268990000000009 19.1664679999999983 1.27331979999999989 0 1.9482174000000001 1.03260419999999997 0.915613200000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.939504717971005 -63.3698278147646974 22.3148541489009986 -12.9697436646311992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379765710407040 2481379765710407040 729782230 2015.5 25.6430181714008008 4.57903265904386991 -3.18975524494072005 8.5374282092323206 \N \N \N \N \N \N \N -0.875682650000000007 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.280394699999999997 44.9626999 0 0 3 false 0.0165619549999999997 \N \N -0.1634052 6 5 86.4450760000000002 0 6 false 50 80.3696456584237069 1.68879279230401003 47.5900002 20.9256360000000008 6 58.1009762640856025 16.3601636157579016 3.55136900000000022 20.9409300000000016 5 58.3726909323718033 9.16463589900273057 6.36934100000000036 20.3463950000000011 1.44922459999999997 0 0.594533899999999949 0.0152931209999999998 0.5792408 \N \N 0 \N \N \N NOT_AVAILABLE 152.183165406937007 -63.1200202047510999 22.5795751406665985 -12.8810608116171004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352660172329728 2481352660172329728 1317021457 2015.5 25.4383455516809001 0.0338396979350810978 -3.36736095701182991 0.0229639980494425015 0.671693446157364038 0.0370697826823263021 18.1197030000000012 27.4062434802647985 0.0600799170362235971 3.69358427376463982 0.0461469918684491026 0.0852534249999999938 0.559441999999999995 -0.140725729999999993 0.0801882599999999973 -0.0481088569999999979 0.0477474369999999967 -0.0369406899999999982 0.0399679360000000025 0.0865414199999999939 0.17291709999999999 158 0 158 0 -0.297350349999999986 147.207001 0 0 31 true 32.0068049999999999 1.6256001802731499 0.00847093369293942973 -0.0184955930000000011 18 10 0.0623471300000000006 0 18 false 157 26117.059502604101 10.0216237079060004 2606.07007 14.6460550000000005 17 14702.8804031932996 32.6898595051013032 449.768860000000018 14.9328819999999993 16 16930.2066667129984 36.5045330859868002 463.78370000000001 14.1902650000000001 1.21120399999999995 0 0.742617599999999989 0.286827100000000002 0.455790519999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.945453931955001 -63.3687083110352987 22.317555313404501 -12.9709418610125002 100001 6184.1499 5652.83984 6578 0.304500014 0.166899994 0.6153 0.151500002 0.0763999969 0.246999994 200111 1.30635140000000005 1.15460190000000007 1.56345960000000006 2.24871679999999996 1.96144509999999994 2.53598860000000004 +1635721458409799680 Gaia DR2 2481351835538609024 2481351835538609024 1168434449 2015.5 25.4661166614671011 0.0767087764205020006 -3.37983223325388993 0.0529658767383658011 0.302994090843781982 0.085925729960401806 3.52623249999999988 6.40217209317984981 0.149772718842091007 -7.4043396294569801 0.100206869590478004 -0.0238567299999999996 0.457860299999999998 -0.117380810000000002 0.0871468559999999948 -0.227014419999999995 0.0709930059999999974 0.140656019999999993 0.0204217270000000006 0.0754790600000000006 0.128009420000000013 178 0 178 0 -0.376496459999999977 165.442993 0 0 31 false 3.72161870000000006 1.59327856790597999 0.0183181651112200999 -0.0505328329999999992 20 10 0.137554850000000006 0 20 false 178 3524.65034011896978 3.19730979234384982 1102.38 16.8205759999999991 18 1829.01570604714993 11.2166476017620003 163.06259 17.1958449999999985 17 2494.51557204534993 12.8565218771828 194.027250000000009 16.2694550000000007 1.22665540000000006 0 0.926389699999999983 0.375268939999999995 0.551120759999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.013249317825995 -63.3679502023356989 22.3392849505303985 -12.9927534972208996 100001 5317.25 5002 5445.3999 0.493000001 0.230000004 0.66049999 0.239299998 0.114 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352690238576640 2481352690238576640 449607541 2015.5 25.4672465361798999 1.78889162621542996 -3.36037204237875997 1.67774948571356997 -4.64029995789419036 2.6432905604013901 -1.75550129999999993 -0.315484082448437009 2.84302155972773996 -20.5109971981028991 4.06826022438592005 -0.344382520000000025 0.724240400000000006 0.362126950000000003 0.0581101399999999976 -0.67025570000000001 -0.576467900000000033 -0.643312450000000036 0.400065930000000014 0.454337570000000024 0.526301099999999966 87 0 86 1 -1.16265649999999998 66.498497 0 0 31 false 0.0231393519999999984 1.38275183475113006 0.366038178537945014 -0.0279244909999999992 12 8 4.24535939999999989 0 12 false 90 82.2240364746083969 1.23064926093606997 66.8134995 20.9008700000000012 9 35.9119474765814033 6.91255582191606965 5.19517659999999992 21.4632910000000017 10 97.7347041749377041 7.69003797465903016 12.7092620000000007 19.786798000000001 1.62539640000000007 0 1.67649270000000006 0.562421799999999972 1.11407089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.996715219044006 -63.3499222927720993 22.3477212123403 -12.9750788428194994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352969409974784 2481352969409974784 944909785 2015.5 25.4404315520939015 0.0463892380017393996 -3.34922654193234015 0.0310963849728350013 0.607072291334535996 0.0537260518990078026 11.2994020000000006 1.37196721781073006 0.0799316921454430035 5.49076589093176981 0.0615053343170251995 0.0887658300000000039 0.584120799999999996 0.0311300769999999991 0.0542367180000000032 -0.0654139999999999999 0.00676467099999999988 0.0190412159999999997 -0.0322520729999999992 0.08404557 0.180309180000000013 166 0 166 0 -0.256933299999999976 155.779999 0 0 31 true 13.3348759999999995 1.6068527467887701 0.0113084210597113998 -0.000805312359999999948 19 10 0.0777808900000000053 0 19 false 166 11220.1447254240993 7.12827698403200039 1574.03003 15.5633700000000008 18 6167.52296825071971 15.7780400934837992 390.89285000000001 15.8761109999999999 18 7440.61591550489993 13.4933981433770995 551.426399999999944 15.0828980000000001 1.21283089999999993 0 0.793212899999999999 0.31274128000000001 0.480471599999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.932157378786997 -63.3514558092062998 22.3264009135240009 -12.9548519242715994 100001 5804.91016 5661.83008 6035 0.0599999987 0.0170000009 0.2861 0.0299999993 0.00889999978 0.129299998 200111 1.08322000000000007 1.00219630000000004 1.13865789999999989 1.20035610000000004 0.969264450000000055 1.4314479 +1635721458409799680 Gaia DR2 2481353171272762624 2481353171272762624 1226066507 2015.5 25.4732161417475993 0.380975956411974015 -3.33659693992512985 0.287814748478956994 2.17362709780802987 0.46085003398636798 4.71656039999999965 -1.37943514683012003 0.782237560050640046 -15.1884714874707996 0.522955430429182022 0.0682128500000000054 0.392206160000000026 0.250674520000000012 0.034465889999999999 -0.12968244000000001 -0.0266952249999999995 0.272836330000000016 -0.163581900000000002 0.15415682 0.0427205449999999987 163 0 163 0 1.58478300000000005 187.132004 0.547204900288335017 0.414431717043053982 31 false 0.145751710000000007 1.23442815491313995 0.0943842736689699952 -0.0234835000000000009 19 10 0.696937699999999993 0 19 false 163 301.489494528453974 1.4585561010202801 206.703995 19.4901850000000003 18 50.9235170741411025 7.82114177816345979 6.5110083000000003 21.0840929999999993 17 429.970322241137978 9.1232237119399695 47.1292100000000005 18.1783239999999999 1.59505999999999992 0 2.90576930000000022 1.59390830000000006 1.31186099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.985743393918995 -63.3259112406434994 22.3623967371534995 -12.9551730621064998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157870519974400 2481157870519974400 1331314081 2015.5 25.4820067762410005 0.113942188533391997 -3.45739515454607993 0.0907759848345447984 1.02003011068533 0.14001704447626101 7.28504229999999975 -1.42768771794420002 0.226956613061630008 2.24727824398067 0.165414073254087995 0.0578593719999999992 0.410170970000000024 -0.00811285699999999936 0.0857955600000000068 -0.25467873000000002 0.0176618940000000009 0.125369940000000013 0.0278097339999999991 0.147692010000000012 0.173403959999999996 183 0 182 1 1.44786330000000008 204.927002 0.0999530040028863004 0.122215266062142003 31 false 1.32546629999999999 1.4817567062625201 0.0277816993172136997 0.0162262859999999995 21 10 0.205091830000000003 0 21 false 181 1443.68147024894006 2.07201783496548986 696.750977 17.7896880000000017 19 501.803445408561004 9.99419853936364078 50.2094730000000027 18.6000540000000001 20 1366.14469181969002 9.50119880778470005 143.786560000000009 16.9231780000000001 1.29387830000000004 0 1.67687610000000009 0.810365699999999967 0.866510400000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.120353815507997 -63.4309394407403033 22.3250743903337998 -13.0707017652920001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157836160340096 2481157836160340096 224359691 2015.5 25.5004174978360005 0.526396132234074998 -3.45671562029203017 0.492585160048039983 0.239029307886514997 0.693961665498947 0.344441649999999988 -1.58949879735038002 1.25583043469076006 -1.25405834996462007 0.842538395859662947 0.221993949999999995 0.0977985900000000047 0.239891589999999988 0.0555408599999999975 -0.267668520000000021 0.0482286499999999979 0.303589900000000024 -0.21698176999999999 0.168783369999999988 0.0898024699999999954 165 0 165 0 0.875077400000000005 175.460007 0.791993721455912958 0.368422492828081982 31 false 0.0602551139999999985 1.3552510352629199 0.139271767418753994 0.0398380350000000008 19 9 1.11926400000000004 0 20 false 167 155.142321420002986 1.52737030028808007 101.574997 20.2115399999999994 17 121.069510629050001 9.38521527600427952 12.9000240000000002 20.1437999999999988 17 99.161808607114807 7.89153332587075962 12.5655950000000001 19.771059000000001 1.41954369999999996 0 0.372741700000000009 -0.0677394899999999994 0.440481200000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.156681921733991 -63.4223322051780016 22.3428693069205018 -13.0768440768834004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157526922587904 2481157526922587904 472420254 2015.5 25.5117420342144996 0.130066818151440999 -3.47779567024986003 0.118425039456308001 0.641675125756477005 0.157746977790287013 4.06774900000000006 1.25050293388970002 0.272330363501032013 -5.57927055128048011 0.219141055290309 0.233317699999999989 0.338673859999999993 -0.0147515819999999992 0.0848756600000000055 -0.140299170000000001 -0.00107831450000000009 0.108256210000000005 0.0323530659999999998 0.190952869999999997 0.217540860000000003 167 0 166 1 1.02362540000000002 179.358002 0.0544744535828066007 0.0244485944575534991 31 false 0.951141360000000047 1.52593059269317011 0.0348749336476767008 0.076655223999999994 19 10 0.25019619999999998 0 19 false 164 1106.05175757430993 1.90721826169616993 579.929016 18.0789280000000012 18 454.281174355047028 10.6839792358594998 42.5198480000000032 18.7080759999999984 16 947.299278297865953 8.81539466812101935 107.459655999999995 17.3207020000000007 1.26719249999999994 0 1.38737489999999997 0.629148499999999999 0.758226399999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.199958670714011 -63.4363829337745031 22.3456804996987017 -13.1006063798447006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368082048 2481156805368082048 680500812 2015.5 25.5250443055754985 0.289269202551296012 -3.4778346874100099 0.312188737300506003 -0.165849855054320011 0.342235937415352021 -0.48460677000000002 -0.910126630866643027 0.621487468524668962 -3.80702480203165017 0.543656853627492054 0.367670119999999989 0.259131820000000013 0.0533314159999999995 0.18119616999999999 -0.104511514 0.0911016760000000064 0.345265749999999982 -0.0239693989999999989 0.157075169999999986 0.244516490000000003 144 0 142 2 0.0828922200000000026 137.707001 0 0 31 false 0.209091709999999986 1.57109758565202995 0.0808737852793857959 0.0908935139999999947 17 9 0.587296299999999993 0 18 false 140 349.972736572090014 1.65315132999424996 211.699997 19.3282799999999995 13 166.254556080459992 7.0158746400966896 23.696909999999999 19.7994540000000008 13 257.030876264649009 8.90132435310082037 28.8755759999999988 18.7369580000000013 1.20948110000000009 0 1.0624962 0.471174240000000022 0.591321949999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.226713410074012 -63.4306276624009016 22.3583387155568012 -13.1055364224647004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157630001806592 2481157630001806592 787801497 2015.5 25.5105118985061985 0.294231520742975983 -3.45425560377044016 0.240040537862407005 0.72222988619737305 0.352082532793651981 2.05130839999999992 7.0681974884048504 0.663291752446219962 -15.2196443783040003 0.414549140641509994 0.217165069999999988 0.26032913000000002 -0.164997969999999994 0.125113830000000009 -0.0894878800000000058 0.00920066299999999955 0.248192300000000005 0.0954675450000000009 0.191945029999999989 0.108464329999999998 167 0 166 1 1.98601770000000011 198.563995 0.604225997186368047 0.730160978734177957 31 false 0.205527110000000013 1.55351160974235003 0.0749076102154404982 0.0435075279999999967 19 10 0.587322829999999962 0 19 false 166 378.804984918341972 1.21299224050584997 312.290009 19.2423269999999995 16 147.734760398389994 9.20772838688590056 16.0446470000000012 19.9276809999999998 17 332.91637027818399 14.3432774290313994 23.2106199999999987 18.4560810000000011 1.26886169999999998 0 1.47159960000000001 0.685354229999999953 0.786245349999999954 \N \N 0 \N \N \N NOT_AVAILABLE 152.174559334456006 -63.4157301594269995 22.3534162271321009 -13.0782709776310995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163711675499520 2481163711675499520 1337774177 2015.5 25.5103301112973 0.180566625629233007 -3.44543883543509999 0.139060640585900008 0.362598521606108004 0.226700808701943007 1.59945849999999989 1.51468472496139994 0.34459219029895799 -8.9809456218296404 0.244743456615547 -0.0102791940000000002 0.472631999999999997 0.0123680084999999995 0.0832652799999999971 -0.313568979999999997 -0.00568704349999999987 0.161057800000000001 0.0476659499999999986 0.145563529999999997 0.154895320000000003 176 0 176 0 2.53602499999999997 221.524002 0.198072568011691014 0.218787997297577003 31 false 0.593309799999999998 1.41470576850595009 0.0449632462296910979 0.00171080119999999993 20 10 0.307427229999999996 0 20 false 176 773.995456805198955 1.76966360985383009 437.368988 18.4665199999999992 16 240.845306024985007 16.4501292770058996 14.6409369999999992 19.397043 15 840.106250233696983 18.8892321717215985 44.475406999999997 17.4510840000000016 1.39658639999999989 0 1.94595910000000005 0.930522900000000042 1.0154361999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.165615551052014 -63.4078724105261031 22.3565789455299999 -13.0700079634687008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163746035361792 2481163746035361792 508289993 2015.5 25.5215928124227993 0.895187636585358049 -3.4371851541136702 0.654962232903740005 5.02322242997539981 1.25142293693303008 4.01400850000000009 -17.7580133909050986 1.16920123283273991 -61.1148933280985034 0.977235346545162975 -0.21103733999999999 0.765201750000000014 0.212690679999999993 0.126243999999999995 -0.48309713999999998 -0.000104933750000000005 0.312670100000000006 0.113484829999999995 0.0903887450000000064 0.238645639999999992 137 0 136 1 2.13000400000000001 167.802994 1.34034083100365997 0.874127080245890031 31 false 0.0543676729999999983 1.31104972896993011 0.158389848669988009 0.00856115200000000069 16 9 1.25895500000000005 0 16 false 136 163.058901680840989 1.54010500130349004 105.875 20.1575050000000005 9 38.823056045007803 12.7893098306899997 3.0355865999999998 21.3786640000000006 10 287.417922693622984 6.97548916297203014 41.2039800000000014 18.615635000000001 2.00075529999999979 0 2.76302899999999996 1.22115900000000011 1.54187009999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.180189843085003 -63.3955462586630034 22.3704304936998994 -13.0664782841645994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163436797588608 2481163436797588608 1496778633 2015.5 25.5305909012858017 0.38077970590711302 -3.46495076787401013 0.381827113693270992 0.68963441858029495 0.461328470931835988 1.49488810000000005 -0.0933297459763813009 0.75053890528779299 -2.05074799939034014 0.650219921220461017 0.361407130000000021 0.385185200000000005 0.0665110800000000002 0.162296770000000007 -0.0391309339999999992 0.0344059430000000013 0.242599399999999993 0.00581375139999999995 0.230376479999999995 0.237629040000000014 152 0 151 1 3.24116399999999993 207.839005 0.727918685877066984 0.589438038011125043 31 false 0.123426610000000006 1.71718493435239994 0.101749599742130006 0.127220820000000012 18 9 0.70212960000000002 0 18 false 150 270.129017831734018 1.56464451041933006 172.645996 19.6094380000000008 9 175.603156684831987 17.463118709875701 10.0556579999999993 19.7400570000000002 12 203.297392627986994 11.9331654033529002 17.0363350000000011 18.9915899999999986 1.40266510000000011 0 0.748466500000000035 0.130619049999999987 0.617847440000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.225285059972009 -63.4166191309439 22.3684980430966007 -13.0955997273216003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163471157328896 2481163471157328896 1667660371 2015.5 25.5490044486157011 0.285914565300453005 -3.45523248572128994 0.21818587916160101 2.19327810086522978 0.353003301256267998 6.2131943999999999 9.21932480330579018 0.569809786767034976 -6.97276811406621988 0.394965220436144016 -0.0716871899999999979 0.424718859999999976 0.213928040000000014 -0.0035222719999999999 -0.325360629999999984 -0.0877292199999999966 0.166196079999999996 -0.0362707079999999987 0.168170939999999991 0.0526271430000000012 149 9 149 0 3.87512759999999989 219.397995 0.820269595894719039 2.33020205833366001 31 false 0.314121570000000017 1.2427959236450401 0.0669557547454345953 -0.0431214899999999984 17 10 0.483347120000000019 0 17 false 147 570.60449401532901 1.76875706968134994 322.60199 18.7975269999999988 12 100.138350968189002 7.60601936471331008 13.1656709999999997 20.349888 11 799.217361505311032 19.0576816958433 41.9367560000000026 17.5052589999999988 1.57614549999999998 0 2.84462929999999981 1.55236050000000003 1.2922688 \N \N 0 \N \N \N NOT_AVAILABLE 152.25275348018701 -63.3998535595433026 22.3897174978460995 -13.0933381457343998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163647251398400 2481163647251398400 1630473781 2015.5 25.5392378317851012 0.0537130218408223975 -3.43433287845796009 0.0430055077975744979 2.73082487937204998 0.0626077644087325025 43.617992000000001 -9.6667513262042899 0.107282500097385006 -6.21444181772609028 0.0924581970112983986 0.0808747799999999933 0.439580299999999979 -0.161692859999999994 0.0183106159999999983 -0.248958440000000003 -0.115036669999999994 -0.267304719999999996 0.145298759999999999 0.210981370000000001 0.306987400000000021 134 0 134 0 0.924086199999999969 143.701996 0 0 31 true 9.54392999999999958 1.41420880993777009 0.0140810511511038003 0.0388161299999999973 15 10 0.109529874999999999 0 16 false 134 7901.01272704708026 5.84755989921251018 1351.16003 15.9441590000000009 16 2469.80851169549987 29.0446694407048014 85.0348299999999995 16.8697300000000006 14 8125.57621688103973 16.1005420153825014 504.677200000000028 14.987285 1.34101599999999999 1 1.8824453000000001 0.925571440000000023 0.956873900000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.212806263870988 -63.3853024284208999 22.3883187474858012 -13.0703168570322994 100002 3817 3786.66992 4023.93994 0.0149999997 0.0103000002 0.0259000007 0.00800000038 0.00490000006 0.0154999997 200111 0.642279570000000022 0.577918400000000054 0.652610840000000025 0.0788917539999999945 0.0750291939999999935 0.0827543139999999955 +1635721458409799680 Gaia DR2 2481163574236545664 2481163574236545664 37487756 2015.5 25.5566524538705018 0.086230162159292606 -3.44850985971245994 0.0677032675877538986 0.470400275514715027 0.106852920421230999 4.40231559999999966 25.0346500446792994 0.170370991763053009 -10.4097349306934994 0.133284400209855991 -0.0558614730000000018 0.448137430000000003 0.0382579570000000022 0.00854166399999999916 -0.347058980000000017 -0.0787976900000000036 0.0171791999999999986 0.0397327400000000025 0.149498219999999987 0.159914730000000005 169 0 167 2 0.377647730000000015 168.209 0.0332246866924935033 0.0247965879643174993 31 false 2.71041940000000015 1.62549482268877998 0.0216751883060217997 -0.01628427 19 10 0.15613724000000001 0 20 false 164 2621.43658964350016 3.14644400699439997 833.143005 17.1420169999999992 15 1423.23402713249993 20.572943488421199 69.1798900000000003 17.468197 15 1771.60074996405001 8.52195679258372074 207.88660999999999 16.6410049999999998 1.2187344 0 0.827192299999999991 0.326179500000000011 0.501012800000000036 \N \N 0 \N \N \N NOT_AVAILABLE 152.261533892079996 -63.3904721065579011 22.3995469604578012 -13.0899012246522997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162822617233280 2481162822617233280 1663064566 2015.5 25.5664727249920993 8.47362455433587947 -3.44712360151945996 4.0331180885344704 \N \N \N \N \N \N \N 0.798348399999999958 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.53921930000000007 47.4996986 3.34269065305513013 1.31653311768932002 3 false 0.0199146200000000009 \N \N 0.182898179999999994 5 5 28.2778069999999992 0 9 false 43 96.130332398602107 1.9733749949571 48.7136993 20.7312149999999988 3 170.808203401973003 29.0816755852992017 5.87339639999999985 19.7701169999999991 4 283.733055749272012 24.7644930126351994 11.4572524999999992 18.629643999999999 4.72838539999999963 0 1.14047239999999994 -0.961097700000000055 2.1015701 \N \N 0 \N \N \N NOT_AVAILABLE 152.279866326903004 -63.3849428033212021 22.4094274548968997 -13.0922238927212007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162818322301824 2481162818322301824 1006931154 2015.5 25.5666303385641989 1.36228662255875999 -3.44707290025885982 1.5746668262877499 \N \N \N \N \N \N \N 0.170641619999999994 \N \N \N \N \N \N \N \N \N 86 0 81 5 10.2544979999999999 283.878998 5.08966932606382993 6.17267499654922958 3 false 0.0163755600000000008 \N \N 0.136587950000000014 10 8 4.15526000000000018 0 11 false 88 114.306178359330005 1.4421500126276201 79.2609024 20.5431920000000012 8 59.3293013528370992 15.5015086121096992 3.82732440000000018 20.918215 7 267.696150398112991 10.6129064370384008 25.2236420000000017 18.6928139999999985 2.86096050000000002 0 2.22540100000000018 0.375022899999999992 1.85037800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.280132749855994 -63.3848284487914029 22.4095967980661008 -13.0922347179986005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163574236546304 2481163574236546304 205544693 2015.5 25.5629061354872 0.897392013893163032 -3.44332303030780018 1.01862834652218992 -0.139398349243052 1.17367386504811 -0.118770940000000005 -3.40474387285425983 2.4666980458770702 -7.29218314645833043 4.15781835070804018 0.267009380000000018 0.293694999999999984 -0.16114908 -0.315230730000000015 -0.355039060000000017 -0.264450430000000014 -0.302115599999999984 -0.0917372199999999943 -0.00355736980000000017 0.689676700000000031 110 0 108 2 -0.363557579999999991 97.2266998 0 0 31 false 0.0301058849999999989 1.42529760848167997 0.301387245904091994 0.118019289999999999 13 8 4.0083120000000001 0 13 false 109 94.8976669872937038 1.72154115780601003 55.1236992 20.7452280000000009 11 76.2838308823027944 13.8958604836491997 5.48968029999999985 20.645308 12 61.5073101470120989 8.87035301681691024 6.9340320000000002 20.2896019999999986 1.4519972000000001 0 0.355705260000000023 -0.0999202700000000055 0.455625530000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.269011902393004 -63.383079632124101 22.4074669286177013 -13.0873790551508993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163608596285696 2481163608596285696 843529582 2015.5 25.5608481077872014 0.211485955362500005 -3.43500545640889987 0.167061919658273994 0.146115409942947999 0.261666750796585024 0.558402660000000051 4.47189284791778974 0.419191009088483002 -3.25855489199275006 0.316080269468291986 -0.0468922069999999983 0.412104279999999989 -0.0232737470000000009 0.0564765740000000016 -0.347205099999999989 -0.0031228813000000002 0.0459969159999999988 0.0355996900000000033 0.131450380000000006 0.168005690000000013 168 0 166 2 1.24641819999999992 183.688995 0.42023640592956002 0.706013845236489024 31 false 0.419875439999999989 1.68418072926915996 0.0551664245629973973 -0.0296175829999999994 19 10 0.37520224000000002 0 19 false 165 658.320330248531036 1.84206224941514995 357.381989 18.6422729999999994 16 336.436559792723983 8.91709932508969949 37.729374 19.0341300000000011 17 499.668502391783022 12.9928737007167996 38.4571200000000033 18.0152150000000013 1.27005799999999991 0 1.01891519999999991 0.391857149999999987 0.627058000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.256780147281006 -63.3764945134660991 22.4086520995595002 -13.0788896726062003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162474725018368 2481162474725018368 1345442893 2015.5 25.5884550947572009 1.10372886953162008 -3.48051324390677985 1.24486371385370997 \N \N \N \N \N \N \N 0.218859300000000007 \N \N \N \N \N \N \N \N \N 95 0 94 1 1.60624400000000001 111.419998 2.16644810394253007 0.676776358114928978 3 false 0.0192324279999999993 \N \N 0.0688560399999999934 12 8 4.75864799999999999 0 12 false 97 84.1732284171636991 1.12981786078664004 74.5016022 20.875430999999999 8 56.7212071089004013 9.61138229764645047 5.90146200000000043 20.9670239999999986 10 64.4689172146488971 9.94899927852054056 6.47994000000000003 20.238544000000001 1.43977050000000006 0 0.728479399999999999 0.0915927899999999934 0.636886599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.35654436736101 -63.4053672065480995 22.4177424371975 -13.1313486664428005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162440365174656 2481162440365174656 1612224417 2015.5 25.5792053420909014 0.705617453069790956 -3.47446870475922998 0.801032408241348026 0.896773438501353048 0.919357659698574969 0.975434800000000046 -11.4094879281503996 1.61809665297064997 -66.3012443377419061 2.25787345914985016 0.23581162 0.358947159999999987 -0.0930146800000000024 -0.201050759999999995 -0.36419994 -0.365285130000000013 -0.498929920000000027 0.110968499999999998 0.235575349999999989 0.580158770000000046 140 0 138 2 1.12422650000000002 151.462997 1.18607802223268011 0.47169037285374299 31 false 0.0398584749999999974 1.59918842317115995 0.210421958099764994 0.07043431 17 9 2.25182819999999984 0 17 false 139 124.302268029372001 1.19427539469127009 104.082001 20.4521680000000003 11 58.4885667754283034 15.4839226770824006 3.77737400000000001 20.9337100000000014 11 159.475755033360997 11.9958277700124007 13.2942689999999999 19.2551839999999999 1.75350239999999991 0 1.6785258999999999 0.481542599999999987 1.19698330000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.332091309374988 -63.4039756965184012 22.4112153619299015 -13.1223278994773001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162543444390272 2481162543444390272 1468168913 2015.5 25.597424303685699 0.367720235265454998 -3.47150380187113994 0.329097509455155979 0.188235407734907989 0.500225774304505988 0.376300899999999994 -0.944520465025884048 0.789186717303620999 -3.29521923672432981 0.675480296809670033 0.0562774050000000026 0.312156739999999988 0.145971829999999997 -0.0421131599999999967 -0.407694639999999997 -0.150179979999999991 -0.19795407000000001 0.00495930999999999976 0.284278099999999978 0.244583949999999994 147 0 147 0 1.84478059999999999 174.645996 1.00483547252770999 1.44384439843543011 31 false 0.145449040000000002 1.63715558296096009 0.098251207848254099 0.0244666229999999998 17 9 0.737824440000000026 0 17 false 147 327.242377518736987 1.47311932472705998 222.141998 19.4011920000000018 12 237.969639680032998 13.1775846234151999 18.0586680000000008 19.4100840000000012 12 210.637325281389991 9.53141144449072009 22.0992800000000003 18.953081000000001 1.37087059999999994 0 0.457002640000000016 0.00889205900000000077 0.448110579999999981 \N \N 0 \N \N \N NOT_AVAILABLE 152.365702642101013 -63.3933462029689991 22.4296969038045013 -13.1262707850733999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163986553408896 2481163986553408896 1155385798 2015.5 25.5718595994194011 0.249362904762155002 -3.42917855531355009 0.202225907964036999 1.03027424513034993 0.317623533105412026 3.24369620000000003 7.35919441569536037 0.492973198197139972 -5.59310755554279027 0.381586738148535998 -0.0208775099999999984 0.437537549999999997 0.0221131900000000013 0.0420665849999999966 -0.35962048000000002 -0.0248002800000000009 0.0722752499999999992 0.0276424070000000008 0.128071469999999993 0.194434689999999993 174 0 173 1 3.58119630000000022 241.714996 0.827288192074770001 2.25648202162490019 31 false 0.290397760000000005 1.36210473961447009 0.0638695575959151024 0.00395193460000000003 20 10 0.444118349999999995 0 20 false 171 556.953854865079961 1.73102507387577997 321.747986 18.8238179999999993 18 160.876355809654001 7.48739767195425987 21.4862840000000013 19.8351569999999988 17 621.310704493542971 8.25318242243369049 75.2813500000000033 17.7786480000000005 1.40440190000000009 0 2.05650900000000014 1.0113392000000001 1.04516980000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.273162855363012 -63.3664518805897998 22.4213466402073998 -13.0775217397738004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163234934280320 2481163234934280320 1057182072 2015.5 25.5922244582177996 1.24690680336821003 -3.43676881657074995 1.17790915283181996 0.474812360706057979 1.84974285090514989 0.256691000000000003 -1.46818135417477991 1.92053065712601989 -3.35060350066564983 2.77906439125982985 -0.315497000000000027 0.757443960000000027 0.145433430000000002 0.151696040000000004 -0.619475899999999968 -0.462402020000000025 -0.645501259999999966 0.320367840000000015 0.404314549999999995 0.594943760000000044 116 0 115 1 -1.35030770000000011 90.5756989 0 0 31 false 0.0299077090000000011 1.36254953969355008 0.284572529942349994 0.0150950830000000005 15 8 2.91161370000000019 0 15 false 118 106.393827447689006 1.77447658091979998 59.957901 20.6210750000000012 13 81.9430809050085998 16.0064667697924001 5.11937330000000035 20.5676079999999999 13 76.2505211059626049 7.22178000569737044 10.5584109999999995 20.0563129999999994 1.48686830000000003 0 0.511295300000000008 -0.0534667970000000034 0.564762100000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.321347234358001 -63.3643904183388997 22.4378790543346014 -13.0920661692340001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163166215075072 2481163166215075072 168294759 2015.5 25.5981626764868011 0.0749750545490188991 -3.45206358809031011 0.0589724170689088015 5.13840390472070041 0.0923530046817199052 55.6387300000000025 57.9671433956924034 0.146780989539459006 -31.0715860073325985 0.126596278291991993 -0.0548814129999999969 0.463091199999999981 -0.0712694100000000053 0.0284663850000000003 -0.381759020000000004 -0.0956049340000000025 -0.21820951999999999 0.0896446199999999943 0.177657700000000002 0.289577340000000016 165 0 161 4 6.77893900000000027 307.937988 0.338785144555412976 5.9962972751291499 31 false 3.90652750000000015 1.26992463053478999 0.0184746493769123998 0.00348350750000000001 19 10 0.14360661999999999 0 19 false 161 6437.02742470716021 5.75186620162518025 1119.12 16.1666530000000002 19 1359.58786195143011 9.82617419114843926 138.363900000000001 17.5178699999999985 17 7925.29683292547998 20.760561520751299 381.747700000000009 15.0143810000000002 1.44241810000000004 0 2.50348850000000001 1.35121730000000007 1.1522713 \N \N 0 \N \N \N NOT_AVAILABLE 152.348173772387014 -63.3755474371440002 22.437753039775 -13.1084689166741999 100001 3354 3323 3584.3999 0.187000006 0.100500003 0.647099972 0.0973000005 0.0590000004 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159554148290048 2481159554148290048 1040484981 2015.5 25.6204958577722017 0.549859605211617031 -3.47303545441552997 0.516612508963081973 0.885286775879650989 0.698771783436728966 1.26691829999999994 -20.5155753713526003 0.996110285095973991 -23.5450677959801986 0.858713404213397036 0.242518929999999994 0.497092069999999997 0.106646000000000005 0.198669509999999994 -0.172218619999999989 0.11498121 0.364781619999999973 -0.00560512400000000039 0.130739479999999991 0.268216759999999999 140 0 140 0 3.80156420000000006 206.709 1.6613313957518101 1.94980882715014991 31 false 0.0747956199999999932 1.17577934184595989 0.142403851041812995 0.134179319999999991 16 10 0.952319559999999954 0 17 false 140 214.599582246208001 1.55030770298156995 138.423996 19.859293000000001 11 54.3555655212909983 8.46873195194065076 6.41838300000000039 21.0132790000000007 14 290.126144560212026 11.0427957401947001 26.2728879999999982 18.6054530000000007 1.60523009999999999 0 2.40782549999999995 1.15398599999999996 1.2538395 \N \N 0 \N \N \N NOT_AVAILABLE 152.413408326584005 -63.3846248417805 22.4511025688729013 -13.1361771526489992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159867680178432 2481159867680178432 548088704 2015.5 25.640933577165999 0.0437963890695389976 -3.47233907635391015 0.0378579908650686012 4.19206087328580956 0.0566125734401652994 74.0482300000000038 20.3991940595526984 0.0803369528016425055 -45.9468862720594018 0.0867849091198631961 0.149919780000000002 0.576010169999999988 -0.0863199159999999965 -0.0243358870000000005 -0.247999730000000002 -0.103950520000000005 -0.259973820000000022 0.0287025049999999997 0.0633082400000000017 0.504603400000000035 141 141 137 4 0.194669869999999995 134.511993 0 0 31 true 280.556150000000002 1.56902601729181002 0.0120853415150006006 0.118890986000000004 16 10 0.0603108200000000011 0 17 false 134 194955.08011417801 44.3193791137297026 4398.87012 12.4635300000000004 17 95034.4144290710974 144.11396763125299 659.439330000000041 12.9066860000000005 16 142056.194028186001 91.8261938428507989 1547.01170000000002 11.8807700000000001 1.21612940000000003 0 1.02591610000000011 0.443156239999999979 0.582759860000000018 26.2996133884480017 2.52177347998641999 5 5500 4.5 0 NOT_AVAILABLE 152.453631068888001 -63.3750418865116032 22.4708422119155991 -13.1430426577798993 100001 5118.25 5024.06982 5245 0.0700000003 0 0.275999993 0.0463000014 0 0.134100005 200111 0.874211999999999989 0.832470359999999965 0.907294869999999976 0.472513530000000015 0.464007400000000014 0.481019650000000021 +1635721458409799680 Gaia DR2 2481162994416369536 2481162994416369536 1437666744 2015.5 25.6273313332405017 0.0946800564411073992 -3.44478658691198003 0.0753916296051842932 0.257851341143979007 0.117228530310679993 2.19956139999999989 -0.91024531334285097 0.183412280640497999 -3.75588373257826014 0.137367895784412997 0.101173059999999995 0.462632659999999973 -0.0860626399999999958 0.11488719 -0.25793640000000001 0.0875888900000000026 0.177438129999999999 0.0355030929999999995 0.0776478899999999972 0.257062259999999987 141 0 141 0 1.94312740000000006 169.856003 0.161483380828277012 0.561779029426905052 31 true 2.82831980000000005 1.52383903225438 0.0225925751301955004 0.0670818400000000037 17 10 0.170346439999999988 0 17 false 137 3030.96252486508001 3.51400177626701016 862.539001 16.9844149999999985 15 1467.75906532590989 14.2316244773889995 103.133629999999997 17.4347519999999996 13 2314.50060035393017 13.2712698002641005 174.399339999999995 16.3507770000000008 1.24787409999999999 0 1.08397480000000002 0.450336459999999994 0.633638400000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.399438513169997 -63.3562462389878007 22.4682985876921997 -13.1124264677319999 100001 4919.81982 4381.9502 5155.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162921401516800 2481162921401516800 18743878 2015.5 25.6358657968709984 0.530725136607609005 -3.44783823866570982 0.442703614163617976 1.80057252748265006 0.642155483896709955 2.80395100000000008 -8.54445760391589992 1.00753052264394993 1.98173465592015008 0.722617606934471968 0.163512889999999994 0.454328860000000001 -0.111294955000000001 0.212143439999999989 -0.160857869999999986 0.134277210000000008 0.338745179999999979 0.102250754999999999 0.139161599999999996 0.199517680000000003 122 0 120 2 4.7576236999999999 202.322006 1.66596469181931006 3.28726153985676017 31 false 0.0977501350000000019 1.50830443450102991 0.130831769181285001 0.070898409999999995 14 10 0.907332660000000013 0 14 false 117 287.388174138763986 1.35360011639833999 212.313995 19.5421939999999985 10 76.856214879202696 16.5344971955103013 4.64823439999999977 20.6371900000000004 12 347.214291255619003 9.39910033464873962 36.9412269999999978 18.410425 1.47560179999999996 0 2.22676469999999993 1.09499550000000001 1.13176919999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.419494728158014 -63.3552508476013969 22.4752772986441016 -13.1184007214322005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163093201349504 2481163093201349504 908647154 2015.5 25.6317918753724001 0.747721754249329962 -3.43044110070285013 1.13231116083455996 0.29425631967761201 0.979273581046314012 0.300484269999999998 -3.61930359399427992 1.69258979743055993 -9.27141553956940001 2.75179233508344989 0.475010099999999991 0.149161600000000005 -0.275754060000000023 -0.418220599999999998 -0.462653580000000009 -0.648372529999999947 -0.805106600000000006 0.366872160000000003 0.54816233999999997 0.662578800000000023 119 0 119 0 1.65453800000000006 140.085999 0 0 31 false 0.0497723519999999989 1.22889552104049993 0.214910230781968997 0.167466449999999989 14 8 2.85310079999999999 0 14 false 115 133.722611620000009 1.41824125786985 94.2875977 20.3728540000000002 6 104.336049449067005 14.0865709315912007 7.40677400000000041 20.3053020000000011 7 154.810199576150012 13.8860932435757007 11.1485789999999998 19.2874200000000009 1.93793890000000002 0 1.01788140000000005 -0.0675525700000000062 1.08543400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.394333306498993 -63.3414012441702994 22.4779727209262994 -13.1007285404922005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163024480733056 2481163024480733056 906918443 2015.5 25.6409328260618992 0.473671323168997016 -3.44033567419474018 0.458130701851563016 -0.529863157585498956 0.603299484141131992 -0.878275499999999987 0.0825327501032740024 0.870402980728119946 1.12935933522631005 0.732041658974974974 0.235430510000000009 0.475356700000000021 0.219892589999999999 0.213947899999999996 -0.185043449999999998 0.137858540000000002 0.487754369999999993 -0.0847665100000000032 0.111440144000000005 0.223522589999999993 140 0 137 3 1.94201470000000009 165.358994 1.3917348517177901 2.44010443069501992 31 false 0.109491179999999994 1.53038298205431 0.118942625156575998 0.140746270000000007 16 10 0.830311829999999973 0 16 false 137 284.161793266532982 4.25967187959351001 66.7098007 19.5544510000000002 13 227.466203733621995 22.9599664559952004 9.90707899999999952 19.4590969999999999 14 191.848302326524987 13.7281695199453004 13.9747920000000008 19.0545250000000017 1.4756187999999999 0 0.404571530000000013 -0.0953540799999999938 0.499925600000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.422285779258999 -63.3462896289131976 22.4829423455388984 -13.1132876969207999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159798960701568 2481159798960701568 246110891 2015.5 25.6727693191126995 0.0285283026182993997 -3.47031547746638003 0.0235804009000220999 2.75151725753153986 0.0365830626538986015 75.2128749999999968 1.96080043780838009 0.0505039322223923975 0.00248547772936480015 0.0512042019853488975 0.0618001670000000031 0.58766145000000003 0.00788807799999999976 -0.0135855790000000004 -0.264128949999999973 -0.0459834149999999997 -0.0131669760000000004 -0.000401536349999999983 0.0437561760000000008 0.343851770000000001 139 0 138 1 -4.62227199999999971 70.5218964 0 0 31 false 90.0568700000000035 1.54542221188111006 0.0080799439620147101 0.0825114900000000068 16 10 0.0599275100000000033 0 16 false 137 69975.6406551871041 17.6538904687526994 3963.75 13.5759980000000002 15 33347.1459289640989 51.3261080330456991 649.711199999999963 14.0437410000000007 15 52288.3280836703998 44.8089875102329032 1166.91609999999991 12.9659080000000007 1.22378980000000004 0 1.07783319999999994 0.467742920000000006 0.610090259999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.515311660678009 -63.3592498066447973 22.5019474585276988 -13.1528619538092002 100001 5062 4936 5221.9502 0.0329999998 0.00800000038 0.386799991 0.0149999997 0.00490000006 0.163299993 200111 0.820173440000000031 0.770698549999999982 0.862580600000000031 0.397919000000000023 0.385639159999999981 0.410198840000000009 +1635721458409799680 Gaia DR2 2481160000823753088 2481160000823753088 645485709 2015.5 25.6649320589012007 0.555610003952069054 -3.45873389081177018 0.512929636036139946 0.405950205146625998 0.721959886713787968 0.562289099999999986 -1.90546115129789007 1.05302868635456992 0.979500759963173984 0.848567396746667035 0.14308557999999999 0.464197399999999982 0.0942851900000000048 0.148575230000000003 -0.234975459999999997 0.0689308399999999932 0.387141530000000011 -0.0216638330000000004 0.108462370000000002 0.180052500000000004 140 0 138 2 2.09054800000000007 169.307999 1.47154447719664994 1.55453894519703995 31 false 0.0719213699999999984 1.65588001694055009 0.148298517723128992 0.078619720000000004 16 10 0.956862100000000049 0 16 false 138 197.372453866882012 1.6779405815336299 117.627998 19.9501500000000007 10 95.9323470542747998 15.5441451070074006 6.17160650000000022 20.3964749999999988 9 211.269069033846989 6.21567141849746996 33.9897419999999997 18.9498309999999996 1.55645539999999993 0 1.44664379999999992 0.44632529999999998 1.00031850000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.488283236168996 -63.3522916545732002 22.4988570170842017 -13.1392137052040994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160005119131648 2481160005119131648 943318569 2015.5 25.6643895556342017 0.0380046236551504005 -3.45420719953366007 0.0311527778959223983 1.11517893276122004 0.0485417519973009998 22.9736019999999996 2.98238546021012008 0.0698956540540812965 -9.1652041640069406 0.0647948657307396009 0.104784760000000005 0.541615599999999975 -0.0364993919999999986 0.0471086539999999998 -0.262980250000000026 0.042836922999999999 -0.00776197759999999997 -0.0168732099999999996 0.0314883099999999985 0.387438740000000004 147 0 146 1 -0.409260779999999991 133.593994 0 0 31 false 24.2547999999999995 1.60070849792911996 0.0104450041889822993 0.100938219999999995 17 10 0.0768801939999999989 0 17 false 146 19705.7566623511011 8.72408507135109978 2258.78003 14.9518830000000005 15 10601.7441465444008 37.7545513653664031 280.807039999999972 15.2879450000000006 15 13325.2451184883994 22.7344810838478004 586.124900000000025 14.4502319999999997 1.21421310000000005 0 0.837713240000000026 0.336061480000000024 0.501651760000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.482760640139986 -63.3484643439622985 22.5000513831286 -13.1348056044753001 100001 5775 5470.25977 5808.25 0.0170000009 0.00800000038 0.0590999983 0.00800000038 0.00340000005 0.0228000004 200111 0.790288149999999967 0.781265850000000039 0.880791250000000026 0.625854800000000044 0.565727949999999979 0.685981630000000009 +1635721458409799680 Gaia DR2 2481161581371722496 2481161581371722496 1597838764 2015.5 25.6702766636283997 0.385158929916316006 -3.43276370133418984 0.357803711758993004 0.0490218523735469966 0.498805195888836983 0.0982785500000000062 3.2742249954685998 0.745093846075513988 -0.840413608359316 0.609665577900775024 0.110785334999999999 0.452462819999999988 0.114451310000000001 0.109236890000000003 -0.243505940000000004 0.0423632820000000021 0.385052799999999973 -0.0456552699999999978 0.0924302899999999983 0.151532009999999995 141 0 140 1 1.69949480000000008 164.134995 0.963830542883974961 1.34806421719983005 31 false 0.144573730000000011 1.66767203276067999 0.103059567632620003 0.090771660000000004 16 10 0.672560449999999976 0 16 false 140 317.10928969516101 1.51944254825448999 208.701004 19.4353429999999996 14 216.617147934642986 23.6919772381457996 9.14305899999999916 19.5121560000000009 14 218.139258805819992 6.51647859027333975 33.4750200000000007 18.9150850000000013 1.37099860000000007 0 0.597070699999999954 0.0768127440000000022 0.520257949999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.473512304541003 -63.3266209512499998 22.5137678161175003 -13.1170315044824992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164536309223808 2481164536309223808 1207350539 2015.5 25.6717134230801989 0.103336007140812994 -3.4257889189536499 0.0861430723723523029 1.99932094575936992 0.130741892038502006 15.2921220000000009 10.9314656987472993 0.195618973373284988 -9.45886509898149086 0.156093478088625004 0.0583137800000000026 0.495184400000000025 0.0635028799999999977 0.073232143999999999 -0.248825180000000007 0.0341110449999999996 0.280459820000000026 -0.0308368819999999995 0.0713149299999999986 0.170607120000000001 140 0 140 0 2.18162820000000002 173.326004 0.22100775369638101 0.921125795086927046 31 false 2.29145809999999983 1.38610083639241011 0.0268226858594305013 0.0832584650000000037 16 10 0.178777490000000011 0 16 false 140 2524.96517349067017 3.11586171124258993 810.359009 17.1827280000000009 15 780.517955311887022 7.10874294651260019 109.796906000000007 18.1204299999999989 14 2643.8216775491901 17.9508028549239 147.28152 16.2063389999999998 1.35619280000000009 0 1.91409110000000005 0.937702200000000041 0.976388930000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.469552611331011 -63.3197257252891035 22.5177732794479013 -13.1110744361984004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091321600 2481161650091321600 453588279 2015.5 25.7062115939085984 1.43794246712732998 -3.42633635808934001 1.42751840560969989 3.26584243872251978 2.13363227749597995 1.53064920000000004 3.58206355505358021 2.32090977048195013 -6.39522245027848957 3.43984001724526012 -0.27704898 0.731402600000000014 0.1416964 0.0670813499999999979 -0.620251400000000008 -0.434921149999999979 -0.494076159999999986 0.333340640000000021 0.349018930000000005 0.575403600000000015 75 0 75 0 0.646888499999999977 77.2225037 0 0 31 false 0.02970128 1.76371657946543992 0.371305563493570023 0.099293864999999995 10 8 3.47990369999999993 0 10 false 76 108.423582709125 1.53016415282634011 70.8574982 20.6005549999999999 5 27.9123784198543987 7.63579113532293974 3.65546660000000001 21.736896999999999 7 136.94179959393 11.8760498431414998 11.5309220000000003 19.4205800000000011 1.52046419999999993 0 2.31631659999999995 1.1363411000000001 1.17997550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.538941964195999 -63.3050647361063028 22.5504433484749001 -13.1242583260395005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091200768 2481161650091200768 66892744 2015.5 25.7096733025149007 0.422510414432145986 -3.42615484374737012 0.285935433986651 1.4771759791279 0.577540358241361962 2.5577017999999998 18.5938820239998996 0.572705992656452945 2.15664556004005981 0.490482937631733007 -0.247386660000000008 0.746398200000000012 0.058008841999999998 0.10511007 -0.500262899999999955 0.0492775000000000019 0.0669344139999999976 0.0320793759999999997 0.0813023199999999974 0.315539499999999973 124 0 122 2 2.41726200000000002 157.195999 1.05533426411621001 2.83125627630225996 31 false 0.254228059999999978 1.3615538436227701 0.0904397060468116049 0.0676437700000000058 15 9 0.575304570000000015 0 15 false 120 554.93376344911303 1.77971687060098005 311.809998 18.8277630000000009 12 105.264753355989995 9.57140481698450962 10.9978370000000005 20.2956809999999983 10 727.200100960307964 14.9951280749586999 48.4957580000000021 17.6077839999999988 1.50011580000000011 0 2.68789670000000003 1.46791840000000007 1.21997829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.545669105465009 -63.3033795229342005 22.5538111320497983 -13.1253612416773002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351453289229056 2481351453289229056 1501239143 2015.5 25.4950024874349985 3.04002688819582989 -3.42637357128844 3.53940025415644 \N \N \N \N \N \N \N 0.36709172000000001 \N \N \N \N \N \N \N \N \N 70 0 69 1 12.8528230000000008 345.290985 13.4049879736998996 18.2627113270016999 3 false 0.00375080759999999987 \N \N 0.173868090000000003 8 7 12.3610190000000006 0 8 false 69 76.1272191107601941 1.3211596562258201 57.6214981 20.9845159999999993 6 57.9590241551399004 9.8092015221951101 5.90863850000000035 20.9435859999999998 5 154.998734579787993 3.28744064778507017 47.1487539999999967 19.2861000000000011 2.79739300000000002 0 1.65748600000000001 -0.0409297939999999985 1.69841580000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.116318610949008 -63.3973633019030984 22.3491913449217989 -13.0466459001857 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469822587501952 2481469822587501952 583294747 2015.5 25.2638028938787009 4.19302896318679963 -2.65321113293421984 6.25571801238875036 \N \N \N \N \N \N \N -0.415371360000000023 \N \N \N \N \N \N \N \N \N 39 0 39 0 -0.356808599999999976 30.5172005 0 0 3 false 0.0228965819999999987 \N \N 0.072378739999999997 5 5 22.060137000000001 0 6 false 39 85.8392291792150957 2.49678009998332984 34.3800011 20.8541500000000006 3 42.3640812784981975 9.07379887131713048 4.66883599999999976 21.2838940000000001 3 108.452286659486006 18.1974949625747016 5.95973729999999957 19.6738220000000013 1.75696330000000001 0 1.61007119999999992 0.42974279999999998 1.18032840000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.926046902943995 -62.796481653268998 22.4210674912906995 -12.2428027889239992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351590725364736 2481351590725364736 662668795 2015.5 25.5027883441767997 0.359013462413137974 -3.40863183067471986 0.283973982249147994 1.62553393012036995 0.450285810071524017 3.61000500000000013 13.4255658072046007 0.681718719634161974 1.82149444976311004 0.526224481824819956 0.037443746 0.482804149999999987 0.0546951030000000019 0.0646326499999999998 -0.266613500000000003 -0.0207147709999999999 0.113103079999999995 0.0176924079999999997 0.147832920000000007 0.183792399999999995 171 0 169 2 4.0846309999999999 248.774994 1.29276874327233005 3.11252903049937002 31 false 0.147812219999999994 1.29967723069375007 0.0943123364133740955 0.0237952339999999984 19 10 0.612300999999999984 0 19 false 170 354.605888289148027 1.5492539739190101 228.888 19.3140010000000011 18 78.8427273000132942 9.7586486510814705 8.07926699999999975 20.6094839999999984 16 436.926818170516981 8.85276727749437953 49.3548279999999977 18.1608979999999995 1.45448669999999991 0 2.44858550000000008 1.29548259999999993 1.15310289999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.114724879640988 -63.3780070667448001 22.363319058919501 -13.0330171772687002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163917833935616 2481163917833935616 1431730377 2015.5 25.5231562212971994 0.170373100188266013 -3.41490643742963984 0.120317004121450993 3.35882820514646019 0.210584315228548008 15.9500399999999996 -35.252789456391298 0.298270647021638025 -30.8562510628241 0.215081574471921999 0.0483290070000000002 0.5546373 0.0122388589999999995 0.127613169999999998 -0.209642980000000007 0.0293052 0.107780570000000006 0.0428287649999999978 0.171317200000000003 0.189575049999999995 160 0 159 1 32.5805930000000004 1722.06006 1.02641478241371997 66.3474889375203958 31 true 0.83414566999999995 1.40122900154857999 0.0373775000413901978 0.0622783380000000025 18 10 0.268356859999999975 0 18 false 158 8058.8407484695399 9.7681309588968297 825.013977 15.9226849999999995 15 2092.17312937834004 12.4216434343878994 168.429660000000013 17.0498939999999983 15 9191.69263155703084 14.5843507175219003 630.24350000000004 14.8534319999999997 1.4001847999999999 0 2.19646259999999982 1.12720970000000009 1.06925300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.161668347047993 -63.3748115284248001 22.3803470675612992 -13.0463423201927 100001 4011.83008 3538 4747.10986 1.06130004 0.711499989 1.39260006 0.502499998 0.328000009 0.648999989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351556365046528 2481351556365046528 1584136717 2015.5 25.4917053344786986 0.470491626770417004 -3.39932898595254995 0.415519145814488011 0.14184895621395599 0.598537925232692003 0.236992430000000004 -0.251575037281559 0.989412902137983052 -0.538505270477264042 0.770105093418710029 0.126412940000000001 0.368551850000000014 0.216350299999999995 0.0323972199999999974 -0.192352999999999996 -0.0130053500000000006 0.287078600000000017 -0.152388140000000005 0.121199875999999998 0.119092785000000007 152 0 150 2 0.476759969999999977 152.580994 0 0 31 false 0.0904749700000000018 1.69417924036212009 0.136800621042768994 0.046478499999999999 17 10 0.885427500000000034 0 18 false 150 194.742132792252988 2.66869192317271997 72.9729004 19.9647159999999992 13 99.4920629163682975 18.2202568870890005 5.46051929999999963 20.3569159999999982 13 110.111996737032996 8.48354816216182961 12.9794739999999997 19.6573330000000013 1.07631589999999999 0 0.699583049999999984 0.392200470000000023 0.307382580000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.083469066138008 -63.3744354954201015 22.3562814179942997 -13.0202919667401993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351663739917824 2481351663739917824 1237658832 2015.5 25.5007401323195992 0.311689861183238992 -3.40365157016067998 0.242471197149875001 2.10589649371333998 0.388547020529612985 5.41992700000000038 7.93094151216762988 0.601974870400960982 -21.8706935644398008 0.417271400135854009 0.00808555499999999948 0.455658500000000022 0.027759787000000001 0.0949503200000000047 -0.298718419999999985 0.0333006419999999984 0.240128200000000014 0.0128429159999999994 0.116686659999999998 0.143225309999999995 177 0 175 2 3.46176430000000002 241.311005 1.12134010679514007 3.1468677869269599 31 false 0.197454619999999997 1.39796503962983998 0.0772187468931144066 0.00510459300000000015 20 10 0.533571099999999965 0 21 false 175 432.282823143127985 1.44305105527799005 299.562012 19.0989460000000015 19 105.1597713261 12.5589294606963993 8.3733070000000005 20.2967639999999996 18 537.913942954250047 10.0832087293496002 53.3474959999999996 17.9351389999999995 1.48762259999999991 0 2.36162569999999983 1.19781880000000007 1.16380689999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.105785329870997 -63.3744105887960032 22.3632519096844007 -13.0276339553663991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351659444841728 2481351659444841728 1199228012 2015.5 25.502678219777799 0.155043307723679996 -3.40210641350215992 0.118916577752202005 1.88451831881755005 0.191527463804571002 9.83941599999999994 8.02727269161823997 0.298007977771632016 -22.1904102280682984 0.222108227536643998 -0.000944477739999999961 0.465233400000000019 0.0221522169999999984 0.0660291900000000015 -0.305926900000000002 -0.0155897569999999992 0.0626036700000000002 0.0342196229999999976 0.15039248999999999 0.190617499999999995 170 0 168 2 3.98636819999999981 245.212997 0.547546531266900005 2.96612395219981018 31 false 0.82759963999999997 1.34813907947230005 0.0400600985603350029 0.0198243469999999991 19 10 0.26884574 0 19 false 161 1261.19446197925004 2.13101758396358987 591.827026 17.9364099999999986 16 341.851443639203978 11.8069833060463001 28.9533270000000016 19.0167940000000009 15 1405.41803284503999 5.9392043192295203 236.634060000000005 16.8924060000000011 1.38540839999999998 0 2.12438770000000021 1.08038330000000005 1.04400439999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.10817466359299 -63.3721781558940975 22.3656823817694992 -13.0269104782132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351865602694272 2481351865602694272 1553858071 2015.5 25.4924351384856998 0.376434644784677974 -3.38888315984788013 0.284981637574391988 1.33686896798034005 0.456876744755738973 2.92610429999999999 17.2094903906464012 0.772809680786677 3.45717300736919997 0.493481073835546014 0.0225347969999999988 0.396893769999999979 -0.0790131200000000061 0.0934494200000000053 -0.276377079999999997 0.0104152120000000001 0.232513770000000008 0.0653422099999999978 0.132053969999999993 0.109152269999999996 169 0 168 1 1.72840140000000009 195.488007 0.974621437441969052 1.43559791403570003 31 false 0.140411559999999991 1.32890079203141998 0.0942773128703811997 -0.0288644379999999992 19 10 0.681580659999999949 0 19 false 168 311.862898300490997 1.27891541057048008 243.850006 19.4534570000000002 14 76.8276980047346996 9.00540899027697073 8.53128300000000017 20.637594 17 422.378783473427973 4.35620554881276956 96.960250000000002 18.1976639999999996 1.60072419999999993 0 2.43992999999999993 1.18413729999999995 1.25579259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.074813560541003 -63.3647095492041998 22.3609275170233985 -13.0108497903603997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351625085102976 2481351625085102976 655157852 2015.5 25.5191851218343011 0.0367480775385106984 -3.39101336912833018 0.0299073442626526 0.937924225175746029 0.0452667289643405024 20.7199479999999987 9.46816120308811016 0.0668173406316626001 -1.07639622142423996 0.0649136414783095944 0.0305390190000000006 0.540929199999999999 -0.0667079200000000039 0.0259430670000000002 -0.293250200000000016 -0.198191850000000003 -0.396122719999999984 0.165827959999999996 0.263391399999999998 0.350833769999999989 169 169 168 1 -0.237031390000000008 158.102997 0 0 31 true 388.346830000000011 1.52240208392772991 0.00955206299465696969 0.0152564299999999996 19 10 0.0485267200000000024 0 19 false 165 287094.847250233986 66.2723544253825025 4332.0498 12.0433029999999999 18 126472.389820734999 166.448833835543013 759.827449999999999 12.5963989999999999 19 226986.323406790994 355.912440018600023 637.75890000000004 11.3719210000000004 1.23115660000000005 0 1.22447869999999992 0.553096800000000055 0.671381950000000005 52.2953343908983967 1.4190499436403099 5 4500 3 0 NOT_AVAILABLE 152.130515224411994 -63.3550241702540973 22.3856008209710993 -13.0226696589023003 100001 4897.87988 4829.70996 4983.25 \N \N \N \N \N \N 200111 5.3014064000000003 5.1213160000000002 5.45210740000000005 14.5716149999999995 13.5792660000000005 15.5639649999999996 +1635721458409799680 Gaia DR2 2481352071761702272 2481352071761702272 853649647 2015.5 25.5184331325192986 0.546018109317984002 -3.38380377062745019 0.490434170678109016 2.16320937897499022 0.700937947467276001 3.08616400000000013 -0.414079747626670991 1.12174217133849008 0.503562666505563028 1.06466977966977994 0.0592323699999999995 0.399012800000000001 0.0865288699999999938 -0.0319644850000000008 -0.328371550000000012 -0.116002830000000001 -0.115243670000000006 0.00291423379999999985 0.176605139999999994 0.27538269999999998 151 0 151 0 0.900732599999999994 161.225998 0 0 31 false 0.0619975330000000005 1.77507346481930006 0.172309200096072007 0.0359390269999999984 17 10 1.08908549999999993 0 17 false 149 159.432225069816013 1.16108973955883998 137.313004 20.1819249999999997 14 101.398383733272993 6.34532546426962973 15.9800129999999996 20.3363109999999985 15 105.138632691591994 9.60767371413964 10.9431930000000008 19.7075139999999998 1.29545339999999998 0 0.628797530000000049 0.154386519999999999 0.474411000000000027 \N \N 0 \N \N \N NOT_AVAILABLE 152.122017661526996 -63.3488584319702994 22.3876109469469 -13.0156906705917006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114455808 2481163849114455808 225615739 2015.5 25.5275665708260995 3.01333597133963993 -3.42792792361785992 4.63896381837173966 \N \N \N \N \N \N \N 0.240683289999999994 \N \N \N \N \N \N \N \N \N 87 0 86 1 26.8542179999999995 1125.12 16.1902322723050993 67.7048055383821037 3 false 0.00326943200000000007 \N \N 0.266294399999999987 11 7 18.4509620000000005 0 11 false 98 121.914984675100996 1.67935189653252004 72.5964966 20.4732230000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.183169374084997 -63.3846158839201976 22.3796230174983997 -13.0600697926878002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114556544 2481163849114556544 759095019 2015.5 25.5346477372231 0.592065371065196966 -3.42403920034174991 0.562734552985425962 1.15864865724963995 0.760394609354173023 1.52374649999999989 4.47767501208409957 1.23309931720460009 -5.63211259575431988 1.27353060863365997 0.101404264999999993 0.391534800000000016 0.070142709999999997 -0.0752717400000000036 -0.291724600000000001 -0.154713180000000006 -0.0817787299999999939 0.00974386900000000049 0.181309310000000001 0.263271839999999979 141 0 140 1 0.69890540000000001 146.108994 0 0 31 false 0.0543081200000000014 1.32757152625542996 0.169746203382001998 0.0412858050000000018 16 10 1.24125050000000003 0 16 false 141 142.818614730462997 1.1381945684633501 125.477997 20.3014030000000005 10 72.5120980541804983 15.7396969799269009 4.6069564999999999 20.7003610000000009 15 181.840753584754992 9.63290351372183018 18.877044999999999 19.1126919999999991 1.78095029999999999 0 1.58766940000000001 0.398958199999999985 1.18871119999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.193587283645002 -63.3780357521993025 22.3878395733579012 -13.0590591698290996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163677315764352 2481163677315764352 1054936248 2015.5 25.552530829045299 3.21677557135926984 -3.42652237177260011 2.15583063371410022 \N \N \N \N \N \N \N -0.369773750000000012 \N \N \N \N \N \N \N \N \N 110 0 110 0 22.7057169999999999 894.625 14.0206412882661997 47.5430982285623998 3 false 0.00423559300000000017 \N \N -0.0768963399999999936 13 8 4.81167459999999991 0 13 false 111 111.378105906957998 2.15660050749343002 51.6451988 20.5713650000000001 9 118.275586739907993 11.9603911585044997 9.88893999999999984 20.1691509999999994 10 277.623882491039012 6.51668494121661013 42.6020129999999995 18.6532780000000002 3.55455370000000004 0 1.51587300000000003 -0.40221404999999999 1.9180870000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.231850224200002 -63.3724861661618988 22.4039366831425006 -13.0679445981245994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164055272889984 2481164055272889984 534332512 2015.5 25.5605740388714011 0.452054347004839985 -3.41021573779493981 0.388432268259812974 1.81245587406315001 0.586781409777217045 3.08880929999999987 10.2596722562949996 0.897108319983637048 -0.828730429998478013 0.705903935121896975 0.0524190299999999984 0.423057139999999998 0.0973805860000000051 0.0578926759999999971 -0.31080213000000001 -0.0152563149999999995 0.157348049999999989 -0.00991327699999999985 0.145103380000000004 0.179812200000000005 166 0 165 1 1.49877199999999999 187.593994 0.626727716103422039 0.312587448797405021 31 false 0.0882554799999999973 1.17118552562219991 0.119084366546366005 0.0237263269999999984 19 10 0.806775869999999951 0 19 false 164 207.90494266747001 1.30025423230408999 159.895996 19.8937029999999986 13 74.6367736343912043 13.8290970187875999 5.39708230000000011 20.6690059999999995 15 264.950110296791991 10.0013106557840992 26.4915389999999995 18.7040100000000002 1.63337580000000004 0 1.96499629999999992 0.775302900000000017 1.18969349999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.232094225466 -63.3543104250675029 22.4177659281397013 -13.0557425521422008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164295792134656 2481164295792134656 160723518 2015.5 25.5642569475309003 0.842725804335691997 -3.4039508256674802 1.24125976370163005 1.01725493285876989 1.21380007859288996 0.838074499999999944 -0.840220028657675977 2.15245570984594981 -12.5545804331880007 3.52249305082147979 0.359224800000000011 0.167021649999999994 -0.20683051999999999 -0.347864449999999992 -0.555039999999999978 -0.616449000000000025 -0.752935400000000032 0.354551459999999985 0.513281399999999999 0.708672940000000029 117 0 116 1 0.861013200000000034 123.612 1.06080058231301999 0.362584114674606994 31 false 0.0362563899999999995 1.11792802668078006 0.264179252772341 0.176066100000000003 14 8 3.58519580000000015 0 15 false 118 110.554301666279002 1.07644529727552007 102.703003 20.5794260000000016 12 46.1056568643102977 8.27837224222652956 5.56941099999999967 21.1920029999999997 12 136.343349662396008 11.4507935835382995 11.9068909999999999 19.4253350000000005 1.65031119999999998 0 1.76666830000000008 0.612577440000000029 1.15409089999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.233374928370012 -63.3470692192043003 22.4236434322283991 -13.0512724031774994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164330150799232 2481164330150799232 691380317 2015.5 25.5449506693380997 0.724539671946290986 -3.39364992090404982 0.885637521726052035 0.594448270075167984 0.964548482376797023 0.616296949999999955 32.2426265930113018 1.6472219167626001 -6.66656602315106017 1.73585379089278002 0.297780800000000012 0.222753570000000012 0.179183960000000003 0.200360879999999991 -0.408551300000000006 0.323540480000000019 0.463650019999999996 -0.232687919999999993 -0.173745260000000012 0.487386800000000009 107 0 107 0 0.0974452299999999938 102.726997 0 0 31 false 0.0443575599999999973 1.71113588440084996 0.244653992515950991 0.151277230000000013 13 9 1.88356849999999998 0 13 false 109 126.598504274817998 1.42360896064550002 88.9279022 20.4322949999999999 10 98.9742339816450993 21.3919610510212017 4.62670229999999982 20.3625830000000008 11 160.13370075348999 11.3859538673042007 14.0641440000000006 19.2507130000000011 2.04669020000000002 0 1.11186980000000002 -0.0697116849999999955 1.18158150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.184699804773004 -63.3462017206743013 22.4091468650624996 -13.0345965563373998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352346639012864 2481352346639012864 551649905 2015.5 25.4980668377594988 0.0229116100582162988 -3.36474276441109987 0.0186026607643779984 2.11777128163533002 0.0287997374128505998 73.5343900000000019 32.0899118049242986 0.0431067731721260991 -3.9663146881168001 0.0395206605984097029 0.00152872490000000006 0.514487099999999975 -0.0661289399999999972 0.043326240000000002 -0.348875729999999995 -0.0606216200000000011 -0.169274079999999993 0.0742857499999999976 0.142512770000000011 0.351499799999999973 168 0 167 1 0.502816139999999967 170.529007 0 0 31 false 140.254760000000005 1.58488329463288991 0.00608125849760021014 0.0290207019999999989 19 10 0.0520025900000000013 0 20 false 162 111605.008671402 48.3574064245053989 2307.91992 13.0691570000000006 16 59361.2760929309006 87.8710082468689961 675.550200000000018 13.4176300000000008 17 75566.6213093808037 88.1012717676553052 857.724550000000022 12.5660950000000007 1.20897710000000003 0 0.851534840000000015 0.348473550000000021 0.503061300000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.062741290210994 -63.3405217623656966 22.3754207621780985 -12.9904796904384003 100001 5742 5615.06006 5806 0.0930000022 0.0425999984 0.194800004 0.0469999984 0.0166999996 0.0970999971 200111 1.00283630000000001 0.980849500000000041 1.04868939999999999 0.984935050000000034 0.95210399999999995 1.01776610000000001 +1635721458409799680 Gaia DR2 2481352282215207552 2481352282215207552 655479307 2015.5 25.5178228614249001 0.0407109094369444979 -3.36887553025434006 0.0307006716443767001 0.714774408218231017 0.0497520144705312015 14.3667429999999996 0.340150598725483977 0.0757288981009248963 1.24992914254514997 0.0608185779388826994 -0.0195157640000000014 0.500550700000000015 -0.0341894739999999975 0.063203750000000003 -0.306294469999999985 -0.060270490000000003 -0.114136730000000006 0.0856452659999999977 0.18976092 0.237217000000000011 178 0 176 2 -0.592657100000000048 159.634995 0 1.53687003158857995e-15 31 true 15.025639 1.56907544185438996 0.0108650808770448006 0.00245341359999999998 20 10 0.0762055600000000055 0 20 false 174 12401.7902586710006 6.73789489772950034 1840.59998 15.4546550000000007 19 6325.81161107667958 30.4905015519745 207.468279999999993 15.8485980000000009 18 8830.1516718733892 17.2598402331962006 511.600999999999999 14.8969989999999992 1.22207869999999996 0 0.951598170000000021 0.393942830000000022 0.557655330000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.10633095684301 -63.3356792762984995 22.3926745332361996 -13.0015880912322004 100001 5403 5349.60986 5538.5 0.472499996 0.272700012 0.579299986 0.223000005 0.128000006 0.282099992 200111 1.1359840000000001 1.08108000000000004 1.15877309999999989 0.990784050000000027 0.839133699999999982 1.14243439999999996 +1635721458409799680 Gaia DR2 2481352312279298688 2481352312279298688 664495667 2015.5 25.5248194004044997 0.174215139561165994 -3.35808144391357999 0.121084684607411994 0.566809463028433047 0.194096938845415012 2.92023900000000003 4.27064485989930009 0.372676608616551996 -4.17336768025188043 0.230213495437462001 -0.0761190199999999956 0.298862930000000027 -0.0444156230000000013 0.0420261700000000016 -0.274150500000000019 0.00327074159999999996 0.0709976999999999969 0.00900706100000000023 0.14231764999999999 0.0459955820000000001 142 0 141 1 0.66646755000000002 146.587997 0 0 31 false 0.803995899999999986 1.60386283615758996 0.0423939222643706995 -0.104286745 16 10 0.329298020000000025 0 16 false 141 1011.54072836017997 2.01146190149575022 502.888 18.1759069999999987 16 411.049123800888026 6.93438599568724978 59.2769300000000001 18.8166539999999998 15 865.246903505244973 12.8394661700288992 67.3896299999999968 17.4190700000000014 1.2617347000000001 0 1.39758490000000002 0.640747100000000014 0.756837839999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.109893454381989 -63.3229223827596996 22.4034196540129003 -12.9941262989653001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352346639037952 2481352346639037952 1630749627 2015.5 25.4976211818474994 0.366380133542510977 -3.35325288134749 0.277039705913696976 1.91537191215906999 0.449838634304641993 4.25790899999999972 4.87605188709838 0.696456625896644033 -7.08509605499069028 0.475135970929463025 -0.0144511199999999996 0.469892829999999984 0.028813155 0.0949093550000000008 -0.280970700000000018 0.0188741889999999995 0.235634569999999988 0.0238803809999999991 0.135905560000000009 0.113618724000000004 175 0 174 1 4.8693995000000001 274.338989 1.6160167643182699 5.50629106269242019 31 false 0.147053689999999987 1.37425187399061 0.0911538396027938014 -0.00544117799999999964 20 10 0.614693939999999994 0 20 false 174 420.61727539497798 1.31290194942254002 320.372009 19.1286489999999993 19 91.8359729839928036 8.58806706793358998 10.6934395000000002 20.4438549999999992 19 525.791645046131976 11.3727883104438998 46.2324300000000008 17.9598869999999984 1.46838390000000008 0 2.48396870000000014 1.31520649999999995 1.16876219999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.050738476713008 -63.3303629528340011 22.3793409317354985 -12.9796342532560001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353209928142976 2481353209928142976 939887262 2015.5 25.4846499648856017 0.54551479600325703 -3.33409192439820012 0.419877043733979993 0.96475128082476802 0.649328881952618953 1.48576679999999994 -1.09669322477398001 1.10800856403313008 -2.86453889976677001 0.735790359696679053 0.00988897099999999987 0.410836900000000005 0.036214650000000001 0.0783880700000000041 -0.261258129999999977 0.0492223869999999994 0.308039220000000002 -0.0349381399999999995 0.0786292799999999958 0.0983982999999999941 182 0 178 4 3.41824400000000006 243.852005 1.92824226220278994 3.31708411968905992 31 false 0.0626024750000000046 1.28408205169547007 0.141529330962621991 -0.0538915900000000031 21 10 0.975582359999999982 0 22 false 175 210.614956582047 1.3808387620498499 152.526993 19.8796420000000005 14 63.1410183086846004 5.44089037071335024 11.6049050000000005 20.8506089999999986 15 248.844909922654011 6.89374532368749993 36.0972020000000029 18.7720990000000008 1.4813094 0 2.07851030000000003 0.970966340000000039 1.10754400000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.006242757102996 -63.3187099731868983 22.3742323996821 -12.9570501979277992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352484077994496 2481352484077994496 1057280931 2015.5 25.5164623721526986 0.377412634487606979 -3.34074968002322992 0.296656261770633978 0.119230879560873998 0.479955004605358004 0.248420950000000001 -2.43698968459128995 0.725661283772469967 -6.0690548427347597 0.514983551025726016 -0.0214265450000000017 0.459431650000000025 0.0706175039999999976 0.0724139359999999982 -0.334437819999999997 -0.0111720389999999999 0.183281589999999994 0.0213481930000000014 0.143906759999999995 0.141907289999999991 172 0 170 2 4.9613056000000002 271.60199 1.36131957375568002 3.17065173498509978 31 false 0.137095870000000009 1.44802215482111007 0.101134264126538004 0.00917234299999999947 20 10 0.64395150000000001 0 20 false 171 354.640910757407994 1.41549758056524011 250.542007 19.3138940000000012 17 128.473451380889998 10.7556593990577998 11.9447310000000009 20.0793549999999996 16 326.479737331936008 8.11496162599014959 40.2318270000000027 18.4772800000000004 1.28285589999999994 0 1.60207560000000004 0.765460970000000018 0.836614599999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.076393158833014 -63.3109354977054011 22.4020124036169008 -12.9749400750900996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352140482902656 2481352140482902656 1161783875 2015.5 25.5559899529641008 2.7437460360108501 -3.36371480067540984 1.72951207593718004 \N \N \N \N \N \N \N -0.453405950000000002 \N \N \N \N \N \N \N \N \N 79 0 79 0 0.581252800000000014 80.5911026 0 0 3 false 0.022887438999999999 \N \N 0.313028870000000015 10 6 7.26465940000000021 0 10 false 80 85.6400724531392967 1.05775303747259009 80.9641037 20.8566719999999997 6 38.1064976595918026 12.2591941191193996 3.10840149999999982 21.398890999999999 7 109.620346244857998 13.5396490916918992 8.09624799999999922 19.662191 1.72497330000000004 0 1.73669999999999991 0.542219160000000033 1.19448090000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.177747245037011 -63.3144556090766031 22.4309802526034012 -13.0108255173056993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352449720534656 2481352449720534656 227993932 2015.5 25.5482696489191987 11.3953999105295001 -3.34337303191956003 7.85048068536971044 \N \N \N \N \N \N \N 0.556116700000000019 \N \N \N \N \N \N \N \N \N 33 0 32 1 3.0275679000000002 54.8419991 7.24296517432633991 5.55474361179896015 3 false 0.00745899900000000001 \N \N 0.275885900000000017 5 4 9573.49200000000019 0 5 false 36 77.1136866647459982 3.71655083635469996 20.7486992 20.9705370000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.142588557443986 -63.2994974139024009 22.4313156591165992 -12.9890751175482002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353927187183616 2481353927187183616 849235826 2015.5 25.5485049660906007 0.852011806076781952 -3.33519934776249016 0.545624605503020055 3.21925596179237994 1.07320140920641993 2.99967549999999994 13.2502925346198008 1.1889022919791401 0.0325703531899353971 0.885791700506610047 -0.219944030000000013 0.735061500000000034 0.232776800000000006 0.112912305000000004 -0.396416900000000016 -0.118223999999999996 0.186736960000000007 0.153862250000000006 0.192099720000000002 0.116088979999999994 141 0 140 1 3.98476430000000015 210.733994 2.10828507455049996 3.06515395973845006 31 false 0.0550081020000000032 1.28318146102598996 0.166157142531790009 -0.0273465290000000014 16 9 1.18454560000000009 0 16 false 140 197.901168556632001 1.45329854699065009 136.173996 19.9472449999999988 12 39.7340476862260985 11.0571655898973003 3.5935109999999999 21.3534809999999986 13 310.344502578380002 10.8646063442973002 28.5647260000000003 18.532309999999999 1.76895639999999998 0 2.82117079999999998 1.40623659999999995 1.41493420000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.135146812015989 -63.2920354726998013 22.4346291754305014 -12.9815625104202006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352243560394880 2481352243560394880 444735358 2015.5 25.5509973418582987 0.272558833316892013 -3.35301120813483999 0.222655985151713004 1.07920749729050991 0.342382186372933994 3.15205499999999983 -0.619290869477835959 0.544267109728254983 -4.7113765043826703 0.414463755036383996 0.0387806259999999986 0.419553520000000013 0.077955079999999996 0.0443111200000000025 -0.27091949999999998 -0.0434517970000000003 0.11328133 0.00283796880000000001 0.169903069999999989 0.145469810000000005 167 0 167 0 1.26348090000000002 185.093994 0 0 31 false 0.243913350000000001 1.26941509634469996 0.0713937702246525002 0.0115217840000000002 19 10 0.485326299999999988 0 19 false 167 410.067564650859993 1.78177976107681002 230.145004 19.1562270000000012 19 81.3714309042294985 5.77399154087556976 14.0927520000000008 20.575209000000001 17 545.181571064499053 7.50372768728013018 72.654759999999996 17.9205669999999984 1.52792620000000001 0 2.65464199999999995 1.41898159999999995 1.23566060000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.157381463195009 -63.3069900936447993 22.4302706763252999 -12.9990386806596998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353927187575552 2481353927187575552 816857224 2015.5 25.5516761063278999 0.504904135869350013 -3.33887248749390997 0.307331515719343973 3.43747347155454008 0.728875617488124017 4.71613170000000004 -37.1720835780770003 0.640911391882320047 -106.043707776629006 0.48175406824657302 -0.353178439999999982 0.794274869999999966 0.240907769999999993 0.229397970000000007 -0.553381600000000029 -0.213394919999999988 -0.0891721999999999931 0.262315779999999998 0.338826100000000019 0.233352040000000011 141 0 140 1 1.94275960000000003 168.729996 0.839235433324663993 1.24706427002992992 31 false 0.197524160000000004 1.14304850460119001 0.0865515333424416999 0.0523037800000000011 16 8 0.755756899999999954 0 16 false 137 407.804480496361009 1.83273491083521001 222.511002 19.162234999999999 15 79.859659381000597 7.38828349827794018 10.8089600000000008 20.5955699999999986 15 558.397195920201057 9.66682757240272039 57.7642669999999967 17.8945620000000005 1.56510510000000003 0 2.70100780000000018 1.4333343999999999 1.2676734999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.145044827080994 -63.2939655858696995 22.4362613501199988 -12.9861433941039994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848654464 2481163990848654464 298539712 2015.5 25.5721238312505008 12.6784438446696992 -3.42028992328053993 3.89188482364406019 \N \N \N \N \N \N \N 0.731889099999999959 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.31567189999999989 45.2330017 3.77858695153652002 1.05440519618677997 3 false 0.0122438740000000001 \N \N -0.0564702560000000034 5 4 30716.2360000000008 0 5 false 38 66.9642097862226962 2.08017296240765015 32.1917 21.1237579999999987 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.265031763662989 -63.3583409386345977 22.4249597147660999 -13.0693552850940993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848610560 2481163990848610560 747161114 2015.5 25.5792991229081998 2.41844554539374013 -3.42130365415407001 8.05708749743594943 \N \N \N \N \N \N \N -0.384618459999999995 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.47710849999999994 75.7537003 2.46821570467816986 0.873430086219839974 3 false 0.0205804129999999988 \N \N -0.119195125999999998 8 4 483.285300000000007 0 10 false 67 104.042128738219006 1.80439323330065005 57.6604004 20.6453419999999994 4 101.482359326980998 5.44475778707749036 18.6385439999999996 20.3354110000000006 4 80.8871138483529961 4.51662988945713995 17.9087309999999995 19.9922220000000017 1.75284250000000008 0 0.343189240000000007 -0.309930800000000006 0.653120040000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.280387030593999 -63.3561236888829029 22.4314124072752001 -13.0729360121962994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848781696 2481163990848781696 1348090403 2015.5 25.5866981724091005 0.0452196765399230025 -3.42450785369730015 0.0399808550364295981 2.36223153513858009 0.0604092952065157021 39.1037749999999988 9.3310363629315507 0.0865197104769032943 10.5291315258265001 0.0884484421306129948 -0.0478339119999999993 0.518635630000000014 -0.0271641980000000005 0.0258136199999999989 -0.443667350000000016 -0.0781707299999999938 -0.17840737000000001 0.0622633729999999969 0.116432930000000004 0.416271270000000027 176 176 175 1 6.43266440000000017 317.325012 0 0 31 true 135.616000000000014 1.61315210174083989 0.0125940522244837004 0.0270895290000000011 20 10 0.060175880000000001 0 21 false 171 10333983.6445877999 3710.65721926913011 2784.94995 8.15269699999999986 18 5658634.88251749985 11037.7123681888006 512.663760000000025 8.46960900000000017 20 6569444.42197331041 13284.4677956344003 494.520719999999983 7.71809800000000035 1.18328809999999995 0 0.751511099999999987 0.316912650000000018 0.434598450000000025 13.0393633037475993 0.60822634728068703 9 6000 4.5 0 NOT_AVAILABLE 152.298323363171988 -63.3557772133308035 22.4372501603263999 -13.0786353668699 100001 5925 5837.1001 5993 \N \N \N \N \N \N 200111 8.08433499999999938 7.90191749999999971 8.32965000000000089 72.5666049999999956 70.1292200000000037 75.0039900000000017 +1635721458409799680 Gaia DR2 2481359184229109760 2481359184229109760 315467191 2015.5 25.4567527634870991 2.56745588381251988 -3.22806276411110016 1.53244070148076994 \N \N \N \N \N \N \N -0.162006769999999994 \N \N \N \N \N \N \N \N \N 55 0 55 0 -0.153064580000000006 47.8347015 0 0 3 false 0.012348131 \N \N -0.105469430000000003 7 6 4.69363699999999984 0 7 false 54 71.4532706549692023 1.15115990114888 62.0707016 21.0533099999999997 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.848498233413011 -63.2351263914298016 22.3877441379829989 -12.8482181117913008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164128287734912 2481164128287734912 172532306 2015.5 25.5885643861059009 0.0390158734074513014 -3.40496472088576008 0.0306580978429056988 1.06175294046588009 0.0485786617241217994 21.8563650000000003 24.2976167244343983 0.0741043946276558063 -9.62730719747774089 0.0646873225648775946 -0.0406403879999999995 0.492278839999999995 -0.0331968299999999966 0.0306435800000000001 -0.356235440000000014 -0.101231299999999996 -0.205733510000000008 0.0827497539999999948 0.183698549999999988 0.283582239999999985 175 0 175 0 -0.941531959999999946 152.602005 0 0 31 true 15.9658549999999995 1.59593716347660997 0.0103515182528659006 0.00664618559999999997 20 10 0.0775362849999999965 0 20 false 173 13241.8777917069001 8.39818065691349958 1576.76001 15.3834914999999999 16 6736.71115946413011 12.6463849940797992 532.698549999999955 15.7802690000000005 16 9480.95660536129981 27.2813090681123001 347.52573000000001 14.8197899999999994 1.22472570000000003 0 0.960478799999999966 0.396777150000000023 0.563701600000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.283015220359999 -63.3373857173492993 22.4464174449133012 -13.0611521459534998 100001 5381 5325 5747.8999 0.0208000001 0.00800000038 0.125300005 0.0120000001 0.00389999989 0.0697999969 200111 0.79776347000000003 0.699169499999999999 0.814630999999999994 0.480723100000000014 0.432183680000000014 0.529262539999999948 +1635721458409799680 Gaia DR2 2481163368079238528 2481163368079238528 888152923 2015.5 25.6078935697833003 1.58402013395182006 -3.41992235285959012 1.91952789927854006 \N \N \N \N \N \N \N 0.661445599999999967 \N \N \N \N \N \N \N \N \N 86 0 86 0 0.733736999999999973 89.9854965 0.853093617317041031 0.119223202708373999 3 false 0.0229646600000000013 \N \N 0.0489937900000000023 11 6 6.76244449999999997 0 12 false 91 83.4220186115016986 1.22957893124296991 67.8460007 20.8851639999999996 6 44.2956859574990034 12.1045631253509001 3.65942049999999997 21.2354850000000006 6 109.236369410652998 16.6583041057372014 6.55747199999999975 19.6660019999999989 1.84042609999999995 0 1.56948280000000007 0.350320819999999977 1.21916200000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.336266300087999 -63.3423977610706004 22.4591783608053994 -13.0821643599755006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164128287747968 2481164128287747968 56818464 2015.5 25.6004809822494011 0.0347295873030738014 -3.40684020396234022 0.0290490979410788011 1.05712105170274007 0.0433340641249400013 24.3946900000000007 26.0142503489520003 0.0671459319516620051 -1.41543326042377005 0.0658340340658422063 -0.0198478199999999987 0.488167320000000016 -0.042953115 0.00472460730000000013 -0.365704240000000014 -0.176883299999999993 -0.351989200000000002 0.112861310000000006 0.221501480000000001 0.349120350000000024 166 0 166 0 -2.47459939999999978 120.002998 0 0 31 true 21.6074200000000012 1.5848164081368401 0.00928091625889720939 0.0154318579999999997 19 10 0.0773404699999999945 0 20 false 166 17680.8329202071 9.78715434773184079 1806.53003 15.0696089999999998 17 9449.86161537894077 23.7215121624875991 398.366759999999999 15.4128249999999998 17 12117.5546311065009 31.3120565729288991 386.993260000000021 14.5533830000000002 1.21981910000000005 0 0.859441760000000055 0.343215939999999997 0.516225799999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.308682335241997 -63.3338719509726005 22.4570617355801012 -13.0672766649508993 100001 5632.75 5380 6034.81982 0.0187999997 0.00800000038 0.0647 0.00800000038 0.00389999989 0.0299999993 200111 0.83427960000000001 0.72681450000000003 0.914509059999999985 0.631247760000000047 0.573075200000000007 0.689420339999999965 +1635721458409799680 Gaia DR2 2481164128287734784 2481164128287734784 1267889813 2015.5 25.6052467931424985 0.0655717671529455065 -3.4057454197234498 0.0507394575353945013 0.952437451052637996 0.0811691141950045963 11.7339889999999993 11.9259515799107998 0.127550573663409994 -0.108595330665438999 0.101767177823907998 -0.0493359569999999997 0.45749430000000002 -0.00841901200000000002 0.0353757140000000025 -0.358320599999999989 -0.0548657140000000029 -0.072617710000000002 0.0502458480000000027 0.154086749999999995 0.223287869999999999 176 0 174 2 -0.146685599999999999 165.658997 0 1.54593719008863991e-15 31 true 4.7518167 1.52749420931347002 0.0164823836380428995 -0.00471286760000000013 20 10 0.120875529999999995 0 20 false 174 4379.73834900670045 4.23901189270277978 1033.19995 16.5847450000000016 17 1992.32906931783009 9.22444696652386931 215.983579999999989 17.1029850000000003 16 3460.50145868828986 13.7672563313089995 251.357380000000006 15.9140720000000009 1.24501290000000009 0 1.18891330000000006 0.518240000000000034 0.670673399999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.317147429547987 -63.3308065052943974 22.4620162626205015 -13.0680107552459006 100001 4886 4763.87988 4953.5 0.0350000001 0.00260000001 0.322299987 0.00800000038 0 0.135100007 200111 0.648909799999999981 0.631344000000000016 0.682603900000000041 0.21621071 0.17778403000000001 0.254637400000000014 +1635721458409799680 Gaia DR2 2481164403165715968 2481164403165715968 1337583736 2015.5 25.5738713315194985 1.15152574279848996 -3.39075669920962008 1.12017533635682009 -0.330815164241131998 1.72456398096275998 -0.191825390000000012 10.4763973586346992 1.94476384662489998 -1.60476047731607996 2.70297861213899981 -0.293400470000000024 0.707929200000000036 0.225136609999999987 0.0501498169999999993 -0.648841699999999966 -0.48405585000000001 -0.548500899999999958 0.337759580000000004 0.380875620000000026 0.570050949999999945 124 0 123 1 0.090918250000000006 118.732002 0 0 31 false 0.030338045000000001 1.20242946287676999 0.266647116537375994 -0.00618997700000000015 15 8 2.79716869999999984 0 16 false 125 105.510016731817004 1.25657842100958006 83.9661026 20.6301300000000012 11 59.2358392245942014 12.2127947184887997 4.85031000000000034 20.9199279999999987 13 130.252838197561005 17.6465876746622996 7.38119130000000023 19.4749529999999993 1.79593069999999999 0 1.44497490000000006 0.289796830000000005 1.1551781000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.239788650348999 -63.3310095051782014 22.4377911695092003 -13.0425409179207996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164433230015360 2481164433230015360 218985119 2015.5 25.5868207976071993 0.273468456305352992 -3.3840392024182302 0.204445217139905988 2.09521384821549983 0.33367226211272899 6.27925700000000031 6.15627160481925984 0.567762147044972965 -8.9115325154835201 0.383498009330141998 -0.0542611139999999992 0.355376150000000002 0.188799959999999989 0.000278170500000000009 -0.336132819999999999 -0.0453585570000000007 0.0888107600000000025 -0.0745603700000000008 0.156116890000000008 0.0899862349999999978 167 0 166 1 3.81610819999999995 238.776993 1.01679542765713005 3.35532721545413981 31 false 0.271098799999999973 1.2558286399129801 0.0652602432370125995 -0.0381302459999999996 19 10 0.504005299999999989 0 19 false 164 586.819127340349041 2.10071631305109996 279.34201 18.7671050000000008 18 143.339893411318997 7.49718478792205989 19.1191619999999993 19.9604700000000008 18 694.469603107771945 9.45059687590202024 73.4842100000000045 17.657786999999999 1.42771340000000002 0 2.3026829000000002 1.19336510000000007 1.10931779999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.259162780865012 -63.3193227427742968 22.4526670915165987 -13.0410563643480995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164158352107520 2481164158352107520 121032293 2015.5 25.6030220850763008 0.14227715717384401 -3.3940509513901298 0.118446394008933004 0.166363293441561005 0.179893221816054993 0.924789129999999959 3.71568803965207994 0.284202079763997972 -1.54779645039228009 0.25080087575285398 -0.0168197549999999987 0.431880380000000008 0.0346971749999999968 0.00156890200000000006 -0.361289169999999993 -0.0946437900000000054 -0.130693930000000014 0.0355385999999999966 0.16791782999999999 0.255530360000000012 165 0 163 2 0.707155470000000008 170.205002 0 0 31 false 0.92464780000000002 1.59322743605979 0.0388419712961302968 0.00311280139999999981 19 10 0.269453529999999997 0 19 false 160 1130.90252075063995 2.56122787763970994 441.546997 18.0548019999999987 17 609.953822393560017 9.27734672032386953 65.7465799999999945 18.3881450000000015 14 800.099832645769993 11.5489078244007999 69.2792699999999968 17.5040590000000016 1.24683929999999998 0 0.884086599999999945 0.333343500000000015 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.301305088127009 -63.3212611223422002 22.4643174873185991 -13.0563202731011003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164162647472896 2481164162647472896 1283555620 2015.5 25.6125071432180995 0.0368574707818805011 -3.40107774130800999 0.0307092791757127004 1.77916330993685001 0.0461817688982135016 38.5252300000000005 8.31220058538112028 0.0696568069779081034 7.2255803982078497 0.0693109162272113055 -0.0220538199999999983 0.512727900000000014 -0.0435121600000000011 -0.0010030836999999999 -0.365447159999999993 -0.237157900000000005 -0.424675320000000023 0.164061280000000004 0.272597460000000014 0.352671620000000019 174 174 173 1 6.2790619999999997 310.377991 0 0 31 true 375.366759999999999 1.54580822205143997 0.00970721766305148934 0.00938651499999999979 20 10 0.0510629000000000013 0 21 false 169 408038.820195635024 112.311809003760004 3633.09009 11.6616119999999999 20 192654.225905998988 212.095171405569999 908.33856000000003 12.1394415000000002 20 304769.691959525982 257.862210765359009 1181.90900000000011 11.0519905000000005 1.21906029999999999 0 1.08745099999999995 0.477829930000000014 0.609621049999999998 8.78205433575196004 1.19658704380712999 3 5000 4.5 0 NOT_AVAILABLE 152.327115678502992 -63.323438254330803 22.4706981603640017 -13.0663398778517994 100001 4993.87988 4862.95996 5099.31982 \N \N \N \N \N \N 200111 3.16943140000000012 3.03971549999999979 3.34238269999999993 5.62872199999999978 5.42368030000000001 5.83376400000000039 +1635721458409799680 Gaia DR2 2481164162647215872 2481164162647215872 593209286 2015.5 25.6124278693609 1.38271353624402993 -3.39986096035101992 1.8240097247076299 \N \N \N \N \N \N \N 0.553453149999999949 \N \N \N \N \N \N \N \N \N 67 0 66 1 1.92892409999999992 84.0541992 3.07980894163569996 1.93572476094905999 3 false 0.0240299650000000004 \N \N 0.191123860000000007 8 7 6.95778229999999986 0 8 false 66 107.197880106431001 1.83872000946095993 58.3003006 20.6128999999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.325771215662996 -63.3223787873948964 22.4710825860748997 -13.0651794521540996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358643200 2481163299358643200 1398831606 2015.5 25.6252861819358984 0.119779783763746997 -3.42464169410584995 0.0866641073638800968 5.57601264137470043 0.149496535286853 37.298606999999997 10.5672379014485003 0.21271343413278801 -3.89957460837926018 0.161819730957601993 0.0100226759999999995 0.5499058 0.0117267540000000007 0.0812084400000000067 -0.245196610000000009 -0.0287152619999999983 0.0335411899999999985 0.0513185079999999988 0.168403500000000012 0.186801419999999996 168 0 165 3 3.84862100000000007 238.322006 0.39356962151108299 2.67266052331626991 31 false 1.59036299999999997 1.22847702971473005 0.0279207933436730997 0.0373599699999999993 19 10 0.193328069999999991 0 19 false 163 2193.53953081615009 3.09837978699746985 707.963013 17.3355029999999992 16 373.433627161739992 10.3806494735596004 35.9740139999999968 18.9208549999999995 17 2926.60044280648981 11.7299220806819999 249.498719999999992 16.0960120000000018 1.50443339999999992 0 2.82484249999999992 1.58535200000000009 1.23949050000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.375658595532002 -63.3390358550832033 22.4739661915173983 -13.0929453643560993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358644096 2481163299358644096 337110707 2015.5 25.6238817359053996 0.143774420195942998 -3.42001380962455004 0.122143503943403994 4.14128242085589982 0.19612621993114901 21.1153949999999995 2.91097258200727982 0.283774171332233982 -41.912973380793801 0.222978816801740004 -0.063057450000000001 0.433138970000000012 0.0483080369999999981 0.0434970100000000026 -0.453460479999999999 -0.108591270000000004 -0.050015416 0.103403314999999996 0.230465399999999987 0.216746820000000007 167 0 167 0 1.82744559999999989 196.412003 0.247963383324741993 0.512294725427522968 31 false 0.920345799999999992 1.2366522944879399 0.0370520352100816019 0.0338330800000000015 19 9 0.26093559999999999 0 19 false 163 1121.46348734786989 2.12497467347357993 527.754028 18.0639040000000008 18 221.659662545993001 7.51306152780532965 29.5032400000000017 19.487171 18 1469.16613809659998 10.8408888713869 135.520810000000012 16.8442420000000013 1.50769580000000003 0 2.64292900000000008 1.42326740000000007 1.21966170000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.36833093213599 -63.3354903658325981 22.4743775384833988 -13.0881264196519993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163368078122112 2481163368078122112 8961020 2015.5 25.6174548001983986 0.334419645113454012 -3.41344666151039 0.2955944208879 0.890944672668687043 0.427498835808325983 2.0840869999999998 -0.678631792076237028 0.651831614180202967 -5.05113951385710003 0.536981157147849997 0.0820805099999999954 0.438686279999999984 0.0833779050000000022 0.0751959759999999977 -0.278207329999999975 -0.0188745370000000003 0.15123412 0.0185386950000000009 0.166671320000000012 0.196007979999999998 166 0 164 2 1.03953059999999997 177.548996 0 1.59381032202658002e-15 31 false 0.157712550000000007 1.27025897797865994 0.0929204199744325943 0.0240108649999999993 19 10 0.592800140000000031 0 20 false 164 308.945824500260983 1.25107286835171005 246.945007 19.4636600000000008 17 101.194051409679005 10.8452699203894998 9.33070850000000007 20.3385010000000008 16 404.239806659133023 23.7378303051780009 17.0293500000000009 18.2453229999999991 1.63599509999999992 0 2.09317779999999987 0.874841700000000055 1.21833609999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.34907039219101 -63.3323970378115035 22.4707364703561012 -13.0796583475981993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164609324072192 2481164609324072192 578695905 2015.5 25.6580264187172986 0.146835460516791 -3.41476377377294993 0.120594666500551007 0.412307886959768999 0.189296272311019004 2.17810900000000007 0.450782019397032996 0.283124203584618983 -4.7475257889803899 0.213388835343988004 0.173845100000000002 0.472666499999999989 0.203358490000000003 0.0833148699999999992 -0.0570630430000000008 -0.034971002000000001 0.296704740000000022 -0.140805130000000001 0.193159009999999992 0.079449510000000001 119 0 118 1 -0.0869052560000000002 111.038002 0 0 31 false 1.38571700000000009 1.53529531173827993 0.037251073315369497 0.115921065000000004 14 9 0.254085479999999975 0 14 false 116 1508.52752893852994 2.61979844537646001 575.817993 17.7419830000000012 11 727.453735813797948 6.65465202532815958 109.315070000000006 18.1968749999999986 12 1122.1791788150399 11.7609330785029993 95.4158299999999997 17.1367650000000005 1.2261181000000001 0 1.06011009999999994 0.454891199999999996 0.605218900000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.431433740034009 -63.3158230899746997 22.5088975119283994 -13.0957940261315997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358909349216768 2481358909349216768 1400567342 2015.5 25.5220873762253007 1.16284072727947008 -3.20180364890733982 0.991653782446109022 \N \N \N \N \N \N \N -0.276572170000000006 \N \N \N \N \N \N \N \N \N 103 0 103 0 1.06260189999999999 112.907997 0 0 3 false 0.0320824160000000025 \N \N 0.0880330299999999982 12 8 4.00418900000000022 0 12 false 105 123.333136281071006 1.54069647957773004 80.0502014 20.4606670000000008 9 68.9130912789278938 17.0832680466991 4.0339520000000002 20.7556340000000006 9 105.506498112984005 5.65718238765270964 18.6500100000000018 19.7037219999999991 1.41421510000000006 0 1.05191229999999991 0.294967650000000026 0.756944660000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.953886366153 -63.1832777030863966 22.4598675419953011 -12.8478281614004999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164815482501760 2481164815482501760 1550813836 2015.5 25.6405138604540994 0.0488334116277370986 -3.39845373990014021 0.0360108775184004026 0.582586029336297995 0.0579322730947431017 10.0563300000000009 4.84857969302206016 0.0907547639657153016 -5.91091335695669962 0.0724745807869389969 0.056607339999999999 0.521139559999999946 -0.0102079389999999992 0.0154866589999999998 -0.137402560000000007 -0.114542179999999993 -0.0650290200000000068 0.0559450400000000014 0.190211770000000002 0.137163879999999988 144 0 142 2 -0.733592000000000022 124.584999 0 0 31 true 12.6933249999999997 1.59470386704343992 0.0129122537401892001 0.0074914650000000001 17 10 0.0872061499999999962 0 17 false 141 10875.2930241305003 7.07607793978672017 1536.91003 15.5972629999999999 16 5988.5728474159796 19.6600324711093997 304.606449999999995 15.90808 16 7253.26027825292022 33.4067381735354019 217.119670000000013 15.1105870000000007 1.21760700000000011 0 0.797493000000000007 0.310816760000000025 0.486676219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.380524756021003 -63.3088349056739972 22.4983747552407998 -13.0741937713001004 100001 5884 5777.81982 6129.25 0.140000001 0.0680000037 0.207100004 0.0710000023 0.0340000018 0.103100002 200111 1.07930470000000001 0.994660199999999994 1.11933839999999996 1.25797939999999997 0.988463940000000041 1.52749489999999999 +1635721458409799680 Gaia DR2 2481164879909667968 2481164879909667968 1160168844 2015.5 25.6405971378387996 0.633586336215247958 -3.39742276149340983 0.535106492273533019 1.33352481891858998 0.80552595953332895 1.65547099999999991 -4.65011043528463031 1.24843539354975008 -6.66919781335311956 0.929434723162356979 0.125405149999999993 0.4533084 0.134405730000000001 0.0791806199999999932 -0.0538386400000000001 -0.131446570000000013 0.284124800000000011 -0.028589802000000001 0.295857939999999986 -0.00798403599999999991 140 0 139 1 3.02371200000000018 189.005997 0.935646648906566014 0.409506043886225024 31 false 0.0547848000000000016 1.24194344937587009 0.163298732187110995 0.0559084700000000018 17 10 1.1011953000000001 0 17 false 138 159.301627137959997 1.26429816506839998 126 20.182815999999999 10 96.9502259122203043 19.117277369560199 5.07134060000000009 20.3850149999999992 12 217.85706454806899 8.24803908503301919 26.4131950000000018 18.9164899999999996 1.97617130000000008 0 1.46852490000000002 0.202199939999999995 1.26632499999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.379685064856005 -63.3078718051511018 22.4988437579220992 -13.0732658063552005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165983713605888 2481165983713605888 662244427 2015.5 25.5881978180273997 0.847140053327565035 -3.36159871624724982 0.563682812217082052 2.78495221262003012 1.07028834705550002 2.60205799999999998 7.42888129909569983 1.31087788412320005 -18.4364511634673001 0.898323423954612954 -0.388887970000000027 0.668031599999999948 0.301879669999999989 -0.0206282869999999986 -0.569541159999999991 -0.164398850000000013 0.13383043 0.101923570000000005 0.0946621899999999933 0.0666224499999999997 146 0 146 0 4.40690570000000026 227.787994 2.24272054980405988 4.08418123417018997 31 false 0.0542940199999999984 1.33680191344972998 0.159799754009506995 -0.105396870000000004 17 9 1.25153390000000009 0 17 false 146 203.543839098834013 1.7320879424281399 117.514 19.916720999999999 13 94.385332032190604 8.38440815380299931 11.257244 20.4141270000000006 13 254.890606553191986 8.74348344284079992 29.1520650000000003 18.7460349999999991 1.71597400000000011 0 1.66809270000000009 0.497406000000000015 1.17068670000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.240107055535987 -63.2985333001119983 22.4624610097400996 -13.0206990370631992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166013778077696 2481166013778077696 1114540472 2015.5 25.5943184537847017 3.74905182869736997 -3.35579992051254017 8.76031115318757969 \N \N \N \N \N \N \N -0.886874000000000051 \N \N \N \N \N \N \N \N \N 64 0 63 1 -2.67594200000000004 33.2275009 0 6.59722368031097022e-16 3 false 0.0183056459999999983 \N \N -0.0126630930000000003 8 6 97.5228100000000069 0 8 false 64 83.4973383524923065 1.81518427409909 45.9994011 20.8841840000000012 6 58.312095726582001 15.2751353476670992 3.81745199999999985 20.9369900000000015 7 62.7379672085818001 9.16713798047116946 6.84379000000000026 20.2680930000000004 1.44974760000000003 0 0.668897599999999981 0.0528068540000000003 0.61609080000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.246708182443001 -63.2906491958297011 22.4704832708648006 -13.0175575375502994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165910701738240 2481165910701738240 1293646092 2015.5 25.5982799143685007 0.705068887733412031 -3.3747110062559198 0.848363349265419009 2.14321162551892019 0.968621224653403945 2.21264169999999982 8.00596390927628043 1.69281904914681003 -22.6253772884698989 2.51282739285234014 0.183303999999999995 0.32648617000000002 -0.0864909440000000002 -0.208386929999999998 -0.468434569999999995 -0.420359939999999987 -0.559649300000000016 0.170220630000000012 0.303605559999999997 0.613237440000000023 127 0 126 1 1.68970630000000011 148.470001 1.6764245878528099 1.0134206901754701 31 false 0.043301217000000003 1.61910248102608989 0.222562533109089994 0.0597559999999999966 16 9 2.49790100000000015 0 16 false 128 141.242915112546996 1.61103150839095011 87.6723022 20.3134499999999996 13 53.6130665602929994 8.1184963015599898 6.6038174999999999 21.0282119999999999 13 162.994265778426012 11.9158849169589001 13.6787379999999992 19.2314900000000009 1.53358020000000006 0 1.79672239999999994 0.714761729999999984 1.0819607 \N \N 0 \N \N \N NOT_AVAILABLE 152.273003476219998 -63.3059350745445997 22.4671098694751983 -13.0365960940796004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166013777983616 2481166013777983616 1279528788 2015.5 25.5959935259763007 0.343386878194332001 -3.3572616360632801 0.235260580021649013 0.414653051773184012 0.432420356900781011 0.958911960000000008 0.756012575942829002 0.52997722858049201 -4.5654807631114398 0.383032305515129012 -0.412412759999999989 0.687197100000000005 0.226597729999999997 -0.0320068900000000031 -0.576769050000000005 -0.21674794 0.113287814000000001 0.174226309999999995 0.101117544000000004 0.0500713029999999976 155 0 149 6 3.85426070000000021 218.929993 0.838633995937244969 2.55046596152789995 31 false 0.310933620000000022 1.59090990229410001 0.0658583110741182004 -0.0799477799999999961 18 9 0.507638200000000039 0 18 false 146 621.411093233076031 2.38407426025049007 260.651001 18.7049179999999993 17 310.362913198255001 12.7749106687936003 24.2947239999999987 19.1217140000000008 15 472.861561575435985 9.48672674519905001 49.8445430000000016 18.0750850000000014 1.26039670000000004 0 1.04662900000000003 0.416795729999999975 0.629833199999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.251475100284011 -63.2912343309349978 22.4715265903364987 -13.0195322734514001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165945058506112 2481165945058506112 526038033 2015.5 25.6089969281385983 0.580416660476230972 -3.36126570267424007 0.398965057183487015 1.27431706393980004 0.743202475764112025 1.71462979999999998 52.3302801705723013 0.878619566654335049 6.41697713322331964 0.626118912321778964 -0.407682060000000013 0.698245169999999971 0.233882730000000011 -0.0365530770000000033 -0.578129349999999986 -0.186883359999999998 0.184517010000000009 0.152795569999999992 0.0653091150000000009 0.0462320700000000001 154 0 152 2 2.05550530000000009 184.360001 1.31297552895565994 3.61101154879712016 31 false 0.109104000000000007 1.3955305400418001 0.107552701514661994 -0.0585441179999999992 18 9 0.846846039999999967 0 18 false 152 291.849964666798996 1.7980882287892701 162.311005 19.525466999999999 14 80.2438490163503957 9.71591333463602069 8.25901200000000024 20.5903589999999994 14 404.433598841648006 7.33399635393286964 55.1450499999999977 18.244802 1.66070760000000006 0 2.34555630000000015 1.06489180000000005 1.28066440000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.281346357144002 -63.2891666619103006 22.4824011949555995 -13.0280345737494994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353690964495616 2481353690964495616 666459973 2015.5 25.5861523158894002 3.92136198965862981 -3.34634948669321997 1.71635514027208003 \N \N \N \N \N \N \N -0.861113699999999982 \N \N \N \N \N \N \N \N \N 69 0 69 0 1.31424830000000004 79.278801 0 0 3 false 0.0666576799999999969 \N \N -0.374903829999999993 8 5 8.27393600000000085 0 9 true 71 189.474582676038011 1.92258258602400001 98.5521011 19.9944880000000005 5 53.2779204711213978 12.2551331399423997 4.34739640000000005 21.0350199999999994 6 278.011781680733975 11.3072133954485992 24.5871180000000003 18.6517620000000015 1.74846520000000005 0 2.38325880000000012 1.04053309999999999 1.34272579999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.221216355101006 -63.2857027099879019 22.466275574876601 -13.0057693469795996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353686669406848 2481353686669406848 1628015532 2015.5 25.5883122747956016 0.355274346029992028 -3.33846682026036978 0.248060074880374987 1.1497364699255701 0.455142274776692002 2.52610350000000006 -2.08671626473981986 0.543281170569485994 -8.16932690460781075 0.402962107298098005 -0.422215940000000012 0.69068609999999997 0.259453400000000001 -0.0608707799999999993 -0.597465899999999994 -0.194385539999999996 0.146453660000000013 0.138115989999999994 0.0529089400000000015 0.0658476999999999951 154 0 154 0 1.52167999999999992 176.095993 0 0 31 false 0.287458500000000006 1.3228212285901999 0.0677796922104207944 -0.0589399040000000013 18 9 0.524580060000000015 0 18 false 154 479.29271645067098 1.53028509832811999 313.204987 18.9868640000000006 17 111.853575279923007 7.2757380248310497 15.3735029999999995 20.2297629999999984 17 582.337658790538967 11.0986510442326001 52.4692269999999965 17.8489819999999995 1.44836589999999998 0 2.38078119999999993 1.24289899999999998 1.13788219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.217885956141004 -63.2776687881965998 22.471311953296901 -12.9992344466991998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166116857201408 2481166116857201408 426486472 2015.5 25.610122273456799 0.103440558379347 -3.3354383213434402 0.0801682919541673034 0.136914149300144006 0.127248004050762004 1.075963 3.95315348010288004 0.195129439838091001 -5.42405903905581965 0.17021361236518201 -0.141597329999999993 0.509646999999999961 0.100159529999999997 -0.039763699999999999 -0.399573920000000027 -0.16808613 -0.107285829999999999 0.0714714399999999972 0.170575279999999996 0.170627919999999988 157 0 156 1 0.409583120000000023 157.542999 0 0 31 false 2.1643631000000001 1.62183034645915991 0.024430381511112001 -0.00696703649999999997 18 10 0.182036239999999988 0 18 false 155 2327.77441985794985 3.30028457217902016 705.325012 17.2710129999999999 16 1245.75514474739998 19.1032111493980992 65.211820000000003 17.6128059999999991 17 1615.9444073509701 13.7695438256132991 117.35642 16.7408539999999988 1.22937150000000006 0 0.871952060000000029 0.341793059999999982 0.530159000000000047 \N \N 0 \N \N \N NOT_AVAILABLE 152.258505427970988 -63.2654427623537003 22.4932325916078995 -13.0044348314608005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166151216940416 2481166151216940416 170125203 2015.5 25.6155610979392989 0.584281789338228053 -3.33335973248575002 0.423409523402698995 0.598649180938559011 0.726325543120403982 0.824216069999999967 -0.746573065469682051 1.11185162387039993 -2.86765079599571981 0.724923494133170032 -0.25093167999999999 0.518526400000000054 0.0962533299999999981 -0.0333448949999999994 -0.477563919999999975 -0.14296143 0.184863269999999996 0.0971091199999999932 0.0980768499999999932 0.0171213319999999995 154 0 153 1 1.04568860000000008 166.009003 0.878661832202614956 0.557698985169507999 31 false 0.0783583449999999959 1.59504679325941989 0.123889944440868996 -0.0527870429999999988 18 10 0.983421800000000013 0 18 false 151 221.593581093869005 1.78929683606767997 123.844002 19.8244720000000001 16 72.0987194244297029 5.47138286438369015 13.177422 20.7065699999999993 16 264.197544478981001 10.1715956550296003 25.9740499999999983 18.7070979999999984 1.51762639999999993 0 1.99947169999999996 0.882097240000000005 1.1173744000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.267344872821013 -63.2612017183552027 22.4991991275167003 -13.0045010258708995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165773259813760 2481165773259813760 406947106 2015.5 25.6326116811954989 1.45969658248903 -3.36774574193482978 1.33812374032986003 -4.18502236058899957 2.15340654954205979 -1.94344270000000008 9.94820883678817047 2.28578997758443014 -14.6333862586789998 3.30310171273317987 -0.305639559999999977 0.735636900000000038 0.285774299999999981 -0.00590238859999999994 -0.640227850000000043 -0.536766469999999996 -0.553920030000000008 0.36224561999999999 0.365368499999999985 0.534050800000000048 100 0 99 1 -0.16553967 91.0940018 0 0 31 false 0.0287324620000000003 1.8355655689594399 0.304203742788764997 0.0640649699999999989 13 8 3.3701620000000001 0 13 false 99 100.501926558264998 1.36624202458267008 73.5608978 20.6829299999999989 10 55.3267202605992026 9.08034053413000031 6.09302299999999963 20.9940509999999989 13 107.465069210989 11.0093535652921002 9.76125099999999968 19.6837519999999984 1.61978770000000005 0 1.31029890000000004 0.311120999999999981 0.999177929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.334812132263011 -63.2846845390170998 22.5024505384606002 -13.0427383397688992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165777555175808 2481165777555175808 641777810 2015.5 25.6449172869976003 3.13092692756882984 -3.3737287768264701 1.98906920378863994 \N \N \N \N \N \N \N -0.3200326 \N \N \N \N \N \N \N \N \N 113 0 113 0 29.7570149999999991 1397.57996 12.9629126425224008 73.1794163001797955 3 false 0.00517551500000000032 \N \N 0.0336386259999999979 14 8 4.83151439999999965 0 14 false 121 190.593035174225008 2.70670350526581993 70.4151993 19.9880980000000008 12 161.735044350381997 12.8199777362060008 12.6158599999999996 19.8293779999999984 12 403.058620296368986 10.1784465054923992 39.5992279999999965 18.2484989999999989 2.96334890000000017 0 1.58087920000000004 -0.158720019999999989 1.73959920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.365206140243998 -63.2846841139480034 22.5119141303828982 -13.0528232966274995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705420800 2481165051705420800 31738011 2015.5 25.6595287748480985 1.14527714952477 -3.36965839606491002 1.09453440196057006 -0.527470163836989969 1.49562004528381998 -0.352676570000000023 0.0804113206528598995 2.05592551235102983 -2.72630050802604007 2.55119709029116004 0.10274701 0.572728000000000015 0.0478473640000000033 -0.104164839999999995 -0.365420940000000027 -0.518111050000000017 -0.614213349999999991 0.311726479999999972 0.44617772 0.447127849999999993 105 0 102 3 -0.139777469999999987 94.4098969 0 0 31 false 0.0310266969999999989 1.89564853442239989 0.268738378899585018 0.0789275499999999991 12 9 2.64444070000000009 0 13 false 101 114.807974061161005 1.6012820883162 71.6975021 20.5384349999999998 9 39.9611939197105031 10.7756630411338996 3.70846719999999985 21.3472919999999995 9 140.38153495031699 4.01221156907022003 34.9885670000000033 19.3936439999999983 1.57082060000000001 0 1.95364760000000004 0.808856959999999958 1.1447906000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.390396933156012 -63.2746326874132023 22.5273740064655001 -13.0544076152378992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165876340171776 2481165876340171776 1637181883 2015.5 25.6458036029213012 1.53838071741171989 -3.34608003883362981 1.23826423948788999 0.156047815649651006 1.83415327032097997 0.0850789400000000057 -15.0708882684429 3.66960230511890995 -9.02118255895186039 3.43528401535062011 -0.23227798999999999 0.327177139999999977 -0.445153679999999996 4.11324439999999998e-05 -0.630910900000000052 -0.065821599999999994 -0.327373899999999995 0.0937872500000000026 0.0764185339999999963 0.502384500000000012 104 0 103 1 -0.88369909999999996 85.5311966 0 0 31 false 0.0196264439999999998 1.76675279386637007 0.357409212178549984 -0.050257259999999998 13 8 3.85866210000000009 0 13 false 107 92.7018698932339049 1.56625799516245001 59.1867981 20.7706449999999982 6 64.6788558609474933 13.6863242265593996 4.72580199999999984 20.8244819999999997 8 115.625201983943995 15.0473634935530001 7.68408400000000036 19.6042880000000004 1.94498839999999995 0 1.22019389999999994 0.0538368229999999989 1.16635700000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.340052826572986 -63.2594401887723023 22.5232050303472988 -13.0274413849087001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166254296153600 2481166254296153600 225304589 2015.5 25.6536470583296001 0.588740137864329993 -3.34736588057250017 0.410176800760389981 0.571534776833553027 0.819130656040657046 0.69773333999999998 2.94225889009773001 0.934258023967109996 -5.51286148028843037 0.663721513795893947 -0.108842685999999994 0.640348999999999946 0.0939904200000000051 0.194990859999999988 -0.414662750000000024 -0.0701971099999999931 0.0276688190000000007 0.167127890000000001 0.292414159999999979 0.229107169999999999 144 0 144 0 0.758228959999999952 151.322998 0 1.70462085379786998e-15 31 false 0.0903852700000000037 1.62687708598423009 0.124841166833749004 0.0823015599999999958 17 9 0.88348850000000001 0 17 false 144 235.053203270161987 1.63995185973474999 143.328995 19.7604499999999987 14 135.598285136818987 8.37303294254708064 16.1946429999999992 20.0207520000000017 13 181.513734172556013 15.4235509148196002 11.7686089999999997 19.1146470000000015 1.34910740000000007 0 0.906105040000000028 0.260301600000000022 0.645803449999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.356948596914009 -63.2571676563219967 22.5301920973316996 -13.0315188635242993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164678043548544 2481164678043548544 975245292 2015.5 25.6873828454526993 0.0398741560340050982 -3.40979100825992987 0.0272219679036877008 3.04548895372243988 0.0534224688289317989 57.0076400000000021 37.0945954416717996 0.0546551698344752979 -25.3265099176044011 0.0552896188869693994 -0.219246030000000008 0.758797170000000021 -0.0181497670000000007 0.0255146829999999998 -0.455168499999999976 -0.00506191330000000002 -0.0700437099999999951 0.0146149769999999995 0.0260126609999999994 0.381656019999999985 121 8 119 2 -2.77679279999999995 76.4896011 0 0 31 true 145.019200000000012 1.56235685403547997 0.00850180443918478919 0.0116056930000000003 14 9 0.0590082629999999983 0 14 false 118 114341.285906125006 53.3411287142165023 2143.59009 13.0428580000000007 13 55845.1097136351018 108.513462186607995 514.637629999999945 13.4839249999999993 11 83938.3749510052003 153.940171385693986 545.266240000000039 12.4520189999999999 1.2225109999999999 0 1.03190610000000005 0.441066740000000013 0.590839400000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.485170824380987 -63.2984801076135994 22.5387516730835991 -13.1019569618012994 100001 5133.75 5063.74023 5304 0.216999993 0.133599997 0.319499999 0.107000001 0.0670000017 0.155399993 200111 0.91471385999999999 0.856934549999999962 0.940181849999999986 0.523605349999999969 0.504475950000000006 0.542734739999999993 +1635721458409799680 Gaia DR2 2481164673748044800 2481164673748044800 178891263 2015.5 25.6884775000479983 0.0614932868143584013 -3.40940695354864998 0.0419718223277772973 3.20905192646084991 0.0816026199063085989 39.3253559999999993 36.290393369567802 0.0850892475649775992 -25.3540845963615986 0.086500436188786306 -0.183240459999999994 0.752102200000000054 0.00447278239999999994 0.0410081200000000021 -0.422040579999999999 -0.0462750980000000006 -0.129388819999999988 0.0508029539999999974 0.0675398299999999951 0.381864370000000009 121 121 121 0 0.320264040000000028 120.263 0 0 31 true 349.197699999999998 1.57598159136633997 0.0134499952761337003 0.0107281579999999998 14 9 0.0552566099999999977 0 14 false 121 257262.489201074 3660.48804032581984 70.280899 12.1624239999999997 14 131152.646058096987 5929.84105842056033 22.1173970000000004 12.5569459999999999 14 186379.615360458993 7857.11983573604994 23.7211110000000005 11.5859240000000003 1.23427339999999997 0 0.971021649999999958 0.394521699999999975 0.576499940000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.486978978661 -63.2976546476562021 22.5399399730832002 -13.1020020335232008 100001 5293.33008 5030.33008 5570.60986 0.504999995 0.386500001 0.66079998 0.250999987 0.194900006 0.321999997 200111 1.2092681999999999 1.09188189999999996 1.33902169999999998 1.03432499999999994 0.998557000000000028 1.07009299999999996 +1635721458409799680 Gaia DR2 2481164952921455104 2481164952921455104 531666361 2015.5 25.6647616331408983 0.132323307924513994 -3.37903262498269985 0.0873295196709211047 2.66695726291227997 0.174288871647644006 15.3019359999999995 -11.1136934897265007 0.182036961676517006 -3.31746421394873003 0.145084694734740005 -0.270937380000000005 0.747262699999999946 0.130406629999999996 0.0209370479999999998 -0.481823700000000021 -0.0202385129999999996 0.236956240000000012 0.0576646140000000029 0.0197840500000000009 0.184484800000000004 131 0 131 0 3.36044030000000005 186.360992 0.304297311855408981 2.26990374538888018 31 true 2.77833079999999999 1.36729086589811 0.0247472627697007015 0.0398461260000000025 15 9 0.179352359999999988 0 15 false 127 3574.98293257795012 3.80813031696690985 938.776001 16.8051819999999985 13 998.807505141234969 7.71308623365994972 129.495180000000005 17.852684 14 3885.58587618932006 13.6401576681478005 284.863699999999994 15.7882789999999993 1.36627040000000011 0 2.06440540000000006 1.0475025 1.01690290000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.409980197231988 -63.2807661616409973 22.5288181508391006 -13.0650464612829005 100001 3782.72998 3637 4234.91992 0.239500001 0.0829000026 0.400299996 0.133000001 0.0524999984 0.218799993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307008 2481165051705307008 1663287751 2015.5 25.6665804108209983 0.720360762326065052 -3.37565885253675013 0.562981872215738033 0.479213212751383011 0.999443715682253986 0.479479939999999993 -0.188638506347123008 1.12923909792461008 -4.28163970014611017 0.89459586487766396 -0.102847499999999994 0.641236959999999967 0.145802719999999997 0.123203404000000002 -0.433843970000000023 0.069376199999999999 0.251894859999999998 0.00965289599999999935 0.0870494700000000038 0.246427310000000011 144 0 144 0 1.19609030000000005 159.181 0 0 31 false 0.0571776140000000016 1.89922947124436003 0.16127368140958101 0.0838848499999999969 17 10 1.05252830000000008 0 17 false 144 171.402470996212003 1.53807186384638994 111.440002 20.1033229999999996 13 112.320326843686004 10.2378528254886003 10.9710830000000001 20.225242999999999 12 118.481422881487006 8.65273869501477932 13.6929390000000009 19.5777949999999983 1.34654859999999998 0 0.647447600000000012 0.121919630000000001 0.525527949999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.410316954347991 -63.2769378613012989 22.5318259025718994 -13.0625777668876992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091201920 2481161650091201920 483875343 2015.5 25.7096134987193992 0.273054289227444014 -3.42217728409588018 0.181321889975770006 3.57853062651174003 0.374508262819233995 9.55527799999999949 36.7068227992835006 0.373405815324170998 -25.5144089819116004 0.311495818587289974 -0.215464829999999996 0.747158349999999971 0.0709544639999999949 0.100721574999999994 -0.483106599999999997 0.0421556699999999993 0.0915272300000000011 0.0367603300000000008 0.0802169699999999986 0.32153246000000002 129 0 128 1 4.27815000000000012 202.112 0.730208717402856977 3.69969509270962016 31 false 0.60617494999999999 1.29275010182023009 0.0561719402774739987 0.0862897999999999998 15 9 0.372743400000000003 0 15 false 127 1095.46219312990002 2.50862094974830008 436.678986 18.0893729999999984 14 188.480910609895005 5.90249691629596018 31.9324039999999982 19.663219999999999 14 1474.56593584392999 14.1183289958306002 104.443375000000003 16.8402600000000007 1.51812349999999996 0 2.82296000000000014 1.5738468000000001 1.24911309999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.541649697976993 -63.2998350502964016 22.5552571723994006 -13.1216408507214002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161753170420992 2481161753170420992 1094778668 2015.5 25.7121730720417006 0.978706578502115954 -3.40207693125078015 0.769881538174501001 \N \N \N \N \N \N \N 0.0912290699999999954 \N \N \N \N \N \N \N \N \N 137 0 136 1 44.7573050000000023 3006.15991 5.93151674780332971 218.083947720630988 3 false 0.0266130379999999986 \N \N 0.129169449999999991 16 10 1.67212010000000011 0 16 false 136 820.844157931244013 6.25444683051811978 131.242004 18.4027139999999996 12 685.377144087599959 9.58231865377060998 71.5251849999999934 18.2615639999999999 11 1141.1746743972999 8.97942911821001921 127.08766 17.1185399999999994 2.22521140000000006 0 1.14302440000000005 -0.141149520000000001 1.28417399999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.527057830625012 -63.280663798881001 22.5652912853541991 -13.1038911727221006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307264 2481165051705307264 250403498 2015.5 25.6698624879292012 0.271105876441821991 -3.37284203193090004 0.187350239616844993 0.256745275253644989 0.356310454261632992 0.720566200000000046 44.2504196860057988 0.389047787819502 -19.5324850382223012 0.333604413129437005 0.13439029999999999 0.708636500000000003 0.0873387600000000014 0.148755090000000006 -0.155167219999999995 0.0668807800000000008 0.142728309999999997 0.0227106600000000006 0.136120380000000013 0.319327650000000018 131 0 130 1 1.13525000000000009 143.091995 0.436525610213974014 0.817938061227846958 31 false 0.513153300000000034 1.51500703341528009 0.0640600067815186996 0.175147770000000008 15 9 0.381164759999999991 0 15 false 129 803.083895335195052 2.1563222474019601 372.432007 18.4264639999999993 13 381.757387319728991 14.6620546354170997 26.0370999999999988 18.8969200000000015 11 643.895723929653968 8.84417651384067049 72.8044900000000013 17.7398820000000015 1.27714309999999998 0 1.15703770000000006 0.470455169999999978 0.686582570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.414115700695987 -63.2729691344911984 22.5360174821400001 -13.0611645264398994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165429662430208 2481165429662430208 1514059112 2015.5 25.6741497471831011 0.379510949585849022 -3.36402981774307008 0.252271070042159984 0.74891108523532901 0.506367837847745972 1.47898630000000009 -3.88341108789501011 0.538073064516979005 -18.2421892180859011 0.406451716202536006 0.0780085900000000027 0.708702999999999972 0.110139585999999998 0.224466799999999994 -0.205997779999999991 0.120581480000000005 0.31466814999999998 0.0313401040000000006 0.172757729999999998 0.250878270000000014 141 0 140 1 2.73437330000000012 184.278 0.745371915755921988 1.34386558848184001 31 false 0.263637779999999988 1.54540229176717991 0.0771267096341388958 0.141697380000000012 16 9 0.519565700000000019 0 16 false 141 515.586023690497996 1.94264773691401005 265.403992 18.9076139999999988 13 157.607184868670004 7.35998072378265977 21.4140760000000014 19.857448999999999 14 549.41072827492701 11.0324269239127997 49.7996249999999989 17.9121780000000008 1.3712899999999999 0 1.9452704999999999 0.949834799999999979 0.995435700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.414069811350004 -63.2631726132200001 22.5434318115366992 -13.0545459072696008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165395302692736 2481165395302692736 442634520 2015.5 25.6894741685770001 2.80133867579119 -3.35985014866573994 2.65093805587726017 \N \N \N \N \N \N \N 0.0333592559999999969 \N \N \N \N \N \N \N \N \N 113 0 111 2 29.3819769999999991 1363.77002 15.3541239679118 489.855447475616018 3 false 0.00367012480000000014 \N \N 0.206519160000000007 14 9 5.71597579999999983 0 14 false 116 156.722543274107011 1.61900142049180995 96.802002 20.2005370000000006 10 154.647238500022013 10.5551436863852004 14.6513620000000007 19.8780329999999985 11 373.891855552376001 11.7249603227911994 31.8885380000000005 18.3300550000000015 3.37245099999999987 0 1.54797739999999995 -0.322504039999999992 1.87048149999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.440539908503013 -63.2527021319469966 22.5596127032782015 -13.0562891283216 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165464022170880 2481165464022170880 1263486626 2015.5 25.6857913286827007 0.495897498934138981 -3.35032976307922992 0.35857195376981299 0.315579246062499985 0.638031121739368046 0.494614180000000014 -0.554175219990562962 0.839636378706992037 -0.666237113278767001 0.553835766952987973 0.0220205800000000014 0.559579399999999949 0.26416516000000001 0.176614369999999993 -0.322901339999999981 0.13635122999999999 0.372187140000000027 -0.0735275700000000004 0.118926390000000007 0.191667140000000014 131 0 129 2 0.868731260000000005 137.475006 0.80510735413423995 1.16503882725385011 31 false 0.144876690000000002 1.86875342542453993 0.103972940090971994 0.0958123099999999978 15 10 0.770096800000000026 0 15 false 130 333.903671978793 2.87308791787835993 116.218002 19.3793129999999998 14 222.338554391759004 11.8489915011862994 18.7643430000000002 19.4838500000000003 15 228.978396859176001 8.61356150077129001 26.583475 18.8624340000000004 1.35163820000000001 0 0.621416100000000027 0.104537963999999997 0.516878100000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.423915495447005 -63.2457622484891004 22.5596995904958995 -13.0460838634066008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165498381908736 2481165498381908736 1343673565 2015.5 25.7042055323736989 0.768313384852628012 -3.35415855644846017 0.583038983368442953 -0.788186293194145016 1.07492088780920003 -0.733250500000000027 10.6290343166837005 1.19914850175961996 -6.23626034611173985 0.870138424830579016 -0.118869364000000005 0.637156959999999994 0.127395779999999986 0.153411949999999991 -0.462494699999999981 0.115313559999999996 0.299881249999999988 0.00056183804 0.0813632100000000053 0.241047079999999997 145 0 144 1 0.741604700000000006 151.029999 0 0 31 false 0.0538591740000000027 1.16290033824384009 0.163745364617361999 0.088480390000000006 17 10 1.10259299999999993 0 17 false 145 162.663022700130995 1.28179679798433011 126.902 20.1601430000000015 15 85.6835660079178041 17.5144700552945984 4.89215849999999985 20.5191440000000007 16 192.977276582938003 5.71799073563101956 33.749139999999997 19.0481550000000013 1.71311740000000001 0 1.4709892 0.359001159999999986 1.11198810000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.46433434693401 -63.2411289728029971 22.5757997756571989 -13.0564079181636998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347948592657024 2481347948592657024 398334080 2015.5 25.2416001683493008 1.36500415367454009 -3.43030600324788004 2.28221310055972015 \N \N \N \N \N \N \N 0.465433450000000026 \N \N \N \N \N \N \N \N \N 70 0 69 1 2.01131439999999984 88.7274017 3.4639772983150201 18.7921056556265995 3 false 0.0234702710000000009 \N \N 0.250824659999999977 9 7 6.58505499999999966 0 10 false 71 96.485024344876507 1.4059134588486899 68.6279984 20.7272169999999996 7 61.3606863722916032 4.20809359008780959 14.581588 20.8816619999999986 9 64.6707470939330022 12.0630286896700998 5.36107059999999969 20.2351500000000009 1.30622790000000011 0 0.646513000000000004 0.15444564999999999 0.49206734000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.609481565776008 -63.5100109345433026 22.1064059922395018 -12.9569940165514002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165601461126656 2481165601461126656 1118585628 2015.5 25.7055024054428003 0.332416108253844989 -3.33317038547171007 0.252237611160045005 2.14378742341017992 0.437719446240044996 4.89762900000000023 -8.31498219649825998 0.563487094208636963 -28.7707808357941985 0.416430104807444024 -0.0398530699999999974 0.582496400000000025 0.0841835499999999959 0.121109530000000007 -0.361986279999999994 0.082537910000000006 0.26711111999999998 -0.00405882599999999975 0.083431795000000003 0.212679940000000012 139 0 139 0 4.21469200000000033 214.604004 0.845567296325555051 1.89156989787771002 31 false 0.25935069999999999 1.35896956230325006 0.0806865920450246937 0.0797788200000000003 16 10 0.510044929999999952 0 16 false 138 516.331064323411965 1.97522312062993999 261.403992 18.9060459999999999 10 103.338295872032006 18.0946862175398984 5.7109747000000004 20.3157350000000001 13 744.154120714339001 14.8727870291321 50.0346100000000007 17.5827640000000009 1.64137409999999995 0 2.73297120000000016 1.40968899999999997 1.32328219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.446444430626002 -63.2217058493565034 22.5849619162336985 -13.0373681523306999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157286404416000 2481157286404416000 662618515 2015.5 25.4536209076443996 0.255456711864679997 -3.49464313103558011 0.219539066251446008 0.807973777155207018 0.307179907958074982 2.63029499999999983 2.46127500531712995 0.566186939892646013 -11.9913757253662006 0.390709116399774015 0.204347460000000009 0.266958330000000021 -0.109939090000000003 0.113951759999999999 -0.16735797999999999 0.0437496939999999987 0.22515853999999999 0.0547570900000000013 0.138712840000000004 0.171829019999999999 177 0 176 1 0.743287150000000008 184.414993 0 0 31 false 0.243383349999999998 1.41618098126011005 0.0668528137471390005 0.0135651739999999993 20 10 0.504894550000000053 0 20 false 175 385.013535979458027 1.3015242227519801 295.816986 19.2246759999999988 15 113.040917959287 10.0014467869900994 11.3024570000000004 20.2182999999999993 16 416.489581576271007 6.58841876039492025 63.2154099999999985 18.2129100000000008 1.37535549999999995 0 2.0053901999999999 0.993623730000000038 1.01176639999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.099487890820001 -63.4768005889736031 22.2839359427128016 -13.0948792261220994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157737376395136 2481157737376395136 172581060 2015.5 25.4645324900388985 0.0703383812578458056 -3.4704017773393101 0.0562870744997783015 1.73286801612643004 0.0846622729111948941 20.4680080000000011 20.4464805311799012 0.14627989245610401 11.4852577597389995 0.106069864571833997 0.0869706650000000026 0.361365349999999974 -0.0215742800000000012 0.0653598499999999971 -0.219872280000000003 0.000704128239999999954 0.087226323999999994 0.0207634400000000011 0.155744099999999996 0.165097419999999995 188 0 185 3 4.82564539999999997 287.050995 0.299677338730026999 3.63347329017013987 31 false 3.39109779999999983 1.44155677360229006 0.0171850469944869015 0.0367999859999999998 21 10 0.135071899999999995 0 21 false 180 4426.51507446127016 3.99959264610895016 1106.73999 16.5732120000000016 19 1528.31412517991998 12.0433263592098001 126.901330000000002 17.3908559999999994 19 4296.71494048120985 12.8395141819397001 334.647800000000018 15.6790789999999998 1.31594009999999995 0 1.71177669999999993 0.817644099999999985 0.894132600000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.09786631403199 -63.4502347898750969 22.3035065266772001 -13.0763618886785995 100001 3999.66992 3940.19995 4317 0.168200001 0.0460000001 0.354999989 0.1052 0.0540000014 0.207699999 200111 0.648637800000000042 0.556782699999999964 0.66836439999999997 0.0970050699999999988 0.0871509899999999976 0.10685915 +1635721458409799680 Gaia DR2 2481351522005306368 2481351522005306368 1440377864 2015.5 25.4767464998067013 0.399113072925876999 -3.41209000174002997 0.340658598891798003 0.22544769102918899 0.508244909220315955 0.443580799999999997 4.20055715545780028 0.789532231232903947 -3.12990165946331 0.622543248480592948 0.0783991140000000059 0.429474599999999984 0.0749534800000000029 0.0665737400000000062 -0.268086900000000017 -0.00420920270000000023 0.174356800000000006 -0.00931648350000000014 0.137448270000000011 0.18254477999999999 176 0 172 4 1.19478369999999989 189.076004 0.655003002498628972 0.486254016065906014 31 false 0.107993809999999996 1.51181169301013996 0.104709763464396005 0.0131168629999999994 20 10 0.710326699999999978 0 20 false 173 241.125696562734987 1.33452658816204006 180.682999 19.7327580000000005 14 87.2043188197726948 12.4970058805386 6.97801700000000036 20.500043999999999 14 221.391706938207989 11.8016026907521994 18.7594600000000007 18.8990170000000006 1.27981389999999995 0 1.60102649999999991 0.767286299999999977 0.833740229999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.065811397047014 -63.3924143014403967 22.3372063689932006 -13.0266512708137991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351801178894592 2481351801178894592 289455600 2015.5 25.4612993869220006 1.67990465798774991 -3.39517049619341993 0.933735684048945025 3.86149362580151001 1.96988465694967996 1.96026379999999989 3.1165759788612899 2.69338270781027012 -1.09347380126696003 2.31555954792316987 -0.0964012149999999984 0.680744099999999963 0.368149969999999993 -0.191428999999999988 -0.278029320000000024 -0.304324450000000024 -0.296758350000000004 -0.0242985450000000013 0.0017935786999999999 0.274950980000000011 99 0 99 0 1.8652884999999999 121.174004 1.47545634904762002 0.48830683299720401 31 false 0.0299700599999999998 1.45949673804703006 0.302060235458516013 0.000217391189999999992 12 7 2.60073260000000017 0 13 false 101 100.909132607253994 1.41464554559547007 71.3317032 20.6785400000000017 12 54.6354209962428996 9.65840214464147984 5.65677640000000004 21.0077019999999983 11 78.7098504397955026 7.38897566793168004 10.652336 20.0218470000000011 1.32143900000000003 0 0.985855099999999984 0.329162600000000027 0.656692500000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.018411488885988 -63.3838573024080034 22.3288950089841016 -13.0052394230171995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351762523476352 2481351762523476352 26162654 2015.5 25.4786718509800991 0.652820766668389951 -3.4009281961445299 0.688656708500608006 1.93327896506048003 0.827601895489489037 2.33600120000000011 13.1001292149678008 1.49359743816754009 5.97270551694576035 1.99297153916261993 0.204431000000000002 0.351949200000000018 -0.0259663540000000005 -0.182982119999999998 -0.316620740000000012 -0.272426000000000001 -0.383867530000000012 0.0083238419999999997 0.151696620000000004 0.513669500000000001 131 0 131 0 1.34719480000000003 147.876007 1.14843090002788006 0.569830260925654031 31 false 0.0477456149999999982 1.51764904529436007 0.208018220698832995 0.0576720100000000027 15 9 1.95708820000000006 0 15 false 132 134.298906120108995 1.21065324292760002 110.931 20.3681850000000004 13 62.0230576461224032 11.1892925585168008 5.54307200000000044 20.870004999999999 13 186.971299662831996 14.9150673411424997 12.5357330000000005 19.0824829999999999 1.8540312000000001 0 1.78752139999999993 0.501819600000000032 1.28570180000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.058862457409987 -63.3815244037474983 22.3432626857279004 -13.0169836437335995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351835538609024 2481351835538609024 1168434449 2015.5 25.4661166614671011 0.0767087764205020006 -3.37983223325388993 0.0529658767383658011 0.302994090843781982 0.085925729960401806 3.52623249999999988 6.40217209317984981 0.149772718842091007 -7.4043396294569801 0.100206869590478004 -0.0238567299999999996 0.457860299999999998 -0.117380810000000002 0.0871468559999999948 -0.227014419999999995 0.0709930059999999974 0.140656019999999993 0.0204217270000000006 0.0754790600000000006 0.128009420000000013 178 0 178 0 -0.376496459999999977 165.442993 0 0 31 false 3.72161870000000006 1.59327856790597999 0.0183181651112200999 -0.0505328329999999992 20 10 0.137554850000000006 0 20 false 178 3524.65034011896978 3.19730979234384982 1102.38 16.8205759999999991 18 1829.01570604714993 11.2166476017620003 163.06259 17.1958449999999985 17 2494.51557204534993 12.8565218771828 194.027250000000009 16.2694550000000007 1.22665540000000006 0 0.926389699999999983 0.375268939999999995 0.551120759999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.013249317825995 -63.3679502023356989 22.3392849505303985 -12.9927534972208996 100001 5317.25 5002 5445.3999 0.493000001 0.230000004 0.66049999 0.239299998 0.114 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352690238576640 2481352690238576640 449607541 2015.5 25.4672465361798999 1.78889162621542996 -3.36037204237875997 1.67774948571356997 -4.64029995789419036 2.6432905604013901 -1.75550129999999993 -0.315484082448437009 2.84302155972773996 -20.5109971981028991 4.06826022438592005 -0.344382520000000025 0.724240400000000006 0.362126950000000003 0.0581101399999999976 -0.67025570000000001 -0.576467900000000033 -0.643312450000000036 0.400065930000000014 0.454337570000000024 0.526301099999999966 87 0 86 1 -1.16265649999999998 66.498497 0 0 31 false 0.0231393519999999984 1.38275183475113006 0.366038178537945014 -0.0279244909999999992 12 8 4.24535939999999989 0 12 false 90 82.2240364746083969 1.23064926093606997 66.8134995 20.9008700000000012 9 35.9119474765814033 6.91255582191606965 5.19517659999999992 21.4632910000000017 10 97.7347041749377041 7.69003797465903016 12.7092620000000007 19.786798000000001 1.62539640000000007 0 1.67649270000000006 0.562421799999999972 1.11407089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.996715219044006 -63.3499222927720993 22.3477212123403 -12.9750788428194994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157526922586368 2481157526922586368 955893381 2015.5 25.5124639234090012 0.178358664528428995 -3.48615741788314004 0.159778509142575992 1.21434748328412989 0.221730595119136009 5.47667999999999999 1.03164391693829005 0.383590583697644982 -18.8509817272868005 0.305277706211926014 0.170992179999999994 0.309775619999999974 -0.00200929519999999999 0.0557397599999999993 -0.223911639999999995 -0.00428201029999999983 0.0979945799999999978 0.00385720210000000015 0.155171570000000009 0.211451169999999994 178 0 177 1 0.785395399999999966 186.278 0 0 31 false 0.469959879999999997 1.35830891392143993 0.0461550501563594978 0.0470555760000000017 20 10 0.349003500000000022 0 20 false 175 623.453707217519991 1.52620584915999991 408.498993 18.7013549999999995 18 129.748530259077995 9.81663054792755929 13.2172164999999993 20.0686320000000009 16 772.559775646323033 9.74531983836899052 79.2749560000000031 17.5420900000000017 1.44727399999999995 0 2.52654269999999981 1.36727709999999991 1.15926550000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.209562115953986 -63.4435939865893985 22.3432037634661995 -13.1086449830544005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156740943987712 2481156740943987712 754221326 2015.5 25.5378439718102008 0.080676900336070001 -3.49364941900071013 0.068432145522952903 0.264481544232038013 0.0964305668222586038 2.74271500000000001 3.57383541673452987 0.172692095975778004 -2.46589021060276981 0.134969877976093999 0.113969799999999996 0.298985359999999978 -0.0737305199999999938 0.0591210900000000011 -0.212007449999999986 0.0104746600000000002 -0.000554608500000000008 0.0393062569999999972 0.150131839999999989 0.19931857 168 0 168 0 0.802695040000000026 177.220993 0 0 31 true 2.53914019999999985 1.59976956590829 0.0208505876415930984 0.0277042429999999999 19 10 0.160288480000000011 0 19 false 165 2467.02480315205003 2.69717327696257003 914.669983 17.2079319999999996 19 1256.64411234213003 7.22841456823567974 173.847820000000013 17.603356999999999 17 1756.85461770026996 14.7305220889581996 119.266279999999995 16.6500799999999991 1.22151140000000002 0 0.953277599999999947 0.395425799999999994 0.557851800000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.267853309793992 -63.4392782929769012 22.3645489082683007 -13.1249464918111993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156736648602752 2481156736648602752 1340020125 2015.5 25.5399839575085998 0.539023790335956043 -3.49228554917521006 0.595783235160784019 0.0635813025038697993 0.662085676728067951 0.0960318399999999933 6.1069402198126399 1.26384934819139994 -6.28787092862170027 1.49737308037039996 0.332504179999999983 0.21264211999999999 -0.0432924439999999994 -0.128232139999999994 -0.233042909999999992 -0.171427970000000013 -0.249519380000000013 -0.00135991829999999999 0.183808489999999991 0.436765340000000002 152 0 152 0 2.33438349999999994 189.977005 1.33541497221566008 0.976071243060855021 31 false 0.0531032400000000029 1.05453806787427995 0.169961275365654002 0.102909975000000001 18 10 1.48087060000000004 0 18 false 152 148.751492216791007 1.09270601270762002 136.130997 20.2572119999999991 10 68.131480732862201 7.05459556878447991 9.65774399999999922 20.7680189999999989 12 161.010840806348995 8.50270126037560914 18.9364339999999984 19.2447809999999997 1.54043709999999989 0 1.52323720000000007 0.51080703999999999 1.01243020000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.270817726741996 -63.4371183101852978 22.3671039508310017 -13.1244658223816 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368081664 2481156805368081664 615261745 2015.5 25.5322622390197012 0.510803448269041005 -3.4824731616446698 0.508287077204074955 0.990049326358909965 0.634857774896484983 1.55948210000000009 3.36799457720892015 1.12256391412478007 -7.49803297694799031 0.951418576524946991 0.254637959999999997 0.267092349999999978 0.0361090640000000032 0.0813796600000000064 -0.179213580000000011 0.0154507010000000007 0.220693159999999999 -0.0355184750000000007 0.149012759999999994 0.206268759999999995 154 0 151 3 2.10787129999999978 184.283005 1.34320750872771 1.08275144730578998 31 false 0.0622829800000000017 1.60083068265080009 0.145398894835916004 0.0695095700000000066 18 10 1.02623099999999989 0 18 false 152 161.856453869084987 1.20256278225076008 134.593002 20.16554 15 65.2078467724877981 6.76653113509765003 9.63682099999999942 20.8156379999999999 17 132.117989015364998 7.01990228121274029 18.820488000000001 19.4595149999999997 1.21914100000000003 0 1.35612299999999997 0.650096899999999978 0.70602609999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.245732259476 -63.4316569729977999 22.3634601730011013 -13.1125036278781995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157870519974400 2481157870519974400 1331314081 2015.5 25.4820067762410005 0.113942188533391997 -3.45739515454607993 0.0907759848345447984 1.02003011068533 0.14001704447626101 7.28504229999999975 -1.42768771794420002 0.226956613061630008 2.24727824398067 0.165414073254087995 0.0578593719999999992 0.410170970000000024 -0.00811285699999999936 0.0857955600000000068 -0.25467873000000002 0.0176618940000000009 0.125369940000000013 0.0278097339999999991 0.147692010000000012 0.173403959999999996 183 0 182 1 1.44786330000000008 204.927002 0.0999530040028863004 0.122215266062142003 31 false 1.32546629999999999 1.4817567062625201 0.0277816993172136997 0.0162262859999999995 21 10 0.205091830000000003 0 21 false 181 1443.68147024894006 2.07201783496548986 696.750977 17.7896880000000017 19 501.803445408561004 9.99419853936364078 50.2094730000000027 18.6000540000000001 20 1366.14469181969002 9.50119880778470005 143.786560000000009 16.9231780000000001 1.29387830000000004 0 1.67687610000000009 0.810365699999999967 0.866510400000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.120353815507997 -63.4309394407403033 22.3250743903337998 -13.0707017652920001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470166182261632 2481470166182261632 1596578807 2015.5 25.2259272082870005 2.70913163038937022 -2.62373244634239011 1.62245992105217995 \N \N \N \N \N \N \N -0.0346621130000000013 \N \N \N \N \N \N \N \N \N 90 0 88 2 28.3380800000000015 1241.08997 11.7111118066271995 85.1035341872961055 3 false 0.00657014039999999962 \N \N -0.143192469999999988 12 8 7.15236400000000039 0 13 true 102 271.978946985302002 3.9703190674776998 68.5029984 19.6020280000000007 10 352.71991783617699 15.1434611441651992 23.2918950000000002 18.9828130000000002 8 845.833986345490985 12.6858800320097007 66.6752299999999991 17.4437069999999999 4.4067892999999998 0 1.5391064000000001 -0.61921499999999996 2.15832140000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.823939302605993 -62.7854906486490023 22.3961768316358985 -12.2014658528817996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157836160340096 2481157836160340096 224359691 2015.5 25.5004174978360005 0.526396132234074998 -3.45671562029203017 0.492585160048039983 0.239029307886514997 0.693961665498947 0.344441649999999988 -1.58949879735038002 1.25583043469076006 -1.25405834996462007 0.842538395859662947 0.221993949999999995 0.0977985900000000047 0.239891589999999988 0.0555408599999999975 -0.267668520000000021 0.0482286499999999979 0.303589900000000024 -0.21698176999999999 0.168783369999999988 0.0898024699999999954 165 0 165 0 0.875077400000000005 175.460007 0.791993721455912958 0.368422492828081982 31 false 0.0602551139999999985 1.3552510352629199 0.139271767418753994 0.0398380350000000008 19 9 1.11926400000000004 0 20 false 167 155.142321420002986 1.52737030028808007 101.574997 20.2115399999999994 17 121.069510629050001 9.38521527600427952 12.9000240000000002 20.1437999999999988 17 99.161808607114807 7.89153332587075962 12.5655950000000001 19.771059000000001 1.41954369999999996 0 0.372741700000000009 -0.0677394899999999994 0.440481200000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.156681921733991 -63.4223322051780016 22.3428693069205018 -13.0768440768834004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157526922587904 2481157526922587904 472420254 2015.5 25.5117420342144996 0.130066818151440999 -3.47779567024986003 0.118425039456308001 0.641675125756477005 0.157746977790287013 4.06774900000000006 1.25050293388970002 0.272330363501032013 -5.57927055128048011 0.219141055290309 0.233317699999999989 0.338673859999999993 -0.0147515819999999992 0.0848756600000000055 -0.140299170000000001 -0.00107831450000000009 0.108256210000000005 0.0323530659999999998 0.190952869999999997 0.217540860000000003 167 0 166 1 1.02362540000000002 179.358002 0.0544744535828066007 0.0244485944575534991 31 false 0.951141360000000047 1.52593059269317011 0.0348749336476767008 0.076655223999999994 19 10 0.25019619999999998 0 19 false 164 1106.05175757430993 1.90721826169616993 579.929016 18.0789280000000012 18 454.281174355047028 10.6839792358594998 42.5198480000000032 18.7080759999999984 16 947.299278297865953 8.81539466812101935 107.459655999999995 17.3207020000000007 1.26719249999999994 0 1.38737489999999997 0.629148499999999999 0.758226399999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.199958670714011 -63.4363829337745031 22.3456804996987017 -13.1006063798447006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481156805368082048 2481156805368082048 680500812 2015.5 25.5250443055754985 0.289269202551296012 -3.4778346874100099 0.312188737300506003 -0.165849855054320011 0.342235937415352021 -0.48460677000000002 -0.910126630866643027 0.621487468524668962 -3.80702480203165017 0.543656853627492054 0.367670119999999989 0.259131820000000013 0.0533314159999999995 0.18119616999999999 -0.104511514 0.0911016760000000064 0.345265749999999982 -0.0239693989999999989 0.157075169999999986 0.244516490000000003 144 0 142 2 0.0828922200000000026 137.707001 0 0 31 false 0.209091709999999986 1.57109758565202995 0.0808737852793857959 0.0908935139999999947 17 9 0.587296299999999993 0 18 false 140 349.972736572090014 1.65315132999424996 211.699997 19.3282799999999995 13 166.254556080459992 7.0158746400966896 23.696909999999999 19.7994540000000008 13 257.030876264649009 8.90132435310082037 28.8755759999999988 18.7369580000000013 1.20948110000000009 0 1.0624962 0.471174240000000022 0.591321949999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.226713410074012 -63.4306276624009016 22.3583387155568012 -13.1055364224647004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157630001806592 2481157630001806592 787801497 2015.5 25.5105118985061985 0.294231520742975983 -3.45425560377044016 0.240040537862407005 0.72222988619737305 0.352082532793651981 2.05130839999999992 7.0681974884048504 0.663291752446219962 -15.2196443783040003 0.414549140641509994 0.217165069999999988 0.26032913000000002 -0.164997969999999994 0.125113830000000009 -0.0894878800000000058 0.00920066299999999955 0.248192300000000005 0.0954675450000000009 0.191945029999999989 0.108464329999999998 167 0 166 1 1.98601770000000011 198.563995 0.604225997186368047 0.730160978734177957 31 false 0.205527110000000013 1.55351160974235003 0.0749076102154404982 0.0435075279999999967 19 10 0.587322829999999962 0 19 false 166 378.804984918341972 1.21299224050584997 312.290009 19.2423269999999995 16 147.734760398389994 9.20772838688590056 16.0446470000000012 19.9276809999999998 17 332.91637027818399 14.3432774290313994 23.2106199999999987 18.4560810000000011 1.26886169999999998 0 1.47159960000000001 0.685354229999999953 0.786245349999999954 \N \N 0 \N \N \N NOT_AVAILABLE 152.174559334456006 -63.4157301594269995 22.3534162271321009 -13.0782709776310995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163711675499520 2481163711675499520 1337774177 2015.5 25.5103301112973 0.180566625629233007 -3.44543883543509999 0.139060640585900008 0.362598521606108004 0.226700808701943007 1.59945849999999989 1.51468472496139994 0.34459219029895799 -8.9809456218296404 0.244743456615547 -0.0102791940000000002 0.472631999999999997 0.0123680084999999995 0.0832652799999999971 -0.313568979999999997 -0.00568704349999999987 0.161057800000000001 0.0476659499999999986 0.145563529999999997 0.154895320000000003 176 0 176 0 2.53602499999999997 221.524002 0.198072568011691014 0.218787997297577003 31 false 0.593309799999999998 1.41470576850595009 0.0449632462296910979 0.00171080119999999993 20 10 0.307427229999999996 0 20 false 176 773.995456805198955 1.76966360985383009 437.368988 18.4665199999999992 16 240.845306024985007 16.4501292770058996 14.6409369999999992 19.397043 15 840.106250233696983 18.8892321717215985 44.475406999999997 17.4510840000000016 1.39658639999999989 0 1.94595910000000005 0.930522900000000042 1.0154361999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.165615551052014 -63.4078724105261031 22.3565789455299999 -13.0700079634687008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163746035361792 2481163746035361792 508289993 2015.5 25.5215928124227993 0.895187636585358049 -3.4371851541136702 0.654962232903740005 5.02322242997539981 1.25142293693303008 4.01400850000000009 -17.7580133909050986 1.16920123283273991 -61.1148933280985034 0.977235346545162975 -0.21103733999999999 0.765201750000000014 0.212690679999999993 0.126243999999999995 -0.48309713999999998 -0.000104933750000000005 0.312670100000000006 0.113484829999999995 0.0903887450000000064 0.238645639999999992 137 0 136 1 2.13000400000000001 167.802994 1.34034083100365997 0.874127080245890031 31 false 0.0543676729999999983 1.31104972896993011 0.158389848669988009 0.00856115200000000069 16 9 1.25895500000000005 0 16 false 136 163.058901680840989 1.54010500130349004 105.875 20.1575050000000005 9 38.823056045007803 12.7893098306899997 3.0355865999999998 21.3786640000000006 10 287.417922693622984 6.97548916297203014 41.2039800000000014 18.615635000000001 2.00075529999999979 0 2.76302899999999996 1.22115900000000011 1.54187009999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.180189843085003 -63.3955462586630034 22.3704304936998994 -13.0664782841645994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163436797588608 2481163436797588608 1496778633 2015.5 25.5305909012858017 0.38077970590711302 -3.46495076787401013 0.381827113693270992 0.68963441858029495 0.461328470931835988 1.49488810000000005 -0.0933297459763813009 0.75053890528779299 -2.05074799939034014 0.650219921220461017 0.361407130000000021 0.385185200000000005 0.0665110800000000002 0.162296770000000007 -0.0391309339999999992 0.0344059430000000013 0.242599399999999993 0.00581375139999999995 0.230376479999999995 0.237629040000000014 152 0 151 1 3.24116399999999993 207.839005 0.727918685877066984 0.589438038011125043 31 false 0.123426610000000006 1.71718493435239994 0.101749599742130006 0.127220820000000012 18 9 0.70212960000000002 0 18 false 150 270.129017831734018 1.56464451041933006 172.645996 19.6094380000000008 9 175.603156684831987 17.463118709875701 10.0556579999999993 19.7400570000000002 12 203.297392627986994 11.9331654033529002 17.0363350000000011 18.9915899999999986 1.40266510000000011 0 0.748466500000000035 0.130619049999999987 0.617847440000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.225285059972009 -63.4166191309439 22.3684980430966007 -13.0955997273216003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163471157328896 2481163471157328896 1667660371 2015.5 25.5490044486157011 0.285914565300453005 -3.45523248572128994 0.21818587916160101 2.19327810086522978 0.353003301256267998 6.2131943999999999 9.21932480330579018 0.569809786767034976 -6.97276811406621988 0.394965220436144016 -0.0716871899999999979 0.424718859999999976 0.213928040000000014 -0.0035222719999999999 -0.325360629999999984 -0.0877292199999999966 0.166196079999999996 -0.0362707079999999987 0.168170939999999991 0.0526271430000000012 149 9 149 0 3.87512759999999989 219.397995 0.820269595894719039 2.33020205833366001 31 false 0.314121570000000017 1.2427959236450401 0.0669557547454345953 -0.0431214899999999984 17 10 0.483347120000000019 0 17 false 147 570.60449401532901 1.76875706968134994 322.60199 18.7975269999999988 12 100.138350968189002 7.60601936471331008 13.1656709999999997 20.349888 11 799.217361505311032 19.0576816958433 41.9367560000000026 17.5052589999999988 1.57614549999999998 0 2.84462929999999981 1.55236050000000003 1.2922688 \N \N 0 \N \N \N NOT_AVAILABLE 152.25275348018701 -63.3998535595433026 22.3897174978460995 -13.0933381457343998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163647251398400 2481163647251398400 1630473781 2015.5 25.5392378317851012 0.0537130218408223975 -3.43433287845796009 0.0430055077975744979 2.73082487937204998 0.0626077644087325025 43.617992000000001 -9.6667513262042899 0.107282500097385006 -6.21444181772609028 0.0924581970112983986 0.0808747799999999933 0.439580299999999979 -0.161692859999999994 0.0183106159999999983 -0.248958440000000003 -0.115036669999999994 -0.267304719999999996 0.145298759999999999 0.210981370000000001 0.306987400000000021 134 0 134 0 0.924086199999999969 143.701996 0 0 31 true 9.54392999999999958 1.41420880993777009 0.0140810511511038003 0.0388161299999999973 15 10 0.109529874999999999 0 16 false 134 7901.01272704708026 5.84755989921251018 1351.16003 15.9441590000000009 16 2469.80851169549987 29.0446694407048014 85.0348299999999995 16.8697300000000006 14 8125.57621688103973 16.1005420153825014 504.677200000000028 14.987285 1.34101599999999999 1 1.8824453000000001 0.925571440000000023 0.956873900000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.212806263870988 -63.3853024284208999 22.3883187474858012 -13.0703168570322994 100002 3817 3786.66992 4023.93994 0.0149999997 0.0103000002 0.0259000007 0.00800000038 0.00490000006 0.0154999997 200111 0.642279570000000022 0.577918400000000054 0.652610840000000025 0.0788917539999999945 0.0750291939999999935 0.0827543139999999955 +1635721458409799680 Gaia DR2 2481163574236545664 2481163574236545664 37487756 2015.5 25.5566524538705018 0.086230162159292606 -3.44850985971245994 0.0677032675877538986 0.470400275514715027 0.106852920421230999 4.40231559999999966 25.0346500446792994 0.170370991763053009 -10.4097349306934994 0.133284400209855991 -0.0558614730000000018 0.448137430000000003 0.0382579570000000022 0.00854166399999999916 -0.347058980000000017 -0.0787976900000000036 0.0171791999999999986 0.0397327400000000025 0.149498219999999987 0.159914730000000005 169 0 167 2 0.377647730000000015 168.209 0.0332246866924935033 0.0247965879643174993 31 false 2.71041940000000015 1.62549482268877998 0.0216751883060217997 -0.01628427 19 10 0.15613724000000001 0 20 false 164 2621.43658964350016 3.14644400699439997 833.143005 17.1420169999999992 15 1423.23402713249993 20.572943488421199 69.1798900000000003 17.468197 15 1771.60074996405001 8.52195679258372074 207.88660999999999 16.6410049999999998 1.2187344 0 0.827192299999999991 0.326179500000000011 0.501012800000000036 \N \N 0 \N \N \N NOT_AVAILABLE 152.261533892079996 -63.3904721065579011 22.3995469604578012 -13.0899012246522997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162822617233280 2481162822617233280 1663064566 2015.5 25.5664727249920993 8.47362455433587947 -3.44712360151945996 4.0331180885344704 \N \N \N \N \N \N \N 0.798348399999999958 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.53921930000000007 47.4996986 3.34269065305513013 1.31653311768932002 3 false 0.0199146200000000009 \N \N 0.182898179999999994 5 5 28.2778069999999992 0 9 false 43 96.130332398602107 1.9733749949571 48.7136993 20.7312149999999988 3 170.808203401973003 29.0816755852992017 5.87339639999999985 19.7701169999999991 4 283.733055749272012 24.7644930126351994 11.4572524999999992 18.629643999999999 4.72838539999999963 0 1.14047239999999994 -0.961097700000000055 2.1015701 \N \N 0 \N \N \N NOT_AVAILABLE 152.279866326903004 -63.3849428033212021 22.4094274548968997 -13.0922238927212007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162818322301824 2481162818322301824 1006931154 2015.5 25.5666303385641989 1.36228662255875999 -3.44707290025885982 1.5746668262877499 \N \N \N \N \N \N \N 0.170641619999999994 \N \N \N \N \N \N \N \N \N 86 0 81 5 10.2544979999999999 283.878998 5.08966932606382993 6.17267499654922958 3 false 0.0163755600000000008 \N \N 0.136587950000000014 10 8 4.15526000000000018 0 11 false 88 114.306178359330005 1.4421500126276201 79.2609024 20.5431920000000012 8 59.3293013528370992 15.5015086121096992 3.82732440000000018 20.918215 7 267.696150398112991 10.6129064370384008 25.2236420000000017 18.6928139999999985 2.86096050000000002 0 2.22540100000000018 0.375022899999999992 1.85037800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.280132749855994 -63.3848284487914029 22.4095967980661008 -13.0922347179986005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163574236546304 2481163574236546304 205544693 2015.5 25.5629061354872 0.897392013893163032 -3.44332303030780018 1.01862834652218992 -0.139398349243052 1.17367386504811 -0.118770940000000005 -3.40474387285425983 2.4666980458770702 -7.29218314645833043 4.15781835070804018 0.267009380000000018 0.293694999999999984 -0.16114908 -0.315230730000000015 -0.355039060000000017 -0.264450430000000014 -0.302115599999999984 -0.0917372199999999943 -0.00355736980000000017 0.689676700000000031 110 0 108 2 -0.363557579999999991 97.2266998 0 0 31 false 0.0301058849999999989 1.42529760848167997 0.301387245904091994 0.118019289999999999 13 8 4.0083120000000001 0 13 false 109 94.8976669872937038 1.72154115780601003 55.1236992 20.7452280000000009 11 76.2838308823027944 13.8958604836491997 5.48968029999999985 20.645308 12 61.5073101470120989 8.87035301681691024 6.9340320000000002 20.2896019999999986 1.4519972000000001 0 0.355705260000000023 -0.0999202700000000055 0.455625530000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.269011902393004 -63.383079632124101 22.4074669286177013 -13.0873790551508993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163608596285696 2481163608596285696 843529582 2015.5 25.5608481077872014 0.211485955362500005 -3.43500545640889987 0.167061919658273994 0.146115409942947999 0.261666750796585024 0.558402660000000051 4.47189284791778974 0.419191009088483002 -3.25855489199275006 0.316080269468291986 -0.0468922069999999983 0.412104279999999989 -0.0232737470000000009 0.0564765740000000016 -0.347205099999999989 -0.0031228813000000002 0.0459969159999999988 0.0355996900000000033 0.131450380000000006 0.168005690000000013 168 0 166 2 1.24641819999999992 183.688995 0.42023640592956002 0.706013845236489024 31 false 0.419875439999999989 1.68418072926915996 0.0551664245629973973 -0.0296175829999999994 19 10 0.37520224000000002 0 19 false 165 658.320330248531036 1.84206224941514995 357.381989 18.6422729999999994 16 336.436559792723983 8.91709932508969949 37.729374 19.0341300000000011 17 499.668502391783022 12.9928737007167996 38.4571200000000033 18.0152150000000013 1.27005799999999991 0 1.01891519999999991 0.391857149999999987 0.627058000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.256780147281006 -63.3764945134660991 22.4086520995595002 -13.0788896726062003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159451067931520 2481159451067931520 44851599 2015.5 25.6126566381653014 0.462717120413222993 -3.50227582495090006 0.411596267687906026 1.01696975761132991 0.594347736743068955 1.71106859999999994 -3.14912746347639994 0.957728604239705961 -4.20246074649618961 0.693412517596806 0.186085749999999994 0.348898649999999977 0.21731608999999999 0.135836989999999991 -0.246209470000000014 0.115473599999999996 0.354684300000000008 -0.151814830000000012 0.096037835000000002 0.19257566000000001 138 0 136 2 2.70943429999999985 179.110001 1.28558234139423 1.89731834655039999 31 false 0.107007190000000002 1.61779273634915999 0.116387752777088002 0.0623981799999999975 16 10 0.870146749999999969 0 16 false 136 267.066134361002014 1.42244151292724008 187.751999 19.6218189999999986 14 91.0870402698327979 7.55616072807444983 12.0546720000000001 20.4527469999999987 14 289.447831578055002 6.39272590020094977 45.2776870000000002 18.6079940000000015 1.42487129999999995 0 1.84475330000000004 0.830928800000000023 1.01382449999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.426367889382988 -63.4143326176951021 22.432571968238701 -13.1604796221980997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162444660556416 2481162444660556416 566526788 2015.5 25.5792863268952004 0.0289706677803447006 -3.48380350116728987 0.0220838273646866007 0.787157203033901021 0.034492768016242098 22.8209340000000012 -3.04556995391117002 0.0609251891449563016 -8.6218867122248497 0.0485831960872451993 -0.025066950000000001 0.370029869999999983 -0.0885877000000000053 -0.00229943960000000011 -0.377414000000000027 -0.155880330000000011 -0.340964319999999987 0.114245150000000004 0.245667639999999993 0.290076520000000004 156 0 155 1 -0.431762219999999974 142.001999 0 0 31 false 51.9111249999999984 1.59278393579695998 0.00738617479781814024 -0.0678180800000000028 18 10 0.066789100000000004 0 19 false 154 41529.2551862972978 15.5113180899423995 2677.3501 14.1424800000000008 19 22652.6062505414993 34.2265823701132987 661.842470000000048 14.4635929999999995 18 27553.1367985217003 33.635776673835899 819.161600000000021 13.6614920000000009 1.20892479999999991 1 0.802100200000000041 0.32111263000000001 0.480987549999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.341382821937003 -63.412333100879998 22.4077611561818983 -13.1310358733707009 100002 5760 5449.58984 5879.33008 0.864499986 0.751600027 1.10430002 0.432000011 0.351599991 0.549399972 200111 1.63460110000000003 1.56891920000000007 1.82611729999999994 2.64977030000000013 2.37691700000000017 2.9226236000000001 +1635721458409799680 Gaia DR2 2481162474725018368 2481162474725018368 1345442893 2015.5 25.5884550947572009 1.10372886953162008 -3.48051324390677985 1.24486371385370997 \N \N \N \N \N \N \N 0.218859300000000007 \N \N \N \N \N \N \N \N \N 95 0 94 1 1.60624400000000001 111.419998 2.16644810394253007 0.676776358114928978 3 false 0.0192324279999999993 \N \N 0.0688560399999999934 12 8 4.75864799999999999 0 12 false 97 84.1732284171636991 1.12981786078664004 74.5016022 20.875430999999999 8 56.7212071089004013 9.61138229764645047 5.90146200000000043 20.9670239999999986 10 64.4689172146488971 9.94899927852054056 6.47994000000000003 20.238544000000001 1.43977050000000006 0 0.728479399999999999 0.0915927899999999934 0.636886599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.35654436736101 -63.4053672065480995 22.4177424371975 -13.1313486664428005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159451067932928 2481159451067932928 1677155739 2015.5 25.6134623420862013 0.442611972947255017 -3.49637471292163982 0.407700893817956989 0.541631745919028962 0.563913822995362968 0.960486700000000027 -1.4813497990606399 0.931529325409915954 -8.82886867011660037 0.682805316009926999 0.207616329999999988 0.336984930000000016 0.0339877999999999986 0.166762219999999989 -0.279763370000000011 0.143190970000000001 0.384650199999999998 -0.0498761939999999987 0.0420121700000000015 0.244041900000000006 130 0 128 2 1.40225590000000011 145.582993 1.02990486191607999 1.20456776198629001 31 false 0.118729409999999994 1.31651451657662011 0.118074993311998 0.0646536100000000002 16 10 0.848647299999999993 0 16 false 129 277.672662186377011 1.57179517831290005 176.660004 19.5795330000000014 12 99.7903779448773065 6.43492471736531968 15.5076219999999996 20.3536660000000005 12 298.688257035511015 14.2702787663339006 20.9307939999999988 18.573875000000001 1.43506610000000001 0 1.77979090000000006 0.774133700000000036 1.00565719999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.42219475153999 -63.4086774302224967 22.4355721176739991 -13.1552896922027003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159485427671424 2481159485427671424 563549228 2015.5 25.6292852033465017 0.659075445392601988 -3.49570337911571016 0.650999991027602976 -0.321974060613828994 0.824644211109898051 -0.390439959999999975 -2.57208643522199987 1.22186833830152008 -5.13944434155052043 1.33353370430298002 0.374606759999999983 0.509263200000000027 -0.00709251799999999991 -0.0231936759999999999 -0.0599407370000000009 -0.101582309999999995 -0.09215922 -0.0116734839999999996 0.124768496000000007 0.420254599999999978 123 0 121 2 2.05995559999999989 149.498993 1.57360234320843007 1.17918177453691997 31 false 0.0590791260000000026 1.78088098070177003 0.193852980785591988 0.188684639999999987 14 9 1.3423731000000001 0 14 false 121 178.787792563844988 1.18357127648816007 151.057999 20.0575219999999987 12 139.956846544716996 20.7545338416918987 6.74343499999999985 19.9864029999999993 12 131.446379622193007 9.8831093238538692 13.3001039999999993 19.4650479999999995 1.51801870000000005 0 0.521354699999999949 -0.071119310000000005 0.592473999999999945 \N \N 0 \N \N \N NOT_AVAILABLE 152.453230661303991 -63.4011386679011011 22.4509049693803995 -13.1604828109972996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159558442533376 2481159558442533376 501905504 2015.5 25.6179647637090007 0.0292287967093876992 -3.48638451063576005 0.0245734509534877993 3.00043348137218002 0.0378911716610908014 79.1855549999999937 15.0243884894446005 0.0536565248033315997 -4.09660611346786041 0.0524994291275686989 0.117690580000000003 0.554140570000000054 -0.017496778000000001 0.0392049179999999983 -0.278552350000000004 0.0316705499999999987 -0.0494372920000000007 -0.0288020039999999991 0.0251008589999999997 0.444494840000000002 148 0 148 0 -4.00063369999999985 84.9802017 0 0 31 false 60.8817999999999984 1.50642691121446992 0.00787963451229902953 0.107399980000000006 17 10 0.064378829999999998 0 17 false 148 47670.4029659228036 23.6270685747231006 2017.62 13.9927434999999996 16 21128.5366590507983 55.9093485257348988 377.907039999999995 14.5392150000000004 15 38073.7565963201996 110.513424873947997 344.517029999999977 13.3103560000000005 1.24190880000000003 0 1.22885899999999992 0.546471599999999946 0.682387349999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.421419750826004 -63.3977284407554009 22.4436416655075988 -13.1476572496366 100001 5038 4860 5169 0.163000003 0.00889999978 0.30399999 0.0869999975 0.0285999998 0.158999994 200111 0.628236649999999952 0.596796899999999964 0.675098360000000008 0.229073019999999988 0.222405049999999993 0.235740990000000011 +1635721458409799680 Gaia DR2 2481159485427673984 2481159485427673984 584946176 2015.5 25.6350696350266993 0.144016358724934013 -3.48467372525266983 0.120171035326342004 0.622454760524749018 0.186152216867274012 3.34379459999999984 10.5235363331493001 0.25929200682515402 4.6496825780894504 0.217572076746296 0.0961833099999999941 0.53407115000000005 0.0355395749999999969 0.108607179999999998 -0.264892300000000025 0.0739701900000000051 0.199862050000000013 -0.00243515640000000009 0.0800980260000000027 0.276232399999999989 146 0 144 2 0.515554850000000009 147.080994 0 0 31 false 1.14448250000000007 1.49625449199981997 0.0367625242258005011 0.101704515999999995 17 10 0.244357899999999989 0 17 false 143 1273.79458085961005 2.27224844839757978 560.588013 17.925616999999999 12 456.913157812280986 5.57038980400082018 82.0253450000000015 18.7018030000000017 14 1234.3147267715101 11.0462544376915996 111.740570000000005 17.0333560000000013 1.32770849999999996 0 1.66844750000000008 0.776186000000000043 0.892261500000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.453991210765992 -63.3886938738394008 22.4605892197794006 -13.1523549050351996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159592802272000 2481159592802272000 191352344 2015.5 25.6595320099920983 0.255682950020174993 -3.49919838870420019 0.218987338789463998 2.21589623616451004 0.328083166551832006 6.75406900000000032 2.11183433158574996 0.523188460969611024 -5.01434893682893978 0.409645294916208991 0.14290217999999999 0.387990700000000022 0.14300328000000001 0.0737611060000000068 -0.270422249999999975 0.0569372500000000017 0.156527269999999996 -0.100744790000000001 0.0939382099999999942 0.252800049999999998 130 0 130 0 1.40968169999999993 147.893005 0.618200918581743974 1.19160672311121996 31 false 0.357007919999999979 1.3197076590949699 0.0760555126292400963 0.077076875000000003 15 10 0.481085959999999979 0 15 false 130 590.624472023632961 1.90206788462830989 310.516998 18.7600879999999997 12 150.577151191670993 11.2471727497327993 13.3880005000000004 19.9069900000000004 12 777.888440230099945 23.4757490035574996 33.1358299999999986 17.5346259999999994 1.57200659999999992 0 2.37236400000000014 1.14690209999999992 1.22546200000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.517209759711989 -63.3910000500562987 22.4784095560228003 -13.1748506561691006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162440365174656 2481162440365174656 1612224417 2015.5 25.5792053420909014 0.705617453069790956 -3.47446870475922998 0.801032408241348026 0.896773438501353048 0.919357659698574969 0.975434800000000046 -11.4094879281503996 1.61809665297064997 -66.3012443377419061 2.25787345914985016 0.23581162 0.358947159999999987 -0.0930146800000000024 -0.201050759999999995 -0.36419994 -0.365285130000000013 -0.498929920000000027 0.110968499999999998 0.235575349999999989 0.580158770000000046 140 0 138 2 1.12422650000000002 151.462997 1.18607802223268011 0.47169037285374299 31 false 0.0398584749999999974 1.59918842317115995 0.210421958099764994 0.07043431 17 9 2.25182819999999984 0 17 false 139 124.302268029372001 1.19427539469127009 104.082001 20.4521680000000003 11 58.4885667754283034 15.4839226770824006 3.77737400000000001 20.9337100000000014 11 159.475755033360997 11.9958277700124007 13.2942689999999999 19.2551839999999999 1.75350239999999991 0 1.6785258999999999 0.481542599999999987 1.19698330000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.332091309374988 -63.4039756965184012 22.4112153619299015 -13.1223278994773001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162543444390272 2481162543444390272 1468168913 2015.5 25.597424303685699 0.367720235265454998 -3.47150380187113994 0.329097509455155979 0.188235407734907989 0.500225774304505988 0.376300899999999994 -0.944520465025884048 0.789186717303620999 -3.29521923672432981 0.675480296809670033 0.0562774050000000026 0.312156739999999988 0.145971829999999997 -0.0421131599999999967 -0.407694639999999997 -0.150179979999999991 -0.19795407000000001 0.00495930999999999976 0.284278099999999978 0.244583949999999994 147 0 147 0 1.84478059999999999 174.645996 1.00483547252770999 1.44384439843543011 31 false 0.145449040000000002 1.63715558296096009 0.098251207848254099 0.0244666229999999998 17 9 0.737824440000000026 0 17 false 147 327.242377518736987 1.47311932472705998 222.141998 19.4011920000000018 12 237.969639680032998 13.1775846234151999 18.0586680000000008 19.4100840000000012 12 210.637325281389991 9.53141144449072009 22.0992800000000003 18.953081000000001 1.37087059999999994 0 0.457002640000000016 0.00889205900000000077 0.448110579999999981 \N \N 0 \N \N \N NOT_AVAILABLE 152.365702642101013 -63.3933462029689991 22.4296969038045013 -13.1262707850733999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163986553408896 2481163986553408896 1155385798 2015.5 25.5718595994194011 0.249362904762155002 -3.42917855531355009 0.202225907964036999 1.03027424513034993 0.317623533105412026 3.24369620000000003 7.35919441569536037 0.492973198197139972 -5.59310755554279027 0.381586738148535998 -0.0208775099999999984 0.437537549999999997 0.0221131900000000013 0.0420665849999999966 -0.35962048000000002 -0.0248002800000000009 0.0722752499999999992 0.0276424070000000008 0.128071469999999993 0.194434689999999993 174 0 173 1 3.58119630000000022 241.714996 0.827288192074770001 2.25648202162490019 31 false 0.290397760000000005 1.36210473961447009 0.0638695575959151024 0.00395193460000000003 20 10 0.444118349999999995 0 20 false 171 556.953854865079961 1.73102507387577997 321.747986 18.8238179999999993 18 160.876355809654001 7.48739767195425987 21.4862840000000013 19.8351569999999988 17 621.310704493542971 8.25318242243369049 75.2813500000000033 17.7786480000000005 1.40440190000000009 0 2.05650900000000014 1.0113392000000001 1.04516980000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.273162855363012 -63.3664518805897998 22.4213466402073998 -13.0775217397738004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163234934280320 2481163234934280320 1057182072 2015.5 25.5922244582177996 1.24690680336821003 -3.43676881657074995 1.17790915283181996 0.474812360706057979 1.84974285090514989 0.256691000000000003 -1.46818135417477991 1.92053065712601989 -3.35060350066564983 2.77906439125982985 -0.315497000000000027 0.757443960000000027 0.145433430000000002 0.151696040000000004 -0.619475899999999968 -0.462402020000000025 -0.645501259999999966 0.320367840000000015 0.404314549999999995 0.594943760000000044 116 0 115 1 -1.35030770000000011 90.5756989 0 0 31 false 0.0299077090000000011 1.36254953969355008 0.284572529942349994 0.0150950830000000005 15 8 2.91161370000000019 0 15 false 118 106.393827447689006 1.77447658091979998 59.957901 20.6210750000000012 13 81.9430809050085998 16.0064667697924001 5.11937330000000035 20.5676079999999999 13 76.2505211059626049 7.22178000569737044 10.5584109999999995 20.0563129999999994 1.48686830000000003 0 0.511295300000000008 -0.0534667970000000034 0.564762100000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.321347234358001 -63.3643904183388997 22.4378790543346014 -13.0920661692340001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163166215075072 2481163166215075072 168294759 2015.5 25.5981626764868011 0.0749750545490188991 -3.45206358809031011 0.0589724170689088015 5.13840390472070041 0.0923530046817199052 55.6387300000000025 57.9671433956924034 0.146780989539459006 -31.0715860073325985 0.126596278291991993 -0.0548814129999999969 0.463091199999999981 -0.0712694100000000053 0.0284663850000000003 -0.381759020000000004 -0.0956049340000000025 -0.21820951999999999 0.0896446199999999943 0.177657700000000002 0.289577340000000016 165 0 161 4 6.77893900000000027 307.937988 0.338785144555412976 5.9962972751291499 31 false 3.90652750000000015 1.26992463053478999 0.0184746493769123998 0.00348350750000000001 19 10 0.14360661999999999 0 19 false 161 6437.02742470716021 5.75186620162518025 1119.12 16.1666530000000002 19 1359.58786195143011 9.82617419114843926 138.363900000000001 17.5178699999999985 17 7925.29683292547998 20.760561520751299 381.747700000000009 15.0143810000000002 1.44241810000000004 0 2.50348850000000001 1.35121730000000007 1.1522713 \N \N 0 \N \N \N NOT_AVAILABLE 152.348173772387014 -63.3755474371440002 22.437753039775 -13.1084689166741999 100001 3354 3323 3584.3999 0.187000006 0.100500003 0.647099972 0.0973000005 0.0590000004 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475972977962880 2481475972977962880 678140175 2015.5 25.2429722525688014 5.59170558845736032 -2.61765725248024017 5.87866810299990039 \N \N \N \N \N \N \N 0.558778600000000014 \N \N \N \N \N \N \N \N \N 63 0 62 1 12.1031750000000002 306.43399 16.7535852913139003 18.5147181757896 3 false 0.00271208119999999994 \N \N -0.104786619999999997 7 6 20.0964969999999994 0 7 false 63 79.6582234200370038 2.10641210723919992 37.8170013 20.9352899999999984 3 64.3836944839954981 4.44089718770709041 14.4979030000000009 20.8294490000000003 4 204.853395162770994 11.3063191297424996 18.1184860000000008 18.983312999999999 3.37990330000000005 0 1.84613610000000006 -0.105840680000000006 1.95197679999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.852235267520996 -62.7728689041005978 22.4146623598589017 -12.2020855973328004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159554148290048 2481159554148290048 1040484981 2015.5 25.6204958577722017 0.549859605211617031 -3.47303545441552997 0.516612508963081973 0.885286775879650989 0.698771783436728966 1.26691829999999994 -20.5155753713526003 0.996110285095973991 -23.5450677959801986 0.858713404213397036 0.242518929999999994 0.497092069999999997 0.106646000000000005 0.198669509999999994 -0.172218619999999989 0.11498121 0.364781619999999973 -0.00560512400000000039 0.130739479999999991 0.268216759999999999 140 0 140 0 3.80156420000000006 206.709 1.6613313957518101 1.94980882715014991 31 false 0.0747956199999999932 1.17577934184595989 0.142403851041812995 0.134179319999999991 16 10 0.952319559999999954 0 17 false 140 214.599582246208001 1.55030770298156995 138.423996 19.859293000000001 11 54.3555655212909983 8.46873195194065076 6.41838300000000039 21.0132790000000007 14 290.126144560212026 11.0427957401947001 26.2728879999999982 18.6054530000000007 1.60523009999999999 0 2.40782549999999995 1.15398599999999996 1.2538395 \N \N 0 \N \N \N NOT_AVAILABLE 152.413408326584005 -63.3846248417805 22.4511025688729013 -13.1361771526489992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159867680178432 2481159867680178432 548088704 2015.5 25.640933577165999 0.0437963890695389976 -3.47233907635391015 0.0378579908650686012 4.19206087328580956 0.0566125734401652994 74.0482300000000038 20.3991940595526984 0.0803369528016425055 -45.9468862720594018 0.0867849091198631961 0.149919780000000002 0.576010169999999988 -0.0863199159999999965 -0.0243358870000000005 -0.247999730000000002 -0.103950520000000005 -0.259973820000000022 0.0287025049999999997 0.0633082400000000017 0.504603400000000035 141 141 137 4 0.194669869999999995 134.511993 0 0 31 true 280.556150000000002 1.56902601729181002 0.0120853415150006006 0.118890986000000004 16 10 0.0603108200000000011 0 17 false 134 194955.08011417801 44.3193791137297026 4398.87012 12.4635300000000004 17 95034.4144290710974 144.11396763125299 659.439330000000041 12.9066860000000005 16 142056.194028186001 91.8261938428507989 1547.01170000000002 11.8807700000000001 1.21612940000000003 0 1.02591610000000011 0.443156239999999979 0.582759860000000018 26.2996133884480017 2.52177347998641999 5 5500 4.5 0 NOT_AVAILABLE 152.453631068888001 -63.3750418865116032 22.4708422119155991 -13.1430426577798993 100001 5118.25 5024.06982 5245 0.0700000003 0 0.275999993 0.0463000014 0 0.134100005 200111 0.874211999999999989 0.832470359999999965 0.907294869999999976 0.472513530000000015 0.464007400000000014 0.481019650000000021 +1635721458409799680 Gaia DR2 2481162994416369536 2481162994416369536 1437666744 2015.5 25.6273313332405017 0.0946800564411073992 -3.44478658691198003 0.0753916296051842932 0.257851341143979007 0.117228530310679993 2.19956139999999989 -0.91024531334285097 0.183412280640497999 -3.75588373257826014 0.137367895784412997 0.101173059999999995 0.462632659999999973 -0.0860626399999999958 0.11488719 -0.25793640000000001 0.0875888900000000026 0.177438129999999999 0.0355030929999999995 0.0776478899999999972 0.257062259999999987 141 0 141 0 1.94312740000000006 169.856003 0.161483380828277012 0.561779029426905052 31 true 2.82831980000000005 1.52383903225438 0.0225925751301955004 0.0670818400000000037 17 10 0.170346439999999988 0 17 false 137 3030.96252486508001 3.51400177626701016 862.539001 16.9844149999999985 15 1467.75906532590989 14.2316244773889995 103.133629999999997 17.4347519999999996 13 2314.50060035393017 13.2712698002641005 174.399339999999995 16.3507770000000008 1.24787409999999999 0 1.08397480000000002 0.450336459999999994 0.633638400000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.399438513169997 -63.3562462389878007 22.4682985876921997 -13.1124264677319999 100001 4919.81982 4381.9502 5155.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162921401516800 2481162921401516800 18743878 2015.5 25.6358657968709984 0.530725136607609005 -3.44783823866570982 0.442703614163617976 1.80057252748265006 0.642155483896709955 2.80395100000000008 -8.54445760391589992 1.00753052264394993 1.98173465592015008 0.722617606934471968 0.163512889999999994 0.454328860000000001 -0.111294955000000001 0.212143439999999989 -0.160857869999999986 0.134277210000000008 0.338745179999999979 0.102250754999999999 0.139161599999999996 0.199517680000000003 122 0 120 2 4.7576236999999999 202.322006 1.66596469181931006 3.28726153985676017 31 false 0.0977501350000000019 1.50830443450102991 0.130831769181285001 0.070898409999999995 14 10 0.907332660000000013 0 14 false 117 287.388174138763986 1.35360011639833999 212.313995 19.5421939999999985 10 76.856214879202696 16.5344971955103013 4.64823439999999977 20.6371900000000004 12 347.214291255619003 9.39910033464873962 36.9412269999999978 18.410425 1.47560179999999996 0 2.22676469999999993 1.09499550000000001 1.13176919999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.419494728158014 -63.3552508476013969 22.4752772986441016 -13.1184007214322005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163093201349504 2481163093201349504 908647154 2015.5 25.6317918753724001 0.747721754249329962 -3.43044110070285013 1.13231116083455996 0.29425631967761201 0.979273581046314012 0.300484269999999998 -3.61930359399427992 1.69258979743055993 -9.27141553956940001 2.75179233508344989 0.475010099999999991 0.149161600000000005 -0.275754060000000023 -0.418220599999999998 -0.462653580000000009 -0.648372529999999947 -0.805106600000000006 0.366872160000000003 0.54816233999999997 0.662578800000000023 119 0 119 0 1.65453800000000006 140.085999 0 0 31 false 0.0497723519999999989 1.22889552104049993 0.214910230781968997 0.167466449999999989 14 8 2.85310079999999999 0 14 false 115 133.722611620000009 1.41824125786985 94.2875977 20.3728540000000002 6 104.336049449067005 14.0865709315912007 7.40677400000000041 20.3053020000000011 7 154.810199576150012 13.8860932435757007 11.1485789999999998 19.2874200000000009 1.93793890000000002 0 1.01788140000000005 -0.0675525700000000062 1.08543400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.394333306498993 -63.3414012441702994 22.4779727209262994 -13.1007285404922005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163024480733056 2481163024480733056 906918443 2015.5 25.6409328260618992 0.473671323168997016 -3.44033567419474018 0.458130701851563016 -0.529863157585498956 0.603299484141131992 -0.878275499999999987 0.0825327501032740024 0.870402980728119946 1.12935933522631005 0.732041658974974974 0.235430510000000009 0.475356700000000021 0.219892589999999999 0.213947899999999996 -0.185043449999999998 0.137858540000000002 0.487754369999999993 -0.0847665100000000032 0.111440144000000005 0.223522589999999993 140 0 137 3 1.94201470000000009 165.358994 1.3917348517177901 2.44010443069501992 31 false 0.109491179999999994 1.53038298205431 0.118942625156575998 0.140746270000000007 16 10 0.830311829999999973 0 16 false 137 284.161793266532982 4.25967187959351001 66.7098007 19.5544510000000002 13 227.466203733621995 22.9599664559952004 9.90707899999999952 19.4590969999999999 14 191.848302326524987 13.7281695199453004 13.9747920000000008 19.0545250000000017 1.4756187999999999 0 0.404571530000000013 -0.0953540799999999938 0.499925600000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.422285779258999 -63.3462896289131976 22.4829423455388984 -13.1132876969207999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159622866625920 2481159622866625920 730186894 2015.5 25.678508210156501 0.401696576043096998 -3.4901075003563502 0.356800240379878009 1.56147292958143002 0.526541118982634004 2.96552900000000008 1.51934712404004002 0.751339410371297034 -4.83982717185500988 0.600812766264582021 0.141575620000000013 0.478721019999999997 0.0905421750000000025 0.147462430000000005 -0.264736650000000018 0.104957670000000003 0.329279900000000014 -0.0344464780000000026 0.084680430000000001 0.241606180000000004 149 0 148 1 4.10279940000000032 223.313004 1.35548015700263003 2.73902456662159999 31 false 0.133823749999999991 1.26447440974170999 0.104948990812349 0.111409253999999999 17 10 0.693690499999999988 0 17 false 148 330.883077829798992 1.6763709303946901 197.380997 19.3891799999999996 13 94.8012319189442962 8.81845166189756036 10.7503259999999994 20.4093529999999994 13 425.654215413441989 11.5400340673295005 36.8850059999999971 18.1892780000000016 1.57292849999999995 0 2.22007559999999993 1.02017399999999991 1.19990160000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.546228495002993 -63.3744963867749007 22.4999335588302998 -13.1733727366111992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159725945842816 2481159725945842816 983994729 2015.5 25.6820428272999983 1.00884328565259995 -3.48287986120503978 1.23020018974098999 -0.533633689462627014 1.11555359921045993 -0.478357729999999981 -2.28816867245887012 2.18493304038553982 -0.0818946346563422939 3.05072530058283986 0.518939200000000045 0.352679819999999977 -0.300298930000000019 -0.301926020000000017 0.0137763060000000003 -0.348234329999999981 -0.510786100000000021 0.0452265499999999973 0.0665183699999999933 0.554810499999999984 88 0 87 1 -0.0775869500000000017 80.3508987 0 0 31 false 0.0322510150000000009 1.85154490683236994 0.346459929160474023 0.154397620000000013 10 8 3.05501129999999987 0 10 false 87 105.718006599467003 1.5022763010692699 70.3719025 20.627993 6 77.1386823699484978 17.0731258224612006 4.51813459999999978 20.6332069999999987 6 88.4844611404318044 21.3877671186376013 4.13715269999999968 19.8947530000000015 1.56665030000000005 0 0.738454799999999967 0.0052146909999999996 0.73324009999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.546189608927989 -63.3664536398511018 22.5060353281700003 -13.1679517188609001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159725945842176 2481159725945842176 959549467 2015.5 25.6893904755444993 0.288375039248006004 -3.48543149069661995 0.246421027044168989 1.7275270155214999 0.375214232973114015 4.60410830000000004 28.6901925504542987 0.541928836599970043 -15.6526531769564006 0.416216224936198975 0.0970297100000000051 0.471184050000000021 0.0372934229999999992 0.141946879999999998 -0.290619400000000028 0.106924989999999998 0.284598919999999977 -0.00859208499999999931 0.0846409199999999945 0.234967509999999991 144 0 143 1 3.46796000000000015 203.139999 0.984283645643757032 2.89672336627837002 31 false 0.270503549999999982 1.29691837873956994 0.0740406168962881028 0.0953751949999999959 17 10 0.49471896999999998 0 17 false 144 553.106599124570948 1.78186120870200004 310.408997 18.8313430000000004 15 151.998358823858013 7.57215144189579981 20.0733379999999997 19.8967910000000003 13 656.494402882343024 9.4498401739215101 69.4714799999999997 17.7188419999999986 1.46173050000000004 0 2.17795000000000005 1.06544879999999997 1.11250110000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.563383693437999 -63.3655117764783 22.5120737223896015 -13.1730242031644007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158729513426176 2481158729513426176 908030086 2015.5 25.7226762912690994 0.106496122199007004 -3.50164511268377021 0.0896060700807561061 0.0795746772532378993 0.13511752301138899 0.588929359999999957 -0.908401695092364014 0.201814520906631989 -4.21174501984035032 0.170177740038329001 0.0476368439999999976 0.495136650000000011 0.029584876999999999 0.0567488300000000001 -0.271484940000000008 0.0246741120000000015 0.19786838000000001 -0.0118947600000000007 0.0662867399999999968 0.205854399999999993 140 0 137 3 2.24855779999999994 171.214996 0.307406708789929983 1.81982782316210989 31 true 2.11421629999999983 1.55329039912370992 0.0262399066344849996 0.0842434299999999942 16 10 0.18712123 0 16 false 135 2653.33241138018002 4.55342743825721019 582.710999 17.1288869999999989 15 1386.26262588462009 14.5744980932692005 95.1156299999999959 17.4967749999999995 14 1857.92850289635999 16.0765083382672991 115.567909999999998 16.5893480000000011 1.22268559999999993 0 0.907426830000000018 0.367887499999999978 0.539539340000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.645848682625001 -63.3653952029594976 22.5376711522719013 -13.2003295732731996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481158729513427968 2481158729513427968 249126949 2015.5 25.7284254922786992 0.469767756077723975 -3.49288244713690021 0.479214655514105026 0.587822123465287949 0.597491897051766974 0.983816099999999971 3.23994642261776011 0.960916045132752972 -15.4615542152337007 0.826653376004861995 0.223952869999999998 0.365594860000000021 0.184657280000000007 0.126123440000000003 -0.16677749 0.0258478800000000002 0.395678160000000001 -0.0972798599999999958 0.157109990000000005 0.141847200000000007 124 0 124 0 1.98012319999999997 151.451996 0 0 31 false 0.101166110000000004 1.16884273704030006 0.133628759130635988 0.0935332700000000017 15 10 0.875387669999999951 0 15 false 124 223.55574553400001 2.0868528991602 107.125999 19.814900999999999 8 71.4434302116574003 12.6427337077524005 5.65094799999999964 20.7164819999999992 9 350.452349174116023 29.5699924601291997 11.8516220000000008 18.400347 1.88720620000000006 0 2.31613539999999984 0.90158079999999996 1.4145546 \N \N 0 \N \N \N NOT_AVAILABLE 152.648691405178994 -63.3549985704375018 22.5464643087301013 -13.1942942460983996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160481860087808 2481160481860087808 1528386141 2015.5 25.7166870190070007 2.74657164192780989 -3.47481500156425982 2.7923208227043399 \N \N \N \N \N \N \N 0.132911499999999988 \N \N \N \N \N \N \N \N \N 100 0 100 0 48.5661849999999973 3560.6001 14.9737973248545995 197.065655913560988 3 false 0.00410918570000000025 \N \N 0.131943119999999997 14 9 6.22115229999999997 0 14 false 123 281.896461255598012 3.01365112208661001 93.5398026 19.5631400000000006 10 419.127306255577992 19.6313137539269995 21.3499370000000006 18.7955229999999993 13 836.990918546139028 8.99525620024090955 93.0480349999999987 17.4551179999999988 4.45595599999999958 0 1.3404045 -0.767618200000000028 2.1080226999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.607463965313997 -63.3439647772110987 22.5421050424831009 -13.1731826181868001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481159798960701568 2481159798960701568 246110891 2015.5 25.6727693191126995 0.0285283026182993997 -3.47031547746638003 0.0235804009000220999 2.75151725753153986 0.0365830626538986015 75.2128749999999968 1.96080043780838009 0.0505039322223923975 0.00248547772936480015 0.0512042019853488975 0.0618001670000000031 0.58766145000000003 0.00788807799999999976 -0.0135855790000000004 -0.264128949999999973 -0.0459834149999999997 -0.0131669760000000004 -0.000401536349999999983 0.0437561760000000008 0.343851770000000001 139 0 138 1 -4.62227199999999971 70.5218964 0 0 31 false 90.0568700000000035 1.54542221188111006 0.0080799439620147101 0.0825114900000000068 16 10 0.0599275100000000033 0 16 false 137 69975.6406551871041 17.6538904687526994 3963.75 13.5759980000000002 15 33347.1459289640989 51.3261080330456991 649.711199999999963 14.0437410000000007 15 52288.3280836703998 44.8089875102329032 1166.91609999999991 12.9659080000000007 1.22378980000000004 0 1.07783319999999994 0.467742920000000006 0.610090259999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.515311660678009 -63.3592498066447973 22.5019474585276988 -13.1528619538092002 100001 5062 4936 5221.9502 0.0329999998 0.00800000038 0.386799991 0.0149999997 0.00490000006 0.163299993 200111 0.820173440000000031 0.770698549999999982 0.862580600000000031 0.397919000000000023 0.385639159999999981 0.410198840000000009 +1635721458409799680 Gaia DR2 2481479546393463680 2481479546393463680 1115155481 2015.5 25.2680306191500996 12.4136325768667 -2.5687903023142602 5.4351749235746496 \N \N \N \N \N \N \N 0.743764160000000007 \N \N \N \N \N \N \N \N \N 42 0 42 0 -0.696762259999999967 30.7311993 0 0 3 false 0.0181824880000000001 \N \N -0.0804805199999999998 5 4 5949.03269999999975 0 5 false 41 71.2515909590517964 1.8004455199690399 39.5744019 21.0563800000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.857395698516001 -62.7180142741210034 22.4568740385116001 -12.1658618941781 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160000823753088 2481160000823753088 645485709 2015.5 25.6649320589012007 0.555610003952069054 -3.45873389081177018 0.512929636036139946 0.405950205146625998 0.721959886713787968 0.562289099999999986 -1.90546115129789007 1.05302868635456992 0.979500759963173984 0.848567396746667035 0.14308557999999999 0.464197399999999982 0.0942851900000000048 0.148575230000000003 -0.234975459999999997 0.0689308399999999932 0.387141530000000011 -0.0216638330000000004 0.108462370000000002 0.180052500000000004 140 0 138 2 2.09054800000000007 169.307999 1.47154447719664994 1.55453894519703995 31 false 0.0719213699999999984 1.65588001694055009 0.148298517723128992 0.078619720000000004 16 10 0.956862100000000049 0 16 false 138 197.372453866882012 1.6779405815336299 117.627998 19.9501500000000007 10 95.9323470542747998 15.5441451070074006 6.17160650000000022 20.3964749999999988 9 211.269069033846989 6.21567141849746996 33.9897419999999997 18.9498309999999996 1.55645539999999993 0 1.44664379999999992 0.44632529999999998 1.00031850000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.488283236168996 -63.3522916545732002 22.4988570170842017 -13.1392137052040994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481160005119131648 2481160005119131648 943318569 2015.5 25.6643895556342017 0.0380046236551504005 -3.45420719953366007 0.0311527778959223983 1.11517893276122004 0.0485417519973009998 22.9736019999999996 2.98238546021012008 0.0698956540540812965 -9.1652041640069406 0.0647948657307396009 0.104784760000000005 0.541615599999999975 -0.0364993919999999986 0.0471086539999999998 -0.262980250000000026 0.042836922999999999 -0.00776197759999999997 -0.0168732099999999996 0.0314883099999999985 0.387438740000000004 147 0 146 1 -0.409260779999999991 133.593994 0 0 31 false 24.2547999999999995 1.60070849792911996 0.0104450041889822993 0.100938219999999995 17 10 0.0768801939999999989 0 17 false 146 19705.7566623511011 8.72408507135109978 2258.78003 14.9518830000000005 15 10601.7441465444008 37.7545513653664031 280.807039999999972 15.2879450000000006 15 13325.2451184883994 22.7344810838478004 586.124900000000025 14.4502319999999997 1.21421310000000005 0 0.837713240000000026 0.336061480000000024 0.501651760000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.482760640139986 -63.3484643439622985 22.5000513831286 -13.1348056044753001 100001 5775 5470.25977 5808.25 0.0170000009 0.00800000038 0.0590999983 0.00800000038 0.00340000005 0.0228000004 200111 0.790288149999999967 0.781265850000000039 0.880791250000000026 0.625854800000000044 0.565727949999999979 0.685981630000000009 +1635721458409799680 Gaia DR2 2481161581371722496 2481161581371722496 1597838764 2015.5 25.6702766636283997 0.385158929916316006 -3.43276370133418984 0.357803711758993004 0.0490218523735469966 0.498805195888836983 0.0982785500000000062 3.2742249954685998 0.745093846075513988 -0.840413608359316 0.609665577900775024 0.110785334999999999 0.452462819999999988 0.114451310000000001 0.109236890000000003 -0.243505940000000004 0.0423632820000000021 0.385052799999999973 -0.0456552699999999978 0.0924302899999999983 0.151532009999999995 141 0 140 1 1.69949480000000008 164.134995 0.963830542883974961 1.34806421719983005 31 false 0.144573730000000011 1.66767203276067999 0.103059567632620003 0.090771660000000004 16 10 0.672560449999999976 0 16 false 140 317.10928969516101 1.51944254825448999 208.701004 19.4353429999999996 14 216.617147934642986 23.6919772381457996 9.14305899999999916 19.5121560000000009 14 218.139258805819992 6.51647859027333975 33.4750200000000007 18.9150850000000013 1.37099860000000007 0 0.597070699999999954 0.0768127440000000022 0.520257949999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.473512304541003 -63.3266209512499998 22.5137678161175003 -13.1170315044824992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164536309223808 2481164536309223808 1207350539 2015.5 25.6717134230801989 0.103336007140812994 -3.4257889189536499 0.0861430723723523029 1.99932094575936992 0.130741892038502006 15.2921220000000009 10.9314656987472993 0.195618973373284988 -9.45886509898149086 0.156093478088625004 0.0583137800000000026 0.495184400000000025 0.0635028799999999977 0.073232143999999999 -0.248825180000000007 0.0341110449999999996 0.280459820000000026 -0.0308368819999999995 0.0713149299999999986 0.170607120000000001 140 0 140 0 2.18162820000000002 173.326004 0.22100775369638101 0.921125795086927046 31 false 2.29145809999999983 1.38610083639241011 0.0268226858594305013 0.0832584650000000037 16 10 0.178777490000000011 0 16 false 140 2524.96517349067017 3.11586171124258993 810.359009 17.1827280000000009 15 780.517955311887022 7.10874294651260019 109.796906000000007 18.1204299999999989 14 2643.8216775491901 17.9508028549239 147.28152 16.2063389999999998 1.35619280000000009 0 1.91409110000000005 0.937702200000000041 0.976388930000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.469552611331011 -63.3197257252891035 22.5177732794479013 -13.1110744361984004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091321600 2481161650091321600 453588279 2015.5 25.7062115939085984 1.43794246712732998 -3.42633635808934001 1.42751840560969989 3.26584243872251978 2.13363227749597995 1.53064920000000004 3.58206355505358021 2.32090977048195013 -6.39522245027848957 3.43984001724526012 -0.27704898 0.731402600000000014 0.1416964 0.0670813499999999979 -0.620251400000000008 -0.434921149999999979 -0.494076159999999986 0.333340640000000021 0.349018930000000005 0.575403600000000015 75 0 75 0 0.646888499999999977 77.2225037 0 0 31 false 0.02970128 1.76371657946543992 0.371305563493570023 0.099293864999999995 10 8 3.47990369999999993 0 10 false 76 108.423582709125 1.53016415282634011 70.8574982 20.6005549999999999 5 27.9123784198543987 7.63579113532293974 3.65546660000000001 21.736896999999999 7 136.94179959393 11.8760498431414998 11.5309220000000003 19.4205800000000011 1.52046419999999993 0 2.31631659999999995 1.1363411000000001 1.17997550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.538941964195999 -63.3050647361063028 22.5504433484749001 -13.1242583260395005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161276429464576 2481161276429464576 1518712178 2015.5 25.7177112850987015 0.0477350441527805008 -3.45798472298890003 0.0405375295111621015 2.07642202612113991 0.0604412547077314982 34.354379999999999 37.6403073662176979 0.0890253132460159941 -7.86996760035335008 0.0887806400137896995 0.0835785899999999943 0.535570100000000049 0.0108840139999999991 -0.0114398620000000003 -0.247670019999999991 -0.0311583560000000016 0.00395019350000000002 -0.0215229819999999995 0.038731164999999998 0.325523320000000005 131 0 131 0 -2.58775699999999986 88.694603 0 0 31 false 13.2936130000000006 1.42584365605933994 0.0137588196151379998 0.108950465999999996 15 10 0.0960667359999999998 0 15 false 130 10782.1195607665995 7.22501289817869985 1492.32996 15.6066059999999993 14 3891.92195409331998 19.3584953394960984 201.04464999999999 16.3759779999999999 14 10034.7192902077004 25.8741010073930013 387.828700000000026 14.7581570000000006 1.29164229999999991 0 1.61782169999999992 0.769372940000000005 0.848448749999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.592956482315998 -63.3284110139150016 22.5494429157424996 -13.1579100130424003 100001 4379 4244 4566.85986 0.648000002 0.390300006 1.00699997 0.331699997 0.180000007 0.477499992 200111 0.634873099999999968 0.583715740000000038 0.675905599999999995 0.133526759999999994 0.125194090000000008 0.141859430000000009 +1635721458409799680 Gaia DR2 2481161650091200768 2481161650091200768 66892744 2015.5 25.7096733025149007 0.422510414432145986 -3.42615484374737012 0.285935433986651 1.4771759791279 0.577540358241361962 2.5577017999999998 18.5938820239998996 0.572705992656452945 2.15664556004005981 0.490482937631733007 -0.247386660000000008 0.746398200000000012 0.058008841999999998 0.10511007 -0.500262899999999955 0.0492775000000000019 0.0669344139999999976 0.0320793759999999997 0.0813023199999999974 0.315539499999999973 124 0 122 2 2.41726200000000002 157.195999 1.05533426411621001 2.83125627630225996 31 false 0.254228059999999978 1.3615538436227701 0.0904397060468116049 0.0676437700000000058 15 9 0.575304570000000015 0 15 false 120 554.93376344911303 1.77971687060098005 311.809998 18.8277630000000009 12 105.264753355989995 9.57140481698450962 10.9978370000000005 20.2956809999999983 10 727.200100960307964 14.9951280749586999 48.4957580000000021 17.6077839999999988 1.50011580000000011 0 2.68789670000000003 1.46791840000000007 1.21997829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.545669105465009 -63.3033795229342005 22.5538111320497983 -13.1253612416773002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351453289229056 2481351453289229056 1501239143 2015.5 25.4950024874349985 3.04002688819582989 -3.42637357128844 3.53940025415644 \N \N \N \N \N \N \N 0.36709172000000001 \N \N \N \N \N \N \N \N \N 70 0 69 1 12.8528230000000008 345.290985 13.4049879736998996 18.2627113270016999 3 false 0.00375080759999999987 \N \N 0.173868090000000003 8 7 12.3610190000000006 0 8 false 69 76.1272191107601941 1.3211596562258201 57.6214981 20.9845159999999993 6 57.9590241551399004 9.8092015221951101 5.90863850000000035 20.9435859999999998 5 154.998734579787993 3.28744064778507017 47.1487539999999967 19.2861000000000011 2.79739300000000002 0 1.65748600000000001 -0.0409297939999999985 1.69841580000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.116318610949008 -63.3973633019030984 22.3491913449217989 -13.0466459001857 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351590725364736 2481351590725364736 662668795 2015.5 25.5027883441767997 0.359013462413137974 -3.40863183067471986 0.283973982249147994 1.62553393012036995 0.450285810071524017 3.61000500000000013 13.4255658072046007 0.681718719634161974 1.82149444976311004 0.526224481824819956 0.037443746 0.482804149999999987 0.0546951030000000019 0.0646326499999999998 -0.266613500000000003 -0.0207147709999999999 0.113103079999999995 0.0176924079999999997 0.147832920000000007 0.183792399999999995 171 0 169 2 4.0846309999999999 248.774994 1.29276874327233005 3.11252903049937002 31 false 0.147812219999999994 1.29967723069375007 0.0943123364133740955 0.0237952339999999984 19 10 0.612300999999999984 0 19 false 170 354.605888289148027 1.5492539739190101 228.888 19.3140010000000011 18 78.8427273000132942 9.7586486510814705 8.07926699999999975 20.6094839999999984 16 436.926818170516981 8.85276727749437953 49.3548279999999977 18.1608979999999995 1.45448669999999991 0 2.44858550000000008 1.29548259999999993 1.15310289999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.114724879640988 -63.3780070667448001 22.363319058919501 -13.0330171772687002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163917833935616 2481163917833935616 1431730377 2015.5 25.5231562212971994 0.170373100188266013 -3.41490643742963984 0.120317004121450993 3.35882820514646019 0.210584315228548008 15.9500399999999996 -35.252789456391298 0.298270647021638025 -30.8562510628241 0.215081574471921999 0.0483290070000000002 0.5546373 0.0122388589999999995 0.127613169999999998 -0.209642980000000007 0.0293052 0.107780570000000006 0.0428287649999999978 0.171317200000000003 0.189575049999999995 160 0 159 1 32.5805930000000004 1722.06006 1.02641478241371997 66.3474889375203958 31 true 0.83414566999999995 1.40122900154857999 0.0373775000413901978 0.0622783380000000025 18 10 0.268356859999999975 0 18 false 158 8058.8407484695399 9.7681309588968297 825.013977 15.9226849999999995 15 2092.17312937834004 12.4216434343878994 168.429660000000013 17.0498939999999983 15 9191.69263155703084 14.5843507175219003 630.24350000000004 14.8534319999999997 1.4001847999999999 0 2.19646259999999982 1.12720970000000009 1.06925300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.161668347047993 -63.3748115284248001 22.3803470675612992 -13.0463423201927 100001 4011.83008 3538 4747.10986 1.06130004 0.711499989 1.39260006 0.502499998 0.328000009 0.648999989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351556365046528 2481351556365046528 1584136717 2015.5 25.4917053344786986 0.470491626770417004 -3.39932898595254995 0.415519145814488011 0.14184895621395599 0.598537925232692003 0.236992430000000004 -0.251575037281559 0.989412902137983052 -0.538505270477264042 0.770105093418710029 0.126412940000000001 0.368551850000000014 0.216350299999999995 0.0323972199999999974 -0.192352999999999996 -0.0130053500000000006 0.287078600000000017 -0.152388140000000005 0.121199875999999998 0.119092785000000007 152 0 150 2 0.476759969999999977 152.580994 0 0 31 false 0.0904749700000000018 1.69417924036212009 0.136800621042768994 0.046478499999999999 17 10 0.885427500000000034 0 18 false 150 194.742132792252988 2.66869192317271997 72.9729004 19.9647159999999992 13 99.4920629163682975 18.2202568870890005 5.46051929999999963 20.3569159999999982 13 110.111996737032996 8.48354816216182961 12.9794739999999997 19.6573330000000013 1.07631589999999999 0 0.699583049999999984 0.392200470000000023 0.307382580000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.083469066138008 -63.3744354954201015 22.3562814179942997 -13.0202919667401993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351663739917824 2481351663739917824 1237658832 2015.5 25.5007401323195992 0.311689861183238992 -3.40365157016067998 0.242471197149875001 2.10589649371333998 0.388547020529612985 5.41992700000000038 7.93094151216762988 0.601974870400960982 -21.8706935644398008 0.417271400135854009 0.00808555499999999948 0.455658500000000022 0.027759787000000001 0.0949503200000000047 -0.298718419999999985 0.0333006419999999984 0.240128200000000014 0.0128429159999999994 0.116686659999999998 0.143225309999999995 177 0 175 2 3.46176430000000002 241.311005 1.12134010679514007 3.1468677869269599 31 false 0.197454619999999997 1.39796503962983998 0.0772187468931144066 0.00510459300000000015 20 10 0.533571099999999965 0 21 false 175 432.282823143127985 1.44305105527799005 299.562012 19.0989460000000015 19 105.1597713261 12.5589294606963993 8.3733070000000005 20.2967639999999996 18 537.913942954250047 10.0832087293496002 53.3474959999999996 17.9351389999999995 1.48762259999999991 0 2.36162569999999983 1.19781880000000007 1.16380689999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.105785329870997 -63.3744105887960032 22.3632519096844007 -13.0276339553663991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351659444841728 2481351659444841728 1199228012 2015.5 25.502678219777799 0.155043307723679996 -3.40210641350215992 0.118916577752202005 1.88451831881755005 0.191527463804571002 9.83941599999999994 8.02727269161823997 0.298007977771632016 -22.1904102280682984 0.222108227536643998 -0.000944477739999999961 0.465233400000000019 0.0221522169999999984 0.0660291900000000015 -0.305926900000000002 -0.0155897569999999992 0.0626036700000000002 0.0342196229999999976 0.15039248999999999 0.190617499999999995 170 0 168 2 3.98636819999999981 245.212997 0.547546531266900005 2.96612395219981018 31 false 0.82759963999999997 1.34813907947230005 0.0400600985603350029 0.0198243469999999991 19 10 0.26884574 0 19 false 161 1261.19446197925004 2.13101758396358987 591.827026 17.9364099999999986 16 341.851443639203978 11.8069833060463001 28.9533270000000016 19.0167940000000009 15 1405.41803284503999 5.9392043192295203 236.634060000000005 16.8924060000000011 1.38540839999999998 0 2.12438770000000021 1.08038330000000005 1.04400439999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.10817466359299 -63.3721781558940975 22.3656823817694992 -13.0269104782132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523357429165568 2505523357429165568 674034547 2015.5 26.2149705827946988 1.39698471041641992 -2.19656310848248015 1.15727717573449995 \N \N \N \N \N \N \N 0.164381980000000011 \N \N \N \N \N \N \N \N \N 137 0 136 1 25.4795799999999986 1124.82996 8.78231007035928002 54.7401985425071018 3 false 0.0109739039999999996 \N \N 0.060722039999999998 16 10 2.7832344 0 16 false 138 269.463487333136982 2.54963612817897012 105.686996 19.6121160000000003 11 275.324872228216009 11.6971238499839991 23.5378270000000001 19.2517740000000011 13 577.428161425787948 9.51319541815989922 60.6976050000000029 17.8581749999999992 3.16463299999999981 0 1.39359860000000002 -0.36034202999999998 1.75394059999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.357612025896998 -61.9770569334848034 23.4969417589144989 -12.1663216863607992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351865602694272 2481351865602694272 1553858071 2015.5 25.4924351384856998 0.376434644784677974 -3.38888315984788013 0.284981637574391988 1.33686896798034005 0.456876744755738973 2.92610429999999999 17.2094903906464012 0.772809680786677 3.45717300736919997 0.493481073835546014 0.0225347969999999988 0.396893769999999979 -0.0790131200000000061 0.0934494200000000053 -0.276377079999999997 0.0104152120000000001 0.232513770000000008 0.0653422099999999978 0.132053969999999993 0.109152269999999996 169 0 168 1 1.72840140000000009 195.488007 0.974621437441969052 1.43559791403570003 31 false 0.140411559999999991 1.32890079203141998 0.0942773128703811997 -0.0288644379999999992 19 10 0.681580659999999949 0 19 false 168 311.862898300490997 1.27891541057048008 243.850006 19.4534570000000002 14 76.8276980047346996 9.00540899027697073 8.53128300000000017 20.637594 17 422.378783473427973 4.35620554881276956 96.960250000000002 18.1976639999999996 1.60072419999999993 0 2.43992999999999993 1.18413729999999995 1.25579259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.074813560541003 -63.3647095492041998 22.3609275170233985 -13.0108497903603997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351625085102976 2481351625085102976 655157852 2015.5 25.5191851218343011 0.0367480775385106984 -3.39101336912833018 0.0299073442626526 0.937924225175746029 0.0452667289643405024 20.7199479999999987 9.46816120308811016 0.0668173406316626001 -1.07639622142423996 0.0649136414783095944 0.0305390190000000006 0.540929199999999999 -0.0667079200000000039 0.0259430670000000002 -0.293250200000000016 -0.198191850000000003 -0.396122719999999984 0.165827959999999996 0.263391399999999998 0.350833769999999989 169 169 168 1 -0.237031390000000008 158.102997 0 0 31 true 388.346830000000011 1.52240208392772991 0.00955206299465696969 0.0152564299999999996 19 10 0.0485267200000000024 0 19 false 165 287094.847250233986 66.2723544253825025 4332.0498 12.0433029999999999 18 126472.389820734999 166.448833835543013 759.827449999999999 12.5963989999999999 19 226986.323406790994 355.912440018600023 637.75890000000004 11.3719210000000004 1.23115660000000005 0 1.22447869999999992 0.553096800000000055 0.671381950000000005 52.2953343908983967 1.4190499436403099 5 4500 3 0 NOT_AVAILABLE 152.130515224411994 -63.3550241702540973 22.3856008209710993 -13.0226696589023003 100001 4897.87988 4829.70996 4983.25 \N \N \N \N \N \N 200111 5.3014064000000003 5.1213160000000002 5.45210740000000005 14.5716149999999995 13.5792660000000005 15.5639649999999996 +1635721458409799680 Gaia DR2 2481352071761702272 2481352071761702272 853649647 2015.5 25.5184331325192986 0.546018109317984002 -3.38380377062745019 0.490434170678109016 2.16320937897499022 0.700937947467276001 3.08616400000000013 -0.414079747626670991 1.12174217133849008 0.503562666505563028 1.06466977966977994 0.0592323699999999995 0.399012800000000001 0.0865288699999999938 -0.0319644850000000008 -0.328371550000000012 -0.116002830000000001 -0.115243670000000006 0.00291423379999999985 0.176605139999999994 0.27538269999999998 151 0 151 0 0.900732599999999994 161.225998 0 0 31 false 0.0619975330000000005 1.77507346481930006 0.172309200096072007 0.0359390269999999984 17 10 1.08908549999999993 0 17 false 149 159.432225069816013 1.16108973955883998 137.313004 20.1819249999999997 14 101.398383733272993 6.34532546426962973 15.9800129999999996 20.3363109999999985 15 105.138632691591994 9.60767371413964 10.9431930000000008 19.7075139999999998 1.29545339999999998 0 0.628797530000000049 0.154386519999999999 0.474411000000000027 \N \N 0 \N \N \N NOT_AVAILABLE 152.122017661526996 -63.3488584319702994 22.3876109469469 -13.0156906705917006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114455808 2481163849114455808 225615739 2015.5 25.5275665708260995 3.01333597133963993 -3.42792792361785992 4.63896381837173966 \N \N \N \N \N \N \N 0.240683289999999994 \N \N \N \N \N \N \N \N \N 87 0 86 1 26.8542179999999995 1125.12 16.1902322723050993 67.7048055383821037 3 false 0.00326943200000000007 \N \N 0.266294399999999987 11 7 18.4509620000000005 0 11 false 98 121.914984675100996 1.67935189653252004 72.5964966 20.4732230000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.183169374084997 -63.3846158839201976 22.3796230174983997 -13.0600697926878002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163849114556544 2481163849114556544 759095019 2015.5 25.5346477372231 0.592065371065196966 -3.42403920034174991 0.562734552985425962 1.15864865724963995 0.760394609354173023 1.52374649999999989 4.47767501208409957 1.23309931720460009 -5.63211259575431988 1.27353060863365997 0.101404264999999993 0.391534800000000016 0.070142709999999997 -0.0752717400000000036 -0.291724600000000001 -0.154713180000000006 -0.0817787299999999939 0.00974386900000000049 0.181309310000000001 0.263271839999999979 141 0 140 1 0.69890540000000001 146.108994 0 0 31 false 0.0543081200000000014 1.32757152625542996 0.169746203382001998 0.0412858050000000018 16 10 1.24125050000000003 0 16 false 141 142.818614730462997 1.1381945684633501 125.477997 20.3014030000000005 10 72.5120980541804983 15.7396969799269009 4.6069564999999999 20.7003610000000009 15 181.840753584754992 9.63290351372183018 18.877044999999999 19.1126919999999991 1.78095029999999999 0 1.58766940000000001 0.398958199999999985 1.18871119999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.193587283645002 -63.3780357521993025 22.3878395733579012 -13.0590591698290996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163677315764352 2481163677315764352 1054936248 2015.5 25.552530829045299 3.21677557135926984 -3.42652237177260011 2.15583063371410022 \N \N \N \N \N \N \N -0.369773750000000012 \N \N \N \N \N \N \N \N \N 110 0 110 0 22.7057169999999999 894.625 14.0206412882661997 47.5430982285623998 3 false 0.00423559300000000017 \N \N -0.0768963399999999936 13 8 4.81167459999999991 0 13 false 111 111.378105906957998 2.15660050749343002 51.6451988 20.5713650000000001 9 118.275586739907993 11.9603911585044997 9.88893999999999984 20.1691509999999994 10 277.623882491039012 6.51668494121661013 42.6020129999999995 18.6532780000000002 3.55455370000000004 0 1.51587300000000003 -0.40221404999999999 1.9180870000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.231850224200002 -63.3724861661618988 22.4039366831425006 -13.0679445981245994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164055272889984 2481164055272889984 534332512 2015.5 25.5605740388714011 0.452054347004839985 -3.41021573779493981 0.388432268259812974 1.81245587406315001 0.586781409777217045 3.08880929999999987 10.2596722562949996 0.897108319983637048 -0.828730429998478013 0.705903935121896975 0.0524190299999999984 0.423057139999999998 0.0973805860000000051 0.0578926759999999971 -0.31080213000000001 -0.0152563149999999995 0.157348049999999989 -0.00991327699999999985 0.145103380000000004 0.179812200000000005 166 0 165 1 1.49877199999999999 187.593994 0.626727716103422039 0.312587448797405021 31 false 0.0882554799999999973 1.17118552562219991 0.119084366546366005 0.0237263269999999984 19 10 0.806775869999999951 0 19 false 164 207.90494266747001 1.30025423230408999 159.895996 19.8937029999999986 13 74.6367736343912043 13.8290970187875999 5.39708230000000011 20.6690059999999995 15 264.950110296791991 10.0013106557840992 26.4915389999999995 18.7040100000000002 1.63337580000000004 0 1.96499629999999992 0.775302900000000017 1.18969349999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.232094225466 -63.3543104250675029 22.4177659281397013 -13.0557425521422008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164295792134656 2481164295792134656 160723518 2015.5 25.5642569475309003 0.842725804335691997 -3.4039508256674802 1.24125976370163005 1.01725493285876989 1.21380007859288996 0.838074499999999944 -0.840220028657675977 2.15245570984594981 -12.5545804331880007 3.52249305082147979 0.359224800000000011 0.167021649999999994 -0.20683051999999999 -0.347864449999999992 -0.555039999999999978 -0.616449000000000025 -0.752935400000000032 0.354551459999999985 0.513281399999999999 0.708672940000000029 117 0 116 1 0.861013200000000034 123.612 1.06080058231301999 0.362584114674606994 31 false 0.0362563899999999995 1.11792802668078006 0.264179252772341 0.176066100000000003 14 8 3.58519580000000015 0 15 false 118 110.554301666279002 1.07644529727552007 102.703003 20.5794260000000016 12 46.1056568643102977 8.27837224222652956 5.56941099999999967 21.1920029999999997 12 136.343349662396008 11.4507935835382995 11.9068909999999999 19.4253350000000005 1.65031119999999998 0 1.76666830000000008 0.612577440000000029 1.15409089999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.233374928370012 -63.3470692192043003 22.4236434322283991 -13.0512724031774994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164330150799232 2481164330150799232 691380317 2015.5 25.5449506693380997 0.724539671946290986 -3.39364992090404982 0.885637521726052035 0.594448270075167984 0.964548482376797023 0.616296949999999955 32.2426265930113018 1.6472219167626001 -6.66656602315106017 1.73585379089278002 0.297780800000000012 0.222753570000000012 0.179183960000000003 0.200360879999999991 -0.408551300000000006 0.323540480000000019 0.463650019999999996 -0.232687919999999993 -0.173745260000000012 0.487386800000000009 107 0 107 0 0.0974452299999999938 102.726997 0 0 31 false 0.0443575599999999973 1.71113588440084996 0.244653992515950991 0.151277230000000013 13 9 1.88356849999999998 0 13 false 109 126.598504274817998 1.42360896064550002 88.9279022 20.4322949999999999 10 98.9742339816450993 21.3919610510212017 4.62670229999999982 20.3625830000000008 11 160.13370075348999 11.3859538673042007 14.0641440000000006 19.2507130000000011 2.04669020000000002 0 1.11186980000000002 -0.0697116849999999955 1.18158150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.184699804773004 -63.3462017206743013 22.4091468650624996 -13.0345965563373998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352346639012864 2481352346639012864 551649905 2015.5 25.4980668377594988 0.0229116100582162988 -3.36474276441109987 0.0186026607643779984 2.11777128163533002 0.0287997374128505998 73.5343900000000019 32.0899118049242986 0.0431067731721260991 -3.9663146881168001 0.0395206605984097029 0.00152872490000000006 0.514487099999999975 -0.0661289399999999972 0.043326240000000002 -0.348875729999999995 -0.0606216200000000011 -0.169274079999999993 0.0742857499999999976 0.142512770000000011 0.351499799999999973 168 0 167 1 0.502816139999999967 170.529007 0 0 31 false 140.254760000000005 1.58488329463288991 0.00608125849760021014 0.0290207019999999989 19 10 0.0520025900000000013 0 20 false 162 111605.008671402 48.3574064245053989 2307.91992 13.0691570000000006 16 59361.2760929309006 87.8710082468689961 675.550200000000018 13.4176300000000008 17 75566.6213093808037 88.1012717676553052 857.724550000000022 12.5660950000000007 1.20897710000000003 0 0.851534840000000015 0.348473550000000021 0.503061300000000045 \N \N 0 \N \N \N NOT_AVAILABLE 152.062741290210994 -63.3405217623656966 22.3754207621780985 -12.9904796904384003 100001 5742 5615.06006 5806 0.0930000022 0.0425999984 0.194800004 0.0469999984 0.0166999996 0.0970999971 200111 1.00283630000000001 0.980849500000000041 1.04868939999999999 0.984935050000000034 0.95210399999999995 1.01776610000000001 +1635721458409799680 Gaia DR2 2481352282215207552 2481352282215207552 655479307 2015.5 25.5178228614249001 0.0407109094369444979 -3.36887553025434006 0.0307006716443767001 0.714774408218231017 0.0497520144705312015 14.3667429999999996 0.340150598725483977 0.0757288981009248963 1.24992914254514997 0.0608185779388826994 -0.0195157640000000014 0.500550700000000015 -0.0341894739999999975 0.063203750000000003 -0.306294469999999985 -0.060270490000000003 -0.114136730000000006 0.0856452659999999977 0.18976092 0.237217000000000011 178 0 176 2 -0.592657100000000048 159.634995 0 1.53687003158857995e-15 31 true 15.025639 1.56907544185438996 0.0108650808770448006 0.00245341359999999998 20 10 0.0762055600000000055 0 20 false 174 12401.7902586710006 6.73789489772950034 1840.59998 15.4546550000000007 19 6325.81161107667958 30.4905015519745 207.468279999999993 15.8485980000000009 18 8830.1516718733892 17.2598402331962006 511.600999999999999 14.8969989999999992 1.22207869999999996 0 0.951598170000000021 0.393942830000000022 0.557655330000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.10633095684301 -63.3356792762984995 22.3926745332361996 -13.0015880912322004 100001 5403 5349.60986 5538.5 0.472499996 0.272700012 0.579299986 0.223000005 0.128000006 0.282099992 200111 1.1359840000000001 1.08108000000000004 1.15877309999999989 0.990784050000000027 0.839133699999999982 1.14243439999999996 +1635721458409799680 Gaia DR2 2481352312279298688 2481352312279298688 664495667 2015.5 25.5248194004044997 0.174215139561165994 -3.35808144391357999 0.121084684607411994 0.566809463028433047 0.194096938845415012 2.92023900000000003 4.27064485989930009 0.372676608616551996 -4.17336768025188043 0.230213495437462001 -0.0761190199999999956 0.298862930000000027 -0.0444156230000000013 0.0420261700000000016 -0.274150500000000019 0.00327074159999999996 0.0709976999999999969 0.00900706100000000023 0.14231764999999999 0.0459955820000000001 142 0 141 1 0.66646755000000002 146.587997 0 0 31 false 0.803995899999999986 1.60386283615758996 0.0423939222643706995 -0.104286745 16 10 0.329298020000000025 0 16 false 141 1011.54072836017997 2.01146190149575022 502.888 18.1759069999999987 16 411.049123800888026 6.93438599568724978 59.2769300000000001 18.8166539999999998 15 865.246903505244973 12.8394661700288992 67.3896299999999968 17.4190700000000014 1.2617347000000001 0 1.39758490000000002 0.640747100000000014 0.756837839999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.109893454381989 -63.3229223827596996 22.4034196540129003 -12.9941262989653001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352346639037952 2481352346639037952 1630749627 2015.5 25.4976211818474994 0.366380133542510977 -3.35325288134749 0.277039705913696976 1.91537191215906999 0.449838634304641993 4.25790899999999972 4.87605188709838 0.696456625896644033 -7.08509605499069028 0.475135970929463025 -0.0144511199999999996 0.469892829999999984 0.028813155 0.0949093550000000008 -0.280970700000000018 0.0188741889999999995 0.235634569999999988 0.0238803809999999991 0.135905560000000009 0.113618724000000004 175 0 174 1 4.8693995000000001 274.338989 1.6160167643182699 5.50629106269242019 31 false 0.147053689999999987 1.37425187399061 0.0911538396027938014 -0.00544117799999999964 20 10 0.614693939999999994 0 20 false 174 420.61727539497798 1.31290194942254002 320.372009 19.1286489999999993 19 91.8359729839928036 8.58806706793358998 10.6934395000000002 20.4438549999999992 19 525.791645046131976 11.3727883104438998 46.2324300000000008 17.9598869999999984 1.46838390000000008 0 2.48396870000000014 1.31520649999999995 1.16876219999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.050738476713008 -63.3303629528340011 22.3793409317354985 -12.9796342532560001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352140482902656 2481352140482902656 1161783875 2015.5 25.5559899529641008 2.7437460360108501 -3.36371480067540984 1.72951207593718004 \N \N \N \N \N \N \N -0.453405950000000002 \N \N \N \N \N \N \N \N \N 79 0 79 0 0.581252800000000014 80.5911026 0 0 3 false 0.022887438999999999 \N \N 0.313028870000000015 10 6 7.26465940000000021 0 10 false 80 85.6400724531392967 1.05775303747259009 80.9641037 20.8566719999999997 6 38.1064976595918026 12.2591941191193996 3.10840149999999982 21.398890999999999 7 109.620346244857998 13.5396490916918992 8.09624799999999922 19.662191 1.72497330000000004 0 1.73669999999999991 0.542219160000000033 1.19448090000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.177747245037011 -63.3144556090766031 22.4309802526034012 -13.0108255173056993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352243560394880 2481352243560394880 444735358 2015.5 25.5509973418582987 0.272558833316892013 -3.35301120813483999 0.222655985151713004 1.07920749729050991 0.342382186372933994 3.15205499999999983 -0.619290869477835959 0.544267109728254983 -4.7113765043826703 0.414463755036383996 0.0387806259999999986 0.419553520000000013 0.077955079999999996 0.0443111200000000025 -0.27091949999999998 -0.0434517970000000003 0.11328133 0.00283796880000000001 0.169903069999999989 0.145469810000000005 167 0 167 0 1.26348090000000002 185.093994 0 0 31 false 0.243913350000000001 1.26941509634469996 0.0713937702246525002 0.0115217840000000002 19 10 0.485326299999999988 0 19 false 167 410.067564650859993 1.78177976107681002 230.145004 19.1562270000000012 19 81.3714309042294985 5.77399154087556976 14.0927520000000008 20.575209000000001 17 545.181571064499053 7.50372768728013018 72.654759999999996 17.9205669999999984 1.52792620000000001 0 2.65464199999999995 1.41898159999999995 1.23566060000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.157381463195009 -63.3069900936447993 22.4302706763252999 -12.9990386806596998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848654464 2481163990848654464 298539712 2015.5 25.5721238312505008 12.6784438446696992 -3.42028992328053993 3.89188482364406019 \N \N \N \N \N \N \N 0.731889099999999959 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.31567189999999989 45.2330017 3.77858695153652002 1.05440519618677997 3 false 0.0122438740000000001 \N \N -0.0564702560000000034 5 4 30716.2360000000008 0 5 false 38 66.9642097862226962 2.08017296240765015 32.1917 21.1237579999999987 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.265031763662989 -63.3583409386345977 22.4249597147660999 -13.0693552850940993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848610560 2481163990848610560 747161114 2015.5 25.5792991229081998 2.41844554539374013 -3.42130365415407001 8.05708749743594943 \N \N \N \N \N \N \N -0.384618459999999995 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.47710849999999994 75.7537003 2.46821570467816986 0.873430086219839974 3 false 0.0205804129999999988 \N \N -0.119195125999999998 8 4 483.285300000000007 0 10 false 67 104.042128738219006 1.80439323330065005 57.6604004 20.6453419999999994 4 101.482359326980998 5.44475778707749036 18.6385439999999996 20.3354110000000006 4 80.8871138483529961 4.51662988945713995 17.9087309999999995 19.9922220000000017 1.75284250000000008 0 0.343189240000000007 -0.309930800000000006 0.653120040000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.280387030593999 -63.3561236888829029 22.4314124072752001 -13.0729360121962994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163990848781696 2481163990848781696 1348090403 2015.5 25.5866981724091005 0.0452196765399230025 -3.42450785369730015 0.0399808550364295981 2.36223153513858009 0.0604092952065157021 39.1037749999999988 9.3310363629315507 0.0865197104769032943 10.5291315258265001 0.0884484421306129948 -0.0478339119999999993 0.518635630000000014 -0.0271641980000000005 0.0258136199999999989 -0.443667350000000016 -0.0781707299999999938 -0.17840737000000001 0.0622633729999999969 0.116432930000000004 0.416271270000000027 176 176 175 1 6.43266440000000017 317.325012 0 0 31 true 135.616000000000014 1.61315210174083989 0.0125940522244837004 0.0270895290000000011 20 10 0.060175880000000001 0 21 false 171 10333983.6445877999 3710.65721926913011 2784.94995 8.15269699999999986 18 5658634.88251749985 11037.7123681888006 512.663760000000025 8.46960900000000017 20 6569444.42197331041 13284.4677956344003 494.520719999999983 7.71809800000000035 1.18328809999999995 0 0.751511099999999987 0.316912650000000018 0.434598450000000025 13.0393633037475993 0.60822634728068703 9 6000 4.5 0 NOT_AVAILABLE 152.298323363171988 -63.3557772133308035 22.4372501603263999 -13.0786353668699 100001 5925 5837.1001 5993 \N \N \N \N \N \N 200111 8.08433499999999938 7.90191749999999971 8.32965000000000089 72.5666049999999956 70.1292200000000037 75.0039900000000017 +1635721458409799680 Gaia DR2 2481164128287734912 2481164128287734912 172532306 2015.5 25.5885643861059009 0.0390158734074513014 -3.40496472088576008 0.0306580978429056988 1.06175294046588009 0.0485786617241217994 21.8563650000000003 24.2976167244343983 0.0741043946276558063 -9.62730719747774089 0.0646873225648775946 -0.0406403879999999995 0.492278839999999995 -0.0331968299999999966 0.0306435800000000001 -0.356235440000000014 -0.101231299999999996 -0.205733510000000008 0.0827497539999999948 0.183698549999999988 0.283582239999999985 175 0 175 0 -0.941531959999999946 152.602005 0 0 31 true 15.9658549999999995 1.59593716347660997 0.0103515182528659006 0.00664618559999999997 20 10 0.0775362849999999965 0 20 false 173 13241.8777917069001 8.39818065691349958 1576.76001 15.3834914999999999 16 6736.71115946413011 12.6463849940797992 532.698549999999955 15.7802690000000005 16 9480.95660536129981 27.2813090681123001 347.52573000000001 14.8197899999999994 1.22472570000000003 0 0.960478799999999966 0.396777150000000023 0.563701600000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.283015220359999 -63.3373857173492993 22.4464174449133012 -13.0611521459534998 100001 5381 5325 5747.8999 0.0208000001 0.00800000038 0.125300005 0.0120000001 0.00389999989 0.0697999969 200111 0.79776347000000003 0.699169499999999999 0.814630999999999994 0.480723100000000014 0.432183680000000014 0.529262539999999948 +1635721458409799680 Gaia DR2 2481163368079238528 2481163368079238528 888152923 2015.5 25.6078935697833003 1.58402013395182006 -3.41992235285959012 1.91952789927854006 \N \N \N \N \N \N \N 0.661445599999999967 \N \N \N \N \N \N \N \N \N 86 0 86 0 0.733736999999999973 89.9854965 0.853093617317041031 0.119223202708373999 3 false 0.0229646600000000013 \N \N 0.0489937900000000023 11 6 6.76244449999999997 0 12 false 91 83.4220186115016986 1.22957893124296991 67.8460007 20.8851639999999996 6 44.2956859574990034 12.1045631253509001 3.65942049999999997 21.2354850000000006 6 109.236369410652998 16.6583041057372014 6.55747199999999975 19.6660019999999989 1.84042609999999995 0 1.56948280000000007 0.350320819999999977 1.21916200000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.336266300087999 -63.3423977610706004 22.4591783608053994 -13.0821643599755006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164128287747968 2481164128287747968 56818464 2015.5 25.6004809822494011 0.0347295873030738014 -3.40684020396234022 0.0290490979410788011 1.05712105170274007 0.0433340641249400013 24.3946900000000007 26.0142503489520003 0.0671459319516620051 -1.41543326042377005 0.0658340340658422063 -0.0198478199999999987 0.488167320000000016 -0.042953115 0.00472460730000000013 -0.365704240000000014 -0.176883299999999993 -0.351989200000000002 0.112861310000000006 0.221501480000000001 0.349120350000000024 166 0 166 0 -2.47459939999999978 120.002998 0 0 31 true 21.6074200000000012 1.5848164081368401 0.00928091625889720939 0.0154318579999999997 19 10 0.0773404699999999945 0 20 false 166 17680.8329202071 9.78715434773184079 1806.53003 15.0696089999999998 17 9449.86161537894077 23.7215121624875991 398.366759999999999 15.4128249999999998 17 12117.5546311065009 31.3120565729288991 386.993260000000021 14.5533830000000002 1.21981910000000005 0 0.859441760000000055 0.343215939999999997 0.516225799999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.308682335241997 -63.3338719509726005 22.4570617355801012 -13.0672766649508993 100001 5632.75 5380 6034.81982 0.0187999997 0.00800000038 0.0647 0.00800000038 0.00389999989 0.0299999993 200111 0.83427960000000001 0.72681450000000003 0.914509059999999985 0.631247760000000047 0.573075200000000007 0.689420339999999965 +1635721458409799680 Gaia DR2 2481164128287734784 2481164128287734784 1267889813 2015.5 25.6052467931424985 0.0655717671529455065 -3.4057454197234498 0.0507394575353945013 0.952437451052637996 0.0811691141950045963 11.7339889999999993 11.9259515799107998 0.127550573663409994 -0.108595330665438999 0.101767177823907998 -0.0493359569999999997 0.45749430000000002 -0.00841901200000000002 0.0353757140000000025 -0.358320599999999989 -0.0548657140000000029 -0.072617710000000002 0.0502458480000000027 0.154086749999999995 0.223287869999999999 176 0 174 2 -0.146685599999999999 165.658997 0 1.54593719008863991e-15 31 true 4.7518167 1.52749420931347002 0.0164823836380428995 -0.00471286760000000013 20 10 0.120875529999999995 0 20 false 174 4379.73834900670045 4.23901189270277978 1033.19995 16.5847450000000016 17 1992.32906931783009 9.22444696652386931 215.983579999999989 17.1029850000000003 16 3460.50145868828986 13.7672563313089995 251.357380000000006 15.9140720000000009 1.24501290000000009 0 1.18891330000000006 0.518240000000000034 0.670673399999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.317147429547987 -63.3308065052943974 22.4620162626205015 -13.0680107552459006 100001 4886 4763.87988 4953.5 0.0350000001 0.00260000001 0.322299987 0.00800000038 0 0.135100007 200111 0.648909799999999981 0.631344000000000016 0.682603900000000041 0.21621071 0.17778403000000001 0.254637400000000014 +1635721458409799680 Gaia DR2 2481164403165715968 2481164403165715968 1337583736 2015.5 25.5738713315194985 1.15152574279848996 -3.39075669920962008 1.12017533635682009 -0.330815164241131998 1.72456398096275998 -0.191825390000000012 10.4763973586346992 1.94476384662489998 -1.60476047731607996 2.70297861213899981 -0.293400470000000024 0.707929200000000036 0.225136609999999987 0.0501498169999999993 -0.648841699999999966 -0.48405585000000001 -0.548500899999999958 0.337759580000000004 0.380875620000000026 0.570050949999999945 124 0 123 1 0.090918250000000006 118.732002 0 0 31 false 0.030338045000000001 1.20242946287676999 0.266647116537375994 -0.00618997700000000015 15 8 2.79716869999999984 0 16 false 125 105.510016731817004 1.25657842100958006 83.9661026 20.6301300000000012 11 59.2358392245942014 12.2127947184887997 4.85031000000000034 20.9199279999999987 13 130.252838197561005 17.6465876746622996 7.38119130000000023 19.4749529999999993 1.79593069999999999 0 1.44497490000000006 0.289796830000000005 1.1551781000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.239788650348999 -63.3310095051782014 22.4377911695092003 -13.0425409179207996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164433230015360 2481164433230015360 218985119 2015.5 25.5868207976071993 0.273468456305352992 -3.3840392024182302 0.204445217139905988 2.09521384821549983 0.33367226211272899 6.27925700000000031 6.15627160481925984 0.567762147044972965 -8.9115325154835201 0.383498009330141998 -0.0542611139999999992 0.355376150000000002 0.188799959999999989 0.000278170500000000009 -0.336132819999999999 -0.0453585570000000007 0.0888107600000000025 -0.0745603700000000008 0.156116890000000008 0.0899862349999999978 167 0 166 1 3.81610819999999995 238.776993 1.01679542765713005 3.35532721545413981 31 false 0.271098799999999973 1.2558286399129801 0.0652602432370125995 -0.0381302459999999996 19 10 0.504005299999999989 0 19 false 164 586.819127340349041 2.10071631305109996 279.34201 18.7671050000000008 18 143.339893411318997 7.49718478792205989 19.1191619999999993 19.9604700000000008 18 694.469603107771945 9.45059687590202024 73.4842100000000045 17.657786999999999 1.42771340000000002 0 2.3026829000000002 1.19336510000000007 1.10931779999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.259162780865012 -63.3193227427742968 22.4526670915165987 -13.0410563643480995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164158352107520 2481164158352107520 121032293 2015.5 25.6030220850763008 0.14227715717384401 -3.3940509513901298 0.118446394008933004 0.166363293441561005 0.179893221816054993 0.924789129999999959 3.71568803965207994 0.284202079763997972 -1.54779645039228009 0.25080087575285398 -0.0168197549999999987 0.431880380000000008 0.0346971749999999968 0.00156890200000000006 -0.361289169999999993 -0.0946437900000000054 -0.130693930000000014 0.0355385999999999966 0.16791782999999999 0.255530360000000012 165 0 163 2 0.707155470000000008 170.205002 0 0 31 false 0.92464780000000002 1.59322743605979 0.0388419712961302968 0.00311280139999999981 19 10 0.269453529999999997 0 19 false 160 1130.90252075063995 2.56122787763970994 441.546997 18.0548019999999987 17 609.953822393560017 9.27734672032386953 65.7465799999999945 18.3881450000000015 14 800.099832645769993 11.5489078244007999 69.2792699999999968 17.5040590000000016 1.24683929999999998 0 0.884086599999999945 0.333343500000000015 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.301305088127009 -63.3212611223422002 22.4643174873185991 -13.0563202731011003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164162647472896 2481164162647472896 1283555620 2015.5 25.6125071432180995 0.0368574707818805011 -3.40107774130800999 0.0307092791757127004 1.77916330993685001 0.0461817688982135016 38.5252300000000005 8.31220058538112028 0.0696568069779081034 7.2255803982078497 0.0693109162272113055 -0.0220538199999999983 0.512727900000000014 -0.0435121600000000011 -0.0010030836999999999 -0.365447159999999993 -0.237157900000000005 -0.424675320000000023 0.164061280000000004 0.272597460000000014 0.352671620000000019 174 174 173 1 6.2790619999999997 310.377991 0 0 31 true 375.366759999999999 1.54580822205143997 0.00970721766305148934 0.00938651499999999979 20 10 0.0510629000000000013 0 21 false 169 408038.820195635024 112.311809003760004 3633.09009 11.6616119999999999 20 192654.225905998988 212.095171405569999 908.33856000000003 12.1394415000000002 20 304769.691959525982 257.862210765359009 1181.90900000000011 11.0519905000000005 1.21906029999999999 0 1.08745099999999995 0.477829930000000014 0.609621049999999998 8.78205433575196004 1.19658704380712999 3 5000 4.5 0 NOT_AVAILABLE 152.327115678502992 -63.323438254330803 22.4706981603640017 -13.0663398778517994 100001 4993.87988 4862.95996 5099.31982 \N \N \N \N \N \N 200111 3.16943140000000012 3.03971549999999979 3.34238269999999993 5.62872199999999978 5.42368030000000001 5.83376400000000039 +1635721458409799680 Gaia DR2 2481164162647215872 2481164162647215872 593209286 2015.5 25.6124278693609 1.38271353624402993 -3.39986096035101992 1.8240097247076299 \N \N \N \N \N \N \N 0.553453149999999949 \N \N \N \N \N \N \N \N \N 67 0 66 1 1.92892409999999992 84.0541992 3.07980894163569996 1.93572476094905999 3 false 0.0240299650000000004 \N \N 0.191123860000000007 8 7 6.95778229999999986 0 8 false 66 107.197880106431001 1.83872000946095993 58.3003006 20.6128999999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.325771215662996 -63.3223787873948964 22.4710825860748997 -13.0651794521540996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358643200 2481163299358643200 1398831606 2015.5 25.6252861819358984 0.119779783763746997 -3.42464169410584995 0.0866641073638800968 5.57601264137470043 0.149496535286853 37.298606999999997 10.5672379014485003 0.21271343413278801 -3.89957460837926018 0.161819730957601993 0.0100226759999999995 0.5499058 0.0117267540000000007 0.0812084400000000067 -0.245196610000000009 -0.0287152619999999983 0.0335411899999999985 0.0513185079999999988 0.168403500000000012 0.186801419999999996 168 0 165 3 3.84862100000000007 238.322006 0.39356962151108299 2.67266052331626991 31 false 1.59036299999999997 1.22847702971473005 0.0279207933436730997 0.0373599699999999993 19 10 0.193328069999999991 0 19 false 163 2193.53953081615009 3.09837978699746985 707.963013 17.3355029999999992 16 373.433627161739992 10.3806494735596004 35.9740139999999968 18.9208549999999995 17 2926.60044280648981 11.7299220806819999 249.498719999999992 16.0960120000000018 1.50443339999999992 0 2.82484249999999992 1.58535200000000009 1.23949050000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.375658595532002 -63.3390358550832033 22.4739661915173983 -13.0929453643560993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526484165389056 2505526484165389056 1590378293 2015.5 26.2258728200893003 1.59563695285696006 -2.10868937601114981 1.19266779988013005 \N \N \N \N \N \N \N 0.328057770000000026 \N \N \N \N \N \N \N \N \N 81 0 80 1 0.764467659999999993 84.036499 1.8977235927657401 0.609470023794675964 3 false 0.0236452000000000016 \N \N 0.154770789999999991 10 7 6.21194899999999972 0 10 false 83 101.241625537708998 1.61582090172515991 62.6565018 20.6749690000000008 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.296790055722994 -61.8932615231932033 23.5401215284475001 -12.0884867110772998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163299358644096 2481163299358644096 337110707 2015.5 25.6238817359053996 0.143774420195942998 -3.42001380962455004 0.122143503943403994 4.14128242085589982 0.19612621993114901 21.1153949999999995 2.91097258200727982 0.283774171332233982 -41.912973380793801 0.222978816801740004 -0.063057450000000001 0.433138970000000012 0.0483080369999999981 0.0434970100000000026 -0.453460479999999999 -0.108591270000000004 -0.050015416 0.103403314999999996 0.230465399999999987 0.216746820000000007 167 0 167 0 1.82744559999999989 196.412003 0.247963383324741993 0.512294725427522968 31 false 0.920345799999999992 1.2366522944879399 0.0370520352100816019 0.0338330800000000015 19 9 0.26093559999999999 0 19 false 163 1121.46348734786989 2.12497467347357993 527.754028 18.0639040000000008 18 221.659662545993001 7.51306152780532965 29.5032400000000017 19.487171 18 1469.16613809659998 10.8408888713869 135.520810000000012 16.8442420000000013 1.50769580000000003 0 2.64292900000000008 1.42326740000000007 1.21966170000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.36833093213599 -63.3354903658325981 22.4743775384833988 -13.0881264196519993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481163368078122112 2481163368078122112 8961020 2015.5 25.6174548001983986 0.334419645113454012 -3.41344666151039 0.2955944208879 0.890944672668687043 0.427498835808325983 2.0840869999999998 -0.678631792076237028 0.651831614180202967 -5.05113951385710003 0.536981157147849997 0.0820805099999999954 0.438686279999999984 0.0833779050000000022 0.0751959759999999977 -0.278207329999999975 -0.0188745370000000003 0.15123412 0.0185386950000000009 0.166671320000000012 0.196007979999999998 166 0 164 2 1.03953059999999997 177.548996 0 1.59381032202658002e-15 31 false 0.157712550000000007 1.27025897797865994 0.0929204199744325943 0.0240108649999999993 19 10 0.592800140000000031 0 20 false 164 308.945824500260983 1.25107286835171005 246.945007 19.4636600000000008 17 101.194051409679005 10.8452699203894998 9.33070850000000007 20.3385010000000008 16 404.239806659133023 23.7378303051780009 17.0293500000000009 18.2453229999999991 1.63599509999999992 0 2.09317779999999987 0.874841700000000055 1.21833609999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.34907039219101 -63.3323970378115035 22.4707364703561012 -13.0796583475981993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164609324072192 2481164609324072192 578695905 2015.5 25.6580264187172986 0.146835460516791 -3.41476377377294993 0.120594666500551007 0.412307886959768999 0.189296272311019004 2.17810900000000007 0.450782019397032996 0.283124203584618983 -4.7475257889803899 0.213388835343988004 0.173845100000000002 0.472666499999999989 0.203358490000000003 0.0833148699999999992 -0.0570630430000000008 -0.034971002000000001 0.296704740000000022 -0.140805130000000001 0.193159009999999992 0.079449510000000001 119 0 118 1 -0.0869052560000000002 111.038002 0 0 31 false 1.38571700000000009 1.53529531173827993 0.037251073315369497 0.115921065000000004 14 9 0.254085479999999975 0 14 false 116 1508.52752893852994 2.61979844537646001 575.817993 17.7419830000000012 11 727.453735813797948 6.65465202532815958 109.315070000000006 18.1968749999999986 12 1122.1791788150399 11.7609330785029993 95.4158299999999997 17.1367650000000005 1.2261181000000001 0 1.06011009999999994 0.454891199999999996 0.605218900000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.431433740034009 -63.3158230899746997 22.5088975119283994 -13.0957940261315997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164815482501760 2481164815482501760 1550813836 2015.5 25.6405138604540994 0.0488334116277370986 -3.39845373990014021 0.0360108775184004026 0.582586029336297995 0.0579322730947431017 10.0563300000000009 4.84857969302206016 0.0907547639657153016 -5.91091335695669962 0.0724745807869389969 0.056607339999999999 0.521139559999999946 -0.0102079389999999992 0.0154866589999999998 -0.137402560000000007 -0.114542179999999993 -0.0650290200000000068 0.0559450400000000014 0.190211770000000002 0.137163879999999988 144 0 142 2 -0.733592000000000022 124.584999 0 0 31 true 12.6933249999999997 1.59470386704343992 0.0129122537401892001 0.0074914650000000001 17 10 0.0872061499999999962 0 17 false 141 10875.2930241305003 7.07607793978672017 1536.91003 15.5972629999999999 16 5988.5728474159796 19.6600324711093997 304.606449999999995 15.90808 16 7253.26027825292022 33.4067381735354019 217.119670000000013 15.1105870000000007 1.21760700000000011 0 0.797493000000000007 0.310816760000000025 0.486676219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.380524756021003 -63.3088349056739972 22.4983747552407998 -13.0741937713001004 100001 5884 5777.81982 6129.25 0.140000001 0.0680000037 0.207100004 0.0710000023 0.0340000018 0.103100002 200111 1.07930470000000001 0.994660199999999994 1.11933839999999996 1.25797939999999997 0.988463940000000041 1.52749489999999999 +1635721458409799680 Gaia DR2 2481164879909667968 2481164879909667968 1160168844 2015.5 25.6405971378387996 0.633586336215247958 -3.39742276149340983 0.535106492273533019 1.33352481891858998 0.80552595953332895 1.65547099999999991 -4.65011043528463031 1.24843539354975008 -6.66919781335311956 0.929434723162356979 0.125405149999999993 0.4533084 0.134405730000000001 0.0791806199999999932 -0.0538386400000000001 -0.131446570000000013 0.284124800000000011 -0.028589802000000001 0.295857939999999986 -0.00798403599999999991 140 0 139 1 3.02371200000000018 189.005997 0.935646648906566014 0.409506043886225024 31 false 0.0547848000000000016 1.24194344937587009 0.163298732187110995 0.0559084700000000018 17 10 1.1011953000000001 0 17 false 138 159.301627137959997 1.26429816506839998 126 20.182815999999999 10 96.9502259122203043 19.117277369560199 5.07134060000000009 20.3850149999999992 12 217.85706454806899 8.24803908503301919 26.4131950000000018 18.9164899999999996 1.97617130000000008 0 1.46852490000000002 0.202199939999999995 1.26632499999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.379685064856005 -63.3078718051511018 22.4988437579220992 -13.0732658063552005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165983713605888 2481165983713605888 662244427 2015.5 25.5881978180273997 0.847140053327565035 -3.36159871624724982 0.563682812217082052 2.78495221262003012 1.07028834705550002 2.60205799999999998 7.42888129909569983 1.31087788412320005 -18.4364511634673001 0.898323423954612954 -0.388887970000000027 0.668031599999999948 0.301879669999999989 -0.0206282869999999986 -0.569541159999999991 -0.164398850000000013 0.13383043 0.101923570000000005 0.0946621899999999933 0.0666224499999999997 146 0 146 0 4.40690570000000026 227.787994 2.24272054980405988 4.08418123417018997 31 false 0.0542940199999999984 1.33680191344972998 0.159799754009506995 -0.105396870000000004 17 9 1.25153390000000009 0 17 false 146 203.543839098834013 1.7320879424281399 117.514 19.916720999999999 13 94.385332032190604 8.38440815380299931 11.257244 20.4141270000000006 13 254.890606553191986 8.74348344284079992 29.1520650000000003 18.7460349999999991 1.71597400000000011 0 1.66809270000000009 0.497406000000000015 1.17068670000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.240107055535987 -63.2985333001119983 22.4624610097400996 -13.0206990370631992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166013778077696 2481166013778077696 1114540472 2015.5 25.5943184537847017 3.74905182869736997 -3.35579992051254017 8.76031115318757969 \N \N \N \N \N \N \N -0.886874000000000051 \N \N \N \N \N \N \N \N \N 64 0 63 1 -2.67594200000000004 33.2275009 0 6.59722368031097022e-16 3 false 0.0183056459999999983 \N \N -0.0126630930000000003 8 6 97.5228100000000069 0 8 false 64 83.4973383524923065 1.81518427409909 45.9994011 20.8841840000000012 6 58.312095726582001 15.2751353476670992 3.81745199999999985 20.9369900000000015 7 62.7379672085818001 9.16713798047116946 6.84379000000000026 20.2680930000000004 1.44974760000000003 0 0.668897599999999981 0.0528068540000000003 0.61609080000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.246708182443001 -63.2906491958297011 22.4704832708648006 -13.0175575375502994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165910701738240 2481165910701738240 1293646092 2015.5 25.5982799143685007 0.705068887733412031 -3.3747110062559198 0.848363349265419009 2.14321162551892019 0.968621224653403945 2.21264169999999982 8.00596390927628043 1.69281904914681003 -22.6253772884698989 2.51282739285234014 0.183303999999999995 0.32648617000000002 -0.0864909440000000002 -0.208386929999999998 -0.468434569999999995 -0.420359939999999987 -0.559649300000000016 0.170220630000000012 0.303605559999999997 0.613237440000000023 127 0 126 1 1.68970630000000011 148.470001 1.6764245878528099 1.0134206901754701 31 false 0.043301217000000003 1.61910248102608989 0.222562533109089994 0.0597559999999999966 16 9 2.49790100000000015 0 16 false 128 141.242915112546996 1.61103150839095011 87.6723022 20.3134499999999996 13 53.6130665602929994 8.1184963015599898 6.6038174999999999 21.0282119999999999 13 162.994265778426012 11.9158849169589001 13.6787379999999992 19.2314900000000009 1.53358020000000006 0 1.79672239999999994 0.714761729999999984 1.0819607 \N \N 0 \N \N \N NOT_AVAILABLE 152.273003476219998 -63.3059350745445997 22.4671098694751983 -13.0365960940796004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481166013777983616 2481166013777983616 1279528788 2015.5 25.5959935259763007 0.343386878194332001 -3.3572616360632801 0.235260580021649013 0.414653051773184012 0.432420356900781011 0.958911960000000008 0.756012575942829002 0.52997722858049201 -4.5654807631114398 0.383032305515129012 -0.412412759999999989 0.687197100000000005 0.226597729999999997 -0.0320068900000000031 -0.576769050000000005 -0.21674794 0.113287814000000001 0.174226309999999995 0.101117544000000004 0.0500713029999999976 155 0 149 6 3.85426070000000021 218.929993 0.838633995937244969 2.55046596152789995 31 false 0.310933620000000022 1.59090990229410001 0.0658583110741182004 -0.0799477799999999961 18 9 0.507638200000000039 0 18 false 146 621.411093233076031 2.38407426025049007 260.651001 18.7049179999999993 17 310.362913198255001 12.7749106687936003 24.2947239999999987 19.1217140000000008 15 472.861561575435985 9.48672674519905001 49.8445430000000016 18.0750850000000014 1.26039670000000004 0 1.04662900000000003 0.416795729999999975 0.629833199999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.251475100284011 -63.2912343309349978 22.4715265903364987 -13.0195322734514001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165945058506112 2481165945058506112 526038033 2015.5 25.6089969281385983 0.580416660476230972 -3.36126570267424007 0.398965057183487015 1.27431706393980004 0.743202475764112025 1.71462979999999998 52.3302801705723013 0.878619566654335049 6.41697713322331964 0.626118912321778964 -0.407682060000000013 0.698245169999999971 0.233882730000000011 -0.0365530770000000033 -0.578129349999999986 -0.186883359999999998 0.184517010000000009 0.152795569999999992 0.0653091150000000009 0.0462320700000000001 154 0 152 2 2.05550530000000009 184.360001 1.31297552895565994 3.61101154879712016 31 false 0.109104000000000007 1.3955305400418001 0.107552701514661994 -0.0585441179999999992 18 9 0.846846039999999967 0 18 false 152 291.849964666798996 1.7980882287892701 162.311005 19.525466999999999 14 80.2438490163503957 9.71591333463602069 8.25901200000000024 20.5903589999999994 14 404.433598841648006 7.33399635393286964 55.1450499999999977 18.244802 1.66070760000000006 0 2.34555630000000015 1.06489180000000005 1.28066440000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.281346357144002 -63.2891666619103006 22.4824011949555995 -13.0280345737494994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165773259813760 2481165773259813760 406947106 2015.5 25.6326116811954989 1.45969658248903 -3.36774574193482978 1.33812374032986003 -4.18502236058899957 2.15340654954205979 -1.94344270000000008 9.94820883678817047 2.28578997758443014 -14.6333862586789998 3.30310171273317987 -0.305639559999999977 0.735636900000000038 0.285774299999999981 -0.00590238859999999994 -0.640227850000000043 -0.536766469999999996 -0.553920030000000008 0.36224561999999999 0.365368499999999985 0.534050800000000048 100 0 99 1 -0.16553967 91.0940018 0 0 31 false 0.0287324620000000003 1.8355655689594399 0.304203742788764997 0.0640649699999999989 13 8 3.3701620000000001 0 13 false 99 100.501926558264998 1.36624202458267008 73.5608978 20.6829299999999989 10 55.3267202605992026 9.08034053413000031 6.09302299999999963 20.9940509999999989 13 107.465069210989 11.0093535652921002 9.76125099999999968 19.6837519999999984 1.61978770000000005 0 1.31029890000000004 0.311120999999999981 0.999177929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.334812132263011 -63.2846845390170998 22.5024505384606002 -13.0427383397688992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165777555175808 2481165777555175808 641777810 2015.5 25.6449172869976003 3.13092692756882984 -3.3737287768264701 1.98906920378863994 \N \N \N \N \N \N \N -0.3200326 \N \N \N \N \N \N \N \N \N 113 0 113 0 29.7570149999999991 1397.57996 12.9629126425224008 73.1794163001797955 3 false 0.00517551500000000032 \N \N 0.0336386259999999979 14 8 4.83151439999999965 0 14 false 121 190.593035174225008 2.70670350526581993 70.4151993 19.9880980000000008 12 161.735044350381997 12.8199777362060008 12.6158599999999996 19.8293779999999984 12 403.058620296368986 10.1784465054923992 39.5992279999999965 18.2484989999999989 2.96334890000000017 0 1.58087920000000004 -0.158720019999999989 1.73959920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.365206140243998 -63.2846841139480034 22.5119141303828982 -13.0528232966274995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705420800 2481165051705420800 31738011 2015.5 25.6595287748480985 1.14527714952477 -3.36965839606491002 1.09453440196057006 -0.527470163836989969 1.49562004528381998 -0.352676570000000023 0.0804113206528598995 2.05592551235102983 -2.72630050802604007 2.55119709029116004 0.10274701 0.572728000000000015 0.0478473640000000033 -0.104164839999999995 -0.365420940000000027 -0.518111050000000017 -0.614213349999999991 0.311726479999999972 0.44617772 0.447127849999999993 105 0 102 3 -0.139777469999999987 94.4098969 0 0 31 false 0.0310266969999999989 1.89564853442239989 0.268738378899585018 0.0789275499999999991 12 9 2.64444070000000009 0 13 false 101 114.807974061161005 1.6012820883162 71.6975021 20.5384349999999998 9 39.9611939197105031 10.7756630411338996 3.70846719999999985 21.3472919999999995 9 140.38153495031699 4.01221156907022003 34.9885670000000033 19.3936439999999983 1.57082060000000001 0 1.95364760000000004 0.808856959999999958 1.1447906000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.390396933156012 -63.2746326874132023 22.5273740064655001 -13.0544076152378992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481164678043548544 2481164678043548544 975245292 2015.5 25.6873828454526993 0.0398741560340050982 -3.40979100825992987 0.0272219679036877008 3.04548895372243988 0.0534224688289317989 57.0076400000000021 37.0945954416717996 0.0546551698344752979 -25.3265099176044011 0.0552896188869693994 -0.219246030000000008 0.758797170000000021 -0.0181497670000000007 0.0255146829999999998 -0.455168499999999976 -0.00506191330000000002 -0.0700437099999999951 0.0146149769999999995 0.0260126609999999994 0.381656019999999985 121 8 119 2 -2.77679279999999995 76.4896011 0 0 31 true 145.019200000000012 1.56235685403547997 0.00850180443918478919 0.0116056930000000003 14 9 0.0590082629999999983 0 14 false 118 114341.285906125006 53.3411287142165023 2143.59009 13.0428580000000007 13 55845.1097136351018 108.513462186607995 514.637629999999945 13.4839249999999993 11 83938.3749510052003 153.940171385693986 545.266240000000039 12.4520189999999999 1.2225109999999999 0 1.03190610000000005 0.441066740000000013 0.590839400000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.485170824380987 -63.2984801076135994 22.5387516730835991 -13.1019569618012994 100001 5133.75 5063.74023 5304 0.216999993 0.133599997 0.319499999 0.107000001 0.0670000017 0.155399993 200111 0.91471385999999999 0.856934549999999962 0.940181849999999986 0.523605349999999969 0.504475950000000006 0.542734739999999993 +1635721458409799680 Gaia DR2 2481164673748044800 2481164673748044800 178891263 2015.5 25.6884775000479983 0.0614932868143584013 -3.40940695354864998 0.0419718223277772973 3.20905192646084991 0.0816026199063085989 39.3253559999999993 36.290393369567802 0.0850892475649775992 -25.3540845963615986 0.086500436188786306 -0.183240459999999994 0.752102200000000054 0.00447278239999999994 0.0410081200000000021 -0.422040579999999999 -0.0462750980000000006 -0.129388819999999988 0.0508029539999999974 0.0675398299999999951 0.381864370000000009 121 121 121 0 0.320264040000000028 120.263 0 0 31 true 349.197699999999998 1.57598159136633997 0.0134499952761337003 0.0107281579999999998 14 9 0.0552566099999999977 0 14 false 121 257262.489201074 3660.48804032581984 70.280899 12.1624239999999997 14 131152.646058096987 5929.84105842056033 22.1173970000000004 12.5569459999999999 14 186379.615360458993 7857.11983573604994 23.7211110000000005 11.5859240000000003 1.23427339999999997 0 0.971021649999999958 0.394521699999999975 0.576499940000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.486978978661 -63.2976546476562021 22.5399399730832002 -13.1020020335232008 100001 5293.33008 5030.33008 5570.60986 0.504999995 0.386500001 0.66079998 0.250999987 0.194900006 0.321999997 200111 1.2092681999999999 1.09188189999999996 1.33902169999999998 1.03432499999999994 0.998557000000000028 1.07009299999999996 +1635721458409799680 Gaia DR2 2481164952921455104 2481164952921455104 531666361 2015.5 25.6647616331408983 0.132323307924513994 -3.37903262498269985 0.0873295196709211047 2.66695726291227997 0.174288871647644006 15.3019359999999995 -11.1136934897265007 0.182036961676517006 -3.31746421394873003 0.145084694734740005 -0.270937380000000005 0.747262699999999946 0.130406629999999996 0.0209370479999999998 -0.481823700000000021 -0.0202385129999999996 0.236956240000000012 0.0576646140000000029 0.0197840500000000009 0.184484800000000004 131 0 131 0 3.36044030000000005 186.360992 0.304297311855408981 2.26990374538888018 31 true 2.77833079999999999 1.36729086589811 0.0247472627697007015 0.0398461260000000025 15 9 0.179352359999999988 0 15 false 127 3574.98293257795012 3.80813031696690985 938.776001 16.8051819999999985 13 998.807505141234969 7.71308623365994972 129.495180000000005 17.852684 14 3885.58587618932006 13.6401576681478005 284.863699999999994 15.7882789999999993 1.36627040000000011 0 2.06440540000000006 1.0475025 1.01690290000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.409980197231988 -63.2807661616409973 22.5288181508391006 -13.0650464612829005 100001 3782.72998 3637 4234.91992 0.239500001 0.0829000026 0.400299996 0.133000001 0.0524999984 0.218799993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307008 2481165051705307008 1663287751 2015.5 25.6665804108209983 0.720360762326065052 -3.37565885253675013 0.562981872215738033 0.479213212751383011 0.999443715682253986 0.479479939999999993 -0.188638506347123008 1.12923909792461008 -4.28163970014611017 0.89459586487766396 -0.102847499999999994 0.641236959999999967 0.145802719999999997 0.123203404000000002 -0.433843970000000023 0.069376199999999999 0.251894859999999998 0.00965289599999999935 0.0870494700000000038 0.246427310000000011 144 0 144 0 1.19609030000000005 159.181 0 0 31 false 0.0571776140000000016 1.89922947124436003 0.16127368140958101 0.0838848499999999969 17 10 1.05252830000000008 0 17 false 144 171.402470996212003 1.53807186384638994 111.440002 20.1033229999999996 13 112.320326843686004 10.2378528254886003 10.9710830000000001 20.225242999999999 12 118.481422881487006 8.65273869501477932 13.6929390000000009 19.5777949999999983 1.34654859999999998 0 0.647447600000000012 0.121919630000000001 0.525527949999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.410316954347991 -63.2769378613012989 22.5318259025718994 -13.0625777668876992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161650091201920 2481161650091201920 483875343 2015.5 25.7096134987193992 0.273054289227444014 -3.42217728409588018 0.181321889975770006 3.57853062651174003 0.374508262819233995 9.55527799999999949 36.7068227992835006 0.373405815324170998 -25.5144089819116004 0.311495818587289974 -0.215464829999999996 0.747158349999999971 0.0709544639999999949 0.100721574999999994 -0.483106599999999997 0.0421556699999999993 0.0915272300000000011 0.0367603300000000008 0.0802169699999999986 0.32153246000000002 129 0 128 1 4.27815000000000012 202.112 0.730208717402856977 3.69969509270962016 31 false 0.60617494999999999 1.29275010182023009 0.0561719402774739987 0.0862897999999999998 15 9 0.372743400000000003 0 15 false 127 1095.46219312990002 2.50862094974830008 436.678986 18.0893729999999984 14 188.480910609895005 5.90249691629596018 31.9324039999999982 19.663219999999999 14 1474.56593584392999 14.1183289958306002 104.443375000000003 16.8402600000000007 1.51812349999999996 0 2.82296000000000014 1.5738468000000001 1.24911309999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.541649697976993 -63.2998350502964016 22.5552571723994006 -13.1216408507214002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481161753170420992 2481161753170420992 1094778668 2015.5 25.7121730720417006 0.978706578502115954 -3.40207693125078015 0.769881538174501001 \N \N \N \N \N \N \N 0.0912290699999999954 \N \N \N \N \N \N \N \N \N 137 0 136 1 44.7573050000000023 3006.15991 5.93151674780332971 218.083947720630988 3 false 0.0266130379999999986 \N \N 0.129169449999999991 16 10 1.67212010000000011 0 16 false 136 820.844157931244013 6.25444683051811978 131.242004 18.4027139999999996 12 685.377144087599959 9.58231865377060998 71.5251849999999934 18.2615639999999999 11 1141.1746743972999 8.97942911821001921 127.08766 17.1185399999999994 2.22521140000000006 0 1.14302440000000005 -0.141149520000000001 1.28417399999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.527057830625012 -63.280663798881001 22.5652912853541991 -13.1038911727221006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162062408066176 2481162062408066176 879182275 2015.5 25.7309660901159987 0.546871161384190008 -3.40332455953369006 0.426210176678534003 0.600923456061966954 0.758797510174950007 0.79194176000000005 8.98686402483706992 0.877721811857854028 -4.17154419979010971 0.67242660467281401 -0.0633129000000000053 0.620456930000000018 0.108365569999999994 0.153612169999999992 -0.430045500000000025 0.120812799999999998 0.261615429999999982 -0.00323646209999999988 0.0815362599999999993 0.27710918000000001 147 0 144 3 1.54423329999999992 165.619995 0.969783232602822953 0.896065759539357964 31 false 0.0984727600000000064 1.33831691243925999 0.117036755303545001 0.0962725700000000018 17 10 0.815457639999999984 0 17 false 145 257.462454121861015 1.61802721683388007 159.121002 19.6615810000000018 14 87.5873173590145058 10.9702696409959 7.98406199999999977 20.4952849999999991 16 319.067657577114005 11.7100364819842007 27.2473659999999995 18.5022130000000011 1.57947290000000007 0 1.99307250000000002 0.833704000000000001 1.15936850000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.565731715607001 -63.273518685361303 22.5827304030101992 -13.1119539703519994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162101063184000 2481162101063184000 660812533 2015.5 25.7341883744049014 0.865964213235225988 -3.3997065116969698 0.771635357722006976 \N \N \N \N \N \N \N 0.102743029999999999 \N \N \N \N \N \N \N \N \N 140 113 140 0 399.764279999999985 689052 8.00153881763755948 20872.7173751646005 3 false 0.0148545540000000007 \N \N 0.0722207049999999962 16 10 1.60946250000000002 0 19 true 136 173169.961333268991 164.250887612117992 1054.30005 12.5921839999999996 16 78136.7175130117976 93.7249582190799941 833.68100000000004 13.1192499999999992 16 138327.22697334399 132.116997511521987 1047.00549999999998 11.9096510000000002 1.25000859999999991 0 1.20959949999999994 0.527066229999999969 0.68253326000000003 -2.2677644922127298 2.20707705676850985 6 5500 4.5 0 NOT_AVAILABLE 152.568604578740008 -63.2688531464800974 22.5871682225686996 -13.1097731563263 130001 4892 4791.25977 5066.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481162268566499328 2481162268566499328 1120850265 2015.5 25.7402435199083008 0.410145568462409016 -3.37311814871805016 0.318560670746971974 1.94238456854266994 0.556582243231740992 3.48984300000000003 11.4835145717096996 0.671576968311570988 -4.34478183709438959 0.517754196784408038 -0.0555930619999999986 0.607862400000000025 0.0977928639999999932 0.135113220000000006 -0.396231300000000008 0.0884010340000000033 0.25076989999999999 0.00689665799999999996 0.0904284100000000007 0.242375249999999987 136 0 136 0 1.94648160000000003 164.322998 0.721794130615990959 0.863835743500620978 31 false 0.177320260000000007 1.01610625318635006 0.0936057417277301046 0.0866685900000000037 16 10 0.617141840000000053 0 16 false 135 372.611501807590002 1.46406994731247009 254.503998 19.2602249999999984 12 93.8722000783783983 9.09345560659478025 10.3230505000000008 20.4200459999999993 13 471.276262420336991 13.8371231825246994 34.0588339999999974 18.0787319999999987 1.51672300000000004 0 2.34131430000000007 1.15982059999999998 1.18149379999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.554618905415992 -63.2423226526530016 22.6029818547666999 -13.0872731464470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165051705307264 2481165051705307264 250403498 2015.5 25.6698624879292012 0.271105876441821991 -3.37284203193090004 0.187350239616844993 0.256745275253644989 0.356310454261632992 0.720566200000000046 44.2504196860057988 0.389047787819502 -19.5324850382223012 0.333604413129437005 0.13439029999999999 0.708636500000000003 0.0873387600000000014 0.148755090000000006 -0.155167219999999995 0.0668807800000000008 0.142728309999999997 0.0227106600000000006 0.136120380000000013 0.319327650000000018 131 0 130 1 1.13525000000000009 143.091995 0.436525610213974014 0.817938061227846958 31 false 0.513153300000000034 1.51500703341528009 0.0640600067815186996 0.175147770000000008 15 9 0.381164759999999991 0 15 false 129 803.083895335195052 2.1563222474019601 372.432007 18.4264639999999993 13 381.757387319728991 14.6620546354170997 26.0370999999999988 18.8969200000000015 11 643.895723929653968 8.84417651384067049 72.8044900000000013 17.7398820000000015 1.27714309999999998 0 1.15703770000000006 0.470455169999999978 0.686582570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.414115700695987 -63.2729691344911984 22.5360174821400001 -13.0611645264398994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165429662430208 2481165429662430208 1514059112 2015.5 25.6741497471831011 0.379510949585849022 -3.36402981774307008 0.252271070042159984 0.74891108523532901 0.506367837847745972 1.47898630000000009 -3.88341108789501011 0.538073064516979005 -18.2421892180859011 0.406451716202536006 0.0780085900000000027 0.708702999999999972 0.110139585999999998 0.224466799999999994 -0.205997779999999991 0.120581480000000005 0.31466814999999998 0.0313401040000000006 0.172757729999999998 0.250878270000000014 141 0 140 1 2.73437330000000012 184.278 0.745371915755921988 1.34386558848184001 31 false 0.263637779999999988 1.54540229176717991 0.0771267096341388958 0.141697380000000012 16 9 0.519565700000000019 0 16 false 141 515.586023690497996 1.94264773691401005 265.403992 18.9076139999999988 13 157.607184868670004 7.35998072378265977 21.4140760000000014 19.857448999999999 14 549.41072827492701 11.0324269239127997 49.7996249999999989 17.9121780000000008 1.3712899999999999 0 1.9452704999999999 0.949834799999999979 0.995435700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 152.414069811350004 -63.2631726132200001 22.5434318115366992 -13.0545459072696008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165395302692736 2481165395302692736 442634520 2015.5 25.6894741685770001 2.80133867579119 -3.35985014866573994 2.65093805587726017 \N \N \N \N \N \N \N 0.0333592559999999969 \N \N \N \N \N \N \N \N \N 113 0 111 2 29.3819769999999991 1363.77002 15.3541239679118 489.855447475616018 3 false 0.00367012480000000014 \N \N 0.206519160000000007 14 9 5.71597579999999983 0 14 false 116 156.722543274107011 1.61900142049180995 96.802002 20.2005370000000006 10 154.647238500022013 10.5551436863852004 14.6513620000000007 19.8780329999999985 11 373.891855552376001 11.7249603227911994 31.8885380000000005 18.3300550000000015 3.37245099999999987 0 1.54797739999999995 -0.322504039999999992 1.87048149999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.440539908503013 -63.2527021319469966 22.5596127032782015 -13.0562891283216 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165498381908736 2481165498381908736 1343673565 2015.5 25.7042055323736989 0.768313384852628012 -3.35415855644846017 0.583038983368442953 -0.788186293194145016 1.07492088780920003 -0.733250500000000027 10.6290343166837005 1.19914850175961996 -6.23626034611173985 0.870138424830579016 -0.118869364000000005 0.637156959999999994 0.127395779999999986 0.153411949999999991 -0.462494699999999981 0.115313559999999996 0.299881249999999988 0.00056183804 0.0813632100000000053 0.241047079999999997 145 0 144 1 0.741604700000000006 151.029999 0 0 31 false 0.0538591740000000027 1.16290033824384009 0.163745364617361999 0.088480390000000006 17 10 1.10259299999999993 0 17 false 145 162.663022700130995 1.28179679798433011 126.902 20.1601430000000015 15 85.6835660079178041 17.5144700552945984 4.89215849999999985 20.5191440000000007 16 192.977276582938003 5.71799073563101956 33.749139999999997 19.0481550000000013 1.71311740000000001 0 1.4709892 0.359001159999999986 1.11198810000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.46433434693401 -63.2411289728029971 22.5757997756571989 -13.0564079181636998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165292223477504 2481165292223477504 534627943 2015.5 25.7185524326828983 0.168722941809527988 -3.36060188213973987 0.108958316011088005 0.0363009125255092033 0.222539159358603994 0.163121459999999996 -3.07680501667313999 0.22946848465747699 -5.51592428421067016 0.192519132508790991 -0.22221689 0.750912849999999965 0.108568189999999995 0.0545640550000000002 -0.448024599999999995 -0.00081989509999999999 0.125155450000000001 0.0445823149999999974 0.0553779599999999969 0.257327560000000011 121 0 119 2 1.18842270000000005 132.166 0.306231266121243018 1.38221201543077998 31 false 1.77922340000000001 1.5926551802862301 0.037299596632137999 0.0560849719999999968 14 9 0.227303969999999994 0 14 false 118 2207.47547755721007 2.9952775315687501 736.984985 17.3286270000000009 12 1150.00038190994997 12.1270185058770998 94.8296050000000008 17.6996439999999993 14 1577.28358808653002 13.6769600237793991 115.324134999999998 16.7671449999999993 1.23547650000000009 0 0.932498929999999948 0.371017460000000021 0.561481499999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.499197076602997 -63.2406188657860966 22.5870376801512016 -13.0676686596384002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165262158601344 2481165262158601344 159083683 2015.5 25.7435078446419006 1.50883249377151007 -3.35467455287846983 2.09434855767065997 \N \N \N \N \N \N \N 0.843362570000000034 \N \N \N \N \N \N \N \N \N 61 0 61 0 0.426602099999999984 59.9369011 0.619242071953656992 0.217556173350670012 3 false 0.106812779999999996 \N \N 0.563186760000000008 7 5 3.83090850000000005 0 7 false 60 241.987221437660992 4.28263401785434006 56.5042992 19.7288840000000008 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.543070982322007 -63.2243299305825985 22.6130578419269987 -13.0713213721670005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540915255522048 2505540915255522048 1644634575 2015.5 26.0185526159757003 2.90998208451944995 -2.05437744193132987 2.46748425976445995 \N \N \N \N \N \N \N 0.142920209999999992 \N \N \N \N \N \N \N \N \N 116 0 113 3 28.6260529999999989 1307.94995 17.4496120296292005 75.9573838876739984 3 false 0.0028806779999999998 \N \N 0.0268654699999999989 14 10 6.64143750000000033 0 15 false 121 147.846754461101995 2.18942542427945996 67.5276031 20.2638360000000013 12 161.00798386367299 8.34154376239126982 19.3019399999999983 19.8342700000000001 13 422.560699384755992 10.4053423380102998 40.6099740000000011 18.1971969999999992 3.94711880000000015 0 1.63707350000000007 -0.429565430000000026 2.06663899999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.850230792918012 -61.9341750620683982 23.3631951468051007 -11.9622702217085006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481165262159112704 2481165262159112704 992556638 2015.5 25.7437665754094986 0.305611801472963018 -3.35481679903847008 0.235380440208746988 -0.634226858013193007 0.388413285781171014 -1.63286599999999993 2.86158318817382007 0.553273418143687024 3.19296530594536998 0.398642390095730992 -0.00367518770000000014 0.528325799999999957 0.0353728719999999996 0.115227090000000004 -0.31455240000000001 0.091668949999999999 0.302719559999999999 -0.0145158679999999995 0.0657365550000000021 0.175163790000000014 139 0 137 2 10.0389689999999998 370.199005 1.47106911788864991 13.5869183877042996 31 false 0.288593140000000026 1.45627206233628992 0.0678411930355966031 0.0713690800000000014 16 10 0.494804259999999996 0 16 false 137 1046.03234597074993 4.24683973272883986 246.307999 18.1395030000000013 15 432.95263147285101 11.5564194134130993 37.4642520000000019 18.7602860000000007 16 1183.68699821916994 15.0378741484077008 78.713719999999995 17.0788270000000004 1.5454968 0 1.68145940000000005 0.620782849999999997 1.06067660000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.543724786707998 -63.2243438528209012 22.6132506970084002 -13.0715486511300991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188729860417920 2481188729860417920 183453984 2015.5 25.7473732950867991 0.108000967176070994 -3.35284473026305019 0.0845766289032872931 -0.0113599311014716993 0.13814422085377101 -0.0822323999999999972 -0.414689554712702024 0.193033174317494005 -2.98629276258786991 0.156561431452842986 -0.00334681869999999991 0.547574000000000005 0.0497243070000000023 0.0732130700000000051 -0.314746379999999992 0.0587064360000000007 0.178845850000000001 -0.0231194369999999996 0.0549818239999999986 0.234372799999999992 139 0 138 1 2.43349219999999988 175.962997 0.263467914172858975 1.4159808504098399 31 false 2.35234619999999994 1.50722004598608006 0.0256959492595923988 0.0758930899999999964 16 10 0.179351840000000012 0 16 false 138 2889.35536701743013 3.56777255230961021 809.848999 17.036363999999999 14 1364.41265731388989 9.79775678893822999 139.257659999999987 17.5140250000000002 15 2206.22486586592004 12.6780300478908998 174.019530000000003 16.4027959999999986 1.23579039999999996 0 1.11122900000000002 0.477661129999999989 0.633567800000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.548970909864011 -63.2209872477065034 22.6174325517816008 -13.0710391853253007 110001 4957 4768.7998 5141.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481249439222914816 2481249439222914816 219621010 2015.5 25.2026282681548999 1.65606811883008009 -3.56862567847846002 0.978889543151052033 \N \N \N \N \N \N \N -0.322226020000000002 \N \N \N \N \N \N \N \N \N 89 0 88 1 -1.37704359999999992 65.9188004 0 0 3 false 0.0363138019999999992 \N \N -0.144703799999999994 11 6 4.01761869999999988 0 11 false 91 108.694521066920004 1.6006157485102499 67.9078979 20.5978470000000016 10 82.5067411446661936 9.30321214521829987 8.86862900000000032 20.5601650000000014 8 51.1024271429663983 13.7169368611770999 3.72549840000000021 20.4908159999999988 1.2292171999999999 0 0.069349289999999994 -0.0376815799999999992 0.10703087 \N \N 0 \N \N \N NOT_AVAILABLE 151.663611961844992 -63.6516634077636994 22.0168703380147015 -13.0711666106793007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250092057780608 2481250092057780608 694981044 2015.5 25.1898112205484992 1.22882349453776007 -3.54855081956700014 0.698097475687154967 2.5838040776559601 1.04917503300698001 2.4627005999999998 6.91764977401848036 3.37326205368364995 2.62668739881687996 1.45604500134879999 -0.223902849999999987 -0.465475020000000017 -0.745478900000000055 0.371838749999999996 0.20216402 0.480827300000000013 -0.0631574500000000039 0.523754799999999965 -0.329616100000000023 -0.128915119999999994 103 0 102 1 -1.0552649999999999 82.4321976 0 0 31 false 0.0471152329999999994 1.32762691717276993 0.238826856319150987 -0.0708296199999999959 12 8 3.15541630000000017 0 12 false 102 129.651592949276989 1.53603012107941006 84.4068985 20.4064219999999992 9 52.4350426702692971 11.4418495304256993 4.5827416999999997 21.0523339999999983 9 150.250099571452012 17.2083661150007998 8.73122399999999921 19.3198830000000008 1.56330619999999998 0 1.73245049999999989 0.645912200000000047 1.08653829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.618202928021987 -63.6390029133243971 22.0122819652781985 -13.0477857302815003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481249821475355520 2481249821475355520 455886194 2015.5 25.2167696080963992 0.0457309046660739973 -3.56672966443015982 0.0235337101720803007 1.18560062940938993 0.0319381169563638032 37.1218069999999969 9.36463835559577085 0.108914909297842005 -16.1394641475061995 0.0494884536364655001 -0.47837010000000002 -0.188983590000000007 -0.754737600000000008 0.475308979999999992 0.229513140000000004 0.583921800000000046 -0.361168319999999987 0.34344247 -0.319691479999999972 -0.358289269999999993 129 0 128 1 -4.48161900000000024 64.8124008 0 0 31 true 87.4813099999999935 1.61583711440495992 0.00823951319126041935 -0.105797139999999998 15 8 0.125370199999999987 0 15 false 127 67654.506205330501 23.0047158804711991 2940.8999 13.6126240000000003 12 36731.6273053241021 64.3938731241795068 570.421140000000037 13.9387869999999996 12 44799.2742877935016 48.648998979124201 920.8673 13.1337419999999998 1.20510669999999998 0 0.805045099999999958 0.326163299999999989 0.478881840000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.690504265973999 -63.6438979773104023 22.0310537321321007 -13.0746193704368991 100001 5871.66992 5819.5 5901 0.358999997 0.135399997 0.556699991 0.192699999 0.0755999982 0.267699987 200111 1.32876989999999995 1.31559230000000005 1.3526990000000001 1.89077469999999992 1.76900579999999996 2.01254370000000016 +1635721458409799680 Gaia DR2 2481249954618993536 2481249954618993536 1546984939 2015.5 25.2257666815513986 13.2573898493679998 -3.54598478182801014 13.9903326800792005 \N \N \N \N \N \N \N 0.520421270000000047 \N \N \N \N \N \N \N \N \N 40 0 38 2 1.5540963000000001 46.4616013 3.00727715503734983 1.3776163435717701 3 false 0.0236272590000000011 \N \N 0.280823299999999998 5 3 74615.0859999999957 0 6 false 42 85.6382363295791009 2.18034137526900018 39.277401 20.8566970000000005 6 58.8793443966920975 18.6925905991909005 3.1498759999999999 20.926480999999999 5 57.0039545979981028 5.50197046610031038 10.3606429999999996 20.3721579999999989 1.35317240000000005 0 0.554323200000000016 0.0697841639999999958 0.484539029999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.688729453050996 -63.6213067246479014 22.0474873807970013 -13.0586592539492994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481249954618829824 2481249954618829824 195003477 2015.5 25.2408183372712998 1.60103068944349003 -3.54500311423863002 1.26898479248891993 \N \N \N \N \N \N \N 0.129178760000000004 \N \N \N \N \N \N \N \N \N 145 0 142 3 38.2918099999999981 2246.55005 9.92797841181119978 127.124011868126999 3 false 0.00853554699999999923 \N \N 0.0600181450000000019 17 10 3.20128350000000017 0 17 false 145 181.737487070241002 1.9438321487571999 93.4944 20.0397549999999995 15 199.697209119114007 6.82604595168032979 29.2551799999999993 19.6004579999999997 15 200.996684640040996 8.76954737253207917 22.9198470000000007 19.0039480000000012 2.20479499999999984 0 0.596509929999999966 -0.439296719999999974 1.03580669999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.718317053151992 -63.6139724139363025 22.0621907895798017 -13.0632960981947992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481249099920852864 2481249099920852864 978093800 2015.5 25.2773079826378009 0.0303802731906217989 -3.56746648726640991 0.0228190127328539993 1.36761151882998999 0.0326611706644032024 41.8727039999999988 -7.80508257104884962 0.0599562739447385001 -7.22845980860903037 0.0441563073033260992 0.145096720000000012 0.433782959999999995 -0.232970210000000011 0.114047930000000006 0.117498144999999998 0.129864229999999997 -0.0630138799999999943 0.0805521899999999957 0.046675506999999998 0.106372640000000004 150 0 149 1 -1.12999359999999993 125.054001 0 0 31 false 38.1691969999999969 1.58962284325192993 0.00825539736086408973 0.0143327330000000003 17 10 0.0636219299999999932 0 18 false 147 30449.5753443387002 12.3308330757168001 2469.38989 14.4794129999999992 16 15905.8590436857994 35.3630579294147012 449.787449999999978 14.8474950000000003 17 21031.6860802187985 50.9738971547114019 412.597170000000006 13.9547349999999994 1.2130725 0 0.892760299999999951 0.368082049999999994 0.524678230000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.81404574382799 -63.618590335288502 22.088419507883799 -13.0976219716225994 100001 5675 5468 6240.33008 0.0197000001 0.00889999978 0.0790999979 0.00800000038 0.00389999989 0.0373999998 200111 0.832357699999999978 0.688376670000000024 0.896571099999999954 0.647408199999999989 0.610632999999999981 0.684183360000000018 +1635721458409799680 Gaia DR2 2481249099920852736 2481249099920852736 636766790 2015.5 25.2787017922031012 0.136269913782427005 -3.56634993527192012 0.0890907626885086984 0.845912037822530993 0.142269089904797003 5.94585939999999979 -4.43539021156163038 0.279471660723720983 -6.68261931390633013 0.159649730084859998 0.0370382699999999981 0.374940219999999991 -0.251330580000000026 0.169855010000000001 0.00813065900000000015 0.174513859999999993 0.156918229999999992 0.0581677440000000004 0.0948034999999999989 0.0379998799999999998 158 0 157 1 20.1324439999999996 840.479004 0.717871323002925998 21.7879741091275001 31 false 1.34031570000000011 1.44851123875310006 0.0281882882583369999 -0.00971851900000000012 18 10 0.252253139999999987 0 18 false 156 4628.14425370617028 4.75665874541828959 972.981995 16.5248489999999997 18 1814.49828308977999 9.94974931849104038 182.366230000000002 17.2044959999999989 18 4135.80457400588966 9.78831419918514989 422.524720000000002 15.7205200000000005 1.28567790000000004 0 1.48397639999999997 0.679647450000000042 0.804328900000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.815788795456996 -63.616983485598098 22.090170160859401 -13.0970980762078995 100001 4646.00977 4411 5000.4502 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481342932070700928 2481342932070700928 507314174 2015.5 25.2916855849544007 1.69325821125223008 -3.56333692695885995 1.45077298403914989 \N \N \N \N \N \N \N 0.0370124000000000009 \N \N \N \N \N \N \N \N \N 108 0 108 0 13.8574160000000006 455.578003 8.86092471541472015 20.2336213338232014 3 false 0.00879977200000000084 \N \N -0.0370202329999999996 13 8 4.12669499999999978 0 13 false 109 122.777780335700996 1.4810687993918501 82.8981018 20.4655670000000001 11 188.975995570018 8.1741248772854096 23.1188049999999983 19.6603719999999988 10 352.078972887900022 11.6874971083140995 30.124410000000001 18.3953190000000006 4.40678259999999966 0 1.26505280000000009 -0.805194850000000018 2.07024769999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.839179631326999 -63.6086807837479 22.1036769432687983 -13.0990833301391003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481342725912270592 2481342725912270592 778995315 2015.5 25.2974696018225984 0.175330947361666989 -3.56756417678851978 0.127274958613182998 1.08919983691247002 0.190478880576654991 5.7182183000000002 6.96050766377155039 0.394611519620699014 -10.3464693873971996 0.243954192691024002 0.0740599859999999943 0.233905479999999999 -0.108072214 0.103496976000000004 -0.0941299099999999972 0.106123480000000006 0.0937955159999999954 -0.0203346029999999997 0.0849553350000000068 0.100877259999999996 158 0 157 1 2.77597620000000012 204.904999 0.465279273389006987 1.39745871920445008 31 false 0.641603699999999999 1.36638417752225005 0.0428951971626886988 -0.0931101200000000045 18 10 0.350454180000000004 0 18 false 158 925.982991075964947 1.82554260966429993 507.237 18.2718580000000017 15 279.221610233374008 9.67681187884092076 28.8547119999999993 19.2365150000000007 12 983.321759223738013 7.65302990388541993 128.487899999999996 17.2801800000000014 1.36346279999999997 0 1.95633509999999999 0.964656830000000021 0.991678240000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.854998446302005 -63.6100059462674992 22.1075825485645012 -13.1051434622534 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343000790177920 2481343000790177920 1541972920 2015.5 25.2876118152394014 0.419123166435008021 -3.5472205813639901 0.376280634270589998 1.13401125075220999 0.470504856614786027 2.41020080000000014 -0.220843389974552995 0.900670437745660024 0.0238949664161581012 0.655753185005085948 0.322584450000000023 0.311069160000000011 -0.175913719999999996 0.159162799999999993 0.0813632460000000002 0.120690115000000001 0.171857950000000009 0.115738190000000005 0.137560459999999996 0.20783473999999999 146 0 144 2 1.96343840000000003 173.600006 0.811421311137964008 0.622752667329552034 31 true 0.111198630000000007 1.9092223727562001 0.120057208345622002 0.0262907200000000001 17 10 0.812924399999999991 3 17 false 145 252.577323977794009 1.68059395295664005 150.291 19.6823799999999984 13 199.043143449724994 9.22769649852459928 21.5701870000000007 19.6040199999999984 12 163.580448158730007 12.4250507410911002 13.1653749999999992 19.2275899999999993 1.4356933999999999 0 0.376428600000000002 -0.0783615099999999953 0.45479012000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.815307895399002 -63.5958891866275025 22.1059072728900006 -13.0826045803634994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253046995287552 2481253046995287552 1569239610 2015.5 25.1751264829712014 1.62255417110038991 -3.53369916753739011 1.07151051605659009 \N \N \N \N \N \N \N -0.303525839999999991 \N \N \N \N \N \N \N \N \N 95 0 95 0 1.99705979999999994 118.736 1.68833320012055998 1.1084774647386999 3 false 0.0378255200000000014 \N \N 0.0603751540000000003 11 7 4.4018189999999997 0 11 false 93 114.935858269608005 1.78299087114624011 64.4624023 20.5372279999999989 9 96.7228344177517982 7.4190791920436201 13.0370410000000003 20.3875659999999996 8 95.1310930763201981 12.0811530686053992 7.87433859999999974 19.8161139999999989 1.6692260000000001 0 0.571451200000000048 -0.149662020000000007 0.72111320000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.574065236577013 -63.631847348004797 22.0039349412273992 -13.0285694961917997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253115714766080 2481253115714766080 477057386 2015.5 25.1726198239465013 0.481380304989608987 -3.53056932602933982 0.300378819916986006 3.32721303703995019 0.388888133095952993 8.55570699999999995 22.0086605332278005 1.28933466866842994 -27.6452697461242991 0.494133703077794972 -0.285358339999999988 -0.24669394 -0.739609700000000037 0.379847299999999999 0.319781499999999996 0.580304150000000019 0.000668917959999999951 0.502115300000000042 -0.194832830000000012 -0.16437852 113 0 109 4 1.77723220000000004 131.016006 0.829738148738796033 1.82189018690752991 31 false 0.285321900000000017 1.36461836278797 0.0810749079397523054 -0.00426152260000000043 13 8 1.21394399999999991 0 14 false 111 512.584729720148971 2.4528873912440301 208.972 18.9139519999999983 11 135.182864168022007 14.0829653837025006 9.59903399999999962 20.0240839999999984 11 702.015442724537024 21.4524372283314015 32.7242740000000012 17.6460529999999984 1.6332876999999999 0 2.37803079999999989 1.11013220000000001 1.2678986000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.565961031493998 -63.630086932040399 22.0027357399359005 -13.0247366931066004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253424952420992 2481253424952420992 1322938379 2015.5 25.1642412523775008 0.344033151468779996 -3.4987770443537598 0.270654267400007975 2.27228055905310011 0.370439279857116999 6.13401599999999991 5.53613871171527983 0.75790170645048105 -1.34096026195532003 0.48599522734856998 0.127311750000000001 0.24833696999999999 -0.270109199999999994 0.215326829999999997 -0.0228815449999999997 0.293291000000000024 0.234175889999999998 0.081228309999999998 -0.0220039190000000003 0.171811799999999987 142 0 140 2 2.26736879999999985 174.994995 1.09449827578433001 2.41221419640727008 31 false 0.197555850000000005 1.14699676418127994 0.0867927239691552999 -0.000344455739999999992 16 9 0.684055300000000033 0 16 false 138 401.529954968416973 1.41875791064979007 283.015015 19.1790710000000004 15 90.4182239314950067 8.7627084718781294 10.318524 20.4607489999999999 14 529.408319559218967 10.4297622250388997 50.7593839999999972 17.9524420000000013 1.54366209999999993 0 2.50830650000000022 1.28167720000000007 1.22662929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.518394724676995 -63.6049089984198019 22.0068165546292001 -12.9921042472054999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253528031638528 2481253528031638528 87719013 2015.5 25.1764367837077003 0.297667388737769989 -3.49103079707120001 0.293749298704362005 1.92200191141723997 0.348196002835203022 5.51988500000000037 17.3335778909712985 0.674796666107071008 -11.7461060046930008 0.524862007788905016 0.318066300000000024 0.239467519999999989 -0.0260401240000000013 0.285602929999999977 -0.234049829999999986 0.41201964000000002 0.522270440000000002 -0.119483190000000003 -0.173747669999999993 0.429182300000000017 141 0 141 0 0.70361596000000004 147.233994 0 0 31 false 0.25126132000000001 1.14203564765113996 0.082121546692537295 0.0637118740000000017 16 9 0.669287439999999956 0 16 false 141 379.422608350243024 1.75170091162139996 216.602005 19.2405590000000011 14 79.5307275824235944 11.0144281246277007 7.22059539999999966 20.6000499999999995 15 476.346732566927017 11.6800700461099005 40.7828670000000031 18.0671120000000016 1.46506150000000002 0 2.53293800000000013 1.35949129999999996 1.17344669999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.535718191863992 -63.5927087006099967 22.0213623517160997 -12.9894034980223001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254322601080832 2481254322601080832 811021187 2015.5 25.1602525080502986 0.0431622260373896033 -3.47251100151058001 0.0338705078105000987 1.45423292203598997 0.0485006492497256983 29.9837820000000015 10.2572670108195005 0.0937518460386843056 -31.7034543383851002 0.0689196547423771011 0.125180719999999995 0.292681159999999996 -0.255235170000000011 0.0979720060000000004 -0.13539174000000001 0.119480126000000006 -0.00258979710000000005 0.0791692299999999932 0.0261795400000000011 0.239987630000000007 142 0 141 1 2.48668099999999992 180.466003 0.127409953689918004 1.59125444692539997 31 true 14.8109979999999997 1.57533963186202008 0.0120525224778871998 0.0712333099999999941 16 10 0.0941179300000000024 0 16 false 139 15505.5967861437002 7.79090528909681002 1990.21997 15.2121449999999996 16 7495.47065113656026 25.6746725739706996 291.940279999999973 15.6643910000000002 13 11575.7899885332008 22.7749688116110995 508.268100000000004 14.6030440000000006 1.22995980000000005 0 1.06134700000000004 0.452245699999999973 0.609101299999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.485113236854005 -63.5828482259104035 22.0129788550395986 -12.9662257256665008 100001 5664.24023 5121 6169.8501 0.156000003 0.0529999994 0.254999995 0.0828000009 0.0308999997 0.136999995 200111 0.560939900000000047 0.472770420000000025 0.686263139999999994 0.291806600000000027 0.270323660000000021 0.313289550000000028 +1635721458409799680 Gaia DR2 2481254597478987648 2481254597478987648 66215055 2015.5 25.1529365655226016 0.0827093996113537067 -3.45007366564479989 0.0570440506569373992 2.2986962203144401 0.082834459918341305 27.7504829999999991 12.6955578610422997 0.207274603656666001 10.5627519562769994 0.112500544051045995 0.068840995000000002 0.0492434579999999969 -0.4926431 0.13586319999999999 -0.0920855000000000007 0.132645999999999986 0.127167360000000007 0.240693390000000007 0.0136175640000000004 0.0651126999999999956 124 0 124 0 1.90619200000000011 150.117004 0.096098900713496499 0.278920538157494013 31 false 4.94995449999999959 1.47338823385913997 0.0193460398498297992 0.0135799089999999994 14 9 0.19519489000000001 0 14 false 123 4435.2033328296302 5.43807150688787999 815.583984 16.5710809999999995 13 1289.0924013255501 19.9452112952113012 64.6316759999999988 17.5756779999999999 13 4688.27792988787041 10.1060798953710993 463.906679999999994 15.5843869999999995 1.34771060000000009 0 1.99129099999999992 1.00459670000000001 0.986694340000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.448793549556996 -63.5656581377877998 22.014521667732101 -12.9426778741507 100001 3925.48999 3710.33008 4063 0.58130002 0.328900009 0.828100026 0.266499996 0.147200003 0.412099987 200111 0.521051299999999995 0.486378729999999981 0.583233360000000034 0.058080602000000002 0.0537217860000000005 0.0624394200000000024 +1635721458409799680 Gaia DR2 2481253528034204160 2481253528034204160 1256577142 2015.5 25.1720611044171996 0.841661932311883021 -3.48855295153706013 0.863081208957394042 2.3169161439387902 1.00370599170746 2.30836130000000006 10.2230782412998007 1.7861842330692399 -3.4170560147393898 2.17522598684821 0.348832399999999987 0.45107259999999999 -0.212784219999999996 -0.12958886 -0.0770751239999999949 -0.180241099999999987 -0.406182470000000018 0.00839063500000000045 -0.0242333989999999992 0.577347799999999967 106 0 106 0 -0.0149642425000000006 100.123001 0 0 31 false 0.0412707299999999985 1.46516023023013009 0.255505363173073985 0.0947639100000000068 12 9 2.23635049999999991 0 12 false 106 111.092849022313004 1.29244988746771994 85.9552002 20.5741499999999995 7 58.7181613305154997 8.63207954800956045 6.8023195000000003 20.9294569999999993 9 139.738939328890012 15.4600900536850006 9.03868899999999975 19.3986260000000001 1.78640749999999993 0 1.53083039999999992 0.355306630000000012 1.1755237999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.524459485432999 -63.5923319283192967 22.0181366982218982 -12.9854873747474002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253528031638912 2481253528031638912 138766463 2015.5 25.1776741515256006 2.97836842893029985 -3.48906928177928988 1.65450668902742004 \N \N \N \N \N \N \N -0.409848500000000004 \N \N \N \N \N \N \N \N \N 60 0 59 1 -1.30624809999999991 40.9737015 0 0 3 false 0.0253763590000000011 \N \N 0.121715320000000002 7 5 8.71724999999999994 0 7 false 60 82.7108002227465988 1.66887818177256997 49.5606995 20.8944599999999987 7 57.4932671550706971 10.5197145029569992 5.46528770000000019 20.9523450000000011 7 41.3759441858542019 10.4635215860848003 3.95430400000000004 20.7200500000000005 1.19536029999999993 0 0.232294079999999986 0.0578842160000000022 0.174409869999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.53634674682101 -63.5904076588083029 22.0232838738287988 -12.9880370352701 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254318305626752 2481254318305626752 299902054 2015.5 25.1703757141107012 0.276261366835593991 -3.47423406673352009 0.228796898269465004 2.08621751447414994 0.317824528377870008 6.56405450000000013 5.59693381279876956 0.561322384365613991 8.32657227113593912 0.429685889647823005 0.18770096 0.415741440000000018 -0.131318479999999987 0.153319750000000005 -0.0763115359999999993 0.190394979999999991 0.295223799999999981 -0.00822126999999999927 -0.00795710300000000009 0.229128269999999995 132 0 132 0 0.828375500000000042 139.951996 0.226316129242540992 0.121893301641137999 31 false 0.310017619999999994 1.33885940431717998 0.0711076603115123052 0.000847941500000000013 16 10 0.513055299999999992 0 16 false 131 450.131418917422991 1.46879312057113998 306.463013 19.0550169999999994 12 125.039255728385001 11.2675672653752006 11.0972720000000002 20.1087719999999983 12 532.850527479286029 12.2740877982080008 43.4126400000000032 17.9454059999999984 1.46155049999999997 0 2.16336629999999985 1.0537548000000001 1.10961149999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.50730779852401 -63.5800989990653989 22.021961128563099 -12.9715599919362994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254318308699776 2481254318308699776 1068721051 2015.5 25.1712094234299997 0.553907319306957024 -3.47433726513119989 0.414562863911543011 0.421651624933078006 0.646171697670220979 0.652538060000000031 4.5285508080916701 1.01853241912474002 8.33088166543380915 0.753901900744174958 0.106755320000000001 0.525612650000000015 -0.129643709999999995 0.138194380000000006 -0.120987529999999996 0.175132420000000011 0.302396739999999997 -0.00594384640000000016 0.0129329679999999995 0.203366059999999987 131 0 131 0 4.15353999999999957 203.186996 1.60541531494007006 2.40402698748525001 31 false 0.0905747799999999936 1.10332127758109011 0.139403260778698995 -0.0337847500000000023 15 10 0.920664600000000055 0 15 false 130 236.601810493350001 1.57645329912384002 150.085007 19.7533199999999987 7 55.8950163845123029 12.8273189554147002 4.35749799999999965 20.9829560000000015 8 292.919244391692985 17.687203156787799 16.561083 18.5950500000000005 1.47426710000000005 0 2.38790509999999978 1.22963519999999993 1.15826990000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.50909836756901 -63.5798374256680034 22.0227155627504985 -12.9719633236771994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254318305628672 2481254318305628672 1661762698 2015.5 25.1767935865385013 0.621018054605743997 -3.46990066586965984 0.636454753685359975 0.103961458382883995 0.705840215051564024 0.147287520000000005 1.38342897521217001 1.43591749865759999 -3.10134169244751989 1.6046898606325799 0.371407150000000019 0.305921759999999987 -0.188818039999999993 -0.0409575250000000016 0.0721340550000000025 -0.0136669449999999998 -0.226899879999999998 -0.0368663560000000029 -0.129664599999999991 0.446514699999999987 124 0 122 2 0.547080299999999964 124.872002 0 0 31 false 0.0553571200000000027 1.59247064773227009 0.196189087606256002 0.0602009449999999988 14 9 1.61785920000000005 0 14 false 121 137.918377078495013 1.2423796836787 111.011002 20.3393100000000011 9 82.3347654417047039 14.0158073869133997 5.87442200000000003 20.5624299999999991 11 82.2826383470671061 10.2848577560252004 8.00036700000000067 19.9736499999999992 1.19358579999999992 0 0.588779449999999982 0.223119740000000011 0.365659699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.516174703899992 -63.5734471288598968 22.029712703248201 -12.9698996899583001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347433196434304 2481347433196434304 35592113 2015.5 25.2031970246829005 0.0444834898478701987 -3.46776624522420018 0.0353290363851061981 1.05945919133200994 0.0489284333428293972 21.6532419999999988 1.96977459969529001 0.0961206984481399046 0.0546395709845510016 0.0720145112288080036 0.146702109999999997 0.328675060000000019 -0.196190730000000008 0.147439149999999991 -0.0448516200000000018 0.222238059999999987 0.144785390000000014 -0.00731405800000000002 -0.069938100000000003 0.223680779999999996 149 0 148 1 -1.30669999999999997 121.421997 0 0 31 true 12.5873574999999995 1.55976965189795003 0.0127609527617978998 0.041466481999999999 17 10 0.0962294300000000047 0 17 false 149 10040.0575782220003 7.16099508456396006 1402.05005 15.6840250000000001 15 4729.52415103507974 17.4113643551571009 271.634299999999996 16.1643450000000009 15 7627.35344495185018 17.5308781080336011 435.081099999999992 15.0559849999999997 1.23075760000000001 0 1.10835930000000005 0.48031997999999998 0.628039360000000046 \N \N 0 \N \N \N NOT_AVAILABLE 151.567664748216998 -63.5602647641391982 22.0556545432916984 -12.9776511989482 100001 4974 4918.14014 5119.33008 0.0289999992 0.00800000038 0.3028 0.0120000001 0.00389999989 0.143099993 200111 0.843425800000000003 0.796217260000000038 0.862693099999999991 0.392293930000000013 0.352354849999999997 0.432232999999999978 +1635721458409799680 Gaia DR2 2481348429629043584 2481348429629043584 974321193 2015.5 25.1655054475434987 0.612098056650973055 -3.44625010634995999 0.622867762334861963 1.21021721801008009 0.71366696362208204 1.69577310000000003 -7.46069382803752035 1.38058797060650007 -7.5239464201212396 1.30341850559384009 0.363038719999999981 0.257440720000000012 -0.154517139999999997 0.0229745540000000012 -0.0301086640000000003 -0.0131352440000000008 0.0256956420000000012 0.0412929319999999975 0.0872499899999999995 0.30677637000000002 114 0 111 3 0.763972459999999964 116.805 0.693386530858846051 0.222780309917714997 31 false 0.058716382999999997 1.20865091776506994 0.185666935116864995 0.107435379999999997 13 10 1.34917970000000009 0 13 false 110 140.526250383729007 1.14181821549613005 123.071999 20.3189719999999987 7 46.3336524611136014 6.5122911361519904 7.11480050000000031 21.1866470000000007 9 205.970925885418012 9.23125399505503985 22.3123460000000016 18.9774059999999984 1.79542669999999993 0 2.20924189999999987 0.867675799999999997 1.34156610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.470632807890013 -63.5568562035704971 22.0279335690871996 -12.9437596581920005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348292189895808 2481348292189895808 1329717265 2015.5 25.2015130244958989 0.0944450580347380025 -3.4418267036859298 0.0759330435185940067 0.458228912424659018 0.106285260752310998 4.31131170000000008 9.27781333331106062 0.217943429209881995 -7.19178504761632986 0.15200486541154401 0.203058929999999999 0.244620520000000008 -0.0535952000000000026 0.152452470000000007 -0.0267368569999999993 0.205730439999999987 0.173719609999999997 -0.112662880000000007 -0.0653052900000000019 0.237200560000000005 127 0 126 1 0.702194199999999991 131.548996 0.14262779632719999 0.390884768455199982 31 false 2.69991519999999996 1.58520627125220992 0.0256498653013833011 0.0165734960000000001 15 10 0.201635380000000003 0 15 false 123 2609.70972407665022 3.09767247748095986 842.473999 17.146885000000001 12 1315.22315383450996 11.2324883780602995 117.090990000000005 17.5538899999999991 12 1854.6169077060199 7.16843457673363016 258.719940000000008 16.5912840000000017 1.21463319999999997 0 0.962606430000000013 0.407005300000000014 0.555601099999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.539380614201008 -63.5375280570602996 22.063882405274601 -12.9529247877475999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481253184437173888 2481253184437173888 78868269 2015.5 25.2095924310053014 37.4812020507311985 -3.52028512211141997 14.2839825896473993 \N \N \N \N \N \N \N -0.993851240000000025 \N \N \N \N \N \N \N \N \N 34 0 34 0 -0.180871050000000005 27.0035 0 0 3 false 0.0156964830000000007 \N \N -0.471638000000000002 5 5 83.9837339999999983 0 5 false 34 87.0494173687715005 2.39957017204180012 36.2770996 20.8389510000000016 4 44.6083134807099029 11.5318800686720007 3.86826040000000004 21.2278480000000016 3 87.3156590961906005 0.582571965163017014 149.879610000000014 19.9091899999999988 1.51550659999999993 0 1.31865879999999991 0.388896940000000024 0.92976190000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.631126948504999 -63.6050060319579984 22.0418332042295013 -13.0288139169652002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356577182502144 2481356577182502144 1135896959 2015.5 25.4814711541094994 1.58824793045137991 -3.28960386576663 1.41131697956757995 \N \N \N \N \N \N \N -0.240234360000000008 \N \N \N \N \N \N \N \N \N 149 0 148 1 27.1305030000000009 1264.60999 7.95401450093810958 57.2355810888641017 3 false 0.0134814319999999998 \N \N 0.00345905170000000012 18 8 3.00925179999999992 0 18 false 153 300.070443366523023 2.80321924783262011 107.044998 19.4953080000000014 16 325.520439150390985 8.65962212061699965 37.5906069999999985 19.0699420000000011 15 569.77673575604797 8.70809293339118007 65.4307199999999938 17.8726580000000013 2.98362330000000009 0 1.19728469999999998 -0.425365449999999978 1.62265009999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.957017277590012 -63.2799797126218024 22.3880227758311996 -12.9145223930712998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344031584112768 2481344031584112768 1085351490 2015.5 25.2476518396825007 0.988142315416029038 -3.52090916788045982 1.07310900940299003 -0.164090735055929998 1.27541910411955994 -0.128656330000000013 14.5310239032771005 2.39643867907849017 4.53523607376405025 2.98383426179690003 0.335446799999999989 0.3844669 -0.15648803 -0.197068290000000007 -0.202850759999999991 -0.322304399999999991 -0.532526429999999995 -0.0743889699999999987 0.00366850310000000008 0.674051170000000033 94 0 94 0 0.989573840000000038 102.134003 0 0 31 false 0.0327581700000000031 1.53147094107227 0.295642481964995985 0.0778096699999999974 11 8 3.14080499999999985 0 12 false 95 100.407416121016993 1.2235429669340101 82.0627975 20.6839499999999994 11 32.3925450407328981 7.82756297520573963 4.13826699999999992 21.5752750000000013 11 134.268791164541 8.00126571829068922 16.7809449999999991 19.4419819999999994 1.65985080000000007 0 2.13329319999999978 0.891325000000000034 1.24196820000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.708906339200013 -63.5892837316183019 22.0778319064705002 -13.0434246876183995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347123958785408 2481347123958785408 1246049408 2015.5 25.2123789067788984 1.51202324925911991 -3.49258298544789003 0.939242819667169049 \N \N \N \N \N \N \N -0.140449099999999993 \N \N \N \N \N \N \N \N \N 89 0 88 1 -0.0578520500000000021 81.5960007 0 0 3 false 0.0431032329999999977 \N \N 0.115007319999999996 11 8 4.25803400000000032 0 12 false 89 117.984269858847 1.54351955180524003 76.4384995 20.5088059999999999 6 53.1129889229513026 8.17482487088621035 6.49714100000000006 21.0383850000000017 7 61.6365666564988004 14.5918100398018993 4.22405200000000036 20.2873230000000007 0.972583529999999974 0 0.751062400000000019 0.529579160000000049 0.221483230000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.610117844802005 -63.5787794701568032 22.0549883430788007 -13.0040982308678998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347093894688768 2481347093894688768 303335254 2015.5 25.2347473797108002 0.090207051581145406 -3.49327899893147986 0.0624959091111723028 0.238797188824048989 0.101699376231995001 2.34806939999999997 1.19943698375534002 0.175396875509428007 0.390218570243719975 0.119854726330147002 -0.0326864940000000034 0.465098979999999995 -0.222769169999999989 0.112252526000000005 -0.248796640000000013 0.254530880000000015 0.25074639999999998 -0.0717330050000000025 -0.0975632800000000022 0.214744750000000012 148 0 145 3 0.594892599999999994 149.494995 0.166483032003997999 0.815326480207975046 31 true 3.63247080000000011 1.59708010809179002 0.0212376743336656001 -0.0285216099999999993 17 10 0.163860069999999997 0 17 false 145 3714.88091913436983 3.9595399975234602 938.210022 16.7635040000000011 16 1988.46456514943998 10.3408148885231004 192.292830000000009 17.1050930000000001 17 2487.33434420292997 8.65316239391595055 287.448030000000017 16.2725849999999994 1.20482969999999989 0 0.832508099999999973 0.341588969999999992 0.490919099999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.656124082135989 -63.5698479451964005 22.0760194036734987 -13.0129909898309002 100001 5788.5 5755.75 5817 0.88499999 0.649900019 1.23080003 0.432500005 0.319900006 0.591099977 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344035878002048 2481344035878002048 1533682265 2015.5 25.2526855076189989 0.0901036059307477044 -3.51581928611925987 0.073425175343270796 0.0325178150372621988 0.107224382856841993 0.303268849999999979 6.35365337639820993 0.199310132502045989 -7.55013596040947998 0.147945974166741989 0.119288359999999996 0.267858539999999978 -0.216152490000000003 0.0925023559999999939 -0.25394230000000001 0.123145774 0.0736657000000000006 0.0396810900000000022 -0.000384653899999999973 0.28222071999999998 135 0 135 0 2.89466290000000015 181.649002 0.300757764140602013 2.45179216498816022 31 false 2.86909960000000019 1.65106621121593 0.0246367491080833993 0.0713984800000000003 16 10 0.187341879999999988 0 16 false 135 3526.84203567799977 3.79845546416978008 928.494019 16.8199000000000005 14 2011.77834000530993 14.4983489593545993 138.759140000000002 17.0924380000000014 15 2247.11623310406003 12.3761651863223001 181.568049999999999 16.3828560000000003 1.20756599999999992 0 0.709581400000000029 0.272537230000000019 0.437044140000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.714194934245995 -63.5825298976427007 22.0845540095058013 -13.0405500166069004 100001 6315 6079 6919 1.6595 1.32589996 1.93229997 0.828000009 0.666000009 0.957400024 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343898439048704 2481343898439048704 1462275112 2015.5 25.2911336314980986 0.0517643267202535021 -3.52214965657408996 0.0392593303393774032 0.936243186172915021 0.0558560223344879009 16.7617229999999999 16.7496436062752991 0.109170189254624003 6.19998476580378011 0.0798656591405312033 0.113164680000000004 0.350588230000000001 -0.236728529999999993 0.0956718000000000013 0.0371575540000000024 0.111832089999999995 -0.0596254099999999967 0.060092890000000003 0.0267282800000000001 0.123543485999999994 151 0 151 0 -1.2571673000000001 124.952003 0 0 31 false 8.36624199999999973 1.55495715326426009 0.0126497434499053991 0.0050958100000000001 17 10 0.105389886000000002 0 17 false 151 6984.37743617678007 5.87969159941371977 1187.88 16.0780470000000015 17 3280.62270269128021 12.8626110270851992 255.05107000000001 16.5614969999999992 16 5319.37920769803986 17.6784055186666009 300.896999999999991 15.4472679999999993 1.23131980000000008 0 1.11422920000000003 0.483449940000000022 0.630779270000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.798173723329 -63.5717479272904029 22.1187638894103991 -13.0606029938033004 100001 4964.08008 4884.66016 5075 0.172999993 0.0658999979 0.394499987 0.0829999968 0.0320000015 0.195999995 200111 0.800123099999999976 0.765530049999999962 0.826353099999999952 0.350238099999999997 0.305013570000000012 0.395462660000000021 +1635721458409799680 Gaia DR2 2481343894143376896 2481343894143376896 167237710 2015.5 25.2948199105975995 0.710320396869440041 -3.51633653405249014 0.671170297390720982 0.12810841560005401 0.806895463988193007 0.158767059999999988 0.646732505840747041 1.5472341818933899 -1.05501681063383002 1.16731282858210994 0.389986070000000018 0.258435299999999979 -0.235917779999999994 0.0754299400000000009 0.0392332000000000028 0.0151401339999999995 0.0186479389999999988 0.192171709999999996 0.196040099999999995 0.276290980000000019 128 0 125 3 5.40362930000000041 223.675995 2.02092417225345988 2.10520460520934982 31 false 0.0444542200000000026 1.45218755895535989 0.219617590169950999 0.0846426499999999998 15 10 1.42558560000000001 0 15 false 123 146.589545771603014 1.36659719035495009 107.265999 20.2731080000000006 10 97.1831829215326053 9.96451350476094966 9.75292800000000071 20.3824100000000001 10 92.4124398554393025 9.43067404793920083 9.79913400000000046 19.8475929999999998 1.29337750000000007 0 0.534816740000000013 0.10930252 0.425514219999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.800012560672997 -63.5649171244665965 22.1244771886460008 -13.0565589253323004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343894143376768 2481343894143376768 572580226 2015.5 25.2970290611848014 1.19392973456079998 -3.51690682081780981 1.17065466791860007 0.72485190217548201 1.16485238761040999 0.622269329999999954 -1.89154451059472994 3.31470804043458989 -1.94920587896870989 2.9094913474393298 0.489916149999999995 -0.222902159999999988 -0.595452500000000051 -0.380227829999999989 -0.192977590000000004 -0.377165760000000017 -0.642760200000000004 0.369025829999999999 0.248804049999999999 0.516575699999999971 99 0 99 0 0.759073800000000021 104.082001 0 0 31 false 0.0273273199999999987 1.43724080968840995 0.299895192192598026 0.0110139490000000003 12 8 3.53440239999999983 0 13 false 102 88.9842633676152985 1.20535071862565002 73.8244019 20.8150830000000013 9 56.5993839840500996 11.4675791490377001 4.93559999999999999 20.9693579999999997 10 73.175144497985201 10.5415925540890001 6.94156460000000042 20.1010109999999997 1.45839859999999999 0 0.868347169999999946 0.154275899999999994 0.714071299999999964 \N \N 0 \N \N \N NOT_AVAILABLE 151.805034495224987 -63.5644825459386027 22.1263646763909989 -13.0579029653374992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344065942219008 2481344065942219008 195699663 2015.5 25.2559331554133983 0.992017615017072973 -3.50569020341455007 1.03402010424007007 1.08011890929512999 1.23100453665825005 0.877428899999999956 19.5346480338580015 2.35857492575079997 -6.51163371654296963 2.86053239364672018 0.227805210000000008 0.344602049999999993 -0.29932462999999998 -0.146960940000000012 -0.30130315000000002 -0.289754540000000005 -0.50300014000000004 0.131591740000000013 0.109871930000000007 0.602613999999999983 112 0 109 3 7.89471699999999998 263.225006 2.95945934343012018 12.9874165241973003 31 false 0.0282024849999999994 1.6878399183450401 0.276033642212567987 0.0600039399999999987 13 9 2.98027730000000002 0 13 false 109 113.960330168292998 1.04768572987661002 108.773003 20.546482000000001 8 25.5637678398518986 5.13059157459104043 4.98261600000000016 21.8323269999999994 11 138.065330600654988 7.61845272119323003 18.1224899999999991 19.4117089999999983 1.43584259999999997 0 2.42061800000000016 1.28584480000000001 1.13477329999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.711002191663994 -63.5719900931568986 22.0914855239088013 -13.0323338880081998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344237740762880 2481344237740762880 431361478 2015.5 25.2605649582173015 0.863787329762986 -3.49114052305036981 0.829471746225099005 0.604390397333433027 1.07188390694817004 0.563858100000000029 -3.99494160801133003 1.92164682124532993 -6.0327541941655296 2.36547976111621994 0.195531890000000014 0.429863419999999996 -0.224287469999999989 -0.118261839999999993 -0.213406860000000004 -0.162772179999999989 -0.350041959999999985 -0.00845763100000000018 -0.0409309529999999991 0.546590499999999979 117 0 117 0 0.166443410000000014 113.834 0 0 31 false 0.033605709999999997 1.45915272754309999 0.238675307147589 0.0363922829999999975 14 9 2.3895789999999999 0 14 false 118 104.349647319178004 0.995126184077797959 104.861 20.6421379999999992 13 77.9953600721400022 9.19578355554200932 8.48164399999999929 20.6212160000000004 12 72.1105950145133932 9.71578293432530948 7.42200569999999971 20.1169219999999989 1.4384903 0 0.504293439999999982 -0.0209217070000000012 0.525215149999999964 \N \N 0 \N \N \N NOT_AVAILABLE 151.706353232628004 -63.5568645070500011 22.1014098248259003 -13.0205195292636002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344169021285632 2481344169021285632 563032342 2015.5 25.2713035109572992 1.03362755881902002 -3.49329329336759997 1.02409707510553005 1.74654666124250002 1.02174388017836004 1.7093780999999999 11.3452837989858999 3.05259565496037011 -23.1644056730055006 2.95748223729205018 0.500021599999999955 -0.196017639999999993 -0.630852459999999948 -0.367562800000000023 -0.275827700000000009 -0.409753199999999984 -0.587476299999999951 0.381856020000000018 0.191403669999999998 0.649109500000000006 110 0 109 1 1.09826620000000008 119.922997 1.5529297508181199 0.657635649150075996 31 false 0.0354847270000000006 1.62584065939287004 0.246999475481744002 0.0991587800000000019 13 8 3.49041999999999986 0 13 false 111 111.187236368623005 1.24407962520789006 89.3731003 20.5732290000000013 10 27.1375173605592011 5.9419630996308701 4.56709600000000027 21.7674640000000004 13 130.795152476600009 7.71731388190072032 16.9482749999999989 19.4704419999999985 1.4204209000000001 0 2.29702189999999984 1.19423480000000004 1.10278699999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.730166197823991 -63.554206527692898 22.1108182322217992 -13.0264777290887999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344272100700672 2481344272100700672 1025524638 2015.5 25.2673931318066991 0.637148747100490964 -3.48904258566787995 0.620526873650783961 1.14743891539672993 0.751973692526607951 1.52590300000000001 8.19193603575019047 1.4907989458389399 -17.6132408300027983 1.48667642658812005 0.299553130000000001 0.245856429999999987 -0.146321250000000014 0.0266772429999999998 -0.116121669999999996 0.0534115169999999986 -0.0505394799999999977 -0.028252203 -0.060049232000000001 0.414493439999999991 138 0 138 0 1.40981840000000003 156.598999 0 0 31 false 0.0449599899999999983 1.28792524104246997 0.176900876989706995 0.0405139029999999969 16 10 1.55228169999999999 0 16 false 138 123.432781978863005 1.03717189262810994 119.009003 20.4597900000000017 10 32.6664920389765996 10.4508362728708999 3.1257299999999999 21.5661319999999996 15 174.553905127413998 8.20126485420563966 21.2837800000000001 19.1570970000000003 1.67881170000000002 0 2.40903469999999986 1.10634229999999989 1.30269239999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.718152912339008 -63.5520439276548004 22.1087059585594012 -13.0210862759352004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344581338147200 2481344581338147200 499790375 2015.5 25.2880666643475998 0.554561123085199004 -3.48734467567186002 0.459656875874621007 1.09444236003331996 0.643210867731503044 1.70152959999999998 15.1110131963149996 1.12522941924168007 -23.6102272661168016 0.750138791206145017 0.329148680000000027 0.403134470000000023 -0.109830609999999995 0.207314269999999995 0.175812679999999999 0.135576219999999997 0.262080819999999992 0.0664165699999999942 0.186988579999999988 0.151133180000000006 138 0 138 0 2.573048 178.720993 1.68598186659341009 2.28213317835585006 31 false 0.0735984199999999977 1.31976015304088001 0.137545654823963998 0.0429551700000000009 16 9 1.0001173000000001 0 17 true 138 201.764342069792008 1.49293711219443992 135.145996 19.9262540000000001 14 81.2026042317697971 8.33977312770026025 9.73678800000000066 20.5774630000000016 15 184.192034758852998 9.17418673563173037 20.0772060000000003 19.0987429999999989 1.31536940000000002 0 1.47871970000000008 0.651208899999999979 0.827510830000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.758344900093988 -63.5416450497118035 22.1290331781017002 -13.0271265618520005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347330117217152 2481347330117217152 67225996 2015.5 25.2109772727285986 0.467967761753303013 -3.48174556179519001 0.424582822012447014 1.42839531431463995 0.546783547458943975 2.61235980000000012 3.02391321110119016 1.01669950534966991 -17.1339505923937985 0.748128932763810983 0.285609280000000021 0.279808200000000007 -0.115597000000000005 0.207899570000000006 -0.12886974000000001 0.234749440000000004 0.343596369999999984 0.0169668050000000015 -0.00242910670000000013 0.302398300000000009 142 0 139 3 1.83557119999999996 165.582993 1.18140164512082002 1.24510136044754005 31 false 0.0969221200000000005 1.4684001321667699 0.126803133240459998 0.0677740200000000043 17 10 0.941240900000000047 0 17 false 138 218.071407179174997 1.12039538867546007 194.638 19.8418700000000001 10 75.7025492191654052 12.5489431116210994 6.03258369999999999 20.653611999999999 13 291.525098213642991 5.58248849042432038 52.221350000000001 18.6002299999999998 1.68397890000000006 0 2.0533828999999999 0.811742799999999987 1.24164009999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.596858815583005 -63.5695823057127996 22.0577621045623999 -12.9935103810009007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347364477103360 2481347364477103360 758979210 2015.5 25.2082101014321012 27.4562130804915014 -3.47510671931582005 10.8678054901135006 \N \N \N \N \N \N \N -0.980526699999999973 \N \N \N \N \N \N \N \N \N 50 0 50 0 0.051849797000000003 44.8255005 0 0 3 false 0.0190385700000000012 \N \N 0.183210280000000003 6 4 3788.01420000000007 0 6 false 52 70.7935451941460059 1.3759565785763499 51.4504013 21.0633809999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.584872450976007 -63.5647621937919993 22.0576443213616002 -12.9863207977825006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347364476956544 2481347364476956544 769605321 2015.5 25.2172190563064014 0.209833678194108003 -3.47534662238801983 0.18559128854142401 0.297848843580253986 0.243998711133308011 1.22069849999999991 6.26148164386485995 0.467117736180333976 -2.37138187128222011 0.331919835548460995 0.25834832000000002 0.23566680000000001 -0.152786599999999995 0.180689860000000008 -0.14062688000000001 0.197611199999999987 0.280856039999999973 0.0421629249999999969 0.018176910000000001 0.274368759999999989 139 0 137 2 1.75624690000000006 161.876007 0.590113272970290037 1.54503589468195002 31 false 0.483007880000000001 1.66108573572525997 0.0564972994266232029 0.0889172399999999946 16 10 0.428242679999999987 0 16 false 137 718.559896998824001 2.02165500937572995 355.432007 18.5472089999999987 15 389.430037936625013 8.92949683077267942 43.6116450000000029 18.8753150000000005 15 500.590399871403008 6.13570691404621993 81.586426000000003 18.0132140000000014 1.23861700000000008 0 0.862100599999999995 0.32810592999999999 0.533994700000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.603360525285012 -63.561133326250399 22.0661294033216997 -12.9898649016381995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347467556172928 2481347467556172928 195921965 2015.5 25.2258460953205983 0.0619962625683165014 -3.46302770229960988 0.0488739164103182966 2.90670244742692985 0.0705613967753681987 41.1939470000000014 52.5221265757095992 0.140456156073485994 -13.9370134738671005 0.0961303684314124968 0.116382613999999995 0.214478749999999996 -0.265395600000000009 0.121285274999999998 -0.191759120000000005 0.160189269999999995 0.118503239999999996 0.0653941999999999996 -0.0106671909999999995 0.224148900000000012 149 0 146 3 0.963156099999999959 157.082993 0.138015434962429989 0.87416047080905801 31 true 6.20513250000000038 1.38579791074883008 0.0165481063538731009 0.0493807699999999974 17 10 0.13380149999999999 0 17 false 146 5865.65988446658957 6.2828846245330503 933.593018 16.2675739999999998 16 1619.42366369023989 9.34853131876396937 173.227599999999995 17.3279880000000013 17 6465.60397072100022 17.0500134104234 379.214020000000005 15.2353970000000007 1.3783662000000001 0 2.0925902999999999 1.06041340000000006 1.0321769999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.609003156932999 -63.5463146240899022 22.0790107114470011 -12.9815969319590003 100001 3706.33008 3556 4336.66992 0.0496999994 0.0280000009 0.351999998 0.0350000001 0.0142999999 0.197999999 200111 0.572837400000000052 0.418416259999999984 0.622295739999999986 0.0557873030000000034 0.0529294719999999982 0.0586451330000000021 +1635721458409799680 Gaia DR2 2481347536275650560 2481347536275650560 532929764 2015.5 25.2211702112190004 0.606690847720072979 -3.45516480065733989 0.531421576355435965 1.02231282922643008 0.690621042804139051 1.48028040000000005 0.0684366842732336 1.35719655901496994 -2.23791745669772002 0.967799201895083949 0.255286279999999977 0.268835339999999978 -0.105973676000000003 0.207221640000000012 -0.0976741200000000032 0.25836969999999998 0.35942542999999999 -0.0334276739999999975 -0.0400360150000000012 0.275300119999999982 139 0 136 3 2.96518639999999989 184.257996 2.19269109484109981 4.97558314794633016 31 false 0.0589533370000000015 1.54955019448632991 0.158631491365681998 0.0462768260000000001 16 10 1.24367490000000003 0 16 false 136 181.045492926940994 1.35194303560229989 133.914993 20.0438960000000002 11 58.1312982258866029 6.29704356857453984 9.23152299999999926 20.9403630000000014 11 199.639434965579994 8.58071767902245064 23.2660540000000005 19.0113050000000001 1.42378990000000005 0 1.9290581 0.89646720000000002 1.03259089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.591984301530005 -63.541203787376098 22.0775392885811002 -12.9725662279104998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347506211548928 2481347506211548928 1397511754 2015.5 25.2359806854912989 4.38298959253260989 -3.44753384477118008 1.89793006574019008 \N \N \N \N \N \N \N -0.303806699999999985 \N \N \N \N \N \N \N \N \N 119 0 119 0 30.8431950000000015 1498.08997 14.1654144564890991 88.123726180394101 3 false 0.00445364139999999964 \N \N -0.0510177050000000035 15 8 10.6757760000000008 0 16 true 130 159.862440734655991 3.4911664351222802 45.7905998 20.178999000000001 14 166.806079780685991 4.98681183256579974 33.4494439999999997 19.7958579999999991 15 388.523516300825008 12.4880055862422008 31.1117339999999984 18.2883759999999995 3.47379660000000001 0 1.50748250000000006 -0.383140560000000019 1.8906231 \N \N 0 \N \N \N NOT_AVAILABLE 151.614643623559999 -63.5279821714440018 22.0945294634705007 -12.9709335416557003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347570635390720 2481347570635390720 1490493599 2015.5 25.2298954080794999 0.84615090980414398 -3.43943225624785009 0.994845583587338989 -0.737510353101954008 0.927677988300199985 -0.795006899999999961 -1.09241215709483996 1.98967383234509998 -2.90403879018007993 1.96411807551570994 0.474378799999999989 0.0931888899999999964 -0.026325972999999999 0.278338699999999994 -0.121528800000000006 0.339895200000000008 0.323838499999999974 0.0101297350000000008 -0.126987430000000012 0.496368379999999998 96 0 96 0 -0.0356349050000000014 89.857399 0 0 31 false 0.0397962440000000015 2.12996107946315982 0.250958058513744975 0.190009879999999992 12 8 2.16710329999999995 0 12 false 97 106.573964391447007 1.18042364519812004 90.2845001 20.6192379999999993 7 74.0076461762860021 20.9078208164598998 3.53971120000000017 20.6781959999999998 8 73.6723136697504941 6.29713974612657967 11.6993290000000005 20.0936580000000014 1.38570389999999999 0 0.584537500000000043 0.0589580540000000028 0.525579449999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.594553308329012 -63.5232578755810025 22.0918063794666004 -12.9611615989935007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347884168670720 2481347884168670720 1472886525 2015.5 25.2429154737297985 0.0892075327017329972 -3.44541138674724001 0.0712312820674012998 0.959171072744654962 0.100135288115184004 9.57875199999999971 11.2621935546222005 0.198600920584244001 5.9914442121944802 0.138973969096276989 0.135072959999999992 0.280284370000000005 -0.200488080000000013 0.156043170000000009 -0.134050849999999999 0.231384000000000006 0.244173770000000012 -0.0146110094999999992 -0.0694330499999999962 0.225247090000000011 158 0 157 1 0.0333298100000000014 151.914001 0 0 31 false 2.59365990000000002 1.52366148033409998 0.0241063565754599009 0.0128195480000000001 18 10 0.184809580000000001 0 18 false 157 2425.67412396574991 3.26710802072617978 742.453003 17.2262839999999997 16 1010.15682265372004 10.1217066990879996 99.8010299999999972 17.8404160000000012 16 2023.10738700583011 11.4171332260608995 177.199250000000006 16.4968719999999998 1.25048300000000001 0 1.34354400000000007 0.614131899999999953 0.729412100000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.626639377824006 -63.5231011371259982 22.1019352222199004 -12.9715169162447008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347879873036544 2481347879873036544 678624012 2015.5 25.2482828206275016 0.846959208328159963 -3.43731465955267002 1.02046377189399995 1.64372194574836006 0.975489871461887037 1.68502200000000002 -1.68339580659232002 2.42298026129972 0.798642706063512953 3.03439017048297011 0.503641299999999958 0.0931430459999999932 -0.133617979999999997 -0.151332529999999993 -0.13587376000000001 -0.204732360000000002 -0.38956404 -0.13289571 -0.0777885539999999959 0.694076359999999948 102 0 100 2 1.25203360000000008 112.575996 1.6982985094076799 0.855292373832026054 31 false 0.0357061139999999971 1.90065078324508008 0.27347793801454201 0.132986259999999995 12 9 3.1731815000000001 0 13 false 103 111.612469330918003 1.3550332258486899 82.3687973 20.5690840000000001 11 52.0695201636672991 6.63957595998999039 7.84229600000000016 21.0599290000000003 11 77.5802794465922005 6.61493918138655967 11.7280420000000003 20.0375419999999984 1.16160679999999994 0 1.02238659999999992 0.490844730000000007 0.531541799999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.629724139630014 -63.5134902312882019 22.1101122683180016 -12.9659702896247992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347227038200448 2481347227038200448 712254956 2015.5 25.2538386051992987 0.490119089264842989 -3.47638348436476985 0.457296057318509974 1.65799946640377005 0.577619253053898052 2.8704019999999999 6.6600598375489497 1.12367951982872993 -33.1079713314507984 0.918897730851698014 0.290234629999999993 0.228724289999999997 -0.0944663099999999978 0.132971780000000012 -0.124720015000000004 0.167335239999999996 0.203289730000000002 -0.0392439180000000026 -0.0374817480000000022 0.323639540000000003 139 0 138 1 1.01678289999999993 149.559998 0.507743046705968037 0.166232498365640996 31 false 0.0791278599999999943 1.21363052905183011 0.147453781489821995 0.0359015759999999975 16 10 1.06019430000000003 0 16 false 138 174.89036216029001 1.12905859593395008 154.899002 20.0814510000000013 11 38.9429783974804025 5.24009811632901989 7.43172700000000042 21.3753150000000005 14 254.975580086408996 8.19755523849931045 31.1038570000000014 18.7456740000000011 1.6805874999999999 0 2.62964060000000011 1.29386329999999994 1.33577729999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.678522395426995 -63.5464148217264011 22.1005982473142986 -13.0043262686647996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347673716395392 2481347673716395392 1629416641 2015.5 25.2571557310824986 1.11145278947428006 -3.45256347048677004 1.06621081261702999 1.51686509397992997 1.13223111924785003 1.33971330000000011 36.138719528417603 3.22501840568070985 -55.3392670211484017 3.49083684691635998 0.414187000000000027 -0.0988132949999999954 -0.565762039999999966 -0.240513880000000013 -0.202901749999999992 -0.275003019999999987 -0.387677129999999981 0.28468897999999998 0.0516414269999999967 0.543807400000000052 96 0 96 0 0.972025099999999975 104.023003 2.06099274370530017 0.946410767077430992 31 false 0.0283748769999999997 1.16391012716287001 0.292533206992929007 0.0978674499999999947 12 8 3.72497999999999996 0 12 false 98 97.5553302688318951 1.3018894291446601 74.9337006 20.7152390000000004 6 41.7995272310459995 14.0351568128255 2.97820159999999978 21.2984599999999986 12 133.813014669106991 8.21327969123269952 16.292273999999999 19.4456750000000014 1.80013280000000009 0 1.85278509999999996 0.58322143999999998 1.26956369999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.662320739201988 -63.5234752599101 22.1127819101727994 -12.9834116997646003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347678010268160 2481347678010268160 751842985 2015.5 25.2591817312829008 0.0872282504730857028 -3.4501584292664802 0.0703780519329118975 0.756624092740983967 0.0990686527862880972 7.63737150000000042 -4.61819548120334034 0.195176462120177002 0.33674130454213802 0.146129401454981989 0.129300159999999997 0.280661549999999982 -0.174082900000000013 0.128978249999999989 -0.141860490000000006 0.203148899999999993 0.174111619999999995 -0.0412495100000000031 -0.0862945100000000048 0.242385970000000006 146 0 146 0 1.74059199999999992 171.535004 0.251778273326224988 1.57144284100120002 31 false 2.75318620000000003 1.56030760543614 0.0241291322421183993 0.0267819299999999989 17 10 0.182995130000000006 0 17 false 146 3016.28879063708018 3.65952722473977987 824.229004 16.9896829999999994 17 1332.50527655321002 11.8091675257359991 112.836510000000004 17.5397169999999996 17 2362.75684487408989 11.9500760520385008 197.718979999999988 16.3283729999999991 1.22510220000000003 0 1.21134380000000008 0.550033569999999972 0.661310199999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.664106902593005 -63.5204355527800999 22.1156218692288995 -12.9819231705427001 100001 4847.77979 4804.58008 4878.72998 0.124300003 0.00600000005 0.326099992 0.0529999994 0.00190000003 0.153699994 200111 0.692005459999999961 0.683253769999999983 0.704506100000000024 0.238278139999999999 0.17403268999999999 0.302523580000000014 +1635721458409799680 Gaia DR2 2481347639356717056 2481347639356717056 536789744 2015.5 25.2891114126315983 5.55290258779194978 -3.45144135554710019 4.7795863405771204 \N \N \N \N \N \N \N -0.621182699999999977 \N \N \N \N \N \N \N \N \N 34 0 33 1 1.96644039999999998 44.5294991 6.02489795918264015 1.43683839544966996 3 false 0.00894739850000000024 \N \N -0.0732007249999999943 5 4 5020.65040000000045 0 5 false 34 62.9552147096317967 2.3116946991020102 27.2334003 21.1907859999999992 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.725852326112005 -63.5087769571028034 22.1436302059180008 -12.9941438062539003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347811153559680 2481347811153559680 1614980974 2015.5 25.2839788656999005 0.302503725306032978 -3.43787685877415994 0.279355402535356012 -0.0322212845030726974 0.356540818124387981 -0.0903719399999999978 8.54630164292309047 0.701519853241009961 -6.39516288903396024 0.544043954848011047 0.221054179999999989 0.23685059 -0.0917875539999999934 0.132918499999999995 -0.120176669999999999 0.125953869999999996 0.334371540000000023 -0.0500655200000000022 -0.00481634499999999965 0.183955640000000004 147 0 146 1 0.383207980000000004 146.848007 0 0 31 false 0.194272899999999998 1.56822860951159004 0.085238859621561594 -0.00919724300000000078 17 10 0.6329901 0 17 false 146 337.522925403112026 1.36913344026485007 246.522995 19.3676069999999996 13 173.138226795152008 5.90618884902063002 29.3147130000000011 19.7554049999999997 13 237.761801735775009 8.07659918440107027 29.4383559999999989 18.8215660000000007 1.21739890000000006 0 0.933839799999999998 0.387798299999999985 0.546041499999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.702428566886994 -63.4987253091029018 22.1438818464060994 -12.9796461035529003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481342760272009216 2481342760272009216 1275858112 2015.5 25.3109678024003983 0.214568929967324989 -3.55151280469487007 0.165510704912742002 2.38289808898365996 0.238307628551299999 9.99925200000000025 8.24406491682170994 0.463765445945256982 -14.7931434413633998 0.312842359028242978 0.131348579999999993 0.306791839999999982 -0.192542989999999997 0.123934440000000007 -0.0593263019999999974 0.118025599999999994 0.115634619999999994 0.0567937459999999991 0.078876440000000006 0.143372830000000007 164 0 162 2 2.62403899999999979 207.436005 0.608900656562047948 1.75640612947469998 31 false 0.405154699999999979 1.26037097140302001 0.0538279346881418014 -0.0353294759999999985 19 10 0.414617059999999982 0 19 false 161 641.031610335923006 1.96012302868802002 327.036011 18.6711670000000005 16 127.378433952842002 8.98284961523810033 14.1801814999999998 20.0886479999999992 16 822.927173673317043 10.5905960642493007 77.7035750000000007 17.473516 1.48246300000000009 0 2.61513140000000011 1.41748049999999992 1.19765089999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.866762659375013 -63.5897134775430999 22.1265221736949016 -13.0952004287973001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481342897711165696 2481342897711165696 726284428 2015.5 25.3391515560030989 0.912181045549692038 -3.53674217741364982 0.80899095463891002 6.12047965091390989 1.04024662300896997 5.88368130000000011 -3.5501620075201501 2.05227804610934994 -40.8715692943643987 1.61614146679090998 0.220595239999999998 0.240531059999999991 -0.185747999999999996 0.105216400000000002 -0.140670309999999993 0.113770060000000006 0.0926087349999999976 0.0634351600000000043 0.0390107369999999967 0.280689980000000006 136 0 136 0 10.9866650000000003 400.039001 3.9623898836225302 8.49599565036379012 31 false 0.0238307450000000004 0.948773445291120954 0.252561359881072978 0.0289030990000000015 16 10 1.89462949999999997 0 16 false 135 116.642515102988995 1.16745803923184011 99.911499 20.5212229999999991 9 17.5994082218239996 6.76580916255641984 2.6012274999999998 22.237642000000001 11 217.754035511591013 4.93333058464160956 44.1393550000000019 18.9170039999999986 2.01773289999999994 0 3.32063869999999994 1.71641920000000003 1.60421940000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.909452999151995 -63.5642463516377987 22.1589611342471997 -13.0918570530132001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481155156101631488 2481155156101631488 1676483321 2015.5 25.3607673081771985 1.00495729347129004 -3.54984016289456994 0.902811715485580035 0.260897614095720987 1.05668023491333996 0.246903089999999992 0.912265109986960976 2.76541627014474001 -41.6480371903071003 2.42713039635048 0.277061369999999974 0.034588248000000002 -0.355572549999999987 -0.124528534999999996 0.0256055820000000017 -0.13245404999999999 -0.28852810000000001 0.0841739100000000046 0.0492694529999999978 0.173136790000000013 93 0 92 1 -0.843266599999999977 75.7344971 0 0 31 false 0.0287603719999999993 1.20092142825109005 0.292305082165451979 -0.0737525599999999948 11 8 2.55189589999999988 0 11 false 96 94.4281554941075996 1.1873429346426001 79.5289993 20.7506120000000003 4 74.7064167311646941 1.62726709028818006 45.9091299999999976 20.6679940000000002 7 133.496625089362993 14.8730554293963007 8.97573700000000052 19.448243999999999 2.20488300000000015 0 1.21974950000000004 -0.082618709999999998 1.30236820000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.965873074987002 -63.5667283594913002 22.1745848074467986 -13.1119930242288003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481154576280465920 2481154576280465920 807701037 2015.5 25.4294245583831007 0.0491335532292744015 -3.56909906870667015 0.0366231715006163985 0.583770372898043011 0.0536299641742647992 10.8851530000000007 3.73843876153914012 0.110226776069398 3.65348560451693993 0.0733019115172953012 0.0560519000000000017 0.221941410000000006 -0.293986049999999999 0.079302095000000003 -0.175670880000000001 0.0526431300000000033 -0.0534318999999999975 0.141869839999999997 0.120551740000000004 0.150899349999999988 161 0 159 2 2.81600900000000021 208.080002 0.150515023476815002 1.64967227266449989 31 true 9.29826500000000067 1.58228072342191006 0.0120760891028683006 -0.000258365349999999994 18 10 0.107427195000000003 0 18 false 158 9691.22675038610942 6.62873426121811971 1462 15.7224190000000004 18 4933.39345625199985 15.7921942141254998 312.394439999999975 16.1185250000000018 15 6943.83544739060017 12.8020963564819006 542.398299999999949 15.1579219999999992 1.22556510000000007 0 0.96060276 0.396105770000000024 0.564497000000000027 \N \N 0 \N \N \N NOT_AVAILABLE 152.123301778027013 -63.5543515127258019 22.2326873897995014 -13.1551780003229002 100001 5402.66992 5337 6361.3501 0.610000014 0.42899999 0.773100019 0.301299989 0.206 0.379999995 200111 1.22972670000000006 0.887004140000000052 1.26017390000000007 1.16076559999999995 0.928735599999999994 1.39279569999999997 +1635721458409799680 Gaia DR2 2481155327899317120 2481155327899317120 1431814441 2015.5 25.4172773489468007 0.421761682758443002 -3.55063224571041003 0.345562210224542976 1.16967964455022 0.494635972456315021 2.36472820000000006 19.4997632487761017 0.963220331203536007 -15.6834159652553993 0.632759744871114971 0.161768269999999992 0.195517479999999994 -0.167927939999999998 0.0936462099999999936 -0.183962779999999992 0.0516470750000000006 0.141367510000000002 0.0796943999999999986 0.133946000000000009 0.163633799999999996 157 0 154 3 2.62771920000000003 198.313004 1.47560421613793991 2.76949285032223003 31 false 0.102406899999999995 1.24296981336280998 0.109845712184098998 -0.0112264659999999992 18 10 0.856745100000000037 0 18 false 153 253.967620455635 1.12160451771030001 226.432007 19.6764200000000002 10 46.7736469963840023 10.2398841402487992 4.56779050000000009 21.1763860000000008 13 359.480059468495995 8.5069567186135302 42.2571870000000018 18.3727319999999992 1.59962800000000005 0 2.80365369999999992 1.49996569999999996 1.30368799999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.080770729709002 -63.5429893229657026 22.2281117636775996 -13.1335410942450999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343138229132160 2481343138229132160 1069708217 2015.5 25.3028472688229016 1.92594918804767001 -3.5233208509077798 3.0001732550552398 \N \N \N \N \N \N \N 0.831936000000000009 \N \N \N \N \N \N \N \N \N 57 0 54 3 0.337704720000000014 51.7254982 1.98362046175582996 2.18513918091723003 3 false 0.0252836500000000013 \N \N 0.276689469999999993 7 5 6.42761400000000016 0 7 false 55 85.9452750815028992 1.80627080490612002 47.5816002 20.8528100000000016 5 55.1668668333648995 12.7843976368284 4.31517119999999998 20.9971919999999983 5 46.5829903406526 11.6617891785291992 3.99449779999999999 20.5913520000000005 1.18389119999999992 0 0.405839920000000021 0.144382480000000007 0.261457439999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.823013156716996 -63.5677701381750992 22.1294742371037998 -13.0660077930468006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343172588871552 2481343172588871552 1663388833 2015.5 25.3128292215959014 2.04588362331984985 -3.51401765024426993 1.77188440246938006 \N \N \N \N \N \N \N 0.221275360000000004 \N \N \N \N \N \N \N \N \N 104 0 103 1 12.3380949999999991 390.416992 9.42775712740365002 17.2335994449687 3 false 0.00726189230000000036 \N \N 0.0961558450000000037 12 8 5.37496099999999988 0 12 false 104 97.7483511197777943 1.44529100264662991 67.6323013 20.7130930000000006 11 111.260813645875004 14.6603937921404004 7.58921050000000008 20.2355330000000002 11 229.815004212430011 11.8189020509597995 19.444700000000001 18.8584749999999985 3.48932550000000008 0 1.37705799999999989 -0.477560040000000019 1.85461809999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.834203175488994 -63.5550819127189968 22.1425052110380989 -13.0610396196669001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343103869394048 2481343103869394048 118231948 2015.5 25.3237410400247995 0.557361141816334005 -3.52018389813737986 0.555339235853383961 -0.0525650556383651033 0.619957919893051046 -0.0847881000000000051 7.55729308462565008 1.31366322208800002 -6.48671349309818979 1.42809096043729 0.271960440000000025 0.232124820000000009 -0.267423599999999984 -0.0968917599999999934 -0.0535624199999999995 -0.124789103999999998 -0.372306799999999993 0.0780939300000000058 0.0371652199999999988 0.360485300000000009 142 0 141 1 0.63256889999999999 146.001999 0 0 31 false 0.0580283369999999993 1.43359126793360003 0.175484493710278994 -0.0246191159999999999 16 9 1.42604920000000002 0 16 false 139 145.747249945329997 1.31793833298146001 110.586998 20.2793659999999996 14 79.2966431791308963 12.1591181130473007 6.52157829999999983 20.6032499999999992 15 114.658880280364997 9.73906626887747073 11.7730875000000008 19.6134009999999996 1.33076630000000007 0 0.989849100000000037 0.32388496 0.665964099999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.862239774654995 -63.5559498369682032 22.1505597403900012 -13.0707906472522009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343928503115904 2481343928503115904 1378460673 2015.5 25.3015512061267991 0.390629756634164993 -3.51125082390804 0.32555795263654802 1.09941685314813009 0.448975501229377016 2.44872360000000011 10.0034938944563994 0.841539286141224974 -8.3437060772833096 0.586935241990335976 0.237709079999999989 0.312393750000000026 -0.164606019999999992 0.138010109999999991 -9.77487800000000003e-05 0.103073289999999998 0.167389359999999987 0.0710540300000000041 0.116183183999999995 0.173938769999999993 158 0 157 1 1.4040954000000001 177.080002 0.643307140288504997 0.486314872460933023 31 false 0.119840699999999994 1.26996547202352006 0.100365969429346003 0.000773378199999999981 18 10 0.752073760000000036 0 18 false 157 243.002082733524986 1.46984842915826008 165.324997 19.7243400000000015 12 64.3953630591281012 9.4735465913490593 6.79738699999999962 20.8292520000000003 15 302.486928722557025 7.88642254139259968 38.3554040000000001 18.5601540000000007 1.50979079999999999 0 2.26909830000000001 1.1049118 1.16418650000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.808714272971997 -63.5574342199504017 22.1328142276202016 -13.0543127889628998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343932798786816 2481343932798786816 680492594 2015.5 25.3053707713423002 2.63840580568581995 -3.50769714977688007 1.71446162813633007 \N \N \N \N \N \N \N 0.0108337190000000003 \N \N \N \N \N \N \N \N \N 93 0 92 1 58.8330959999999976 5447.20996 12.6365557124868992 419.204336909928998 3 false 0.00607403370000000019 \N \N -0.0194905959999999989 18 10 5.52860360000000028 0 18 false 158 638.753794322171984 7.44309275635090994 85.8182983 18.6750320000000016 16 861.532558525138029 9.79450133531540956 87.9608400000000046 18.0132079999999988 16 1820.01251764484005 12.0544648072902003 150.982439999999997 16.6117339999999984 4.19808860000000017 0 1.40147400000000011 -0.661823300000000003 2.06329729999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.813004150825009 -63.5525851785198981 22.1377979813046011 -13.0524174689536991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344379475385216 2481344379475385216 1238369506 2015.5 25.309558454746 0.158778583905343995 -3.4879506523572501 0.120919517091057999 3.42503743867382981 0.174385128929052002 19.6406519999999993 40.2119558406046025 0.340422672341974986 -17.1605304935484 0.22593366097821499 0.113131750000000003 0.353927500000000006 -0.181776799999999988 0.124841936000000001 0.0210751160000000014 0.0864881700000000031 0.197948299999999994 0.0371243360000000008 0.0999517399999999973 0.0447930399999999992 148 0 146 2 3.74115680000000017 212.738998 0.636375306857729028 4.27403018900208043 31 false 0.84159649999999997 1.30975204066205997 0.0379052773831980994 -0.0250967630000000011 17 10 0.30333996000000002 0 17 false 146 1351.20131283015007 2.67917440424022013 504.334991 17.8615649999999988 15 245.086194318546006 14.6767479162891004 16.6989440000000009 19.3780919999999988 14 1830.71942647703008 12.7623189483272999 143.447239999999994 16.6053660000000001 1.5362667000000001 0 2.77272600000000002 1.51652720000000008 1.25619890000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.802387429518006 -63.5329631990209975 22.1492675659244007 -13.0356083801846001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343584905732992 2481343584905732992 1309293132 2015.5 25.3265578962957996 0.135641581598652 -3.50003227746582013 0.099789906999673203 0.475754300361745985 0.137120927303900991 3.46959660000000003 1.94100295936435008 0.318002720452630006 -4.1383094614689897 0.200609671294017994 -0.0222456060000000011 0.16762763 -0.337527999999999995 0.137896240000000003 -0.0240491799999999999 0.134733920000000007 0.0910052999999999973 0.116074054999999995 0.0447276399999999991 -0.0412160940000000017 151 0 150 1 3.31055020000000022 208.149002 0.218993690133086005 0.448547172935611027 31 true 1.14246139999999996 1.54564644059205003 0.0327970894574807978 -0.100403144999999999 17 9 0.288397820000000027 0 17 false 150 1368.21349623372998 2.40442266768747981 569.039978 17.8479799999999997 16 695.294959562172949 11.2302836385110005 61.9125020000000035 18.2459659999999992 16 1000.40297610528 9.12227971108866065 109.665890000000005 17.2614820000000009 1.23935189999999995 0 0.984483699999999962 0.397985460000000013 0.586498260000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.848426339696999 -63.5365558516650992 22.1608776842327018 -13.0530996736539002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343584905732736 2481343584905732736 674135009 2015.5 25.3305028650291995 3.59257355482119012 -3.50336600041483992 3.48473835351444983 \N \N \N \N \N \N \N 0.117996450000000003 \N \N \N \N \N \N \N \N \N 97 0 96 1 29.6786290000000008 1361.62 19.8333708828102999 92.5766643481689044 3 false 0.00228250419999999994 \N \N 0.118672474999999999 12 8 8.82871500000000076 0 12 false 104 108.238965006635993 1.42893893789287008 75.7478027 20.6024069999999995 9 168.616695553542002 15.4026812299794003 10.9472299999999994 19.7841360000000002 9 320.164281112829997 5.83163708728732999 54.9012680000000017 18.4984870000000008 4.51575799999999994 0 1.28564830000000008 -0.818271639999999967 2.10392000000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.859624892529013 -63.5378657123852975 22.1633713365066001 -13.0576513142534996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343206948608512 2481343206948608512 1076166362 2015.5 25.3564545429288017 0.153882699756218988 -3.53212252052263986 0.124047504146168996 -0.00432603038586296985 0.169540839994877013 -0.0255161560000000016 6.99391015189952014 0.344444931297720025 -8.45548626791389957 0.254008922382521984 0.136750650000000001 0.260239359999999975 -0.221535270000000006 0.0852573959999999992 -0.0780523699999999959 0.0853552399999999989 0.00862228100000000074 0.0681334499999999982 0.0556494150000000007 0.176244000000000012 157 0 155 2 -0.398154100000000011 142.563004 0 0 31 false 0.775790500000000049 1.68721090327152989 0.042716924618457601 -0.0295822250000000002 18 10 0.312185140000000028 0 18 false 154 926.001753440904054 1.79362007003889001 516.275024 18.2718349999999994 14 535.302618875365056 12.1076772319366004 44.2118340000000032 18.5298900000000017 17 582.924289471416046 16.4157377855718991 35.5100860000000011 17.8478889999999986 1.20758619999999994 0 0.682001100000000027 0.25805473000000001 0.423946380000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.939943973782988 -63.5526163396909993 22.177190832193201 -13.0939375122714008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343241308347008 2481343241308347008 1024830473 2015.5 25.3613979528909006 0.586286034836848047 -3.52959616455849989 0.609348605341518024 -0.343968377020912985 0.661130308543713019 -0.520273199999999991 14.6127180187696002 1.41382710638379994 -8.08849672939999031 1.5968939703382401 0.311783639999999973 0.205667209999999989 -0.220455929999999994 -0.117028409999999999 -0.0677380399999999994 -0.147915770000000002 -0.377422270000000004 0.0339123350000000018 0.0376059300000000027 0.409523130000000013 142 0 141 1 -0.853093270000000015 121.790001 0 1.72331926532601994e-15 31 false 0.0502940300000000035 1.72578243730339009 0.185074948009194995 -0.0250625849999999983 16 9 1.59751160000000003 0 16 false 141 135.172812149853002 1.06923265714301996 126.419998 20.3611429999999984 11 89.2475740279489003 5.86146275432411024 15.2261609999999994 20.4748969999999986 14 100.707986484228002 6.66702737168620985 15.1053809999999995 19.7542609999999996 1.40527939999999996 0 0.720636370000000026 0.113754270000000005 0.60688209999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.947479167343005 -63.5482046893171031 22.1828562050319 -13.0934103532938995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343241308347136 2481343241308347136 1126594815 2015.5 25.3668582987886992 0.664402239279926032 -3.52587249573240014 0.710159257911920028 -1.41872321705869009 0.742278240286176949 -1.91130920000000004 1.90497927214525009 1.56614150586796996 0.745137656234154955 1.80626778474323002 0.354402200000000001 0.241533130000000013 -0.233024029999999993 -0.118551190000000001 -0.0567122499999999988 -0.149691500000000005 -0.352190759999999992 0.0607164460000000003 0.0507988600000000012 0.439235480000000011 139 0 139 0 -0.186943019999999988 130.307007 0 0 31 false 0.040361855000000002 1.52207974191286 0.208679598894114998 -0.0150551829999999998 16 9 1.81080069999999993 0 16 false 139 118.408601044082005 0.979020959385470957 120.945999 20.5049080000000004 12 54.3591999852854002 7.2304791743561303 7.51806299999999972 21.0132060000000003 14 86.4361333317728935 5.8296742896394802 14.8269230000000007 19.9201809999999995 1.18906339999999999 0 1.09302520000000003 0.508298899999999998 0.584726329999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.954893624052005 -63.5424899727577994 22.1894675303082991 -13.0919606928435002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343344387563264 2481343344387563264 994456148 2015.5 25.3782725396806015 0.278015962650069004 -3.5142504503597598 0.225106854259112005 0.469555696510379983 0.316769488271376021 1.48232610000000009 0.0605582118457961976 0.666603920302254016 0.983896480892668013 0.432241872696096985 0.180030329999999988 0.107186229999999993 -0.202409909999999998 0.0938672650000000053 -0.171298220000000001 0.0935002600000000017 0.104523784999999994 0.0613771529999999968 0.0759078599999999937 0.190816239999999998 153 0 151 2 1.21469509999999992 167.026001 0 0 31 true 0.242865930000000008 1.6676108062155699 0.0737705542090249938 -0.0618504169999999978 18 10 0.596256899999999979 3 18 false 153 400.412401054215024 3.13664075638744988 127.655998 19.1820960000000014 13 237.157925641796993 7.59690432472294042 31.2177070000000008 19.4137939999999993 13 246.195906418497998 8.14209906856011933 30.2374000000000009 18.7837180000000004 1.2071400000000001 0 0.630075449999999981 0.23169708 0.398378369999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.966656972290991 -63.5270827319439988 22.2047415436063993 -13.0853626311215994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343383042972800 2481343383042972800 1360412059 2015.5 25.3845075771664987 0.0774985780119441942 -3.51109275095239992 0.0527807545337123998 1.01409636069075004 0.0756315074888657957 13.4083850000000009 -13.4080412883834992 0.184280233116564995 -17.3148446661627986 0.101502700627167999 0.0259612219999999991 0.147793950000000007 -0.466755099999999978 0.193063960000000007 -0.0164118780000000013 0.260935899999999998 0.145951169999999991 0.173400209999999999 -0.0432393360000000032 0.0627923199999999987 142 0 140 2 0.271724819999999978 138.834 0 0 31 false 5.16652799999999957 1.51697505065224991 0.0162924027116244999 -0.0116206669999999995 16 9 0.175050440000000002 0 16 false 139 4484.78155634749965 3.76682398868979984 1190.59998 16.5590130000000002 14 1931.13774136610004 13.7086399602414009 140.870119999999986 17.1368539999999996 14 3661.67770069662993 11.8528999739432006 308.92673000000002 15.8527190000000004 1.24706530000000004 0 1.28413489999999997 0.577840800000000043 0.706294059999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.976175343333011 -63.5215425281904018 22.2118760959390009 -13.0847238902086005 100001 4982 4823.54004 5062 0.0320000015 0.0239000004 0.241999999 0.0179999992 0.0115999999 0.128999993 200111 0.586505950000000054 0.568114099999999955 0.625675199999999987 0.190921320000000005 0.161061359999999987 0.220781279999999996 +1635721458409799680 Gaia DR2 2481343383042972672 2481343383042972672 516790059 2015.5 25.3861411803081012 0.0623699910557422021 -3.51007032093519999 0.0397281005400966017 -0.0644998708048306058 0.0597071460041964999 -1.08027049999999991 5.84715968812952003 0.14783641643405801 -4.37597074948380005 0.0767001694739122969 -0.0131370089999999998 0.143755660000000007 -0.48164220000000002 0.172373069999999989 0.0575578029999999977 0.210028999999999993 -0.00604122270000000041 0.203350859999999994 0.0209777899999999996 -0.0169256700000000003 147 0 147 0 1.08863629999999989 160.423004 0 0 31 false 8.15725100000000047 1.58220401796824994 0.0130486065963806002 -0.0453083250000000035 17 9 0.143903580000000003 0 17 false 146 6980.69649470023978 6.32313863155030997 1103.98999 16.0786189999999998 15 3512.49682105290003 14.2700963807748007 246.143879999999996 16.4873489999999983 16 5036.98226938735024 13.5111480706207008 372.801940000000002 15.506494 1.22473159999999992 0 0.980855000000000032 0.408729549999999997 0.572125430000000046 \N \N 0 \N \N \N NOT_AVAILABLE 151.97847917378499 -63.5199150026910004 22.213819273634499 -13.0843751775038992 110001 5336 5258.97998 5352.33008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343619267460224 2481343619267460224 588079965 2015.5 25.3567471474976003 3.14865984933737986 -3.49339555836274007 2.17032102547051009 \N \N \N \N \N \N \N -0.550929250000000037 \N \N \N \N \N \N \N \N \N 67 0 67 0 1.29268380000000005 76.7661972 3.6034819591082301 1.30335397238180994 3 false 0.015918874999999999 \N \N -0.00422370299999999966 8 6 9.47486100000000064 0 8 false 69 77.2570683549672026 1.17663998919544999 65.6589966 20.9685209999999991 4 73.1245017837436961 6.4835536863663199 11.2784604999999996 20.6912300000000009 6 85.5418331448989022 11.5195735464817997 7.4257812000000003 19.9314730000000004 2.05374530000000011 0 0.759758000000000044 -0.277290340000000024 1.03704829999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.902981587274013 -63.5175659870999993 22.1921410829535013 -13.0580516726440994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343722344687744 2481343722344687744 420713376 2015.5 25.3561534411330989 0.341346219800902018 -3.48775470382848019 0.281259623581082974 2.23571585449525001 0.387481656680102982 5.76986270000000001 17.9133217978247998 0.745942445693783984 -16.3311438260601989 0.510851936065603973 0.181587429999999994 0.291531859999999976 -0.178890290000000007 0.139089180000000007 -0.0668130900000000055 0.105636560000000004 0.210980179999999989 0.0722229699999999974 0.103851550000000001 0.151458199999999987 168 0 165 3 0.880454599999999976 175.561996 0.650841821590865011 0.688834649389477027 31 false 0.149426969999999992 1.17875730919933996 0.0896651894466991978 -0.0383745200000000022 19 10 0.665074500000000013 0 19 false 163 283.64434546466498 1.1945731808445299 237.444 19.5564299999999989 14 55.7572291635052011 5.68510259674424034 9.80760300000000029 20.9856359999999995 16 370.226273562238987 8.88556686759502945 41.6660269999999997 18.3407519999999984 1.50182269999999995 0 2.64488399999999979 1.42920500000000006 1.21567920000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.896320843172987 -63.5127341192052981 22.1937123467405009 -13.0525902140648 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344413835123456 2481344413835123456 1097927963 2015.5 25.3124792201594992 0.0897206031180901031 -3.47175253000557005 0.0673401206181800938 0.419397245862071999 0.0982810184992671948 4.26732699999999987 6.22331190154258973 0.190086810069134998 -5.60596759435524028 0.130529107207880996 0.0863256899999999966 0.376405029999999974 -0.165806399999999993 0.0953877699999999967 0.0052052130000000002 0.0589059739999999998 0.155594160000000009 0.0222563650000000002 0.0879122839999999933 0.0357995899999999992 148 0 144 4 -0.566681899999999961 129.128006 0 0 31 false 2.75769600000000015 1.56813836281221008 0.0225271715579201011 -0.0491726700000000017 17 10 0.172500010000000009 0 17 false 142 2628.22740085549003 3.37590334538701997 778.526001 17.139208 16 1426.55959526276001 12.7120965100346002 112.220640000000003 17.4656640000000003 17 1763.55039594416007 11.3218603162225993 155.765080000000012 16.6459499999999991 1.21378769999999991 0 0.819713600000000042 0.326456069999999987 0.493257520000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.792650332280999 -63.5170875729969993 22.1581852568690998 -13.0216300025546996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344718777104256 2481344718777104256 975630627 2015.5 25.3131263774929991 0.0497419337723421992 -3.45623122950574002 0.0373369637079720013 5.29579413766118012 0.0537480480385377005 98.5299799999999948 -29.1806941106643016 0.101243350992036005 36.4888114359391977 0.0692735740214270035 0.154470099999999999 0.395884960000000008 -0.209880900000000009 0.139196769999999997 0.0984100200000000008 0.137658389999999992 0.044328447 0.07616705 0.0862199700000000069 0.102536290000000002 150 0 149 1 3.70623499999999995 215.625 0.189942751847723995 2.99912052266504991 31 true 10.0962259999999997 1.33693505950121994 0.0134448578757454008 0.0141750250000000008 17 10 0.0978532800000000008 0 18 false 149 12755.6217302846999 9.42585227362327949 1353.26001 15.4241109999999999 15 3218.58580427220022 18.7381715181237993 171.766269999999992 16.5822259999999986 16 14600.3210664974995 32.2897296617712968 452.166099999999972 14.3510139999999993 1.39694539999999989 0 2.2312116999999998 1.1581144000000001 1.07309720000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.778985039564986 -63.5027985787270026 22.1646808558246988 -13.0074428596453 100001 3534 3498 4103.22998 0.40200001 0.108599998 0.639900029 0.169499993 0.0445000008 0.326099992 200111 0.543064699999999956 0.402841300000000013 0.55430025000000005 0.0414442299999999986 0.0405287630000000024 0.0423597000000000001 +1635721458409799680 Gaia DR2 2481344723072768640 2481344723072768640 934013266 2015.5 25.3142929074429013 0.0886023557469242939 -3.45574540516058981 0.0637482437958197951 5.35522080031995973 0.0960153252906948973 55.7746470000000016 -28.1108452175743011 0.187759785331788998 37.2055923410166969 0.119050900109566996 0.0992122740000000031 0.341468449999999979 -0.195586320000000008 0.134990720000000008 0.0103362200000000001 0.132245599999999991 0.109966640000000004 0.0398843470000000005 0.0810634999999999967 0.0843834799999999968 159 0 156 3 5.38899229999999996 264.376007 0.404412391677924976 6.27265306432750958 31 false 2.76630619999999983 1.26003690032781002 0.0207106105014797995 -0.0193613769999999991 18 10 0.171389900000000012 0 18 false 155 4426.7171121825304 4.86051742122635044 910.75 16.5731619999999999 14 793.853972029198985 10.2115081094244005 77.7411100000000062 18.1020369999999993 15 5780.78986666944002 15.3445025888669004 376.733600000000024 15.3569519999999997 1.48521890000000001 0 2.74508570000000018 1.5288754 1.21621040000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.780872604552002 -63.5018590888907966 22.1659755832857002 -13.0074210576102995 100001 4233.12988 3879.6499 4790.66016 0.559000015 0.220300004 0.808799982 0.314999998 0.104999997 0.555499971 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344791792245120 2481344791792245120 1624517833 2015.5 25.2994081643309983 1.37566393240233009 -3.4480111809741798 0.950666588969454995 \N \N \N \N \N \N \N 0.108854999999999993 \N \N \N \N \N \N \N \N \N 112 0 112 0 40.6335300000000004 2476.1499 7.09754804108516968 137.186563430628013 3 false 0.0183794949999999992 \N \N 0.0697059000000000012 14 9 3.06426450000000017 0 14 false 120 571.750954560670039 7.75102501928212995 73.7646027 18.7953499999999991 9 587.412305412359956 11.1580962212802 52.6444929999999971 18.4290309999999984 10 1277.67609556236994 13.9445628868312994 91.6253999999999991 16.995868999999999 3.26206450000000014 0 1.43316270000000001 -0.366317749999999998 1.79948039999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.743354286789014 -63.5012642340079978 22.1547329638863992 -12.9947493884095007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344821856465024 2481344821856465024 1220518193 2015.5 25.3051369767090009 1.57412596175796993 -3.44142383740418012 1.73944956191449007 \N \N \N \N \N \N \N 0.26013383000000001 \N \N \N \N \N \N \N \N \N 52 0 51 1 3.10422500000000001 81.6793976 4.24546514968718025 2.0416959723531698 3 false 0.0169504039999999988 \N \N 0.0979054000000000035 6 5 6.74094770000000043 0 6 false 52 82.3098256658817036 1.68290234354271995 48.9094009 20.8997360000000008 5 63.1463027688065992 6.58769568139885031 9.58549200000000035 20.8505199999999995 3 82.2265720496952071 9.66414356157276977 8.5084180000000007 19.9743899999999996 1.76616670000000009 0 0.876129150000000023 -0.0492172239999999969 0.925346400000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.748581961294008 -63.4928587675779994 22.1626823979954999 -12.9907375721784 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347781089483008 2481347781089483008 1185689235 2015.5 25.3043659356081001 0.104419617836746997 -3.43869214042826021 0.0767263379770127957 0.623110367102180041 0.120901749614269 5.15385700000000035 5.25225237151871038 0.186745030179115007 -15.0260872914379995 0.137548776401989009 0.20068488000000001 0.552633900000000011 -0.115024219999999996 0.185643420000000003 -0.0228126509999999998 0.267854099999999984 0.312523600000000012 -0.0277780349999999995 -0.00943610800000000034 0.268920199999999998 129 0 129 0 -0.199600980000000011 120.228996 0 0 31 false 3.04178099999999985 1.57180045304095994 0.0231818037034355988 0.0440824849999999976 15 9 0.175220440000000005 0 15 false 127 2868.62268194112994 3.54745993384416991 808.640991 17.0441819999999993 13 1395.11704346565989 13.9242751755386998 100.193150000000003 17.4898619999999987 11 2124.26642221013981 6.13794443021807012 346.087600000000009 16.4438969999999998 1.22685479999999991 0 1.04596519999999993 0.445680620000000027 0.600284599999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.744394777009006 -63.490722899054397 22.1629829058235011 -12.9879146677166997 100001 5296.75977 5070 6192.49023 0.152799994 0.053199999 0.252299994 0.0825000033 0.0399000011 0.140499994 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344753136842240 2481344753136842240 284736904 2015.5 25.3270234212080005 0.540652814474886001 -3.45766639495737982 0.489559304119416006 -0.305284965391876995 0.629781776862613052 -0.484747229999999973 9.78753050643896039 1.14497896785590991 -3.86135368032257009 0.882409825124350955 0.318608300000000011 0.333393280000000014 -0.126099559999999999 0.118017559999999994 0.0359326599999999982 0.0630768300000000004 0.135736350000000006 0.0632610900000000059 0.139630730000000008 0.218685660000000004 140 0 139 1 -0.542497459999999987 124.677002 0 0 31 false 0.0667835850000000064 1.59667332784548011 0.158784585833132014 0.0258106090000000017 16 10 1.03662220000000005 0 16 false 138 150.920746862897005 1.20509276579403002 125.236 20.2414929999999984 14 47.3746286311930973 5.36427151811088976 8.83151200000000003 21.1625230000000002 15 169.631730391524002 6.88097702998724969 24.652273000000001 19.1881519999999988 1.43788289999999996 0 1.9743710000000001 0.921030039999999994 1.05334090000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.80843205674401 -63.498123916121898 22.1773695807418001 -13.0138959212839005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346230605594624 2481346230605594624 978821708 2015.5 25.3368548271675991 0.835708512608999032 -3.43771418985578014 0.706333356520189026 0.682976506740952005 0.975863145507955054 0.69986915999999999 5.17655822723460979 1.58449584846159008 -12.3487294216460004 1.49746208888789001 0.176333889999999993 0.493679849999999976 -0.131004480000000006 0.0297284540000000014 -0.0949631699999999995 -0.0314858999999999972 -0.145385340000000002 0.0762115639999999955 0.109512429999999994 0.293295059999999996 136 0 136 0 1.48357420000000007 155.761993 1.43562578949083997 0.61622095572593405 31 false 0.0318856459999999967 1.09997563492255002 0.207239425584410997 -0.0696411599999999936 16 10 1.54444669999999995 0 16 false 134 113.900140416018999 1.14268592248484002 99.677597 20.5470539999999993 12 39.2583576908942007 6.86601552120809977 5.71777870000000021 21.3665580000000013 12 149.110346482078 9.91389851942198952 15.0405359999999995 19.3281500000000008 1.65380569999999993 0 2.03840829999999995 0.819503800000000004 1.21890450000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.809028587625988 -63.4758904602040985 22.1942869425085014 -12.9989728899069998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343722344688768 2481343722344688768 1571092683 2015.5 25.3488756877447017 0.407169553288487973 -3.48110963226017001 0.344313887603255986 0.426113030602001008 0.472421368642387984 0.901976639999999996 -0.880936815352972968 0.99073451448546701 0.376701288283955993 0.642769330056708998 0.19853498 0.108538560000000006 -0.0715464350000000054 0.0907958100000000046 -0.121763640000000006 0.0688637599999999961 0.209225090000000002 -0.0360133899999999993 0.114218360000000005 0.119370889999999993 158 0 155 3 1.30256079999999996 172.977005 0 0 31 false 0.102778659999999994 1.46114136942603001 0.109622781136742994 -0.0816334699999999996 18 10 0.874171099999999979 0 18 false 154 220.607157962040986 1.99891270740872007 110.363998 19.8293169999999996 16 142.357301488430011 8.58189730052420074 16.5880930000000006 19.9679399999999987 17 135.575240502484007 7.35830483185204987 18.4247930000000011 19.4314689999999999 1.25985279999999999 0 0.536470400000000014 0.138622279999999987 0.397848130000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.875198467329 -63.5098755787277014 22.1892987145673004 -13.0437335884946002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344478258933248 2481344478258933248 1271771200 2015.5 25.3448582492452985 0.280428311239652006 -3.47653476094115987 0.206156299916251007 1.66665187570705009 0.304461163489178011 5.47410350000000001 8.58391558519801023 0.652355465321859951 -11.6307629673883 0.386411650953503993 0.092786014 0.196051819999999988 -0.145389240000000003 0.106189690000000003 -0.0700682299999999952 0.0961172500000000013 0.146614579999999994 0.00627777000000000023 0.105284890000000006 0.0698551500000000047 159 0 158 1 3.51469830000000005 222.229004 1.02369066831245004 3.51969883541192008 31 false 0.244831930000000003 1.38850137976853993 0.068559657313679398 -0.0934750099999999973 18 10 0.576032639999999985 0 18 false 155 498.516455864309023 1.62729646681203 306.346008 18.9441659999999992 16 119.096025354058 8.63451116982727029 13.7930250000000001 20.1616460000000011 16 620.805797384665993 10.6771379418914005 58.1434670000000011 17.7795309999999986 1.48420740000000007 0 2.38211439999999985 1.21747969999999994 1.16463469999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.862663597140994 -63.5074783238598002 22.1872058250562993 -13.0380018637776995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481343726639972480 2481343726639972480 1140342144 2015.5 25.3595504643291001 0.684984229139692036 -3.47997543675574006 0.729116898162676996 0.548977670712900045 0.774119765675247984 0.709163699999999952 -2.86298263561792021 1.66318514958398 -11.7254703980150001 1.95996268853425004 0.338261699999999998 0.215730919999999993 -0.233327850000000003 -0.111400429999999995 -0.0735972500000000029 -0.139137299999999992 -0.342392269999999999 0.0356148739999999978 0.0100477250000000004 0.456562730000000028 136 0 135 1 0.0652448899999999998 130.386002 0 0 31 false 0.0385523440000000023 1.06457483142041998 0.214375923500055993 -0.00950678400000000076 16 9 1.9566311999999999 0 16 false 137 111.544566327116002 1.09213908362545009 102.134003 20.569744 12 49.9881884333238986 8.29667625937197073 6.02508599999999994 21.1042200000000015 13 150.184457717474004 8.20165877390778064 18.3114740000000005 19.3203579999999988 1.79455300000000006 0 1.78386120000000004 0.534475299999999987 1.24938579999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.89564696667 -63.5042533295003011 22.1998938658786003 -13.0466109919303008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345199813439744 2481345199813439744 926568696 2015.5 25.3731184078813001 0.377836639410472019 -3.47145985076780006 0.320483459020847017 -0.0369899431614343979 0.436082244563298027 -0.0848233199999999937 -0.176713606667743994 0.83655123298689904 -2.51579346079617006 0.633950232597080054 0.20104807999999999 0.298659000000000008 -0.121034409999999995 0.0746870300000000015 -0.112240049999999994 0.0481555570000000016 0.107218560000000004 0.0221710760000000014 0.0867015399999999936 0.212095019999999995 176 0 168 8 1.47495700000000007 190.367004 1.28312568451861009 2.37281394079602004 31 false 0.113459309999999994 1.59413017067800999 0.0977137528211222961 -0.0105215989999999995 19 10 0.754690399999999983 0 20 false 168 273.38339791431099 1.19568512731644994 228.641998 19.5964360000000006 18 176.157874171998003 7.67610705944603033 22.9488559999999993 19.7366330000000012 18 186.780932402437003 7.7555760835409604 24.083437 19.0835900000000009 1.32758179999999992 0 0.653043750000000034 0.14019775000000001 0.512846000000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.914777457841012 -63.4907236633140997 22.2160398915170987 -13.0436928339341005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345165453701888 2481345165453701888 1097741943 2015.5 25.3891265317332007 0.570012357389145019 -3.46759605893800016 0.554676621479153975 1.13843595804381992 0.655491378490188015 1.7367672999999999 6.4462197462553199 1.28816278890662006 7.61393438085208007 1.20610261404808994 0.323939350000000015 0.270256940000000001 -0.147039410000000009 -0.0184760859999999992 -0.059551314000000001 -0.051749464000000002 -0.097390850000000001 0.0400450600000000004 0.105653289999999997 0.318288599999999977 154 0 153 1 -0.992469970000000035 130.957993 0 0 31 false 0.0500435160000000032 1.33270886274764 0.169252082093644007 0.0101217400000000006 18 10 1.26224720000000001 0 18 false 153 135.042193284088 1.12151503736859004 120.411003 20.3621920000000003 12 46.1859914426570981 6.93595472798541035 6.65892359999999961 21.1901130000000002 14 139.348211543709994 3.8015698903122499 36.6554369999999992 19.4016669999999998 1.37389800000000006 0 1.78844639999999999 0.82792089999999996 0.960525500000000032 \N \N 0 \N \N \N NOT_AVAILABLE 151.943313251597999 -63.4803329566056007 22.2327482035832986 -13.0459961694181992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345234173179264 2481345234173179264 816385443 2015.5 25.3748595785853013 0.367226390584237006 -3.45783457099628011 0.324728954131557002 0.0540993110111740033 0.430451970411549978 0.125680249999999993 6.64660286529522004 0.817851038258873952 -11.1330381904256992 0.629440448128550045 0.231692659999999995 0.282843200000000017 -0.108133720000000003 0.0774672849999999968 -0.110466510000000004 0.0356012600000000026 0.141273540000000003 0.024088524 0.105051480000000003 0.212153989999999987 168 0 167 1 0.659442799999999996 173.464005 0 1.57898385724466995e-15 31 false 0.117303779999999996 1.35977952581453998 0.103338532287296003 -0.00631673539999999967 19 10 0.738801400000000053 0 20 false 167 230.217913208546008 1.12647959958514998 204.369003 19.7830179999999984 17 86.0813954988471011 6.02699383025973034 14.2826419999999992 20.5141139999999993 17 229.632507146952008 11.9926736665334008 19.1477320000000013 18.859337 1.37136980000000008 0 1.65477750000000001 0.731096269999999993 0.923681259999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.905105082889008 -63.4776844077721023 22.2228575820725993 -13.0316697961063994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157114605717888 2481157114605717888 1657749686 2015.5 25.4262097414553985 0.475031724108814002 -3.52316208525598995 0.425900304850467981 -1.58230237818004005 0.578002523421737968 -2.7375354999999999 0.328009243275524998 1.06847964460519007 -3.40000632415434989 0.826271724840526023 0.21780737 0.256056000000000006 -0.107636040000000002 0.0491111870000000006 -0.207492929999999992 -0.00492927150000000043 0.0929735000000000006 0.0487272440000000029 0.131289650000000008 0.241459499999999994 159 0 157 2 1.82953260000000006 185.419998 1.15932594988661997 1.08594563107502995 31 false 0.073887880000000003 1.44031431644756003 0.135113519362407009 0.0188865939999999996 18 10 0.97177570000000002 0 18 false 156 183.338224820776986 1.11541219424027993 164.367996 20.0302329999999991 14 117.916716220704998 9.08493249387887047 12.9793719999999997 20.1724500000000013 15 112.249682358599998 10.5525604413818002 10.6371979999999997 19.6364570000000001 1.25541959999999997 0 0.535991670000000031 0.142215730000000012 0.393775939999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.072024931655989 -63.5143729660685992 22.2470258311827003 -13.1112971940719998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157114605719424 2481157114605719424 244371073 2015.5 25.4254982842787989 0.16046108667345399 -3.51564475908079999 0.135730329881081996 1.00363125481934001 0.191236269712071999 5.24812169999999956 4.88082290334368007 0.357187422496750007 -8.68087400289448929 0.254291521359908013 0.173680410000000007 0.265516399999999986 -0.13031042000000001 0.0851709799999999934 -0.209204289999999987 0.0410349029999999976 0.142870469999999999 0.0576922370000000004 0.114745854999999994 0.208904499999999993 170 0 169 1 1.41088100000000005 190.164993 0.0853457190362928997 0.0430698128572917019 31 false 0.646666349999999945 1.36234202074192989 0.0410934528112490982 0.0204586570000000016 19 10 0.322706900000000019 0 19 false 169 772.360914891087987 1.77108921781497997 436.093994 18.4688149999999993 17 204.738040910347991 6.47915841674442028 31.5994819999999983 19.5733910000000009 15 879.951721658615952 10.0006460968526003 87.9894900000000035 17.4007719999999999 1.40438200000000002 0 2.1726188999999998 1.10457610000000006 1.06804279999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.063273717517006 -63.5079092907141032 22.2491951454417993 -13.1040480177150993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344856216201728 2481344856216201728 562559659 2015.5 25.3956776129801014 0.953165219980265044 -3.49714235451240985 0.950670722899829013 3.83041601165365009 1.03673176272535006 3.69470300000000007 11.3633276451348006 2.96413995746567993 1.04133716573115009 3.03619811776749993 0.457072230000000024 -0.0649090900000000026 -0.317170500000000022 -0.191120760000000001 -0.227589679999999989 -0.188750489999999993 -0.27999590000000002 0.0124168809999999994 -0.0114973049999999993 0.623073100000000046 102 0 101 1 1.89269569999999998 123.894997 1.58233629672355991 0.577539676842488969 31 false 0.0306385160000000011 1.28830062041218008 0.266366323165244001 0.0752322450000000031 12 8 3.37027799999999989 0 12 false 103 101.696953358981006 0.975627496503357006 104.237 20.6700949999999999 5 56.9853415988058032 7.22837738440478983 7.88355899999999998 20.9619800000000005 8 143.860363885602993 10.2344922510509004 14.0564239999999998 19.3670669999999987 1.97494320000000001 0 1.5949135000000001 0.291885380000000028 1.30302809999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.98516708468901 -63.5041403811408003 22.2277985807685994 -13.0758708124510008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344890575792768 2481344890575792768 1155852310 2015.5 25.4063548933614989 0.212482288832972988 -3.48577894641951991 0.175993481363930004 3.14308358266012 0.237478270890177007 13.2352469999999993 -13.0185235414808993 0.458002687685439003 -12.5081347271287999 0.338872651800255997 0.205682959999999998 0.337708950000000008 -0.102842959999999997 0.105259320000000003 -0.0523665850000000002 0.0804427199999999953 0.135356830000000011 0.0167002979999999988 0.093146116000000001 0.19614551999999999 160 0 159 1 5.73946570000000023 277.29599 0.889592872487280029 4.09659318330717959 31 false 0.393722330000000009 1.26497104977115993 0.0570336340517271015 0.0123312219999999993 18 10 0.412588979999999994 0 18 false 159 751.664574672466983 1.90029427226119996 395.552002 18.4983059999999995 17 137.50278620777101 15.2098853949258004 9.0403570000000002 20.0056100000000008 17 1085.97695328702002 23.055528037818501 47.1026730000000029 17.1723689999999998 1.62769380000000008 0 2.83324050000000005 1.50730319999999995 1.3259373000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.995665727681995 -63.4892824129918978 22.2422712685457995 -13.0692401517350998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157148965457664 2481157148965457664 491198293 2015.5 25.4352827827659986 0.374167167767413988 -3.51538777112167011 0.324120684515759983 0.206116110173295009 0.456881723051114019 0.451136700000000002 -0.641547287293510959 0.893745211912867044 -9.15169773427208 0.604739410253794962 0.22685087000000001 0.151867520000000006 0.0431703370000000031 0.0666042200000000056 -0.216808840000000003 0.052809090000000003 0.185122599999999998 -0.096609496000000003 0.116766885000000001 0.186084479999999997 156 0 155 1 0.535297699999999987 158.770996 0 0 31 false 0.124220245000000007 1.49558723613861999 0.0969890625883313012 -0.0168992620000000017 18 10 0.795820300000000036 0 18 false 154 239.021180059670002 1.3229132999258999 180.677994 19.7422749999999994 11 49.3004198900329982 4.78883965789450006 10.2948570000000004 21.1192600000000006 13 277.04491325888398 6.07439418344087034 45.6086499999999972 18.655543999999999 1.3653405999999999 0 2.46371649999999986 1.37698549999999997 1.08673099999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.082743908087991 -63.5034372862273031 22.2586127286168995 -13.1074112974733001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157252044809984 2481157252044809984 656883889 2015.5 25.4407762574236003 0.43659955428090802 -3.49330957521419005 0.391223009684394996 1.15523880908185994 0.52377227728546305 2.20561270000000009 18.7740364989947999 0.983847857920130964 1.6024983175135199 0.709290118627768029 0.221667990000000009 0.260471430000000004 -0.0748610400000000037 0.0921901239999999983 -0.123355270000000003 0.000219005440000000012 0.24069763999999999 0.0255730540000000013 0.162911119999999993 0.135693069999999999 157 0 155 2 3.56512070000000003 219.75 1.13556931609941003 1.35829111693167004 31 false 0.0890002899999999958 1.50636696012886007 0.116079559901497001 0.00643412160000000032 18 10 0.87141966999999998 0 18 false 154 207.069790224189006 1.45443374780944001 142.371002 19.8980730000000001 12 64.2961882516398049 12.3320522825975996 5.21374600000000044 20.8309250000000006 14 296.677450986548024 16.2436806955848994 18.2641770000000001 18.5812099999999987 1.74324630000000003 0 2.24971580000000015 0.932851800000000009 1.31686400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.072328537472004 -63.4811684050690985 22.2722056515996982 -13.0889117370549997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481157320765171712 2481157320765171712 596586593 2015.5 25.4413261147982013 0.702099899221593993 -3.4914580325454998 0.626380584202166024 0.851001251858553021 0.778739379923575004 1.09279330000000008 -1.0311378372453599 1.70383776704174994 5.32848002732963 1.30388022459663011 0.234080800000000006 0.0876309299999999958 -0.340879680000000018 0.0304288100000000006 -0.113590750000000004 0.00413328969999999987 -0.0692776999999999976 0.202030290000000001 0.117259963999999994 0.232271599999999995 134 0 132 2 0.860967900000000008 140.507004 0 0.00202558433778476021 31 false 0.0410667060000000014 1.30148928716538004 0.202647864394622013 0.00764743200000000001 16 10 1.56351090000000004 0 16 false 135 116.932437874208006 1.39363586203670997 83.9046021 20.5185279999999999 10 32.0916729104370972 7.1862524668983303 4.46570350000000005 21.585407 11 159.510792445686008 11.0367244802675994 14.4527289999999997 19.2549460000000003 1.63857410000000003 0 2.33046150000000019 1.06687930000000009 1.2635822000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.07163537364201 -63.4792621942335984 22.2734304383041994 -13.0873931016177991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345066669629696 2481345066669629696 778670739 2015.5 25.4080226125465991 0.660414446505806052 -3.47706376578550991 0.659669064874117028 1.05836708808888003 0.756899689218120009 1.3982924000000001 -1.92049123461304005 1.43269530026981995 -8.57357394376420956 1.32379757104052009 0.357309160000000015 0.307107989999999997 -0.132734999999999992 0.0219278450000000014 -0.0303035879999999994 -0.037185203 -0.0203602049999999993 0.0693805599999999939 0.149625989999999987 0.308110300000000004 144 0 144 0 3.47470200000000018 204.492996 1.1739258826502299 0.547937914508954016 31 false 0.0400296080000000012 1.41333875109048002 0.197505236827758002 0.0344798040000000028 17 10 1.39033439999999997 0 17 false 147 124.318614162337994 1.08617144687875999 114.456001 20.4520240000000015 14 44.5841866827393005 5.45252647682907998 8.17679399999999923 21.2284359999999985 14 149.773089622192003 7.15697848102870982 20.9268600000000013 19.3233360000000012 1.5633804 0 1.90509989999999996 0.776411060000000042 1.12868879999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.990571612628997 -63.4807060778586987 22.2471597059310007 -13.0617535077536999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360386819444736 2481360386819444736 1454384443 2015.5 25.1657933062372017 15.1530271657987008 -3.40303984587712005 8.79136722006122007 \N \N \N \N \N \N \N -0.490246799999999983 \N \N \N \N \N \N \N \N \N 43 0 43 0 -1.25663189999999991 27.5228004 0 0 3 false 0.0176787490000000005 \N \N -0.107441889999999998 5 5 156.55331000000001 0 5 false 44 78.5802136385077006 1.74699139626702005 44.9803009 20.9500829999999993 3 13.9887782239187004 1.79529006586026996 7.79193200000000008 22.4869379999999985 5 39.731332659628201 9.75700039178017065 4.0720850000000004 20.764088000000001 0.683634040000000054 0 1.72285080000000002 1.53685570000000005 0.185995099999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.429939514707996 -63.5176339829642984 22.044583257494299 -12.9037113934068994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345165453701632 2481345165453701632 419542379 2015.5 25.3923556011982008 0.182939254589679995 -3.4707314299463401 0.149499080347411994 4.0684599719252601 0.209711557279897987 19.4002669999999995 8.36380019814568954 0.411702234893802976 -26.6140746240335986 0.282461713279646975 0.176331450000000001 0.272216200000000019 -0.151355369999999989 0.0973965999999999998 -0.12524861000000001 0.0599476729999999999 0.175468740000000012 0.043494320000000003 0.0993854700000000035 0.16488831000000001 176 0 175 1 1.35610589999999998 195.518997 0 0 31 false 0.489687140000000021 1.09376695915282007 0.0465882647433647004 -0.0193826089999999986 20 10 0.368526039999999999 0 20 false 174 639.859284987552996 1.62910282389070993 392.768005 18.6731550000000013 16 93.2688495646999058 4.8259489276334202 19.3265300000000018 20.4270460000000007 16 899.550585565131996 7.75409413193257002 116.00976 17.3768560000000001 1.55162160000000005 0 3.05019000000000018 1.75389100000000009 1.29629900000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.952859029666001 -63.4817659619722008 22.2346362315994988 -13.0500993762624997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345062374487040 2481345062374487040 531792104 2015.5 25.4161142232738015 0.344531623290302014 -3.46635274174859997 0.308121668552048977 -0.0593777176794986969 0.401378918320387024 -0.147934320000000008 9.59766909432160986 0.790934850336547979 -22.5727076439745993 0.651064052706986973 0.195351059999999993 0.270971200000000023 -0.0808783599999999964 0.0280432920000000009 -0.106781500000000001 -0.00855453500000000026 0.112984310000000004 -0.0187113830000000016 0.0903825399999999973 0.170912890000000012 161 0 159 2 1.2559819000000001 176.380005 0.544417465879606044 0.377764630170769 31 false 0.133150899999999989 1.51609806662951008 0.0906968714295187939 -0.0351327359999999977 18 10 0.712435900000000011 0 18 false 158 260.35062947417498 1.16659806505206998 223.171005 19.6494700000000009 13 70.1134438836748046 5.69341469803262967 12.3148319999999991 20.7368850000000009 12 273.063108990101 9.31318794472907996 29.3200469999999989 18.6712629999999997 1.31813219999999998 0 2.0656222999999998 1.08741569999999999 0.978206629999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.996484974085007 -63.4675536766112032 22.2589217151447016 -13.0547765665202 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345302892656256 2481345302892656256 261353442 2015.5 25.4131460281434016 0.334394069651198 -3.45805229560470995 0.297803761310025006 1.71625280814581993 0.39272454022282699 4.37011859999999963 -4.82344497496135993 0.684133180407957009 -65.756627263601203 0.534117627093699032 0.245646279999999995 0.38640585999999999 0.0268053650000000011 0.137124030000000008 -0.0494707500000000008 0.0659783260000000038 0.266257799999999989 -0.025311053 0.146050650000000004 0.182478919999999989 174 0 172 2 3.8955839000000001 247.921997 1.38056776341602006 3.57324097580091005 31 false 0.143817339999999988 1.3846598624945301 0.0849334221265485023 0.0288519560000000015 20 10 0.616131500000000054 0 20 false 170 345.491742430729005 1.34260875227003007 257.32901 19.3422720000000012 17 92.1679726025420933 7.61114876873419988 12.1096009999999996 20.4399380000000015 17 403.109673972207986 7.03643846063873024 57.2888799999999989 18.2483620000000002 1.43354399999999993 0 2.19157599999999997 1.09766579999999991 1.09391020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.982461462026009 -63.4613549132064989 22.2592372161185992 -13.0459685592112997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345096734421760 2481345096734421760 1365238329 2015.5 25.4241306831824012 0.99739902746114395 -3.45956477849161015 1.02802025768815009 2.87782479175471995 1.13580128373893996 2.53373980000000021 11.4386620688404008 2.40612809954417006 -9.4525594039567995 2.72077585134698996 0.354360500000000023 0.248098550000000001 -0.198507800000000012 -0.147893400000000008 -0.118693370000000006 -0.183406740000000013 -0.32976896 0.0202062600000000002 0.0629505139999999991 0.47711389999999998 144 0 143 1 4.17049100000000017 218.619995 3.6776854662680698 4.75798904813162959 31 false 0.0178201529999999983 1.03359428528219 0.279220714340691012 0.038813590000000002 17 9 2.77542780000000011 0 17 false 144 88.3711706057246005 0.963238606020163979 91.7437973 20.8225900000000017 11 21.8656277963608012 5.83190334766089968 3.74931239999999999 22.0019840000000002 15 149.608221434933 8.88766614701319035 16.83324 19.3245320000000014 1.94038219999999995 0 2.67745200000000017 1.17939379999999994 1.49805830000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.006045394724993 -63.4579692747403001 22.2691265435651999 -13.0514181162607006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348468284222848 2481348468284222848 165971997 2015.5 25.1689405064810003 0.13278126054602099 -3.43748267164060994 0.109632422041224004 0.858049395962646955 0.153473912959775 5.59084839999999961 12.8692869238947001 0.297171982061000983 -13.5935818674806992 0.199529950492913999 0.20624611000000001 0.228997250000000013 -0.20242845000000001 0.143438409999999988 -0.141404329999999995 0.147591040000000007 0.190269070000000012 0.0761373699999999959 0.0547613799999999984 0.232777449999999997 141 0 139 2 0.47106969999999998 141.169006 0.289208679376516009 0.930294335995697996 31 false 1.23960160000000008 1.47683903395103 0.0349887103179115019 0.0724104299999999979 16 10 0.270979320000000024 0 16 false 139 1399.20833505199994 2.70999076239912018 516.315002 17.8236600000000003 13 501.551628156585025 9.65933642171101958 51.9240259999999978 18.6006 15 1359.86850454472005 7.46929178559248008 182.061229999999995 16.9281770000000016 1.33033810000000008 0 1.67242240000000009 0.776939399999999947 0.895483000000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.469213212358994 -63.5474633736095029 22.0345260040419006 -12.9368789440973995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348463988589440 2481348463988589440 31422633 2015.5 25.1722167596085988 2.23956285561086021 -3.43186010514143014 1.49204428346391005 \N \N \N \N \N \N \N 0.033633620000000003 \N \N \N \N \N \N \N \N \N 111 0 110 1 36.3888900000000035 2002.93005 11.6512826659003998 126.806122320498005 3 false 0.00687314999999999975 \N \N -0.0532359849999999996 15 10 4.61291030000000024 0 15 true 132 268.70675357708501 4.62340435275111972 58.1188011 19.6151699999999991 13 308.112454826492979 17.6802452984222001 17.4269329999999982 19.1296159999999986 14 608.355784892639008 7.79655403855015994 78.0288000000000039 17.8015250000000016 3.41066309999999984 0 1.32809069999999996 -0.485553740000000011 1.81364440000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.47047903877899 -63.5409833628057967 22.0397751429999005 -12.9328620184952996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348257831827456 2481348257831827456 1376843353 2015.5 25.1837192563391987 6.27014199083616042 -3.43858066157139985 1.80330471874046006 \N \N \N \N \N \N \N -0.377116169999999973 \N \N \N \N \N \N \N \N \N 44 0 44 0 -0.54172366999999999 33.7989998 0 0 3 false 0.0233992400000000017 \N \N -0.0723190459999999979 5 5 26.1078410000000005 0 5 false 45 85.4405329635060014 1.76204118824416001 48.4894981 20.8592049999999993 4 65.969224064617606 13.5145231682597995 4.88135769999999969 20.8030340000000002 4 99.4277055756450068 15.6414486879966006 6.35668129999999998 19.7681520000000006 1.93581340000000002 0 1.03488160000000007 -0.0561714170000000013 1.09105300000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.500220022656009 -63.542169995694799 22.0481760042870008 -12.9433482825265997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348360909567104 2481348360909567104 849804526 2015.5 25.1859505152456009 0.534967580016121991 -3.43804227444758004 0.50301139712906795 1.55416768152530005 0.628151600126661047 2.47419209999999978 -7.03565604368059994 1.17273958430443992 -8.51150037904291956 0.923825635704305981 0.332545670000000015 0.259225550000000027 -0.144115999999999994 0.131841000000000014 -0.0779594400000000048 0.116400180000000006 0.168055490000000002 0.0691864400000000018 0.0704555199999999937 0.305639920000000009 133 0 132 1 0.680556099999999997 137.453995 0 1.78333665740568982e-15 31 false 0.0718974400000000069 1.58240134797339005 0.150531248047347993 0.0951284899999999961 15 10 1.0907998000000001 0 15 false 132 156.238549859344005 1.35016028501081009 115.719002 20.2038960000000003 13 50.7107215583815005 12.6856715560713997 3.99748020000000004 21.0886379999999996 14 200.796662852455 12.3628348388281992 16.2419590000000014 19.0050300000000014 1.60976520000000001 0 2.08360859999999981 0.884742739999999972 1.19886589999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.504226443526989 -63.5407333244007972 22.0505037580111996 -12.9436705936471004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348567067805184 2481348567067805184 617395892 2015.5 25.1852807105052996 0.533481592654016956 -3.42500340792871016 0.312291332880389017 0.933497726151871987 0.493774819967159995 1.89053329999999997 25.5437558273031016 1.43825974213869001 -8.96902012612489941 0.542089920753746957 0.0112327339999999994 -0.288667679999999982 -0.69952420000000004 0.194016529999999993 0.0146474859999999995 0.253622599999999976 0.184979320000000003 0.507408999999999999 -0.007480909 0.0396415550000000019 126 0 124 2 3.31914540000000002 177.031006 0.996253277745425048 1.56202296641163008 31 false 0.167015520000000001 1.53180978772675003 0.0958215091998704943 0.0183894370000000015 15 9 1.33395269999999999 0 15 false 123 337.364597114730998 1.49412676640876008 225.794006 19.3681160000000006 12 61.536198828353001 12.8821716221110005 4.77684969999999964 20.8785610000000013 13 442.879767524847011 16.0537271536645001 27.5873489999999997 18.1462059999999994 1.49516570000000004 0 2.73235500000000009 1.51044460000000003 1.2219104999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.490395991192003 -63.5292237805829032 22.0548074189442005 -12.9313066954691998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348567067805312 2481348567067805312 567236058 2015.5 25.1874709768619987 0.469262669434861002 -3.42490837769471002 0.375288927125762006 0.982819196703196951 0.500522091983211959 1.96358799999999989 4.39293983505555996 1.08869787901989001 1.54077354997240001 0.67049004856808303 0.191531990000000013 0.209190829999999994 -0.298112659999999974 0.209170770000000006 -0.00290991720000000021 0.246038110000000004 0.297911470000000012 0.114368445999999999 0.00523876800000000042 0.167076229999999992 144 0 142 2 2.61888599999999983 184.270004 1.42119192840148001 2.38060260289344994 31 false 0.104953210000000005 1.47859825817546997 0.120032146055569 0.00522551360000000041 17 10 0.978891249999999991 0 17 false 142 255.518091204733992 1.30733600945099004 195.449005 19.6698109999999993 11 86.4460095761396019 3.38233093989878997 25.5581169999999993 20.509525 14 277.015118131993972 7.01689598095692002 39.4782999999999973 18.655660000000001 1.42244769999999998 0 1.85386469999999992 0.83971404999999999 1.01415060000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.494742103112003 -63.5282058722962972 22.0569280793975011 -12.9320258626840001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347952888147200 2481347952888147200 526702650 2015.5 25.2380045692126984 0.0320683716846233008 -3.43468232603026014 0.0254331294854567014 0.545940089081980995 0.0372075717902281972 14.672822 3.36776380338690995 0.0735988108844417982 -0.120807403070973998 0.0555814195200940026 0.118775934 0.210053610000000002 -0.163854290000000014 0.0553316250000000023 -0.197333189999999992 0.0688988299999999942 -0.0973198599999999941 -0.0104682720000000007 0.0136389670000000001 0.273754060000000021 140 0 140 0 -3.00201679999999982 90.9227982 0 0 31 false 32.0996549999999985 1.61820629833665008 0.00933541175698334932 0.0193518249999999996 16 10 0.0777743760000000062 0 16 false 138 24875.3254624061992 10.2644288025541996 2423.44995 14.6989439999999991 16 13494.5787981477006 40.0656731962303994 336.811500000000024 15.0259900000000002 15 16606.5679858196017 32.5979976043665971 509.435200000000009 14.2112210000000001 1.21008049999999989 0 0.81476879999999996 0.327045440000000021 0.48772335 \N \N 0 \N \N \N NOT_AVAILABLE 151.606405908445993 -63.5155020658258991 22.1013252775793987 -12.9597360168818998 100001 5819.75 5762 5888.66992 \N \N \N \N \N \N 200111 1.78359139999999994 1.74208809999999992 1.81952289999999994 3.28778000000000015 2.76949049999999986 3.80606959999999983 +1635721458409799680 Gaia DR2 2481347952888147072 2481347952888147072 1242089449 2015.5 25.2345892139945995 0.0583802167605328992 -3.42898486163492988 0.045661122571394 1.4952859750760199 0.0654948665017301979 22.8305840000000018 17.0928864006468011 0.128300420674184013 -14.3549706546971994 0.092200035073947903 0.104511119999999999 0.300397279999999989 -0.192089989999999988 0.134734140000000002 -0.132092120000000007 0.208490220000000004 0.184447880000000008 -0.0271435039999999989 -0.0703511099999999945 0.212717579999999989 156 0 156 0 1.2655597999999999 173.345993 0 0 31 false 6.46043249999999958 1.48454615435076009 0.0158976822363199009 0.0167945029999999988 18 10 0.123087799999999997 0 18 false 156 5514.14382728338023 4.75425553909803966 1159.82996 16.3346710000000002 16 2201.13041293792003 50.7941013593227026 43.3343699999999998 16.9947739999999996 18 4901.63741355330967 13.6251681963245996 359.748749999999973 15.5360669999999992 1.28809989999999996 0 1.45870689999999992 0.660102839999999969 0.798603999999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.594031946786004 -63.5118103098562017 22.1002326798706008 -12.9531823770615002 100001 4419.41016 4361.37988 4618.58984 0.263000011 0.116899997 0.48269999 0.131999999 0.0579000004 0.231999993 200111 0.613423700000000016 0.561653799999999981 0.62985469999999999 0.129321619999999998 0.117283490000000004 0.141359750000000006 +1635721458409799680 Gaia DR2 2481347948592657024 2481347948592657024 398334080 2015.5 25.2416001683493008 1.36500415367454009 -3.43030600324788004 2.28221310055972015 \N \N \N \N \N \N \N 0.465433450000000026 \N \N \N \N \N \N \N \N \N 70 0 69 1 2.01131439999999984 88.7274017 3.4639772983150201 18.7921056556265995 3 false 0.0234702710000000009 \N \N 0.250824659999999977 9 7 6.58505499999999966 0 10 false 71 96.485024344876507 1.4059134588486899 68.6279984 20.7272169999999996 7 61.3606863722916032 4.20809359008780959 14.581588 20.8816619999999986 9 64.6707470939330022 12.0630286896700998 5.36107059999999969 20.2351500000000009 1.30622790000000011 0 0.646513000000000004 0.15444564999999999 0.49206734000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.609481565776008 -63.5100109345433026 22.1064059922395018 -12.9569940165514002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347914232775936 2481347914232775936 294991847 2015.5 25.2558349767076997 0.585123245889515031 -3.4281637178447899 0.581862326303091981 1.14381247792803009 0.680675921986594989 1.68040680000000009 8.23400407680295032 1.37554214560515997 11.6737656104488003 1.34040298456847995 0.339801499999999979 0.224432510000000002 -0.143766370000000004 0.0807741299999999995 -0.104619673999999996 0.126126690000000014 0.0601234469999999965 -0.0205554439999999991 -0.0895056199999999941 0.428600160000000008 130 0 127 3 -0.58609929999999999 112.439003 0 0 31 false 0.0593713299999999999 1.40559294036831006 0.187268294099008997 0.0616414299999999971 16 10 1.42492280000000004 0 16 false 128 142.322621880373987 1.25926938195325011 113.019997 20.3051819999999985 11 40.1325653430224989 5.45827425844836966 7.35261060000000022 21.3426459999999985 14 189.350305740968992 7.75972234706479025 24.4016860000000015 19.0687539999999984 1.61241319999999999 0 2.27389140000000012 1.0374641 1.2364272999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.636212691622006 -63.5019927184784976 22.1207682076413015 -12.9602488228688006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347776793821952 2481347776793821952 1338468969 2015.5 25.3107457538912008 0.606052934069037041 -3.43277569459008003 0.670425333959858039 1.38800261450464002 0.703506637973739024 1.97297729999999993 15.8336189606696003 1.34709480121155001 -12.6746343023924997 1.14473348004691 0.446822759999999986 0.213833200000000001 0.0792162299999999986 0.335687820000000026 -0.20678437999999999 0.36274519999999999 0.579986930000000012 -0.114065089999999994 -0.102069199999999999 0.434013099999999985 146 0 144 2 2.4861352000000001 183.904999 1.66630149004549999 1.73681813024501008 31 false 0.057243490000000001 1.31370316685763999 0.153147222112456988 0.118068515999999998 17 9 1.38960459999999997 0 17 false 141 164.412779832060011 1.21518625583094009 135.298004 20.1485270000000014 11 47.9702144364285985 6.9690167316379199 6.88335469999999994 21.1489580000000004 12 210.279111010712001 10.2548301703006004 20.5053729999999987 18.9549300000000009 1.5707374999999999 0 2.19402890000000017 1.00043109999999991 1.19359780000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.751580462595996 -63.482643871301903 22.1712978056985008 -12.9847660146063006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345783928996864 2481345783928996864 502762141 2015.5 25.4192275272400998 0.158431625273922988 -3.42916734001045986 0.181223579590159001 1.25588473112029009 0.189851676619535004 6.61508369999999957 3.93579054737787004 0.380148990010817978 -9.32791091225242042 0.367470853377703022 0.391511050000000027 0.176692170000000009 0.193411420000000001 0.297929500000000014 -0.338066340000000021 0.434292500000000026 0.545603040000000039 -0.269314600000000015 -0.243385800000000013 0.548116860000000039 151 0 150 1 2.27343340000000005 186.473999 0.47148102596504099 1.6521531642976699 31 false 0.742591400000000013 1.37416600159982005 0.0406162103097012991 0.116921479999999994 17 9 0.430173369999999999 0 17 false 150 1040.67041826281002 1.67098588836658002 622.788025 18.1450819999999986 17 328.072744670380018 7.90719597433696997 41.4904020000000031 19.0614619999999988 15 1076.27547167793 8.29077753927393957 129.816000000000003 17.1821120000000001 1.34946490000000008 0 1.87935070000000004 0.916379900000000025 0.962970729999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.966735180609987 -63.4326883758673006 22.2759629051163017 -13.0213581663193008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243499283489024 2481243499283489024 371509333 2015.5 24.8311986648126002 0.127093930357480012 -3.69593020874176004 0.0861924253136735069 8.09032652369920946 0.139247224613473997 58.1004519999999971 -19.7018556165511001 0.296687011056336991 3.20035837991096983 0.172359435265314997 0.00972640299999999978 0.179953109999999999 0.203352719999999987 -0.0305159969999999996 -0.139319940000000003 -0.0533948699999999971 0.0384272299999999997 -0.179144739999999997 0.172997740000000011 0.0186815489999999987 153 0 152 1 3.43679740000000011 213.298004 0.360240439333597007 1.88097811447182006 31 false 1.41751310000000008 1.19447679927247008 0.0273289704686352011 -0.0140876869999999998 18 9 0.266127100000000005 0 18 false 150 2036.27659709471004 3.2241454074073399 631.570984 17.4162730000000003 17 311.752532253353991 20.0315697292618999 15.5630609999999994 19.1168629999999986 17 2884.8980833727901 11.7321919020933993 245.89591999999999 16.1115929999999992 1.56985090000000005 0 3.00526999999999989 1.7005901000000001 1.3046799 \N \N 0 \N \N \N NOT_AVAILABLE 151.025977196328995 -63.924233208950703 21.6149939493971992 -13.0522702662324992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243499283488768 2481243499283488768 77305151 2015.5 24.8328277934411012 2.2850603292565701 -3.69333945738494984 1.63990217344276989 \N \N \N \N \N \N \N 0.0302322710000000015 \N \N \N \N \N \N \N \N \N 127 0 127 0 25.287668 1093.80005 13.5709646231668 61.3560363918911023 3 false 0.0046305223000000003 \N \N -0.0432600860000000031 15 9 4.63264130000000041 0 15 false 130 170.672027177767006 1.92388347897188994 88.7121964 20.1079599999999985 13 196.363372487665998 10.6560968742188997 18.4273260000000008 19.6187359999999984 12 451.045598590575992 10.9500426862552001 41.1912200000000013 18.1263700000000014 3.79329280000000013 0 1.4923668000000001 -0.489223479999999988 1.98159029999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.026858282022005 -63.9211992309146027 21.6175295042916993 -13.0504664221969993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481255349097696256 2481255349097696256 711970533 2015.5 24.8299979564485014 0.819649179482371038 -3.67343335663928983 0.495421550170694003 -0.984963572105438945 0.824975425569387966 -1.1939306999999999 2.8769921523663502 2.04619840331262992 1.02598678337988991 0.998836730225761027 -0.100169439999999998 0.145073890000000011 0.140019730000000009 -0.0422325880000000015 -0.134628219999999993 -0.0381214949999999983 0.152746529999999991 -0.193636950000000002 0.101473770000000005 -0.0808284660000000016 141 0 139 2 1.99878800000000001 168.679001 1.68736011914750006 1.1752565943334099 31 false 0.0423915129999999987 1.60456342306520994 0.175650696994017003 -0.0374618700000000013 16 9 1.80280949999999995 0 16 false 139 172.11276587397299 1.51036373034823002 113.955002 20.0988329999999991 13 126.130208216279001 10.7278433821036998 11.7572759999999992 20.0993400000000015 14 95.586344357264295 10.1894898838106993 9.38087699999999991 19.810929999999999 1.2882051000000001 0 0.288410200000000005 0.000507354739999999979 0.287902829999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.002025142192991 -63.9043179069111034 21.6224087576582988 -13.0309309980729999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481255456472439808 2481255456472439808 472503523 2015.5 24.8304088550958006 2.86800442590417015 -3.65814213371303998 1.93468482453178003 \N \N \N \N \N \N \N 0.071163519999999994 \N \N \N \N \N \N \N \N \N 108 0 107 1 45.2563499999999976 3068.80005 15.3955555913173008 209.482617501595001 3 false 0.00398319699999999995 \N \N -0.0723179800000000039 16 9 6.00869900000000001 0 16 false 140 343.453820610477976 4.02932333207612015 85.2386017 19.3486960000000003 14 487.678877070734984 12.8369175977514001 37.9903400000000033 18.6310539999999989 14 1154.97262609655991 15.5541396561949004 74.2549999999999955 17.1054920000000017 4.78274349999999959 0 1.52556230000000004 -0.717641830000000036 2.24320399999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.988290016129014 -63.8902655282375989 21.6286152390821016 -13.0168801783947004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242395476313216 2481242395476313216 424429235 2015.5 24.8801246062405994 1.3783715156065699 -3.73347817923996006 1.61326374512813997 \N \N \N \N \N \N \N 0.336743349999999997 \N \N \N \N \N \N \N \N \N 113 0 111 2 -0.00149559710000000002 105.313004 0.996889187013322964 0.181236800550511001 3 false 0.0196775809999999995 \N \N 0.0211493189999999998 14 7 4.9158949999999999 0 14 false 116 103.238507794119997 1.46397710171512996 70.5192032 20.6537599999999983 9 67.0589703284620953 11.6445620856678005 5.75882299999999958 20.7852460000000008 10 64.2372237664481958 10.8394074124504005 5.92626700000000017 20.2424530000000011 1.27177539999999989 0 0.542793300000000034 0.131484989999999996 0.411308300000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.162720442585993 -63.9377412965849032 21.6472656542477999 -13.1052364579763996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242842153127808 2481242842153127808 1622896383 2015.5 24.8501902814460003 1.88562098110479992 -3.72435945705491012 0.950662185775627 1.15316560789376998 1.26081333267233009 0.9146204 -0.562753546162619966 4.35841547133694007 -2.46435007105436998 2.69704048658477014 -0.527201200000000036 0.0932663499999999979 0.254943580000000003 -0.104369655000000006 -0.19674860999999999 -0.110335059999999999 -0.137986539999999991 -0.171920299999999998 0.0407599140000000013 -0.390609560000000022 90 0 89 1 -0.983512199999999948 71.2870026 0 0 31 false 0.0236024610000000017 \N \N -0.225239440000000013 11 7 4.01237059999999968 0 11 false 90 99.1613047114732069 1.70705447307901004 58.0890999 20.6975100000000012 7 71.9527276859754039 3.49870643143054005 20.5655229999999989 20.7087700000000012 8 78.456525634863894 11.7425077512365004 6.68141129999999972 20.025347 1.51681400000000011 0 0.683424000000000031 0.0112609860000000006 0.672162999999999955 \N \N 0 \N \N \N NOT_AVAILABLE 151.092310927148986 -63.9420592526883027 21.6222492784030003 -13.0856984754927002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243258765320576 2481243258765320576 1284095233 2015.5 24.8787003750734002 0.0496964907625249974 -3.70865700344445015 0.034807842201924899 0.615335709279893006 0.055491261738445298 11.0888760000000008 -1.08662374023652997 0.114272366718285001 -10.6595910648095007 0.0748532524745987027 0.0128323440000000007 0.199380140000000011 0.184216569999999996 -0.0460689180000000004 -0.201238869999999986 -0.0791808440000000002 -0.128636210000000001 -0.152705480000000005 0.16861965000000001 0.102207770000000003 169 0 169 0 0.297814640000000019 168.772995 0 0 31 true 9.12265200000000043 1.62625003802141999 0.0119258012851571997 -0.0323074500000000014 19 9 0.109543219999999997 0 19 false 169 8461.69935149742014 6.89094776141929977 1227.93994 15.8697210000000002 19 4567.39710691424989 19.5858942167383994 233.198289999999986 16.202217000000001 19 5654.0596727603297 19.6243722983173008 288.114170000000001 15.3810190000000002 1.20796740000000002 0 0.821198459999999963 0.332495700000000005 0.488702770000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.13597399785499 -63.915834286806998 21.655351877748199 -13.0816551235860992 100001 5834.25 5788.33008 6000 0.0280000009 0.00289999996 0.115999997 0.0125000002 0.0013 0.055399999 200111 0.91798690000000005 0.867968700000000037 0.932608699999999957 0.879645800000000033 0.707811999999999997 1.05147970000000002 +1635721458409799680 Gaia DR2 2481242154958359296 2481242154958359296 1561090536 2015.5 24.9170513539304004 1.31837395850431993 -3.74145927666178002 0.982789702086661054 0.176334521598322996 1.47698094779813993 0.11938849 -0.563658653889127947 2.82427844355103019 -1.55488711766862009 2.21934525907670022 0.159863279999999996 0.382409160000000026 0.146937609999999996 -0.172119930000000004 0.154874399999999995 -0.230328289999999991 -0.325540800000000019 -0.215878710000000001 0.0563765729999999993 0.0868962699999999977 116 0 116 0 0.00570356239999999983 110.418999 0 0 31 false 0.0174665409999999986 1.21278037628882007 0.358738414685306983 0.0876325800000000016 14 8 2.51971500000000015 0 14 false 119 103.446077910114994 1.34096686689345002 77.1428986 20.6515799999999992 11 54.4657937269869024 8.40613484004050981 6.47929099999999991 21.0110780000000013 11 78.9460323750819981 5.97494438812767026 13.2128479999999993 20.0185950000000012 1.2896749999999999 0 0.992483140000000041 0.359497069999999974 0.632986069999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.246400888788003 -63.9294084365460975 21.6793727233959004 -13.1263007978720001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242464195791872 2481242464195791872 1560046145 2015.5 24.9153212899699987 0.288473576656801012 -3.72670563583747017 0.199782131148143 2.58192801321263987 0.340367693654092973 7.58570239999999973 20.1827751297558002 0.626606339906519039 8.78067677576814987 0.339399751649061998 0.167781469999999988 0.331403969999999992 0.180462690000000009 0.0780781900000000056 0.123314925000000006 -0.062375835999999997 0.27011773 -0.178741409999999989 0.28829326999999999 -0.0434632559999999987 140 0 138 2 0.78272240000000004 145.470001 0.57178621547618802 0.969180976002815053 31 false 0.314761970000000002 1.37293312264683998 0.0690972505172663953 0.0581903350000000028 16 9 0.555431959999999947 0 16 false 139 647.348042987897998 2.41096333181863987 268.502014 18.6605200000000018 14 168.476060451987991 9.81377752581252949 17.1673000000000009 19.7850420000000007 13 758.906845136431002 10.6154932197513006 71.4904899999999941 17.5614500000000007 1.43258770000000002 0 2.22359280000000004 1.12452130000000006 1.09907149999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.228647850838001 -63.9167691897429009 21.6833376962445996 -13.1119571841619003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242537210815104 2481242537210815104 1061299579 2015.5 24.9098568448140014 0.57522926981853395 -3.71682685097364995 0.368004939742710979 0.981673180036805038 0.616690833975931052 1.59183999999999992 4.45963677392154967 1.34065760347301 -6.37561491040816986 0.665081000280621004 -0.0376405049999999977 0.197745730000000008 0.226311480000000009 -0.02589056 -0.0890299600000000052 -0.0680385800000000013 0.248743820000000004 -0.186912970000000012 0.201582220000000006 -0.0921525599999999945 157 0 155 2 2.89459130000000009 205.106995 1.51573283478967991 1.96797739347485989 31 false 0.0744869040000000066 1.58092002670508003 0.131525024779460986 -0.00458083859999999961 18 9 1.18888769999999999 0 19 false 154 260.911600181475023 1.61191908880683998 161.863998 19.6471330000000002 15 67.7430610801248037 10.3595403357197 6.53919549999999994 20.7742250000000013 16 335.35816062696 8.90967748106674051 37.6397630000000021 18.4481490000000008 1.54497240000000002 0 2.3260765000000001 1.12709239999999999 1.19898410000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.207914322800008 -63.9101206688782995 21.6818942922861986 -13.1007612719823001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242498557968256 2481242498557968256 1227626655 2015.5 24.9268268247598002 2.64926249564308014 -3.71218224262864016 2.38539514239278017 \N \N \N \N \N \N \N 0.541781500000000027 \N \N \N \N \N \N \N \N \N 59 0 58 1 -0.330809770000000003 49.030899 0 6.90140113844438964e-16 3 false 0.0116967219999999997 \N \N 0.199320799999999992 7 5 12.9720340000000007 0 7 false 61 82.6887820151800952 1.74411964710390999 47.4099998 20.8947490000000009 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.238341035318001 -63.8987532507845017 21.6998108948533996 -13.1027192954199005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243529350013184 2481243529350013184 652311431 2015.5 24.8499947726167001 12.7634104859603994 -3.68971548002140981 3.84011764485397 \N \N \N \N \N \N \N 0.667176369999999963 \N \N \N \N \N \N \N \N \N 51 0 51 0 1.3220012000000001 59.0896988 2.63271004712141998 0.735045077647357048 3 false 0.0176514099999999993 \N \N -0.253695339999999991 7 5 773.828859999999963 0 7 false 55 82.5688460448010062 1.62508174086805002 50.8089981 20.8963259999999984 3 24.3176601349370998 11.1104471190010994 2.18872020000000012 21.8865830000000017 6 85.3126817524903061 14.0739512238022009 6.06174329999999983 19.9343849999999989 1.32774459999999994 0 1.9521980000000001 0.990257260000000028 0.961940770000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.058750265105999 -63.9107118748153979 21.6352417919646989 -13.0534483601266995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243563707431552 2481243563707431552 604003671 2015.5 24.8737772117892 0.179913199504163013 -3.68985415292388996 0.118657721907070995 0.399744046179578982 0.197997918360349995 2.0189303999999999 24.7421554418653997 0.456004845277746984 -7.66501523682789987 0.24347427692860299 0.00614874700000000041 0.0773975249999999948 0.112950869999999995 0.00501082800000000016 -0.266219739999999983 0.0481585399999999997 0.0735580099999999931 -0.199489030000000012 0.0589566300000000029 0.0887602339999999934 149 0 145 4 3.05817400000000017 196.822998 0.311518810045726013 0.671689051513852053 31 false 0.766350500000000046 1.6530173445673999 0.0397138255114852998 -0.0284105499999999997 17 9 0.404774870000000009 0 17 false 144 1170.96940319972009 2.78428310265700985 420.563995 18.0170020000000015 14 656.976165069768967 10.8724386904616992 60.4258349999999993 18.3075140000000012 14 791.643687186979946 13.3606319780837008 59.2519649999999984 17.5155959999999986 1.23711159999999998 0 0.791917800000000005 0.290512080000000006 0.501405699999999954 \N \N 0 \N \N \N NOT_AVAILABLE 151.107831410697003 -63.9008514585659029 21.657818376634399 -13.0623701184668004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481255417817442304 2481255417817442304 1614391845 2015.5 24.8626960372561996 0.778497346423583036 -3.66614459955571981 0.431546057713021014 -0.21978010748500601 0.724358221085917964 -0.303413570000000021 6.64967584868992034 1.93361637433063005 -17.3615698907028992 0.831866849981063972 -0.210474280000000014 0.12163243 0.088406079999999998 -0.055947456999999999 -0.177161920000000001 -0.0387798499999999977 0.212187170000000008 -0.153992999999999991 0.105634080000000005 -0.171790720000000008 152 0 152 0 0.850018260000000025 161.350998 0.705659847799752993 0.242156226709266009 31 false 0.051657599999999998 1.18100172413143989 0.146162445772705013 -0.0533974799999999972 18 9 1.70361439999999997 0 18 false 149 172.61252599102599 1.34736612270064993 128.110992 20.0956839999999985 12 46.3167036310352032 10.3121352476415993 4.49147560000000023 21.1870440000000002 14 240.989161402137995 11.2161399992002 21.4859280000000012 18.8069270000000017 1.66445550000000009 0 2.38011740000000005 1.09136009999999994 1.28875730000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.062363717202004 -63.8839963910142004 21.6562908600625015 -13.0362508594581001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243666786855424 2481243666786855424 1571640925 2015.5 24.8752516315229997 51.7905821359007987 -3.6712590503332998 18.4824129097129983 \N \N \N \N \N \N \N -0.994239569999999961 \N \N \N \N \N \N \N \N \N 33 0 33 0 -2.35054680000000005 13.4238997 0 0 3 false 0.0123524169999999992 \N \N -0.338535799999999998 5 4 693.08540000000005 0 5 false 37 70.5311682223098018 2.2401498528441901 31.4850006 21.0674129999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.093074545603002 -63.8833651371447004 21.6662926014486992 -13.0456430755076997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243671082179712 2481243671082179712 34769224 2015.5 24.8796034529300982 0.0402501810053424031 -3.66433747507802998 0.0294664879164002989 0.548157817525830038 0.0467678862391701991 11.7208170000000003 4.90538382385208038 0.106552110538418995 -12.5441775772084991 0.0674327836241969958 0.110958464000000007 0.0240630120000000017 0.139987069999999991 0.0602285940000000034 -0.319726650000000001 0.117763209999999993 0.000647526000000000048 -0.269860659999999974 -0.050211183999999999 0.290253370000000011 149 0 149 0 0.305930729999999984 148.572998 0 0 31 false 17.8656860000000002 1.62965438804429996 0.00983575434757441927 -0.0341744800000000001 17 9 0.106988710000000001 0 17 false 148 15745.4250172705997 7.5886044190059696 2074.87988 15.1954790000000006 16 8467.09842926263082 17.6853121832315985 478.764430000000004 15.5320520000000002 16 10624.8651220929005 14.8344761924877009 716.227840000000015 14.6961119999999994 1.21254039999999996 0 0.835940360000000049 0.336572649999999973 0.499367700000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.095405184089003 -63.8752585854284973 21.6730652178800014 -13.0408225996210003 100001 5790.75 5669.75 5817.66992 0.422500014 0.0170000009 0.702199996 0.224000007 0.0820000023 0.321999997 200111 1.42866990000000005 1.41548049999999992 1.4902998999999999 2.06774849999999999 1.67612610000000006 2.45937099999999997 +1635721458409799680 Gaia DR2 2481243396204273152 2481243396204273152 774026935 2015.5 24.8856720556976008 0.0349735422288120976 -3.6863386777433802 0.0256542337257139007 0.407062221246898004 0.0379051686786295999 10.738963 5.61782275779069984 0.0808064649821187975 -6.18573818617680971 0.0594406931135660968 0.048599705 0.200167630000000013 0.00548750260000000021 -0.056903183000000003 -0.165568629999999994 -0.118170380000000005 -0.341818750000000005 -0.0475876670000000002 0.165813270000000013 0.173239399999999988 159 159 157 2 2.31541599999999992 195.261002 0 0 31 true 358.973700000000008 1.55008521064174998 0.00885465294984844054 -0.0623642900000000028 18 9 0.0535427970000000031 0 18 false 156 301160.525690504001 77.5349950155626004 3884.18994 11.9913699999999999 17 133764.804084847012 387.012220316541004 345.634580000000028 12.5355340000000002 17 237562.889851123997 199.435831133810012 1191.17460000000005 11.3224739999999997 1.23298930000000007 0 1.21306040000000004 0.544163700000000028 0.668896700000000011 32.3908483612782021 0.720495704377585033 10 4750 2 -0.25 NOT_AVAILABLE 151.128933512261 -63.8926627748512033 21.6704738549619016 -13.0635020364797008 100001 4882.3501 4771.49023 5083.08008 0.294 0.0491999984 2.00909996 0.163000003 0.0120000001 1.00969994 200111 12.6148900000000008 11.6382180000000002 13.2078810000000004 81.4661399999999958 70.1947559999999982 92.7375260000000026 +1635721458409799680 Gaia DR2 2481243598069549440 2481243598069549440 132696441 2015.5 24.8897840268429 2.10630779769052978 -3.67680209993736984 1.03690447627107996 \N \N \N \N \N \N \N -0.495019670000000023 \N \N \N \N \N \N \N \N \N 89 0 89 0 0.688873949999999957 92.5360031 0 0 3 false 0.0187479800000000009 \N \N -0.212136569999999997 12 8 5.32213799999999981 0 12 false 90 83.5566797369423 1.33877045621505997 62.4129982 20.8834130000000009 8 32.6938364807981969 8.09325098233350992 4.03964199999999973 21.5652240000000006 11 140.972760630279993 10.8281240173692996 13.0191309999999998 19.3890819999999984 2.07842869999999991 0 2.17614170000000007 0.681810400000000039 1.49433140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.128258183202007 -63.882285079587902 21.6780129620204995 -13.0561638468325008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244044743973888 2481244044743973888 1287203128 2015.5 24.927335397438501 1.13253377257959009 -3.6985864731430298 0.860317580697042006 1.16068983990996011 1.26627089814244997 0.916620499999999949 -1.37550784980929008 2.82082329823583988 -8.82597944496949971 2.10010632012566001 0.139893380000000012 0.215748889999999999 0.0451045600000000019 -0.0795375100000000057 0.0775275599999999954 -0.105497389999999996 -0.286540030000000001 -0.22688702999999999 -0.0334534829999999991 0.170908019999999994 104 0 103 1 0.910905239999999949 110.589996 2.64665515265740003 1.31138458506183997 31 false 0.0227283240000000011 1.59109093037761995 0.319674528275378012 0.073306070000000001 12 8 2.52472019999999997 0 12 false 103 132.059271563820005 1.57645227790115006 83.7698975 20.3864440000000009 6 69.9915135647812008 17.6861761748108002 3.95741370000000003 20.7387750000000004 9 146.800599744256999 15.0278237241239001 9.76858700000000013 19.3450999999999986 1.6416272999999999 0 1.39367489999999994 0.352331159999999977 1.04134370000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.226322853942008 -63.8862180070562005 21.7054646314401012 -13.0902782758110003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244049039302400 2481244049039302400 556307594 2015.5 24.9272484810765 0.660995951395822012 -3.69235188973389983 0.437942000907299012 -0.219152198502112011 0.73022584231001797 -0.300115640000000017 0.186445633522063003 2.00740272667145003 -0.455428551572359008 0.895846503483872958 -0.0837563800000000053 -0.0418543330000000005 0.421133399999999991 -0.152618229999999994 0.116035360000000004 -0.194235500000000005 0.388541430000000021 -0.481931359999999975 0.19821011999999999 -0.255870399999999998 123 0 122 1 1.41226460000000009 139.210999 0 0 31 false 0.0751135400000000064 1.76649742078215 0.145097884771713009 -0.0183710810000000009 14 9 1.8176523 0 14 true 121 238.219985382033002 5.53740082699276037 43.0201988 19.7459200000000017 10 195.217915416863008 5.54129827440011002 35.2296329999999998 19.6250900000000001 11 192.975641630729996 14.3023952109112997 13.49254 19.0481639999999999 1.6295592000000001 0 0.576925299999999974 -0.120830536000000002 0.697755800000000037 \N \N 0 \N \N \N NOT_AVAILABLE 151.220157641788006 -63.8806044355347993 21.7077524054597006 -13.0844548743713993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244044743768192 2481244044743768192 990915342 2015.5 24.9305638349011005 0.276444874658379025 -3.69090915240697992 0.17572054636460499 0.558175472746361034 0.308202445767640998 1.81106760000000011 3.14970311075214981 0.653813735395108009 1.89626467814769994 0.31264004784010202 0.053025990000000002 0.234563140000000003 0.057303395 0.0336639599999999997 0.0543455099999999997 -0.0557962619999999992 0.229743079999999988 -0.135716019999999993 0.239571649999999997 -0.0919479700000000039 139 0 138 1 -0.829490240000000045 119.304001 0 0 31 false 0.357537720000000003 1.39345447390376997 0.0647940020541113992 -0.0046618320000000003 16 9 0.57635970000000003 0 16 false 137 646.791426009345969 2.30258277589708005 280.89801 18.6614550000000001 14 231.285057551389002 7.77877878579116988 29.7328240000000008 19.4410200000000017 15 617.548374808371022 10.2349782922920998 60.3370480000000029 17.7852420000000002 1.31237580000000009 0 1.65577700000000005 0.779563899999999976 0.876213099999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.225582942509988 -63.8778984707724007 21.7114560938779988 -13.0843399478298004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481239268742607872 2481239268742607872 525182484 2015.5 24.9639116473533988 0.997604421572682032 -3.73559453664061003 0.779718141407632959 0.0849989211286768936 1.1524864802480399 0.0737526399999999943 -2.65401145543710992 2.5150479358123401 -6.11175440123226998 1.93590875032151999 0.151371079999999991 0.193756609999999996 0.216388030000000009 -0.122088580000000002 0.0918583699999999947 -0.156284570000000012 -0.219814840000000011 -0.339280199999999976 -0.0161846400000000001 0.164813029999999999 107 0 106 1 0.0677469750000000009 101.295998 0 0 31 false 0.0285678650000000013 1.36706539105644009 0.297319844562327018 0.121918620000000005 13 8 2.27267740000000007 0 13 false 107 135.642614753674991 1.49441658014325007 90.7662964 20.3573759999999986 10 42.7201148404085984 11.4160110774976005 3.74212269999999991 21.2748069999999991 10 166.591871342591986 13.7569104487385996 12.1096869999999992 19.2077850000000012 1.54311369999999992 0 2.06702230000000009 0.917430900000000049 1.14959140000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.337086681148008 -63.904285776334099 21.7262047681706996 -13.1381717749949996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242296692646400 2481242296692646400 39708775 2015.5 24.9359874289332986 0.114254717118644003 -3.71677362186302007 0.082089301721584601 0.861841206403870963 0.133510502639955009 6.45523169999999968 2.10268766125322015 0.260519147155448993 -1.30287531998005002 0.162036437900967001 0.123490069999999993 0.237444039999999995 0.178368880000000007 -0.0178798000000000012 -0.0531429699999999977 -0.062916280000000005 -0.0194959830000000015 -0.189729389999999998 0.177320200000000011 0.0820299200000000062 142 0 142 0 1.41347979999999995 161.011002 0.254410862841423002 1.00646509801256001 31 false 1.78499359999999996 1.4820213539440299 0.029441714164188601 0.044988524000000002 16 9 0.234305299999999994 0 16 false 141 2373.52486603114994 2.71768701012832992 873.362 17.2498819999999995 15 929.641183324506983 10.4118948871676995 89.2864500000000021 17.9305999999999983 15 2094.8635871726301 17.665709784979601 118.583609999999993 16.4590299999999985 1.27426719999999993 0 1.47156909999999996 0.680717470000000047 0.790851599999999988 \N \N 0 \N \N \N NOT_AVAILABLE 151.261582959104004 -63.8990460691794979 21.7067833910805987 -13.1103697469461995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481242498555534720 2481242498555534720 1634656846 2015.5 24.9382713792064017 0.0960628125748675954 -3.71427202846986004 0.0602049671481375975 0.748449464899651029 0.102145292560036002 7.32730250000000005 1.32870901922304996 0.242850032710809988 -3.31587201074657978 0.115785524283770994 0.0708003600000000066 0.112621460000000007 -0.153344039999999987 0.0138989249999999995 -0.0324252319999999983 -0.022653533 0.017302627000000001 -0.0031462262999999999 0.187943699999999991 0.0041893490000000002 134 0 134 0 0.583279699999999957 137.899002 0.0328331419037330013 0.0220737161810449015 31 false 3.22338799999999992 1.61353925811422005 0.0229444466191460993 -0.0513082029999999967 15 8 0.219237660000000001 0 15 false 132 3446.71303604374998 3.84377133518917002 896.700989 16.8448519999999995 14 1618.72959935869994 10.3865574890575996 155.848530000000011 17.3284529999999997 15 2582.75484496876015 15.2141234417112994 169.760349999999988 16.2317120000000017 1.21898290000000009 0 1.09674070000000001 0.483600619999999981 0.613140099999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.263869797680002 -63.8958149500747012 21.7099083758309988 -13.1088901013824 100001 5054 4983.5 5172.47021 0.0125000002 0.00200000009 0.0979999974 0.00700000022 0.00139999995 0.0480999984 200111 0.671838159999999962 0.641415060000000037 0.690981150000000044 0.265316930000000006 0.190873270000000012 0.339760600000000024 +1635721458409799680 Gaia DR2 2481243769869234432 2481243769869234432 498253899 2015.5 24.9467266848689988 0.892148227924240977 -3.71798202699782987 0.507620980266479949 \N \N \N \N \N \N \N -0.0626872400000000052 \N \N \N \N \N \N \N \N \N 90 0 89 1 2.40191650000000001 118.296997 0.74701217077040305 0.348892751655619004 3 false 0.0783109399999999956 \N \N 0.00574693400000000042 10 7 2.84681559999999978 0 10 true 89 280.90538223635798 2.61569466143554008 107.391998 19.5669649999999997 4 75.3641299328098029 9.82373706399281055 7.67163560000000011 20.6584760000000003 4 381.487666403818025 19.0598676286635005 20.015232000000001 18.3082180000000001 1.62635470000000004 0 2.3502578999999999 1.0915108 1.2587470999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.284812061429989 -63.8956035153452007 21.7165450916927014 -13.1154610052603005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243769865852800 2481243769865852800 1669606884 2015.5 24.9470180599392997 0.406448564806518975 -3.71725677793263998 0.259321950266012013 1.44075102159308011 0.457153313916133008 3.15157080000000001 -13.3258083925371 1.01859954004955 -13.4623495901310992 0.462028103736584983 -0.000595820140000000035 0.18234916000000001 0.124957289999999999 -0.0245997529999999985 0.0828451899999999991 -0.146320659999999991 0.313476319999999975 -0.186847970000000002 0.299231980000000009 -0.202531860000000008 131 0 128 3 1.07720729999999998 139.953003 0.782357482132614024 1.02666292141536997 31 false 0.182446259999999999 1.51404359500809993 0.0962166579207670014 -0.0233469120000000009 15 9 0.903213739999999987 0 15 false 129 436.254789720196015 2.10756161070926984 206.994995 19.0890160000000009 14 116.311513579457994 8.0260090894515006 14.4918239999999994 20.1873320000000014 13 521.95410013012895 7.24768823842708976 72.0166300000000064 17.9678380000000004 1.46305689999999999 0 2.2194938999999998 1.09831619999999996 1.12117770000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.284712557728 -63.8948233796159002 21.7170981850809994 -13.1148949953870009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240677489393792 2481240677489393792 282137257 2015.5 24.9808562256596005 0.315207801713214997 -3.73605447551646019 0.212039712042269013 1.45940700983654992 0.361114554771060026 4.04139599999999977 -5.6908666026851904 0.863392096434933976 -14.0600592223006 0.376063539792905022 -0.0755498200000000036 0.0130705809999999995 0.418278460000000019 -0.138147529999999991 0.0851452500000000057 -0.207325430000000005 0.490549950000000012 -0.413011499999999976 0.325118100000000021 -0.314337429999999973 143 0 143 0 0.449421139999999997 144.912003 0 0 31 false 0.305820020000000026 1.30592085648837997 0.0703951755235820986 0.033409587999999997 16 9 0.788685599999999987 0 16 false 143 583.697501712543044 2.15301818743319995 271.106995 18.7728959999999994 15 134.528880273887012 7.39788108501888964 18.184785999999999 20.0293500000000009 16 683.430006236984013 7.52554650812365011 90.8146700000000067 17.6751840000000016 1.40134040000000004 0 2.3541660000000002 1.25645450000000003 1.09771160000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.372330505408996 -63.8975243011867988 21.7421589451276986 -13.1448600377137996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240814928351232 2481240814928351232 704787459 2015.5 25.0022622383679014 0.370901357839639012 -3.72558516291733 0.234953388518448991 0.100662349706456003 0.405585519055350008 0.2481902 0.609306407781700976 1.02622662385075003 -17.2188841762604987 0.413603585180953026 -0.0921293900000000054 0.0475857299999999997 0.310616280000000022 -0.104513239999999993 0.0214865969999999996 -0.159616540000000001 0.480992199999999981 -0.33920539999999999 0.270259470000000002 -0.296707029999999983 133 0 133 0 1.44845069999999998 151.854004 0.663669783846811967 0.979229251219754016 31 false 0.247592179999999995 1.40635210934907007 0.0788980817492608011 -0.0205712340000000007 15 9 0.923047240000000047 0 15 false 131 552.806392951236944 2.53328031542816001 218.218002 18.8319340000000004 14 173.997928095308993 8.91655824979464917 19.5140230000000017 19.7500290000000014 13 579.346510485465046 8.36409520549752017 69.2658899999999988 17.8545739999999995 1.36276360000000007 0 1.89545439999999998 0.918094639999999962 0.977359800000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.406153740797009 -63.8789695435370035 21.7665158740977986 -13.1430430903171995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243838585333248 2481243838585333248 629344727 2015.5 24.9882409064628987 0.124967133975529998 -3.7079790855873398 0.0769335121005943062 0.514785032077005988 0.134825052639329007 3.81817049999999991 17.1185142775914017 0.311004332098651026 3.01019350921326012 0.139770301704486011 -0.10625598 0.160346640000000012 0.338237879999999991 -0.105147560000000001 -0.12840879999999999 -0.126022059999999991 0.344400969999999973 -0.26500760000000001 0.185853540000000012 -0.184010179999999995 124 0 124 0 0.975618839999999987 133.972 0.201338132445111007 0.767597628052087977 31 true 2.54653669999999988 1.60870464613856989 0.026673769494252899 -0.0556241940000000018 14 9 0.283418500000000018 0 14 false 123 3157.36279657842988 4.0407042154577697 781.388977 16.9400539999999999 12 1501.29767709094995 34.2645133586702997 43.81494 17.4102209999999999 11 2413.37065007671981 16.8619077989793986 143.125599999999991 16.3053600000000003 1.23985389999999995 0 1.10486029999999991 0.470167159999999973 0.634693150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.360401767316006 -63.8689768372277982 21.7598619705762992 -13.1215080824640005 100001 5009.7998 4910.33008 5081 0.376300007 0.2456 0.542900026 0.170300007 0.107199997 0.269400001 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244182182724480 2481244182182724480 1214482157 2015.5 24.9491090049835016 0.146759166624368997 -3.68243799971157015 0.098654105197976405 0.574804220225794027 0.164825629332771006 3.48734739999999999 -2.35789166312755016 0.403290534514849974 -0.198185486659676002 0.193606954815592008 -0.0533837699999999971 0.0555225999999999983 0.233910439999999997 -0.148122670000000012 0.110057004 -0.242703140000000012 0.252779960000000026 -0.286507579999999984 0.327316099999999999 -0.277264300000000019 134 0 133 1 1.80000749999999998 158.244995 0.157634845373857996 0.260303452995617024 31 false 1.30353980000000003 1.55256789738550993 0.0349800764516398979 -0.0309331699999999994 15 9 0.365967270000000011 0 15 false 133 1730.28214235106998 3.14652914002077999 549.901978 17.5930730000000004 12 741.772108249066036 12.5613615383227994 59.0518879999999982 18.1757129999999982 13 1443.45877942067 14.6139032273181009 98.772980000000004 16.8634090000000008 1.26293330000000004 0 1.31230350000000007 0.582639699999999983 0.729663850000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.255526880370013 -63.8623952088412992 21.7323259282854018 -13.0833240040644991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244182182727424 2481244182182727424 843381662 2015.5 24.9525473605573005 0.193394230865047007 -3.67365840903734986 0.12893652971153699 0.528003706436612985 0.217182143623011997 2.43115620000000021 4.60974039619382037 0.545328813145829039 -2.95364162224359994 0.248724039688754006 -0.0830295300000000042 0.0378620659999999998 0.241606149999999992 -0.155769810000000009 0.149799149999999992 -0.267765279999999994 0.323973540000000004 -0.308409570000000022 0.350006969999999973 -0.330074970000000023 133 0 133 0 -0.167106270000000001 124.689003 0 0 31 false 0.770942899999999987 1.50845678382974002 0.0460233277544334976 -0.0323506600000000033 15 9 0.494257700000000022 0 15 false 133 1113.70773547884005 2.44494463734893985 455.514008 18.0714380000000006 13 426.052795754472982 6.65639825717766964 64.0065100000000058 18.7777290000000008 12 974.034685900567979 13.2586702834815 73.4639800000000065 17.2904829999999983 1.25714090000000001 0 1.48724560000000006 0.706291200000000008 0.780954359999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.254151918897008 -63.8529884111309016 21.7389355392589003 -13.0764388490414003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244113465713920 2481244113465713920 894789516 2015.5 24.9614147344419983 2.53022827899716019 -3.67894945201105994 2.68792060169091984 \N \N \N \N \N \N \N 0.617973450000000035 \N \N \N \N \N \N \N \N \N 75 0 75 0 -0.142733699999999991 67.6707993 0 0 3 false 0.0117807220000000004 \N \N 0.089650240000000006 10 7 8.09328000000000003 0 10 false 82 87.8101945280807001 1.6245897823959099 54.0507011 20.829504 7 17.662961705290801 4.1921522529651698 4.21333999999999964 22.2337279999999993 7 147.993744710285995 10.4229071290414996 14.1988939999999992 19.3363109999999985 1.88653160000000009 0 2.89741699999999991 1.40422439999999993 1.49319270000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.277427684725012 -63.8540365791548012 21.7453636375623987 -13.0846301984117996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245045471713408 2481245045471713408 1243231136 2015.5 24.9455799513571996 4.03383555052704956 -3.64802298574146011 2.65125099737434988 \N \N \N \N \N \N \N 0.0432585480000000008 \N \N \N \N \N \N \N \N \N 75 0 75 0 63.9489439999999973 6813.25 18.0342393064555999 433.410102763754026 3 false 0.00295864799999999992 \N \N -0.0417948500000000014 15 9 8.55612299999999948 0 15 false 130 374.44295852990598 5.19042410278407029 72.141098 19.2549020000000013 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.215269876540987 -63.8326974489703005 21.7420482521416005 -13.0500508249284 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244216545482880 2481244216545482880 1589933975 2015.5 24.9660233569697994 1.09102191988471997 -3.66542608161170014 0.820001048038668023 2.18308443420965981 1.13883769935397994 1.91694079999999989 1.77914129339091009 2.60579972575933017 1.10239741203136998 1.77949107358481995 0.130320700000000012 0.20456495999999999 -0.255093750000000008 -0.0218249819999999997 0.193364010000000003 -0.0071045765999999998 -0.414546880000000006 0.00693078670000000022 -0.0383554700000000026 0.0945491049999999944 103 0 103 0 2.0554724000000002 128.882996 2.34221333731909009 1.29867348594021004 31 false 0.0276337489999999991 1.77418927629989009 0.302121606608104998 -0.0123973989999999999 12 7 2.31241850000000015 0 12 false 102 145.014825199354988 1.48034550584384994 97.9600983 20.284834 9 52.0281934295528998 13.6754260900142999 3.8045024999999999 21.0607909999999983 9 198.08370818841999 8.90993426055547921 22.2317810000000016 19.0197980000000015 1.72473340000000008 0 2.04099269999999988 0.775957099999999955 1.26503560000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.27389019268 -63.8398378944865001 21.754889733543699 -13.0737704329739 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244216542470912 2481244216542470912 1059843769 2015.5 24.9597168425808995 0.0791421902205696054 -3.65948652709165012 0.0524344791069802987 0.79836728610025598 0.0856631409785568038 9.31984600000000007 2.78036174683259008 0.205723858304507012 -10.8834710281523996 0.101174541125829007 0.127815810000000002 0.0442558399999999977 -0.125776159999999998 0.0752032799999999974 -0.137809989999999993 0.106313445000000006 0.096238649999999995 -0.0681487550000000053 0.0595657679999999981 0.131652500000000006 124 0 124 0 0.752887850000000025 130.287994 0 0 31 true 5.2273493000000002 1.53872471289290003 0.0188191683583739007 -0.0171017179999999984 14 8 0.188093480000000007 0 14 false 122 5088.88170926198018 5.67997090349995037 895.934021 16.4218100000000007 10 2168.04293249195007 7.27395627086947005 298.055540000000008 17.0112190000000005 10 4209.35771380682036 18.5141026682969994 227.359530000000007 15.7013809999999996 1.25320279999999995 0 1.30983830000000001 0.589408900000000013 0.720429399999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.255255688093001 -63.837120305536402 21.7511451306342991 -13.0659229389715001 100001 4988.60986 4633.97998 5048.66992 0.766499996 0.594900012 1.03999996 0.352299988 0.258899987 0.478799999 200111 0.790899160000000045 0.772195760000000009 0.916582499999999967 0.349024800000000024 0.271224440000000011 0.426825169999999976 +1635721458409799680 Gaia DR2 2481245350414318208 2481245350414318208 358812796 2015.5 24.9663515587703984 0.610700949505509016 -3.65169697684049011 0.388852571093459998 0.836260267719938 0.648269140356714013 1.28998940000000006 -10.9523763162715007 1.4698776072628299 -14.7575017765561007 0.712763636443945026 0.0897347700000000054 0.169363139999999995 -0.140216950000000007 0.126364900000000002 0.00728562200000000028 0.144605260000000013 0.129370929999999995 -0.0593325999999999992 0.0726746699999999968 0.0611614139999999973 119 0 118 1 1.12961040000000001 130.113007 0.835839920879093978 0.461301161269008997 31 false 0.0834041699999999997 1.31950071199506991 0.138843566709374006 0.0129059369999999993 14 9 1.29388379999999992 0 14 false 121 252.810370295283008 1.63849528795648003 154.294006 19.6813800000000008 9 57.6285797338808976 11.7366509965463006 4.91013799999999989 20.9497929999999997 11 343.100783216593015 11.3612659310448993 30.1991699999999987 18.4233669999999989 1.58509860000000002 0 2.52642629999999979 1.26841350000000008 1.25801279999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.261384953306987 -63.8272607260301967 21.760419625494599 -13.0611379694390006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245354709369088 2481245354709369088 1142698062 2015.5 24.9664788124378987 0.0286774083321542014 -3.64885315431742985 0.0219353859786469985 1.54845119820282995 0.0321435513050103011 48.1729970000000023 1.6447987933666901 0.0648691601172417948 -10.328472295588 0.0473048401107337008 0.170508340000000008 0.261388750000000003 -0.00251717260000000002 -0.0797476899999999961 -0.0185715759999999994 -0.13501363999999999 -0.31878430000000002 -0.0758863199999999932 0.157876480000000013 0.174500760000000005 133 0 132 1 -4.43847400000000025 68.1417999 0 0 31 true 52.8254400000000004 1.59297298724583003 0.00735906220025996961 0.0097495559999999995 15 9 0.0690980550000000054 0 15 false 133 43772.242381041302 15.4461150751962997 2833.87012 14.085369 15 22559.8931435915001 33.7952947670833979 667.545399999999972 14.468045 14 30623.3171026181008 64.7293588200139993 473.097800000000007 13.5467890000000004 1.21499850000000009 0 0.921256069999999982 0.382676120000000008 0.538579939999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.258917533448994 -63.8246303480204986 21.7616214150406009 -13.0585431852965002 100001 5440 5389 5506 0.0847999975 0.0452999994 0.169400007 0.0443000011 0.0253999997 0.0724000037 200111 0.969712299999999972 0.946603949999999972 0.988153339999999991 0.741952599999999962 0.705185229999999996 0.778719959999999989 +1635721458409799680 Gaia DR2 2481244594499596416 2481244594499596416 845647856 2015.5 24.9722595295754992 0.36385084242634802 -3.65253618001124014 0.239869009483049012 1.0715272823425499 0.406330160238820015 2.63708520000000002 -12.6064795087057 1.05488506509093005 -15.2159370088267991 0.449210636085074999 -0.122704519999999997 0.0241079629999999996 0.230473320000000009 -0.154966610000000005 0.208461730000000012 -0.296109699999999976 0.420703800000000017 -0.324466169999999998 0.383406970000000014 -0.397664960000000012 133 0 133 0 1.79711270000000001 158.192001 0.593012490610410947 0.671908155324400957 31 false 0.228002399999999994 1.18653489503959997 0.0826840784269242957 -0.0324430539999999989 15 9 0.954242999999999952 0 16 false 133 507.920165899335018 1.94086999707562002 261.696991 18.9238779999999984 13 108.985913575512001 10.6475526490305992 10.2357709999999997 20.2579630000000002 12 633.737094038128021 9.88416559211129986 64.1163999999999987 17.7571469999999998 1.462283 0 2.50081629999999988 1.33408550000000004 1.1667308999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.274300512086 -63.825525372623801 21.7657233424259999 -13.0641001112630004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243941667576064 2481243941667576064 1199142948 2015.5 24.9814956467386011 1.39570534777093003 -3.69240425371706982 1.01602903142799006 -2.7579743101757801 1.49978119506601004 -1.8389177000000001 7.16287482109833018 3.98178038566181014 -1.68016681926823996 2.73357890536553993 -0.0499641399999999972 -0.027523882999999999 0.174874499999999988 -0.0949811700000000037 0.136548699999999995 -0.110164360000000003 -0.206363750000000012 -0.327993599999999996 0.0200447800000000016 -0.111672380000000002 85 0 85 0 0.787933600000000012 89.6650009 0 0 31 false 0.0185992399999999995 1.56768691346123989 0.386335208952984011 0.0170754159999999995 10 8 3.53609680000000015 0 10 false 84 105.476980139966003 1.72260331769276998 61.2310982 20.630472000000001 7 44.1374879682052992 4.2909850400166496 10.2860969999999998 21.2393679999999989 7 98.6571892445974044 16.7552288262333988 5.88814349999999997 19.7765979999999999 1.35379950000000004 0 1.46277049999999997 0.608896259999999967 0.853874200000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.331561332516003 -63.8577306120906982 21.759361883180901 -13.1045479171749992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243945959623808 2481243945959623808 1616324140 2015.5 24.9809333247015992 0.490826429321115976 -3.68489794836846984 0.388018758857307022 \N \N \N \N \N \N \N 0.20500699 \N \N \N \N \N \N \N \N \N 115 0 103 12 17.299982 592.302002 1.93267458510914003 47.016132038083299 3 false 0.229885370000000006 \N \N -0.0783082539999999938 12 7 1.24254160000000002 0 13 false 101 2175.09008505498014 20.3209522000100016 107.037003 17.3446730000000002 11 1085.31337979042996 11.1690979467204006 97.1710900000000066 17.7624999999999993 10 2598.20866613784983 13.2371939015825006 196.280930000000012 16.2252350000000014 1.69350329999999993 0 1.5372657999999999 0.417827600000000021 1.11943820000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.32318345816401 -63.8511708399974012 21.7616797499361994 -13.0973671762186008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481243941664555648 2481243941664555648 1383768112 2015.5 24.9793936077252994 0.181824667491027991 -3.68357616866477988 0.115159707026235 2.49062690076751014 0.208199623930678007 11.9626870000000007 63.0532138526741974 0.392863911826933976 -10.5258814896971007 0.188521700926393004 0.0336909369999999972 0.272816630000000004 0.0616894769999999995 0.157653060000000012 -0.297489259999999978 0.251300929999999978 0.332570970000000021 -0.193197000000000008 -0.000360532020000000025 0.172917130000000002 124 0 123 1 2.03237269999999981 151.268005 0.342842704948062016 1.11386432187300999 31 false 1.13387130000000003 1.34355863868065994 0.037391814746686701 -0.0681407099999999932 14 9 0.351189230000000019 0 14 false 123 1714.16970594587997 3.70730764628516996 462.376007 17.603231000000001 11 414.33772069977698 10.3395835560424008 40.0729600000000019 18.8080019999999983 12 2015.0231629827299 10.3456250434643007 194.770549999999986 16.50122 1.41722309999999996 0 2.30678179999999999 1.20477100000000004 1.1020106999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.31875415474201 -63.8506253021378996 21.7607166460612014 -13.0955704857219004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244525780110976 2481244525780110976 980313612 2015.5 24.9836035164167001 0.83109006336104696 -3.67331630564365996 0.564798295634176051 0.961525473416024012 0.904539546610404033 1.06299999999999994 -12.8462462064858993 2.19238292869769991 -19.5527709704169013 0.880068523394630042 0.184166240000000009 0.00624532669999999963 -0.081295714000000005 0.240502159999999993 -0.215624420000000011 0.334663329999999981 0.47885177000000001 -0.148411829999999995 -0.0371859199999999973 0.17721458000000001 133 0 131 2 2.45405819999999997 168.300003 2.09494621936438996 2.25009120893080983 31 false 0.0480918440000000016 1.45833069341365995 0.172322373519768007 -0.0246709360000000009 15 8 1.94068229999999997 0 15 false 131 211.009292761560005 1.64922737331170999 127.944 19.8776110000000017 12 68.5508858615895065 18.8984246552148996 3.62733339999999993 20.7613559999999993 13 259.155870359451001 10.6695941668425007 24.2891960000000005 18.7280179999999987 1.55304419999999999 0 2.03333850000000016 0.883745200000000009 1.1495934000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.317517541925014 -63.8395519992484992 21.7686229467850012 -13.0875947291094992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244353981418368 2481244353981418368 774452640 2015.5 25.0017763981035017 0.760480189699765052 -3.67388952854230011 0.513807813659897028 0.0685649489553823988 0.842494973540399039 0.0813832099999999975 -1.7458457643315799 1.8330274183192099 -2.54141956121224988 0.960972872330977945 0.124517344000000002 0.145254899999999992 -0.0341121799999999989 0.101343240000000001 -0.0704377699999999968 0.126054050000000001 0.126462710000000006 -0.124474630000000003 0.0533543679999999992 0.131326649999999989 116 0 115 1 0.231878680000000004 112.795998 0.759940234663576963 0.320806837177325999 31 false 0.0500734450000000011 1.57754216461568997 0.213961718892857006 0.0649225900000000022 13 9 1.61450910000000003 0 13 false 115 180.816680114240995 1.57048511421816994 115.134003 20.0452690000000011 9 90.6950416671366071 5.93746370037332039 15.2750470000000007 20.4574299999999987 11 135.977324219954994 9.58841698269954001 14.1814160000000005 19.4282530000000015 1.25360319999999992 0 1.02917670000000006 0.412160870000000013 0.617015839999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.355313565095003 -63.8323773878296024 21.785702054291999 -13.0948401024889005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244319621949312 2481244319621949312 636334735 2015.5 24.9932017295787006 0.995922121624501999 -3.67080308158962021 0.68643897257126596 0.175968381004226987 1.14876145497277005 0.153180960000000005 1.76607414550564989 2.26875448786497991 -7.41053070677990977 1.17610704478502992 0.208947209999999994 0.23640681999999999 0.0129000460000000001 0.158307900000000001 0.0155956329999999994 0.161316569999999992 0.237071539999999997 -0.135421449999999999 0.0892415339999999974 0.149506899999999998 106 0 106 0 1.22240569999999993 118.644997 0 0 31 false 0.0330930399999999972 1.18166982228404005 0.281573204532595989 0.125002880000000011 12 8 2.00233999999999979 0 12 false 106 129.129451782091991 1.7553731928935099 73.5624008 20.4108030000000014 7 24.2156074037883009 5.32751256653299965 4.5453872999999998 21.8911499999999997 10 169.562315257172003 13.5945692737724002 12.4727979999999992 19.1885970000000015 1.50064850000000005 0 2.70255279999999987 1.4803466999999999 1.22220609999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.334773206878992 -63.8332138099166002 21.7787134976334009 -13.0888055846107996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244594502071424 2481244594502071424 308778312 2015.5 24.9819684984401995 1.5860724559371 -3.65882607665096016 1.20090552208761991 0.47951908327107301 1.66869973626443002 0.287360899999999975 3.74758051366627987 3.74447847102416009 -2.14117187282271004 2.85800504531160993 0.0205542299999999997 0.141739580000000004 -0.176208150000000008 0.0606906450000000014 0.095408074999999995 0.037873722999999998 -0.416856170000000026 -0.0596320219999999998 -0.0933860400000000035 0.132161400000000012 93 0 93 0 1.13751699999999989 103.226997 2.85627580692671978 0.888896530084618997 31 false 0.0137556980000000002 0.475426790162421009 0.429071098707650977 0.0240197239999999992 11 8 3.33079619999999998 0 11 false 95 89.5078838430609949 1.5690192006766599 57.0470009 20.8087119999999999 4 27.9194139918484012 14.0831155993606991 1.98247419999999996 21.7366220000000006 9 127.164823859918002 8.44710589282412982 15.0542479999999994 19.5010030000000008 1.73263220000000007 0 2.23561860000000001 0.927909850000000036 1.30770870000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.300238958503002 -63.8271193333561015 21.7725734363887007 -13.0735298047156991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244457060639616 2481244457060639616 525294966 2015.5 25.0107409095577999 0.508880691754053038 -3.65800095428153016 0.356907294095510974 0.263986549748216004 0.561684875888943003 0.469990499999999978 4.66034330404330976 1.15003225746179005 -3.84395847693954007 0.58098893334942403 0.131407099999999999 0.229425600000000007 -0.268336000000000019 0.191712949999999993 -0.0885219899999999948 0.173473060000000012 0.361299250000000016 0.103507500000000002 0.102201990000000006 0.108206730000000001 151 0 150 1 2.49617339999999999 190.994995 1.21192939241908992 1.45608814804236997 31 false 0.0974225600000000053 1.4957911936311501 0.115167516481674004 0.0536584630000000035 17 10 1.0238875999999999 0 17 false 148 291.150192198679008 1.73872804967439998 167.449997 19.5280720000000017 14 120.086160778736001 7.58764549867292004 15.8265379999999993 20.1526570000000014 13 234.921615996028009 13.3913846007479993 17.542743999999999 18.8346119999999999 1.2193286000000001 0 1.31804469999999996 0.624584200000000034 0.693460459999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.358385661129006 -63.8141937667611998 21.8002719439692996 -13.0833908091110995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240578705345536 2481240578705345536 1186880137 2015.5 25.0338681982009987 4.23085755170010991 -3.73630199154038012 3.80661993703147994 \N \N \N \N \N \N \N 0.536081249999999954 \N \N \N \N \N \N \N \N \N 42 0 42 0 0.66697010000000001 42.3059998 3.56422195542889009 0.460429867631809986 3 false 0.0083723689999999993 \N \N 0.0661512540000000065 5 5 30.5169330000000016 0 5 false 45 79.4636580153504042 2.50697494843069002 31.6970005 20.9379440000000017 3 78.5178382430210036 13.5132535118577 5.8104319999999996 20.6139679999999998 4 58.470185940866898 12.8187963680103998 4.56128499999999981 20.3445840000000011 1.7239078000000001 0 0.269384379999999979 -0.32397651999999999 0.593360899999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.481331303366005 -63.8752396070139028 21.7925300010914 -13.1646733552978006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240196455634048 2481240196455634048 793169301 2015.5 25.0566220361566998 1.24910549590849995 -3.73642103394919989 0.855636914301272977 1.53023602927244995 1.33398747893987002 1.14711429999999992 -7.64158209131605037 2.86768993581268994 -23.0940516666337992 1.52594015064801991 0.202434639999999999 0.287669449999999993 0.033225275999999998 0.204778900000000014 0.0368989860000000017 0.254671499999999995 0.296367800000000015 -0.180020659999999999 -0.0175255090000000016 0.200712890000000005 114 0 113 1 2.61557899999999988 150.350006 3.17036462014443021 2.30364323760825007 31 false 0.0208915799999999999 0.746160096471375045 0.335244284855364005 0.0337192340000000007 13 9 2.5498820000000002 0 14 false 113 129.503206764428995 1.62502518530431006 79.6930008 20.4076650000000015 9 29.9430156989621992 10.0465200459056003 2.98043659999999999 21.6606500000000004 11 170.021331189098987 12.1823685792166998 13.9563450000000007 19.1856609999999996 1.54408799999999991 0 2.47498899999999988 1.25298500000000002 1.22200390000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.528076970441987 -63.8656619029960027 21.8141475543386001 -13.1731874301807004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240230815382144 2481240230815382144 1015567419 2015.5 25.0657479087227983 1.62529835250114996 -3.72060055162480019 1.29518967618320002 2.98479711341876008 1.83035426986548999 1.63072100000000009 -1.25221303040041998 3.64603265282375011 -9.91369070068182978 3.03450951774328992 0.238772619999999991 0.323551570000000011 -0.0540934100000000015 0.0119415470000000003 -0.0109117190000000003 -0.019091124000000001 -0.335084050000000022 -0.128876500000000005 -0.0820789900000000044 0.432508469999999978 87 0 86 1 0.972728999999999955 93.2879028 3.26168769157942995 1.71718150133133007 31 false 0.0141191900000000002 1.53426214259114002 0.398340062609781997 0.0672546849999999946 10 8 3.56390979999999979 0 10 false 88 100.919197379484999 1.65180299035076006 61.0964012 20.6784299999999988 3 23.5345785289975993 2.63705662410441999 8.92456299999999914 21.9221229999999991 8 132.916257776468001 10.0151019794659 13.2715829999999997 19.4529740000000011 1.55025839999999993 0 2.46914860000000003 1.24369240000000003 1.2254562 \N \N 0 \N \N \N NOT_AVAILABLE 151.531438600841 -63.8474678633896033 21.8288486399831996 -13.1618600211246992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481241158525742848 2481241158525742848 819328848 2015.5 25.0663452624119998 0.67933582162247097 -3.69885592575630007 0.439526313974301974 -0.130533000791692 0.719316893705487015 -0.181468010000000013 1.91134037495192 1.72250592141585002 -2.1308590246478798 0.785523717766082985 0.0592380350000000014 0.109857485000000005 -0.0325054529999999967 0.146202240000000011 -0.0505014999999999978 0.187264280000000005 0.289108699999999996 -0.175449460000000002 0.036751884999999998 0.028792214 133 0 132 1 1.31635429999999998 148.414993 0 0 31 false 0.0616104680000000016 1.70360080640288003 0.156975487689226006 -0.0501610820000000027 15 9 1.51491859999999989 0 15 false 132 198.771413571108013 1.48530364286760008 133.824997 19.9424799999999998 13 94.6073847156905003 10.8517454877737993 8.71817199999999914 20.4115749999999991 12 130.97240968726399 8.11435441561908988 16.1408300000000011 19.4689709999999998 1.13487040000000006 0 0.942604059999999966 0.469095229999999974 0.473508829999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.511613752925996 -63.8275486119229001 21.8376800187911009 -13.1418793142135009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240162093321472 2481240162093321472 196630759 2015.5 25.0809084200544987 0.402402011783415003 -3.72674251234785991 0.274152204771613006 0.471707537782882991 0.442521808958138974 1.0659533000000001 0.542435476793905025 1.05021191500010991 -5.18279453754140018 0.494627968522649009 0.0963996700000000067 0.0863484739999999945 0.128940980000000011 0.116697599999999999 -0.101658219999999994 0.157370540000000003 0.347029980000000016 -0.275807469999999999 0.0308936700000000015 0.0483147839999999995 134 0 133 1 3.43343070000000017 190.298996 1.27688809691682992 2.9007424406395601 31 false 0.16744748000000001 1.43461894592389005 0.0944614885039787022 -0.0358638729999999975 15 9 0.928752899999999992 0 15 false 132 470.023168754016979 1.77062396485957008 265.455994 19.0080680000000015 14 213.153379121954003 7.94856775783177039 26.8165779999999998 19.5296570000000003 15 369.208392035478994 8.49826266238373051 43.4451600000000013 18.3437400000000004 1.2390064999999999 0 1.18591690000000005 0.521589300000000033 0.664327600000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.568424862526001 -63.8465586692443026 21.8409488520421 -13.1731639163177991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240333892016768 2481240333892016768 1316162218 2015.5 25.0886747569737985 0.842900095889810963 -3.7160862104599599 0.490601192967132005 0.769480666419040005 0.795652261298875008 0.967106759999999954 2.53745397476083001 2.29167391039164015 0.54615636865106798 0.867797761704024007 -0.0687585200000000035 0.00967001999999999966 -0.266887339999999973 0.203297850000000002 -0.0192092700000000005 0.284206149999999991 0.269518819999999992 -0.0860227699999999984 -0.0142855280000000005 -0.0658123500000000056 116 0 116 0 2.49215000000000009 151.604004 1.31539722929622993 0.847503846416884032 31 false 0.0567698499999999967 1.39071925542714991 0.169959291869769991 -0.134189740000000002 13 8 2.02900400000000003 0 13 false 116 198.224483943248003 1.97378883862197996 100.428001 19.9454729999999998 12 173.555072600788009 8.89462303744596916 19.512357999999999 19.7527940000000015 12 138.047247128394986 8.77182732221996986 15.7375699999999998 19.4118500000000012 1.57196690000000006 0 0.340944299999999978 -0.192678450000000001 0.533622739999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.573984192951997 -63.8336121897385027 21.852392539961599 -13.1661312391094008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481241261607503360 2481241261607503360 774395936 2015.5 25.0385720780592997 2.21932645841343001 -3.69321056229573008 2.13124156054793978 \N \N \N \N \N \N \N -0.152825180000000005 \N \N \N \N \N \N \N \N \N 60 0 60 0 1.85952589999999995 76.0683975 2.96625100108416007 0.41345552109310002 3 false 0.0104499290000000002 \N \N 0.0831088199999999999 7 6 8.80196800000000046 0 7 false 61 75.502730988145899 1.54503380170051008 48.868 20.9934599999999989 4 35.9370652306037002 9.27899598225996058 3.8729477000000001 21.4625319999999995 5 131.789159113307988 8.50081805523693923 15.5031149999999993 19.4622209999999995 2.22145919999999997 0 2.00031099999999995 0.469072339999999977 1.53123860000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.449308186551008 -63.8342544073661031 21.8133853380549994 -13.1263790197935997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481241433403656320 2481241433403656320 97960982 2015.5 25.0443596613250996 0.145872691615573008 -3.67930253857447997 0.103957783984422 1.72053556361047 0.165391380710148 10.4028130000000001 -16.9487375059399987 0.368522969866820982 -1.45365568968646008 0.175332782849631996 0.160037530000000011 0.0935042100000000043 0.120796070000000005 0.111271140000000004 -0.0405218999999999996 0.0909779299999999985 0.367402169999999972 -0.206792580000000004 0.167144629999999988 0.00764973039999999969 124 0 124 0 0.846894559999999963 131.834 0 0 31 false 1.38685740000000002 1.39441788878716011 0.0370221752453374006 0.0053443433999999998 14 9 0.32804736000000001 0 14 false 122 1648.13984506457996 2.84093524690889998 580.140015 17.6458799999999982 13 485.263184971918974 11.4404034875236 42.4166150000000002 18.6364440000000009 14 1683.08958603353994 15.1050442217640004 111.425669999999997 16.6966509999999992 1.31563640000000004 0 1.93979260000000009 0.990564349999999982 0.949228300000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.447730906538993 -63.8192109117183008 21.8241793834362987 -13.1155955364791001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244426996423424 2481244426996423424 508300804 2015.5 25.0365225036197998 0.706460316307791047 -3.66402439456056994 0.562556459468519954 -0.766379339149127037 0.87821925475394802 -0.872651500000000024 7.15006838226114994 1.64911984710387993 7.18427412249191022 0.893741343964937984 0.164877240000000008 0.168904870000000012 -0.0250974839999999998 0.126171019999999995 -0.23964508000000001 0.0569608320000000029 0.382911859999999993 -0.0184845590000000011 0.134046730000000003 0.0816298000000000024 144 0 140 4 44.6031649999999971 2988.97998 4.31766273718579985 92.6744920081314945 31 false 0.0458513870000000004 1.49463125379921991 0.161001191226101986 0.0530793849999999998 16 10 1.44726529999999998 0 19 false 147 753.791561566241967 12.3724804901204006 60.9249001 18.4952369999999995 15 262.993270427728987 12.1061686061929006 21.7239059999999995 19.3015270000000001 13 995.016047405327981 5.19477150560931999 191.541820000000001 17.2673449999999988 1.66890870000000002 0 2.03418160000000015 0.806289699999999998 1.22789189999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.416959300895002 -63.8087133655977965 21.8225236831052989 -13.0985078078388 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244422700902912 2481244422700902912 378770501 2015.5 25.0387740288525009 1.12890988524482005 -3.65421306666979984 0.866335389599807049 1.25028946121744 1.29539293275414003 0.965181650000000002 -2.9505532185595702 2.64904312724776991 0.387468103349264015 1.5141537785049699 0.145263219999999998 0.219409999999999994 -0.0780740999999999935 0.128257349999999992 -0.129059000000000007 0.106037530000000005 0.342444540000000019 -0.0494441200000000011 0.0781204699999999974 0.0948642299999999938 134 0 133 1 14.2867149999999992 517.96698 6.23753442777606981 23.0779745956117992 31 false 0.0184958690000000016 1.93200702104471 0.280602264726531991 0.0447308760000000027 15 10 2.32992050000000006 0 15 false 135 225.748035423604989 2.29947289479942008 98.1737976 19.8043060000000004 14 201.069160204778001 13.8687515656948008 14.4979999999999993 19.5930250000000008 12 438.447106391620991 12.6841241402450997 34.5666050000000027 18.1571269999999991 2.83287639999999996 0 1.4358978 -0.211280820000000008 1.64717859999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.41211361106599 -63.7988779666970984 21.8283941602322997 -13.0902242553096997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244426996423040 2481244426996423040 1440169754 2015.5 25.0447009561837 1.41915790179095991 -3.65695681471936984 0.879304444702928012 4.81830668698704034 1.44269176974155 3.33980319999999997 -9.90597708544778932 3.62858118267127017 -2.7632050421235701 1.60973050676717011 0.0128137600000000004 -0.0242680740000000006 -0.2523841 0.138753640000000011 0.0163162430000000011 0.188010199999999988 0.118098339999999996 0.00569185999999999998 0.042965345000000002 0.0100420140000000001 99 0 98 1 2.12507529999999978 124.286003 2.85950952677697989 1.47133314475886001 31 false 0.0194823299999999991 1.27120890285837995 0.370109456137131976 -0.0172884900000000001 11 9 3.20664239999999978 0 12 false 99 104.359879556996006 1.83187685403955003 56.9687996 20.6420330000000014 6 46.338641234712199 15.9451281136259002 2.90613169999999998 21.1865300000000012 9 178.707324698489003 14.8612708806113005 12.0250369999999993 19.1315629999999999 2.15644150000000012 0 2.05496599999999985 0.544496540000000029 1.51046940000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.426881062684998 -63.7988451661897997 21.8329936152533008 -13.0949618045613008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244422703436928 2481244422703436928 1401512130 2015.5 25.0412832323921002 2.2160959624929899 -3.65306058284686985 1.35553096813556007 \N \N \N \N \N \N \N 0.252114149999999981 \N \N \N \N \N \N \N \N \N 69 0 68 1 0.676368599999999986 70.1824036 0 0 3 false 0.0186543950000000007 \N \N 0.0502678569999999991 8 6 9.00270599999999988 0 8 false 70 89.2452865554898978 2.01548048595660978 44.2798996 20.8119030000000009 5 64.7050600295520013 20.0967419996545011 3.21967900000000018 20.8240429999999996 5 97.5113312656511937 10.3219361953602995 9.44699999999999918 19.789282 1.8176466 0 1.03476140000000005 0.0121402739999999995 1.0226211999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.41613640426101 -63.7967699385231981 21.8312204122746998 -13.0900800956700998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250298216167040 2481250298216167040 831694416 2015.5 25.0417273187716987 1.65638194895224 -3.6497125037310898 1.12427013342505 \N \N \N \N \N \N \N 0.0172807030000000014 \N \N \N \N \N \N \N \N \N 116 0 114 2 33.9703599999999994 1768.94995 8.8250780956725805 96.0221130864912027 3 false 0.0114208390000000003 \N \N -0.0370643400000000012 15 10 3.48230310000000021 0 15 false 128 413.785572777441985 4.89549476601175027 84.5238037 19.1464269999999992 12 465.004226817260019 16.6539104716128001 27.9216230000000003 18.6827450000000006 12 703.142656891396996 7.68937092369002961 91.4434600000000017 17.6443119999999993 2.82307299999999994 0 1.0384331 -0.463682170000000005 1.50211519999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.413820129926989 -63.793551262203998 21.8329149525526987 -13.0871335998775997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247343278664064 2481247343278664064 170017709 2015.5 25.0660683819784005 0.297212112531117012 -3.65418351508222994 0.209113399398854011 0.300025082605520022 0.320913964256526019 0.934908150000000049 1.29789318130598996 0.684836639389042046 -5.30301821852528033 0.368224171880352003 0.0947298099999999976 0.137481849999999989 -0.297237199999999979 0.174038780000000004 -0.126633440000000014 0.219620079999999995 0.191955609999999999 0.0986176950000000052 0.0354210319999999981 0.14920425000000001 135 0 135 0 3.94264940000000008 203.598999 1.02469033861626002 3.79336634896352987 31 false 0.299676480000000023 1.58123168438966011 0.0694121222698945023 0.0360557899999999973 15 10 0.613852440000000055 0 15 false 133 702.173175212569049 1.98242536455389007 354.199005 18.5722559999999994 13 312.116849286632998 12.1582139344761995 25.6712740000000004 19.115594999999999 13 571.160074934447948 9.49182969434115087 60.1738659999999967 17.8700259999999993 1.25791900000000001 0 1.24556920000000004 0.543338800000000011 0.702230449999999951 \N \N 0 \N \N \N NOT_AVAILABLE 151.467899036723992 -63.7872572387937993 21.8543870759197993 -13.1002745168462003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481246999681270912 2481246999681270912 1085959796 2015.5 25.0966458728669011 1.2179302755405601 -3.68194598697412978 1.09350659902926006 -2.86190862522513978 1.27971217150511007 -2.23636899999999983 4.90566725209422039 2.96411757249601004 -7.72678865521548008 2.71563018356087005 0.122218010000000002 0.0570376630000000023 -0.494149979999999989 0.00831131000000000057 0.0219908949999999999 0.00372161649999999981 -0.521350199999999986 0.233728930000000001 -0.0907372300000000021 0.304641539999999988 106 0 105 1 -0.96553829999999996 86.3514023 0 1.00485917355761997e-15 31 false 0.0235384780000000016 1.5912030595581701 0.333403962601288018 0.100977620000000004 12 9 2.91220780000000001 0 12 false 105 100.564289425588001 1.33725535891665004 75.2020035 20.6822569999999999 10 69.3003613050999974 12.4734908102518993 5.55581139999999962 20.7495499999999993 10 84.5278283985772987 7.93692199333302995 10.6499509999999997 19.9444200000000009 1.52965020000000007 0 0.805130000000000012 0.0672931699999999994 0.737836840000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.55721496219499 -63.7993473651862004 21.8729517821552015 -13.1373557453892005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247308918922240 2481247308918922240 1168667899 2015.5 25.0783902983569007 0.404279721603825026 -3.66407570072995981 0.276815642199115974 0.775026679264275042 0.406951507342101004 1.90446939999999998 -1.59433831254152003 0.926785143831761027 -2.69450335900274007 0.505217664359332019 0.0319970769999999988 0.17648527 -0.373743239999999977 0.214346800000000004 -0.00443657199999999974 0.314878170000000013 0.160674299999999992 0.103739860000000003 -0.0463434799999999994 0.103557469999999999 133 0 133 0 -0.391738199999999981 121.190002 0 0 31 false 0.178273719999999997 1.73348695713080003 0.0917740851678800068 0.00323071349999999981 15 10 0.836444799999999988 0 15 false 132 354.250385779682972 2.06424778492523986 171.612 19.3150900000000014 13 162.690275168609986 9.8054600976773898 16.5918050000000008 19.8229849999999992 15 269.144392760017979 6.47084291295662961 41.5934069999999991 18.6869559999999986 1.21900980000000003 0 1.13602829999999999 0.507894500000000026 0.628133799999999964 \N \N 0 \N \N \N NOT_AVAILABLE 151.502631129811988 -63.7909640399416986 21.8623597687007987 -13.1140139326312006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247240199451776 2481247240199451776 147709337 2015.5 25.1117571912085999 0.171583338018740011 -3.6505630818536301 0.108334752725900998 0.562419830537882026 0.178005504688588001 3.15956429999999999 0.469170925014006979 0.337667776927428998 0.0853301626801001023 0.195654292170928001 -0.0305768119999999984 0.416458600000000012 -0.24957493 0.182357970000000008 -0.150516960000000005 0.306361600000000012 0.227765279999999987 -0.0517356730000000029 -0.0387087700000000035 0.152117489999999994 130 0 126 4 1.17366780000000004 139.457993 0.294669437081792995 0.899335196783527024 31 false 1.22105200000000003 1.52561165842601998 0.0369264327483092986 -0.0441778940000000023 15 10 0.30660759999999998 0 15 false 126 1585.07314653089998 2.61258959530979995 606.705994 17.6882419999999989 14 730.181735599299031 29.5653490706458015 24.6972139999999989 18.1928100000000015 14 1276.66242727366989 19.5914186621486017 65.1643700000000052 16.9967289999999984 1.26608929999999997 0 1.19608120000000007 0.504568099999999964 0.691513060000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.557727042852008 -63.7645299301891981 21.8992574321184996 -13.1137760476143992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481255761414826496 2481255761414826496 847838612 2015.5 24.8303778947120009 0.674321126904339985 -3.6310654157089699 0.425205890889601978 2.29533215187943984 0.676655364587657959 3.3921730000000001 15.8244174441487004 1.62703293345702993 0.361912194611223981 0.756628730174213948 -0.02037133 0.180814449999999988 0.0927481 0.0383618299999999995 -0.0499034149999999996 0.0158532520000000017 0.295902429999999994 -0.14745395 0.161997269999999999 -0.0793196560000000023 144 0 142 2 1.52171520000000005 163.014008 1.39179810203425003 1.06300468200583009 31 false 0.0595895280000000027 1.27496949612671995 0.140366215718642995 -0.0341990370000000016 16 9 1.43043429999999994 0 16 false 144 215.156751662088993 1.69161914987809991 127.190002 19.8564779999999992 11 60.4800645824709022 6.46672289834985037 9.35250599999999999 20.8973580000000005 15 304.709342914715023 6.80894529763445 44.7513280000000009 18.5522060000000018 1.6973180000000001 0 2.34515200000000013 1.04088019999999992 1.30427169999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.962442062314011 -63.8656965423688021 21.6388819548053988 -12.9917190683173995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257999093077248 2481257999093077248 827218612 2015.5 24.8308274254059 1.58234243678119002 -3.6182923991888698 1.04261445242807005 \N \N \N \N \N \N \N 0.0410824300000000031 \N \N \N \N \N \N \N \N \N 142 0 141 1 31.4530010000000004 1590.33997 9.3105179962403497 89.7146548287852994 3 false 0.00985205299999999951 \N \N -0.0493619500000000017 17 9 3.2912119999999998 0 17 false 151 295.046031901133972 3.19491798296877993 92.3485031 19.5136409999999998 14 355.040692970395014 11.4254694065114002 31.0744949999999989 18.9756929999999997 14 847.241226285933976 8.20984878045378963 103.198149999999998 17.4419019999999989 4.07489599999999985 0 1.53379059999999989 -0.537948599999999999 2.07173920000000011 \N \N 0 \N \N \N NOT_AVAILABLE 150.951218866130006 -63.8539108637557007 21.6441659260197987 -12.9800211751079004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481256964005606400 2481256964005606400 1691295713 2015.5 24.8605036256075991 3.34743103812142984 -3.63913158286641014 1.66451038533305007 \N \N \N \N \N \N \N -0.569449699999999948 \N \N \N \N \N \N \N \N \N 66 0 66 0 1.5161252999999999 78.533699 3.94989884643494005 1.54346140391841002 3 false 0.0110738250000000007 \N \N -0.175283309999999998 8 6 4.86382600000000043 0 8 false 67 76.4289875944084969 1.53862198163903008 49.6736984 20.9802199999999992 5 39.0292606520589018 9.15672967735230081 4.26235799999999987 21.3729109999999984 5 57.3693241578352016 14.3405028767706 4.00050970000000028 20.3652209999999982 1.26128299999999993 0 1.00769039999999999 0.392690660000000025 0.614999799999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.032076319716992 -63.8604041644938007 21.6644758398970012 -13.0103491533237996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481256895285934592 2481256895285934592 805799835 2015.5 24.8816672098094998 0.382558566335280015 -3.64695249570314983 0.223024420040542987 -0.198931408739662002 0.35696582868041099 -0.557284200000000007 7.96705387915292018 0.929414840956726995 -5.87965513338015011 0.491115537297875993 -0.183823559999999997 0.0853355999999999976 -0.0539091749999999967 0.0165949739999999984 -0.127050250000000003 0.0176250470000000013 -0.0849393160000000008 -0.0945452150000000019 0.0932911000000000018 -0.107447095000000006 141 0 139 2 0.992131300000000049 150.186005 0 0 31 false 0.204551029999999995 1.68745057318048008 0.0752654550324872024 -0.0935208800000000007 16 9 0.81835239999999998 0 16 true 136 438.088841919878007 2.11004180541821018 207.621002 19.08446 13 240.501632924066996 10.6798755354492005 22.5191419999999987 19.3985939999999992 13 294.333791818807981 12.8446813102257007 22.9148390000000006 18.5898189999999985 1.22083779999999997 0 0.808774949999999992 0.314134599999999986 0.494640350000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.083036383026013 -63.8586212970050013 21.6816385190381986 -13.0254370271303994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257101444375552 2481257101444375552 427455264 2015.5 24.8797043314338993 1.05815111148388996 -3.62628141280127991 0.620391074847345014 2.3487181508290198 0.91028676738112102 2.58019599999999993 0.398571541989915012 2.61312900275729998 2.93844182027723022 1.72208072141214008 -0.271215380000000006 0.125420420000000005 0.177165689999999987 -0.133540720000000002 -0.200330439999999999 -0.135043229999999986 -0.230956469999999997 -0.142114729999999995 0.113827680000000001 -0.169392390000000004 115 0 113 2 0.965819500000000053 122.100998 0.69654458478646597 0.147740302431747988 31 false 0.0374506530000000004 1.21406922849734 0.225231037452075011 -0.0935254600000000047 14 8 2.32690300000000017 0 14 false 110 138.003295300186011 1.19126086643757989 115.846001 20.3386420000000001 7 53.6797781903011995 6.43666824854722019 8.3396840000000001 21.0268610000000002 10 178.270438264994993 14.0414145133647992 12.6960460000000008 19.1342220000000012 1.68075850000000004 0 1.89263920000000008 0.688219099999999973 1.2044201000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.059277791097003 -63.8406912219094025 21.687628806891901 -13.0055104725900996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257273243255168 2481257273243255168 602508301 2015.5 24.8459112484624001 1.51442905066397993 -3.61345504286861985 0.941593929312425026 0.612322262336619016 1.33491949828183998 0.458695999999999993 5.32052250446450969 3.94245456937303018 -3.60375235737713995 2.64093940110856984 -0.240059699999999987 -0.0202468339999999983 -0.0446214529999999984 0.0829784650000000013 -0.0973618599999999945 0.0673189200000000043 -0.284268320000000019 -0.149246999999999991 -0.0180513929999999989 -0.12593913000000001 106 0 105 1 0.934142200000000034 113.075996 2.21245467877524016 0.615160076057830962 31 false 0.0169091430000000015 1.58910564055072001 0.322058491525818003 -0.0577017439999999993 13 8 3.47955680000000012 0 13 false 107 91.1449221234903035 1.22942715814324011 74.1361008 20.7890340000000009 8 49.8933866495978009 7.71398037363026035 6.46791740000000015 21.1062809999999992 9 55.7259432553661966 8.14280015475875985 6.84358500000000003 20.3967759999999991 1.15880659999999991 0 0.7095051 0.317247400000000013 0.392257699999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.977629950662987 -63.8432097350139003 21.6603543559074012 -12.9811046199416005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348640082914304 2481348640082914304 1279458071 2015.5 25.1727476230988998 2.90670634834394015 -3.41037482813631021 2.10652672160524013 \N \N \N \N \N \N \N 0.116302035999999998 \N \N \N \N \N \N \N \N \N 115 0 114 1 58.5566600000000008 5265.29004 16.5060473944034989 212.266800808418992 3 false 0.00339595999999999995 \N \N 0.0149476690000000002 15 10 6.12996400000000019 0 15 false 127 182.112537380973009 2.27460622734573015 80.0633011 20.0375160000000001 10 207.452548609556004 6.8459197142599999 30.303094999999999 19.5590919999999997 12 451.895262854295993 10.3942041774039993 43.4756969999999967 18.1243249999999989 3.62055129999999981 0 1.43476680000000001 -0.478424069999999979 1.91319079999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.451028452059006 -63.5213176458704964 22.0484223207381014 -12.9130917355844996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257204523594496 2481257204523594496 7855658 2015.5 24.861008166420099 0.419309091017960989 -3.61701838034224998 0.252413988090467001 3.32175443057077002 0.430111847179436013 7.72300149999999963 -8.83585103841993913 1.05586739653373995 -22.9213117090415999 0.491081189480660985 -0.0910778339999999964 0.0753084049999999949 0.06258909 -0.0413204500000000016 -0.18216170000000001 -0.0390750360000000005 0.128194119999999995 -0.126412469999999999 0.157083869999999987 -0.0872839400000000043 159 0 156 3 3.6676164 223.257996 1.13329855398310997 2.1772956209397698 31 false 0.14543623 1.35112174832331 0.0832171189000175948 -0.0632017400000000062 18 9 0.928483999999999976 0 18 false 152 395.248288781019994 1.70057895464708997 232.419998 19.1961900000000014 16 83.743576426791293 13.5321575849660007 6.18848660000000006 20.5440100000000001 15 561.205218013933973 14.8926948866116007 37.683253999999998 17.8891160000000013 1.63175610000000004 0 2.65489389999999981 1.34782029999999997 1.30707360000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.012044540089988 -63.8401234583236032 21.6733622607722012 -12.9899954082884008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257273243075328 2481257273243075328 1381975204 2015.5 24.8565233032465009 1.3223780315379301 -3.60866749820106003 0.786370372280628005 6.81737885455484971 1.35012126592230008 5.04945660000000007 0.749152747490561044 2.89338499481794997 1.51002389361158995 1.52284223884175995 -0.11349389 0.279459769999999996 0.103177199999999997 -0.0120421699999999996 -0.21876408 -0.0543943399999999994 0.0416468679999999966 -0.0706123859999999992 0.158808279999999996 -0.00348884199999999981 133 0 133 0 21.6840249999999983 880.401001 6.27393883441907985 38.9650808651638982 31 false 0.0177217739999999992 1.82619112248661009 0.255625618955422018 -0.0902590449999999961 15 9 2.5400157000000001 0 15 false 133 242.913236050938991 3.05872340027148004 79.4164963 19.7247370000000011 13 85.6482452708163038 13.9487423564200999 6.14021249999999963 20.5195919999999994 11 296.609877091415001 10.0051292838403008 29.6457820000000005 18.5814549999999983 1.57364060000000006 0 1.938137 0.794855100000000037 1.14328190000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.994882469394014 -63.8344217199648014 21.6722698387895996 -12.9805806204257994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245281694371456 2481245281694371456 1004942754 2015.5 24.9112759755557995 1.08414423176542996 -3.63679062806441999 0.632465835475716998 -1.62921402487075007 0.901466780153809988 -1.80729230000000007 -1.4610435223156899 3.22252519059480003 0.328794864124062003 1.98430757939754998 -0.304948600000000014 -0.102478470000000002 0.167970029999999992 -0.134465749999999995 -0.0333379200000000001 -0.0688222099999999948 -0.192742229999999987 -0.239355979999999996 0.150357440000000009 -0.418808459999999994 114 0 114 0 -1.10922940000000003 92.8286972 0 9.6248052937908809e-16 31 false 0.0350492000000000026 1.65130504777034992 0.234879265536729998 -0.122026204999999999 13 8 2.96287749999999983 0 13 false 114 134.49390493072201 1.34706734253985005 99.8420029 20.3666100000000014 9 94.1842073893742935 21.6343659872260012 4.35345359999999992 20.416443000000001 9 109.449458964640996 15.4479527085910995 7.08504630000000013 19.6638850000000005 1.51407359999999991 0 0.752557750000000025 0.0498332979999999981 0.702724459999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.134135449393995 -63.8369613773189002 21.7136741623362006 -13.0269409214663003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245217269982336 2481245217269982336 781421145 2015.5 24.9190562118909007 3.63130959467389003 -3.64148032362605978 2.75834811106048017 \N \N \N \N \N \N \N 0.310973019999999989 \N \N \N \N \N \N \N \N \N 84 0 84 0 28.3880039999999987 1238.54004 17.0478771123865016 76.1681665533958068 3 false 0.00303811799999999981 \N \N 0.0588064100000000034 11 7 9.45802399999999999 0 11 true 89 185.023213863474012 2.75465084885482003 67.1676025 20.0202999999999989 6 274.131008925003982 17.6985177331116006 15.4889250000000001 19.256492999999999 5 568.686262174161016 21.0680337448171997 26.9928500000000007 17.8747390000000017 4.55519720000000028 0 1.38175390000000009 -0.763807299999999967 2.14556119999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.154587972070999 -63.837940524621402 21.7192949506189983 -13.0341724013622997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245698306741760 2481245698306741760 468281897 2015.5 24.9277327612802999 0.0994807622807905995 -3.62798884944895006 0.0582403804224091021 1.50200830144333008 0.0969914110296934001 15.4859919999999995 6.97402164146706038 0.240897443737676992 3.83135297200605018 0.121012924867240995 -0.234074699999999997 0.148691130000000005 0.309838950000000002 -0.196443470000000009 -0.231977299999999997 -0.228454629999999992 0.0881812599999999974 -0.139461140000000011 0.217606699999999986 -0.19216126 139 0 139 0 1.91805000000000003 167.143005 0.109073799453078005 0.334694170540607017 31 true 3.74068639999999997 1.42904506312040991 0.0191545941270875007 -0.132908899999999996 16 9 0.22246421999999999 0 17 false 139 3986.3121886100198 4.16698610413201997 956.642029 16.6869370000000004 13 1396.79873067050994 29.9581677778806004 46.6249729999999971 17.4885540000000006 12 3887.87215568814008 38.2943759733768019 101.525930000000002 15.7876399999999997 1.32570420000000011 1 1.70091440000000005 0.801616670000000031 0.899297699999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.159488162871014 -63.8220556510153969 21.732678613356299 -13.0248459867868007 100002 4191 3953.25 4432.22998 0.237499997 0.0688999966 0.541100025 0.115999997 0.0170000009 0.231099993 200111 0.611019700000000054 0.546319699999999964 0.686723529999999971 0.103770929999999997 0.0899559500000000067 0.117585905000000004 +1635721458409799680 Gaia DR2 2481257140099617920 2481257140099617920 731736642 2015.5 24.8907838431148001 0.669968106931934981 -3.61649330481224984 0.409868167851232978 0.337618007366563999 0.643694894275780971 0.524500100000000025 10.8608734208363007 1.95020343709629995 -11.1898288228592993 0.783133505019243947 -0.217655049999999989 -0.0493816440000000023 0.259466699999999995 -0.185964469999999993 0.0677824499999999941 -0.232958589999999993 0.42324790000000001 -0.293032400000000026 0.290152940000000026 -0.39168550000000002 136 0 135 1 3.15281650000000013 186.901993 1.41766016859905997 1.53394007401865995 31 false 0.074175770000000002 1.4888405476545199 0.132674899009427 -0.0844257399999999991 16 9 1.75286769999999992 0 18 false 131 247.215189085459997 1.56082740339031001 158.386993 19.7056770000000014 13 68.6527962492548056 11.2588592044030005 6.09766899999999978 20.7597430000000003 11 295.726310272477974 8.54734644546971012 34.5986100000000008 18.584696000000001 1.47393489999999994 0 2.17504700000000017 1.05406569999999999 1.1209811999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.072694365056009 -63.8271609040947965 21.7018906018262996 -13.0005133361926006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257071380141056 2481257071380141056 618441213 2015.5 24.9006740088877017 0.030494033462562499 -3.61690365543597014 0.0216694474941094006 2.87102919848614002 0.0332762902199712982 86.2785300000000035 8.76077828210611997 0.0800017308485083956 -33.4183273612278029 0.0530650271463014023 0.0107700490000000003 0.000907108400000000031 0.0309288240000000006 0.0382068600000000022 -0.249747140000000006 0.0719019250000000054 -0.0641065759999999984 -0.200088590000000011 -0.0290819559999999991 0.162949869999999997 134 0 132 2 -1.75579519999999989 100.450996 0 0 31 true 52.0494350000000026 1.53493998494450001 0.00723434514284666038 -0.0847771199999999975 16 10 0.0840199199999999979 0 16 false 132 43266.4354175457993 21.0796786025993015 2052.52002 14.0979880000000009 12 19051.9477410330983 30.6599069962448993 621.396100000000047 14.6515400000000007 11 34771.2272481582986 79.6413719652489931 436.597530000000006 13.4088700000000003 1.24399379999999993 0 1.24266999999999994 0.55355169999999998 0.68911840000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.093385308188005 -63.8233803340746988 21.7111446849892005 -13.0045496312663005 100001 5056.37988 4792 5158 0.166999996 0.00800000038 0.326099992 0.0815000013 0.00289999996 0.159600005 200111 0.61979806000000004 0.595616759999999967 0.6900752 0.226231929999999998 0.220020460000000001 0.232443399999999994 +1635721458409799680 Gaia DR2 2481257135806475776 2481257135806475776 1337901686 2015.5 24.8970185682385008 1.4011828698003399 -3.60592686371274018 0.784831949118466987 \N \N \N \N \N \N \N -0.321271960000000023 \N \N \N \N \N \N \N \N \N 94 0 94 0 -0.832743699999999976 77.7350006 0 0 3 false 0.0278244469999999987 \N \N -0.0626055400000000012 11 8 3.77752020000000011 0 11 false 96 107.457354462840001 1.44936993606785003 74.1407013 20.6102750000000015 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.07541630651599 -63.8149574124326975 21.7118382406362009 -12.9930022288281002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257445041766272 2481257445041766272 1593915139 2015.5 24.9096301062946992 0.165874246598412989 -3.61180664464697987 0.114915156327537002 0.561108961622687974 0.178364096058608007 3.14586280000000018 10.7582556307164001 0.404066711052083027 -6.09784852516764975 0.234125868672485998 -0.0370644369999999987 0.182860970000000012 -0.0916725600000000002 -0.0274788330000000011 -0.178407619999999989 -0.0764631100000000008 0.0969013799999999953 0.00707666339999999967 0.148848399999999992 -0.040205150000000002 157 0 157 0 3.95303700000000013 230.983994 0.603606321577329963 3.13288073200535022 31 false 0.765522660000000021 1.53152683841777004 0.0363308371486259982 -0.048041157000000001 18 10 0.35787004 0 18 false 155 1394.76880792590009 2.54324306033378011 548.421021 17.8271100000000011 18 559.024701665849989 7.93679518585998967 70.4345600000000047 18.4828110000000017 17 1208.59007553373999 10.4164501160460006 116.027060000000006 17.0562229999999992 1.26731740000000004 0 1.42658799999999997 0.655700700000000025 0.7708874 \N \N 0 \N \N \N NOT_AVAILABLE 151.106898359751995 -63.8149942372179027 21.7216031690251015 -13.0031246047254996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481257449337273856 2481257449337273856 3158126 2015.5 24.9157640001210012 0.0350310880842905001 -3.60736479826675005 0.0266099485594114005 1.10243234093208997 0.0382966138499662018 28.7866800000000005 30.562917906672201 0.082887800185555402 14.4354604063541991 0.0635097911756284939 0.03117464 0.209054099999999993 -0.0893745499999999971 -0.0854403499999999982 -0.202166259999999987 -0.135848329999999989 -0.241586390000000012 0.0249315129999999989 0.184480699999999997 0.109764520000000004 151 0 151 0 -1.33034610000000009 123.828003 0 0 31 false 20.0861340000000013 1.59313405244410999 0.00868218055125385968 -0.0431450229999999976 17 10 0.0844612200000000035 0 17 false 148 17245.7610679409008 7.88010287837436962 2188.52002 15.09666 17 8869.94088238257973 17.2178686299346992 515.159059999999954 15.4815860000000001 16 12185.8294513483997 37.6510061083384997 323.652159999999981 14.5472819999999992 1.22092439999999991 0 0.934304240000000008 0.384926800000000013 0.549377439999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.115241289741988 -63.8083875019385971 21.7291273532956986 -13.0012650543102009 100001 5236.3501 4826.22021 5369 0.0780000016 0.0160000008 0.231800005 0.0373000018 0.00389999989 0.108099997 200111 0.935258299999999987 0.889615060000000013 1.10096959999999999 0.592478500000000019 0.545143799999999956 0.63981323999999995 +1635721458409799680 Gaia DR2 2481245419135747328 2481245419135747328 733012292 2015.5 24.9417163084935005 1.35657007284530007 -3.63738441552994995 0.89417860261161497 -0.13410559281923401 1.25234075107571008 -0.107083949999999997 12.0102312910807996 3.79952090326109015 -12.8152121962385994 2.48787787029796981 -0.160275770000000012 -0.0172765630000000017 0.217592050000000009 -0.214186530000000014 0.0232135039999999994 -0.177068780000000009 -0.167995740000000005 -0.241585500000000009 0.215877060000000009 -0.299724849999999987 105 0 104 1 1.35754630000000009 118.603996 2.9065068456915899 1.36547396581175007 31 false 0.0193373490000000002 2.08929399929597004 0.342014425452042026 0.0090109584999999992 12 8 3.45638800000000002 0 13 false 107 113.057072827631998 1.79816208142599998 62.8736992 20.5551199999999987 6 43.2496198296423984 3.53947270763298016 12.2192270000000001 21.2614330000000002 10 138.726606151482997 13.6758001533032996 10.143948 19.4065200000000004 1.60959610000000009 0 1.8549118 0.706312199999999946 1.14859960000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.197156536774997 -63.8246835588028034 21.7424145442989989 -13.0387406825828993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245453493063552 2481245453493063552 619651465 2015.5 24.9629516335879984 0.136005411797494008 -3.63695971194682022 0.0952800054750447961 1.20613792853965007 0.153518574978698003 7.8566256000000001 8.4454457337030906 0.303371080388516012 -1.20974509112174999 0.172353995536032006 0.122662080000000007 0.278242050000000019 -0.163857670000000011 0.0904450900000000058 -0.0449334899999999995 0.0381240249999999989 0.138241000000000003 0.0435879500000000003 0.156868029999999992 0.0810110599999999959 149 0 148 1 0.413018820000000009 149.412003 0 0 31 false 1.25689129999999993 1.4344435829178801 0.0334172121930568986 0.0270720719999999991 17 10 0.270710379999999973 0 17 false 147 1553.3055191666399 2.39947509676995008 647.35199 17.7102240000000002 14 428.392108495162006 8.93021689859227941 47.9710770000000011 18.7717840000000002 14 1692.02302417525993 9.94714593456622076 170.10136 16.6909050000000008 1.36509860000000005 0 2.08087920000000004 1.06155970000000011 1.01931949999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.24028429520601 -63.8153425956168974 21.7627841235865986 -13.0461915943792004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245762730903040 2481245762730903040 1233794270 2015.5 24.963553625673601 0.912922493994292039 -3.60631606343133981 0.800769317246167955 0.612451571800431971 0.996340553748345958 0.614701029999999982 -1.07323724696409006 1.94152058691628993 -2.73601581669135019 1.66289092700281005 0.247536270000000003 0.360699680000000023 -0.331928000000000001 0.00283877569999999978 0.2780281 0.0988496100000000044 -0.356569770000000008 0.126527119999999993 -0.128066139999999995 0.159327279999999988 111 0 111 0 -0.506259400000000026 98.1634979 0 0 31 false 0.0355407449999999986 2.28851726344301998 0.270918926230226009 0.135525499999999993 13 9 1.77707199999999998 0 13 false 112 136.452246630464003 1.3880296889394601 98.3063965 20.3509139999999995 12 103.568646644813995 25.4480354475943003 4.06980900000000023 20.3133179999999989 12 110.509361934897001 8.27594781859014006 13.3530759999999997 19.6534210000000016 1.56888589999999994 0 0.659896849999999979 -0.0375957499999999972 0.697492600000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.212177864111993 -63.7873172211320991 21.7749995986134017 -13.0179468809467007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378052018997120 2481378052018997120 1241597063 2015.5 25.669427188977501 0.270459904947288998 -3.24444172826698995 0.197380891858296992 0.524353678324553041 0.334753304406522012 1.5663883999999999 6.64583951187046029 0.493852384723567017 -9.07671414877857075 0.336962887644678022 -0.138833220000000007 0.495410300000000026 0.0616606180000000004 0.0839401560000000019 -0.391734179999999987 -0.0465419799999999967 0.0887101899999999943 0.0799375100000000033 0.197469559999999988 0.111204824999999993 158 0 157 1 2.54352659999999986 199.998993 0.583268058037666015 1.11454153801174005 31 false 0.322104500000000016 1.4208373004780801 0.0640775628268060032 -0.0280061570000000003 19 10 0.438152460000000021 0 19 false 156 632.548378691975017 1.94067155504559996 325.942993 18.6856299999999997 14 228.019960455280994 11.7262689317532995 19.4452269999999992 19.4564549999999983 16 676.419593168311053 11.3572949774916001 59.5581600000000009 17.6863799999999998 1.42983459999999996 0 1.77007479999999995 0.770824430000000005 0.999250399999999983 \N \N 0 \N \N \N NOT_AVAILABLE 152.288480576849992 -63.1577238818535989 22.5840908915997005 -12.9416122543391001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245870105432320 2481245870105432320 1205652341 2015.5 24.9589905693472005 0.0373011417390579983 -3.59821542129123983 0.0288323890475231 2.8758496599799499 0.0418789237053057012 68.6705699999999979 16.4641875000172 0.0766913300141330995 -3.54591391508314002 0.0614175032824421999 0.173314350000000006 0.391891150000000021 -0.146432410000000013 -0.0318958699999999998 -0.0248372240000000015 -0.0911338800000000004 -0.301719279999999979 0.0529083570000000031 0.122252664999999996 0.225271240000000011 151 151 150 1 2.98408629999999997 201.154007 0 0 31 true 294.359039999999993 1.60161819992011001 0.00973261600200268917 0.0321155529999999981 17 10 0.0505922730000000001 0 17 false 149 221432.411184377008 57.2402114584579991 3868.47998 12.3252629999999996 16 115729.099716394994 157.322997889671996 735.614599999999996 12.6927810000000001 15 150865.087851504009 109.446132310869004 1378.44149999999991 11.815448 1.20395289999999999 0 0.877333640000000026 0.367518420000000012 0.509815200000000024 2.44313569631803995 0.933577616619554962 5 5500 4.5 0 NOT_AVAILABLE 151.195087940554998 -63.7818981858941001 21.7737347693007983 -13.0087359626679007 100001 5512.66992 5413.39014 5615.66992 0.211500004 0.107900001 0.358099997 0.107000001 0.0313000008 0.185299993 200111 1.13919989999999993 1.09779369999999998 1.18136810000000003 1.07979519999999996 1.05711320000000009 1.1024773000000001 +1635721458409799680 Gaia DR2 2481245797090462976 2481245797090462976 463147238 2015.5 24.9694492168639997 0.300244790491173974 -3.60516007179497011 0.212738924487425013 0.930975598707980967 0.340871994897148978 2.73115899999999989 10.7073872443772 0.656812620814140047 -20.2470120020195985 0.402183078053644005 0.106204316000000007 0.301238859999999997 -0.123800010000000002 0.0577926230000000013 -0.0833462700000000001 0.000629789699999999978 0.0353510380000000013 0.0347543199999999983 0.16731776000000001 0.102613960000000004 143 0 143 0 20.8153879999999987 850.846985 1.70921062237732002 26.1552066710968987 31 false 0.249688700000000013 1.44169157765150002 0.0641670280565540957 0.044137295 16 10 0.580002699999999982 0 16 false 143 1534.17307894558007 5.22160053844368033 293.812988 17.7236800000000017 16 317.87657759056799 7.02033270968034007 45.2794200000000018 19.0957410000000003 15 2014.6963196229799 14.1887150263265003 141.992870000000011 16.5013959999999997 1.52041050000000011 0 2.59434500000000012 1.37206080000000008 1.2222843000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.223144399640006 -63.7837831193810985 21.7810490080610997 -13.0190507374136004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245384776051456 2481245384776051456 1123751903 2015.5 24.9786971352069997 1.13394268562040001 -3.63989912111882985 1.03443649990278996 0.341089362914452021 1.2539033017966501 0.272022070000000005 0.93991436195929301 2.50848040888189994 -29.7822659435638997 2.20521097541723021 0.259123600000000009 0.377188980000000007 -0.311693100000000001 -0.0224967020000000004 0.331672760000000011 0.00883157099999999987 -0.262043299999999979 0.0909444600000000047 -0.0497906730000000006 -0.0129181569999999996 100 0 100 0 -0.0893749300000000052 93.1139984 0 0 31 false 0.0224046450000000008 1.21024456357781007 0.341811372758744014 0.108609300000000006 12 9 2.23444149999999997 0 12 false 105 105.75787171332 1.49607384690408995 70.6903 20.6275839999999988 9 36.7689609205322014 4.37236973092922998 8.40938949999999963 21.4376849999999983 12 122.09953181006 14.3687713834193005 8.49756200000000028 19.5451349999999984 1.5021907000000001 0 1.89254950000000011 0.81010055999999997 1.08244899999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.275366045020007 -63.8113567668624029 21.7766518911663987 -13.0547387373402994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481244770593805696 2481244770593805696 397967082 2015.5 25.008539437129901 2.56183407406465014 -3.63338565569313987 2.08517058526072985 \N \N \N \N \N \N \N 0.205488379999999998 \N \N \N \N \N \N \N \N \N 130 0 128 2 43.6413900000000012 2856.87012 15.7993529138917008 151.018926975607997 3 false 0.00365451279999999979 \N \N 0.066609340000000003 16 10 5.23741669999999981 0 16 false 142 211.415984383720996 3.37069390464333019 62.7218018 19.8755200000000016 12 248.201470569363011 17.5028504478671003 14.1806319999999992 19.3643779999999985 12 552.175029839615945 26.7444190472792016 20.6463639999999984 17.9067289999999986 3.78578999999999999 0 1.45764920000000009 -0.51114272999999999 1.9687920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.330218597343986 -63.7928366553909001 21.8075282916916002 -13.0597100446438006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481251402023310080 2481251402023310080 235152658 2015.5 24.9969453761775 0.0427514289734984981 -3.61333811037098984 0.0306727109573329999 1.91573159580624997 0.0467128512963135012 41.0108030000000028 18.6442401184851008 0.0993305762258634983 -14.2134920244506997 0.0613880298979508979 0.0546846240000000011 0.217348259999999988 -0.161462930000000005 0.0145421600000000002 -0.0078252760000000008 -0.0413630999999999999 -0.0361103499999999994 0.0355482900000000032 0.18130194999999999 -0.00566305099999999968 142 0 141 1 0.14775184999999999 137.778 0 8.61659632663008985e-16 31 false 15.9669790000000003 1.51586349907082996 0.0120620809202494003 -0.0361056739999999973 16 10 0.0969648959999999949 0 16 false 141 13977.8695743974004 8.82738725501044996 1583.46997 15.3247630000000008 15 5759.69403899913959 15.7620776777634006 365.41464000000002 15.9503900000000005 14 11774.1797115728004 27.8172013191942007 423.269740000000013 14.5845939999999992 1.25440240000000003 0 1.36579610000000007 0.625626560000000054 0.740169500000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.287257190816007 -63.7795828503703035 21.8041092415754996 -13.0368038137461006 100001 4818.66992 4454.27002 4992.75 \N \N \N \N \N \N 200111 0.597815199999999991 0.556854399999999972 0.699629700000000021 0.17359506999999999 0.164196199999999987 0.182993949999999989 +1635721458409799680 Gaia DR2 2481245831450204416 2481245831450204416 1478509607 2015.5 24.9502639551793983 0.467969594503578001 -3.59531078009095983 0.286177897505236978 -0.167082805516121008 0.477791136816853979 -0.34969842000000001 10.6012941290859999 0.957204625130001041 -2.9683391396432901 0.490293891976679996 -0.0379788539999999994 0.360864499999999977 -0.282247130000000013 0.145724650000000011 -0.155763900000000011 0.124640619999999994 0.199169750000000007 0.107178904000000005 0.137441890000000011 0.0615115580000000009 141 0 137 4 1.52920030000000007 157.686005 1.11791578753727006 1.88833520954487 31 false 0.143469020000000003 1.78586343096161992 0.099957169001784002 -0.0414875560000000018 16 10 0.854974400000000023 0 16 false 136 381.891761734067984 1.68900129513154007 226.104996 19.2335150000000006 16 211.342924788510999 8.06816041396056072 26.1946849999999998 19.538920000000001 16 257.911495692495009 11.0031049977725992 23.4398820000000008 18.7332439999999991 1.22876289999999999 0 0.805675499999999989 0.305404659999999994 0.500270839999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.174440725967003 -63.7829414274959987 21.7665343123777006 -13.0028139419572 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250577389589376 2481250577389589376 1263629638 2015.5 25.0295226279149006 0.0639988439087025018 -3.62355909006141985 0.0494643753171642026 0.668225175943318983 0.0745360935595540952 8.96512199999999915 30.9094558378758002 0.146347781299010993 5.3364029404103297 0.0898419113456661034 0.186767369999999988 0.242826860000000005 -0.159972560000000014 0.106010093999999999 0.0177332159999999996 0.0662398200000000048 0.169547050000000005 0.0175767039999999986 0.121718789999999993 0.0927273259999999988 123 0 122 1 0.618134599999999979 126.011002 0.0575322208331359025 0.136767437875951997 31 false 7.20360140000000015 1.59674044723888997 0.017161710179282301 0.0667522400000000043 14 9 0.135433849999999995 0 14 false 121 6884.71566677112969 8.18861900437861046 840.765991 16.0936500000000002 14 3634.29156989409012 14.1176009125959006 257.429840000000013 16.4503379999999986 12 4722.93404964558977 22.8168482400186008 206.993269999999995 15.57639 1.21388099999999999 0 0.873948100000000005 0.35668755000000002 0.517260550000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.363703350544995 -63.7750522504855013 21.8312321600695007 -13.0583296186173996 100001 5694.41016 5387.37012 5954.66992 0.0104999999 0.00529999984 0.0340999998 0.00549999997 0.00319999992 0.0161000006 200111 0.803947300000000031 0.735207999999999973 0.898195859999999957 0.612272700000000003 0.468878840000000019 0.755666500000000019 +1635721458409799680 Gaia DR2 2481250573094084224 2481250573094084224 1123084159 2015.5 25.0353097720334006 0.144515302605329993 -3.6292399853887698 0.104737995421530006 0.445311180336830981 0.159276398103897987 2.79583899999999996 -0.921212842332800985 0.342415796369259007 -6.30616120581591044 0.180792613141822989 0.0823512400000000061 0.160416189999999986 -0.209931499999999993 0.138846190000000008 -0.102878730000000002 0.123099630000000002 0.319685249999999976 0.0370913260000000009 0.0876493750000000016 0.0412013530000000031 134 0 132 2 3.25541599999999987 185.408997 0.383579139968479976 1.74187731527463008 31 false 1.26830909999999997 1.5663973937086999 0.0353767495145526981 0.00852074199999999955 15 10 0.305758099999999977 0 15 false 130 1829.16521317828006 3.07741962787532986 594.382996 17.5327340000000014 11 780.151429842606035 10.6117435967363001 73.5177460000000025 18.1209409999999984 11 1534.68698276464011 12.8795630074841991 119.156760000000006 16.7968709999999994 1.26551630000000004 0 1.32407000000000008 0.58820724000000002 0.73586273000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.380996668541997 -63.7777424583428001 21.8345827063966986 -13.0657442582560002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250779252523648 2481250779252523648 25322573 2015.5 25.0360192284122007 0.87947037582602805 -3.60985157555079006 0.569531411673724008 2.28629489434712019 0.940123779976710039 2.43190840000000019 6.39040265051616974 1.97563113415903002 -10.0778972783725003 0.885328404664126989 0.116449360000000002 0.186870599999999998 -0.421709180000000017 0.231969430000000004 0.0384516869999999983 0.273082380000000013 0.311326119999999984 0.259231539999999983 0.129768369999999994 0.134313939999999993 122 0 122 0 2.60365400000000013 160.692993 1.41912882337298996 0.86034070421484099 31 false 0.0486064670000000004 1.55472822694959989 0.183743657537275007 0.0893159300000000017 14 9 1.79477430000000004 0 14 false 121 155.857603685513993 1.62346134698767997 96.0033035 20.2065449999999984 12 77.7329037758298966 10.3248452699537001 7.52872319999999995 20.6248760000000004 11 196.945149111350986 9.90639612423063021 19.8806060000000002 19.0260560000000005 1.76236550000000003 0 1.59881969999999995 0.418331149999999985 1.18048860000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.36381714919699 -63.759888764965801 21.842621443546399 -13.0479935211411 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481251535166772992 2481251535166772992 1368189518 2015.5 25.0258905393850988 0.814876260254425056 -3.59631613464563005 0.485304368993978996 -0.0633413916341915018 0.840456064786285983 -0.0753655000000000019 1.89947575737011998 1.65741536445150994 -0.0784882156285514054 0.78923357109252501 0.00764929200000000024 0.325496019999999997 -0.427740200000000015 0.222407030000000006 -0.0707151599999999991 0.309030470000000002 0.214005439999999991 0.160152669999999997 0.0802408460000000046 0.142620789999999997 122 0 120 2 0.263008299999999973 118.353996 0 0 31 true 0.0654123650000000001 1.78700981091421007 0.159298081552870008 0.00393307859999999978 14 10 1.5161150000000001 3 14 false 120 186.330530292271987 1.50664638873672008 123.671997 20.0126549999999988 14 116.321735498698004 10.9079280413298996 10.6639619999999997 20.1872369999999997 14 125.557597802535994 14.0943543593808993 8.90836099999999931 19.5148119999999992 1.29811969999999999 0 0.672424299999999975 0.174581530000000013 0.497842799999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.330128270341987 -63.7519219666013015 21.8381214966656998 -13.0316786605466 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250710535566976 2481250710535566976 672041404 2015.5 25.0501221596568016 1.87608534918660008 -3.61661529183774988 1.4147982325220001 -1.02483767388644997 1.85579436954224009 -0.552236700000000025 11.9026037779949991 4.48981800451433966 -26.3103567335591997 3.34540033829894989 -0.0951844800000000019 0.082887723999999996 -0.606241800000000053 0.227577639999999998 0.32141554 0.356577929999999987 -0.390071630000000003 0.324402780000000002 -0.310375599999999974 -0.160728750000000004 68 0 66 2 0.202534469999999994 62.5839005 0 0 31 false 0.0196650329999999984 \N \N 0.0185748360000000008 8 7 4.24387260000000044 0 8 false 69 83.833501895167899 1.63451412093560999 51.2896004 20.8798220000000008 3 33.8976580935890013 12.0694230001976006 2.80855660000000018 21.5259649999999993 6 139.733172780366999 15.1674482901924002 9.21270200000000017 19.3986720000000012 2.07113889999999978 0 2.12729260000000009 0.646142960000000044 1.48114970000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.399134719599999 -63.7600324870612027 21.8534761161869007 -13.0594842763816992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250504374612992 2481250504374612992 472739913 2015.5 25.0595814643540997 0.506559801144539024 -3.61672924742379021 0.297303944615564975 -0.617584509680834004 0.521931455993510984 -1.18326749999999992 -2.37886541990709999 1.0323343929231501 -4.6473841509661602 0.466983012483990989 -0.0363989730000000011 0.313159579999999993 -0.421479459999999972 0.225982340000000004 -0.140400290000000011 0.307152270000000005 0.290623660000000006 0.133316999999999991 0.076986479999999996 0.116616319999999996 131 0 131 0 1.33893700000000004 147.729996 0.367219126919442973 0.170011400657168993 31 false 0.160385150000000004 1.65973596099790011 0.100611353077251997 -0.0303556380000000008 15 10 0.943038900000000013 0 15 false 130 333.430258835032987 1.97752888097361001 168.610001 19.3808539999999994 11 194.450836108132989 17.2200881589221986 11.2920929999999995 19.6293639999999989 11 315.89654773909399 11.3854531177998997 27.745628 18.5130580000000009 1.53059710000000004 0 1.11630629999999997 0.248510360000000013 0.867795940000000043 \N \N 0 \N \N \N NOT_AVAILABLE 151.418568818150987 -63.7561215659411999 21.8624365820252002 -13.0630823410734997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250749188280704 2481250749188280704 1617961256 2015.5 25.0601438681934994 0.0924900002599180066 -3.61034543894797011 0.0567097455429887987 0.55875834299903604 0.0890032546058716068 6.27795400000000026 13.6972064104965003 0.229465127013154996 -25.8955262951925995 0.106138243513677996 0.0037239221999999998 -0.0182468669999999999 -0.494169499999999984 0.166896220000000012 -0.0749093740000000008 0.237693349999999998 0.0848498050000000004 0.216646599999999995 -0.00575260260000000009 0.0807250439999999958 124 0 124 0 2.31187060000000022 157.542007 0.204454198801338 1.42944969300658009 31 false 4.61408470000000026 1.64129430039396995 0.0215020725153629993 -0.00458272399999999983 14 9 0.215381920000000004 0 14 true 123 5400.92659545320021 5.00993871554322023 1078.04004 16.3571950000000008 13 3103.11453925671003 20.6398289897129992 150.345949999999988 16.621893 12 3452.12610227304003 15.4120214073459003 223.989180000000005 15.916703 1.21372520000000006 0 0.70518970000000003 0.264698029999999973 0.440491679999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.413578300421989 -63.7501051570957031 21.8653959821612993 -13.0573589478092007 100001 5965 5800 6350 0.0379999988 0.00889999978 0.110699996 0.0179999992 0.00389999989 0.0443999991 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250744892658688 2481250744892658688 532344029 2015.5 25.0590348540832011 0.0270641568831011987 -3.60826990207478993 0.0204662514245096995 0.323012624546295979 0.0302647823467982989 10.6728880000000004 6.32313078927336036 0.0588435970241339007 -1.45914292932872991 0.042773241073673203 0.121748819999999994 0.299151840000000002 -0.164174020000000004 0.0805072599999999972 -0.101454390000000005 0.0996113349999999953 -0.0644230699999999989 -0.00206747199999999989 0.0156801119999999995 0.236340030000000006 142 0 142 0 -0.167793419999999999 133.585007 0 8.58509129855884954e-16 31 false 64.2957600000000014 1.55777098800920011 0.00746523898315964041 0.0198709070000000002 16 10 0.0643283899999999992 0 16 false 142 52100.6092978989036 20.1454229457091998 2586.22998 13.8962579999999996 15 23828.8077833595999 65.4309928002738985 364.182279999999992 14.4086320000000008 14 40419.7323053932996 39.8402664865070975 1014.54474000000005 13.2454370000000008 1.23316289999999995 0 1.16319560000000011 0.512373900000000049 0.650821699999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.409317957698988 -63.7486972689045004 21.8651284870646982 -13.0550212161210997 100001 4954.25 4881 4988.7002 \N \N \N \N \N \N 200111 6.36636899999999972 6.27874469999999985 6.55888500000000008 21.9983439999999995 17.0078500000000012 26.9888380000000012 +1635721458409799680 Gaia DR2 2481250435655130624 2481250435655130624 1025910995 2015.5 25.0710923498407006 0.839633336069566028 -3.62871690106858003 0.510611696999464959 0.160885495708665005 0.854219413618450996 0.188342120000000002 21.024790761009001 2.02346939221362021 -9.55924550619539914 0.852836899327360953 0.0323793299999999978 -0.06522762 -0.317607220000000023 0.208728899999999995 -0.0671855900000000034 0.299862740000000016 0.194912059999999998 0.0909993350000000006 0.024261108 0.0799846399999999957 116 0 114 2 3.3410738000000002 165.264999 2.0432462067767001 2.25931845164266987 31 false 0.0540748649999999997 1.14991231291103002 0.171601647632977 -0.0584210699999999986 13 8 1.80548200000000003 0 13 false 114 200.594139583225996 1.87061371469311011 107.234001 19.9325699999999983 7 38.220822603778899 9.39757252753133088 4.06709530000000008 21.3956380000000017 9 276.168617469865012 23.0626951344200002 11.9746895000000002 18.6589829999999992 1.56729129999999994 0 2.7366543000000001 1.46306800000000004 1.27358630000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.453618953089006 -63.7620805497929979 21.8688413539998017 -13.0784690973923006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247515079941376 2481247515079941376 1239045793 2015.5 25.0950873295524985 3.74300728968189 -3.63621764793483981 2.77559651394571993 \N \N \N \N \N \N \N -0.450315599999999983 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.101998510000000001 43.2798004 0 0 3 false 0.016789287 \N \N -0.0295835899999999999 6 6 10.2115419999999997 0 6 false 49 76.517602948096993 1.72653020067337004 44.3186989 20.9789619999999992 2 43.6124425163105016 18.9849480061479987 2.2972115999999998 21.2523610000000005 5 98.1305407297984971 14.0214748939770004 6.99858899999999995 19.7824099999999987 1.85242320000000005 0 1.46995159999999991 0.273399349999999985 1.19655230000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.509846674737986 -63.7586597812830007 21.8888348442364986 -13.0942951057181993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247515077368320 2481247515077368320 24462457 2015.5 25.0937807012563994 0.615627281295770046 -3.63043144235798021 0.408860942727026999 0.266739700771624011 0.614241999003132033 0.434258299999999986 0.767360644937598035 1.39731217195873003 -2.17004886618373982 0.687668965112704034 0.0346598659999999975 0.182477460000000008 -0.39955259999999998 0.240741100000000013 0.00325052460000000007 0.34678150000000002 0.246881469999999992 0.140392270000000013 0.000271932279999999977 0.103294049999999998 141 0 141 0 0.497466740000000018 143.677994 0 0 31 false 0.0800668900000000017 1.66062454342307997 0.133473850117831 -0.00669969899999999993 16 10 1.2649899 0 16 false 140 217.020864517868006 1.33060872047574996 163.098999 19.8471130000000002 14 134.760935771324995 15.2884982502878 8.81452999999999953 20.0274770000000011 12 166.603917617960008 9.99753996902513009 16.6644919999999992 19.2077060000000017 1.3886445999999999 0 0.819770800000000022 0.180364610000000009 0.639406200000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.501598121498006 -63.7539825082780993 21.8897880648768002 -13.0884368992283999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250470014874112 2481250470014874112 1352315052 2015.5 25.0796097607417003 0.485457735620109021 -3.61785738355979003 0.33150321219038098 0.540050951905538978 0.515903417645173001 1.04680630000000008 15.9497630789908005 1.11852916512799005 1.41425528259196009 0.573458587457189028 0.0827497100000000041 0.118508340000000004 -0.374523339999999982 0.186124010000000006 -0.0990298800000000007 0.240574299999999991 0.180912519999999993 0.166036490000000009 0.0388879300000000011 0.144823039999999986 134 0 133 1 3.21435400000000016 185.768997 1.15436686887433004 1.60774698275883998 31 false 0.122865095999999993 1.39260168222358005 0.107646047802851003 0.0329389719999999969 15 10 1.00850369999999989 0 15 false 132 320.872356129078014 1.68927143996420992 189.947006 19.4225349999999999 11 121.693144215130005 10.062467689619 12.0937669999999997 20.138224000000001 13 309.504440724689005 8.0877220764668607 38.2684330000000017 18.5352539999999983 1.34382899999999994 0 1.60297010000000006 0.715688699999999955 0.887281399999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.460553333998007 -63.7486350016012011 21.8810726769645996 -13.0715238140425996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481240093373845376 2481240093373845376 1567398189 2015.5 25.1183129415179991 0.761402189726034018 -3.72526456784776983 0.56767933523407299 -1.09963908356637008 0.834573155987985982 -1.31760659999999996 2.55674071589879004 1.94264220204272009 -6.90855714259009979 1.19222332067361991 0.16354376000000001 0.119247950000000005 0.0461056899999999978 0.127850009999999986 0.0284894400000000013 0.150103239999999999 0.0647968700000000064 -0.21780598000000001 -0.0680859999999999937 0.174146300000000004 106 0 106 0 1.84593009999999991 128.787003 1.55317468512549994 0.988707286117332051 31 false 0.0480944660000000024 1.54852161170645997 0.212982106261876997 0.0158438979999999986 12 9 1.72537049999999992 0 12 false 106 196.379167730753011 1.64894317193478002 119.094002 19.9556269999999998 11 100.482873161582006 9.2062095614904198 10.9146839999999994 20.3461590000000001 9 115.976915410481993 12.4045090234262005 9.34957700000000003 19.6009899999999995 1.10225440000000008 0 0.745168700000000017 0.39053154000000001 0.354637150000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.643502098763008 -63.8292496848426012 21.8771256225651989 -13.1855997574966004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481245968889112448 2481245968889112448 1031336530 2015.5 25.1246326385566014 0.071264823757319698 -3.70593465621124007 0.0562170070966108021 1.44309420008616995 0.0766837352404652062 18.8187789999999993 4.15312812655672037 0.156387041280106998 -1.2612847329438901 0.104533764456813005 0.21413857 0.304838569999999975 -0.110604010000000003 0.212650270000000002 0.0577693540000000019 0.287401499999999976 0.21023660999999999 -0.0335238049999999968 -0.0459660439999999976 0.225015999999999994 131 0 127 4 1.96507009999999993 154.559998 0.184075887610932992 1.27809035320169007 31 false 5.46493800000000007 1.50789752340329009 0.0185387963618627999 0.0420507749999999986 15 10 0.147535229999999989 0 15 false 126 6250.68139033444004 7.05214268079106965 886.35199 16.1985470000000014 14 2509.53101143690992 22.417034928228901 111.947500000000005 16.8524069999999995 14 5391.10617960926993 19.0630556982581005 282.803899999999999 15.4327249999999996 1.26396419999999998 0 1.41968249999999996 0.653860100000000055 0.765822400000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.637648169208006 -63.8090817513379989 21.8904865488668996 -13.1699735070101003 100001 4695.27979 4434.37988 4844.18994 0.201000005 0.0390000008 0.432999998 0.119199999 0.0198999997 0.209099993 200111 0.569248899999999947 0.534788799999999953 0.638202999999999965 0.141887440000000004 0.1260936 0.157681290000000002 +1635721458409799680 Gaia DR2 2481247171482576896 2481247171482576896 1141826200 2015.5 25.1223334756454015 0.909074911460205026 -3.6539655563990201 0.767289369577750957 2.47439650419233015 1.00197984253346006 2.46950719999999979 19.956604719608201 2.10289263464765996 -2.96817726942231985 1.80176636412786007 0.0578697960000000011 0.139987400000000012 -0.387674059999999987 0.151211519999999988 0.253463239999999979 0.248520540000000012 -0.378102329999999986 0.116776115999999999 -0.317108449999999986 0.151949539999999994 102 0 100 2 -1.35027900000000001 76.9957962 0 0 31 false 0.0429505629999999972 1.06234412214943008 0.257399910518769981 0.0808857800000000043 12 8 1.91923869999999996 0 12 false 101 138.589732372658005 1.53429023888070004 90.3282013 20.3340379999999996 7 48.6686639564207013 7.67082079748251999 6.34464900000000043 21.1332650000000015 10 218.381106144917993 14.7323190569603 14.8232680000000006 18.9138829999999984 1.92690870000000003 0 2.21938129999999978 0.799226760000000036 1.42015460000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.582601676709999 -63.7630946184281981 21.9080347042855017 -13.1208406167618001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247927394234496 2481247927394234496 1011595075 2015.5 25.1156832919480983 1.35190456468707998 -3.62006453542973006 0.958619221143584999 0.46399214234840902 1.38814556900412001 0.334253220000000018 -2.63851866501458021 3.40595481522254984 -7.06827562854812985 3.14143999279664987 -0.130704419999999988 -0.292421250000000021 -0.499277140000000008 0.417836580000000013 0.0919870299999999974 0.463152049999999982 -0.104325319999999999 0.128417449999999989 -0.579128740000000031 0.159134789999999998 98 0 98 0 1.22487889999999999 109.977997 1.90171332173806995 0.730862074124079997 31 false 0.0297370100000000012 1.35233835057402008 0.339556182551084995 0.0288450269999999988 11 7 3.15767599999999993 0 11 false 98 119.696465127899998 1.32356573123810994 90.4347992 20.4931620000000017 7 65.9755210672297068 10.9379838571032 6.03178069999999966 20.8029299999999999 9 86.3577345338981957 6.00390089925427972 14.3836040000000001 19.9211670000000005 1.2726630000000001 0 0.881763460000000054 0.309768680000000018 0.571994800000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.536286550909011 -63.7352794959418034 21.914574825086401 -13.0868884210982994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481247858674757888 2481247858674757888 925531999 2015.5 25.1252614955006983 0.626879259059385019 -3.61953240568082002 0.382744859668688986 6.01764076673523984 0.557365771850129033 10.7965739999999997 -35.4874515999794014 1.56631748052553998 -39.9287243963394971 0.704444630848742981 -0.107652239999999996 -0.0410137439999999978 -0.568029400000000018 0.272143960000000018 0.0581572399999999989 0.406936079999999978 0.0938632699999999986 0.240805240000000004 -0.122387239999999994 -0.00841461299999999961 122 0 122 0 4.7665753000000004 205.139008 1.73030481318556006 3.44340766153392996 31 false 0.105881980000000001 1.11678077971364997 0.125904453512707987 -0.0462709140000000033 14 9 1.4366296999999999 0 14 false 122 323.102545189937018 1.6734463680954601 193.076004 19.4150139999999993 10 32.8487313710757007 7.07680535198182969 4.64174560000000014 21.5600909999999999 13 522.325774977169999 18.3393129252665013 28.4812070000000013 17.9670659999999991 1.71826100000000004 0 3.59302520000000003 2.14507680000000001 1.44794850000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.555303964300009 -63.7307159197155002 21.9238953320611003 -13.0899285734033004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481250985410961024 2481250985410961024 158835103 2015.5 25.1158843555489 0.22329555306177401 -3.59248259964118022 0.13728642343990699 3.82161682636496991 0.200851082995512992 19.0271170000000005 47.102131591265902 0.553169419560560982 -34.8976692341190997 0.240591886454066012 -0.0735700499999999979 0.0342619119999999985 -0.507253900000000035 0.257728899999999983 0.00558300099999999976 0.387072619999999978 0.221378419999999992 0.16268283 -0.075093389999999996 0.0162965699999999998 132 0 132 0 3.05365850000000005 181.302002 0.60496688126776299 2.88257057095141001 31 false 0.759549559999999957 1.27568563350302999 0.0449853327798030028 -0.0512707530000000022 15 9 0.506706699999999954 0 15 false 132 1223.67601452093004 2.14740869825092018 569.838013 17.9692000000000007 12 202.758527605027012 10.5063168782293008 19.298725000000001 19.5839399999999983 14 1641.77722793820999 7.66922733261024003 214.073350000000005 16.7236350000000016 1.50737260000000006 0 2.8603057999999999 1.61474040000000008 1.24556540000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.510108792436 -63.7102496749052989 21.9252361188053015 -13.0613354059386992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378945372194816 2481378945372194816 1195208251 2015.5 25.6206246297623004 1.89221218697378002 -3.24310573513597999 1.38417040663004998 \N \N \N \N \N \N \N -0.107578179999999995 \N \N \N \N \N \N \N \N \N 132 0 132 0 45.6476019999999991 3122.15991 11.4896551549788004 181.014645860667997 3 false 0.00714593849999999985 \N \N -0.0212365800000000014 18 10 3.19449139999999998 0 19 false 158 382.212296972989975 5.34557225954572957 71.5007019 19.2326049999999995 18 442.905698127460028 20.1871992431203999 21.9399279999999983 18.7356100000000012 15 930.036569515028987 9.6712483697408107 96.1650999999999954 17.3406699999999994 3.59209349999999983 0 1.39493939999999994 -0.496995929999999975 1.8919353000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.190061948052005 -63.1777823349468974 22.5381095553762982 -12.9224430626168001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378150803128320 2481378150803128320 378439921 2015.5 25.6537710090650002 0.712080354281134031 -3.23975318949270008 0.489019001056468006 0.989317727087322019 0.909890840669231982 1.08729279999999995 -2.18945795824315992 1.24982768821109991 -1.22987275317457989 0.852531004873535947 -0.179389660000000006 0.545462899999999973 0.0451582629999999971 0.0710294249999999933 -0.44195905000000002 -0.00405477600000000039 0.058304652999999998 0.0251970590000000008 0.127470699999999992 0.163205939999999994 155 0 154 1 -0.556671440000000017 138.957993 0 0 31 false 0.0530718229999999971 1.59412391849975998 0.161637340488721998 -0.00873587399999999938 18 10 1.10921650000000005 0 18 false 152 172.531535813673003 1.54038636364481007 112.004997 20.0961950000000016 11 109.842480633706998 10.3648977211958009 10.5975459999999995 20.2494620000000012 14 122.063899094830006 7.82670208714850002 15.5958279999999991 19.5454520000000009 1.34413910000000003 0 0.704010000000000025 0.153266900000000011 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.252802620280988 -63.1603333679148022 22.5709471472735999 -12.9315021229840994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378322601832448 2481378322601832448 1554046588 2015.5 25.6460479624317017 0.529337710569425024 -3.22558155652812983 0.370185288658145983 0.719568554708919006 0.67041809717336498 1.07331310000000002 11.3256706122369 0.936815346817868044 -6.37822005670894043 0.613753142814818964 -0.23016433 0.535571800000000042 0.0942747740000000056 0.0536840999999999985 -0.491062580000000026 -0.019962324 0.119227739999999999 0.0315182769999999973 0.116381780000000004 0.121645435999999996 165 0 163 2 3.3366617999999999 224.203003 1.17693015909080989 1.39603932721051005 31 false 0.0932216700000000065 1.37558598513176999 0.115179028375827996 -0.0328790499999999999 19 10 0.829582000000000042 0 19 false 163 262.592051211635976 1.39021946793877005 188.884995 19.6401620000000001 13 66.6887916416573034 10.9380653728171993 6.09694599999999998 20.7912560000000006 14 349.544288249759006 9.17145134768528081 38.1122099999999975 18.4031640000000003 1.585094 0 2.38809199999999988 1.15109440000000007 1.23699760000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.223745027490992 -63.1509462812266023 22.5689400377813989 -12.9154876303074992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378086378735104 2481378086378735104 1428592996 2015.5 25.6828473112998985 0.0845603994063084952 -3.23725903872322007 0.0693391191752164016 0.781379252842945959 0.101547290013047006 7.69473270000000031 15.8212836545051996 0.175236969420305005 5.05684527448863985 0.141067025327100998 0.0793242200000000008 0.359268900000000002 -0.0662329599999999935 0.0558943969999999984 -0.281374750000000007 -0.00942634699999999985 -0.108825710000000006 0.0490773129999999974 0.154517920000000003 0.280459799999999981 167 0 165 2 -1.23027229999999999 138.380005 0 0 31 true 2.58093210000000006 1.50435593180491001 0.0247647408959753984 0.0646805399999999947 19 10 0.16649739999999999 0 19 false 163 2683.76211729882016 2.68328546687033986 1000.17999 17.1165069999999986 16 1164.14146776902999 7.00025572948842001 166.299849999999992 17.6863750000000017 14 2241.77557229676995 6.74611100369746985 332.306370000000015 16.3854390000000016 1.26908299999999996 0 1.30093569999999992 0.569868099999999989 0.731067660000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.308210764597987 -63.1454066960020981 22.5995857788981986 -12.9398617424650997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378288242082560 2481378288242082560 121427151 2015.5 25.6755805213283992 0.238966243178636989 -3.23092273829549015 0.185934414390156011 0.251461378385816003 0.289562569733327002 0.868418099999999971 -0.775547285291810051 0.506923152005212985 -4.20016291049129986 0.366823043681968997 -0.0708284750000000018 0.329751760000000005 0.0679214999999999958 -0.0144556279999999999 -0.361475199999999997 -0.0744504899999999942 0.0110116399999999996 -0.000593294200000000029 0.164238350000000005 0.10845784 165 0 164 1 0.793553500000000023 172.869003 0.041008792197356099 0.00481201887927493015 31 false 0.330816500000000013 1.63334473151760995 0.0594945634180540986 0.0211241500000000013 19 10 0.44898070000000001 0 19 false 162 562.43457736295295 1.73768793089448992 323.667999 18.8131869999999992 14 295.835310307344002 10.4152493440245006 28.4040549999999996 19.173763000000001 15 408.584772826869028 10.7768652321546003 37.9131399999999985 18.2337150000000001 1.25244810000000006 0 0.9400482 0.360576630000000009 0.579471599999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.287634824206009 -63.1428793576279972 22.5950548520388992 -12.9313009993418007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378082083651712 2481378082083651712 301356233 2015.5 25.6883280255417006 0.252788982175389976 -3.23819896488600012 0.195074510704373011 0.696628550989777051 0.310211617761708025 2.24565599999999987 14.1702518344969999 0.503623691157388031 -5.26374327866315994 0.343765981911935026 0.0316883660000000025 0.371843699999999999 -0.00887392899999999915 0.121540090000000003 -0.331448999999999994 0.068562739999999997 0.0737419599999999953 0.0278707299999999998 0.159557179999999993 0.216089639999999999 176 0 175 1 1.70502090000000006 202.666 0.207190170709889987 0.105655574402683 31 false 0.287852380000000019 1.61132663177933999 0.0654737215243192949 0.0470074340000000007 20 10 0.451222400000000023 0 20 false 172 515.333017088065048 1.85595156428829999 277.665009 18.9081459999999986 17 300.932298373916979 8.58826692243193079 35.0399320000000003 19.1552159999999994 16 362.811444991679025 7.1012496788131596 51.0912099999999967 18.362717 1.28798999999999997 0 0.792499540000000002 0.247070309999999987 0.545429199999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.320013926369001 -63.1438587660329986 22.6044520432451996 -12.9427484423455006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378082083652096 2481378082083652096 894590788 2015.5 25.6901594041275985 0.686539764224276983 -3.23544898142462989 0.519622055284792994 -0.411040198162072989 0.840206728563789973 -0.489213169999999975 13.6933301161369005 1.31240479618271011 -20.3756078424890994 0.918616378024106006 -0.0104907980000000008 0.399592549999999991 -0.0120808310000000002 0.146837159999999994 -0.35407095999999999 0.084446170000000001 0.00036094905000000002 0.0328230860000000013 0.176294459999999986 0.234944089999999994 158 0 158 0 0.601400550000000034 163.067001 0 0 31 false 0.0444034099999999973 1.48684661682302011 0.176370587629979009 0.0388862970000000002 18 10 1.17889620000000006 0 18 false 158 153.09723115933599 1.38463410380134011 110.569 20.2259479999999989 12 85.1726237958546051 12.3078779703135996 6.9201712999999998 20.5256390000000017 12 143.036665354738005 12.9629831599584993 11.0342400000000005 19.3733019999999989 1.49061669999999991 0 1.15233610000000009 0.299690249999999991 0.852645899999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.320990681951997 -63.140586008896797 22.6072344631878011 -12.9408637342764994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190718429968256 2481190718429968256 988228638 2015.5 25.7174976414960987 1.79260244048013995 -3.24432155027729019 2.77983163869120986 \N \N \N \N \N \N \N 0.42161417000000001 \N \N \N \N \N \N \N \N \N 74 0 73 1 2.0011559000000001 93.2833023 3.90280337133846 1.55925285274113001 3 false 0.0134654230000000007 \N \N 0.368573929999999994 9 6 11.3923889999999997 0 9 false 74 88.165619325916893 1.55711788635935 56.6209984 20.8251169999999988 7 81.5070469499266039 15.3068024835194993 5.32489059999999981 20.5733999999999995 8 63.6695864736129025 11.0999091260545999 5.73604599999999998 20.252089999999999 1.64663540000000008 0 0.321310040000000019 -0.251716600000000013 0.573026660000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.383898420380007 -63.1366111342392031 22.6299302975308017 -12.9591525986659999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190757084978560 2481190757084978560 1248595774 2015.5 25.7309206157076993 0.12595442569583401 -3.23605920630655985 0.115837390220547995 -0.174416650855099997 0.170118710600430989 -1.02526439999999996 -0.292092496069620011 0.259617288837036997 -2.57947132099904008 0.213188612733322014 0.205102649999999997 0.332205740000000027 -0.0219097879999999995 0.0790197799999999978 -0.346630449999999979 0.00318093200000000003 -0.0842213599999999951 0.0581137349999999997 0.189097430000000011 0.384337929999999994 139 0 138 1 0.765591860000000013 145.173004 0.164199063436027998 0.29650852862803101 31 false 1.35836179999999995 1.64841041026276991 0.0348222404844776984 0.20857487999999999 16 9 0.251460399999999973 0 16 false 135 1635.16884510272007 2.58541809497262998 632.458008 17.6544589999999992 14 823.200942579042021 14.8023595573510995 55.6128199999999993 18.0626239999999996 13 1222.38581701774001 14.5242030508381994 84.161990000000003 17.0439000000000007 1.25099420000000006 0 1.01872439999999997 0.408164980000000011 0.610559460000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.402533307553 -63.123309611993399 22.6458361139168005 -12.9563971229566999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190855868833920 2481190855868833920 1457563471 2015.5 25.7499501066522996 0.114928890517663002 -3.22946113279401015 0.0952911277241585974 2.06852553233518988 0.141047230084219988 14.6654820000000008 7.0488065697672404 0.236216290275044011 7.26988407004148041 0.171202720682728987 0.180783809999999989 0.354399530000000018 -0.0461242160000000026 0.151406380000000007 -0.236873499999999987 0.15804797000000001 0.178848730000000011 -0.0114404160000000001 0.0624796670000000026 0.292972180000000026 156 0 154 2 2.09514330000000015 187.395004 0.342331064974544019 1.80123376794976009 31 false 1.57876159999999999 1.3676612524621099 0.0280510473096672007 0.124877619999999995 18 10 0.219222589999999995 0 18 false 153 2134.69610668833002 3.28223472288174989 650.379028 17.3650260000000003 14 557.183197368094966 9.28379517359872963 60.0167470000000023 18.4863929999999996 16 2393.96928281116016 28.2116665605120005 84.8574200000000047 16.3141229999999986 1.38246969999999991 0 2.17226980000000003 1.12136649999999993 1.0509033000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.433887295840009 -63.1090443991356977 22.6664554475129982 -12.9572465745686003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190619646025344 2481190619646025344 1500744203 2015.5 25.7748459557900986 0.136502506914309013 -3.24500040169384008 0.113211169039882001 1.68574424058651995 0.17146945680991299 9.8311630000000001 16.3982889695260994 0.286646262550856012 -10.0083803221976009 0.21285684316314199 0.178785799999999995 0.323851349999999982 0.0770331199999999966 0.129729079999999997 -0.285059600000000024 0.156918780000000008 0.0957038000000000055 -0.111474550000000006 0.0407240300000000013 0.340702349999999987 141 0 140 1 -0.531928700000000032 125.809998 0 0 31 false 1.18573949999999995 1.45022047678782995 0.0348846784078203978 0.11702688 16 10 0.269225449999999977 0 16 false 139 1400.4678563054099 2.47994569720377012 564.71698 17.8226830000000014 15 441.831702828170023 13.8542167348479008 31.8914970000000011 18.7382470000000012 14 1503.70108339105991 20.8634050787882011 72.0736160000000012 16.8190160000000013 1.38920200000000005 0 1.91923139999999992 0.915563600000000033 1.00366780000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.498353278172004 -63.1120809397607019 22.6843141270289017 -12.9808352738238995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190890228572416 2481190890228572416 244374787 2015.5 25.7550451610920987 0.072730795303366999 -3.22544394131154988 0.0611843544707146025 1.92458295940408997 0.0896314966432815996 21.4721720000000005 -2.48614420508990008 0.147427048603182009 -14.1173972669341996 0.117532924528848004 0.185590670000000013 0.39291847000000002 -0.025074372000000001 0.114153580000000004 -0.217521300000000001 0.125356419999999996 0.0976394800000000007 -0.0344006940000000025 0.0443708999999999978 0.330689369999999982 156 0 156 0 0.780351699999999981 164.264999 0.0983016014469623028 0.311989224490263006 31 false 4.0075396999999997 1.42587257112689003 0.0185272853046785993 0.1296186 18 10 0.142979650000000014 0 18 false 155 4035.28053458902014 4.15250572989219968 971.77002 16.6736809999999984 18 1343.22720674177003 21.1275584245254002 63.5770199999999974 17.531015 17 4115.28804528880028 24.8270075055942989 165.758510000000001 15.7259200000000003 1.35269780000000006 0 1.80509570000000008 0.857334139999999967 0.947761540000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.440092655582987 -63.1032017734484967 22.6728251940405983 -12.9553808143968006 100001 3937.95996 3857.93994 4190 0.0111999996 0 0.298799992 0.00400000019 0 0.0839999989 200111 0.587383749999999982 0.51884359999999996 0.612002970000000035 0.0747521599999999981 0.0675409500000000024 0.0819633699999999937 +1635721458409799680 Gaia DR2 2481190546631187968 2481190546631187968 1211792914 2015.5 25.7854584967732983 1.28311041853819008 -3.24335629781203005 1.07499919791281995 -0.00274531568106528004 1.57948671834503007 -0.00173810619999999996 0.594291647864962025 2.6689421989805 -1.32704170963286994 1.87633257666231001 0.164744449999999987 0.318007439999999975 -0.0367594919999999978 0.166948469999999988 -0.252176899999999982 0.179291830000000013 0.223223749999999999 -0.0228120440000000001 0.058590330000000003 0.261247459999999987 152 0 151 1 16.547619000000001 648.794983 7.66814241325325963 21.7268635946246 31 false 0.0119862574999999999 1.32310062128887007 0.282168267051280008 0.126218049999999998 18 10 2.4194545999999999 0 18 false 151 178.530085809957001 1.95344333291164007 91.3925018 20.0590879999999991 12 176.314427242248001 7.0253816259300903 25.0967750000000009 19.7356680000000004 11 430.364428445967008 12.8852026740309 33.3998950000000008 18.1773300000000013 3.3981884 0 1.5583381999999999 -0.32341956999999999 1.88175770000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.517790749189004 -63.1059426466558975 22.6950465381195983 -12.9832009896196006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192024101214336 2481192024101214336 1000832619 2015.5 25.7929759134163987 1.05399930589728008 -3.23732717176233997 1.1371595453951 1.32573412833269 1.36488763409617997 0.971313800000000005 31.2688253439463004 2.59850847891086989 -4.81718381521765959 3.07478958111917988 0.155553849999999994 0.27829870000000001 -0.0519297869999999981 -0.0628095800000000037 -0.401692780000000027 -0.261598889999999973 -0.504519460000000031 0.0437851699999999983 0.181571299999999991 0.588461499999999971 118 0 117 1 0.305878219999999978 115.957001 0 9.49502669955479904e-16 31 false 0.0203324390000000008 1.31586880194662004 0.332116007359777976 0.172322909999999996 14 9 3.20943639999999997 0 14 false 114 98.182109646324804 1.23199702087752994 79.6934967 20.708283999999999 7 39.6274479895128025 18.4588758198345992 2.14679650000000022 21.3563979999999987 11 118.956920709038002 7.78510466378020993 15.2800670000000007 19.5734460000000006 1.61520639999999993 0 1.78295139999999996 0.648113249999999974 1.13483810000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.526820840274013 -63.0972253276825015 22.7044838016343 -12.9803525153352002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191341200530688 2481191341200530688 1129089473 2015.5 25.8367229603555018 0.0473134927716735987 -3.24388414374978984 0.0401721459736242986 1.39093469885014009 0.057801151600940702 24.0641350000000003 29.3320964999718008 0.102982256514364004 -2.48065904212066002 0.0818405654874640037 0.203424700000000014 0.299875530000000001 0.0381155239999999979 0.0788755639999999952 -0.224764629999999993 0.0895840299999999951 -0.00140538199999999994 -0.0963026099999999968 0.0423633640000000006 0.345100550000000006 151 0 150 1 -0.925141800000000014 129.190994 0 0 31 false 10.2772260000000006 1.50909041793381005 0.0129643814317443994 0.0899574759999999946 17 10 0.104185730000000004 0 17 false 150 8993.89158522213984 7.19254691371750976 1250.44995 15.8034960000000009 15 4029.67362209739986 12.1766435752966995 330.934700000000021 16.3382129999999997 15 7110.21500530636968 14.8193261025566994 479.79340000000002 15.1322139999999994 1.23860609999999993 0 1.20599940000000005 0.534716599999999986 0.671282770000000029 \N \N 0 \N \N \N NOT_AVAILABLE 152.619829676721992 -63.0838549188862032 22.7436988980798986 -13.0025014706076991 100001 4928.5 4861 5169.91992 0.104999997 0.0160000008 0.316100001 0.0469999984 0.00789999962 0.154499993 200111 0.622570199999999963 0.565782369999999979 0.639980299999999946 0.206029999999999991 0.187577930000000004 0.224482060000000011 +1635721458409799680 Gaia DR2 2481188519406953984 2481188519406953984 121953828 2015.5 25.8884077236786005 0.142859650004237004 -3.24522970834898983 0.119631948470829003 2.12846056056649013 0.178642995618803008 11.9146040000000006 21.8260355702778988 0.317724767136544017 -14.6391677823243 0.210053583155219992 0.188241450000000005 0.208943340000000005 0.0828814999999999968 0.163124770000000002 -0.324217900000000003 0.21881123999999999 0.232237849999999996 -0.14407621000000001 0.0127886590000000008 0.287798940000000003 152 0 149 3 1.2795901999999999 166.091003 0.439907121479817975 1.99242433148317 31 false 1.01949550000000011 1.33699053713106997 0.0350049186871689011 0.0974049300000000007 17 10 0.292049969999999992 0 17 false 147 1500.01340133444 2.53659741691993013 591.348999 17.7481270000000002 16 325.564593925059 11.2711722874076994 28.8847139999999989 19.0697960000000002 15 1870.13463582263989 20.0304067080620989 93.3647840000000002 16.5822369999999992 1.46378640000000004 0 2.48755840000000017 1.32166859999999997 1.16588969999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.723345816825002 -63.0622436011857985 22.7924501138869999 -13.0227099753084996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384507356569216 2481384507356569216 1552055624 2015.5 25.6599732051789005 1.59299518253918992 -3.11913027649573005 2.22363707144176015 \N \N \N \N \N \N \N -0.0253016019999999994 \N \N \N \N \N \N \N \N \N 79 0 79 0 -0.550573700000000055 66.8768997 0 0 3 false 0.0183920620000000007 \N \N -0.0991166799999999987 9 7 6.28545900000000035 0 9 false 78 86.1788192039175982 1.52045521307215004 56.6795998 20.8498650000000012 5 30.6253542697729984 5.77065455766251034 5.30708499999999983 21.6361850000000011 8 110.488783116166005 7.69769708972406974 14.3534849999999992 19.6536240000000006 1.63745729999999989 0 1.98256110000000008 0.786319729999999995 1.1962413999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.148918530684995 -63.0490684247212982 22.6223646787208992 -12.8216123111483995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188519407081728 2481188519407081728 593593532 2015.5 25.8891921950300983 0.128312588670978001 -3.24423939327716981 0.105484812645568998 2.15948338533222994 0.161578652985991 13.3649050000000003 21.7872519439073997 0.276819843626607998 -13.9917511557409995 0.186011739535253989 0.177436800000000006 0.253268839999999995 0.0784931900000000043 0.154589160000000003 -0.308137099999999997 0.193735839999999993 0.180514409999999986 -0.122151575999999998 0.0443363150000000011 0.288397579999999987 152 0 151 1 0.728610300000000044 158.104004 0.149444144850086003 0.237729966373677992 31 false 1.27526990000000007 1.24427876476377008 0.0321601846724529974 0.0966854399999999975 17 10 0.25480425000000001 0 17 false 150 1535.72754318524994 3.08747729866892007 497.404999 17.7225800000000007 17 325.238762137566027 12.7054197300191003 25.5984270000000009 19.0708829999999985 16 1977.62948543112998 8.41402118827597079 235.039749999999998 16.5215570000000014 1.49952909999999995 0 2.5493260000000002 1.34830279999999991 1.20102310000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.723927668150992 -63.0610088282397001 22.7935711590999013 -13.022076559377 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191165106810752 2481191165106810752 109582865 2015.5 25.8590151789301004 0.289697224624192007 -3.23127728707448991 0.24118701224160799 0.653932869637170011 0.353716511525131005 1.84874840000000007 12.0321197927467001 0.623546954298619949 -9.56094919514793062 0.396042587355922016 0.233104850000000002 0.205216229999999999 0.0995910400000000057 0.211309019999999986 -0.303686699999999976 0.248533470000000006 0.249448940000000008 -0.104888620000000002 0.0659548340000000038 0.296821920000000017 140 0 138 2 0.909151139999999969 147.669998 0 0 31 false 0.270313099999999973 1.73143304427124001 0.0697658124471972063 0.115561269999999994 16 10 0.569394049999999985 0 17 false 138 490.768577645720995 1.72829694940301004 283.960999 18.9611739999999998 15 280.744902743783996 8.60811800165125085 32.6139700000000019 19.2306080000000001 16 369.399807296202994 15.7551773075051997 23.4462490000000017 18.3431780000000018 1.32474800000000004 0 0.887430199999999947 0.269433980000000017 0.617996199999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.65162643084301 -63.0627136185469013 22.7696971366675989 -12.9989533538320003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191474344454144 2481191474344454144 333763587 2015.5 25.8782077620183983 0.599597582157819997 -3.24186242932786017 0.491353944267948983 2.2929641861783101 0.766152284853603982 2.99283080000000012 -1.61873438489992005 1.30760288672583003 -7.38111500668003018 0.806619136492137012 0.152045559999999996 0.199936029999999987 0.0882204500000000058 0.180018189999999995 -0.388144900000000015 0.24228732 0.254652949999999989 -0.142465869999999994 0.0238002860000000004 0.270420160000000021 149 0 149 0 2.52897719999999993 190.518997 2.03341260248215994 2.69410103544037982 31 false 0.0592844449999999981 1.25021327273718996 0.140668073045042002 0.0957672150000000028 17 10 1.18421850000000006 0 17 false 148 219.007909712252001 1.39246321684355001 157.281006 19.8372150000000005 12 66.959091057458096 10.6674053223845 6.27698 20.7868649999999988 14 320.158317015953003 10.9213462919374997 29.3149130000000007 18.4985080000000011 1.7675955000000001 0 2.28835679999999986 0.949649799999999988 1.33870700000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.699898291212008 -63.0637329858307965 22.7839979532508004 -13.0158374742147007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191543063934336 2481191543063934336 489046900 2015.5 25.8728888309947003 1.7209795255795699 -3.22269454583272008 1.41111328126218005 \N \N \N \N \N \N \N -0.0114225669999999998 \N \N \N \N \N \N \N \N \N 80 0 79 1 3.28929230000000006 120.736 3.19608938655856001 3.35058316017844016 3 false 0.0165828299999999998 \N \N 0.00605529799999999976 9 7 4.56533099999999958 0 9 false 79 95.5734475817471036 2.29087516058917995 41.7192001 20.7375219999999985 7 93.0756647913523949 18.5163261953410014 5.02668099999999995 20.4292979999999993 8 163.313585204610007 10.1293994104954006 16.1227319999999992 19.2293640000000003 2.68264099999999983 0 1.19993400000000006 -0.308223719999999979 1.50815769999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.670673900503999 -63.0488918817304977 22.7861548007143 -12.9960588881037999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191611783410944 2481191611783410944 571373000 2015.5 25.9067109488508009 2.19973787823315003 -3.22369849521539997 2.08327994082001 \N \N \N \N \N \N \N 0.402359399999999978 \N \N \N \N \N \N \N \N \N 126 0 125 1 29.5764390000000006 1405.34998 13.1525074136970996 196.000033756149008 3 false 0.00478753770000000037 \N \N 0.183080140000000002 15 10 4.38630299999999984 0 15 false 130 168.447284476458009 2.64536202128750997 63.6764984 20.1222059999999985 13 147.444359545478989 8.44606624477373913 17.4571630000000013 19.9298169999999999 13 386.343656742606015 8.56478005600970071 45.1084140000000033 18.2944850000000017 3.16887279999999993 0 1.63533210000000007 -0.192388530000000002 1.82772059999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.73844832047601 -63.0348450458669021 22.8180115623193984 -13.0093949192926992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379044155787776 2481379044155787776 114667432 2015.5 25.618943392781599 4.13685625890000974 -3.22508392273361011 5.83747491445160982 \N \N \N \N \N \N \N 0.536202199999999962 \N \N \N \N \N \N \N \N \N 54 0 54 0 34.8622060000000005 1830.98999 15.7077989321570008 136.297129892224007 3 false 0.00379568660000000014 \N \N 0.356776450000000023 10 7 10.3910300000000007 0 11 true 83 317.700481723538019 5.32970715959103991 59.6094017 19.4333209999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.169323797809994 -63.1622906324994986 22.5433119437604006 -12.9050680749299005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379048451408896 2481379048451408896 94774428 2015.5 25.6272833750099984 0.0543017128144145031 -3.22201019077868001 0.0416450428371449993 1.13678125824994991 0.0652728536670097031 17.4158340000000003 16.6911218246259985 0.103314772091964005 1.59556033857547996 0.086955116576393196 -0.0709688299999999966 0.487910999999999984 -0.00978308900000000002 0.0147690070000000007 -0.336878149999999987 -0.135666559999999992 -0.168295770000000011 0.106258064999999999 0.212526080000000006 0.200377780000000005 146 0 144 2 -0.662470699999999968 127.613998 0 0 31 true 9.06058600000000069 1.53444275994761004 0.0139710010536849994 0.00539251839999999993 17 10 0.100689769999999998 0 17 false 144 8019.42456373734967 7.21892018104408972 1110.89001 15.9280080000000002 15 3831.83618830524983 23.018763081760401 166.465769999999992 16.3928699999999985 13 6028.83641973860995 11.7629670824018007 512.526860000000056 15.3113364999999995 1.22959850000000004 0 1.08153340000000009 0.46486187000000001 0.616671560000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.182960622135994 -63.1558975299386987 22.552415494305599 -12.9052738477725999 100001 5019.75977 4982.20996 5152.3999 0.00800000038 0 0.0873999968 0.00549999997 0.000899999985 0.0439999998 200111 0.686356659999999952 0.651472399999999952 0.696741460000000035 0.269479750000000018 0.23658462999999999 0.302374870000000018 +1635721458409799680 Gaia DR2 2481379147237355136 2481379147237355136 1453435538 2015.5 25.6317885843251005 2.02796011620618 -3.20318410459614 2.0928907546022999 \N \N \N \N \N \N \N 0.254480329999999977 \N \N \N \N \N \N \N \N \N 74 0 74 0 3.59848329999999983 119.528999 7.16139113821864992 3.8551398455594299 3 false 0.00728553000000000013 \N \N 0.130256239999999995 9 8 5.48742399999999986 0 9 false 76 88.9826087654105038 2.17059441171188006 40.9945984 20.8151040000000016 7 28.2819446632307994 7.15781276921488008 3.95119929999999986 21.7226140000000001 7 82.3775556604139041 9.76384695500500932 8.43699699999999986 19.9723970000000008 1.24360819999999994 0 1.75021739999999992 0.907510759999999972 0.842706700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.173774085747993 -63.1369915794278995 22.5638121552214983 -12.8894232425833 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378326896903040 2481378326896903040 1411644250 2015.5 25.6570761451878013 0.0483048128960295031 -3.22300333394843008 0.0391472604514630021 1.02050874868604002 0.0584187689298594978 17.4688510000000008 16.8216301657199985 0.101292942135215003 1.46175184760835997 0.0816553207748214049 0.0419326199999999968 0.353641270000000008 -0.0615045469999999997 0.0250212159999999989 -0.296732930000000006 -0.0405462460000000011 -0.113628229999999997 0.0407526870000000027 0.150402619999999987 0.243709700000000001 181 0 180 1 -0.993419649999999987 156.445007 0 0 31 true 7.77404259999999958 1.53372492764196999 0.0128376001020558995 0.0335038969999999978 21 10 0.0997385600000000039 0 21 false 179 7070.65378719986984 4.81352394372864012 1468.91003 16.0647160000000007 19 3336.0186951434398 18.5099360954265002 180.228530000000006 16.5433179999999993 18 5349.32743151386967 12.2804902151311008 435.595579999999984 15.4411719999999999 1.2283653000000001 0 1.10214609999999991 0.478601459999999979 0.623544699999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.243189329904993 -63.1438228422982988 22.5804174979042003 -12.9171408555612999 100001 4979.41992 4924.93994 5026.66992 0.117700003 0.0140000004 0.252299994 0.0577000007 0.00789999962 0.128999993 200111 0.73277060000000005 0.719060499999999991 0.749073699999999953 0.297403340000000016 0.260759830000000026 0.334046840000000012 +1635721458409799680 Gaia DR2 2481378356961567616 2481378356961567616 9045487 2015.5 25.6623123400822983 19.4572129020065994 -3.21683215839532011 4.07604306857584042 \N \N \N \N \N \N \N -0.218658490000000011 \N \N \N \N \N \N \N \N \N 64 0 64 0 0.318142150000000012 61.8334007 1.88779718531558993 0.26083780295498199 3 false 0.0123118229999999995 \N \N -0.00677418700000000009 9 5 106.561965999999998 0 9 false 65 70.3525881767399 1.81447878439313004 38.7728996 21.0701660000000004 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.247639396717005 -63.1359888055806024 22.5877340540015012 -12.9133255028509009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379765710407040 2481379765710407040 729782230 2015.5 25.6430181714008008 4.57903265904386991 -3.18975524494072005 8.5374282092323206 \N \N \N \N \N \N \N -0.875682650000000007 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.280394699999999997 44.9626999 0 0 3 false 0.0165619549999999997 \N \N -0.1634052 6 5 86.4450760000000002 0 6 false 50 80.3696456584237069 1.68879279230401003 47.5900002 20.9256360000000008 6 58.1009762640856025 16.3601636157579016 3.55136900000000022 20.9409300000000016 5 58.3726909323718033 9.16463589900273057 6.36934100000000036 20.3463950000000011 1.44922459999999997 0 0.594533899999999949 0.0152931209999999998 0.5792408 \N \N 0 \N \N \N NOT_AVAILABLE 152.183165406937007 -63.1200202047510999 22.5795751406665985 -12.8810608116171004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379765710309120 2481379765710309120 549588009 2015.5 25.6477088413529017 0.28273965085290198 -3.18472326558695995 0.211563091787032004 1.45070458213672993 0.34349110031298602 4.22341250000000024 9.30997576148678085 0.588072597126731988 -28.2968508366074012 0.385208562107538011 0.00307907959999999996 0.325901659999999982 -0.00708624200000000041 0.0818033600000000055 -0.337001900000000021 0.0490883140000000009 0.0678870699999999938 -0.00540196659999999957 0.136322130000000014 0.172900100000000001 180 0 178 2 2.70767500000000005 227.610001 0.972778311580765997 2.83440602828166988 31 false 0.227222619999999986 1.46345718447753992 0.0697050808647945025 0.0220928300000000008 21 10 0.521981699999999993 0 21 false 175 516.385455851926054 1.70094190358514008 303.588013 18.9059309999999989 18 117.903684995590993 8.65657212351332994 13.6201349999999994 20.1725700000000003 19 682.952508226872055 9.06272919574490032 75.3583699999999936 17.6759430000000002 1.55088840000000006 0 2.49662600000000001 1.26663780000000004 1.22998809999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.187641307978993 -63.1134506486708986 22.5859413508113001 -12.8781044211182003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382411410167936 2481382411410167936 29362992 2015.5 25.6164423066920008 0.37942521005770502 -3.17477253243957014 0.262255291372420984 1.11888646475805009 0.427267072238537993 2.61870499999999984 12.9819521206788995 0.79889182646051804 -14.0680663014244001 0.461582705472193988 -0.0391470270000000009 0.296726880000000026 -0.158908219999999989 0.102701223999999994 -0.256421029999999994 0.0414128529999999995 0.117051370000000002 0.096434900000000004 0.175790919999999989 0.065126139999999999 147 0 146 1 -0.724527099999999979 128.552002 0 0 31 false 0.166164010000000001 1.40537224430373997 0.0906754340785532048 -0.0183845400000000013 17 10 0.705519140000000045 0 17 false 148 352.733898822665992 1.67386002336921003 210.731003 19.3197480000000006 13 111.043150890145 10.6436981434846007 10.43276 20.2376600000000018 12 382.795322270585984 10.4793015018519995 36.5287059999999997 18.3045019999999994 1.40003119999999992 0 1.93315700000000001 0.917911499999999991 1.01524539999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.115906075824 -63.1180753337328966 22.5599191550921994 -12.8573671401957998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382892446631680 2481382892446631680 256907492 2015.5 25.6164480006735999 0.778663868697664019 -3.13927064041134019 0.766880776955471966 1.40525925843846999 0.965529638024615 1.45542839999999996 -2.21023363448161003 1.80400822525432991 -6.67185014497206019 1.9442389806609901 0.0812073799999999957 0.281956140000000022 -0.0239598700000000012 -0.0306478349999999983 -0.390863200000000022 -0.270735090000000012 -0.577560100000000021 0.0691510439999999948 0.252044349999999973 0.500135239999999981 141 0 139 2 1.65985369999999999 162.292007 1.45308800986380993 0.707446994837772958 31 false 0.0345497280000000018 1.41130511588918006 0.21753191459742599 0.0646950599999999987 16 9 2.06292769999999992 0 16 false 139 139.388533523847997 1.27805328045831001 109.063004 20.3277989999999988 10 36.1727420235023018 4.2193946878204196 8.57296900000000051 21.4554350000000014 11 190.848540810141998 8.16263317173176084 23.3807560000000016 19.0601979999999998 1.62869400000000009 0 2.39523699999999984 1.12763600000000008 1.26760099999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.081828189253997 -63.0860956016882 22.5733199857740985 -12.8243569583988002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382789367292928 2481382789367292928 964527730 2015.5 25.6203023015729983 1.04538399626362999 -3.1676743101436502 0.690594848181230958 0.584554297777563958 1.16146168104465008 0.503291959999999983 25.5762872468325995 2.03103436256244985 -2.5728671203991702 1.37127548839948998 -0.242547380000000007 0.402505200000000007 0.126199320000000004 -0.0128383400000000002 -0.412543400000000005 -0.121643050000000003 -0.111955369999999998 0.0212424299999999996 0.194754659999999996 0.0556789400000000032 122 0 120 2 0.836499749999999986 127.443001 0 0 31 false 0.0310037100000000003 2.06712800429624011 0.230258071893422012 -0.0612418100000000007 14 10 1.79247390000000006 0 14 false 118 121.793127249294002 1.16325227385328001 104.700996 20.4743080000000006 12 60.115467837849998 6.04229014117200958 9.94912000000000063 20.9039229999999989 13 92.4838456836018992 11.5030384163154 8.03994900000000001 19.8467559999999992 1.25293860000000001 0 1.05716699999999997 0.429615020000000014 0.627552030000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.116759211800002 -63.1100075037932982 22.5662735948586999 -12.8521846235375996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382789367296256 2481382789367296256 488749575 2015.5 25.6189101712372995 0.15889392323273599 -3.16052270062448981 0.114907896388038999 0.077937811683717606 0.181271106182338992 0.429951640000000024 12.5094518061022004 0.354098656212684992 -4.17153101162896967 0.222382935674847987 -0.0309305199999999995 0.255010999999999988 0.14086361 -0.0222790000000000002 -0.22383457000000001 -0.0687636900000000023 0.0948632300000000067 -0.0843680599999999947 0.192250489999999996 0.00337002000000000005 159 0 158 1 1.44049190000000005 178.865997 0.0702589325156413036 0.0344743047689074975 31 false 0.818019199999999946 1.62325623008380004 0.0376950934640482016 -0.00666582070000000006 18 10 0.314286999999999983 0 18 false 154 1097.98562355388003 1.87940825824641999 584.218994 18.0868740000000017 18 573.025843409360959 15.3178267020714998 37.409084 18.4559539999999984 15 761.365092002723031 8.20422055961319963 92.801636000000002 17.557938 1.21530819999999995 0 0.898016000000000036 0.369079600000000008 0.528936399999999973 \N \N 0 \N \N \N NOT_AVAILABLE 152.10712046639199 -63.1041706003496969 22.5676463758721013 -12.8450231777932995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379804365652096 2481379804365652096 1544187459 2015.5 25.6481974527556993 0.121742963548864006 -3.16725162464843013 0.0907187175054170042 0.927453060512938965 0.144300719293061014 6.42722399999999983 17.8639975977421983 0.263367471063460978 -4.09489383197646983 0.175550236484682987 0.0294791419999999998 0.267679239999999985 0.00991700199999999941 0.0561379700000000023 -0.299189450000000023 0.0299436489999999993 -0.0149064699999999998 -0.0337845300000000001 0.143111180000000004 0.176977040000000002 176 0 175 1 2.93290139999999999 229.203003 0.325794322491749 1.32625011392207992 31 false 1.22961870000000006 1.49977613527053011 0.0308166872317486989 0.0019838350999999998 20 10 0.236761360000000004 0 20 false 173 1669.54011978367998 2.51096115435623002 664.901001 17.6318739999999998 17 682.887973330010027 10.0985866186923996 67.6221299999999985 18.2655139999999996 18 1424.03092168658009 8.55533735331703937 166.449420000000003 16.8781220000000012 1.26197559999999998 0 1.38739199999999996 0.633640300000000045 0.753751750000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.171791079885992 -63.0975104596298024 22.5929988134151998 -12.8620370751616999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379971868841856 2481379971868841856 948806931 2015.5 25.6493428645223993 1.11354552743071 -3.15268948349658995 1.55600043608505989 \N \N \N \N \N \N \N 0.00663632599999999968 \N \N \N \N \N \N \N \N \N 112 0 111 1 0.366771130000000001 110.742996 0 0 3 false 0.0214889179999999992 \N \N 0.140847529999999999 13 7 7.61298660000000016 0 13 false 113 96.7842703868496983 1.1826736629058201 81.8350983 20.7238539999999993 10 74.0783081498607032 9.48966414239803946 7.80620959999999986 20.6771600000000007 10 63.1128713458410999 5.88209562502220962 10.7296569999999996 20.2616249999999987 1.4174945000000001 0 0.415534970000000003 -0.0466938019999999995 0.462228780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.160059536022999 -63.0839026078305025 22.5995833313536991 -12.8489163166502003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379903151630080 2481379903151630080 1450836373 2015.5 25.6619766567138008 1.70083358049072997 -3.15768627769866983 1.46801919432028005 2.47572276742819009 2.25489017839792982 1.09793500000000011 5.94600833093524983 2.91401593518709978 -20.7235208014547005 3.34183677481532015 -0.353058219999999978 0.631456259999999991 -0.0458664820000000001 0.292450040000000022 -0.627267959999999958 -0.348408879999999976 -0.756186840000000027 0.258175280000000007 0.485902000000000001 0.537401099999999965 98 0 98 0 -0.697401049999999967 83.188797 0 1.04199042298598005e-15 31 false 0.0209140179999999995 1.08864687816527006 0.354419133139488973 -0.0960733000000000004 12 8 3.70663639999999983 0 12 false 99 92.0348335114186966 1.40794301658781995 65.3683014 20.7784839999999988 6 37.6936181970804967 10.8989668507574002 3.45845799999999981 21.4107190000000003 7 86.7468780889994946 21.173036660591201 4.0970449999999996 19.9162849999999985 1.35210220000000003 0 1.49443440000000005 0.63223459999999998 0.862199799999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.189951174724001 -63.082907990150602 22.6097304257296017 -12.8582022789265 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379971868752512 2481379971868752512 1516390860 2015.5 25.6597439017510993 0.722134046887193959 -3.15431923337254982 0.665475998944186964 -0.422224132342917002 0.864411863307032013 -0.488452500000000012 -2.0198164600905999 1.61798779083018007 -6.42019775493254041 1.70268844947427 -0.0593304899999999996 0.280971699999999991 -0.0780774899999999994 0.0413753430000000019 -0.425331799999999982 -0.239744399999999996 -0.61168100000000003 0.0884478499999999945 0.257357720000000012 0.439481850000000007 135 0 133 2 0.231982230000000011 131.069 0 0 31 false 0.0470391599999999965 0.927130359198852005 0.191856688810296994 0.0160755380000000003 16 9 1.79170099999999999 0 17 false 142 155.073528958629993 1.39515488502324003 111.151001 20.212019999999999 13 63.7055064867510978 10.3789243181904993 6.13796799999999987 20.8409459999999989 14 179.700325585112012 9.55628828533543029 18.8044049999999991 19.125547000000001 1.56961560000000011 0 1.7153988 0.62892530000000002 1.08647350000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.182278841315991 -63.0808482311478969 22.6088741073088002 -12.8542513177202995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382995525737472 2481382995525737472 1391291058 2015.5 25.6364820764785009 1.70691437203600005 -3.13905745867053998 1.30036465264758005 1.92108241957248005 1.94976430448079996 0.985289599999999988 1.84881485241865007 3.79810610654328018 -0.0755692955950646034 3.57187007638987009 -0.292979839999999991 0.282291230000000004 -0.224625020000000009 0.240985000000000005 -0.555021349999999969 0.0751224759999999936 -0.361214219999999975 -0.132651340000000006 -0.0298085000000000017 0.497075900000000015 97 0 96 1 1.33499900000000005 109.469002 0 0 31 false 0.0172738820000000008 1.5916357874498499 0.38300717853354499 -0.0412953120000000007 12 9 3.9608150000000002 0 12 false 100 88.547941225563207 1.38332768771717007 64.0108032 20.8204199999999986 9 54.8002108647303032 8.02503805934344072 6.82865430000000018 21.0044329999999988 10 51.2458343745312987 9.9654990999476194 5.14232499999999959 20.4877740000000017 1.19761169999999995 0 0.516658799999999974 0.184013370000000009 0.332645420000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.121422426142004 -63.0772132370293974 22.5924781642610988 -12.8315167851864 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382999821319552 2481382999821319552 92970736 2015.5 25.6258623304649014 0.296316467815324003 -3.13728644079787999 0.251581562810727022 2.47663745825461001 0.369131670445450977 6.70936060000000012 -3.7159909689059698 0.667162169089330015 -2.17685800212596003 0.427902996720138984 0.171826850000000003 0.189502090000000012 0.113838314999999995 0.196203340000000004 -0.40410950000000001 0.297165159999999984 0.324119099999999993 -0.195990880000000006 -0.0623035470000000008 0.331140460000000025 156 0 155 1 3.11109109999999989 209.761002 1.01850362472266998 2.80855447602144981 31 false 0.232724039999999993 1.20372201653439004 0.069604073256249302 0.0566457199999999966 18 10 0.617135050000000018 0 19 true 154 547.841021551448989 1.6335792038641801 335.362 18.8417299999999983 14 155.945689913634993 15.2954612715326004 10.1955530000000003 19.8689560000000007 16 704.297383108910026 14.0951875151111992 49.9672240000000016 17.6425300000000007 1.57024220000000003 0 2.22642519999999999 1.0272254999999999 1.19919970000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.098629360710987 -63.0802259956873002 22.5830333339386016 -12.8259696630834998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382995525821056 2481382995525821056 1395097448 2015.5 25.6394398680312996 1.33669195002256003 -3.13395105963076004 1.96780013402754994 \N \N \N \N \N \N \N -0.105605420000000005 \N \N \N \N \N \N \N \N \N 87 0 87 0 1.63897490000000001 104.047997 2.09364765035569 0.718637225756949993 3 false 0.0217626430000000017 \N \N -0.0149739669999999995 10 7 5.44688700000000026 0 10 false 88 96.5377483312232982 1.28345630164350011 75.2170029 20.726624000000001 9 73.8610479577209986 17.9650871460472992 4.1113660000000003 20.6803500000000007 9 90.5245326759273041 10.8794993222397007 8.32065200000000083 19.870004999999999 1.70281149999999992 0 0.810344700000000029 -0.0462741850000000024 0.856618899999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.122393952958987 -63.0713307118238973 22.5972210372041999 -12.8278545481832005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382961165999616 2481382961165999616 218042575 2015.5 25.6563311139372985 0.530579108490790041 -3.13713184857400984 0.395208673524584997 0.58686257415406895 0.653488930756980002 0.898045199999999988 1.78610165301358004 1.21336739534551996 -7.31024753031401975 0.666246475088685952 0.0393941849999999982 0.131530200000000014 -0.121499665000000007 0.152513939999999987 -0.483341340000000008 0.25424728000000002 0.227419690000000008 -0.0990878199999999931 -0.0570976960000000033 0.262965600000000022 152 0 151 1 1.16462979999999994 166.091995 0.399612393900216023 0.121044610428724997 31 false 0.0873203050000000008 1.32023769866298002 0.124347839167242999 0.0262151699999999994 18 10 1.08781860000000008 0 18 false 150 233.885600082193008 1.3176771004549499 177.498001 19.7658580000000015 12 96.9878351234282974 5.4478356415479503 17.8030030000000004 20.3845959999999984 13 197.102565258764997 8.21480785564251015 23.9935699999999983 19.025188 1.25741140000000007 0 1.35940740000000004 0.618738200000000016 0.740669249999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.158980163201988 -63.0668588475734992 22.6121069716581999 -12.8370152094431003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228498688 2481380006228498688 1576584044 2015.5 25.658089669753199 0.40394096141052499 -3.1406730440239401 0.399647952985054011 -1.01614126256265003 0.599376625997570023 -1.69533010000000006 0.0384000982648005015 1.05457143707607992 0.150248136293063994 0.699230433760870018 0.219807900000000001 -0.0234682200000000014 0.13980149 0.244528679999999998 -0.646386099999999963 0.459328899999999984 0.410976830000000015 -0.391396670000000002 -0.31782611999999999 0.515899400000000008 157 0 155 2 1.39425120000000002 174.729004 1.00502049117824011 1.15292773750831001 31 false 0.126797999999999994 1.50230221134016007 0.102792751780967001 0.0707266299999999987 18 9 1.04177990000000009 0 18 false 155 330.264470960605024 2.75006477061105992 120.093002 19.3912100000000009 13 216.019602325617001 6.45054128436107987 33.4885999999999981 19.5151560000000011 15 228.011396124315013 6.87600672139821967 33.1604400000000012 18.8670299999999997 1.34447099999999997 0 0.648126599999999997 0.123945236 0.52418136999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.165873456826006 -63.0692827364801971 22.6124460422084006 -12.8409539934645007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382961166003072 2481382961166003072 1152968046 2015.5 25.6548060383715004 0.243981037982125004 -3.1295077075976101 0.175365802488547995 1.71409358057290007 0.292072559520982988 5.86872530000000037 10.9126653206616009 0.515797140864513004 17.4137539566042996 0.323906558473974981 0.0257522069999999992 0.287366239999999995 0.00791376400000000021 0.0822126640000000047 -0.298741429999999974 0.0594893900000000031 0.0295199509999999991 -0.0355014199999999988 0.143396560000000006 0.167679560000000005 172 0 172 0 2.38312580000000018 213.662003 0.544200545103833977 0.975390111662678971 31 false 0.323543199999999975 1.32766479420298 0.0587221253121449974 0.0169088750000000003 20 10 0.457471940000000021 0 20 false 171 591.721273646077975 1.52305897930973999 388.507996 18.7580719999999985 16 137.217034459086989 11.6500020046636994 11.7782839999999993 20.0078679999999984 18 750.686934115060012 10.0769829230256001 74.4952100000000002 17.5732730000000004 1.50054430000000005 0 2.43459499999999984 1.24979590000000007 1.18479920000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.148629994406008 -63.0606569657072029 22.6135301931702983 -12.8293653203977005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383270403656448 2481383270403656448 1465711722 2015.5 25.6114059149932984 0.22036810786331601 -3.11318381790515986 0.17243823769643099 0.335730033359172009 0.257153621759031004 1.30556209999999995 8.17997461651408919 0.460888848258147021 -18.4528428269780989 0.327361355252505981 0.131993849999999996 0.31078956000000002 0.0432719329999999985 0.0860615200000000025 -0.198753540000000006 0.0399291179999999996 -0.0217836149999999992 -0.0209426319999999992 0.174702809999999986 0.220589549999999995 153 0 152 1 2.08675800000000011 184.983994 0.63424033522825396 1.68826105018328998 31 false 0.401642979999999983 1.5331508035227801 0.0635010787341926952 0.0480663799999999988 17 10 0.414875150000000026 0 18 false 153 756.79323657565601 2.38721870961223992 317.019012 18.4909229999999987 16 394.915531819267017 8.1936235301360405 48.1979100000000003 18.8601279999999996 15 593.551758925738 12.7069608739183995 46.7107600000000005 17.8282740000000004 1.3061259999999999 0 1.03185459999999996 0.36920546999999998 0.66264915000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.04681301921201 -63.0647772146360026 22.5783597226961987 -12.7982472050826992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384713512672128 2481384713512672128 904204242 2015.5 25.6395505833167014 0.315447083016103025 -3.10339658255022011 0.229742163660251991 0.229561082190977012 0.368943910415495013 0.622211340000000002 10.2782927350278008 0.66954511165291497 -12.7431373739806002 0.421045486961924009 0.0540965100000000004 0.271106300000000022 0.00466158330000000006 0.0992292899999999978 -0.268376400000000015 0.0789536900000000069 0.047015750000000002 -0.0287367250000000012 0.147981439999999992 0.17224007999999999 169 0 166 3 1.64651499999999995 191.639999 0.864218823193825036 1.7662273551946901 31 false 0.193871529999999986 1.58435197457542998 0.0762679324921748947 0.0164220389999999994 19 10 0.593477499999999991 0 19 false 162 439.616473421588012 1.49330581733253998 294.390991 19.080680000000001 16 255.183118639487986 16.7320601325024008 15.2511469999999996 19.3342589999999994 15 327.498869857222019 7.62629378016865012 42.9433859999999967 18.4738959999999999 1.32543250000000001 0 0.860362999999999989 0.253578199999999976 0.606784800000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.093312774366012 -63.0437632138457005 22.6088504233947987 -12.7994820644741996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384507354237056 2481384507354237056 1450774696 2015.5 25.6462654758997992 0.648193596034503994 -3.11492955896344004 0.472195901474780022 0.936743557864341048 0.781004898905525047 1.19940800000000003 -0.782635476229507021 1.3918862694829599 -0.319857762673699975 0.877384583576496957 0.0109982420000000001 0.257822629999999997 0.0950790640000000048 0.068670060000000005 -0.343478830000000013 0.0666758999999999963 0.0408355779999999974 -0.0956388039999999939 0.12461788 0.17203273999999999 159 0 158 1 0.689010440000000002 164.671005 0 0 31 false 0.0494807469999999985 1.50624023944004004 0.153068369453874004 0.0314093100000000028 18 10 1.23452730000000011 0 18 false 158 163.562094398217994 1.56130359287227005 104.760002 20.154160000000001 13 108.993078050194001 10.2923393743665006 10.5897279999999991 20.2578899999999997 15 97.2262344985405065 9.92463338993525035 9.79645599999999916 19.7924609999999994 1.26080130000000001 0 0.46542929999999999 0.103731155000000005 0.361698149999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.117691827101993 -63.0512376759193032 22.6108952330293995 -12.8126726238951996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378704854024960 2481378704854024960 388403832 2015.5 25.6964608625597002 0.228844514254696013 -3.21205010322020001 0.184747539506794012 0.667629886960538044 0.275787268902029981 2.42081480000000004 7.67549582634041005 0.480996339179175003 -0.673273429251114996 0.356116234683069022 0.0790683850000000049 0.321800470000000005 -0.0364679430000000027 0.0852442600000000023 -0.303153300000000014 0.0496541100000000013 -0.00483489999999999961 0.0141596880000000001 0.132194060000000002 0.257711530000000022 170 0 164 6 2.8652432000000001 214.947006 0.898319514388249973 3.52732761899622016 31 false 0.34334806000000001 1.38953939052351005 0.0641962372355917993 0.0676998099999999992 20 10 0.437565270000000006 0 20 false 161 749.976933373501993 2.26680256507063005 330.85199 18.5007459999999995 16 264.229918319813976 9.77874971411720928 27.0208280000000016 19.2964319999999994 14 871.678825741348987 9.70808771982088992 89.7889299999999935 17.4110280000000017 1.51459159999999993 0 1.88540459999999999 0.795686699999999969 1.08971789999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.31086594671001 -63.1167921409234012 22.6220666745816992 -12.9214186173505006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378460040775040 2481378460040775040 1048559802 2015.5 25.6970184573764016 0.60121990209784304 -3.22028650441622011 0.459972074964125011 2.13539177018378012 0.754523426782327977 2.83011979999999985 3.28579066811589016 1.13959916002601003 -1.13037336040028991 0.748868572076757055 0.128232960000000007 0.427258550000000015 0.039531216000000001 0.19576753999999999 -0.254697899999999977 0.158994450000000009 0.239449770000000006 -0.00737338999999999963 0.142071320000000001 0.237700070000000013 163 0 161 2 1.54162439999999989 184.100006 1.62074970921813999 1.68038648993846995 31 false 0.0597000099999999978 1.19803505853903003 0.142238838165211989 0.0998288799999999948 19 10 1.02446130000000002 0 19 false 161 211.432936580475996 1.7614213626645201 120.035004 19.8754349999999995 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.319940910600991 -63.1239555224442981 22.6194901115026994 -12.9292825677609997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378700558944768 2481378700558944768 550827322 2015.5 25.697407209374699 0.524871021200538967 -3.20351287659129014 0.366502613459188997 0.23576213685584399 0.651111232667196949 0.36209195999999999 -0.87657938977130101 0.941115267075879003 -5.76328923820601968 0.593837891297415044 -0.0977497999999999978 0.493112830000000002 -0.00142587269999999993 0.155713220000000013 -0.413575860000000017 0.0909721799999999997 0.136277900000000007 0.039378284999999999 0.15454409999999999 0.192386339999999989 167 0 166 1 2.27541569999999993 204.597 1.24415532947620999 1.51012627950417011 31 false 0.088116739999999999 1.48822000675201993 0.116879480653145004 0.0142001820000000004 19 10 0.835965340000000001 0 20 false 165 261.861908451159991 1.4728358547414 177.794006 19.643184999999999 16 80.7180570278133018 6.57225682314761972 12.2816340000000004 20.5839609999999986 17 268.999379613622978 9.87430341879545992 27.2423649999999995 18.6875420000000005 1.3355032 0 1.89641949999999992 0.940776799999999969 0.955642699999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.304490523521991 -63.1087011473322974 22.6261891697053983 -12.9138270854474992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379525195311744 2481379525195311744 729012828 2015.5 25.6737890794562986 1.38334701814019989 -3.19659865677281996 2.16977548526108999 \N \N \N \N \N \N \N -0.0628473300000000068 \N \N \N \N \N \N \N \N \N 100 0 100 0 2.44852330000000018 132.072998 2.99466403992652985 1.34564671119630996 3 false 0.0166996199999999984 \N \N 0.0302807949999999992 12 8 6.1332399999999998 0 12 false 104 94.3923831928365047 1.36707361947622008 69.0469971 20.751024000000001 9 65.2240806894909042 10.5509178662344993 6.18183949999999971 20.8153690000000005 10 69.5522905031566978 7.54605291579448956 9.21704300000000032 20.1561410000000016 1.42783100000000007 0 0.659227400000000019 0.0643444060000000068 0.594882970000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.250910089861009 -63.1127829460073002 22.606300785833799 -12.8987251102309006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379632566971648 2481379632566971648 1096177409 2015.5 25.6931200997912015 1.10712749706492009 -3.18051005926911001 1.70834004765666991 \N \N \N \N \N \N \N 0.343383219999999989 \N \N \N \N \N \N \N \N \N 102 0 101 1 -0.0278587159999999986 94.9512024 0 0 3 false 0.0248442959999999984 \N \N 0.161067870000000002 12 7 4.22129439999999967 0 12 false 101 109.594924172316993 1.40464125458493005 78.0233994 20.5888899999999992 9 87.0616588350225982 2.81115760664890013 30.9700370000000014 20.5018220000000007 11 80.5660951679633968 8.91820058180229047 9.03389549999999986 19.9965399999999995 1.52952109999999997 0 0.505281450000000021 -0.0870685600000000032 0.592350000000000043 \N \N 0 \N \N \N NOT_AVAILABLE 152.273763565319001 -63.0898815158998971 22.6307833593365011 -12.8908619446812001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379662633493888 2481379662633493888 1577532445 2015.5 25.6965343232972003 1.20105972335341993 -3.17624560930608979 0.847466677210533037 2.83416024313063986 1.43276115309855001 1.97811080000000006 3.08241783074783005 2.18277220982465003 -4.40476711759875972 1.49982776485003 0.139943050000000013 0.433453379999999999 0.0669459500000000041 0.170792040000000006 -0.164306659999999993 0.0837468900000000044 -0.093934279999999995 0.0255819470000000007 0.23224220000000001 0.269315360000000004 112 0 111 1 0.311241869999999976 109.912003 0 9.76005508936516968e-16 31 false 0.0221469070000000004 1.17040055486721006 0.296804097854210025 0.0349577500000000027 13 9 1.97613039999999995 0 13 false 112 98.6741170005573025 1.26347906286569001 78.0971985 20.7028579999999991 9 50.9706396649506033 11.9513973611406996 4.26482700000000037 21.0830880000000001 11 133.841469709177005 5.82990338506539008 22.9577500000000008 19.4454439999999984 1.8729541999999999 0 1.63764379999999998 0.380229949999999983 1.25741389999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.276423224637995 -63.084556352704503 22.6356440568631001 -12.8881497663881994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378528760251904 2481378528760251904 808781296 2015.5 25.7194857883107986 0.705593285378035007 -3.21937835019061014 0.654006665001697018 0.0891065459873943005 0.932089299018384998 0.0955987199999999981 3.5336016342896901 1.56365469525160994 -4.22520900891874973 1.36296699221185991 0.153166369999999996 0.258097829999999973 -0.171148749999999988 -0.0218803210000000012 -0.421068879999999979 -0.215678750000000002 -0.452787280000000014 0.226955280000000009 0.346186820000000006 0.452000139999999995 133 0 132 1 1.86464940000000001 158.322006 1.8309231033290001 1.48590140269535009 31 false 0.0458810249999999989 1.38562175045912994 0.194272391613156986 0.142645080000000007 15 9 1.59905870000000006 0 16 false 129 183.314802270025012 1.66319740808874994 110.218002 20.0303730000000009 11 103.399432484835998 9.00157773356901991 11.4868129999999997 20.3150919999999999 11 126.364403195392995 7.41269724847119971 17.0470199999999998 19.5078579999999988 1.25338400000000005 0 0.807233800000000001 0.284719469999999975 0.522514339999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.363668488075007 -63.1133200433197032 22.6412358124930009 -12.9366869427382003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378631839467648 2481378631839467648 363947084 2015.5 25.7296357812201997 1.02271823805650008 -3.20783824697309994 1.04599177848930003 0.115102230112071005 1.22385876135044991 0.0940486199999999994 4.21189019069607973 1.89105326227219006 -18.4747488385130012 2.23167122355678016 0.353351650000000017 0.52500239999999998 -0.109993240000000006 -0.166833160000000008 -0.0144125329999999999 -0.331733300000000009 -0.665248599999999968 0.0179773919999999983 0.089138480000000006 0.539614260000000012 115 0 114 1 0.938777740000000027 122.734001 0 0 31 false 0.0307324879999999988 1.42580632683149 0.255984049857508 0.159353119999999987 14 8 2.37146519999999983 0 14 false 114 129.123019613176012 1.46894683059602005 87.9018021 20.410855999999999 11 59.0949158377844981 9.75291540709100069 6.0592050000000004 20.9225120000000011 11 143.679910024908992 12.2767349988191992 11.7034300000000009 19.36843 1.57040019999999991 0 1.55408290000000004 0.511655799999999994 1.04242710000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.372631598587986 -63.0985067234173016 22.6552587917115993 -12.9296812935719991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378631839468160 2481378631839468160 1613082635 2015.5 25.7207704511706012 0.108688453373469995 -3.20186116624417005 0.0930242817041675996 0.253794936961618978 0.142187345928520004 1.78493330000000006 10.5923203307632008 0.226771164480557008 -17.8013656010416987 0.180103852028406008 0.152291370000000009 0.308784159999999974 0.00190803179999999998 0.0184047950000000016 -0.317498620000000009 -0.113448136000000005 -0.259498329999999999 0.085655190000000006 0.305226060000000021 0.306863339999999984 142 0 142 0 1.35240329999999997 159.888 0.207993639094150001 0.643999630904122045 31 false 1.81229390000000001 1.67067585747532998 0.0286770120501191016 0.111496449999999997 16 9 0.215363599999999988 0 16 false 140 2172.36630636870996 3.09589539610079001 701.692017 17.3460329999999985 15 1212.78307394886997 11.1428567569415993 108.839510000000004 17.6419299999999986 16 1416.78067622410003 10.6566794206905993 132.947660000000013 16.8836629999999985 1.21046049999999994 0 0.758266450000000036 0.295896529999999991 0.46236991999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.349259492838996 -63.0970101392371987 22.6490680274442013 -12.9208684677573995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378631841373824 2481378631841373824 3927829 2015.5 25.7301507097446986 1.19385747043112 -3.20038455888605 1.22578220862660991 \N \N \N \N \N \N \N 0.366254120000000016 \N \N \N \N \N \N \N \N \N 98 0 96 2 -0.207511279999999992 87.5776978 0 0 3 false 0.0210515109999999984 \N \N 0.279354800000000014 11 7 4.99990459999999981 0 11 false 93 107.553194366653003 1.34237422832378006 80.1215973 20.6093079999999986 5 54.2728730054827011 13.0052327813030004 4.17315669999999983 21.0149299999999997 7 165.491864377154997 5.64148396900417026 29.3348100000000009 19.2149800000000006 2.0433119999999998 0 1.79995159999999998 0.405622480000000007 1.39432909999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.366436750805008 -63.0915811459354003 22.6585609712327987 -12.9229386633419008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378567415081088 2481378567415081088 541302443 2015.5 25.7465446432183001 0.0833571434491640062 -3.21246019244870995 0.0843750567504902016 4.77446511026419973 0.107249282540966995 44.5174560000000028 25.3980321898406984 0.205548922930919004 -12.0646872088588992 0.168334153959706995 0.375201339999999994 0.132498150000000009 0.233196870000000001 0.264613299999999996 -0.39138373999999998 0.412468520000000005 0.399091360000000006 -0.337452699999999994 -0.244892909999999991 0.567246999999999946 137 0 137 0 4.16097830000000002 210.895004 0.329355496549656013 3.91341841003172997 31 false 3.42458960000000001 1.2933095422763099 0.024050894010541099 0.133936940000000004 16 10 0.220395000000000008 0 16 false 135 5494.58784036923043 7.03774796280978965 780.731018 16.3385280000000002 13 1173.51919395245 18.8558008842835001 62.2365070000000031 17.6776620000000015 13 6795.78884608011958 26.2333002456271984 259.052000000000021 15.1813199999999995 1.45039239999999992 0 2.49634169999999989 1.33913419999999994 1.15720749999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.410643575016991 -63.0952597310973999 22.66962410971 -12.9401862033898993 100001 3767.05005 3386 4217.1001 0.124700002 0.0900000036 0.603999972 0.0666999966 0.0505000018 0.353599995 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378563122799616 2481378563122799616 101750970 2015.5 25.7464391160689985 1.18718224594077992 -3.20967146603469011 1.16281183920357001 0.667876416229395975 1.47914485174929999 0.451528759999999973 38.4106895243363979 2.8157537917663098 -37.0246403985936965 3.14913123183122989 0.141503109999999988 0.258343549999999977 0.122577615000000001 -0.128922129999999996 -0.350553659999999989 -0.246461719999999995 -0.443871620000000022 -0.061233990000000002 0.194681880000000002 0.447740099999999974 105 0 104 1 0.965278149999999946 112.486 2.05411107120654002 1.0405498680393801 31 false 0.019132942 1.01171347033552994 0.341622660946823975 0.136968139999999988 13 9 3.20547300000000002 0 13 false 108 103.634812792976007 1.57531483465470989 65.7866974 20.6496010000000005 6 47.8661465664638968 12.1685924392772993 3.93358100000000022 21.1513179999999998 9 135.881751745897986 9.70117436494722973 14.0067319999999995 19.4290179999999992 1.77303250000000001 0 1.72229959999999993 0.501716599999999957 1.22058299999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.407731243240988 -63.0927998108352028 22.6705754780774988 -12.9375540231662995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378563119991168 2481378563119991168 239331819 2015.5 25.7380413016920997 0.66178202409176401 -3.20367308470284984 0.665306159376493955 0.251130851865214999 0.912636575930581007 0.27517069999999999 24.0365251932860993 1.46732956459858999 -15.0117974302029005 1.00084399214312003 0.423835699999999982 0.172600029999999988 0.313243099999999997 0.391534920000000008 -0.462675840000000005 0.564441700000000046 0.557441399999999976 -0.365267000000000008 -0.236793129999999991 0.592919500000000044 125 0 125 0 1.76377579999999989 148.679993 0.630073047923798035 0.241622367676686989 31 false 0.071325369999999999 1.41840175933196999 0.168891983838595994 0.219767059999999986 14 8 1.53211530000000007 0 14 false 123 214.032808909085986 1.41324502928831008 151.447998 19.862165000000001 11 61.4147778666556974 8.93939374203161918 6.87012770000000028 20.880707000000001 12 303.923537331507987 13.1324871433306001 23.1428779999999996 18.5550099999999993 1.70692669999999991 0 2.3256969999999999 1.01854130000000009 1.30715559999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.385268433461988 -63.0910850867983015 22.6648375631283017 -12.9288932621136006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381213114925056 2481381213114925056 1060754846 2015.5 25.6946972830703011 0.0732403911997843993 -3.15171712490688982 0.0550905562444249999 32.5294057121342988 0.0821439162107187038 396.005069999999989 394.545350163066018 0.16572379690306599 -148.827427611757997 0.119690344048702005 0.0428769069999999988 0.21977084999999999 -0.159372459999999994 0.011815107 -0.229643020000000003 -0.0315955840000000029 -0.204806010000000011 0.0527337000000000014 0.147158600000000001 0.189453969999999999 155 0 152 3 17.4317600000000006 692.361023 0.442625530047365989 22.4260988835788986 31 true 4.01815459999999991 1.23211807913376004 0.0216564791211815988 -0.00834965499999999923 18 10 0.154568630000000012 0 18 true 152 19931.1994057564989 11.9428604844285005 1668.88 14.9395319999999998 17 2304.00481531261994 21.9270186187671001 105.076065 16.9451789999999995 16 28946.2587719313015 49.5588361451871009 584.078700000000026 13.607939 1.5679069000000001 0 3.3372402000000001 2.00564669999999978 1.3315935000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.249128884388995 -63.0632903749830973 22.6431457579137003 -12.8646650863834999 100001 3806.29004 3543.19995 4103.70996 0.31400001 0.200900003 0.476999998 0.196999997 0.119999997 0.3134 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228494848 2481380006228494848 424967389 2015.5 25.6657768746246013 0.444311895489772013 -3.14650396511949992 0.303706998641972981 2.18331907219105004 0.549275338099686983 3.9749083999999999 13.2190903643263002 0.850440220525775947 16.5202581010338996 0.519839770962538972 -0.117447815999999997 0.413325429999999994 0.0321094899999999975 0.110534859999999999 -0.448773680000000008 0.0825001300000000048 0.0550912319999999969 -0.0287928250000000011 0.126958220000000011 0.187589969999999995 167 0 167 0 2.68846229999999986 214.565994 1.05178374464187008 1.51412494046211998 31 false 0.120923320000000001 1.34241889742418996 0.0977790636484924952 -0.0342192300000000033 19 10 0.753839499999999996 0 19 false 166 314.12088921413698 1.3337251631609901 235.520996 19.4456230000000012 15 104.059858510588001 14.7802327464968997 7.04047499999999982 20.3081800000000001 17 397.96773357758201 8.98771106709897971 44.2790999999999997 18.2622999999999998 1.59819869999999997 0 2.04587940000000001 0.862556459999999969 1.18332290000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.186736380413009 -63.0711894902891999 22.6175677000072 -12.8491990003519003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228498048 2481380006228498048 1613094534 2015.5 25.6645073731089006 0.225465396016926001 -3.14213361419392001 0.165432896800010998 0.233166683960513987 0.269351951786662991 0.865658040000000017 1.68470459116810001 0.486598022039508027 -2.33074180665628017 0.311369206494847006 0.0135981690000000002 0.254809300000000016 0.0179306509999999988 0.0674024450000000053 -0.336041450000000019 0.0488769640000000019 0.00404585760000000013 -0.040271073999999997 0.141736090000000009 0.176113710000000007 176 0 174 2 1.95627149999999994 206.813995 0.577404105293470971 1.24093402245892004 31 false 0.366503950000000023 1.64958997244395 0.0559344513761596968 0.00537521199999999987 20 10 0.432457900000000006 0 20 false 173 671.656050976548045 1.73154873283936994 387.893005 18.6204989999999988 17 381.307984711932022 17.6457060502665009 21.6091100000000012 18.8981999999999992 17 487.088260898627027 9.1701117366121796 53.1169399999999996 18.0428999999999995 1.29291810000000007 0 0.855299000000000031 0.277700420000000003 0.577598599999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.180014245548989 -63.067807528957303 22.6180070727499007 -12.8446687411937006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381414977770368 2481381414977770368 856059361 2015.5 25.6798520575478015 0.584926992851611982 -3.14289692768777007 0.412307762084655027 -0.137919978893589007 0.706590761492012054 -0.195190740000000001 1.04696918563718011 1.19421233295572993 0.703093034316418009 0.757405396940840969 -0.0238531550000000009 0.318548620000000005 -0.00212350280000000004 0.0961290149999999982 -0.369031339999999985 0.0546933859999999966 -0.0397641060000000005 -0.0106469300000000006 0.162089989999999989 0.204810650000000011 163 0 163 0 -0.725537960000000037 144.820007 0 0 31 false 0.062750360000000005 1.78102857278158999 0.137031542704034004 0.0111830260000000004 19 10 1.06056109999999992 0 19 false 162 187.718140410056009 1.51777214418528006 123.68 20.0045999999999999 15 122.902201974571994 6.68506548880372975 18.3845920000000014 20.1274900000000017 15 130.120975596904003 8.01932694488261966 16.2259220000000006 19.4760509999999982 1.3478888 0 0.651437759999999977 0.122888565000000005 0.528549200000000052 \N \N 0 \N \N \N NOT_AVAILABLE 152.211192908448993 -63.0618188346411017 22.6323331977667017 -12.8510125998744993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381518056994560 2481381518056994560 1216470099 2015.5 25.6852007892631988 0.323339520582936024 -3.12416239878257995 0.249314812851229001 0.795885935389471055 0.392499283423973999 2.02773860000000017 1.5399347906899099 0.737649159220284956 0.29744565899110198 0.488554557552318025 0.0353704499999999977 0.158531769999999989 0.0529971399999999981 0.0345147359999999973 -0.373924340000000022 0.036361723999999998 -0.0311604720000000016 -0.0769539199999999951 0.139397099999999996 0.185271459999999999 169 0 166 3 1.16531790000000002 182.104996 0.600872321916590013 0.657175705231270002 31 false 0.174439189999999994 1.75565323089776992 0.0886587279378139026 0.0176633999999999992 20 10 0.656021999999999994 0 20 false 165 391.238914399294003 2.5721414479685798 152.106003 19.2072600000000016 18 255.719699542389009 10.4686646565287003 24.4271560000000001 19.3319779999999994 17 259.934285077578011 11.7271614959439994 22.1651500000000006 18.7247619999999984 1.31800279999999992 0 0.607215900000000031 0.124717709999999996 0.482498170000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.203780802146014 -63.0426296943006008 22.6444923212001008 -12.8355540481499002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381449337509888 2481381449337509888 865897524 2015.5 25.6929803879386007 1.48061586692154989 -3.14091294533634979 1.46209152600526004 \N \N \N \N \N \N \N 0.133734030000000004 \N \N \N \N \N \N \N \N \N 92 0 92 0 1.49676919999999991 107.504997 0 0 3 false 0.0161977999999999983 \N \N 0.0764831299999999964 11 8 4.37216950000000004 0 11 false 93 89.9306728992186066 1.60425546415180009 56.0575981 20.8035959999999989 9 78.9039277288650993 12.3893214201987991 6.3687043000000001 20.6086400000000012 8 72.3772803653589989 12.2476983016992005 5.90945959999999992 20.112915000000001 1.68219819999999998 0 0.495725629999999973 -0.194955829999999997 0.690681459999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.23531923790901 -63.0543170037565019 22.6455850501966012 -12.8539873655785009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381621136210944 2481381621136210944 1213341017 2015.5 25.6993329487097988 0.248756367617527008 -3.12313522199263005 0.168422217196290996 1.00764019917135994 0.283409994899831985 3.55541520000000011 18.0405180895952988 0.592394588323441051 -4.90093387479619036 0.314201951805892998 -0.0305896940000000006 0.0830048250000000043 0.194072810000000012 -0.0292826300000000005 -0.288004460000000018 -0.00529668849999999965 0.113531015999999998 -0.171331020000000001 0.185730260000000008 -0.0211436259999999987 159 0 157 2 1.81841199999999992 185.199005 0.34118810153316198 0.369006070908308004 31 false 0.367897269999999998 1.61270022495666998 0.0600935804623424982 -0.0541214459999999967 18 9 0.524861040000000001 0 18 false 154 613.140041514590962 2.31457411304885996 264.903992 18.7194670000000016 17 236.499120937145989 14.8789826149349995 15.8948450000000001 19.4168149999999997 14 595.090995079993036 8.64148021676878031 68.8644699999999972 17.8254620000000017 1.35628090000000001 0 1.59135249999999995 0.697347640000000046 0.894004800000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.230803219753994 -63.0355529023808003 22.6583390006748999 -12.8397866440999007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380354121475968 2481380354121475968 1192329601 2015.5 25.7480700395195008 3.28197128821501982 -3.17078343556670017 2.96073574371920989 \N \N \N \N \N \N \N 0.235883559999999992 \N \N \N \N \N \N \N \N \N 66 0 66 0 59.9362300000000019 5991.62988 14.7199121109002 454.905950183142011 3 false 0.00443405800000000027 \N \N 0.196410329999999994 13 9 6.18746500000000044 0 16 false 139 784.836522303224001 11.1035861972431 70.683197 18.4514180000000003 12 1143.92457494478003 18.6762706198299995 61.250160000000001 17.7053949999999993 11 2452.42736607027018 18.5262990213916012 132.375460000000004 16.2879299999999994 4.58229449999999972 0 1.41746520000000009 -0.746023199999999997 2.16348839999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.373316613349999 -63.0571336298404006 22.6867953846420001 -12.9019872254096004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381552417231616 2481381552417231616 1066015476 2015.5 25.7185726337526006 0.401453133571853027 -3.12601997395759978 0.302287146167767973 0.376443751166359974 0.463464046858746981 0.812239399999999945 10.8975705424571991 0.923533638111360022 -14.7436762978987002 0.546710686857064032 0.010433655 0.164682600000000012 0.128358379999999994 0.0157860460000000015 -0.25741567999999998 0.00226715369999999986 0.189781040000000012 -0.101865280000000002 0.175986840000000005 0.0129923529999999999 160 0 159 1 3.72734239999999994 228.246002 1.35569389271585994 4.05505396972677001 31 false 0.120508619999999997 1.4737171060832901 0.099472511390110499 0.00737024329999999995 18 10 0.812693099999999946 0 18 false 159 367.281096238401005 1.76161011092351005 208.492004 19.2758700000000012 14 199.170673622832993 9.01820656956781086 22.0853980000000014 19.6033250000000017 12 264.342025287831007 6.47362269919698985 40.8337100000000035 18.7065049999999999 1.2620108000000001 0 0.896820069999999969 0.32745552 0.569364549999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.271695147444007 -63.0297636113240003 22.6755759020426986 -12.8495313999813998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381586778865408 2481381586778865408 848540627 2015.5 25.719019212657301 1.2842347042937301 -3.12236376466350007 1.24714908106841005 0.94871522480974102 1.4555390382395601 0.651796460000000022 2.59908250973195987 3.0793662622293998 -17.6506223971436995 3.18911289657995001 0.0127233980000000003 0.0748278099999999946 -0.0543020329999999996 0.0776914100000000024 -0.394809340000000009 -0.15796019 -0.578595999999999999 0.0520296950000000008 0.233923750000000014 0.431222529999999993 110 0 109 1 1.2972897000000001 123.107002 1.75189038681959008 0.852627444686869018 31 false 0.0157014879999999996 1.21074468393001999 0.37420646491189602 -0.0565049570000000015 13 7 3.34663839999999979 0 13 false 113 85.3180431275026052 1.35471043850824002 62.9788017 20.8607639999999996 7 55.0343136255516967 23.2630186656232993 2.3657427000000002 20.999804000000001 7 121.971599579677999 9.20209547376217074 13.2547639999999998 19.5462719999999983 2.07465980000000005 0 1.45353130000000008 0.139039999999999997 1.31449130000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.269059138679012 -63.0262797471917011 22.6773796871348985 -12.8462950525624997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380521626992256 2481380521626992256 120443053 2015.5 25.7415518737658005 1.81313651691851008 -3.14654466285402012 1.84127467738748996 1.76618613146227998 2.06187840832220992 0.856590799999999986 5.76756968908440015 3.74644713985487021 -2.46585080100427012 4.77995867649751993 0.0448722949999999995 0.218445 0.260154580000000024 -0.243678179999999994 -0.223062470000000013 -0.323466929999999986 -0.452789549999999985 -0.0420355720000000002 0.428876599999999997 0.0489691979999999985 57 0 56 1 0.214508040000000011 52.5144997 0.874548248767611947 0.0523097591011884022 31 false 0.0150599099999999993 1.83781598302681992 0.478251409089781976 0.15034415000000001 7 6 4.36497159999999962 0 7 false 58 85.4242411081238942 1.75406993652852994 48.7005997 20.859413 4 43.5446542957197025 21.0356127417028986 2.07004449999999984 21.2540510000000005 3 98.1114454042749031 15.6383000623678008 6.27379230000000021 19.7826209999999989 1.6582657999999999 1 1.4714297999999999 0.394638060000000013 1.07679180000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.336990498195007 -63.0381919658049981 22.6897255860106988 -12.8770529765890007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192367697322624 2481192367697322624 577729236 2015.5 25.7578067922954013 0.364735300782331018 -3.21196537920052005 0.281801987639629992 1.18545310173431995 0.445315220508571974 2.6620537999999998 7.85954282765517043 0.756887261435918002 -0.381900741701732993 0.474996808461128017 0.122884850000000004 0.271145799999999992 0.00606306269999999994 0.190751119999999996 -0.303079040000000022 0.230206739999999993 0.194909350000000009 -0.0724916460000000068 0.0586128120000000002 0.257736059999999989 138 0 137 1 1.28898019999999991 153.332993 0.492642576933261023 0.343009683063903004 31 false 0.179590019999999989 1.50388399850651999 0.0828255272490044936 0.0769670900000000019 16 10 0.682038900000000003 0 16 false 135 377.029127773374 1.70026278453058 221.748001 19.2474290000000003 11 97.4790837738507037 5.61950342024659033 17.3465649999999982 20.3791100000000007 14 449.929610957875013 9.49358680162755064 47.3930050000000023 18.1290590000000016 1.45190020000000009 0 2.25005150000000009 1.13168139999999995 1.11837000000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.432490797359009 -63.0898810266520016 22.6805404367261012 -12.9438595962077994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192333337584128 2481192333337584128 1119290682 2015.5 25.7879831208323012 0.485459119709419018 -3.21600063127137004 0.405037685803460001 2.80342770503761995 0.586507603434744951 4.77986570000000022 6.56500207865506002 1.09041671248318006 -1.06378480344708004 0.769067891101459011 0.152289969999999997 0.26087353000000002 0.141007020000000011 0.0737264900000000056 -0.180471350000000003 0.0730904799999999993 0.221892370000000005 -0.160522069999999989 0.0861308199999999968 0.149778080000000008 129 0 129 0 12.0787659999999999 426.537994 2.78934218153426983 18.7083500587994003 31 false 0.0928769499999999998 1.38947051821317991 0.110533633581653995 0.113310610000000006 15 10 0.972360730000000006 0 15 false 131 633.426320952503033 5.55171399848850022 114.096001 18.6841259999999991 14 205.040693468222997 9.53082441448198914 21.5134280000000011 19.571788999999999 14 808.030043355708017 8.60128797775137954 93.9429099999999977 17.4933510000000005 1.59935059999999996 0 2.07843780000000011 0.887662900000000032 1.19077490000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.496197236547999 -63.0802678618471973 22.7077697934442 -12.9586864941906992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380079243569152 2481380079243569152 274395783 2015.5 25.7603307644087991 0.0307040141985956 -3.19599219625784992 0.0276272865153339986 3.20310998413340009 0.0379254173788581977 84.4581400000000002 -12.5279671205863998 0.0666701199277889012 6.00290998017514976 0.0642884913203757985 0.189155190000000001 0.36517417000000002 0.0638423800000000041 -0.0528361830000000018 -0.180943920000000008 -0.0661233960000000009 -0.0866375699999999971 -0.113216440000000002 0.0556766600000000028 0.327603340000000021 141 61 141 0 2.85602929999999988 187.921997 0 0 31 true 156.020870000000002 1.58507959690305 0.00894112776114558069 0.0840581200000000001 16 10 0.0605884599999999968 0 16 false 132 122584.795985774006 46.8583769595109985 2616.07007 12.9672750000000008 15 62733.132270805203 132.001077986327999 475.247130000000027 13.3576460000000008 16 86260.7889054456027 85.2637072676637047 1011.69410000000005 12.4223859999999995 1.21543559999999995 0 0.935259799999999974 0.390371320000000022 0.544888499999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.422007659407001 -63.0744223707662997 22.6889694120401018 -12.9299309753107003 100001 5430.75 5416 5445.33008 0.0250000004 0.00800000038 0.147400007 0.0137 0.00389999989 0.0781000033 200111 0.787576900000000024 0.783364060000000029 0.791872559999999948 0.486093639999999994 0.475554440000000023 0.49663284000000002 +1635721458409799680 Gaia DR2 2481192505136276736 2481192505136276736 439621931 2015.5 25.7894428506147015 0.121275997442264 -3.19497447621952979 0.0945064634325209069 0.520461507974756987 0.153138240892203986 3.39863850000000012 13.0189921595823996 0.237324548294663012 -11.9801265815770996 0.191739786888975 0.0776393300000000064 0.445531850000000007 0.0576230250000000013 0.0925284799999999963 -0.310123499999999996 0.0837989900000000038 -0.0483725779999999994 -0.0849433400000000061 0.0513501430000000009 0.36700569999999999 131 0 131 0 0.848110849999999972 139.235001 0.157800072122207008 0.34415472728351898 31 true 1.81821480000000002 1.52201313495545998 0.0282352682828308985 0.085979189999999997 15 10 0.228080780000000011 0 15 false 129 2127.24578774605015 3.23126394243581982 658.33197 17.3688220000000015 14 1023.88921742106004 16.0299938938597002 63.8733369999999994 17.8257559999999984 14 1588.37730869974007 11.1008326405630999 143.086320000000001 16.7595370000000017 1.22800409999999993 0 1.06621929999999998 0.456933980000000017 0.609285349999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.478674423618997 -63.0607423990028977 22.7170894967761008 -12.9396673464972007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192470776538624 2481192470776538624 1218875397 2015.5 25.7981135025952995 0.276565652520611993 -3.19079391845014992 0.229009305324424012 1.65122167004525999 0.343220048347019024 4.81097100000000033 4.66038189550102988 0.601921621823777953 -10.3580306428253994 0.383123767033226981 0.207244829999999991 0.223255989999999988 0.130551890000000004 0.185494540000000013 -0.291286400000000001 0.226375650000000012 0.278592899999999977 -0.148962779999999989 0.0514557799999999996 0.258661059999999998 146 0 146 0 2.92945119999999992 195.307007 0.681767280901336981 1.25616301952689002 31 false 0.278943419999999997 1.20936490826750997 0.0656104345473312034 0.121249770000000007 17 10 0.547139200000000048 0 17 false 146 562.616565260572997 1.96341218879060997 286.549988 18.8128339999999987 14 147.774008611183007 9.26893130747703964 15.9429390000000009 19.9273929999999986 12 703.951755413935985 11.6143938880774993 60.6102869999999996 17.6430630000000015 1.51386550000000009 0 2.28433039999999998 1.11455919999999997 1.16977120000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.49177870199901 -63.053181389282102 22.7269270226362003 -12.9389605989141998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380212387434112 2481380212387434112 568620316 2015.5 25.7795621167296005 0.657438892002825015 -3.17510712140333995 0.534647474999510042 -0.888541048892750984 0.81908380761509203 -1.08479869999999989 17.2620061017694013 1.3699053090726101 0.185017504218628004 0.904578090007438052 0.251695449999999987 0.280810920000000019 0.082904500000000006 0.194764880000000001 -0.232077840000000007 0.219344810000000001 0.190599459999999998 -0.095236940000000006 0.0772168700000000069 0.31241074000000002 136 0 134 2 1.53405579999999997 154.490005 1.40895199070542998 0.997941038029857008 31 false 0.0542909879999999984 1.34011605602787998 0.171390322662543004 0.162178600000000006 16 10 1.25248800000000005 0 16 false 136 189.18854002213601 1.62600141810107002 116.351997 19.9961279999999988 9 81.3783304369175937 12.6002590616930004 6.45846500000000034 20.5751169999999988 9 223.332659121233007 11.7765091011411993 18.9642499999999998 18.8895400000000002 1.61062069999999991 0 1.68557739999999989 0.578988999999999976 1.10658839999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.439856723384992 -63.0472286389613004 22.7151666189952017 -12.9175647010247996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192195898630912 2481192195898630912 209291442 2015.5 25.8260593354138983 0.160791597610858011 -3.2103977885652899 0.14462020363403999 0.245605121376888003 0.218538951408831006 1.12385059999999992 4.31838097896329032 0.354066490996578997 -2.56352113671044979 0.243932238070761004 0.215748649999999986 0.16409762 0.0774696700000000044 0.143679339999999989 -0.429121350000000013 0.172347919999999988 0.105352920000000003 -0.0934044599999999947 0.0888392850000000039 0.33604487999999999 138 0 137 1 0.259238960000000018 135.576996 0 0 31 false 0.843304500000000012 1.47909332545178995 0.039541274610325701 0.161845829999999996 16 9 0.327595440000000016 0 16 false 136 1098.49949531279003 2.35716126747389998 466.026001 18.0863669999999992 14 610.285047693383035 5.5018532196116503 110.923546000000002 18.387556 15 763.435507364122032 15.0497949696309998 50.7273029999999991 17.5549889999999991 1.25054280000000007 0 0.832567199999999952 0.301189419999999985 0.531377800000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.566114837322004 -63.0584992978162973 22.7461636994944989 -12.9674455154056005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191444279230592 2481191444279230592 540656475 2015.5 25.8355178344910001 0.101687006589356005 -3.21682105992467005 0.0852177831110583067 1.97514769249203992 0.126859766037918986 15.5695359999999994 47.2079551744679975 0.221398245820833006 16.2877698530340993 0.157087647160669003 0.185915500000000011 0.254775699999999994 0.0704768100000000008 0.130658329999999989 -0.29211330000000002 0.159060459999999987 0.125278119999999993 -0.110300720000000005 0.052666339999999999 0.302303219999999984 149 0 149 0 3.90187170000000005 220 0.242532183891653014 1.06999868816104993 31 true 2.01120950000000009 1.30276756952264994 0.0254016671815214014 0.099901379999999998 17 10 0.206392540000000013 0 17 false 147 2420.35733159440997 3.40264244148398998 711.317017 17.2286660000000005 16 663.661916354457048 14.9734656055361004 44.322533 18.296520000000001 16 3034.34120251973991 52.8565271576149982 57.4071240000000032 16.0567589999999996 1.52787479999999998 0 2.2397613999999999 1.06785390000000002 1.17190740000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.591074113807991 -63.0601005232734977 22.752755076619799 -12.9768892164690008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191444279745664 2481191444279745664 1587333150 2015.5 25.8356904417260012 0.602017493138477966 -3.21643260004351994 0.294179657726474975 2.49269471133899989 0.568968599505535022 4.38107600000000019 49.9799559313715989 0.996829580340222954 15.4215636890876997 0.414098000113749976 -0.400325660000000028 0.448598239999999981 -0.420582440000000002 0.250714700000000013 -0.523385349999999971 0.385325199999999979 0.0871505439999999965 -0.0957428000000000029 0.0847774599999999989 0.0431532800000000022 98 0 97 1 1.8836440000000001 119.195 1.00511494785662991 2.39574021494220979 31 false 0.25356105000000001 1.23971552675871011 0.0880441232200234042 -0.177572129999999995 12 8 0.943211849999999963 0 17 false 93 556.621974819918023 2.71876142139115018 204.733994 18.824465 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.591037288645992 -63.0596758796831978 22.7530660210128985 -12.9765912407211008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192195899069184 2481192195899069184 1684791287 2015.5 25.8300711374557004 1.21505366322729991 -3.20239090803432003 1.88497526065963994 \N \N \N \N \N \N \N 0.666814499999999977 \N \N \N \N \N \N \N \N \N 96 0 96 0 -0.133705590000000013 88.5518036 0 0 3 false 0.0306844640000000016 \N \N 0.366805260000000022 11 7 4.51547669999999979 0 11 false 97 125.632386314482005 1.77842052034001008 70.6427002 20.4406099999999995 8 72.1959608811237956 5.6238107030627198 12.8375520000000005 20.7051070000000017 11 103.132320723785 10.1998491630863004 10.1111609999999992 19.728434 1.39556600000000008 0 0.976673099999999961 0.264495849999999977 0.712177300000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.566261350351994 -63.0495466483884996 22.7530052526418984 -12.9614702878717996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192475071896064 2481192475071896064 1305124823 2015.5 25.8085069371730995 0.047853634487043599 -3.18976126478140998 0.0411615200533623007 0.294406690038493013 0.0586170416824279977 5.02254440000000013 -2.6698343109852698 0.104373789812827994 -2.60282238606967997 0.0843657190974348992 0.222372929999999996 0.301888880000000026 0.0565209569999999967 0.0791775499999999993 -0.20802248000000001 0.0956025600000000031 0.00972663500000000084 -0.116710430000000004 0.0273957379999999993 0.355169740000000012 147 0 146 1 -0.937565300000000046 125.217003 0 0 31 false 10.1938250000000004 1.65960870458536003 0.0131483807921982006 0.106708914000000002 17 10 0.106220819999999994 0 17 false 145 9034.80185599236029 6.33501869164414 1426.17004 15.7985690000000005 16 5441.62227500855988 21.7633127342512012 250.036480000000012 16.0120679999999993 15 5438.26592418559994 16.1496579853438007 336.741849999999999 15.4232689999999995 1.20421990000000001 0 0.588798500000000002 0.213499070000000013 0.375299449999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.511339828283013 -63.0476892887361018 22.7372192259894987 -12.9418133125061008 100001 6904 6515 7116 0.643999994 0.462300003 0.787999988 0.319999993 0.198500007 0.405099988 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192475071896192 2481192475071896192 970300965 2015.5 25.8164816760458997 2.84163168966869994 -3.19071730124588004 2.87190465343187995 \N \N \N \N \N \N \N 0.391674159999999993 \N \N \N \N \N \N \N \N \N 105 0 105 0 51.2175519999999977 3972.8501 16.5096004257108007 222.382153077650997 3 false 0.00344321950000000014 \N \N 0.197112160000000008 17 10 6.31198800000000038 0 17 false 149 302.405811101354004 3.43803126426160999 87.9589996 19.4868899999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.528041828934988 -63.0450433545386986 22.7444573094357985 -12.9456280496783993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192543791372544 2481192543791372544 1437003479 2015.5 25.8037503666325989 0.0542572567140302969 -3.18001673270814988 0.0462362842837880997 0.691645446153113963 0.0659359948010213026 10.489649 -0.900119843742261949 0.118186025134520006 -2.89540686722533014 0.0916572154382957055 0.233921170000000012 0.2907362 0.0468331099999999972 0.101328799999999997 -0.196854310000000005 0.121893235000000003 0.0493416399999999991 -0.106895439999999994 0.0316544299999999973 0.341324100000000019 150 0 146 4 -0.182592699999999997 137.300003 0 0 31 false 7.73970559999999974 1.57173930109355009 0.0143281988718644004 0.106139325000000007 17 10 0.117275370000000004 0 17 false 146 7024.31031773975974 6.09235341502597993 1152.96997 16.0718570000000014 16 3662.86598847200003 16.5348272578036983 221.524290000000008 16.4418350000000011 16 4855.23005943189037 9.65089416610319084 503.086029999999994 15.5463950000000004 1.21265939999999994 0 0.895440099999999961 0.36997795 0.525462149999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.492474928354994 -63.0410272017530033 22.7363608913290989 -12.9310053887004006 100001 5693 5418.06006 6455.93994 0.0447000004 0.00800000038 0.136899993 0.0189999994 0.00439999998 0.0610999987 200111 0.784987870000000032 0.610416100000000017 0.866677800000000054 0.583156760000000052 0.465092899999999976 0.701220630000000011 +1635721458409799680 Gaia DR2 2481192539496477824 2481192539496477824 251787826 2015.5 25.8032984329427002 0.291583612231621991 -3.17900352673258002 0.240545360051898 0.531517234807937 0.358837730849496994 1.4812189 -3.24729439324684011 0.628930550947060962 -2.15693080543251003 0.414509367348059987 0.204180479999999998 0.272070230000000024 0.123867619999999998 0.170735229999999988 -0.238538639999999996 0.199231849999999988 0.284748459999999981 -0.146304999999999991 0.0523912980000000028 0.243239029999999995 150 0 148 2 13.8948850000000004 528.601013 1.70578088407483008 20.2294049057992993 31 false 0.244877339999999999 1.38869117092043992 0.0663002593824403019 0.100942270000000001 17 10 0.570536400000000055 0 17 false 148 1213.63521118735002 4.17028256858557977 291.019989 17.9781459999999988 15 466.459568313578018 8.36632769844569957 55.7543999999999969 18.679354 16 1176.1988929997101 10.9589907983441002 107.327299999999994 17.085718 1.35350259999999989 0 1.59363560000000004 0.701208100000000001 0.892427439999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.490598242349989 -63.0403156374922986 22.7363122693200985 -12.9298972567732005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192917453137920 2481192917453137920 239887366 2015.5 25.8123482603823007 0.143881674642739987 -3.17309214319783006 0.118576097096302999 0.00540193416206895 0.176845948061751995 0.0305459870000000001 2.08688668950992007 0.314067663412968989 -3.52989139046007994 0.215693684656361989 0.193701580000000012 0.237298549999999997 0.0658967300000000006 0.145767449999999993 -0.264770479999999975 0.178610770000000002 0.141837359999999996 -0.113924499999999998 0.0500063400000000033 0.287696930000000017 148 0 148 0 -0.164957090000000001 139.570999 0 0 31 false 0.985178949999999998 1.56849629117130007 0.0352954960646564009 0.105648980000000003 17 10 0.288567870000000004 0 17 false 148 1259.88056809328009 2.54851095479093992 494.359009 17.9375420000000005 16 657.340171536040998 11.8310492663022995 55.5605959999999968 18.3069130000000015 17 898.433263155828968 8.11871602882192001 110.661990000000003 17.3782059999999987 1.23485789999999995 0 0.928707100000000008 0.369371400000000016 0.559335699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.502761560051994 -63.0310326368960006 22.7471632170802991 -12.9277192887190004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380452905611648 2481380452905611648 232487796 2015.5 25.7588614939971983 0.772796772816646049 -3.16603768288028009 0.600665684316563975 1.16829503373853005 0.93934430598366303 1.24373460000000002 12.6806318826264004 1.63876470818279008 8.4065513750706593 0.977126211754386964 0.147807230000000012 0.230619039999999997 0.0305075240000000011 0.205307469999999992 -0.293892319999999985 0.249671000000000004 0.270796919999999997 -0.0910951640000000062 0.0568361000000000005 0.232556540000000006 140 0 140 0 4.6534886000000002 225.869003 2.75338529037242985 3.44691850218575002 31 false 0.0391852739999999991 1.09951003770535993 0.16995502434492199 0.0760078299999999984 16 10 1.46930589999999994 0 16 false 134 181.663001792430009 1.47453790824799991 123.199997 20.0401999999999987 11 47.8355104606733974 14.4195908656698002 3.31739700000000015 21.1520119999999991 14 268.884190230322019 8.7077576864433297 30.8786950000000004 18.6880069999999989 1.74344640000000006 0 2.46400450000000015 1.11181259999999993 1.3521919 \N \N 0 \N \N \N NOT_AVAILABLE 152.390099124165005 -63.0481458372839967 22.6988651449514016 -12.9015339361995007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380487265350144 2481380487265350144 1584777741 2015.5 25.7673209850691016 0.800711425493037976 -3.15795627402677015 0.62679628213042704 4.1318623986534897 0.995011426429807999 4.1525780000000001 45.2599975633130001 1.68783937356819003 -18.7795476450375993 1.02093790802070994 0.155879779999999996 0.261743959999999998 0.0748003099999999949 0.196409300000000009 -0.313250719999999983 0.236271129999999996 0.273962229999999973 -0.11205271 0.0593716700000000014 0.246431470000000014 151 0 150 1 3.86454250000000021 220.386993 2.66925640950469978 3.31321027977910987 31 false 0.034442465999999998 1.11924311800163001 0.174065761249802997 0.100559554999999995 17 10 1.51890919999999996 0 17 false 149 170.243434558171998 1.70506068966704993 99.8460007 20.1106900000000017 4 53.7642643774901003 8.44300093776178961 6.36790940000000028 21.0251540000000006 15 213.389855023975997 10.1139870277712003 21.0984900000000017 18.9389859999999999 1.56924770000000002 0 2.0861683000000002 0.914464950000000054 1.17170329999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.399029968381001 -63.0371793735530019 22.7099709358375996 -12.8971223066553993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380281106911488 2481380281106911488 207218710 2015.5 25.7770028906883013 0.566709084862100032 -3.15961661427916995 0.455877742071541026 -0.357084201276156976 0.706785011963380949 -0.505223199999999983 0.326406056003410994 1.21407849913698995 -6.70175767061698036 0.756411464685349033 0.188773589999999991 0.23752957999999999 0.0855473999999999957 0.186326560000000002 -0.305752299999999977 0.220097719999999997 0.24146608 -0.111504409999999998 0.0680314100000000005 0.262977200000000022 150 0 150 0 3.49039600000000005 212.070999 1.48558331810284994 1.44924676812085007 31 false 0.065831600000000004 1.53552041893925995 0.134457842920265996 0.106286240000000004 17 10 1.09642259999999991 0 17 false 149 223.329358353433008 1.77490848738805007 125.825996 19.816002000000001 11 78.2365551074440049 12.9552789880406998 6.03897100000000009 20.6178649999999983 13 252.541284219929992 7.4954982949229203 33.6923940000000002 18.7560879999999983 1.48112120000000003 0 1.86177640000000011 0.801862700000000039 1.05991360000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.419795794453989 -63.0344313219439982 22.7185685472609009 -12.9022190169745006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380628999381632 2481380628999381632 1094624285 2015.5 25.8072269778893002 0.0371155973210533022 -3.15979307915671992 0.0350873385815793984 2.66709459071569022 0.047325626663015298 56.3562429999999992 43.806948786893102 0.0838366059162291011 -17.1480894752294013 0.0825890003389681965 0.268024700000000005 0.33380470000000001 0.0556451119999999966 0.034502465000000003 -0.250183700000000009 0.0542174799999999985 -0.0910877900000000018 -0.156331550000000014 -0.0569411849999999983 0.530181470000000044 147 147 147 0 2.975603 197.447998 0 0 31 true 303.403380000000027 1.60061942581270999 0.0104935594245949993 0.120901320000000007 17 10 0.0629189299999999979 0 17 false 144 219945.849952034012 52.9647502715381009 4152.68018 12.3325770000000006 14 119104.573559500001 139.826998595504989 851.799560000000042 12.6615669999999998 14 145805.325245560001 117.187125851996996 1244.20949999999993 11.852487 1.20443239999999996 0 0.809080099999999969 0.328989980000000015 0.480090139999999999 4.67543224285638015 4.36016554464126038 5 5500 3.5 0 NOT_AVAILABLE 152.479743753169998 -63.0213368258092004 22.7472968118593002 -12.9134716341513993 100001 5822.33008 5800.25 5936.72998 0.0599999987 0.0170000009 0.281599998 0.0340000018 0.00889999978 0.142100006 200111 1.08457209999999993 1.04317820000000006 1.0928464 1.21786700000000003 1.18773829999999991 1.24799569999999993 +1635721458409799680 Gaia DR2 2481380628999380096 2481380628999380096 1279402783 2015.5 25.8106988772967014 0.0373315062865635025 -3.1538906253418002 0.0315914412901927011 0.541040171746037024 0.0463196295896950994 11.6805810000000001 11.7061284697521 0.0881273325204255942 -8.97438750385544992 0.0669482802514415054 0.248347399999999996 0.170291570000000003 0.1904835 0.0626201200000000013 -0.242573630000000012 0.0824060499999999946 -0.0828875399999999957 -0.23554101999999999 0.0238627679999999995 0.376336249999999983 141 0 139 2 0.157716859999999987 135.923996 0 1.73613222438441009e-15 31 false 22.1484780000000008 1.61693360627495997 0.0102655253514693998 0.0807934899999999956 16 9 0.0924286250000000004 0 16 false 139 18520.6976174049014 11.4195372826240007 1621.83997 15.0192219999999992 15 10694.5455082974004 38.5412130746163015 277.483369999999979 15.2784820000000003 14 12020.1475116919992 36.7386118508230979 327.180240000000026 14.5621449999999992 1.22644909999999996 0 0.716337200000000007 0.259260180000000007 0.457077029999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.480888087453991 -63.0145113643330035 22.7528293832565005 -12.9092555487060991 100001 6371.68018 6072 6881.50977 0.253699988 0.0241999999 0.615100026 0.129500002 0.0137 0.314099997 200111 1.28448830000000003 1.10121010000000008 1.41440729999999992 2.45002630000000021 1.9836878 2.91636469999999992 +1635721458409799680 Gaia DR2 2481380835157810176 2481380835157810176 1328991335 2015.5 25.8209543833920989 0.0845912574682794044 -3.12430960452233997 0.0646035579389628023 0.612490376698743955 0.103692450547684001 5.90679839999999956 0.297525852804473023 0.167159577836643009 -6.24069650875696968 0.120469487639578002 0.0619729870000000002 0.385155899999999995 0.00974613199999999937 0.152975720000000009 -0.300608629999999988 0.198822809999999989 0.0984487760000000017 -0.0991331599999999979 0.0136743019999999993 0.302078249999999993 130 0 130 0 0.514776050000000041 132.623001 0 0 31 false 4.00960699999999992 1.55662489031231011 0.0198353548849432015 0.0424355120000000016 15 10 0.157490980000000003 0 15 false 130 3950.45023444411981 3.8684335492586599 1021.20001 16.6967490000000005 15 2155.19838798091996 23.3351366986975997 92.3585049999999939 17.017669999999999 15 2700.84988262257002 14.1236060757205006 191.229479999999995 16.1831679999999984 1.22923920000000009 0 0.834501269999999962 0.320920939999999988 0.51358029999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.472510900346009 -62.9834399667803027 22.7737477637986991 -12.8855043666090001 100001 5663 5512 5847.5 0.0185000002 0 0.134100005 0.00499999989 0 0.0502999984 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384541713978624 2481384541713978624 642998925 2015.5 25.6728704285830993 0.417596033210367978 -3.10602452259497008 0.406340215768619006 0.0394846750027317006 0.608707819472531053 0.064866389999999996 10.1366688748053004 1.07238991064144007 5.44631227720458977 0.650646825657584027 0.21697298000000001 -0.0167185699999999986 0.157692610000000011 0.259159619999999979 -0.64016426000000004 0.487173940000000028 0.488534699999999988 -0.4030339 -0.32660842000000001 0.475230460000000021 158 0 157 1 2.06715999999999989 190.190994 0.940559356846064953 1.01467791806990992 31 false 0.124225940000000007 1.42816192551992005 0.101094368709735996 0.077866249999999998 18 9 1.04364750000000006 0 18 false 155 315.020825223012992 1.59276663145981989 197.781998 19.4425179999999997 14 109.450615459575999 13.5827756096299002 8.05804400000000065 20.2533439999999985 15 380.952473527270001 6.7305689962864701 56.6003380000000007 18.3097439999999985 1.55673229999999996 0 1.94359970000000004 0.81082535 1.13277439999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.161914799127999 -63.0316646085471035 22.6395888277976987 -12.8141598475785994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384477290068992 2481384477290068992 1333721678 2015.5 25.674472299592999 0.0368917805098738019 -3.10893466491602988 0.0294690708671894001 1.16075498925825005 0.0437234923130613018 26.5476279999999996 8.83055802493426079 0.0806973234794488015 4.59696813819146044 0.0635464967646551943 0.063348790000000002 0.278890939999999976 -0.0133491819999999994 -0.00259184399999999983 -0.277902480000000007 -0.0701945600000000031 -0.212751629999999997 0.00309692739999999989 0.180451909999999993 0.242426100000000005 176 0 176 0 -2.33608800000000016 130.776001 0 0 31 true 14.7403554999999997 1.55370952614466007 0.0099742548606980997 0.00057759230000000003 20 10 0.0825429260000000026 0 20 false 176 12460.8635219675998 6.75610295688510032 1844.39001 15.4494950000000006 19 6100.93072917505015 19.591542683086999 311.40634 15.8878974999999993 19 9144.40907091940062 20.4533868751099988 447.085329999999999 14.8590309999999999 1.22345769999999998 0 1.02886680000000008 0.438402179999999975 0.590464600000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.167883611435002 -63.0335883691207002 22.6400170161474996 -12.8174542450091007 100001 5136 4998.06006 5373.66992 0.0329999998 0.00800000038 0.291999996 0.0140000004 0.00439999998 0.129999995 200111 0.791418599999999972 0.722960950000000047 0.835705640000000027 0.392651499999999987 0.359452160000000021 0.425850840000000008 +1635721458409799680 Gaia DR2 2481384610433456000 2481384610433456000 280466097 2015.5 25.6983781055767011 0.277878483188865988 -3.10541229654051998 0.200379295525740991 0.667359554281378053 0.310972580118037023 2.14604000000000017 2.15487598994663987 0.678811019486706968 -5.51737635431624973 0.412737644928535985 -0.00442872849999999957 0.0914511600000000036 -0.041003524999999999 -0.011091488 -0.298068500000000014 -0.0129289090000000006 0.00283385370000000013 -0.0338934099999999988 0.144303459999999995 0.0638121400000000033 146 0 146 0 1.45750019999999991 166.173996 0.664853020178387988 1.16876220713051993 31 false 0.279862249999999979 1.37607674039401995 0.0713830621116219033 -0.0354321900000000023 17 10 0.597152099999999963 0 17 false 144 562.427013429243971 1.49593881374399995 375.968994 18.8131999999999984 15 194.744440837674006 17.9813649730463005 10.8303480000000008 19.6277259999999991 15 590.908075045731948 9.72689605474178087 60.7499120000000019 17.833120000000001 1.39689679999999994 0 1.79460529999999996 0.814525599999999961 0.980079649999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.211872878891995 -63.0200193422674033 22.6641116266177001 -12.8229541923730999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384610433457536 2481384610433457536 161193030 2015.5 25.6982170445152001 0.163515532080421994 -3.10121660962338996 0.130857487016190988 0.10393984152987 0.20064247381054201 0.518035099999999971 6.51811645014459007 0.399106199258065009 -3.21093106095400005 0.278662383581028017 0.0605956169999999975 0.0455567580000000028 -0.0288262500000000012 -0.103569530000000007 -0.39155230000000002 -0.150743130000000003 -0.213872389999999996 0.0573089499999999974 0.315281120000000026 0.138657050000000004 145 0 145 0 -0.516743660000000049 130.891998 0 1.69852201187039993e-15 31 false 0.771426999999999974 1.70948560782581005 0.0446034051994256969 0.00924892899999999948 17 9 0.356543449999999984 0 18 false 144 1069.08552602713007 2.16924307170399011 492.838013 18.1158350000000006 15 655.389875760110044 20.3715250816262987 32.1718600000000023 18.3101389999999995 16 667.305569163342966 10.9283252974374996 61.0620159999999998 17.7011089999999989 1.23722139999999992 0 0.609029770000000026 0.194303510000000013 0.414726260000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.207523009769005 -63.0163133102067974 22.6655399985064996 -12.8189931479458998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382033453152128 2481382033453152128 1312491369 2015.5 25.7171851623863006 1.09730955422129006 -3.10081044517978999 1.12523228227209993 0.901874769544863009 1.28658413487682011 0.700983899999999993 1.73545356816938989 2.54959637993486998 0.053078395167693998 2.86185073580780003 0.103203854999999997 0.143109189999999997 -0.00887417000000000067 -0.118565480000000001 -0.36409205 -0.272025469999999991 -0.594883399999999951 0.0892744199999999932 0.364171330000000015 0.332549270000000008 116 0 115 1 -0.353615300000000021 104.194 0 0 31 false 0.0189888460000000002 2.0854953650306598 0.307234560693204983 0.0107253650000000006 14 9 2.85951159999999982 0 15 false 116 100.719007054136 1.56026002091901006 64.5526962 20.6805880000000002 12 58.5553944080827975 5.04713880185455999 11.6017010000000003 20.9324699999999986 12 96.9571268381812956 12.6233460203484 7.68077849999999973 19.7954709999999992 1.54402360000000005 0 1.13699909999999993 0.251882549999999983 0.885116600000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.244691513394002 -63.007687837285502 22.6837580302968007 -12.8255773288566992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382033453079296 2481382033453079296 1177805986 2015.5 25.7229596518772006 1.80022075192971998 -3.1036811600396299 1.64819215004308006 \N \N \N \N \N \N \N -0.367032399999999981 \N \N \N \N \N \N \N \N \N 83 0 83 0 0.574559599999999948 84.6922989 1.64113320880923008 0.330190926274932017 3 false 0.0176382879999999985 \N \N -0.129591690000000009 11 8 4.46849629999999998 0 11 false 85 95.2843476131035061 1.47272586390336002 64.6993027 20.7408119999999982 9 67.792520210897095 12.8884909702551003 5.25992700000000024 20.7734340000000017 10 81.5276399831925005 9.41501637460313034 8.65931999999999924 19.9836579999999984 1.56710060000000007 0 0.789775849999999946 0.0326213840000000033 0.757154459999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.258882309948007 -63.0077540954734019 22.6881756329810997 -12.8303663643728996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381758575661952 2481381758575661952 1284895389 2015.5 25.7395494082371989 0.299921353838381977 -3.11190065311946018 0.231368861513013002 0.141845832216305007 0.357274584970230014 0.397021899999999983 4.72734293091381996 0.632930904105916015 -4.80935512702053014 0.423637371058251999 0.168490840000000003 0.272493199999999991 -0.0174681710000000011 0.099168085000000003 -0.165214780000000006 0.0631718339999999962 -0.0250017030000000001 0.00330370250000000011 0.18198547000000001 0.216818330000000004 151 0 150 1 -0.823558699999999977 130.798996 0 0 31 false 0.222084370000000003 1.60726074684291009 0.0770729602266733982 0.0816191799999999995 17 10 0.565637049999999975 0 17 false 149 446.759131491582025 1.70192264185086994 262.502991 19.0631829999999987 14 247.183077002433009 5.16579336000790956 47.8499759999999981 19.3688409999999998 14 275.134558553529985 9.8482385670903092 27.9374390000000012 18.6630569999999985 1.16912579999999999 0 0.705783840000000051 0.305658339999999973 0.400125500000000023 \N \N 0 \N \N \N NOT_AVAILABLE 152.299624910896 -63.0079116871191971 22.7008783547291983 -12.8440987162576992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381792935400448 2481381792935400448 1616925366 2015.5 25.7515924771150999 0.791664717033203957 -3.10616461521015985 0.58276635771343599 1.16482132885519007 0.92629470216044596 1.25750629999999997 -0.544659794221640015 1.72634338216331007 -5.52360241342880975 1.0575951760898199 0.119745299999999999 0.207183929999999988 -0.070406590000000005 0.106803596000000001 -0.214355230000000008 0.0894800399999999968 0.012614531 0.016398933000000001 0.16582036 0.186516459999999995 149 0 148 1 5.18425099999999972 248.845993 2.74046334199194019 3.43781538892952021 31 false 0.0335701929999999982 1.66401677867971998 0.189303597109731991 0.0602701380000000009 17 10 1.52932249999999992 0 17 false 144 165.202412297498995 1.59479665359372991 103.587997 20.1433239999999998 11 64.0062153067422059 11.3232341384021993 5.65264399999999956 20.8358330000000009 13 195.492641822975003 4.32422758957261966 45.2086830000000006 19.0340939999999996 1.5707933999999999 0 1.80173870000000003 0.692508699999999977 1.10922999999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.317924422993002 -62.9974951534276002 22.7145112768128001 -12.8431831609217006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381797230484352 2481381797230484352 659794240 2015.5 25.7490707803225014 0.0297798401404748003 -3.10089231730921 0.0257580597371467011 2.24935564776128016 0.0353512151645705985 63.6288070000000019 17.5842707077718003 0.060924963972184297 -31.2929701487717011 0.0554148090759983974 0.206275139999999996 0.382013099999999994 -0.0201906700000000008 -0.059676899999999998 -0.119375414999999999 -0.164178450000000004 -0.373799199999999998 0.0136761729999999998 0.190886420000000001 0.314020899999999992 148 0 148 0 6.08770200000000017 271.612 0.117651761425213996 2.85625396010216992 31 true 34.832535 1.54446325563608999 0.00798228978835936048 0.0736185240000000046 17 10 0.0695037200000000049 0 17 false 148 57456.2515998157978 16.0624332368766005 3577.06006 13.7900229999999997 15 27383.2667619759013 55.0947617269576 497.021239999999977 14.2576750000000008 15 42943.4162348913014 107.143412104052004 400.80313000000001 13.1796790000000001 1.22400400000000009 0 1.07799629999999991 0.46765232000000001 0.610343929999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.307859668893997 -62.9938547239796023 22.7140964562732997 -12.8373544506818007 100001 5062 4956.6001 5221.9502 0.271299988 0.131200001 0.3574 0.136999995 0.0644999966 0.172099993 200111 0.909106999999999998 0.85426740000000001 0.948181599999999958 0.488892400000000005 0.470930930000000025 0.506853899999999968 +1635721458409799680 Gaia DR2 2481381724218730368 2481381724218730368 305351165 2015.5 25.7555255741143014 1.15977337556772997 -3.11839730766621015 1.72145999565650998 \N \N \N \N \N \N \N 0.491839740000000025 \N \N \N \N \N \N \N \N \N 111 0 108 3 -0.00647497600000000034 102.241997 0 0 3 false 0.0218153479999999983 \N \N 0.22270029999999999 13 8 4.22420740000000006 0 13 false 112 103.859301777235999 1.27175343355506998 81.6661987 20.6472529999999992 9 46.9052051455872032 13.8895316248061 3.37701850000000015 21.173335999999999 12 132.03439527386999 7.85728426105896993 16.804075000000001 19.4602029999999999 1.72290399999999999 0 1.71313289999999996 0.526082999999999967 1.1870499000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.33749270298901 -63.0067769545575018 22.7136470282902998 -12.8560031622478999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381896014615680 2481381896014615680 1371824224 2015.5 25.7575681419889015 0.778244921324030003 -3.10178532870382018 0.605147098536835015 0.381955295470515988 0.902067457992968946 0.423422100000000023 0.439319453523887016 1.68824372986871007 -10.0415890325402994 1.10967320391388991 0.189034570000000013 0.200090939999999995 -0.0787791300000000028 0.0934259149999999983 -0.145788859999999992 0.0731508599999999981 -0.0785509499999999944 0.0441643099999999983 0.183603110000000014 0.232605599999999996 131 0 130 1 0.546199439999999981 133.139999 0 0 31 false 0.0373800359999999984 1.69592767279847001 0.197692038737281001 0.115009799999999995 15 10 1.50907849999999999 0 15 false 129 139.896143610677996 1.37869031794310004 101.470001 20.3238500000000002 10 45.3046111238150004 8.10739723709574989 5.58805849999999982 21.2110330000000005 13 152.053784950327014 9.75353641864770005 15.5896050000000006 19.3069270000000017 1.41074929999999998 0 1.90410609999999991 0.887182240000000011 1.0169239000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.325522899280003 -62.9909470756437031 22.7218535912587996 -12.8413028084383001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381827295127808 2481381827295127808 953562568 2015.5 25.7774798823461992 0.035315195886878599 -3.10482313367662011 0.0309200894933912007 4.85842355926758973 0.042147374285682597 115.272270000000006 67.656958323534397 0.0686566970362462031 -17.7569737278784991 0.0659547113740536067 0.220947009999999999 0.443678650000000008 -0.0508433999999999969 -0.0759657599999999933 -0.102260970000000007 -0.210759950000000001 -0.435024469999999996 0.0653190700000000068 0.209496739999999987 0.333559270000000019 161 161 160 1 2.2926403999999998 198.184998 0 0 31 true 325.18689999999998 1.55250005876895991 0.00854736691568386969 0.0569399599999999978 18 10 0.0501436700000000013 0 18 false 160 242390.974881467002 118.784741635138005 2040.58997 12.2270749999999992 15 116141.408936345004 219.853174791425005 528.268069999999966 12.6889199999999995 15 179170.963472158997 352.753833035986986 507.920700000000011 11.6287509999999994 1.2183307000000001 0 1.06016920000000003 0.461845400000000017 0.598323799999999961 5.6029377832371301 1.5991380217498099 9 5500 4.5 0 NOT_AVAILABLE 152.367810737945007 -62.9849749880009 22.7396753757029018 -12.8514333917329004 100001 5205.58984 5030.77979 5618.47998 0.158000007 0.134000003 0.216100007 0.0790000036 0.0649000034 0.101099998 200111 0.807008269999999972 0.692754899999999951 0.86406654000000005 0.430853199999999992 0.425467819999999997 0.436238559999999997 +1635721458409799680 Gaia DR2 2481381865949960960 2481381865949960960 445292267 2015.5 25.7784149188555993 0.179074000370995995 -3.09879754041297995 0.121012628659181998 0.387589743633907025 0.209335040064176997 1.85152830000000002 5.30581531807990014 0.335332839740030975 -0.856326630379407039 0.219193209967243008 0.000802987700000000037 0.427036819999999984 -0.031332314 0.14397763999999999 -0.222952600000000001 0.0953673500000000035 0.000320679799999999985 0.00831071599999999924 0.162450860000000002 0.169614910000000008 142 0 141 1 2.10982899999999995 173.063995 0.344618371925257017 0.865303964518408963 31 false 0.825980900000000018 1.59054108937708993 0.0381569163918746984 -0.000348227740000000023 16 10 0.299005100000000024 0 16 false 140 1247.99244209200992 2.60503263344399016 479.070007 17.9478359999999988 14 650.052443071685047 16.5035250945991017 39.3887020000000021 18.3190169999999988 14 852.409275237724955 11.2296505889024996 75.9070099999999996 17.4352990000000005 1.20390280000000005 0 0.883718499999999962 0.371181499999999998 0.51253700000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.363848639100013 -62.9791491824587979 22.7428366601230003 -12.8461722129594005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386912536423168 2481386912536423168 398335648 2015.5 25.8138771078467997 9.98384395056113938 -3.11009067753446988 14.4881617767914008 \N \N \N \N \N \N \N 0.779863540000000022 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.24303359999999996 44.5122986 4.93738197987959992 1.27480419837925996 3 false 0.00975570000000000083 \N \N 0.397842499999999988 5 3 10788.0339999999997 0 5 false 42 76.2587612278701954 2.26056191158729014 33.7344017 20.982641000000001 3 51.7107554180761966 3.23390095291050983 15.9902099999999994 21.0674360000000007 4 84.237322025739104 21.7770943259750993 3.86816169999999993 19.9481579999999994 1.78272080000000011 0 1.119278 0.0847949999999999954 1.03448300000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.444789740760996 -62.9737704491370991 22.7723628938942007 -12.8696836523656994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386912536429696 2481386912536429696 85008854 2015.5 25.8152321823659996 0.709156098443298966 -3.10586782484952018 0.543876991752390015 3.8125651934038598 0.822283439430797958 4.63655849999999958 16.1758494950884 1.68251494404419999 -5.88722704376214967 0.928224656583474972 0.114909600000000001 0.0717859700000000045 -0.000387008130000000014 0.133195029999999992 -0.219903989999999994 0.161357219999999996 0.289163769999999987 -0.099028320000000003 0.088336609999999996 0.0802095099999999978 130 0 128 2 3.0593357000000001 176.643997 2.44252810657549979 3.51892493144366014 31 false 0.0477429960000000028 1.38878955479408006 0.153161876238780997 0.0491895099999999988 15 10 1.48067750000000009 0 15 false 126 205.226917092629009 1.51345302085260003 135.602005 19.9077799999999989 11 44.6517842329526005 5.88154598099588988 7.59184459999999994 21.2267909999999986 13 318.604701705358991 9.94144826703193019 32.0481199999999973 18.5037899999999986 1.77002360000000003 0 2.72300150000000007 1.3190116999999999 1.40398979999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.443384898225986 -62.9693823115209028 22.7752448546111985 -12.8662529732908997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386706377995520 2481386706377995520 840262168 2015.5 25.8253648286278015 0.33897059813970698 -3.11643624441135003 0.263129936270624976 0.397118471265461015 0.397979758180666998 0.997835899999999998 -1.28962399295899011 0.768010468722895023 -3.47034740624243021 0.451016625560987983 0.159151760000000003 0.129119099999999987 -0.0217249129999999985 0.16598251 -0.20461109999999999 0.197562440000000006 0.219312430000000003 -0.0672878600000000049 0.0793398099999999967 0.168420139999999996 135 0 134 1 2.37046739999999989 170.141006 0.579347186491561028 0.587431650318431031 31 false 0.19772751999999999 1.40762096736910003 0.0763859890140611009 0.0690059660000000019 16 10 0.681687500000000002 0 16 false 133 424.004486278418995 1.92993082906969993 219.699005 19.1199399999999997 12 152.81445774547899 10.2257243025449007 14.9441199999999998 19.8909780000000005 12 434.592732355174974 10.0246196352994001 43.3525399999999976 18.1667139999999989 1.3853797000000001 0 1.72426410000000008 0.77103805999999997 0.953226099999999965 \N \N 0 \N \N \N NOT_AVAILABLE 152.473602313473009 -62.9744322854222034 22.7809161803474005 -12.8797989003167999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386706377995648 2481386706377995648 983610484 2015.5 25.8292358138204996 0.291581754129003001 -3.1138615159462999 0.248145816810111997 1.20596462476860999 0.355648596655413984 3.39088820000000002 0.484702318713475022 0.66735336765298503 -3.05054942077385993 0.469732937496569025 0.20076157 0.0793461050000000001 -0.0479014099999999984 0.114996769999999998 -0.311993240000000005 0.136058800000000008 -0.0290985479999999984 -0.0287802280000000014 0.0889474749999999981 0.304453370000000001 128 0 126 2 1.1303493 138.718002 0.39698003866397702 0.286688211785301017 31 false 0.261173040000000023 1.52334191990716006 0.0657021715654302063 0.127334200000000008 16 10 0.609219850000000007 0 16 false 125 503.960722996184984 1.95874260917665999 257.287994 18.9323729999999983 9 156.080138400191004 11.8979789449860007 13.1182060000000007 19.8680200000000013 10 539.184010602369995 9.05495770927715071 59.5457230000000024 17.9325769999999984 1.3795999000000001 0 1.93544200000000011 0.935646059999999946 0.99979589999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.478752531747006 -62.9704207738965991 22.7855741401189 -12.8788237713506 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386672018257024 2481386672018257024 127429754 2015.5 25.8411790185318999 0.349355057060294016 -3.11623717219866014 0.272396984890122984 0.0255769749871131991 0.408935801017848988 0.0625452100000000039 7.22054236031569996 0.788060417777760036 -9.56982530692953048 0.45455508413592699 0.160620879999999994 0.104865630000000001 -0.0449227540000000022 0.197445559999999992 -0.277494579999999991 0.251939360000000001 0.248400850000000006 -0.0618628099999999972 0.0360643000000000005 0.215922399999999987 136 0 132 4 0.339226000000000028 131.798996 0 0 31 false 0.197919619999999991 1.31685576051477993 0.0789814055628233064 0.0860413240000000024 16 10 0.703910499999999995 0 16 false 133 393.929464087654992 1.76733816277614997 222.893997 19.199819999999999 13 134.098867966092996 14.4077482016903993 9.30741300000000038 20.032824999999999 13 389.291544056174985 11.9608804188810005 32.5470660000000009 18.2862319999999983 1.32863989999999998 0 1.74659349999999991 0.833005899999999966 0.913587570000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.504618494438006 -62.9673106771359983 22.7960576749328006 -12.8854132294943007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386740737734144 2481386740737734144 1451752861 2015.5 25.8368108162849985 2.40888571467253998 -3.1103244203538698 2.13056440052169016 \N \N \N \N \N \N \N 0.469689430000000019 \N \N \N \N \N \N \N \N \N 63 0 62 1 -1.99415969999999998 37.7406006 0 0 3 false 0.0208414160000000015 \N \N 0.301926880000000009 8 6 18.0844099999999983 0 8 false 61 94.8354478233700036 1.4016522791744801 67.6597977 20.7459400000000009 4 63.3237983972435003 9.40547686876734979 6.73265169999999991 20.8474709999999988 6 78.7023688757838045 15.9302887344304995 4.94042349999999963 20.0219500000000004 1.49760629999999995 0 0.825521469999999979 0.101531979999999994 0.723989499999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.490279027071011 -62.963918656797901 22.7941234966096005 -12.8783117903158999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191817941611520 2481191817941611520 1232933521 2015.5 25.8529444418254997 0.0357384605563079993 -3.21289766042090985 0.0330298447578815033 0.701769410923263948 0.0441271760691264031 15.9033379999999998 15.1266114846579001 0.0767058905154865966 -6.24511570515073977 0.0753174739642919061 0.247016769999999997 0.367433129999999997 0.0161993840000000007 -0.0172146260000000002 -0.193439499999999986 -0.0535121799999999995 -0.201432909999999993 -0.0669841500000000062 0.0548448399999999989 0.442396640000000008 150 150 150 0 0.546830240000000023 153.817993 0 0 31 true 316.442799999999977 1.53059431392231993 0.0103659406550017999 0.0979212200000000033 17 10 0.0569296140000000034 0 17 false 147 224726.499124063004 58.0842225590178032 3868.97998 12.3092299999999994 15 101049.298412819 126.712358983667002 797.470000000000027 12.8400545000000008 14 175985.184252581006 168.496663178694007 1044.44309999999996 11.6482299999999999 1.23276279999999994 0 1.19182490000000008 0.530824659999999948 0.661000249999999956 26.5783047370968006 0.826973092216606975 6 5000 3 0 NOT_AVAILABLE 152.621708828511998 -63.0489015276358984 22.7708409352086001 -12.9796322276274001 100001 4909.5 4849.0498 5115.66992 \N \N \N \N \N \N 200111 6.23018099999999997 5.73812700000000042 6.38648560000000032 20.3163240000000016 18.5009100000000011 22.1317389999999996 +1635721458409799680 Gaia DR2 2481191852301584000 2481191852301584000 386978231 2015.5 25.8670041468208005 0.70087507447993902 -3.19883780889525005 0.844824797528592963 -1.46880543321344992 0.877318768108896974 -1.67419819999999997 -1.24795838423857997 1.88318190703571009 -1.43251713786738 2.16346028722602002 0.253847570000000022 0.0830808799999999958 -0.194848510000000003 -0.0904033600000000021 -0.418807600000000002 -0.356265200000000004 -0.663152300000000028 0.17168833 0.262403039999999976 0.659744899999999967 117 0 117 0 1.57093759999999993 136.432999 0 0 31 false 0.0494331230000000024 1.63081691268841 0.211688570212968996 0.192156049999999995 14 9 2.3614320000000002 0 14 false 116 162.278819051921005 2.10137197218046001 77.2251968 20.1627100000000006 10 147.980986137614991 15.9465761322797004 9.2797970000000003 19.9258729999999993 10 126.181089202915004 14.6296183777026005 8.62504299999999979 19.5094339999999988 1.68945070000000008 0 0.416439060000000028 -0.236837390000000009 0.653276439999999958 \N \N 0 \N \N \N NOT_AVAILABLE 152.635794153705007 -63.0300878056333005 22.7895392788845008 -12.9717116437239 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191787877129216 2481191787877129216 552033414 2015.5 25.8697709737306987 3.03872051447725999 -3.20937556492637999 2.58436498043813989 \N \N \N \N \N \N \N 0.262174000000000018 \N \N \N \N \N \N \N \N \N 111 0 110 1 56.0487800000000007 4803.0498 17.5937868915363005 253.431361172702992 3 false 0.00305545239999999987 \N \N 0.140000910000000006 17 10 5.68094439999999956 0 17 false 149 325.324602657844025 4.1481343458916804 78.4266968 19.4075740000000003 14 491.493804221542973 11.8041953654267004 41.6372149999999976 18.6225929999999984 14 1019.38975021732006 10.9207696144629001 93.3441300000000069 17.2410700000000006 4.64423370000000002 0 1.38152309999999989 -0.784980800000000034 2.16650400000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.651526289492011 -63.0383208856413972 22.7882040686730001 -12.9825275040193997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191890956069248 2481191890956069248 1664638443 2015.5 25.8833956034490988 1.10706288305857004 -3.20561136615935993 1.53725574986318003 \N \N \N \N \N \N \N 0.163856059999999998 \N \N \N \N \N \N \N \N \N 102 0 101 1 -1.74608059999999998 73.2232971 0 0 3 false 0.0216561200000000009 \N \N 0.203406799999999999 12 8 4.85505999999999993 0 12 false 103 95.4093047527216953 1.4426117765042199 66.1364975 20.7393900000000002 8 41.5798989784442981 10.9458307679661999 3.79869749999999984 21.3041799999999988 10 70.5500251481129936 7.17022400652415026 9.83930600000000055 20.1406759999999991 1.17525149999999989 0 1.16350360000000008 0.564790699999999979 0.598712899999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.674764746029012 -63.0289309137817 22.8026073457928007 -12.9840226538943995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191886661321856 2481191886661321856 1554887953 2015.5 25.8874055099926004 0.293617825041910974 -3.20250341150625983 0.251004715982869997 0.601548967115419053 0.369293372631738004 1.62891889999999995 14.0704861522846993 0.670282118977509001 -5.45241281618443008 0.487575387170837982 0.177961619999999987 0.159592299999999992 0.0542458800000000033 0.115169830000000001 -0.356546250000000009 0.151284749999999996 0.0255187530000000017 -0.121621980000000005 0.0404921400000000029 0.338386149999999997 143 0 143 0 1.99623020000000007 173.115005 0.710749154104464043 1.00824553046971999 31 false 0.229581279999999999 1.38459761575292006 0.0718642728691085975 0.115055926000000003 16 10 0.620876800000000006 0 16 false 141 484.362781360534996 1.88772673209212005 256.584991 18.975439999999999 14 168.229306839538992 13.2655855438864005 12.681635 19.7866339999999994 15 501.913036881671019 8.31135294860722951 60.3888469999999984 18.010349999999999 1.38355460000000008 0 1.77628520000000001 0.811195400000000011 0.965089799999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.679651059220987 -63.0243727943762977 22.8076002662225008 -12.9826022452272998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192749949802368 2481192749949802368 1284440646 2015.5 25.8660294507379014 0.677666931677419981 -3.17332868637583987 0.587729980083547043 0.57939774852452397 0.811109572971696946 0.714327339999999977 7.46473179784218033 1.69154945412916002 -6.27239939831772997 0.906320257666786033 0.246950609999999987 -0.184362780000000004 -0.0895311899999999966 0.336726340000000013 -0.504432699999999956 0.46900662999999998 0.527374699999999974 -0.183698 -0.291338099999999989 0.338916150000000027 114 0 113 1 7.71274499999999996 264.423004 2.11542429109921004 4.96668204855076034 31 false 0.0754467550000000042 1.18877907523180992 0.142113594769606999 0.0356294600000000017 13 8 1.55426989999999998 0 14 false 110 274.860069108403991 1.7579502654813699 156.352997 19.5905859999999983 11 79.8413332906815043 8.37857820473501036 9.52922249999999948 20.5958199999999998 10 521.912354546421966 20.1593917720235005 25.889289999999999 17.9679259999999985 2.18930910000000001 0 2.62789340000000005 1.00523380000000007 1.62265970000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.609045813036005 -63.0076292100295987 22.7982243228708015 -12.9476279109979 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191719157651840 2481191719157651840 1121630483 2015.5 25.9054190746302986 0.0385223814520845032 -3.19893954156628002 0.0327320350691042983 3.64459827725936014 0.0455202477530827002 80.0654300000000063 11.3083718017799004 0.0837665438097103948 -13.9238984279398998 0.0698461399982463066 0.107981489999999999 0.252720449999999985 -0.0222135730000000003 0.0828762400000000038 -0.183076600000000006 0.0853617400000000054 -0.0837451699999999938 -0.0732261599999999985 0.0282129220000000014 0.262872129999999982 129 0 129 0 1.49437489999999995 148.300995 0 0 31 false 19.8238279999999989 1.39962876530555991 0.0109629078210860004 0.0207905019999999989 15 9 0.0863610499999999948 0 16 false 127 16507.6625177827991 8.64805440962981997 1908.82996 15.1441520000000001 14 5559.91453496347003 11.1589456847340003 498.247279999999989 15.9887180000000004 14 16017.6306628418006 23.7330602150552004 674.907960000000003 14.2504240000000006 1.30712300000000003 0 1.73829359999999999 0.844566350000000021 0.893727300000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.71172469890999 -63.0132182156380978 22.8261111614511982 -12.9858920570757999 100001 4089.05005 3992.20996 4188.72021 0.335999995 0 0.680199981 0.165999994 0 0.392399997 200111 0.554669700000000043 0.528587099999999976 0.581905600000000023 0.0774913500000000005 0.0753331000000000001 0.079649600000000001 +1635721458409799680 Gaia DR2 2481197800831342720 2481197800831342720 1281623765 2015.5 25.907532693429701 0.100207548303488006 -3.18238577517174015 0.0814152375571025044 2.01666234925321985 0.119988509273636995 16.8071289999999998 5.89653875850295961 0.222935111805426994 -38.2319958378696967 0.148925145908677004 0.167463400000000012 0.18668056999999999 0.0213714800000000017 0.142928389999999989 -0.22996222999999999 0.175672650000000014 0.136186630000000003 -0.0955661099999999958 0.0532281319999999974 0.235417989999999994 142 0 142 0 1.28868270000000007 158.720993 0.103382935746645005 0.17822122964867701 31 false 2.15358759999999982 1.38470889510797002 0.0245260313150756984 0.0714509700000000025 16 10 0.204294950000000003 0 16 false 140 2358.48882284324009 3.03173824575164019 777.932983 17.2567799999999991 13 668.987569422361048 10.8552249126194997 61.6281620000000032 18.2878439999999998 14 2552.14888639253013 25.5825186979945016 99.7614399999999932 16.2446559999999991 1.36576279999999994 0 2.04318799999999978 1.0310630999999999 1.01212499999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.699751089508993 -62.9974403053058012 22.8343631721262987 -12.9712694806888003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481197865255801088 2481197865255801088 1213816765 2015.5 25.8974206716296003 0.158097693688439012 -3.1780348345593401 0.126301262874235987 0.576472980663147005 0.184498438596370995 3.12454130000000019 -1.91647330962662998 0.374261084920820997 -5.28173180681726961 0.231826582857663999 0.0886538999999999938 0.062279420000000002 0.0171402379999999986 0.102377739999999995 -0.23355627000000001 0.139511539999999989 0.209827419999999987 -0.117998086000000002 0.0669577699999999998 0.0936691760000000068 124 0 123 1 2.24075870000000021 155.078003 0.303186277011933014 0.724460166027864005 31 false 0.953556599999999976 1.5311447336850601 0.038414441636515001 0.0148260435000000003 14 9 0.332643299999999975 0 15 false 126 1315.99526723822009 2.58097986268117996 509.881989 17.890229999999999 12 553.540784469542018 13.2401706487643995 41.8076799999999977 18.4935149999999986 12 1082.29110012472006 9.3741793353520908 115.454490000000007 17.1760599999999997 1.24303779999999997 0 1.3174553 0.603284840000000044 0.714170459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.675568458800996 -62.9980047952440998 22.8263655814130004 -12.9635152422501996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481193024827708672 2481193024827708672 1622728469 2015.5 25.8509652337229987 0.0686727535024310026 -3.15362560114677981 0.0637652126315839951 11.0545846475076992 0.0890220335004618946 124.178070000000005 49.7070606925076035 0.166390188220845003 -25.7252974546534006 0.12896786312539199 0.109284800000000001 0.0919901099999999999 0.170234489999999988 -0.0907731400000000022 -0.23179203000000001 -0.110609589999999994 0.112595749999999994 -0.14838997000000001 0.260074599999999989 0.00473482530000000033 114 0 114 0 8.79794500000000035 296.036011 0.381374862216343979 12.3087759444103 31 false 5.48936840000000004 1.22356111422330005 0.0184788648187671004 0.0959304500000000004 13 8 0.152085969999999987 0 14 false 114 23522.7789076474 21.7999480461875983 1079.03003 14.7596445000000003 12 3873.87676874557019 24.0109568619356999 161.337880000000013 16.381022999999999 13 31289.6288740851996 66.2881923008842051 472.024170000000026 13.5234190000000005 1.49487039999999993 0 2.85760399999999981 1.62137890000000007 1.23622509999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.560167865052989 -62.9965783950138984 22.7912947139910997 -12.9237775862762998 100001 3974.73999 3648.44995 4172.52979 1.72300005 1.38960004 1.99510002 0.944999993 0.774299979 1.08899999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198621170047488 2481198621170047488 258928747 2015.5 25.8892147750493002 1.15443491423211997 -3.16091431968244008 1.18775892922519 3.00904472056762007 1.42313794065567989 2.11437320000000017 7.32388847072501026 2.95208246497599003 -4.18233066052424007 3.47117063373590007 0.022096178000000001 0.077952980000000005 0.0810731350000000045 -0.0223608970000000011 -0.515789700000000018 -0.19507642 -0.482005660000000002 0.0074481536000000001 0.270414800000000011 0.442274270000000025 84 0 84 0 -0.377244829999999975 73.7138977 0 0 31 false 0.0231558939999999998 1.78254480474260002 0.344753300908740012 0.0955569150000000062 10 9 3.46694609999999992 0 10 false 87 108.673033898225 1.77654009645801003 61.1711998 20.5980600000000003 5 64.7129171530966971 22.7983542743379992 2.83849069999999992 20.823912 7 101.882892547891004 6.20648679162592032 16.4155499999999996 19.7416669999999996 1.53300049999999999 0 1.08224490000000007 0.225851059999999992 0.856393799999999983 \N \N 0 \N \N \N NOT_AVAILABLE 152.64272030861801 -62.9862688218994009 22.8249961750974997 -12.9445821525299998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198724250344448 2481198724250344448 620290904 2015.5 25.8862168493654003 1.05841643513787997 -3.1498547664591201 1.04910449489956004 \N \N \N \N \N \N \N 0.261393959999999981 \N \N \N \N \N \N \N \N \N 105 0 103 2 -0.25240385999999998 93.8593979 0 0 3 false 0.0253920070000000012 \N \N 0.17488187999999999 12 8 5.3071003000000001 0 12 false 102 109.986136782138004 1.31720969306013003 83.4992981 20.5850200000000001 8 41.1236640699359981 13.4683578735736003 3.05335400000000012 21.3161580000000015 9 151.588646416383 14.1315509436424005 10.7269649999999999 19.3102529999999994 1.75215089999999996 0 2.00590519999999994 0.73113819999999996 1.27476689999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.626055967500008 -62.977668400122603 22.8263060309686985 -12.9331960055611006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386637658518400 2481386637658518400 1135075434 2015.5 25.8472136572781004 0.813608274124492992 -3.12498201676016008 0.649761162460590014 1.92445288975317008 0.961533764999419005 2.00144080000000013 15.0163957757975997 1.86151254996188009 -50.5571464718725991 1.1447511061651201 0.168555050000000012 0.104597375000000006 -0.0025051056999999999 0.161860809999999994 -0.265935839999999979 0.210037079999999987 0.185626550000000001 -0.090993433999999998 0.0432514250000000031 0.222555520000000007 129 0 128 1 4.27964599999999962 202.143997 2.78092052529669997 3.87857429648733998 31 false 0.0346964339999999982 1.30369918380569993 0.199380886318103995 0.0948670900000000011 15 10 1.66291820000000001 0 15 false 127 165.94158579583501 1.31849517198722999 125.857002 20.1384770000000017 11 51.4359208103888008 8.44621499899393946 6.08981900000000032 21.0732210000000002 14 217.540051821144004 7.62606054295682956 28.5258749999999992 18.9180719999999987 1.62090749999999995 0 2.15514949999999983 0.934743899999999961 1.22040560000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.524992034572989 -62.9725119801216024 22.7985126544197989 -12.8957599333402992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386637660492672 2481386637660492672 362938215 2015.5 25.8487988736908001 1.25597623502617006 -3.12438354267592011 1.13116390229357 0.0270874469162356996 1.37308663285509991 0.0197274129999999992 18.3395801539794014 3.3398497380002401 10.1561042076811994 3.05232654656290991 0.153278649999999989 -0.103124839999999995 -0.169399130000000009 0.0130193040000000006 -0.248429919999999999 -0.0995554000000000022 -0.485743140000000018 0.00205441420000000013 0.0493546700000000033 0.437825599999999981 95 0 94 1 0.277099499999999999 92.0647964 0.658479187144172973 0.0500714939152615002 31 false 0.0197405299999999992 1.53435532186825996 0.348651548767232977 0.0386251300000000006 11 8 3.39219159999999986 0 11 false 95 92.040388986256005 1.34415695099628008 68.4744034 20.7784200000000006 7 40.2194293014213997 8.2469102553264797 4.87690900000000038 21.3402980000000007 9 122.684942926611001 11.5829045842280998 10.5918980000000005 19.5399419999999999 1.76992269999999996 0 1.80035590000000001 0.561878199999999994 1.23847770000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.527539917028008 -62.9712778608040011 22.8002484787423008 -12.8957845728369005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198999128208128 2481198999128208128 359787479 2015.5 25.8600303710751014 4.9672429033624601 -3.12771505228458002 2.31077126271435995 \N \N \N \N \N \N \N -0.432018669999999994 \N \N \N \N \N \N \N \N \N 48 0 47 1 2.23398019999999997 65.0852966 3.23259251614808996 0.824979275950407986 3 false 0.0100618919999999994 \N \N -0.199876500000000012 6 6 12.228548 0 6 false 48 69.867979543720395 2.7492398703663401 25.4136009 21.0776709999999987 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.552924134774003 -62.9693302910593005 22.8096946534877993 -12.9030017060870996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198999127175296 2481198999127175296 403725762 2015.5 25.8590085016041016 0.316500143960932012 -3.12486349773468008 0.236630125841045008 0.536291776511169993 0.385023993741489989 1.39287889999999992 15.4353054565779004 0.656831738471929993 -12.6043321991127009 0.418140384527781017 0.0275527970000000004 0.290287139999999999 -0.00431440399999999998 0.150812009999999996 -0.360187099999999982 0.203447789999999989 0.146635879999999996 -0.0998287000000000063 0.0274020939999999984 0.241405229999999998 119 0 117 2 2.31127359999999982 149.466003 0.77464148108346198 1.75218026891034007 31 false 0.28828885999999998 1.37024927100137006 0.074015979082124303 0.0446091630000000003 14 10 0.590513100000000013 0 14 false 117 582.698259800189021 2.2253823139511999 261.84201 18.774754999999999 11 186.844606487480007 13.5397532168419001 13.7997055 19.6726880000000008 10 671.991100831565973 11.4192457957319995 58.8472399999999993 17.6935119999999984 1.47389440000000005 0 1.97917560000000003 0.897932049999999982 1.08124350000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.548144750959011 -62.9672197867279024 22.8097952679644997 -12.8999746850824 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198930408751488 2481198930408751488 1242842023 2015.5 25.8716176864138987 1.07976088460167996 -3.13704728604544014 1.12913095774172989 -0.39943075273460199 1.29771215043049004 -0.307796120000000006 9.73970932009560997 2.92186407036777984 -6.43344178240954001 3.10798383990284988 0.205565720000000007 -0.0269561260000000004 0.0167115200000000005 -0.0158103030000000012 -0.328550930000000019 -0.188754990000000011 -0.535983499999999946 -0.0887470699999999973 0.104630360000000006 0.542063239999999946 103 0 101 2 0.973336500000000049 109.399002 2.58007968092391993 4.23418559776289971 31 false 0.0219636630000000013 1.50260023948465005 0.323696898233086006 0.0756685299999999977 12 8 3.32268020000000019 0 12 false 101 110.039543077941005 1.73069182486841999 63.5811996 20.5844939999999994 9 54.1321323115110005 20.8558093773653006 2.59554220000000013 21.0177499999999995 9 168.486040235882001 18.9252398797265009 8.90271700000000088 19.1955099999999987 2.02307440000000005 0 1.82223890000000011 0.433256150000000007 1.38898279999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.584828761598004 -62.9726075437271007 22.8172196876317983 -12.9159305799290003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481199037781922688 2481199037781922688 301837634 2015.5 25.8764442810865987 0.0468639169815346021 -3.1268157184626002 0.0416996345864920001 3.16006336376756991 0.0550728287199818978 57.3797199999999989 34.4450470130312993 0.103960856238664995 0.266295441178327985 0.0830807388050329998 0.226369369999999986 0.255685900000000021 0.105905559999999996 0.0848737660000000033 -0.0973784199999999933 0.0832206300000000038 0.0989250400000000057 -0.137210310000000002 0.0725234599999999979 0.234500970000000003 122 0 122 0 1.09169910000000003 133.776993 0.0863751600986719936 0.456729512544847005 31 false 12.5431810000000006 1.41377086000656993 0.0124049470398363993 0.0765343599999999957 14 10 0.103013289999999993 0 15 false 120 12126.0712200966009 8.95103378710978959 1354.70996 15.4790659999999995 12 4034.4283928057298 16.9449177291620998 238.090759999999989 16.3369329999999984 13 11939.8605620512008 51.0989273165082025 233.661669999999987 14.5694219999999994 1.31735069999999999 0 1.76751140000000007 0.857867240000000031 0.909644099999999955 \N \N 0 \N \N \N NOT_AVAILABLE 152.584418767585987 -62.9612992844362012 22.8256730718015994 -12.9081833293403001 100001 4101.81006 3931 4368.4502 0.324499995 0 0.684099972 0.151999995 0 0.307999998 200111 0.542746839999999953 0.478512199999999999 0.590938500000000033 0.0751262099999999988 0.0722868140000000048 0.077965599999999996 +1635721458409799680 Gaia DR2 2481198758609117312 2481198758609117312 278131837 2015.5 25.8989061292386999 0.969882813285405043 -3.14662438454055016 0.939304044224406054 1.02233908753893998 1.17748130012179009 0.868242300000000022 4.00381155964293001 2.48339307602565995 -10.5512711309326992 2.63964012028821982 0.0377845470000000017 0.117975070000000001 -0.0419991349999999999 0.0648903549999999968 -0.412628769999999978 -0.149396790000000002 -0.484889400000000026 -0.0338169999999999998 0.101056895999999993 0.527212140000000051 104 0 103 1 1.84167670000000006 125.323997 1.98460680529310007 0.986711591963565948 31 false 0.0288782250000000004 1.36056514623291003 0.27266794806241601 0.0653509500000000049 12 9 2.80186370000000018 0 12 false 102 132.80375235116 1.46404070104994011 90.7104034 20.3803400000000003 5 51.8328823763469018 9.75075151632564996 5.31578350000000022 21.0648750000000007 8 179.755282848923997 11.1496816263324998 16.1220110000000005 19.1252160000000018 1.74383749999999993 0 1.93965910000000008 0.684534100000000034 1.25512500000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.647931728656999 -62.9691739654171982 22.8396149835050011 -12.9348432238792004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198758609003520 2481198758609003520 389335369 2015.5 25.9044240265962991 0.496953375702070987 -3.14742272241972021 0.387653241353776989 -0.181537572332179986 0.602010450256354024 -0.301552199999999992 4.91150052382472957 1.1375653350450099 -2.65601601216840022 0.635212122835942972 0.174997299999999995 0.0620507859999999967 -0.0530751719999999969 0.188660949999999994 -0.29252893000000002 0.238002149999999996 0.260379519999999975 -0.0605466370000000004 0.0407817550000000029 0.197439029999999988 137 0 136 1 1.50282720000000003 156.112 0.823824126392719958 0.599676404308685962 31 false 0.0951923900000000017 1.38009669829443005 0.110860461422295997 0.0817280400000000018 16 10 1.01172229999999996 0 16 false 137 262.235672382115979 1.59318088608155994 164.598999 19.6416359999999983 13 93.7730445498847018 10.6109513755795 8.83738300000000088 20.4211939999999998 12 266.409361652044026 6.80037919783668965 39.1756630000000001 18.6980460000000015 1.37350649999999996 0 1.72314830000000008 0.779558199999999979 0.943590159999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.659582774119002 -62.967455365355498 22.8445725349337003 -12.9376085767550002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198827328481536 2481198827328481536 680823354 2015.5 25.8955030696433006 0.916287104305260947 -3.13701527408897984 0.769738713746039971 0.482336478144965997 1.0821933828500101 0.445702670000000023 2.98947842255694995 2.21993557231877991 -7.91815153064998967 1.62211445854129011 0.167017310000000002 0.00852892199999999955 -0.0756044599999999983 0.0747919999999999974 -0.307347419999999982 0.0950682699999999964 -0.0937314300000000045 -0.0446816569999999996 0.0627195599999999936 0.289675559999999999 120 0 119 1 5.2981600000000002 213.160004 3.38159203901673999 4.4637259543836203 31 false 0.0271609610000000008 1.43118542459367992 0.247481366514473 0.089773859999999997 14 10 2.02353860000000019 0 14 false 115 151.719401106525993 1.40062837241464 108.321999 20.2357639999999996 12 88.352133969976606 10.4361744648335009 8.46594999999999942 20.4858459999999987 10 121.191096125648002 8.3600213292380392 14.4965060000000001 19.5532439999999994 1.38112349999999995 0 0.932601899999999984 0.250082020000000016 0.682519899999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.631886314333997 -62.962054096374402 22.8399917812436009 -12.9246576378524995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198861688222080 2481198861688222080 853376357 2015.5 25.8976661326485988 0.386399145735564997 -3.12488850698782006 0.302951138607029991 1.45182312781638001 0.458595715333377008 3.16580180000000011 1.8031303072145799 0.899081849622981988 -1.39219312536170992 0.514829418766790003 0.148741399999999996 0.0404735769999999967 -0.0416555629999999996 0.16674412999999999 -0.317804750000000025 0.223026289999999988 0.22937152999999999 -0.0770763700000000052 0.0320293830000000015 0.191571820000000004 142 0 142 0 2.08984799999999993 173.804001 0.880500722066863029 1.06772673265781992 31 false 0.147211950000000008 1.58496660333591 0.0876159690980436029 0.0616608000000000017 16 10 0.799658949999999979 0 16 false 142 361.150777018051997 1.55401749211780005 232.397995 19.2941439999999993 13 205.454359457706005 16.1121428076314004 12.7515230000000006 19.5696000000000012 13 245.980517191972012 10.3715345529196004 23.7168869999999998 18.7846679999999999 1.24999009999999999 0 0.784931200000000051 0.27545546999999998 0.509475699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.624371394797009 -62.950219880842603 22.846620670628301 -12.9141706087364003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386672020232576 2481386672020232576 16767002 2015.5 25.8512260628770001 12.1755013099724998 -3.10931273310335987 3.7441691883997299 \N \N \N \N \N \N \N 0.854996700000000054 \N \N \N \N \N \N \N \N \N 59 0 59 0 3.55244450000000001 98.9685974 3.00593254309324998 1.03607896937654997 3 false 0.0167615360000000005 \N \N 0.059163331999999999 7 5 507.61126999999999 0 7 false 59 83.3166460912245981 1.49609323775721004 55.6894989 20.8865359999999995 6 21.9329626325094011 5.55962950079288998 3.94504020000000022 21.9986460000000008 5 110.359438134222003 16.8871635978889998 6.53510800000000014 19.6548960000000008 1.58782669999999992 0 2.34375 1.11211009999999999 1.23163990000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.51773495270001 -62.9566785594144989 22.8082384856606986 -12.8826567576511 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386843816949376 2481386843816949376 642170367 2015.5 25.8591753111100005 0.214562537768195005 -3.09809429260499991 0.173934972901297003 1.52616357005453995 0.246726797181484991 6.18564199999999964 18.2624082165522985 0.477436524702123999 7.43306308801043958 0.290964225583400016 0.211911769999999999 0.152119349999999987 -0.0181075950000000006 0.211614250000000004 -0.179518769999999994 0.246877669999999994 0.258560840000000014 -0.0445812699999999992 0.0698942699999999945 0.220580069999999989 127 0 127 0 3.03156470000000011 174.897003 0.426702285589857011 0.796151643628481009 31 false 0.523932199999999959 1.32557767763744994 0.0482474424231858975 0.0933607500000000062 15 10 0.429088770000000008 0 15 false 126 842.391698239890047 2.18772543260736008 385.053986 18.3745800000000017 10 229.558759918260989 6.13695816815080963 37.4059519999999992 19.4491540000000001 11 937.210625740740056 12.9053019012460002 72.6221400000000017 17.3323269999999994 1.38506759999999995 0 2.11682699999999979 1.07457350000000007 1.04225349999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.522551635087012 -62.9431116692901966 22.8200377837092994 -12.8751366541099994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481199136566131712 2481199136566131712 52249813 2015.5 25.8840089989151991 0.356793244133511989 -3.10067716899005985 0.348786096063313011 3.3634883182836699 0.460660748852234014 7.30144299999999991 48.6057341733176997 0.912057722281170991 -6.82667126253678003 0.568253815407267049 0.376992370000000021 -0.185238609999999998 0.174365639999999988 0.352562900000000012 -0.543736400000000009 0.494889899999999994 0.502017099999999994 -0.341602599999999978 -0.298456900000000025 0.467636050000000025 131 0 130 1 2.00827799999999979 158.735001 0.736951556508359973 1.07445911448831 31 false 0.201639440000000003 1.17669954393964993 0.0834440623389823 0.119207869999999994 15 9 0.885823249999999951 0 15 false 131 444.611683414752974 1.79985433695340991 247.026001 19.0684129999999996 11 76.8248451539760993 9.14584801044028062 8.39996999999999971 20.6376339999999985 12 613.436924509054052 11.0379749611825009 55.5751339999999985 17.7924959999999999 1.55250479999999991 0 2.84513850000000001 1.56922150000000005 1.27591699999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.573986710697 -62.9345080626254969 22.8427259921148007 -12.8866434631346003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481199445803776000 2481199445803776000 1594139772 2015.5 25.9049599568165014 1.15517371316355 -3.10933620673512978 1.02217209085333005 -1.51856301641712998 1.21895006625764002 -1.2457959999999999 19.7856322158676008 3.2051660659508201 -0.116403675562209999 2.96638379058126 0.165354859999999992 -0.2349329 -0.316110759999999991 0.00143444610000000006 -0.256330579999999975 -0.0985566999999999971 -0.475651060000000014 0.112407809999999997 0.0359277730000000031 0.425151649999999992 104 0 104 0 -0.223748360000000007 95.2337036 0 0 31 false 0.0227698980000000002 1.14667557633665007 0.303091926042140025 0.0818014299999999944 12 9 3.26404020000000017 0 12 false 105 101.876827515322006 1.47927508557296994 68.8694 20.668177 6 64.2453434344512004 30.6412843683705987 2.09669229999999995 20.8317830000000015 10 148.82049551171599 12.9581843814923001 11.4846719999999998 19.3302629999999986 2.09140630000000005 0 1.50152020000000008 0.163606639999999998 1.33791349999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.623642585965001 -62.9330499450655978 22.8594280715154987 -12.9023776982851999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357912919897600 2481357912919897600 1342024311 2015.5 25.4109272576003988 1.29365696752411008 -3.23781514278637017 0.775198865395038017 1.1694099227861201 1.46660637615273992 0.797357740000000037 -2.61935455773563008 1.77775135223760006 -6.66532948720104024 1.9099531743748801 -0.102005479999999996 0.76016079999999997 0.103457209999999994 -0.181884269999999987 -0.229467169999999998 -0.26440296000000002 -0.189760679999999987 0.104392566000000006 -0.00259986919999999995 0.16281277999999999 106 0 104 2 -1.19423100000000004 82.5365982 0 0 31 false 0.033612450000000002 1.12437294265240006 0.27675854113308801 -0.0940499699999999966 12 7 1.77767999999999993 0 14 false 107 118.213348528032 1.3340389737615701 88.6130981 20.5066990000000011 9 55.6291425497161001 10.5100615363217997 5.2929415999999998 20.9881320000000002 9 131.964939282989008 7.4873840306249102 17.6249730000000007 19.4607729999999997 1.58691120000000008 0 1.52735899999999991 0.481433869999999986 1.04592510000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.766076864374014 -63.2636238728197995 22.3404332286631018 -12.8404271264864001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357912916800256 2481357912916800256 1068933736 2015.5 25.4071075355712992 1.24635916329352003 -3.23459686568306992 0.834603639856581037 3.29516484185000014 1.42001788258648998 2.32050940000000017 14.9046587493361997 1.81678297913169007 1.99329378574612992 1.94752885242812002 -0.20339409 0.702055800000000008 0.217873590000000006 -0.0166395499999999995 -0.33783856000000001 -0.276729639999999999 -0.409414620000000007 0.112172900000000006 0.16102422999999999 0.253461419999999993 121 0 121 0 0.496602770000000027 123.035004 0 0 31 false 0.0278578639999999995 1.23026152304525005 0.281484254381301979 -0.121609099999999998 14 8 1.93329580000000001 0 14 false 121 112.847269873404002 1.29944938257779996 86.8423996 20.5571379999999984 9 126.577497811697 8.96756436215678931 14.1150359999999999 20.0954970000000017 10 49.7685537339121993 8.40548828637056999 5.92095950000000038 20.5195329999999991 1.56269670000000005 0 -0.424036030000000008 -0.461641299999999977 0.0376052860000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.755348428520989 -63.2623572842371971 22.3380134699733013 -12.8360299749740001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358462672500096 2481358462672500096 874244458 2015.5 25.4875836368746995 0.249998962723465001 -3.2400159924629599 0.174936164546660999 3.46129125861018982 0.306473710561913026 11.2939249999999998 15.8516741979527005 0.437631153857057975 -13.4365378302707992 0.293935000151774983 -0.0626634499999999955 0.555488599999999999 0.0771542399999999989 0.114747370000000001 -0.298303800000000008 -0.0172868559999999998 0.199854420000000005 0.0653393699999999938 0.185406309999999991 0.112128099999999994 168 0 167 1 4.7092729999999996 261.493011 0.836121547106730034 3.50944991485086 31 false 0.383140099999999983 1.28680922647684004 0.0547488653595950975 0.0176851020000000012 19 10 0.388773829999999987 0 19 false 166 789.889835612547017 1.91777741534641999 411.877991 18.4444480000000013 16 168.560241206947012 20.9506067287315005 8.04560200000000059 19.7845000000000013 16 1026.58457638909999 9.3748889027843294 109.503653999999997 17.2334330000000016 1.51305259999999997 0 2.55106739999999999 1.34005170000000007 1.21101569999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.921611159386998 -63.2326262990318 22.4125815503976007 -12.8706693237193992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358462672614272 2481358462672614272 88089854 2015.5 25.4909757051413983 1.01088102953832992 -3.23343302704593993 0.904523751848910984 -0.495640053722112006 1.24030137051438993 -0.399612599999999984 -0.638581629785007987 2.01765384539997017 -1.0062013410981101 2.33504722317143987 -0.0423003500000000004 0.46249148000000001 0.0743678700000000026 -0.145932929999999988 -0.440237019999999979 -0.399538820000000017 -0.489674149999999975 0.215879979999999999 0.354263480000000019 0.310809730000000006 115 0 112 3 2.98017699999999985 155.927002 2.72030240781315991 2.27486532327103008 31 false 0.0306435130000000007 2.03897693659089985 0.265298244632922009 0.0259877929999999986 14 9 2.30463340000000017 0 14 false 111 143.897155264002009 1.90824503006993007 75.4080963 20.2932360000000003 11 104.422938829567997 9.85325301465853087 10.5978139999999996 20.3043979999999991 11 106.547771737193003 9.5800419858191006 11.121848 19.6930599999999991 1.46612140000000002 0 0.611337660000000005 0.0111618040000000009 0.600175860000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.922077990952999 -63.225226254064097 22.4182982836503015 -12.8657964593407996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358497032240128 2481358497032240128 508443139 2015.5 25.497088486305401 0.741155275952303016 -3.23408074858595018 0.479821915088029016 0.554289917581016978 0.848540436170260981 0.653227450000000043 7.23529018202410956 1.34874278023534 -0.707626502653999956 0.796726670407008952 -0.164193869999999992 0.540807200000000043 0.0699446299999999938 0.0402563329999999983 -0.319562500000000027 -0.0276775169999999987 0.324939800000000001 0.0195045920000000012 0.0941742359999999945 -0.00555142900000000009 175 0 175 0 2.88034960000000018 228.022003 1.77226949865093997 1.79831274321899004 31 false 0.0471329600000000015 1.38740049240475005 0.152249294340736002 -0.0654210999999999959 20 10 1.18392849999999994 0 20 false 174 178.093634160877997 1.46763244244419 121.348 20.0617449999999984 12 64.1633008957155937 13.5589481533890996 4.73217399999999966 20.8331720000000011 14 184.871157006560992 9.9275858266443997 18.6219649999999994 19.0947479999999992 1.39833439999999998 0 1.73842429999999992 0.77142714999999995 0.966997149999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.934916441908001 -63.2231731542185003 22.4238738013937997 -12.8686463666308004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358600113662336 2481358600113662336 1548053871 2015.5 25.5233064180073015 1.44547280300629 -3.23694006817154989 1.1621470021973801 1.09874007299907994 2.03580420043922006 0.539708140000000003 1.50957740045262989 2.9303873258086699 -1.85039402469749992 4.14928735759005018 -0.209646699999999991 0.597329099999999946 0.0493721900000000033 -0.323229250000000023 -0.472019399999999978 0.0336296899999999968 0.135771040000000009 -0.354962 -0.410396399999999995 0.534286799999999951 100 0 99 1 0.694203800000000038 103.133003 0 1.0364331011053801e-15 31 false 0.0200830289999999988 0.901575387042167997 0.353175844145414974 0.0707994900000000066 13 9 4.06564040000000038 0 13 false 102 91.4882653451198991 1.58425446296495998 57.7485008 20.7849520000000005 9 54.2077804762501003 10.0529340450015994 5.39223500000000033 21.0162329999999997 12 99.9283037972902974 6.7700606218283097 14.7603259999999992 19.7626999999999988 1.68476340000000002 0 1.2535343000000001 0.231281280000000006 1.02225300000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.990038566435999 -63.214427845095102 22.4477579084047996 -12.8809442493580004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359291601831552 2481359291601831552 1441029144 2015.5 25.4737999374005 0.0495634296749892997 -3.21682802506381993 0.0341578719706238029 4.05305410726847981 0.0552473858504344967 73.3619159999999937 -11.9378709461851003 0.089810756522628904 -10.0581799630655997 0.0699360608740278028 -0.0638359039999999989 0.545168499999999945 0.027648207000000001 0.00336754790000000012 -0.191473349999999987 -0.0356875899999999982 0.0845944960000000051 -0.00695160799999999975 0.0653049500000000005 0.0911052450000000014 171 0 170 1 2.29099500000000011 209.432999 0.122476792431718995 1.13183687531479005 31 false 10.1731350000000003 1.38356818603334997 0.0121834232337838001 -0.0406389720000000024 19 10 0.0857723060000000065 0 19 false 169 10343.3454595716994 6.92509752383304988 1493.59998 15.6517130000000009 18 2853.85049090119992 13.3082334756697005 214.442469999999986 16.7128100000000011 18 11238.2344230997005 25.2491270125088008 445.093999999999994 14.6351750000000003 1.36243010000000009 0 2.07763579999999992 1.06109710000000002 1.01653860000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.871835250515005 -63.2176508743481023 22.4082183951191993 -12.8440427360272995 100001 4040.05005 3848 4205.31006 0.0780000016 0.0219000001 0.291599989 0.0452000014 0.0133999996 0.168799996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355683829319296 2481355683829319296 1143274783 2015.5 25.5569720474374016 0.0380063847609221975 -3.23207389331777994 0.0309216931182848993 1.44237115993760989 0.0470227488412362019 30.6738999999999997 17.7132113450089008 0.0687321698681506998 7.99883064428470014 0.0677357037816868068 0.0149439780000000001 0.547520499999999966 -0.0314070320000000014 0.0150748700000000006 -0.298878939999999982 -0.197460949999999996 -0.365923300000000007 0.144687280000000001 0.245926289999999992 0.336302639999999986 167 167 166 1 3.04611520000000002 221.255005 0 0 31 true 281.668600000000026 1.54827104632483992 0.00949694748279989072 0.0105760100000000003 19 10 0.0493704100000000035 0 19 false 165 201865.285191906994 41.7425193920788971 4835.95996 12.4257120000000008 16 95022.1345282615948 181.206251269912997 524.386600000000044 12.9068260000000006 18 152318.172027689987 155.936792881347003 976.794300000000021 11.80504 1.22527410000000003 0 1.10178569999999998 0.481114399999999998 0.620671300000000037 3.06988006601533003 0.949839209683779995 8 5000 3 0 NOT_AVAILABLE 152.052555446484007 -63.1954756579210013 22.4816539584904014 -12.8887951043013 100001 5044 4987.31006 5255.4502 \N \N \N \N \N \N 200111 2.68124800000000008 2.46983119999999978 2.74254350000000002 4.19245999999999963 4.00158300000000011 4.38333700000000004 +1635721458409799680 Gaia DR2 2481355713893544192 2481355713893544192 203906506 2015.5 25.5692686852379012 1.16954209347216009 -3.23870049308208019 1.10929212230535001 -2.15358913366682003 1.62358278790378008 -1.32644249999999997 -0.893218513544990045 2.33727295869740992 -1.80256144784086003 3.61783414403158021 -0.16149463 0.56617150000000005 0.0601961349999999978 -0.213885839999999994 -0.520616900000000049 -0.259329829999999983 -0.311477329999999997 -0.0420334700000000033 -0.00588875640000000034 0.531410300000000002 100 0 100 0 0.901276399999999978 107.248001 0 0 31 false 0.0265953929999999984 1.51969102016261992 0.304059951979785026 0.121059429999999996 12 9 3.43742780000000003 0 12 false 103 112.217144055990005 1.66992743681187994 67.1987991 20.5632170000000016 7 76.1509177385826064 12.4951655973687998 6.09443040000000025 20.6472000000000016 8 63.2303085562516998 9.81500608038722078 6.44220799999999993 20.259606999999999 1.24206710000000009 0 0.38759231999999999 0.0839824700000000035 0.303609850000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.083460672730013 -63.1961171928871011 22.490861664680299 -12.8994758084287007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378150803128320 2481378150803128320 378439921 2015.5 25.6537710090650002 0.712080354281134031 -3.23975318949270008 0.489019001056468006 0.989317727087322019 0.909890840669231982 1.08729279999999995 -2.18945795824315992 1.24982768821109991 -1.22987275317457989 0.852531004873535947 -0.179389660000000006 0.545462899999999973 0.0451582629999999971 0.0710294249999999933 -0.44195905000000002 -0.00405477600000000039 0.058304652999999998 0.0251970590000000008 0.127470699999999992 0.163205939999999994 155 0 154 1 -0.556671440000000017 138.957993 0 0 31 false 0.0530718229999999971 1.59412391849975998 0.161637340488721998 -0.00873587399999999938 18 10 1.10921650000000005 0 18 false 152 172.531535813673003 1.54038636364481007 112.004997 20.0961950000000016 11 109.842480633706998 10.3648977211958009 10.5975459999999995 20.2494620000000012 14 122.063899094830006 7.82670208714850002 15.5958279999999991 19.5454520000000009 1.34413910000000003 0 0.704010000000000025 0.153266900000000011 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.252802620280988 -63.1603333679148022 22.5709471472735999 -12.9315021229840994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378322601832448 2481378322601832448 1554046588 2015.5 25.6460479624317017 0.529337710569425024 -3.22558155652812983 0.370185288658145983 0.719568554708919006 0.67041809717336498 1.07331310000000002 11.3256706122369 0.936815346817868044 -6.37822005670894043 0.613753142814818964 -0.23016433 0.535571800000000042 0.0942747740000000056 0.0536840999999999985 -0.491062580000000026 -0.019962324 0.119227739999999999 0.0315182769999999973 0.116381780000000004 0.121645435999999996 165 0 163 2 3.3366617999999999 224.203003 1.17693015909080989 1.39603932721051005 31 false 0.0932216700000000065 1.37558598513176999 0.115179028375827996 -0.0328790499999999999 19 10 0.829582000000000042 0 19 false 163 262.592051211635976 1.39021946793877005 188.884995 19.6401620000000001 13 66.6887916416573034 10.9380653728171993 6.09694599999999998 20.7912560000000006 14 349.544288249759006 9.17145134768528081 38.1122099999999975 18.4031640000000003 1.585094 0 2.38809199999999988 1.15109440000000007 1.23699760000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.223745027490992 -63.1509462812266023 22.5689400377813989 -12.9154876303074992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357985931774080 2481357985931774080 987852177 2015.5 25.3845437072845996 0.194031617203475004 -3.22913077099227985 0.13029406241739 0.268563530532022976 0.267288621764551981 1.00476980000000005 9.71167930542486957 0.268466789133853023 -16.8402544918238988 0.219513503684558992 -0.246646399999999988 0.742601700000000031 0.0928376399999999991 0.0494853520000000033 -0.509427100000000022 0.0578812469999999968 0.173126880000000011 -0.00136038900000000004 0.0105354009999999998 0.303153659999999991 130 0 129 1 -1.02442089999999997 107.947998 0 0 31 false 1.22198220000000002 1.5069788307924199 0.0387895191545450033 0.0733281900000000014 15 9 0.262720640000000005 0 15 false 128 1415.44532159280993 3.77298989770355009 375.152008 17.8111320000000006 15 611.632672667700945 9.82085422930522967 62.2789700000000011 18.3851620000000011 15 1243.74084052224998 14.4168697837222002 86.2698299999999989 17.0250950000000003 1.3108055999999999 0 1.36006739999999993 0.574029899999999982 0.786037450000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.704906224835014 -63.2670946152227032 22.3186010669116008 -12.8226462079672991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369835745913856 2481369835745913856 1576927650 2015.5 25.3814400979076993 0.472954259185260018 -3.2017683078973298 0.362592087024173004 1.71922168246949991 0.575546068718643 2.98711400000000005 5.87937839588396027 0.701831845508163021 -11.5130698384423997 0.588724324909326024 0.226497830000000011 0.678583200000000053 0.189093950000000011 0.250338730000000009 -0.0954185300000000014 0.231583640000000007 0.518966099999999986 -0.0306539600000000009 0.0945511760000000007 0.313456449999999998 140 0 138 2 -0.371977800000000025 126.379997 0 0 31 false 0.162002730000000011 1.5651231949237201 0.0934942023232227942 0.0882479899999999984 17 10 0.706384360000000044 0 17 false 136 348.542262573856988 1.95292857321911995 178.472 19.3327269999999984 14 160.565674975296986 26.3069704757966996 6.10354099999999988 19.837254999999999 16 374.750277630689027 9.41339776312720922 39.8103100000000012 18.3275639999999989 1.53587099999999999 0 1.50969120000000001 0.504528050000000006 1.00516319999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.672610559194993 -63.2437047973851989 22.3259887202321003 -12.7960678000338 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371313214768128 2481371313214768128 477725448 2015.5 25.3801334697072996 0.921326686468606049 -3.19157797105793994 0.672435531898778027 -0.69020131672844498 1.19303910380379996 -0.578523640000000006 8.90959299040465069 1.55763119687745011 5.31223647122124021 1.0659029143635701 0.00116534480000000007 0.595246260000000027 0.255025859999999993 0.107438610000000004 -0.340802879999999975 0.199012820000000007 0.521029900000000046 -0.164489799999999992 -0.0491664450000000031 0.23180342000000001 138 0 137 1 1.21313129999999991 151.975006 1.47168905992467991 0.979188088530902001 31 false 0.0446889960000000017 1.75029623021144998 0.170813979801421989 0.0707922099999999943 18 10 1.44384620000000008 0 18 false 138 158.628266509944012 1.93479975979526997 81.9869003 20.1874140000000004 13 57.5893216502948988 10.0570972828940999 5.72623700000000024 20.9505330000000001 15 201.635471497395997 9.73707467315984054 20.7080139999999986 19.0005039999999994 1.63416519999999998 0 1.95002940000000002 0.763118740000000018 1.18691060000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.660294212976993 -63.2350566078710017 22.3285960829487991 -12.7861139151505991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371553732969216 2481371553732969216 1408185368 2015.5 25.3865584369339992 1.47856906543242994 -3.17162427354961007 1.32396565919962006 3.61543152079168983 1.80629109823674994 2.00157739999999995 10.5757682859716997 2.36966558788956005 12.1070739110235994 3.34248148352435992 0.342597040000000019 0.709255500000000039 0.117870909999999995 -0.0367135140000000026 0.00455936800000000027 0.191645499999999996 0.390640350000000025 -0.22710422999999999 -0.21753539999999999 0.564099849999999958 95 0 94 1 0.982499299999999964 102.029999 0 0 31 false 0.0255305320000000016 1.3849288309963701 0.312220584064976991 0.200267400000000012 13 9 3.29446459999999997 0 13 false 97 109.993905365778005 1.71112097637622007 64.2817993 20.5849440000000001 8 60.5979044007436016 9.70954535551828002 6.24106499999999986 20.8952449999999992 11 183.495312637721014 8.31856776891936001 22.058523000000001 19.1028580000000012 2.21915219999999991 0 1.79238699999999995 0.310300830000000027 1.48208619999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.654186360707996 -63.2142784441893966 22.3422508424953001 -12.7699283803381007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359493464768128 2481359493464768128 906942816 2015.5 25.4147438871837998 2.62352617940338995 -3.21210012193808003 4.12330903305401986 \N \N \N \N \N \N \N -0.393446420000000019 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.56052469999999999 76.8292007 3.99415340402519981 1.64063080525038996 3 false 0.0138224639999999996 \N \N 0.129504430000000004 8 7 12.9783380000000008 0 8 false 66 84.3365197204153958 1.54603316959708992 54.5503006 20.8733269999999997 5 81.513647531988596 9.44062719613300949 8.63434699999999999 20.5733129999999989 7 85.4849863579078004 16.6738546660597997 5.12688830000000006 19.9321960000000011 1.98014620000000008 0 0.641117099999999995 -0.300014500000000017 0.941131599999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.749165982422994 -63.2387672480130973 22.3537846106520988 -12.8179257407298994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371248790783488 2481371248790783488 656968478 2015.5 25.3966073504766001 0.0467539759628834012 -3.20526425919595015 0.0327237432481466972 7.92071911353303015 0.0539737962202926982 146.751190000000008 23.8102987373878001 0.0745859428970706007 -1.01284401526196999 0.0684917796814124985 0.176777719999999999 0.657100000000000017 -0.00183440290000000004 0.0413196529999999979 -0.00333711090000000021 0.068332866000000006 0.0307970249999999987 -0.037266050000000002 -0.0146385160000000007 0.296780619999999995 147 147 137 10 9.54605399999999982 354.498993 0 0.175707661096698997 31 true 436.792239999999993 1.57415973378287011 0.0109185183531406004 0.0969089699999999971 17 10 0.0483689049999999968 0 17 false 137 672350.686347809038 1004.30135012687003 669.471008 11.1193760000000008 17 323796.432371240982 739.043653732774033 438.128969999999981 11.5757080000000006 17 481512.601834374014 669.088990651279005 719.654049999999984 10.5554009999999998 1.19775150000000008 0 1.02030749999999992 0.456332200000000021 0.563975329999999997 12.9869459975802002 0.654479048408900033 5 5500 4.5 0 NOT_AVAILABLE 151.706326253091987 -63.2403686896853969 22.3391041147188005 -12.8048983687322 100001 5245.33008 5137 5427 0.0205000006 0 0.182999998 0.0135000004 0 0.0715999976 200111 0.809445859999999962 0.756161149999999949 0.843946399999999985 0.446850999999999998 0.442692040000000009 0.451009930000000003 +1635721458409799680 Gaia DR2 2481371244495189248 2481371244495189248 1230979570 2015.5 25.405156088118499 0.198529314915596999 -3.19793794575525014 0.14018707087228599 0.872965904689013028 0.234016556063075004 3.73035959999999989 -22.5987084196851988 0.357340436848401 -47.7178235688110988 0.251834400917710977 0.0050934133999999999 0.560683900000000013 -0.0468616700000000011 0.0999358300000000033 -0.255136279999999993 0.187579699999999988 0.360766230000000021 -0.0807458199999999959 -0.0412375999999999993 0.215225770000000011 149 0 149 0 2.40584640000000016 188.011002 0.401496431485925009 1.08799143536658005 31 false 0.710231199999999951 1.36373701076530995 0.0424707266258851981 0.0244021500000000009 17 10 0.324214219999999997 0 17 false 148 1071.48145933122009 2.46947808390991019 433.890015 18.1134030000000017 16 311.581572354645004 7.35912275851446029 42.339500000000001 19.1174579999999992 15 1191.34534840708989 9.6826123451980699 123.039664999999999 17.0718250000000005 1.40266249999999992 0 2.04563329999999999 1.00405499999999992 1.04157830000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.716464219883989 -63.2300883782739973 22.3500096806868989 -12.8012327432996997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359184229109760 2481359184229109760 315467191 2015.5 25.4567527634870991 2.56745588381251988 -3.22806276411110016 1.53244070148076994 \N \N \N \N \N \N \N -0.162006769999999994 \N \N \N \N \N \N \N \N \N 55 0 55 0 -0.153064580000000006 47.8347015 0 0 3 false 0.012348131 \N \N -0.105469430000000003 7 6 4.69363699999999984 0 7 false 54 71.4532706549692023 1.15115990114888 62.0707016 21.0533099999999997 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.848498233413011 -63.2351263914298016 22.3877441379829989 -12.8482181117913008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359459104922240 2481359459104922240 95940965 2015.5 25.4382973971949014 0.681196969805762054 -3.2142150795534099 0.437642134376962977 0.584468532106318994 0.797421391680110947 0.732948099999999991 6.50840207777612001 1.1413842083977499 6.57999924884305987 0.763426360861557018 -0.13432303000000001 0.602018599999999959 0.17640494000000001 0.0340010450000000006 -0.28537615999999999 -0.0412187050000000013 0.254019170000000016 -0.00394122859999999995 0.101121900000000001 0.0550313799999999978 176 0 174 2 1.66317019999999993 200.710007 1.26243823632548002 0.970105720886124012 31 false 0.0567622929999999984 1.73175996821556 0.140156951312428002 -0.0287948639999999999 20 10 1.01629799999999992 0 20 false 175 186.121655373621991 1.37009995709729004 135.845001 20.0138740000000013 10 55.8553048723056023 17.0530651093332999 3.27538200000000002 20.9837269999999982 13 233.706799793599004 9.07803673755564944 25.7442020000000014 18.8402419999999999 1.55576789999999998 0 2.14348399999999994 0.969852449999999977 1.17363170000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.798330871898003 -63.2305645983476978 22.3754068264158015 -12.8285562349475999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358531391981952 2481358531391981952 863174776 2015.5 25.4717694551634004 0.220374173258846007 -3.22532633692867021 0.142124937120455014 0.909684691505626031 0.245663731244259997 3.70296700000000012 10.3528685775473992 0.40139517719694201 -47.6297182953713971 0.260413064652204984 -0.105259729999999996 0.537482600000000033 -0.028571843999999999 0.056707966999999998 -0.25737268000000002 0.0187323370000000017 0.194482180000000004 0.0123702780000000002 0.0824350499999999958 0.0669652450000000066 170 0 170 0 1.49642159999999991 192.962997 0.36811979289709601 0.667210753093131048 31 false 0.506719600000000048 1.53706592131420994 0.0470684681656192982 -0.0524895819999999999 19 10 0.353928240000000005 0 19 false 168 808.58190746536502 2.35797772240860004 342.912994 18.4190560000000012 16 329.706276893231973 9.84916800442617912 33.4755480000000034 19.0560699999999983 16 761.874600790878958 13.7781802202429002 55.295734000000003 17.5572100000000013 1.34999420000000003 0 1.49885939999999995 0.637014399999999981 0.861844999999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.875912474655991 -63.2261923502929974 22.403074690775 -12.8511968685448998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371553732845056 2481371553732845056 221186121 2015.5 25.3964876556469008 0.130940172510448011 -3.17190985587475982 0.0942138592494024957 0.535971585665005024 0.156410120648056011 3.42670660000000016 10.9623506690297994 0.22652322423364199 -17.1538131427139007 0.17170731422913299 0.0200058800000000002 0.574549100000000035 0.0108126509999999995 0.114953379999999994 -0.241939989999999994 0.234599489999999994 0.336783920000000014 -0.119127549999999999 -0.0627745299999999951 0.269969879999999995 147 0 146 1 2.61226219999999998 188.763 0.362066354442791005 2.17088123998999993 31 true 1.66096320000000008 1.54592532150911999 0.0277666811753546003 0.0340992400000000029 17 10 0.212130220000000008 0 17 false 142 2393.51399498961018 4.74826611933197995 504.082001 17.2407760000000003 16 1090.83383590620997 10.5906191535204997 103.000010000000003 17.7569920000000003 15 1865.32171965282009 11.2613837039582005 165.638759999999991 16.5850350000000013 1.23506929999999993 0 1.17195699999999992 0.516216299999999961 0.655740740000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.674333720899995 -63.210288426130198 22.3515932283544991 -12.7738468625944002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371656812061184 2481371656812061184 1103352303 2015.5 25.4021173516734997 0.196876419437522987 -3.17066943997292983 0.139250406406160987 2.02683358868093011 0.239017558557703014 8.47985300000000031 31.1415314036437998 0.319666414145894973 -6.54493856324410039 0.242008691769581008 0.130662300000000009 0.631080599999999992 0.0877032299999999931 0.156426759999999998 -0.135106830000000011 0.197026010000000001 0.399131599999999975 -0.0864694200000000052 0.0224895370000000004 0.259116599999999975 152 0 151 1 2.1762545000000002 185.651001 0.517994716148003964 2.14991395683821995 31 false 0.774401699999999971 1.29266124362518009 0.0395497067187828011 0.0825152839999999943 18 10 0.297403040000000007 0 18 false 148 1252.95779898800993 3.67529991416196999 340.912994 17.9435250000000011 13 269.708211248369992 6.31418415199320027 42.7146570000000025 19.2741529999999983 12 1548.49935653198008 8.56914976930002936 180.706299999999999 16.7871419999999993 1.45113230000000004 0 2.48701099999999986 1.33062740000000002 1.15638350000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.684420563429001 -63.206758040858503 22.3574201036939009 -12.7747647834020004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371729827119232 2481371729827119232 461338369 2015.5 25.3933942126190999 0.039572060110457101 -3.1591950746855999 0.0283427255755910011 0.654720989570563017 0.0462022052958769025 14.1707734999999992 13.5557088568636992 0.0656299282956377961 -7.57593412112368991 0.0621021303268528974 0.163663919999999991 0.63508830000000005 -0.058035057000000001 0.0113625129999999994 -0.019289825 0.0565361679999999978 -0.0507831649999999982 -0.0614517549999999968 -0.0550394240000000035 0.322944579999999981 145 119 145 0 1.92841829999999992 174.039001 0 0 31 true 199.445359999999994 1.56812890824794993 0.00969554865397896995 0.0835595699999999997 17 10 0.0481443549999999998 0 17 false 136 145612.620894171007 42.1017064214021985 3458.59009 12.7803679999999993 15 68540.8306708330056 140.521621350058012 487.760040000000004 13.2615149999999993 16 110378.294305244999 103.720007369762996 1064.19479999999999 12.1547110000000007 1.22873370000000004 0 1.10680390000000006 0.481146799999999986 0.625657099999999966 -10.3469369266864 2.72240661174229981 9 5500 4.5 0 NOT_AVAILABLE 151.656057006786 -63.2001236106957975 22.3534525482174011 -12.7608885588649006 100001 5037.5 4973 5298.33008 \N \N \N \N \N \N 200111 5.03309729999999966 4.54973700000000036 5.16449599999999975 14.6968560000000004 13.1498589999999993 16.2438499999999983 +1635721458409799680 Gaia DR2 2481371386229736064 2481371386229736064 375715796 2015.5 25.4256482760829989 0.144911366731867997 -3.17943813575067979 0.0924051865510949061 0.554682973937329016 0.167560749670100012 3.31033949999999999 12.4251978499122995 0.233573671758582013 -7.50204254268917037 0.181517282615061004 0.000269923130000000006 0.638610239999999996 0.0384426799999999999 0.0465070750000000019 -0.138041720000000007 -0.00707864440000000039 0.0600666799999999973 -0.00456234100000000014 0.0813045599999999979 0.154023240000000006 161 0 160 1 2.26335620000000004 197.578003 0.250002534250155006 0.757398937677723039 31 false 1.30725509999999989 1.60303609097447008 0.0308607934242347004 0.0277621579999999986 18 10 0.210456160000000003 0 18 false 157 1679.69610255156999 2.2817137561249301 736.156006 17.6252880000000012 15 971.728811753079981 13.0727166811676003 74.332579999999993 17.8825259999999986 17 1114.61788717512991 12.6587038525597997 88.0515000000000043 17.1441060000000007 1.24209769999999997 0 0.738420500000000035 0.257238399999999978 0.481182100000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.739844236081012 -63.204595577860303 22.3765048054209004 -12.7915725600730994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371450653631872 2481371450653631872 203327808 2015.5 25.414026163588801 0.336781334823718026 -3.16726295126216018 0.244093725317330007 2.06539057150168004 0.416627612888277987 4.95740200000000009 -13.8849275300456991 0.580364427031993979 -13.3756280284222004 0.422946664821556018 -0.0129133389999999994 0.590257200000000037 0.10449551 0.0772945700000000069 -0.288355980000000012 0.150424809999999992 0.411712350000000005 -0.10897279 -0.0372026150000000014 0.207070620000000011 160 0 158 2 1.68040440000000002 183.563995 0 0 31 false 0.239828910000000006 1.41608845044689002 0.0713758412225456995 0.0525139759999999969 18 10 0.527093770000000017 0 18 false 158 446.916147375904984 2.31070316709960988 193.410995 19.0628010000000003 13 88.2086910451245956 13.0630321798621001 6.75254340000000042 20.4876100000000001 14 593.798362665296963 9.74523753884666988 60.9321600000000032 17.8278220000000012 1.52602909999999992 0 2.6597881000000001 1.42480849999999992 1.23497959999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.705005248613986 -63.1985808588483025 22.3700417854450002 -12.7759786760473002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371485013371392 2481371485013371392 960142666 2015.5 25.4294001281955993 0.107189821408328001 -3.16394497479435 0.109064024306432 1.19008814479846992 0.132729432129922997 8.96627100000000077 10.1256185880227996 0.211777069481542013 -11.7799169068542007 0.191264148417825991 0.193811900000000009 0.473266420000000021 0.136623600000000012 0.203673300000000002 -0.33510040000000002 0.432035449999999988 0.683977100000000005 -0.24838592000000001 -0.238864660000000006 0.454066040000000004 134 0 131 3 0.920252799999999982 140.462006 0.235193299961923008 1.17951825050301995 31 true 2.67782639999999983 1.46559914346661002 0.0259582249555244983 0.0956120099999999973 15 9 0.233286280000000013 0 15 false 130 3147.2246151579302 4.23068204724846986 743.905029 16.9435460000000013 15 1114.78534513040995 16.8575087076388002 66.1299000000000063 17.7334099999999992 15 3085.48902170858992 18.5097324455940999 166.69550000000001 16.0386099999999985 1.33459630000000007 0 1.69479939999999996 0.789863599999999999 0.904935840000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.732590663861998 -63.188995161853299 22.3859284358970001 -12.7785489122956992 100001 4192.5 4044.20996 4363.87012 0.889299989 0.541899979 1.07229996 0.446799994 0.336499989 0.554400027 200111 0.684438169999999957 0.63173760000000001 0.735551300000000019 0.130393360000000014 0.100812929999999995 0.159973790000000005 +1635721458409799680 Gaia DR2 2481372520100559488 2481372520100559488 750376795 2015.5 25.3902831522835015 0.0941874861344944997 -3.13434355184458013 0.0686423393070662025 0.410794505728227011 0.113261804631581003 3.62694640000000001 1.11993731051521994 0.164067406344890004 -7.69158768532455994 0.128233259175912995 0.0779741000000000045 0.581865399999999977 0.0500209630000000016 0.10260735 -0.196412339999999991 0.178692149999999994 0.313831399999999983 -0.102791149999999998 -0.0333910139999999966 0.272409699999999977 158 0 158 0 1.35009549999999989 177.117004 0.169269013326653006 0.699949269460836021 31 true 2.98275880000000004 1.58251734533797994 0.0203021144907551999 0.066192284000000004 18 10 0.155479800000000001 0 18 false 153 3387.26783821460003 4.2071644930308203 805.119019 16.8637429999999995 17 1770.00582814863992 18.7295921796338014 94.5031699999999972 17.2314509999999999 17 2786.95423430274013 33.1379936961279995 84.1014799999999951 16.1490960000000001 1.34532019999999997 0 1.08235550000000003 0.367708199999999985 0.714647299999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.626241992718008 -63.1789953062906022 22.359879262343501 -12.7366407460848006 100001 5025.33008 4918.83008 5153.1499 0.742200017 0.343400002 0.962100029 0.303000003 0.147200003 0.452499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372520101100800 2481372520101100800 1314567364 2015.5 25.3901118324609989 0.407146450807441995 -3.13402195928121996 0.290497130366526024 -0.0201942451227659983 0.497880869274106019 -0.0405603949999999991 1.73293717735251995 0.688229684505444972 -8.05952553994782939 0.492743789593004022 0.008650418 0.594464199999999998 0.105281583999999998 0.111345849999999996 -0.255919430000000003 0.170979619999999999 0.416569560000000005 -0.102660479999999998 -0.00768880360000000034 0.206873150000000006 148 0 147 1 0.0755877640000000017 142.608002 0 0 31 false 0.178946930000000004 1.33503874718220006 0.082173792405846699 0.0652242799999999956 18 10 0.624766049999999962 0 18 false 147 385.023188504654001 2.35845908382660996 163.251999 19.2246500000000005 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.625594321156996 -63.1787778573058034 22.3598376898224984 -12.7362787512640008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372137850384896 2481372137850384896 1456367698 2015.5 25.4029448810677998 0.400859592196509018 -3.13380658378402011 0.288368468423030988 2.70168696820790011 0.490520364430080014 5.50779770000000024 79.9865971685141943 0.68016040321318505 -6.77241683827829011 0.49157013573004299 0.0484306960000000022 0.599278300000000042 0.0960972600000000038 0.126431779999999994 -0.237960260000000007 0.185977559999999986 0.430326299999999995 -0.100839999999999999 -0.00899435099999999939 0.231096699999999988 156 0 156 0 4.46172569999999968 241.651993 1.2964368770349799 3.83478827056626015 31 false 0.174991619999999987 1.29662382676874 0.0799776238316696059 0.0655601600000000062 18 10 0.621552100000000052 0 18 false 152 486.523933619171999 2.59530824580056985 187.462997 18.9706060000000001 16 115.041031877771999 8.33605458399449084 13.8004169999999995 20.1992569999999994 17 704.561443294650985 12.1674843355903004 57.9052700000000016 17.6421220000000005 1.68460870000000007 0 2.55713459999999992 1.22865099999999994 1.32848359999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.65105225334699 -63.1730973405456027 22.3721322519792984 -12.7407992002819999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372069128929920 2481372069128929920 634383736 2015.5 25.4244169641008995 0.347436273457667977 -3.15024682181160021 0.244582018398561002 2.06261125944699009 0.431383029454300015 4.78139160000000007 31.7241364883463 0.589296106463197966 -12.6489691525511994 0.418068827735587012 -0.0886175299999999999 0.603624759999999982 0.103935375999999996 0.0474170149999999999 -0.350303140000000013 0.129672480000000007 0.396896780000000005 -0.0986591799999999991 -0.0498840499999999992 0.186409190000000002 154 0 151 3 0.796023200000000042 159.322006 0 1.66325473850477992e-15 31 false 0.248889520000000003 1.36811736361471992 0.0726474640343339056 0.0453635750000000032 18 10 0.530867340000000021 0 18 false 150 463.983826419443005 1.89173707762054 245.268997 19.0221079999999994 14 169.516612038867009 17.8336294799752011 9.50544599999999917 19.7783580000000008 16 516.559114436342043 11.0849543518424003 46.6000200000000007 17.9791200000000018 1.47866300000000006 0 1.79923820000000001 0.756250399999999989 1.04298779999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.709595168841986 -63.1787590673286985 22.3863591934609012 -12.7639811562447001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371867266072064 2481371867266072064 330406266 2015.5 25.4308017622692013 0.0763136451422680995 -3.14708944796573986 0.0518095276305894012 0.137394040420735997 0.087057396308967 1.57820070000000001 5.80469993406780027 0.139574319362659988 -15.6623148165579007 0.0989668552943842039 -0.0152593769999999993 0.542991639999999998 -0.0978656700000000018 0.0912652760000000063 -0.237522129999999998 0.204880299999999987 0.268812720000000005 -0.0939663800000000021 -0.0652337739999999944 0.222837759999999996 149 0 147 2 2.2767088000000002 183.136002 0.134754819273845999 0.713130304317743047 31 true 5.3223041999999996 1.62714336658992997 0.0164637761725008984 0.00476949429999999966 17 10 0.131065189999999998 0 17 false 146 5675.62296682250962 5.12602399073675041 1107.21997 16.303331 14 3287.57910795341013 21.2259698497257006 154.884749999999997 16.5591979999999985 14 3601.5360850902598 15.6479132436450001 230.160799999999995 15.8707010000000004 1.21380770000000004 0 0.688497539999999963 0.255867000000000011 0.432630540000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.719352852539998 -63.1731712474532969 22.3936287473443016 -12.7633940431986002 100001 6269.68994 5820 6711 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372107784239360 2481372107784239360 1081466720 2015.5 25.4342214132408984 6.36345346409595969 -3.13062607707573015 6.68917216884239973 \N \N \N \N \N \N \N 0.31329897000000001 \N \N \N \N \N \N \N \N \N 31 0 31 0 44.5330500000000029 3466.27002 19.5046824487538011 424.715851360639022 3 false 0.00253849359999999994 \N \N 0.285378159999999992 10 7 12.6502829999999999 0 12 true 105 793.089793469427036 16.9111872497398998 46.8973007 18.440059999999999 11 1499.23609228287 21.1976512643818999 70.7265199999999936 17.4117129999999989 8 2392.46451453290001 16.2031871094050004 147.653950000000009 16.3148060000000008 4.9070115000000003 0 1.0969066999999999 -1.0283469999999999 2.12525370000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.71053302798299 -63.156835720471399 22.4031008047887994 -12.7493456990289999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371794251016576 2481371794251016576 128608136 2015.5 25.435699086296399 0.454321455235338012 -3.16349971081737014 0.290630026252765017 1.60616090939209011 0.52512578327210202 3.05862139999999982 23.8794603871024016 0.768256611077089979 10.2685844909011994 0.50586761152478299 -0.12747441000000001 0.592700099999999952 0.164351500000000011 0.039322753000000002 -0.252289470000000016 -0.0578661970000000012 0.254728469999999985 0.0064128646999999997 0.128270830000000002 0.0248748339999999984 174 0 173 1 0.517404100000000033 176.973007 0 0 31 false 0.126850469999999993 1.41579101926232997 0.0933435418606170936 -0.0231866759999999998 20 10 0.682592329999999969 0 20 false 172 289.364219262094991 1.42679605937726994 202.807007 19.5347539999999995 14 83.5077839758896943 6.80581528061217966 12.2700630000000004 20.547070999999999 16 366.169157385153994 7.17433712090717002 51.0387460000000033 18.3527160000000009 1.55401710000000004 0 2.19435499999999983 1.0123177000000001 1.18203740000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.744758234729005 -63.1858917699450018 22.392092263896501 -12.7804516644161001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359115507551360 2481359115507551360 789072334 2015.5 25.536174446855199 3.53672487645071998 -3.18124652483631021 1.90185172771460009 \N \N \N \N \N \N \N -0.234368920000000008 \N \N \N \N \N \N \N \N \N 139 0 137 2 48.7044830000000033 3552.19995 16.4669693154596004 185.003187081708006 3 false 0.00339345079999999995 \N \N -0.142569169999999995 20 10 6.15875859999999964 0 21 true 169 252.492506054485006 4.06597047649893018 62.098999 19.6827450000000006 17 366.594754268863994 25.0733323158653008 14.6209030000000002 18.9409220000000005 15 727.314627906893975 8.29530742842164059 87.6778400000000033 17.6076149999999991 4.33244279999999993 0 1.33330729999999997 -0.741823200000000016 2.07513050000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.962285318171013 -63.1586594897102032 22.4810425431467991 -12.8338928928833997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360180659450240 2481360180659450240 248139159 2015.5 25.4800388910045008 0.267865445076170994 -3.15979532659649998 0.17379245464724799 0.494489366425672983 0.291350361979231975 1.69723270000000004 5.29785653454973993 0.480805391838042995 -12.7950118821354 0.315102462097865021 -0.212789480000000003 0.547599900000000028 0.152822700000000006 -0.0423686799999999988 -0.288586139999999991 -0.0921977100000000022 0.280136900000000022 -0.00419411100000000037 0.0615984420000000032 -0.0458926070000000019 164 0 161 3 0.306190369999999989 160.789993 0 0 31 false 0.38402596 1.50010331598645008 0.0545357661033364985 -0.0423043440000000007 19 10 0.427014999999999978 0 19 false 157 629.582445865455952 1.96951403863836005 319.664001 18.6907350000000001 15 257.888661503148001 8.45123509963591069 30.5149079999999984 19.322807000000001 16 588.254157429577049 8.48714922609100952 69.311160000000001 17.8380070000000011 1.34397459999999991 0 1.48480030000000007 0.632072450000000008 0.852727899999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.829792156527986 -63.1635033134068991 22.4356984831506985 -12.7933125682463995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371966049719680 2481371966049719680 676469832 2015.5 25.4748244604972989 0.243103558421981003 -3.14220737726975008 0.15960507755269801 1.70917035414059004 0.266207967389258005 6.42043259999999982 20.4282508376265 0.442731726538819981 -14.8877325182790994 0.294855647661818987 -0.156688450000000007 0.539805800000000002 0.147387459999999998 -0.0270306239999999996 -0.223281010000000002 -0.0989484100000000005 0.263505129999999976 -0.0115980409999999999 0.0933527650000000042 -0.0461224199999999973 169 0 167 2 1.66108380000000011 193.026001 0.410443373923480015 0.702768185833941961 31 false 0.427188279999999976 1.36601189222171993 0.0511398576545563019 -0.0423755899999999977 19 10 0.393039379999999994 0 19 false 167 729.741812043958021 2.04868888874600019 356.199005 18.5304430000000018 17 217.991261860392001 16.1770721434495002 13.4753229999999995 19.5052909999999997 16 813.413640617407054 13.2888538828585006 61.2102170000000001 17.4861409999999999 1.41338340000000007 0 2.01914980000000011 0.974847800000000042 1.04430200000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.802615253260001 -63.1498707316237997 22.4373756262904003 -12.7750432220166008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372962482219264 2481372962482219264 623109103 2015.5 25.385542134864501 0.172881612933788009 -3.12049646101971012 0.123753174666931004 -0.154606514592867006 0.205880040808500003 -0.750954400000000022 0.0608018307761213003 0.299585648267985005 -6.3266152058206897 0.223318697669269012 0.0674059999999999937 0.583006800000000047 0.0528358800000000017 0.118037260000000005 -0.1951436 0.18517786 0.354929150000000027 -0.0973728199999999988 -0.0164074020000000015 0.243825900000000012 157 0 155 2 2.72511120000000018 201.511002 0.45293247997508701 1.92043292660195997 31 false 0.894350800000000001 1.6146906350416701 0.0361892091771753022 0.0670937000000000061 18 10 0.27587689999999998 0 18 false 155 1446.78115010508009 3.8821474030971701 372.674988 17.7873599999999996 17 775.953601722095982 11.9684888544784993 64.833045999999996 18.1267989999999983 14 992.529015693174983 12.8514036811775991 77.2311799999999948 17.2700609999999983 1.22235669999999996 0 0.856737140000000008 0.339439400000000002 0.51729773999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.603634021825997 -63.1685044632698975 22.3605974435260002 -12.7220235806058 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372898058221312 2481372898058221312 578670403 2015.5 25.4026034394707985 0.0588872763206112967 -3.12287450090896979 0.0406842875613439986 2.38430694538749988 0.0656090219604510971 36.3411449999999974 17.385811080325599 0.0962147922905696035 -6.3113311049959 0.0835250350001890962 0.18183763 0.641675899999999966 -0.0391880299999999987 0.0962672759999999988 0.0475567500000000018 0.236865369999999992 0.241862500000000008 -0.0903553740000000022 -0.111189163999999993 0.276067969999999996 166 166 152 14 15.7739560000000001 615.52301 0.111132351508379995 4.27896841653323978 31 true 50.8010200000000012 1.22825169701069004 0.0145558016138941006 0.00777566430000000038 18 10 0.0589358430000000016 0 21 false 156 38260249.6539537981 78892.7555565944058 484.964996 6.73149629999999988 15 6331003.05545062013 83990.1791475805949 75.3778999999999968 8.34770699999999977 16 50464337.5514065996 515700.081931278983 97.8559800000000024 5.50445839999999986 1.48444770000000004 0 2.84324839999999979 1.61621049999999999 1.22703790000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.639998424676008 -63.1633642717161976 22.3759360469746014 -12.7305103229943004 100001 3699.6001 3483.48999 4180.00977 \N \N \N \N \N \N 200111 56.7399940000000029 44.4472579999999979 63.9986150000000009 543.365969999999948 524.039400000000001 562.692499999999995 +1635721458409799680 Gaia DR2 2481372996841887232 2481372996841887232 183431522 2015.5 25.3933499646701009 1.09262081921411003 -3.10552825640279018 0.731411568611471052 -1.0651201556993799 1.35906295191984006 -0.783716560000000007 -0.0886669452729664936 1.72209932978176994 -1.2805224793977299 1.17755206346524011 -0.0995135500000000062 0.655514999999999959 0.224071849999999989 0.0460985559999999989 -0.316285729999999987 0.0743344300000000069 0.485222900000000013 -0.0816628900000000019 -0.00883705450000000017 0.116388359999999996 125 0 125 0 1.85118500000000008 150.248001 0.905751577810095965 0.303271272015276983 31 false 0.0369415300000000002 1.64211870361147994 0.204688650319759996 0.0606991539999999982 17 10 1.55740769999999995 0 17 false 125 143.329515042753997 1.87808163041959997 76.3170013 20.2975269999999988 14 103.922386558848004 10.5424305726876 9.85753500000000038 20.3096159999999983 12 127.154332150195003 13.3019978281957005 9.55903999999999954 19.5010930000000009 1.61220610000000009 0 0.808523199999999997 0.0120887760000000007 0.796434399999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.605065481890989 -63.1516399483394011 22.3736805408350996 -12.7109802015508002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373203000321536 2481373203000321536 679384087 2015.5 25.392988901867799 0.532621575531835978 -3.09553158966093989 0.378541891219159987 1.3284939316359401 0.642987821530776049 2.06612600000000013 3.2681692509145801 0.939793692829863025 -1.00556460832588002 0.678866823232686989 -0.0341136000000000009 0.573565960000000041 0.168376940000000003 0.0332126299999999999 -0.260698079999999999 0.0870608799999999933 0.398399679999999978 -0.122872464000000001 -0.0317893850000000033 0.149555789999999994 145 0 144 1 0.0544911549999999995 139.242004 0 0 31 false 0.104612239999999995 1.33510053550322993 0.107315949817980996 0.0593586200000000008 18 10 0.843755299999999986 0 18 false 143 275.931497430831996 1.91681309797178989 143.953003 19.5863629999999986 16 119.078665887910006 11.0873747365182993 10.740024 20.1618040000000001 14 301.009588655768027 8.48903774515130927 35.4586219999999983 18.5654700000000012 1.52243670000000009 0 1.59633449999999999 0.575441360000000013 1.02089310000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.594881006636996 -63.1427573627748018 22.377111836363401 -12.7015536884428002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373001137436032 2481373001137436032 1289535518 2015.5 25.4049374178443017 0.102386516827740998 -3.10419630216178 0.0834428290614042945 0.329502339757312024 0.117585415040022997 2.80223820000000012 2.65964356514776989 0.182989140994494009 -6.80139557570880005 0.152172501222361006 0.0945723950000000035 0.578016459999999954 0.132320550000000009 0.069594939999999994 -0.0283629799999999994 0.0135862540000000007 0.501277740000000027 -0.0915879500000000013 0.0580687670000000003 0.0504017500000000021 129 0 128 1 -0.354428320000000019 116.878998 0 0 31 false 2.95795040000000009 1.60929416081247001 0.0242426946163610997 0.0529054180000000027 15 9 0.165422679999999989 0 15 false 126 3131.65639999569021 5.08030899000318037 616.429993 16.9489300000000007 14 1709.50221157515989 16.5807794570444003 103.101439999999997 17.2692149999999991 14 2137.15280025572019 15.6491206576435005 136.566959999999995 16.4373299999999993 1.2283132000000001 0 0.831884399999999968 0.32028390000000001 0.511600500000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.62695798450099 -63.1454861461619998 22.3852106757287999 -12.7140039730729004 100001 5651.33008 5319.66992 5810.75 0.151299998 0.0491999984 0.245499998 0.0850000009 0.0219000001 0.136999995 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373035497207168 2481373035497207168 1352161312 2015.5 25.4211712571690995 1.65297560739110994 -3.10359041695333016 1.25631628530385009 4.98609290924579973 2.12543806408843006 2.34591320000000003 -8.3238935288827296 3.61995338715981996 -16.2657261022894986 3.88107895751757015 0.0472912399999999983 0.444343980000000027 0.218110310000000002 -0.23470953 -0.142384810000000001 -0.121450483999999997 -0.0712389300000000059 -0.373037280000000027 -0.244594990000000012 0.385099399999999981 77 0 74 3 1.25380810000000009 84.0391998 2.5789089889480401 1.1282301694363901 31 false 0.019136282000000001 1.07039213477080009 0.384033931501568004 0.151392549999999987 11 8 3.92230770000000017 0 13 false 84 105.724884349318003 2.33608634275244986 45.2573013 20.6279220000000016 8 66.254211218728301 18.7988418539476001 3.52437729999999982 20.7983550000000008 10 193.815160895698 10.7960028795660996 17.9524919999999995 19.043451000000001 2.45986910000000014 1 1.7549037999999999 0.170433040000000008 1.58447070000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.658808413704008 -63.1379979516119008 22.4008888485284992 -12.7194111887544992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372240927639168 2481372240927639168 672721446 2015.5 25.4486174818719988 0.75819216570526804 -3.11585210971614002 0.65374121500329796 1.83247778471156009 0.951263273041529023 1.92636239999999992 13.4002131636369999 1.75333753158027994 -2.87238509058847979 1.08387299257966996 -0.0658242899999999936 0.277040569999999986 0.313802570000000003 0.0110161900000000004 -0.518892649999999955 0.294618729999999995 0.646369760000000015 -0.388254639999999984 -0.309493660000000004 0.243893339999999986 133 0 131 2 2.65120939999999994 172.123993 1.92254051058213005 2.16317855393486003 31 false 0.0569116770000000008 1.36784171692986001 0.157195448037712987 -0.0261311509999999983 16 9 1.63099280000000002 0 16 false 132 220.187710643345014 1.60587307417207992 137.113998 19.8313829999999989 11 74.7750786430641057 9.46121173804644044 7.90333000000000041 20.666996000000001 10 270.379044305227978 7.97967490548156988 33.8834650000000011 18.6819880000000005 1.56754489999999991 0 1.9850082 0.835613249999999974 1.14939499999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.725238157143991 -63.137322107007698 22.4223811350035014 -12.7409039582302004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395506766066944 2481395506766066944 1280879262 2015.5 25.4780577723360011 0.0325540037557938977 -3.10935773317845987 0.0242509102447086011 3.57817333112231983 0.0357218674798435026 100.167590000000004 36.0101661458259983 0.0652074176369973058 -40.277284012231398 0.0506747765408175968 0.0299983639999999996 0.403823969999999977 -0.107719645000000003 0.0728793140000000006 -0.105521160000000003 0.0640011649999999988 -0.045750807999999997 -0.00321378419999999998 0.0553623739999999989 0.148443309999999995 178 0 178 0 0.564502599999999966 183.020996 0 0 31 true 20.1943599999999996 1.42173552711183993 0.00872250696844726996 -0.0167071069999999988 20 10 0.0677537299999999981 0 20 false 177 17311.3124497222016 7.17884253794964966 2411.43994 15.0925410000000007 19 5806.55494924870982 23.2684592321297004 249.546169999999989 15.941592 18 16937.1012198567005 25.0779158087779983 675.379149999999981 14.1898219999999995 1.31380309999999989 1 1.75177000000000005 0.849051499999999959 0.902718539999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.777793313452008 -63.1188272054489019 22.4528545772580017 -12.7456899722357004 100002 3967 3933.66992 4091.04004 0.43779999 0.241300002 0.791100025 0.215000004 0.109899998 0.389299989 200111 0.638525699999999974 0.600391899999999978 0.649393140000000035 0.0909704499999999944 0.0888517999999999947 0.0930890959999999962 +1635721458409799680 Gaia DR2 2481395781643973632 2481395781643973632 653526368 2015.5 25.4559949056807007 0.098245035515678994 -3.10061131058446016 0.0963968365620867934 0.420229518248490974 0.125550666343522993 3.34709119999999993 1.2266924239516801 0.237041535627241007 1.24546886409844992 0.186113984777722008 0.168162570000000011 0.222258609999999995 0.10676041 0.195144519999999988 -0.451366280000000009 0.423261370000000026 0.539893599999999974 -0.324861620000000018 -0.308299800000000013 0.456665639999999984 168 0 167 1 -0.209578839999999988 157.600998 0 0 31 false 1.9420208000000001 1.56821329721899994 0.0258767997612957996 0.0727121599999999979 19 9 0.243049850000000012 0 19 false 165 2221.6689284167901 2.28166766163802004 973.703979 17.3216670000000015 16 1167.21197203308998 12.2786088951219998 95.0605999999999938 17.6835139999999988 17 1519.70698735864994 8.90674480677651026 170.624279999999999 16.8075200000000002 1.2094145999999999 0 0.875993699999999986 0.361846920000000016 0.514146800000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.725482373641995 -63.1203947286194023 22.4351564761935016 -12.7294466327475995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395777348499584 2481395777348499584 1333040438 2015.5 25.4628966232630987 1.05846634761749003 -3.09964607917570012 0.811668678521605957 2.73903106997259993 1.22671961960987996 2.2328093 1.78259416836968998 2.47191372455559 -4.64783623219588993 2.34529803749664012 -0.0503847700000000023 0.257060679999999986 0.0671058999999999961 0.0466223399999999982 -0.247170450000000014 0.0183981800000000001 -0.205876079999999989 -0.247835830000000007 -0.165840600000000005 0.373456979999999994 130 0 129 1 2.49331950000000013 166.742004 1.32815065716297998 0.343434336628667014 31 false 0.02107003 0.967172838575849014 0.291413810780615012 0.00961323400000000002 15 9 2.4890007999999999 0 15 false 129 107.394246087373006 1.63373663545620995 65.7353973 20.610911999999999 11 43.4407719574655999 9.45042359350516925 4.59670100000000037 21.2566449999999989 13 145.143513114649011 11.5991948032227992 12.5132410000000007 19.3574260000000002 1.75599989999999995 0 1.89921950000000006 0.645732900000000054 1.25348660000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.73833111282201 -63.1165638616208966 22.4420897648899 -12.7310867035340998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358531391982848 2481358531391982848 761263030 2015.5 25.4808004178240992 0.620553881002241958 -3.22330454713531989 0.452630496601578003 -0.388742874968901975 0.722351495920609987 -0.538163069999999966 0.693958922934499012 1.17319991970310999 -0.554458245892766044 0.926459151707188955 -0.155212330000000009 0.495489420000000014 0.104080820000000004 -0.0309443120000000016 -0.361864799999999986 -0.056640465000000001 0.0745957500000000023 -0.0190790199999999986 0.0527546480000000012 0.127737600000000007 161 0 159 2 5.06747630000000004 260.204987 1.91674527258620997 3.58668151731684981 31 true 0.0583369300000000021 1.85483526407046995 0.155881349569725991 -0.0313156249999999997 19 10 1.04365409999999992 3 19 false 160 215.893759763557 2.95847297455286018 72.9747009 19.852765999999999 15 174.18967792701801 19.6607480737578015 8.85976900000000001 19.7488330000000012 12 153.043349317072995 8.93563974518169957 17.1272960000000012 19.2998830000000012 1.51571319999999998 0 0.44894980000000001 -0.103933334000000002 0.55288314999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.892030974063005 -63.2204777251530032 22.4124366685071017 -12.8526382868355995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358874989367936 2481358874989367936 1507273270 2015.5 25.5206046519678011 0.755829807004694043 -3.21943658403881994 0.509286508952388028 1.04531430838224004 0.903014509878896976 1.15758310000000009 -4.57836430548069018 1.28145631302196006 -6.52733972581648025 0.922945252773257008 -0.22585131 0.601674099999999989 0.222333609999999987 -0.0354283970000000004 -0.362435879999999988 -0.173091949999999994 0.145702059999999994 0.0621160830000000025 0.13338644999999999 0.0173499119999999986 156 0 149 7 1.72079049999999989 174.462997 0 0 31 false 0.0523384000000000002 1.24136447712925002 0.166533791012313998 -0.00783524099999999973 18 10 1.15833659999999994 0 18 false 152 165.617976079913007 1.66281288522729009 99.6010971 20.1405959999999986 11 57.8126850512093 11.4818461114999995 5.0351385999999998 20.9463310000000007 14 188.232934725299998 10.9426518496976009 17.2017650000000017 19.0751799999999996 1.48562149999999993 0 1.87115100000000001 0.805734630000000007 1.06541630000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.967838027330998 -63.199816100536502 22.4517965033386986 -12.8636772986862002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359699623096960 2481359699623096960 1179896302 2015.5 25.4860761455492018 0.166574140715321006 -3.1995996612836799 0.113616747071981994 0.367281070913478003 0.187276086965093014 1.96117439999999998 0.470863003282006976 0.302993416373650015 -2.5146163362424101 0.205521668078883002 -0.168506349999999999 0.537104959999999965 0.150823180000000001 -0.0220439959999999997 -0.282563500000000023 -0.076504210000000003 0.282773879999999977 -0.00946009400000000049 0.0731311999999999934 -0.0150584220000000001 180 9 179 1 0.237661509999999992 177.794006 0 0 31 false 0.912278649999999969 1.56103283074585009 0.0369040812321186976 -0.0414535629999999988 20 10 0.259737249999999975 0 20 false 175 1186.79933442644005 2.41787619665167997 490.843994 18.0024219999999993 17 529.21216613558704 11.9914521223277006 44.1324499999999986 18.5423149999999985 17 934.25584831159199 9.43928822241348087 98.9752399999999994 17.3357559999999999 1.23312179999999993 0 1.20655819999999991 0.539892200000000044 0.666666030000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.87987867592301 -63.1968205085400996 22.426413788211299 -12.8325395424221007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359703918691456 2481359703918691456 1383758756 2015.5 25.4831797916547984 2.12750545013118009 -3.19756059167223006 1.51358591242720997 \N \N \N \N \N \N \N 0.0207369249999999998 \N \N \N \N \N \N \N \N \N 108 0 107 1 54.3280699999999968 4500.56006 11.4319846326541992 330.207572663631993 3 false 0.00742079999999999997 \N \N 0.000274182679999999978 19 10 3.39150710000000011 0 19 false 165 668.692863526587985 8.29631801123001011 80.6011963 18.6252999999999993 15 1059.39106593510996 12.5590015948660998 84.3531299999999931 17.7887479999999982 16 2099.42751267722997 13.7908751445334996 152.233100000000007 16.4566669999999995 4.72387080000000026 0 1.33208079999999995 -0.836551669999999969 2.16863250000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.872142354738003 -63.1962284304280999 22.4244264904559998 -12.8295788032271005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359699623096320 2481359699623096320 814986694 2015.5 25.4947776332265015 0.160485601820298002 -3.2007445591689998 0.101735934655734994 0.129540884993081001 0.184361056158157011 0.702647750000000015 0.118174173265272006 0.266246303601462009 -2.10139783080314979 0.180743038248212001 -0.0139442760000000002 0.621809359999999978 0.0791465040000000064 0.0752028799999999997 -0.0676298139999999964 -0.0413464679999999973 0.298330800000000007 -0.011565199 0.151443589999999989 -0.0143472210000000003 164 0 162 2 1.60203549999999995 186.384995 0.341935808179261003 1.19151642039419992 31 false 1.10605559999999992 1.55988828503833998 0.0330514018979745014 -0.0156901259999999987 19 10 0.235993829999999988 0 19 false 159 1591.31803862815991 2.58126477898525009 616.487976 17.6839730000000017 14 747.167056048441054 8.84413763606923986 84.4816200000000066 18.1678449999999998 13 1225.32708237626002 7.36932007506440012 166.274110000000007 17.04129 1.2395349 0 1.1265544999999999 0.483871459999999975 0.642683000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.898353763431004 -63.1941038880666994 22.4342657174531013 -12.8368033690055992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358943708850688 2481358943708850688 672672665 2015.5 25.4999285411572991 1.49929043869376999 -3.20223622446110001 1.23164714494412997 1.9227036422394701 1.79903167458283009 1.0687435999999999 -2.19613964668138983 3.05092396483746997 -3.42853896952470993 3.73692190784962008 -0.27730492000000001 0.446873870000000006 0.264846350000000008 -0.158711970000000008 -0.531882999999999995 -0.160040569999999993 -0.146611230000000009 -0.113984669999999996 -0.0445433500000000024 0.33231765000000002 94 0 93 1 -1.97644759999999997 63.7582016 0 0 31 false 0.0183455439999999984 1.55348727472651005 0.37123337349742902 0.00539509529999999959 11 9 3.52099900000000021 0 11 false 95 86.0969360872826002 1.63610483167702991 52.6231003 20.8508969999999998 7 56.4023457967331012 6.93178223682050998 8.13677400000000084 20.9731449999999988 8 48.2541945185709977 7.07575870613322966 6.81964970000000026 20.5530819999999999 1.21556639999999994 0 0.420063020000000009 0.122247696000000003 0.297815319999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.910067992134003 -63.1932287967686008 22.4386064207646001 -12.8400840324772005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358982364185600 2481358982364185600 956616142 2015.5 25.5111728252299983 1.72785523525513995 -3.19764042053741981 1.25318410795095003 \N \N \N \N \N \N \N -0.0629348599999999953 \N \N \N \N \N \N \N \N \N 140 0 140 0 57.8412480000000002 5053.1001 10.3720641101356996 275.830549659659994 3 false 0.00887118899999999981 \N \N -0.00807717600000000015 20 10 2.85264870000000004 0 20 false 176 587.176553153399027 6.89992459787735957 85.098999 18.7664429999999989 18 709.442432136840011 10.9707620176382008 64.6666500000000042 18.2240940000000009 20 1500.98281076738999 14.9983604266873005 100.076459999999997 16.8209799999999987 3.76449850000000019 0 1.40311429999999993 -0.542348860000000044 1.94546320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.928114612011996 -63.1842342400038035 22.4510477360786993 -12.8399450315541994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358909349216768 2481358909349216768 1400567342 2015.5 25.5220873762253007 1.16284072727947008 -3.20180364890733982 0.991653782446109022 \N \N \N \N \N \N \N -0.276572170000000006 \N \N \N \N \N \N \N \N \N 103 0 103 0 1.06260189999999999 112.907997 0 0 3 false 0.0320824160000000025 \N \N 0.0880330299999999982 12 8 4.00418900000000022 0 12 false 105 123.333136281071006 1.54069647957773004 80.0502014 20.4606670000000008 9 68.9130912789278938 17.0832680466991 4.0339520000000002 20.7556340000000006 9 105.506498112984005 5.65718238765270964 18.6500100000000018 19.7037219999999991 1.41421510000000006 0 1.05191229999999991 0.294967650000000026 0.756944660000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.953886366153 -63.1832777030863966 22.4598675419953011 -12.8478281614004999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358703190819072 2481358703190819072 1588739736 2015.5 25.5290441807422006 1.09313431160037999 -3.22208788069645014 0.703562920710852024 2.47475579121340017 1.19200579132466 2.07612730000000001 43.4795919855812016 1.99929827240491997 -13.2856323137418997 1.32010724904485999 -0.233096100000000001 0.519118549999999956 0.325660400000000017 -0.100545549999999997 -0.304162770000000027 -0.167951689999999987 0.228083659999999994 -0.0354321079999999969 0.0840411400000000003 -0.0603338740000000026 150 0 149 1 4.01700199999999974 222.602005 2.89589830130607995 2.7964671066648199 31 false 0.0260675549999999992 1.40780398918003002 0.208282608719688012 -0.0742637800000000015 17 10 1.8155154 0 17 false 149 132.674060830581993 1.56749875830706009 84.6406021 20.3814010000000003 10 63.1778025897976008 14.2382447395181995 4.43719049999999982 20.8499769999999991 14 212.318411433509993 11.9766168028098008 17.7277449999999988 18.9444499999999998 2.07648900000000003 0 1.90552710000000003 0.468576429999999988 1.43695069999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.987229988702012 -63.1985595732816989 22.4588311642364999 -12.8692448457771995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358634471197312 2481358634471197312 142473623 2015.5 25.5485542655824993 4.70782761478988032 -3.22401219370369008 7.03544765778648973 \N \N \N \N \N \N \N 0.838649899999999948 \N \N \N \N \N \N \N \N \N 43 0 43 0 1.40134059999999994 50.7596016 0.446949453589567003 0.0142463877764717004 3 false 0.0162082049999999998 \N \N 0.431835259999999999 6 6 13.4266470000000009 0 6 false 45 79.3915941820901025 1.85639186760744002 42.7666016 20.9389290000000017 4 45.2493495379157977 15.7000521167982008 2.88211459999999997 21.2123570000000008 3 88.3210875149372043 0.538005383660887015 164.163939999999997 19.8967589999999994 1.68242540000000007 0 1.31559749999999998 0.273427960000000025 1.04216960000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.028010994118006 -63.1918557958474025 22.4766824215371983 -12.8782055829012005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358741846033536 2481358741846033536 762921879 2015.5 25.5588143371437013 0.0898827501841186066 -3.21727927142072012 0.0640315795558386025 1.86560829620965007 0.108091869175135996 17.2594700000000003 20.920547294348701 0.162489833118863003 21.7868722175729985 0.121555905714674006 -0.0935168100000000058 0.520826299999999964 0.0252287700000000011 0.0690969200000000061 -0.335114870000000009 -0.0271811170000000012 -0.00617155850000000034 0.0459612719999999975 0.156251460000000009 0.173814600000000014 169 0 167 2 0.378650070000000005 168.227005 0 0 31 false 2.89314910000000003 1.38270676421407002 0.0205611193707233991 0.00499748200000000014 19 10 0.148741440000000003 0 19 false 166 2887.19685992571021 3.21751577444643022 897.336975 17.0371740000000003 18 842.855535954364996 13.7366205936724999 61.3582880000000017 18.0370039999999996 17 3074.18531813601021 12.2357482324525009 251.246199999999988 16.0425949999999986 1.35669339999999994 0 1.9944096 0.999830250000000031 0.994579300000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.042003623652988 -63.1813472668217031 22.4889951370135002 -12.8757164949367997 100001 3821.5 3689.66992 4085.11011 0.597000003 0.328900009 0.879999995 0.277999997 0.156599998 0.409299999 200111 0.566118239999999995 0.495412919999999979 0.607296199999999953 0.0615806730000000024 0.05426512 0.0688962300000000027 +1635721458409799680 Gaia DR2 2481358840631879424 2481358840631879424 698614081 2015.5 25.5527461174117008 1.2826965437431801 -3.20486781242678997 0.950483686295158003 2.18648385788312982 1.4874941631688301 1.46991089999999991 9.59565133810751014 2.1835182388225598 -2.55293525597469007 2.50089111041362999 -0.0723050300000000062 0.598662849999999969 0.192457230000000007 -0.209388230000000009 -0.280240979999999973 -0.326686860000000023 -0.326692550000000026 0.0524921640000000009 0.115672570000000002 0.203600399999999987 124 0 123 1 0.400617900000000027 123.572998 1.02772777949662997 0.21518419188896401 31 false 0.0216293400000000004 1.67638022020278998 0.313108209496550993 0.0389983949999999982 15 9 2.33683750000000012 0 16 false 129 100.955788955011997 1.42621245171728006 70.7858963 20.6780380000000008 9 56.9750629835815019 16.5308220733298015 3.44659599999999999 20.9621749999999984 13 139.110170814346986 8.36471738289360012 16.6305890000000005 19.4035219999999988 1.94228819999999991 0 1.55865290000000001 0.284137729999999977 1.27451519999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.017980523800986 -63.1727889243674028 22.4879031776126013 -12.8619462792959993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358771910156544 2481358771910156544 580444477 2015.5 25.5615291961494009 0.462297563452925997 -3.20951374729534988 0.324129755646980988 1.60625188173651989 0.588227279555441962 2.73066539999999991 -27.3713377631522015 0.804671678825391035 -18.3286169117621007 0.565899592768348003 -0.146255030000000008 0.552353100000000041 0.0987511699999999992 0.0863613200000000053 -0.420804899999999982 -0.0121663864999999993 0.0591043600000000016 0.0305988839999999998 0.154178139999999991 0.176558799999999988 169 0 168 1 0.113228395999999995 164.382004 0 0 31 false 0.112778680000000006 1.55417724350667008 0.103238867835009004 0.0126678799999999994 19 10 0.720256600000000025 0 19 false 168 266.915587897615012 1.46759075425283991 181.873001 19.6224300000000014 14 66.4887760302306958 9.51250454687111002 6.98961830000000006 20.7945180000000001 16 358.700801387868012 9.80552051844187034 36.5815160000000006 18.3750900000000001 1.59297399999999989 0 2.41942790000000008 1.17208669999999993 1.24734119999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.039953805163009 -63.1731744371197976 22.4945125518890983 -12.8694939784765996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359016723386624 2481359016723386624 1270692198 2015.5 25.5327205855530011 0.663192361418822984 -3.20128638397684995 0.435574260761477983 1.82592287799971009 0.767209443688145032 2.37995359999999989 -6.78665917700246002 1.15816460597128001 -10.9195891216972001 0.742877562178153039 -0.114034930000000007 0.527045499999999945 0.033934739999999998 0.106305689999999994 -0.299739540000000027 0.0768862000000000018 0.203799800000000003 -0.0121732000000000003 0.107350009999999996 0.108168766 168 0 167 1 2.47348260000000009 209.932999 1.73168234360485007 1.73173521601497993 31 false 0.0562293000000000029 1.31125052086972005 0.142796272103599992 -0.047696040000000002 19 10 1.0202194 0 20 false 168 195.882756805051002 1.30415129715077005 150.199005 19.9583760000000012 13 36.9162115936120969 9.33562375561566959 3.95433799999999991 21.4333460000000002 15 252.910374927192009 7.01674875849369961 36.0438100000000006 18.7545029999999997 1.47959210000000008 0 2.67884250000000002 1.47496990000000006 1.20387270000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.974605670447005 -63.1782187107265969 22.4701873206213989 -12.8512558996443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788070400 2481359046788070400 71464940 2015.5 25.5369785481248002 0.281443654548086009 -3.19271132458900997 0.178115618061538 2.34808690264144992 0.306399811445351999 7.66347359999999966 10.6202607983163002 0.52141430649186904 -11.2943708250486008 0.327862566639092023 -0.109722 0.500974999999999948 -0.106144820000000001 0.0945986500000000063 -0.264287260000000024 0.0778846100000000069 0.140993619999999986 0.0144629270000000004 0.0854453800000000013 0.0851905049999999997 169 0 169 0 5.25107570000000035 277.720001 1.03982377922239011 4.53355876099980026 31 false 0.312771799999999989 1.17578494424313007 0.0595254682027476015 -0.0530420799999999984 19 10 0.460870200000000008 0 19 false 166 754.983117103471045 1.82590561335897994 413.484009 18.4935229999999997 16 173.187782381279987 22.0611723299747986 7.85034369999999981 19.7550950000000007 15 1027.39036753361006 9.0863683518877707 113.069419999999994 17.2325820000000007 1.59020530000000004 0 2.5225124000000001 1.26157190000000008 1.26094060000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.974875995367 -63.1686484120315015 22.4774794845498 -12.8448481536757004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378356961567616 2481378356961567616 9045487 2015.5 25.6623123400822983 19.4572129020065994 -3.21683215839532011 4.07604306857584042 \N \N \N \N \N \N \N -0.218658490000000011 \N \N \N \N \N \N \N \N \N 64 0 64 0 0.318142150000000012 61.8334007 1.88779718531558993 0.26083780295498199 3 false 0.0123118229999999995 \N \N -0.00677418700000000009 9 5 106.561965999999998 0 9 false 65 70.3525881767399 1.81447878439313004 38.7728996 21.0701660000000004 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.247639396717005 -63.1359888055806024 22.5877340540015012 -12.9133255028509009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788616320 2481359046788616320 1507031379 2015.5 25.5393390610116988 0.903092005690915967 -3.18940150307936987 0.558926372720815023 3.67043877042716993 1.11083601531167009 3.30421299999999984 11.1155592065970001 1.40363688385773 -8.40018661645633991 0.930663550141444973 -0.31181049999999999 0.648790899999999948 0.106791239999999996 0.0788143349999999993 -0.511117500000000002 -0.0500640700000000022 0.0443557350000000003 0.0734200299999999972 0.143219430000000009 0.140792379999999995 153 0 149 4 -0.698763000000000023 131.835007 0 0 31 false 0.0441179699999999994 1.59253985220983996 0.167371209398428006 -0.0531395200000000026 18 9 1.26666490000000009 0 18 false 151 146.241733093990007 1.36343033627436006 107.260002 20.2756879999999988 14 40.9625756002540982 7.90500388309957014 5.1818540000000004 21.3204199999999986 17 223.180846382114993 9.78749276896463982 22.802658000000001 18.8902779999999986 1.80621100000000001 0 2.43014140000000012 1.04473109999999991 1.38541029999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.976410025022005 -63.1646446415945988 22.4809767581187003 -12.8426383727277997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788070272 2481359046788070272 652432593 2015.5 25.5495011755353012 0.254535004832090017 -3.19323268674446981 0.148978907661996007 0.648498354353825968 0.28943576228121598 2.24056049999999995 -6.34980766870506041 0.388046983933116985 -1.98086402673321005 0.265160714525161989 -0.241060849999999993 0.66224700000000003 0.0344342799999999977 0.076100773999999996 -0.38835989999999998 0.0178263430000000014 0.101453600000000005 0.0313875399999999985 0.0933517199999999991 0.121253386000000005 168 0 166 2 1.76847029999999994 194.108994 0.523327950649512985 1.42366791337234 31 false 0.50160439999999995 1.42291876478155999 0.0479111641144900971 -0.0672567699999999935 19 9 0.344295100000000021 0 19 false 166 852.129890838274036 1.89985624468872993 448.52301 18.3621000000000016 18 323.616189080512015 11.1469820088651002 29.0317299999999996 19.076312999999999 19 813.223798014648992 7.93545073439229043 102.479849999999999 17.4863950000000017 1.33411590000000002 0 1.5899181 0.71421239999999997 0.875705700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.000344463080012 -63.1637057189494016 22.4892063605412993 -12.8499355009524994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788071424 2481359046788071424 429098613 2015.5 25.5498680829572997 0.343210315791258991 -3.19009150127754992 0.22985617758850499 -0.589189699429418012 0.397899183223126007 -1.48075120000000005 12.4809453390321003 0.612599689338961029 3.42097452721673978 0.426427810370485993 -0.0884202399999999972 0.534479739999999981 0.0554183129999999968 0.0685422799999999971 -0.286102240000000008 0.0308033709999999995 0.126709729999999993 -0.0161930750000000012 0.0928794800000000004 0.133498090000000014 176 0 174 2 3.74912430000000008 246.863007 0.959251147766508994 1.94408002480894004 31 false 0.192544880000000002 1.33804421847989996 0.0761326380829182997 -0.0199824679999999998 20 10 0.542612100000000042 0 20 false 172 458.267377485737995 1.6406732901571901 279.316986 19.0355680000000014 17 158.845997280374007 10.2597837562110996 15.4823920000000008 19.848948 17 476.560448159031012 8.03656312591846955 59.299038000000003 18.0666259999999994 1.38654089999999997 0 1.7823218999999999 0.813379300000000027 0.968942639999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.998062745476005 -63.1607157178988032 22.4907416763806012 -12.8471497121009008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358840629637888 2481358840629637888 1221787050 2015.5 25.5607233325372007 0.331824932728996991 -3.19891416609668999 0.201240787741953003 -0.666001099203534008 0.410876840148806988 -1.6209264000000001 -0.56991737085848504 0.497062646875690017 -0.490823310034405991 0.340412781000892006 -0.26445645000000001 0.675468559999999996 0.0504334639999999973 0.148430690000000004 -0.462111600000000011 -0.0553494839999999974 -0.0235171040000000005 0.127990980000000004 0.225837249999999989 0.1699378 157 0 156 1 4.33752199999999988 238.710999 1.01958602993378999 4.00659334634744013 31 true 0.315906970000000009 1.65069268195392005 0.0622362456448867993 -0.0245279169999999998 18 9 0.456679200000000007 3 18 false 156 738.370951425128965 5.31992844937191034 138.792999 18.5176799999999986 16 473.320002514179976 15.6880040204764999 30.1708239999999996 18.6635020000000011 15 603.673602156531047 19.2173473925452001 31.4129520000000007 17.8099139999999991 1.45860780000000001 0 0.853588099999999961 0.145822530000000006 0.707765599999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.028166517094007 -63.1639716157026996 22.4977471605768002 -12.8593424043008007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382312626553472 2481382312626553472 851974682 2015.5 25.5656244046314995 0.0370151515336632972 -3.18983593531040999 0.0273094232696001991 0.937485210740909958 0.0432247761353879018 21.6886079999999986 13.4555423676331998 0.0725497392186472967 1.17108175167034001 0.0573269965530298978 -0.0420891600000000005 0.444117499999999998 -0.168885829999999987 0.0508795979999999981 -0.324731099999999995 -0.0897854500000000028 -0.25621919999999998 0.144725749999999986 0.218154419999999988 0.247037630000000008 159 0 159 0 -0.37984863000000002 146.783005 0 0 31 true 23.2865520000000004 1.58204865103123993 0.00946924617927510058 -0.0174036290000000003 18 10 0.0751250799999999969 0 19 false 158 19427.8867265150002 8.53190829456305089 2277.09009 14.9673010000000009 19 9918.90350246331946 32.7169702715919968 303.173029999999983 15.3602290000000004 17 13730.7392499292 18.6481939331996003 736.303959999999961 14.4176854999999993 1.21730390000000011 0 0.94254300000000002 0.392927169999999992 0.549615859999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.029218019425002 -63.1536694418548024 22.5058413809952 -12.8527025761777001 100001 5435 5386.75 6313.56982 0.297300011 0.157700002 0.481999993 0.160999998 0.0876000002 0.248999998 200111 1.06932699999999992 0.792427699999999957 1.08856920000000001 0.898905399999999966 0.805691299999999999 0.992119500000000043 +1635721458409799680 Gaia DR2 2481382346985788544 2481382346985788544 1593336322 2015.5 25.5681733060316994 1.09363783620021993 -3.1815732120178799 0.811633965767306953 0.867489172495722993 1.35833324585394011 0.638642400000000054 8.91339929682695065 1.96198708080434003 7.69152831112401003 1.5867924042296 -0.103500620000000002 0.514735159999999969 0.025153557 0.0881226499999999968 -0.381594299999999997 -0.0258934759999999986 -0.134261970000000008 0.0393584370000000031 0.17284564999999999 0.250015739999999986 136 0 133 3 2.39357920000000002 169.438995 3.20618092427059986 2.4414161802341301 31 false 0.0223054630000000011 1.42405457922129997 0.259538475828364978 0.0324128600000000017 16 10 1.80381970000000003 0 16 false 133 122.933938969222993 1.35843635795558004 90.4966965 20.4641860000000015 8 39.9358810657168988 4.53084605151024977 8.81422099999999986 21.3479799999999997 10 158.043878251731996 10.7960503102661995 14.6390460000000004 19.2649769999999982 1.61045649999999996 0 2.08300399999999986 0.883794799999999992 1.19920920000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.026366395207987 -63.1451201415643979 22.5113876413842 -12.8459564843488998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359875717382400 2481359875717382400 452553254 2015.5 25.5129285229738016 0.155906648180506008 -3.17207231740042017 0.0917307754334713982 0.564884989062015008 0.178430056742058002 3.16586230000000013 6.22394806276197965 0.235830343126547992 -10.3633291135663992 0.158905707274427987 -0.244049500000000003 0.667271300000000012 0.0577056499999999972 0.0683147600000000021 -0.392599079999999989 0.0210791659999999999 0.15687601000000001 0.0265913030000000002 0.0796897699999999931 0.113227053999999994 177 0 176 1 -0.0922655200000000036 168.638 0 0 31 false 1.31244969999999994 1.64705817851953995 0.0305111546287843011 -0.0623110799999999979 20 9 0.210778460000000001 0 20 false 177 1573.42632001474999 2.22988115508960005 705.609985 17.6962490000000017 18 879.564709862042037 11.4383346543759998 76.8962199999999996 17.9907189999999986 17 1055.50439520249006 10.7643682735920994 98.0554000000000059 17.2032699999999998 1.2298441 0 0.787448900000000007 0.294469829999999988 0.492979049999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.907146542692999 -63.1604172045906012 22.4623739958719995 -12.8168184051074991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383343418687232 2481383343418687232 1221952978 2015.5 25.5252258497101998 0.0320833160055878017 -3.16432581030016991 0.022073373011094799 2.79788543128178002 0.0360791444949785031 77.5485500000000059 -10.1480721115938 0.0550331564250729974 -10.1000919931866004 0.0464461037447485986 0.0190262549999999989 0.584274350000000053 -0.0409959000000000018 0.0472534559999999992 -0.135603400000000013 -0.00103051700000000011 -0.0946296199999999976 0.0119502270000000008 0.0768297000000000008 0.206952880000000006 172 0 172 0 -1.5913565999999999 138.981995 0 0 31 true 32.0959399999999988 1.47898689155828 0.00799222099910915952 -0.0159527700000000015 20 10 0.0583705529999999986 0 20 false 171 26793.7018413225014 9.67914153259708954 2768.18994 14.6182839999999992 18 10648.2528589950998 21.1824108215013993 502.693150000000003 15.2831930000000007 16 23204.6290058904015 24.5567178961100012 944.940200000000004 13.8479829999999993 1.26346420000000004 0 1.43520929999999991 0.664908399999999955 0.770300870000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.924260207988993 -63.1481272403974998 22.4770065168706985 -12.8141361687626993 100001 4771.31006 4444.8999 4855.33008 0.261200011 0.0617000014 0.587499976 0.138999999 0.0397000015 0.310099989 200111 0.581893499999999952 0.561928899999999953 0.670494999999999952 0.158100679999999993 0.153354899999999988 0.162846459999999998 +1635721458409799680 Gaia DR2 2481383339123110528 2481383339123110528 43749630 2015.5 25.5254070040923011 0.88464615911898703 -3.16005362487614994 0.630214133318525049 0.612292732963952036 1.08107576437572006 0.566373600000000033 -3.24370053032561012 1.57389390583291999 1.67254396986959009 1.2309756209982099 -0.118823170000000006 0.545542900000000053 0.0774966899999999931 0.0477491599999999988 -0.380318820000000002 0.0295105399999999983 0.0480873900000000007 -0.0377374899999999985 0.0543622399999999992 0.228045959999999992 164 0 164 0 3.19972659999999998 222.322006 2.10827072874030019 1.4791141584538201 31 false 0.0297107199999999995 1.75851211287493991 0.197369012740797989 0.0038619759 19 10 1.42877450000000006 0 19 false 165 143.034572582722006 1.28476088798255006 111.332001 20.2997629999999987 17 93.1158547215654977 7.00854012282425032 13.2860560000000003 20.4288300000000014 17 159.795783779454013 10.2230417069335999 15.6309430000000003 19.2530059999999992 1.76818539999999991 0 1.17582319999999996 0.129066469999999989 1.04675669999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.920535593007997 -63.144196135544 22.4787918088115006 -12.8102305633040991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383412137786368 2481383412137786368 745798165 2015.5 25.5251921056160995 1.39708550058132008 -3.15875158826563984 1.16975406839169005 -0.622892778606116027 1.68895162885333994 -0.368804399999999977 5.1983885042553597 3.13156066074526018 -6.91546384960969007 3.79212405506414996 -0.190606730000000002 0.310227450000000016 0.322949619999999993 -0.25567177000000002 -0.552879499999999968 -0.226219000000000003 -0.226491999999999999 -0.112638959999999996 0.0739028199999999941 0.303683499999999995 107 0 107 0 1.78269600000000006 128.858994 0 0 31 false 0.0194417310000000003 2.24469161191013011 0.347134903811224027 0.0254469920000000016 13 9 3.56041600000000003 0 13 false 110 100.151466524298996 1.15898774926863002 86.4129028 20.6867219999999996 9 53.5816776755497983 5.66664587643843998 9.4556249999999995 21.028846999999999 11 66.8696035420193056 12.4252328000287005 5.38175869999999978 20.1988489999999992 1.20269110000000001 0 0.829998000000000014 0.342124939999999989 0.487873080000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.918862219749997 -63.1431145290456968 22.4790787423500014 -12.8089409677799999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383682722628480 2481383682722628480 1161772843 2015.5 25.4939238085591988 2.11757074701713988 -3.13097577744346989 1.64805713486574001 \N \N \N \N \N \N \N 0.109580460000000005 \N \N \N \N \N \N \N \N \N 57 0 55 2 -0.892451299999999947 41.0089989 0 0 3 false 0.0149275870000000008 \N \N 0.0416609100000000024 7 5 12.9780669999999994 0 7 false 56 71.139727145071106 1.45349356970324006 48.9440002 21.0580840000000009 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.830009784888006 -63.1315225809630007 22.4597968748957015 -12.7716221966557004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383442204516480 2481383442204516480 118441917 2015.5 25.5321604924925012 0.724962356509360029 -3.15279663528434995 0.478650103875897015 0.613620012716413976 0.829678077021753002 0.739588099999999971 -1.99413934662455006 1.38372556326474005 -10.4316984201759002 0.810399534448783987 -0.0810084199999999977 0.425398500000000013 -0.0196379980000000003 0.108141989999999993 -0.268612240000000002 0.0933577700000000066 0.226939449999999987 -0.0213134619999999983 0.110278755000000006 0.0747514140000000021 177 0 174 3 0.625997499999999985 180.076004 0 0 31 false 0.0427634399999999998 1.43447367710628004 0.159375383505019008 -0.0161536759999999988 20 10 1.21524619999999994 0 20 false 174 148.586025159153991 1.16720993968611997 127.300003 20.258420000000001 15 44.0867231083769013 10.4836642356557999 4.20527799999999985 21.2406180000000013 14 199.468435558294999 8.89759920523995085 22.4182319999999997 19.0122339999999994 1.63915250000000001 0 2.22838400000000014 0.982196799999999981 1.24618720000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.92705660456599 -63.1347381024952981 22.4879610319912011 -12.8059653080022997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382617568603776 2481382617568603776 655022258 2015.5 25.5466557685278985 0.726721580884417961 -3.16177406968817998 0.547888721291654002 1.16122407177322007 0.894562272211226972 1.29809189999999997 4.33193733662872038 1.50188052367241998 -9.15719501934676927 1.02372704427298999 -0.0253571099999999987 0.326410099999999981 0.0774234159999999949 0.0489120860000000005 -0.356305030000000023 -0.00503358520000000021 -0.00536511399999999982 -0.0245957540000000009 0.176667240000000003 0.160009189999999996 159 0 158 1 2.4169562 198.498993 1.65694541207280999 1.11128593483187998 31 false 0.0382759979999999986 1.56304526575960989 0.167980001123883005 0.0324601980000000026 19 10 1.33140740000000002 0 19 false 159 155.516438863531988 1.36840547006514002 113.648003 20.2089250000000007 12 93.0220959949831041 12.2145112491121992 7.6157035999999998 20.4299220000000012 14 132.118252690134995 9.56776311716076933 13.8086870000000008 19.4595130000000012 1.4476948999999999 0 0.970409399999999978 0.220996859999999989 0.749412540000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.964526688674994 -63.1365761617490975 22.4983731210360993 -12.8196397403402003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382621864198400 2481382621864198400 614252733 2015.5 25.5486670778532989 2.4087660921690901 -3.15945346376074987 1.88123988830256006 \N \N \N \N \N \N \N 0.158357040000000004 \N \N \N \N \N \N \N \N \N 139 0 136 3 52.7056350000000009 4169.37988 15.5510630133336001 202.805904693025013 3 false 0.00385460000000000013 \N \N 0.0793127200000000032 20 10 4.33096600000000009 0 21 false 176 309.307661923209992 3.83157911436246001 80.7258987 19.4623890000000017 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.966311987495004 -63.1336151780000989 22.5011640773394994 -12.8182211882560999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382720647910784 2481382720647910784 1554452978 2015.5 25.5571297006191998 0.871938720326318029 -3.15530099450197987 0.625677438335675018 -1.72848817099800001 0.972650654521002966 -1.77709040000000007 0.200154144095059994 1.96801622281685007 1.9173858300392701 1.33173407162506008 -0.0332140299999999986 0.249266519999999991 -0.130442530000000001 0.0346908869999999966 -0.316830579999999973 0.0322114449999999983 -0.0447412169999999998 -0.00117695199999999999 0.0694008900000000067 0.172839030000000005 145 0 143 2 -0.301957199999999981 132.395004 0 0 31 false 0.0300222300000000004 1.90939614892170995 0.25353432649972002 -0.0136237600000000004 17 10 1.7487699000000001 0 17 false 145 127.775748991233996 1.30046488249711989 98.2538986 20.4222450000000002 15 99.7622606569753003 13.2193875021081997 7.54666299999999968 20.3539729999999999 15 81.9595757888865961 8.37408220287874983 9.78729099999999974 19.977920000000001 1.42219350000000011 0 0.376052859999999989 -0.0682716399999999946 0.444324500000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.979191485625989 -63.1262154399264972 22.510788886571099 -12.8174700450630006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383442202331520 2481383442202331520 774303583 2015.5 25.5398303597517007 0.383847984642369022 -3.14680428527069012 0.257390105368697997 1.11468391279146006 0.429982352352857977 2.59239459999999999 21.6042088057957002 0.773417458808860037 -30.7608421361414983 0.471336956763663995 0.00907783799999999953 0.406116399999999989 -0.0902042799999999978 0.103183800000000006 -0.146714199999999989 0.0642688800000000005 0.152135180000000009 0.00659361900000000022 0.124686464999999996 0.068885639999999998 168 0 168 0 1.71893399999999996 195.294998 0.763506618597248998 0.879384514537192019 31 false 0.145547349999999992 1.43853946956508993 0.0846615493868925068 0.0116987600000000008 19 10 0.680721099999999968 0 19 false 168 355.682041911675981 1.64799908799883998 215.826996 19.3107100000000003 17 113.115280409997993 9.48012180884921918 11.9318380000000008 20.2175849999999997 16 429.525931791096014 8.25363541589304006 52.040816999999997 18.1794469999999997 1.52563570000000004 0 2.0381374000000001 0.906873700000000005 1.13126370000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.936608041613994 -63.1260247778759975 22.4975251446351017 -12.8032124492814994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382724942909696 2481382724942909696 1082885280 2015.5 25.5683522214659007 2.84876636195384991 -3.14842748732502997 1.90836543218795995 \N \N \N \N \N \N \N 0.254632999999999998 \N \N \N \N \N \N \N \N \N 117 0 117 0 47.0716999999999999 3319.68994 14.1136777997464993 120.743517751989998 3 false 0.00446955899999999968 \N \N 0.0358484459999999991 14 9 4.14801800000000043 0 16 true 124 224.200135294255006 2.79190230378575999 80.3037033 19.8117750000000008 9 321.722980302673989 11.5365495759278005 27.8872800000000005 19.0826840000000004 12 612.291236863816039 9.92480218691422067 61.693043000000003 17.7945250000000001 4.16598399999999991 0 1.28815839999999993 -0.729091640000000041 2.01725000000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.994952753749004 -63.1151686604185969 22.5240684060558998 -12.8152026379733996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382755007562880 2481382755007562880 1173799601 2015.5 25.5707261524819991 1.85321576918111997 -3.14861984774376991 1.56288295100107 -1.14164052037988006 2.02591833306466018 -0.563517599999999952 1.27018229120410009 3.5382130761431001 -4.59324543517235995 3.62362715350686981 0.0777320600000000056 0.422101439999999994 0.289475680000000013 -0.260003570000000017 0.0898238299999999934 -0.363658670000000017 -0.246773379999999987 -0.135284889999999991 0.250028430000000024 -0.0688677600000000001 72 0 71 1 -0.109377409999999994 64.0952988 0 0.0864316385950814059 31 false 0.0149239420000000008 1.74243181273829006 0.45262700834650299 0.0576548399999999989 9 8 3.35859130000000006 0 9 false 73 86.4301881789488959 1.94157700489102991 44.5154991 20.8467030000000015 7 53.778952892939401 8.1680591758772092 6.58405539999999956 21.0248570000000008 7 69.9169094421171025 14.5207041297708006 4.81498049999999989 20.1504650000000005 1.43116500000000002 0 0.874391559999999957 0.178153990000000012 0.696237560000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.999861790468003 -63.1143156485155004 22.5262561426921017 -12.8162537568380994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379215954479872 2481379215954479872 647133188 2015.5 25.6017560891910989 0.649738212293118012 -3.22407931999961983 0.433774137290575013 -0.160432024505795995 0.914280897985460972 -0.175473450000000003 -2.41657600209566015 0.95158825564998295 -10.0237166479822992 0.670553910483073001 -0.369959470000000012 0.698611740000000037 0.177500999999999992 0.185029200000000005 -0.608779669999999995 -0.152949050000000003 -0.124220720000000007 0.192825620000000003 0.305899529999999975 0.219278899999999999 146 0 145 1 -0.891725300000000054 124.983002 0 0 31 false 0.0924258200000000057 1.52668062345966993 0.116679061258633004 0.0284208729999999993 17 8 0.971730399999999994 0 17 false 145 230.179340632432996 1.35771497395319996 169.533997 19.7832000000000008 13 132.087465542585988 15.5862364181648001 8.4746220000000001 20.0492339999999984 13 214.663201561930009 6.55768613657922028 32.7345960000000034 18.9325259999999993 1.50643700000000003 0 1.11670880000000006 0.266035079999999979 0.850673699999999977 \N \N 0 \N \N \N NOT_AVAILABLE 152.134129034897001 -63.1688532875119009 22.5273219812268017 -12.8978192779722995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379215954482944 2481379215954482944 1297634867 2015.5 25.6061827554102983 0.730568353882682042 -3.21800571930394019 0.607941406640723048 0.229880758709306993 1.02169398641095999 0.224999620000000011 -10.6902416404168008 1.35379268725432 -14.1910649804356996 1.1698216859011199 -0.149118529999999999 0.518107949999999984 0.0812623600000000057 0.102435509999999994 -0.534256900000000035 -0.219609840000000001 -0.344060179999999993 0.20460028999999999 0.374684420000000018 0.334623339999999991 122 0 121 1 0.289648300000000025 119.786003 0 0 31 false 0.055604924 0.858328494004380049 0.182876358696564989 0.0996995600000000065 14 9 1.3552048000000001 0 14 false 120 163.843913206650996 1.32720182477597004 123.450996 20.1522900000000007 10 49.834893655482098 5.59717269090940039 8.90358400000000039 21.1075529999999993 12 213.602307624224011 8.24528575720859003 25.9059929999999987 18.9379039999999996 1.60785470000000008 0 2.1696491 0.955263140000000011 1.21438599999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.137093447068992 -63.1614619840585974 22.5338307512619984 -12.8937983140778005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382342690685312 2481382342690685312 105758065 2015.5 25.5783350442487993 0.688177367962941045 -3.18906429260922009 0.456001236630668993 0.848222621388237008 0.825457450472568022 1.0275787999999999 11.4983175628438001 1.20682023116371995 4.94213032084253978 0.778874920667666948 -0.143229949999999995 0.532878500000000033 0.0286106520000000003 0.0968166699999999936 -0.344606199999999974 0.0203422660000000012 0.14809834999999999 0.0307242479999999991 0.144902350000000013 0.0933502840000000056 148 0 147 1 3.2875513999999999 204.070007 1.99907582291522989 2.74351639942113001 31 false 0.0592667600000000017 1.50444575479746989 0.147775991073485991 -0.00606658899999999984 18 10 1.06162810000000007 0 18 false 147 217.588779694958987 1.47204146074596998 147.813995 19.8442749999999997 14 58.174349856256498 7.77074520345015962 7.48632800000000032 20.9395600000000002 15 264.776198049719028 8.48823348930715937 31.193321000000001 18.7047230000000013 1.48422429999999994 0 2.23483659999999995 1.09528540000000008 1.1395512000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.053797067859989 -63.1474708888007967 22.5182362113969994 -12.8566558221684009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382273971207936 2481382273971207936 267637809 2015.5 25.5881999673092011 3.17199027429585012 -3.19104234012770016 2.41523328326289022 \N \N \N \N \N \N \N 0.00695257999999999987 \N \N \N \N \N \N \N \N \N 123 0 122 1 31.7306750000000015 1579.22998 18.6998694862672004 101.472790406496003 3 false 0.00256658669999999985 \N \N 0.0254788570000000006 15 10 5.44116399999999967 0 15 false 129 146.763514416184989 1.84593610492975002 79.5063019 20.2718200000000017 13 174.614853675061994 12.7488447785688006 13.6965240000000001 19.7461850000000005 11 421.037951043895021 10.3082638232255004 40.8447000000000031 18.201117 4.05858899999999956 0 1.54506870000000007 -0.525634770000000029 2.07070350000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.07534224295901 -63.1449787545479992 22.5268835701335988 -12.8621198034068005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382342690785408 2481382342690785408 1158509345 2015.5 25.573120288972099 1.4703627270784001 -3.1867679367103201 1.10848656188287009 -1.68717722941941006 1.48412611741925993 -1.13681530000000008 -0.267454425040467014 2.92123399012060991 -5.81852830861314008 3.20069731679856995 -0.249790180000000001 0.267487970000000019 0.463515579999999983 -0.291064500000000004 -0.497336200000000006 -0.381864040000000016 -0.439577099999999998 0.0423808999999999991 0.4037829 -0.0404942220000000033 104 0 103 1 -1.33380600000000005 79.9044037 0 0 31 false 0.0230420529999999998 1.72883138475070997 0.329386252433382987 -0.0928430799999999945 12 8 2.93200420000000017 0 12 false 104 98.6907812595526934 1.68879544847313001 58.4385986 20.7026749999999993 8 79.0991241612548066 12.3963702126405995 6.38082930000000026 20.6059589999999986 8 59.6502436272706973 15.2283569916060006 3.91705060000000005 20.322890000000001 1.40589999999999993 0 0.283069599999999977 -0.0967159300000000055 0.379785539999999977 \N \N 0 \N \N \N NOT_AVAILABLE 152.041205698725008 -63.1476599767322 22.5141373394151998 -12.8526044456032 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382273971209856 2481382273971209856 640646193 2015.5 25.5850532659842997 0.542944285170699037 -3.18525731077206009 0.432749025237922025 2.16637420452530982 0.645842835053385023 3.35433650000000005 -8.43758967849723973 1.1378664320407299 -22.2594844175565001 0.783531054657895965 0.0752926250000000019 0.352466200000000007 0.0100952149999999994 0.0814731340000000026 -0.187977630000000007 0.0164424160000000014 0.205569499999999988 -0.00794759299999999932 0.152871940000000012 0.097073615000000002 166 0 166 0 22.3517100000000006 985.11499 3.45798823484296003 30.2004893420514016 31 false 0.060262147000000002 1.39031821084923002 0.134417419594041992 0.0245300050000000006 19 10 1.00139669999999992 0 19 false 166 481.727466849148982 3.62954710589028018 132.723999 18.9813609999999997 14 106.007844679787993 11.2061076583865997 9.45982700000000065 20.2880439999999993 16 682.389259202254038 11.7864712448687996 57.895977000000002 17.6768399999999986 1.63660399999999995 0 2.61120410000000014 1.30668260000000003 1.30452159999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.063519098509005 -63.1411305815475004 22.5260706998235989 -12.8555845424507993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382381346041728 2481382381346041728 1589983870 2015.5 25.6052081432649992 4.08084597062943999 -3.18155402125024001 5.50248168286124972 \N \N \N \N \N \N \N 0.56877129999999998 \N \N \N \N \N \N \N \N \N 84 0 84 0 43.1439599999999999 2801.56006 19.1823818483680988 139.696970966012998 3 false 0.00242894260000000011 \N \N 0.18494469999999999 12 8 16.0030840000000012 0 12 true 105 222.789373690468011 5.31469478855554023 41.9194984 19.8186299999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.100077099443013 -63.1290572294108969 22.5466615368912997 -12.8595460118024008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379044155787776 2481379044155787776 114667432 2015.5 25.618943392781599 4.13685625890000974 -3.22508392273361011 5.83747491445160982 \N \N \N \N \N \N \N 0.536202199999999962 \N \N \N \N \N \N \N \N \N 54 0 54 0 34.8622060000000005 1830.98999 15.7077989321570008 136.297129892224007 3 false 0.00379568660000000014 \N \N 0.356776450000000023 10 7 10.3910300000000007 0 11 true 83 317.700481723538019 5.32970715959103991 59.6094017 19.4333209999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.169323797809994 -63.1622906324994986 22.5433119437604006 -12.9050680749299005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379048451408896 2481379048451408896 94774428 2015.5 25.6272833750099984 0.0543017128144145031 -3.22201019077868001 0.0416450428371449993 1.13678125824994991 0.0652728536670097031 17.4158340000000003 16.6911218246259985 0.103314772091964005 1.59556033857547996 0.086955116576393196 -0.0709688299999999966 0.487910999999999984 -0.00978308900000000002 0.0147690070000000007 -0.336878149999999987 -0.135666559999999992 -0.168295770000000011 0.106258064999999999 0.212526080000000006 0.200377780000000005 146 0 144 2 -0.662470699999999968 127.613998 0 0 31 true 9.06058600000000069 1.53444275994761004 0.0139710010536849994 0.00539251839999999993 17 10 0.100689769999999998 0 17 false 144 8019.42456373734967 7.21892018104408972 1110.89001 15.9280080000000002 15 3831.83618830524983 23.018763081760401 166.465769999999992 16.3928699999999985 13 6028.83641973860995 11.7629670824018007 512.526860000000056 15.3113364999999995 1.22959850000000004 0 1.08153340000000009 0.46486187000000001 0.616671560000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.182960622135994 -63.1558975299386987 22.552415494305599 -12.9052738477725999 100001 5019.75977 4982.20996 5152.3999 0.00800000038 0 0.0873999968 0.00549999997 0.000899999985 0.0439999998 200111 0.686356659999999952 0.651472399999999952 0.696741460000000035 0.269479750000000018 0.23658462999999999 0.302374870000000018 +1635721458409799680 Gaia DR2 2481379147237355136 2481379147237355136 1453435538 2015.5 25.6317885843251005 2.02796011620618 -3.20318410459614 2.0928907546022999 \N \N \N \N \N \N \N 0.254480329999999977 \N \N \N \N \N \N \N \N \N 74 0 74 0 3.59848329999999983 119.528999 7.16139113821864992 3.8551398455594299 3 false 0.00728553000000000013 \N \N 0.130256239999999995 9 8 5.48742399999999986 0 9 false 76 88.9826087654105038 2.17059441171188006 40.9945984 20.8151040000000016 7 28.2819446632307994 7.15781276921488008 3.95119929999999986 21.7226140000000001 7 82.3775556604139041 9.76384695500500932 8.43699699999999986 19.9723970000000008 1.24360819999999994 0 1.75021739999999992 0.907510759999999972 0.842706700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.173774085747993 -63.1369915794278995 22.5638121552214983 -12.8894232425833 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378326896903040 2481378326896903040 1411644250 2015.5 25.6570761451878013 0.0483048128960295031 -3.22300333394843008 0.0391472604514630021 1.02050874868604002 0.0584187689298594978 17.4688510000000008 16.8216301657199985 0.101292942135215003 1.46175184760835997 0.0816553207748214049 0.0419326199999999968 0.353641270000000008 -0.0615045469999999997 0.0250212159999999989 -0.296732930000000006 -0.0405462460000000011 -0.113628229999999997 0.0407526870000000027 0.150402619999999987 0.243709700000000001 181 0 180 1 -0.993419649999999987 156.445007 0 0 31 true 7.77404259999999958 1.53372492764196999 0.0128376001020558995 0.0335038969999999978 21 10 0.0997385600000000039 0 21 false 179 7070.65378719986984 4.81352394372864012 1468.91003 16.0647160000000007 19 3336.0186951434398 18.5099360954265002 180.228530000000006 16.5433179999999993 18 5349.32743151386967 12.2804902151311008 435.595579999999984 15.4411719999999999 1.2283653000000001 0 1.10214609999999991 0.478601459999999979 0.623544699999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.243189329904993 -63.1438228422982988 22.5804174979042003 -12.9171408555612999 100001 4979.41992 4924.93994 5026.66992 0.117700003 0.0140000004 0.252299994 0.0577000007 0.00789999962 0.128999993 200111 0.73277060000000005 0.719060499999999991 0.749073699999999953 0.297403340000000016 0.260759830000000026 0.334046840000000012 +1635721458409799680 Gaia DR2 2481379765710309120 2481379765710309120 549588009 2015.5 25.6477088413529017 0.28273965085290198 -3.18472326558695995 0.211563091787032004 1.45070458213672993 0.34349110031298602 4.22341250000000024 9.30997576148678085 0.588072597126731988 -28.2968508366074012 0.385208562107538011 0.00307907959999999996 0.325901659999999982 -0.00708624200000000041 0.0818033600000000055 -0.337001900000000021 0.0490883140000000009 0.0678870699999999938 -0.00540196659999999957 0.136322130000000014 0.172900100000000001 180 0 178 2 2.70767500000000005 227.610001 0.972778311580765997 2.83440602828166988 31 false 0.227222619999999986 1.46345718447753992 0.0697050808647945025 0.0220928300000000008 21 10 0.521981699999999993 0 21 false 175 516.385455851926054 1.70094190358514008 303.588013 18.9059309999999989 18 117.903684995590993 8.65657212351332994 13.6201349999999994 20.1725700000000003 19 682.952508226872055 9.06272919574490032 75.3583699999999936 17.6759430000000002 1.55088840000000006 0 2.49662600000000001 1.26663780000000004 1.22998809999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.187641307978993 -63.1134506486708986 22.5859413508113001 -12.8781044211182003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382480129648896 2481382480129648896 81530504 2015.5 25.5913504839085988 0.287505796535485025 -3.16406947973209007 0.213750288856204007 -0.518261292941259999 0.333405844380543992 -1.55444570000000004 -0.845251130804229978 0.630650669884710968 -2.10434170765574002 0.428865664772147992 -0.0153594749999999992 0.281624380000000007 -0.0135748359999999998 0.00627294740000000021 -0.290165329999999999 -0.0526519859999999978 -0.0322890300000000033 0.015586852 0.179066900000000001 0.111650124000000003 148 0 148 0 1.33885169999999998 166.119995 0.723085287032508961 1.31804963100044992 31 false 0.254098029999999975 1.45337566922049 0.0820391482115439968 -0.000137234759999999993 18 10 0.556859800000000016 0 18 false 149 517.290351406959985 1.71073660900590996 302.378998 18.9040299999999988 16 266.561832115439984 10.7069720072652999 24.8961000000000006 19.2868940000000002 17 393.237667803669979 9.76789447152543922 40.2581830000000025 18.2752820000000007 1.27549160000000006 0 1.0116118999999999 0.382863999999999982 0.628747940000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.055713306563007 -63.1193129014044985 22.540063964006201 -12.8381970010744002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382411410169088 2481382411410169088 1605430310 2015.5 25.6035781957724993 0.147782688660638012 -3.17221123666300997 0.105513804339311998 2.21280662274990991 0.164086603590052005 13.4856020000000001 -11.4572973298164005 0.330973688917233 -16.3706852109290004 0.203282226978573011 -0.00188550910000000009 0.273335779999999973 -0.170750469999999988 0.0520609650000000007 -0.226354730000000004 -0.00709753700000000012 0.0770619099999999974 0.080530400000000002 0.146892859999999986 0.0626806840000000004 158 0 155 3 2.08044239999999991 188.220001 0.383204944076485976 1.41826957900273998 31 false 0.981318200000000029 1.24329470723890001 0.0375254510093323002 -0.00672263899999999987 18 10 0.294977199999999995 0 18 false 156 1401.20211154075992 2.62828404948036987 533.124023 17.8221130000000016 16 283.143698685231982 12.7149700981969005 22.2685299999999984 19.2213700000000003 14 1781.81849408470998 17.4042673106097006 102.378249999999994 16.6347619999999985 1.47370760000000001 0 2.58660900000000016 1.39925769999999994 1.18735119999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.087857271720992 -63.1213486016060017 22.5486352805190009 -12.8502598199413995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382411410167936 2481382411410167936 29362992 2015.5 25.6164423066920008 0.37942521005770502 -3.17477253243957014 0.262255291372420984 1.11888646475805009 0.427267072238537993 2.61870499999999984 12.9819521206788995 0.79889182646051804 -14.0680663014244001 0.461582705472193988 -0.0391470270000000009 0.296726880000000026 -0.158908219999999989 0.102701223999999994 -0.256421029999999994 0.0414128529999999995 0.117051370000000002 0.096434900000000004 0.175790919999999989 0.065126139999999999 147 0 146 1 -0.724527099999999979 128.552002 0 0 31 false 0.166164010000000001 1.40537224430373997 0.0906754340785532048 -0.0183845400000000013 17 10 0.705519140000000045 0 17 false 148 352.733898822665992 1.67386002336921003 210.731003 19.3197480000000006 13 111.043150890145 10.6436981434846007 10.43276 20.2376600000000018 12 382.795322270585984 10.4793015018519995 36.5287059999999997 18.3045019999999994 1.40003119999999992 0 1.93315700000000001 0.917911499999999991 1.01524539999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.115906075824 -63.1180753337328966 22.5599191550921994 -12.8573671401957998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382720647823872 2481382720647823872 638919092 2015.5 25.5721415064794009 3.13781477106640994 -3.15069178977226994 2.31023990441885019 \N \N \N \N \N \N \N -0.121573630000000002 \N \N \N \N \N \N \N \N \N 112 0 109 3 39.4396699999999996 2334.66992 18.4261788654944993 302.117221761329006 3 false 0.00277006320000000019 \N \N -0.0979187640000000054 15 8 6.47560599999999997 0 15 true 131 233.681382751819996 3.12406401488809982 74.8003998 19.766805999999999 13 328.681694672624985 11.4255017130923999 28.7673759999999987 19.0594499999999982 14 769.32353661254399 10.5205723387401999 73.125630000000001 17.5466480000000011 4.69872800000000002 0 1.51280210000000004 -0.707355500000000026 2.22015759999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.004663034532996 -63.1155711588523971 22.5268218530767008 -12.8187003555768992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383137260272896 2481383137260272896 1006935805 2015.5 25.5908632251064994 0.917580392157038016 -3.13305264057070021 0.610693570270746 7.21383204464196037 1.18920628685782992 6.06608959999999975 -9.16701205523700047 1.47417109533890001 -1.3429777072209701 1.05238571347657994 0.152291249999999989 0.589575300000000024 0.069727689999999995 0.246482339999999994 -0.1761625 -0.0259385180000000007 -0.13335764 0.207914409999999994 0.416737599999999986 0.318332100000000007 107 0 107 0 0.247348729999999989 104.892998 0 0 31 false 0.0483438969999999968 2.02351983841702987 0.204443344930653997 0.110375516000000007 12 8 1.41001650000000001 0 12 true 106 170.414680013814007 2.05219895806277997 83.0400009 20.1095979999999983 10 101.646507249303994 9.51721907496768083 10.6802740000000007 20.3336560000000013 10 133.61645103455001 12.2371345366167006 10.9189330000000009 19.4472699999999996 1.38053230000000005 0 0.886386899999999978 0.224058150000000011 0.662328699999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.025012815116014 -63.0915744422504972 22.5513040076305984 -12.8091769012150998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382892446631680 2481382892446631680 256907492 2015.5 25.6164480006735999 0.778663868697664019 -3.13927064041134019 0.766880776955471966 1.40525925843846999 0.965529638024615 1.45542839999999996 -2.21023363448161003 1.80400822525432991 -6.67185014497206019 1.9442389806609901 0.0812073799999999957 0.281956140000000022 -0.0239598700000000012 -0.0306478349999999983 -0.390863200000000022 -0.270735090000000012 -0.577560100000000021 0.0691510439999999948 0.252044349999999973 0.500135239999999981 141 0 139 2 1.65985369999999999 162.292007 1.45308800986380993 0.707446994837772958 31 false 0.0345497280000000018 1.41130511588918006 0.21753191459742599 0.0646950599999999987 16 9 2.06292769999999992 0 16 false 139 139.388533523847997 1.27805328045831001 109.063004 20.3277989999999988 10 36.1727420235023018 4.2193946878204196 8.57296900000000051 21.4554350000000014 11 190.848540810141998 8.16263317173176084 23.3807560000000016 19.0601979999999998 1.62869400000000009 0 2.39523699999999984 1.12763600000000008 1.26760099999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.081828189253997 -63.0860956016882 22.5733199857740985 -12.8243569583988002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382789367292928 2481382789367292928 964527730 2015.5 25.6203023015729983 1.04538399626362999 -3.1676743101436502 0.690594848181230958 0.584554297777563958 1.16146168104465008 0.503291959999999983 25.5762872468325995 2.03103436256244985 -2.5728671203991702 1.37127548839948998 -0.242547380000000007 0.402505200000000007 0.126199320000000004 -0.0128383400000000002 -0.412543400000000005 -0.121643050000000003 -0.111955369999999998 0.0212424299999999996 0.194754659999999996 0.0556789400000000032 122 0 120 2 0.836499749999999986 127.443001 0 0 31 false 0.0310037100000000003 2.06712800429624011 0.230258071893422012 -0.0612418100000000007 14 10 1.79247390000000006 0 14 false 118 121.793127249294002 1.16325227385328001 104.700996 20.4743080000000006 12 60.115467837849998 6.04229014117200958 9.94912000000000063 20.9039229999999989 13 92.4838456836018992 11.5030384163154 8.03994900000000001 19.8467559999999992 1.25293860000000001 0 1.05716699999999997 0.429615020000000014 0.627552030000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.116759211800002 -63.1100075037932982 22.5662735948586999 -12.8521846235375996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382789367296256 2481382789367296256 488749575 2015.5 25.6189101712372995 0.15889392323273599 -3.16052270062448981 0.114907896388038999 0.077937811683717606 0.181271106182338992 0.429951640000000024 12.5094518061022004 0.354098656212684992 -4.17153101162896967 0.222382935674847987 -0.0309305199999999995 0.255010999999999988 0.14086361 -0.0222790000000000002 -0.22383457000000001 -0.0687636900000000023 0.0948632300000000067 -0.0843680599999999947 0.192250489999999996 0.00337002000000000005 159 0 158 1 1.44049190000000005 178.865997 0.0702589325156413036 0.0344743047689074975 31 false 0.818019199999999946 1.62325623008380004 0.0376950934640482016 -0.00666582070000000006 18 10 0.314286999999999983 0 18 false 154 1097.98562355388003 1.87940825824641999 584.218994 18.0868740000000017 18 573.025843409360959 15.3178267020714998 37.409084 18.4559539999999984 15 761.365092002723031 8.20422055961319963 92.801636000000002 17.557938 1.21530819999999995 0 0.898016000000000036 0.369079600000000008 0.528936399999999973 \N \N 0 \N \N \N NOT_AVAILABLE 152.10712046639199 -63.1041706003496969 22.5676463758721013 -12.8450231777932995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379804365652096 2481379804365652096 1544187459 2015.5 25.6481974527556993 0.121742963548864006 -3.16725162464843013 0.0907187175054170042 0.927453060512938965 0.144300719293061014 6.42722399999999983 17.8639975977421983 0.263367471063460978 -4.09489383197646983 0.175550236484682987 0.0294791419999999998 0.267679239999999985 0.00991700199999999941 0.0561379700000000023 -0.299189450000000023 0.0299436489999999993 -0.0149064699999999998 -0.0337845300000000001 0.143111180000000004 0.176977040000000002 176 0 175 1 2.93290139999999999 229.203003 0.325794322491749 1.32625011392207992 31 false 1.22961870000000006 1.49977613527053011 0.0308166872317486989 0.0019838350999999998 20 10 0.236761360000000004 0 20 false 173 1669.54011978367998 2.51096115435623002 664.901001 17.6318739999999998 17 682.887973330010027 10.0985866186923996 67.6221299999999985 18.2655139999999996 18 1424.03092168658009 8.55533735331703937 166.449420000000003 16.8781220000000012 1.26197559999999998 0 1.38739199999999996 0.633640300000000045 0.753751750000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.171791079885992 -63.0975104596298024 22.5929988134151998 -12.8620370751616999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379971868841856 2481379971868841856 948806931 2015.5 25.6493428645223993 1.11354552743071 -3.15268948349658995 1.55600043608505989 \N \N \N \N \N \N \N 0.00663632599999999968 \N \N \N \N \N \N \N \N \N 112 0 111 1 0.366771130000000001 110.742996 0 0 3 false 0.0214889179999999992 \N \N 0.140847529999999999 13 7 7.61298660000000016 0 13 false 113 96.7842703868496983 1.1826736629058201 81.8350983 20.7238539999999993 10 74.0783081498607032 9.48966414239803946 7.80620959999999986 20.6771600000000007 10 63.1128713458410999 5.88209562502220962 10.7296569999999996 20.2616249999999987 1.4174945000000001 0 0.415534970000000003 -0.0466938019999999995 0.462228780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.160059536022999 -63.0839026078305025 22.5995833313536991 -12.8489163166502003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379903151630080 2481379903151630080 1450836373 2015.5 25.6619766567138008 1.70083358049072997 -3.15768627769866983 1.46801919432028005 2.47572276742819009 2.25489017839792982 1.09793500000000011 5.94600833093524983 2.91401593518709978 -20.7235208014547005 3.34183677481532015 -0.353058219999999978 0.631456259999999991 -0.0458664820000000001 0.292450040000000022 -0.627267959999999958 -0.348408879999999976 -0.756186840000000027 0.258175280000000007 0.485902000000000001 0.537401099999999965 98 0 98 0 -0.697401049999999967 83.188797 0 1.04199042298598005e-15 31 false 0.0209140179999999995 1.08864687816527006 0.354419133139488973 -0.0960733000000000004 12 8 3.70663639999999983 0 12 false 99 92.0348335114186966 1.40794301658781995 65.3683014 20.7784839999999988 6 37.6936181970804967 10.8989668507574002 3.45845799999999981 21.4107190000000003 7 86.7468780889994946 21.173036660591201 4.0970449999999996 19.9162849999999985 1.35210220000000003 0 1.49443440000000005 0.63223459999999998 0.862199799999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.189951174724001 -63.082907990150602 22.6097304257296017 -12.8582022789265 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379971868752512 2481379971868752512 1516390860 2015.5 25.6597439017510993 0.722134046887193959 -3.15431923337254982 0.665475998944186964 -0.422224132342917002 0.864411863307032013 -0.488452500000000012 -2.0198164600905999 1.61798779083018007 -6.42019775493254041 1.70268844947427 -0.0593304899999999996 0.280971699999999991 -0.0780774899999999994 0.0413753430000000019 -0.425331799999999982 -0.239744399999999996 -0.61168100000000003 0.0884478499999999945 0.257357720000000012 0.439481850000000007 135 0 133 2 0.231982230000000011 131.069 0 0 31 false 0.0470391599999999965 0.927130359198852005 0.191856688810296994 0.0160755380000000003 16 9 1.79170099999999999 0 17 false 142 155.073528958629993 1.39515488502324003 111.151001 20.212019999999999 13 63.7055064867510978 10.3789243181904993 6.13796799999999987 20.8409459999999989 14 179.700325585112012 9.55628828533543029 18.8044049999999991 19.125547000000001 1.56961560000000011 0 1.7153988 0.62892530000000002 1.08647350000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.182278841315991 -63.0808482311478969 22.6088741073088002 -12.8542513177202995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382995525737472 2481382995525737472 1391291058 2015.5 25.6364820764785009 1.70691437203600005 -3.13905745867053998 1.30036465264758005 1.92108241957248005 1.94976430448079996 0.985289599999999988 1.84881485241865007 3.79810610654328018 -0.0755692955950646034 3.57187007638987009 -0.292979839999999991 0.282291230000000004 -0.224625020000000009 0.240985000000000005 -0.555021349999999969 0.0751224759999999936 -0.361214219999999975 -0.132651340000000006 -0.0298085000000000017 0.497075900000000015 97 0 96 1 1.33499900000000005 109.469002 0 0 31 false 0.0172738820000000008 1.5916357874498499 0.38300717853354499 -0.0412953120000000007 12 9 3.9608150000000002 0 12 false 100 88.547941225563207 1.38332768771717007 64.0108032 20.8204199999999986 9 54.8002108647303032 8.02503805934344072 6.82865430000000018 21.0044329999999988 10 51.2458343745312987 9.9654990999476194 5.14232499999999959 20.4877740000000017 1.19761169999999995 0 0.516658799999999974 0.184013370000000009 0.332645420000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.121422426142004 -63.0772132370293974 22.5924781642610988 -12.8315167851864 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382999821319552 2481382999821319552 92970736 2015.5 25.6258623304649014 0.296316467815324003 -3.13728644079787999 0.251581562810727022 2.47663745825461001 0.369131670445450977 6.70936060000000012 -3.7159909689059698 0.667162169089330015 -2.17685800212596003 0.427902996720138984 0.171826850000000003 0.189502090000000012 0.113838314999999995 0.196203340000000004 -0.40410950000000001 0.297165159999999984 0.324119099999999993 -0.195990880000000006 -0.0623035470000000008 0.331140460000000025 156 0 155 1 3.11109109999999989 209.761002 1.01850362472266998 2.80855447602144981 31 false 0.232724039999999993 1.20372201653439004 0.069604073256249302 0.0566457199999999966 18 10 0.617135050000000018 0 19 true 154 547.841021551448989 1.6335792038641801 335.362 18.8417299999999983 14 155.945689913634993 15.2954612715326004 10.1955530000000003 19.8689560000000007 16 704.297383108910026 14.0951875151111992 49.9672240000000016 17.6425300000000007 1.57024220000000003 0 2.22642519999999999 1.0272254999999999 1.19919970000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.098629360710987 -63.0802259956873002 22.5830333339386016 -12.8259696630834998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382995525821056 2481382995525821056 1395097448 2015.5 25.6394398680312996 1.33669195002256003 -3.13395105963076004 1.96780013402754994 \N \N \N \N \N \N \N -0.105605420000000005 \N \N \N \N \N \N \N \N \N 87 0 87 0 1.63897490000000001 104.047997 2.09364765035569 0.718637225756949993 3 false 0.0217626430000000017 \N \N -0.0149739669999999995 10 7 5.44688700000000026 0 10 false 88 96.5377483312232982 1.28345630164350011 75.2170029 20.726624000000001 9 73.8610479577209986 17.9650871460472992 4.1113660000000003 20.6803500000000007 9 90.5245326759273041 10.8794993222397007 8.32065200000000083 19.870004999999999 1.70281149999999992 0 0.810344700000000029 -0.0462741850000000024 0.856618899999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.122393952958987 -63.0713307118238973 22.5972210372041999 -12.8278545481832005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382961165999616 2481382961165999616 218042575 2015.5 25.6563311139372985 0.530579108490790041 -3.13713184857400984 0.395208673524584997 0.58686257415406895 0.653488930756980002 0.898045199999999988 1.78610165301358004 1.21336739534551996 -7.31024753031401975 0.666246475088685952 0.0393941849999999982 0.131530200000000014 -0.121499665000000007 0.152513939999999987 -0.483341340000000008 0.25424728000000002 0.227419690000000008 -0.0990878199999999931 -0.0570976960000000033 0.262965600000000022 152 0 151 1 1.16462979999999994 166.091995 0.399612393900216023 0.121044610428724997 31 false 0.0873203050000000008 1.32023769866298002 0.124347839167242999 0.0262151699999999994 18 10 1.08781860000000008 0 18 false 150 233.885600082193008 1.3176771004549499 177.498001 19.7658580000000015 12 96.9878351234282974 5.4478356415479503 17.8030030000000004 20.3845959999999984 13 197.102565258764997 8.21480785564251015 23.9935699999999983 19.025188 1.25741140000000007 0 1.35940740000000004 0.618738200000000016 0.740669249999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.158980163201988 -63.0668588475734992 22.6121069716581999 -12.8370152094431003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228498688 2481380006228498688 1576584044 2015.5 25.658089669753199 0.40394096141052499 -3.1406730440239401 0.399647952985054011 -1.01614126256265003 0.599376625997570023 -1.69533010000000006 0.0384000982648005015 1.05457143707607992 0.150248136293063994 0.699230433760870018 0.219807900000000001 -0.0234682200000000014 0.13980149 0.244528679999999998 -0.646386099999999963 0.459328899999999984 0.410976830000000015 -0.391396670000000002 -0.31782611999999999 0.515899400000000008 157 0 155 2 1.39425120000000002 174.729004 1.00502049117824011 1.15292773750831001 31 false 0.126797999999999994 1.50230221134016007 0.102792751780967001 0.0707266299999999987 18 9 1.04177990000000009 0 18 false 155 330.264470960605024 2.75006477061105992 120.093002 19.3912100000000009 13 216.019602325617001 6.45054128436107987 33.4885999999999981 19.5151560000000011 15 228.011396124315013 6.87600672139821967 33.1604400000000012 18.8670299999999997 1.34447099999999997 0 0.648126599999999997 0.123945236 0.52418136999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.165873456826006 -63.0692827364801971 22.6124460422084006 -12.8409539934645007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382961166003072 2481382961166003072 1152968046 2015.5 25.6548060383715004 0.243981037982125004 -3.1295077075976101 0.175365802488547995 1.71409358057290007 0.292072559520982988 5.86872530000000037 10.9126653206616009 0.515797140864513004 17.4137539566042996 0.323906558473974981 0.0257522069999999992 0.287366239999999995 0.00791376400000000021 0.0822126640000000047 -0.298741429999999974 0.0594893900000000031 0.0295199509999999991 -0.0355014199999999988 0.143396560000000006 0.167679560000000005 172 0 172 0 2.38312580000000018 213.662003 0.544200545103833977 0.975390111662678971 31 false 0.323543199999999975 1.32766479420298 0.0587221253121449974 0.0169088750000000003 20 10 0.457471940000000021 0 20 false 171 591.721273646077975 1.52305897930973999 388.507996 18.7580719999999985 16 137.217034459086989 11.6500020046636994 11.7782839999999993 20.0078679999999984 18 750.686934115060012 10.0769829230256001 74.4952100000000002 17.5732730000000004 1.50054430000000005 0 2.43459499999999984 1.24979590000000007 1.18479920000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.148629994406008 -63.0606569657072029 22.6135301931702983 -12.8293653203977005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395433753126912 2481395433753126912 1000644748 2015.5 25.4807641014187993 4.37976034743819032 -3.12558917739263986 8.13324719406772978 \N \N \N \N \N \N \N 0.11431289 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.2293521999999999 44.3773994 0 0 3 false 0.0128330860000000005 \N \N 0.369056759999999984 5 4 20733.4959999999992 0 5 false 38 66.2309810350551942 1.64292419804237011 40.3129005 21.1357140000000001 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.798635902195002 -63.132317777670302 22.4493034958248998 -12.7617761998744008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395433751035904 2481395433751035904 1567879593 2015.5 25.4863506390027013 0.724640377004346026 -3.12106687442410013 0.47972390184153002 0.546245964353150981 0.82767838988456599 0.659973699999999996 14.3311595844909991 1.51515579854268001 -73.0064783385756044 0.870166214809769967 -0.0221938729999999994 0.336555060000000017 -0.0306812540000000016 0.0659935299999999947 -0.236222710000000002 0.0167095800000000017 0.101655869999999995 0.000455765720000000007 0.160027379999999997 0.0780323500000000003 144 0 141 3 -0.934566000000000008 120.544998 0 0 31 false 0.0487175140000000034 1.83892745497297994 0.19434689211674 -0.0147050419999999998 17 10 1.3294805999999999 0 17 false 142 159.13203244031601 1.41484416409310998 112.473 20.1839709999999997 15 61.5572297454985033 9.08997787237890087 6.77198899999999959 20.8781910000000011 15 182.226784005024996 9.0068622406411496 20.2319950000000013 19.1103899999999989 1.53196059999999989 0 1.76780129999999991 0.694219600000000048 1.07358170000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.805470469687009 -63.1258350756841011 22.4563283950623003 -12.7596252916764996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395438046590464 2481395438046590464 1460373788 2015.5 25.4898989418913011 0.734719717301027031 -3.12135788684124016 0.516080368503885945 \N \N \N \N \N \N \N 0.032127946999999997 \N \N \N \N \N \N \N \N \N 163 0 163 0 178.195740000000001 71612.2969 5.01805762676290978 2840.27191028792004 3 false 0.0380802749999999968 \N \N -0.00437464100000000029 19 10 1.4032019 0 19 false 164 16505.8913942924009 34.970795538273002 471.990997 15.1442680000000003 16 5029.08198555063973 16.7547868726541012 300.157930000000022 16.0976660000000003 17 17586.4548958693995 35.4332120823668006 496.326869999999985 14.1489740000000008 1.37014940000000007 0 1.94869139999999996 0.953397750000000044 0.995293600000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.812822153350993 -63.1245726671818019 22.4595961545082012 -12.7612002548166998 130001 4152.52002 3821.66992 4742.33008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383717080251520 2481383717080251520 191881931 2015.5 25.511180049076799 0.587758751145272984 -3.12273220036865995 0.396489429677629013 0.176208668229353993 0.679028392749734033 0.259501199999999987 -3.64097373782270006 1.13673887471189006 -0.529246571100997043 0.689092649902972032 -0.0311911100000000011 0.433879049999999988 0.0394450949999999995 0.0973807299999999987 -0.238233300000000009 0.0705636600000000003 0.224632870000000012 -0.042607550000000001 0.114058400000000004 0.092091329999999999 185 0 184 1 0.0173157770000000009 178.660995 0 0 31 false 0.0593391360000000007 1.23018570143124006 0.132394067132269005 0.0102745800000000002 21 10 0.999683740000000043 0 21 false 184 184.31387688855699 1.36743426463881002 134.787994 20.0244709999999984 16 62.8401023498499001 10.3942343735361007 6.04566900000000018 20.855796999999999 16 204.001451081775997 8.56233540444418928 23.8254449999999984 18.987836999999999 1.44775619999999994 0 1.86796000000000006 0.831325529999999979 1.03663440000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.856547198002005 -63.1166587818974989 22.4793354561690002 -12.7703005487334007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395575485575936 2481395575485575936 619321503 2015.5 25.5143288997215016 1.07060157899903996 -3.11202875699326009 1.08294722052775994 3.66164633740239998 1.43852911446927001 2.54540999999999995 4.96613711534596991 3.0644602920217201 -10.5861763937642994 3.37429334153583982 0.163649369999999988 0.13604079999999999 0.141620799999999991 -0.0246766279999999991 -0.422153999999999974 -0.120347395999999995 -0.335050169999999981 -0.224050980000000011 -0.0151691680000000002 0.618274450000000031 123 0 123 0 2.63499280000000002 162.457993 1.96502342045375999 0.691368535271501994 31 false 0.0188901219999999988 1.73846321848877006 0.339652434606502018 0.0783704800000000062 14 9 3.61050059999999995 0 15 false 122 98.9791168910881964 1.21773938913671009 81.2809982 20.6995070000000005 9 38.9846070331904997 7.20062692931942028 5.41405729999999963 21.3741549999999982 10 195.171506598311993 13.8169914963450999 14.12547 19.0358799999999988 2.36571240000000005 0 2.33827600000000002 0.674648299999999979 1.6636276000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.852618562587992 -63.1056454840624994 22.4863726604477989 -12.7615059246866007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383755735227136 2481383755735227136 401219249 2015.5 25.5331105419505988 3.68770916062568022 -3.1256283652488599 2.15897039269925006 \N \N \N \N \N \N \N 0.496834339999999985 \N \N \N \N \N \N \N \N \N 75 0 75 0 1.12356480000000003 83.4020996 0 0 3 false 0.0169000379999999992 \N \N -0.107446230000000004 9 6 16.7620660000000008 0 9 false 73 94.1266917153588025 1.74572918963625989 53.9183006 20.7540839999999989 6 64.1726127774068971 10.2316285736302994 6.27198399999999978 20.8330139999999986 6 73.7992257274373031 10.2084995775595004 7.22919399999999968 20.0917910000000006 1.46581000000000006 0 0.741222399999999948 0.0789298999999999973 0.662292499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 151.902994450971988 -63.1098246642571965 22.4991198424113996 -12.7810534332668002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383785799805312 2481383785799805312 599889851 2015.5 25.5369744903713993 12.3690724691749008 -3.11951855952248014 4.94046572900542014 \N \N \N \N \N \N \N -0.907736540000000036 \N \N \N \N \N \N \N \N \N 48 0 47 1 0.362218619999999991 44.7094002 3.15549344773938012 0.838727306376209958 3 false 0.0120524159999999998 \N \N -0.101495475000000002 6 5 28.6420059999999985 0 6 false 49 85.2562765454455018 2.17739338735013011 39.155201 20.8615500000000011 4 40.9859097047079004 15.6304666166598007 2.62218069999999992 21.3198009999999982 4 77.2360969677166054 16.1144438392439007 4.79297299999999993 20.0423699999999982 1.38666629999999991 0 1.27743150000000005 0.458251950000000019 0.819179529999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.904856530057003 -63.102647891121002 22.5051041193610004 -12.7767924439727008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383785801911552 2481383785801911552 1236954165 2015.5 25.5394876195218004 0.878030697689047956 -3.11617696512711984 0.708159864432986952 0.339235062345349003 0.986757390594828032 0.343787699999999974 30.044644322873399 1.89358064278206006 -19.7899976862683005 1.80306641327308004 0.00595685929999999978 0.339333800000000019 0.0473343430000000009 -0.0663976740000000037 -0.252307859999999995 -0.185143780000000008 -0.424177999999999999 -0.033585509999999999 0.146331149999999993 0.282537399999999994 139 0 139 0 1.44303289999999995 158.292999 1.28365661177624002 0.43145008691895198 31 false 0.0294549189999999995 1.13252774667240996 0.25034182698239299 -0.0119190770000000001 16 9 1.85819470000000009 0 16 false 138 126.091527902839999 1.24589599103932991 101.205002 20.4366510000000012 13 27.8916686469313007 6.73846654646001042 4.13917160000000006 21.7377010000000013 12 158.497293478317005 9.18002782452732013 17.2654479999999992 19.2618660000000013 1.4782036999999999 0 2.47583580000000003 1.30105019999999993 1.1747856000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.906670527171002 -63.0985503501932001 22.5087576462019001 -12.7746088992502997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384163756856448 2481384163756856448 880659639 2015.5 25.5483496252370017 0.862113136584165995 -3.1064405042038401 0.644300667522901049 -0.928763631391329003 0.98545251633639197 -0.942474249999999958 4.44027850914392985 1.94760077721471991 -2.10071888687315012 1.38327974342339011 -0.00926519649999999959 0.212297249999999993 -0.0636134500000000019 -0.0122043550000000001 -0.360497300000000021 -0.103579599999999994 -0.259753440000000002 0.0720296200000000025 0.250119860000000027 0.203386280000000003 129 0 128 1 2.0367156999999998 157.003998 1.18310577584883991 0.439437078065592013 31 false 0.0337302800000000014 1.88594364489482991 0.228124295524399001 -0.0119666860000000007 15 10 1.74514320000000001 0 15 false 133 142.489062998566993 1.84458367400147005 77.2472992 20.3039109999999994 10 78.6222592568761058 10.5740098413760002 7.43542530000000035 20.6125240000000005 10 111.305885259478003 7.84890784961296983 14.1810665 19.6456240000000015 1.3329314000000001 0 0.966899900000000034 0.30861282000000001 0.658287049999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.915016298034999 -63.0859472825797027 22.5208682797253985 -12.7688121116826991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384232476408320 2481384232476408320 1633149126 2015.5 25.5407381065790986 1.68955875653516996 -3.09737519946950002 1.47362375161064008 -0.742327604857686008 2.11799557602512989 -0.350485920000000006 5.38547791737109005 3.16546575503544014 -1.24642494611816002 3.40582186436393997 -0.391622279999999989 0.540090799999999982 0.0402397329999999998 0.241337240000000008 -0.68225939999999996 -0.329664440000000003 -0.683107699999999984 0.254614200000000013 0.483178820000000009 0.457930449999999989 84 0 84 0 0.820768599999999959 89.0485001 0 0 31 false 0.0208306779999999983 1.5636471027994201 0.410964622462400009 -0.157226979999999988 10 8 3.72983220000000015 0 11 false 86 92.9659269390163985 1.51123054988223005 61.5167007 20.767557 8 47.0355447809872018 7.38234563577812963 6.37135500000000032 21.1703219999999988 7 68.6007963543057002 13.8439694569868994 4.95528359999999957 20.1710969999999996 1.24385729999999994 0 0.999225600000000047 0.402765270000000009 0.596460340000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.891226939397001 -63.0810514907527988 22.5170426085442017 -12.7575860755805 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383888878945408 2481383888878945408 1246218207 2015.5 25.5775071605386017 1.53745292541360001 -3.11730819390349012 1.22868385785743994 -1.01083542842563001 1.68074593721937005 -0.60142070000000003 -2.99594202320000003 3.80082168118451991 -7.45281371628875977 3.16134615456557011 -0.0487361330000000009 0.110102370000000005 -0.280345200000000017 -0.105793020000000002 -0.550560240000000034 -0.334679930000000014 -0.642057239999999974 0.322850850000000023 0.463874999999999982 0.32104102000000001 99 0 99 0 -0.7511911 83.4544983 0 0 31 false 0.0186740630000000012 1.11728115042788989 0.379007662436941006 -0.105171029999999999 12 8 3.70558759999999987 0 12 false 102 92.1954292721305961 1.39677913256206998 66.0056992 20.7765920000000008 11 70.7551003179367939 9.73301310613092951 7.26959900000000037 20.7269940000000013 11 71.0807942058441 10.7171651088392998 6.63242499999999957 20.1325399999999988 1.53842649999999992 0 0.594453800000000032 -0.0495986939999999987 0.644052500000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.983390739523003 -63.0831591699446008 22.5445275061555996 -12.7896301709137994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383996253227648 2481383996253227648 1001613993 2015.5 25.5744312848087993 0.660964758104102046 -3.10584035809924996 0.412123910835824003 0.0544030648850254012 0.711616363596408008 0.0764499899999999954 -1.60415324755924993 1.29749508267604008 -9.55622706630271068 0.726855352787089015 -0.214635059999999989 0.409646180000000026 0.193010290000000001 -0.0212504999999999986 -0.334281400000000006 -0.0437886899999999982 0.225412499999999988 -0.0710345399999999932 0.0974253040000000042 -0.0421829400000000021 160 0 157 3 1.52844720000000001 179.490997 0 0 31 false 0.0649308039999999947 1.16049183611146001 0.131564104810603988 -0.0918531900000000012 18 10 1.14822779999999991 0 18 false 158 198.493353245278996 1.59382270596141007 124.539001 19.9439999999999991 16 100.894740270124004 18.522148812769899 5.44724800000000009 20.3417169999999992 18 254.437230075401004 11.7012639411343997 21.7444230000000012 18.7479690000000012 1.79014540000000011 0 1.5937481 0.397716520000000018 1.19603159999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.966315680838989 -63.0741494141855981 22.5459254981876995 -12.7778367108255004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383270403656448 2481383270403656448 1465711722 2015.5 25.6114059149932984 0.22036810786331601 -3.11318381790515986 0.17243823769643099 0.335730033359172009 0.257153621759031004 1.30556209999999995 8.17997461651408919 0.460888848258147021 -18.4528428269780989 0.327361355252505981 0.131993849999999996 0.31078956000000002 0.0432719329999999985 0.0860615200000000025 -0.198753540000000006 0.0399291179999999996 -0.0217836149999999992 -0.0209426319999999992 0.174702809999999986 0.220589549999999995 153 0 152 1 2.08675800000000011 184.983994 0.63424033522825396 1.68826105018328998 31 false 0.401642979999999983 1.5331508035227801 0.0635010787341926952 0.0480663799999999988 17 10 0.414875150000000026 0 18 false 153 756.79323657565601 2.38721870961223992 317.019012 18.4909229999999987 16 394.915531819267017 8.1936235301360405 48.1979100000000003 18.8601279999999996 15 593.551758925738 12.7069608739183995 46.7107600000000005 17.8282740000000004 1.3061259999999999 0 1.03185459999999996 0.36920546999999998 0.66264915000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.04681301921201 -63.0647772146360026 22.5783597226961987 -12.7982472050826992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384095037383936 2481384095037383936 874568034 2015.5 25.5850260469181983 0.854418850983126976 -3.09611181182722994 0.720590606690353019 -0.363656240371781014 0.972493125746636045 -0.373942229999999987 -6.32904841743008006 1.84810332286653001 -22.5140322399656014 1.7862766602712099 0.0332322940000000025 0.322941540000000027 -0.0349099599999999968 0.0176771229999999994 -0.245635020000000009 -0.134647010000000011 -0.470687540000000015 -0.0200222860000000003 0.114074930000000005 0.379695530000000003 151 0 151 0 -1.37766290000000002 123.105003 0 0 31 false 0.0278471469999999992 1.14114369508083002 0.239928843928228996 0.0110150839999999996 17 9 1.8911690000000001 0 17 false 152 116.821554845490994 1.18520338849999995 98.5667038 20.519558 12 54.8838229268657969 4.34014760103266006 12.6456119999999999 21.0027769999999983 16 134.202369922143987 6.48634644641902014 20.6899799999999985 19.4425199999999982 1.61858989999999991 0 1.56025700000000001 0.483219149999999986 1.07703780000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.978080379221012 -63.0608013829643994 22.5596824406979017 -12.7726825243831001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384129397123712 2481384129397123712 1323978039 2015.5 25.5945985881048017 0.511355827259586948 -3.09371480780233021 0.359359957499316984 -0.820979344884866014 0.589641150421191029 -1.39233720000000005 -0.284865244284209007 1.07250651659240992 -3.78503345762924992 0.686697215684414997 0.0405118699999999984 0.296973560000000025 0.00206907579999999992 0.0973028840000000061 -0.23718112999999999 0.0898943400000000031 0.0014303854999999999 -0.0615879900000000022 0.105861339999999998 0.188796820000000004 169 0 168 1 0.636178550000000009 174.061005 0 0 31 false 0.0754346999999999934 1.49124414039500008 0.12511698328350801 0.00312560140000000012 19 10 0.951937000000000033 0 19 false 167 214.387565059221998 1.33618313730624005 160.447998 19.8603670000000001 14 132.020168183792009 8.57863825855075923 15.3894079999999995 20.0497879999999995 15 148.919064371823993 8.35513392198421911 17.8236600000000003 19.3295439999999985 1.31042700000000001 0 0.720243450000000007 0.189420699999999997 0.53082275000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.994808075352012 -63.0545031624037975 22.5697004644291006 -12.7739698402124002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384713512672128 2481384713512672128 904204242 2015.5 25.6395505833167014 0.315447083016103025 -3.10339658255022011 0.229742163660251991 0.229561082190977012 0.368943910415495013 0.622211340000000002 10.2782927350278008 0.66954511165291497 -12.7431373739806002 0.421045486961924009 0.0540965100000000004 0.271106300000000022 0.00466158330000000006 0.0992292899999999978 -0.268376400000000015 0.0789536900000000069 0.047015750000000002 -0.0287367250000000012 0.147981439999999992 0.17224007999999999 169 0 166 3 1.64651499999999995 191.639999 0.864218823193825036 1.7662273551946901 31 false 0.193871529999999986 1.58435197457542998 0.0762679324921748947 0.0164220389999999994 19 10 0.593477499999999991 0 19 false 162 439.616473421588012 1.49330581733253998 294.390991 19.080680000000001 16 255.183118639487986 16.7320601325024008 15.2511469999999996 19.3342589999999994 15 327.498869857222019 7.62629378016865012 42.9433859999999967 18.4738959999999999 1.32543250000000001 0 0.860362999999999989 0.253578199999999976 0.606784800000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.093312774366012 -63.0437632138457005 22.6088504233947987 -12.7994820644741996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384507354237056 2481384507354237056 1450774696 2015.5 25.6462654758997992 0.648193596034503994 -3.11492955896344004 0.472195901474780022 0.936743557864341048 0.781004898905525047 1.19940800000000003 -0.782635476229507021 1.3918862694829599 -0.319857762673699975 0.877384583576496957 0.0109982420000000001 0.257822629999999997 0.0950790640000000048 0.068670060000000005 -0.343478830000000013 0.0666758999999999963 0.0408355779999999974 -0.0956388039999999939 0.12461788 0.17203273999999999 159 0 158 1 0.689010440000000002 164.671005 0 0 31 false 0.0494807469999999985 1.50624023944004004 0.153068369453874004 0.0314093100000000028 18 10 1.23452730000000011 0 18 false 158 163.562094398217994 1.56130359287227005 104.760002 20.154160000000001 13 108.993078050194001 10.2923393743665006 10.5897279999999991 20.2578899999999997 15 97.2262344985405065 9.92463338993525035 9.79645599999999916 19.7924609999999994 1.26080130000000001 0 0.46542929999999999 0.103731155000000005 0.361698149999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.117691827101993 -63.0512376759193032 22.6108952330293995 -12.8126726238951996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384507356569216 2481384507356569216 1552055624 2015.5 25.6599732051789005 1.59299518253918992 -3.11913027649573005 2.22363707144176015 \N \N \N \N \N \N \N -0.0253016019999999994 \N \N \N \N \N \N \N \N \N 79 0 79 0 -0.550573700000000055 66.8768997 0 0 3 false 0.0183920620000000007 \N \N -0.0991166799999999987 9 7 6.28545900000000035 0 9 false 78 86.1788192039175982 1.52045521307215004 56.6795998 20.8498650000000012 5 30.6253542697729984 5.77065455766251034 5.30708499999999983 21.6361850000000011 8 110.488783116166005 7.69769708972406974 14.3534849999999992 19.6536240000000006 1.63745729999999989 0 1.98256110000000008 0.786319729999999995 1.1962413999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.148918530684995 -63.0490684247212982 22.6223646787208992 -12.8216123111483995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384782232153728 2481384782232153728 1428430974 2015.5 25.6344956204386989 0.158869864169922992 -3.09238440672482984 0.119377068901157998 -0.18219787981909899 0.182366153049203006 -0.999077259999999967 1.35975427906015001 0.34050422324907198 -3.18588103828101987 0.22509645290152 0.0870806300000000061 0.26607132 0.0158101279999999997 0.0829927200000000059 -0.206800979999999995 0.0495429199999999972 0.0116271469999999991 -0.0235077100000000011 0.169416440000000001 0.165557950000000009 157 0 157 0 0.771008699999999991 165.138 0 0 31 false 0.771845499999999962 1.61762441898646991 0.0394934586283003028 0.0323479439999999965 18 10 0.304057499999999981 0 18 false 157 1044.24939288184009 2.09048041309522992 499.526001 18.1413559999999983 14 549.036263928201947 11.8620729256714004 46.2850200000000029 18.5023860000000013 15 741.528026698606027 14.0377302191695996 52.8239250000000027 17.5866010000000017 1.23587749999999996 0 0.915784840000000044 0.36103057999999999 0.554754260000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.072737769398003 -63.0360345136028002 22.6081898402892989 -12.7873853266723998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379495128007168 2481379495128007168 1134226241 2015.5 25.6677175447323016 2.25324490321597981 -3.19915554378281985 1.86827161240096995 \N \N \N \N \N \N \N 0.117106859999999993 \N \N \N \N \N \N \N \N \N 125 0 125 0 59.5301359999999988 5413.77979 14.5321014791514003 273.128695468524995 3 false 0.0044309893000000003 \N \N 0.0557326000000000002 20 10 4.7444267 0 20 false 173 354.918738675661018 5.01248749857670983 70.8069 19.3130440000000014 17 491.469683553833988 10.0365510662940007 48.9679829999999967 18.6226459999999996 16 1014.56205286973 14.5844756368241999 69.5645200000000017 17.2462230000000005 4.24331429999999976 0 1.37642289999999989 -0.690397260000000013 2.06682010000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.241315917880002 -63.1177290829752025 22.5995529287181007 -12.8988731622799992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228494848 2481380006228494848 424967389 2015.5 25.6657768746246013 0.444311895489772013 -3.14650396511949992 0.303706998641972981 2.18331907219105004 0.549275338099686983 3.9749083999999999 13.2190903643263002 0.850440220525775947 16.5202581010338996 0.519839770962538972 -0.117447815999999997 0.413325429999999994 0.0321094899999999975 0.110534859999999999 -0.448773680000000008 0.0825001300000000048 0.0550912319999999969 -0.0287928250000000011 0.126958220000000011 0.187589969999999995 167 0 167 0 2.68846229999999986 214.565994 1.05178374464187008 1.51412494046211998 31 false 0.120923320000000001 1.34241889742418996 0.0977790636484924952 -0.0342192300000000033 19 10 0.753839499999999996 0 19 false 166 314.12088921413698 1.3337251631609901 235.520996 19.4456230000000012 15 104.059858510588001 14.7802327464968997 7.04047499999999982 20.3081800000000001 17 397.96773357758201 8.98771106709897971 44.2790999999999997 18.2622999999999998 1.59819869999999997 0 2.04587940000000001 0.862556459999999969 1.18332290000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.186736380413009 -63.0711894902891999 22.6175677000072 -12.8491990003519003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228498048 2481380006228498048 1613094534 2015.5 25.6645073731089006 0.225465396016926001 -3.14213361419392001 0.165432896800010998 0.233166683960513987 0.269351951786662991 0.865658040000000017 1.68470459116810001 0.486598022039508027 -2.33074180665628017 0.311369206494847006 0.0135981690000000002 0.254809300000000016 0.0179306509999999988 0.0674024450000000053 -0.336041450000000019 0.0488769640000000019 0.00404585760000000013 -0.040271073999999997 0.141736090000000009 0.176113710000000007 176 0 174 2 1.95627149999999994 206.813995 0.577404105293470971 1.24093402245892004 31 false 0.366503950000000023 1.64958997244395 0.0559344513761596968 0.00537521199999999987 20 10 0.432457900000000006 0 20 false 173 671.656050976548045 1.73154873283936994 387.893005 18.6204989999999988 17 381.307984711932022 17.6457060502665009 21.6091100000000012 18.8981999999999992 17 487.088260898627027 9.1701117366121796 53.1169399999999996 18.0428999999999995 1.29291810000000007 0 0.855299000000000031 0.277700420000000003 0.577598599999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.180014245548989 -63.067807528957303 22.6180070727499007 -12.8446687411937006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384541713978624 2481384541713978624 642998925 2015.5 25.6728704285830993 0.417596033210367978 -3.10602452259497008 0.406340215768619006 0.0394846750027317006 0.608707819472531053 0.064866389999999996 10.1366688748053004 1.07238991064144007 5.44631227720458977 0.650646825657584027 0.21697298000000001 -0.0167185699999999986 0.157692610000000011 0.259159619999999979 -0.64016426000000004 0.487173940000000028 0.488534699999999988 -0.4030339 -0.32660842000000001 0.475230460000000021 158 0 157 1 2.06715999999999989 190.190994 0.940559356846064953 1.01467791806990992 31 false 0.124225940000000007 1.42816192551992005 0.101094368709735996 0.077866249999999998 18 9 1.04364750000000006 0 18 false 155 315.020825223012992 1.59276663145981989 197.781998 19.4425179999999997 14 109.450615459575999 13.5827756096299002 8.05804400000000065 20.2533439999999985 15 380.952473527270001 6.7305689962864701 56.6003380000000007 18.3097439999999985 1.55673229999999996 0 1.94359970000000004 0.81082535 1.13277439999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.161914799127999 -63.0316646085471035 22.6395888277976987 -12.8141598475785994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378945372194816 2481378945372194816 1195208251 2015.5 25.6206246297623004 1.89221218697378002 -3.24310573513597999 1.38417040663004998 \N \N \N \N \N \N \N -0.107578179999999995 \N \N \N \N \N \N \N \N \N 132 0 132 0 45.6476019999999991 3122.15991 11.4896551549788004 181.014645860667997 3 false 0.00714593849999999985 \N \N -0.0212365800000000014 18 10 3.19449139999999998 0 19 false 158 382.212296972989975 5.34557225954572957 71.5007019 19.2326049999999995 18 442.905698127460028 20.1871992431203999 21.9399279999999983 18.7356100000000012 15 930.036569515028987 9.6712483697408107 96.1650999999999954 17.3406699999999994 3.59209349999999983 0 1.39493939999999994 -0.496995929999999975 1.8919353000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.190061948052005 -63.1777823349468974 22.5381095553762982 -12.9224430626168001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378150803128320 2481378150803128320 378439921 2015.5 25.6537710090650002 0.712080354281134031 -3.23975318949270008 0.489019001056468006 0.989317727087322019 0.909890840669231982 1.08729279999999995 -2.18945795824315992 1.24982768821109991 -1.22987275317457989 0.852531004873535947 -0.179389660000000006 0.545462899999999973 0.0451582629999999971 0.0710294249999999933 -0.44195905000000002 -0.00405477600000000039 0.058304652999999998 0.0251970590000000008 0.127470699999999992 0.163205939999999994 155 0 154 1 -0.556671440000000017 138.957993 0 0 31 false 0.0530718229999999971 1.59412391849975998 0.161637340488721998 -0.00873587399999999938 18 10 1.10921650000000005 0 18 false 152 172.531535813673003 1.54038636364481007 112.004997 20.0961950000000016 11 109.842480633706998 10.3648977211958009 10.5975459999999995 20.2494620000000012 14 122.063899094830006 7.82670208714850002 15.5958279999999991 19.5454520000000009 1.34413910000000003 0 0.704010000000000025 0.153266900000000011 0.550743100000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.252802620280988 -63.1603333679148022 22.5709471472735999 -12.9315021229840994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378322601832448 2481378322601832448 1554046588 2015.5 25.6460479624317017 0.529337710569425024 -3.22558155652812983 0.370185288658145983 0.719568554708919006 0.67041809717336498 1.07331310000000002 11.3256706122369 0.936815346817868044 -6.37822005670894043 0.613753142814818964 -0.23016433 0.535571800000000042 0.0942747740000000056 0.0536840999999999985 -0.491062580000000026 -0.019962324 0.119227739999999999 0.0315182769999999973 0.116381780000000004 0.121645435999999996 165 0 163 2 3.3366617999999999 224.203003 1.17693015909080989 1.39603932721051005 31 false 0.0932216700000000065 1.37558598513176999 0.115179028375827996 -0.0328790499999999999 19 10 0.829582000000000042 0 19 false 163 262.592051211635976 1.39021946793877005 188.884995 19.6401620000000001 13 66.6887916416573034 10.9380653728171993 6.09694599999999998 20.7912560000000006 14 349.544288249759006 9.17145134768528081 38.1122099999999975 18.4031640000000003 1.585094 0 2.38809199999999988 1.15109440000000007 1.23699760000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.223745027490992 -63.1509462812266023 22.5689400377813989 -12.9154876303074992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378052018997120 2481378052018997120 1241597063 2015.5 25.669427188977501 0.270459904947288998 -3.24444172826698995 0.197380891858296992 0.524353678324553041 0.334753304406522012 1.5663883999999999 6.64583951187046029 0.493852384723567017 -9.07671414877857075 0.336962887644678022 -0.138833220000000007 0.495410300000000026 0.0616606180000000004 0.0839401560000000019 -0.391734179999999987 -0.0465419799999999967 0.0887101899999999943 0.0799375100000000033 0.197469559999999988 0.111204824999999993 158 0 157 1 2.54352659999999986 199.998993 0.583268058037666015 1.11454153801174005 31 false 0.322104500000000016 1.4208373004780801 0.0640775628268060032 -0.0280061570000000003 19 10 0.438152460000000021 0 19 false 156 632.548378691975017 1.94067155504559996 325.942993 18.6856299999999997 14 228.019960455280994 11.7262689317532995 19.4452269999999992 19.4564549999999983 16 676.419593168311053 11.3572949774916001 59.5581600000000009 17.6863799999999998 1.42983459999999996 0 1.77007479999999995 0.770824430000000005 0.999250399999999983 \N \N 0 \N \N \N NOT_AVAILABLE 152.288480576849992 -63.1577238818535989 22.5840908915997005 -12.9416122543391001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378086378735104 2481378086378735104 1428592996 2015.5 25.6828473112998985 0.0845603994063084952 -3.23725903872322007 0.0693391191752164016 0.781379252842945959 0.101547290013047006 7.69473270000000031 15.8212836545051996 0.175236969420305005 5.05684527448863985 0.141067025327100998 0.0793242200000000008 0.359268900000000002 -0.0662329599999999935 0.0558943969999999984 -0.281374750000000007 -0.00942634699999999985 -0.108825710000000006 0.0490773129999999974 0.154517920000000003 0.280459799999999981 167 0 165 2 -1.23027229999999999 138.380005 0 0 31 true 2.58093210000000006 1.50435593180491001 0.0247647408959753984 0.0646805399999999947 19 10 0.16649739999999999 0 19 false 163 2683.76211729882016 2.68328546687033986 1000.17999 17.1165069999999986 16 1164.14146776902999 7.00025572948842001 166.299849999999992 17.6863750000000017 14 2241.77557229676995 6.74611100369746985 332.306370000000015 16.3854390000000016 1.26908299999999996 0 1.30093569999999992 0.569868099999999989 0.731067660000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.308210764597987 -63.1454066960020981 22.5995857788981986 -12.9398617424650997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378288242082560 2481378288242082560 121427151 2015.5 25.6755805213283992 0.238966243178636989 -3.23092273829549015 0.185934414390156011 0.251461378385816003 0.289562569733327002 0.868418099999999971 -0.775547285291810051 0.506923152005212985 -4.20016291049129986 0.366823043681968997 -0.0708284750000000018 0.329751760000000005 0.0679214999999999958 -0.0144556279999999999 -0.361475199999999997 -0.0744504899999999942 0.0110116399999999996 -0.000593294200000000029 0.164238350000000005 0.10845784 165 0 164 1 0.793553500000000023 172.869003 0.041008792197356099 0.00481201887927493015 31 false 0.330816500000000013 1.63334473151760995 0.0594945634180540986 0.0211241500000000013 19 10 0.44898070000000001 0 19 false 162 562.43457736295295 1.73768793089448992 323.667999 18.8131869999999992 14 295.835310307344002 10.4152493440245006 28.4040549999999996 19.173763000000001 15 408.584772826869028 10.7768652321546003 37.9131399999999985 18.2337150000000001 1.25244810000000006 0 0.9400482 0.360576630000000009 0.579471599999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.287634824206009 -63.1428793576279972 22.5950548520388992 -12.9313009993418007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378082083651712 2481378082083651712 301356233 2015.5 25.6883280255417006 0.252788982175389976 -3.23819896488600012 0.195074510704373011 0.696628550989777051 0.310211617761708025 2.24565599999999987 14.1702518344969999 0.503623691157388031 -5.26374327866315994 0.343765981911935026 0.0316883660000000025 0.371843699999999999 -0.00887392899999999915 0.121540090000000003 -0.331448999999999994 0.068562739999999997 0.0737419599999999953 0.0278707299999999998 0.159557179999999993 0.216089639999999999 176 0 175 1 1.70502090000000006 202.666 0.207190170709889987 0.105655574402683 31 false 0.287852380000000019 1.61132663177933999 0.0654737215243192949 0.0470074340000000007 20 10 0.451222400000000023 0 20 false 172 515.333017088065048 1.85595156428829999 277.665009 18.9081459999999986 17 300.932298373916979 8.58826692243193079 35.0399320000000003 19.1552159999999994 16 362.811444991679025 7.1012496788131596 51.0912099999999967 18.362717 1.28798999999999997 0 0.792499540000000002 0.247070309999999987 0.545429199999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.320013926369001 -63.1438587660329986 22.6044520432451996 -12.9427484423455006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378082083652096 2481378082083652096 894590788 2015.5 25.6901594041275985 0.686539764224276983 -3.23544898142462989 0.519622055284792994 -0.411040198162072989 0.840206728563789973 -0.489213169999999975 13.6933301161369005 1.31240479618271011 -20.3756078424890994 0.918616378024106006 -0.0104907980000000008 0.399592549999999991 -0.0120808310000000002 0.146837159999999994 -0.35407095999999999 0.084446170000000001 0.00036094905000000002 0.0328230860000000013 0.176294459999999986 0.234944089999999994 158 0 158 0 0.601400550000000034 163.067001 0 0 31 false 0.0444034099999999973 1.48684661682302011 0.176370587629979009 0.0388862970000000002 18 10 1.17889620000000006 0 18 false 158 153.09723115933599 1.38463410380134011 110.569 20.2259479999999989 12 85.1726237958546051 12.3078779703135996 6.9201712999999998 20.5256390000000017 12 143.036665354738005 12.9629831599584993 11.0342400000000005 19.3733019999999989 1.49061669999999991 0 1.15233610000000009 0.299690249999999991 0.852645899999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.320990681951997 -63.140586008896797 22.6072344631878011 -12.9408637342764994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190718429968256 2481190718429968256 988228638 2015.5 25.7174976414960987 1.79260244048013995 -3.24432155027729019 2.77983163869120986 \N \N \N \N \N \N \N 0.42161417000000001 \N \N \N \N \N \N \N \N \N 74 0 73 1 2.0011559000000001 93.2833023 3.90280337133846 1.55925285274113001 3 false 0.0134654230000000007 \N \N 0.368573929999999994 9 6 11.3923889999999997 0 9 false 74 88.165619325916893 1.55711788635935 56.6209984 20.8251169999999988 7 81.5070469499266039 15.3068024835194993 5.32489059999999981 20.5733999999999995 8 63.6695864736129025 11.0999091260545999 5.73604599999999998 20.252089999999999 1.64663540000000008 0 0.321310040000000019 -0.251716600000000013 0.573026660000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.383898420380007 -63.1366111342392031 22.6299302975308017 -12.9591525986659999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190757084978560 2481190757084978560 1248595774 2015.5 25.7309206157076993 0.12595442569583401 -3.23605920630655985 0.115837390220547995 -0.174416650855099997 0.170118710600430989 -1.02526439999999996 -0.292092496069620011 0.259617288837036997 -2.57947132099904008 0.213188612733322014 0.205102649999999997 0.332205740000000027 -0.0219097879999999995 0.0790197799999999978 -0.346630449999999979 0.00318093200000000003 -0.0842213599999999951 0.0581137349999999997 0.189097430000000011 0.384337929999999994 139 0 138 1 0.765591860000000013 145.173004 0.164199063436027998 0.29650852862803101 31 false 1.35836179999999995 1.64841041026276991 0.0348222404844776984 0.20857487999999999 16 9 0.251460399999999973 0 16 false 135 1635.16884510272007 2.58541809497262998 632.458008 17.6544589999999992 14 823.200942579042021 14.8023595573510995 55.6128199999999993 18.0626239999999996 13 1222.38581701774001 14.5242030508381994 84.161990000000003 17.0439000000000007 1.25099420000000006 0 1.01872439999999997 0.408164980000000011 0.610559460000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.402533307553 -63.123309611993399 22.6458361139168005 -12.9563971229566999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190855868833920 2481190855868833920 1457563471 2015.5 25.7499501066522996 0.114928890517663002 -3.22946113279401015 0.0952911277241585974 2.06852553233518988 0.141047230084219988 14.6654820000000008 7.0488065697672404 0.236216290275044011 7.26988407004148041 0.171202720682728987 0.180783809999999989 0.354399530000000018 -0.0461242160000000026 0.151406380000000007 -0.236873499999999987 0.15804797000000001 0.178848730000000011 -0.0114404160000000001 0.0624796670000000026 0.292972180000000026 156 0 154 2 2.09514330000000015 187.395004 0.342331064974544019 1.80123376794976009 31 false 1.57876159999999999 1.3676612524621099 0.0280510473096672007 0.124877619999999995 18 10 0.219222589999999995 0 18 false 153 2134.69610668833002 3.28223472288174989 650.379028 17.3650260000000003 14 557.183197368094966 9.28379517359872963 60.0167470000000023 18.4863929999999996 16 2393.96928281116016 28.2116665605120005 84.8574200000000047 16.3141229999999986 1.38246969999999991 0 2.17226980000000003 1.12136649999999993 1.0509033000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.433887295840009 -63.1090443991356977 22.6664554475129982 -12.9572465745686003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190619646025344 2481190619646025344 1500744203 2015.5 25.7748459557900986 0.136502506914309013 -3.24500040169384008 0.113211169039882001 1.68574424058651995 0.17146945680991299 9.8311630000000001 16.3982889695260994 0.286646262550856012 -10.0083803221976009 0.21285684316314199 0.178785799999999995 0.323851349999999982 0.0770331199999999966 0.129729079999999997 -0.285059600000000024 0.156918780000000008 0.0957038000000000055 -0.111474550000000006 0.0407240300000000013 0.340702349999999987 141 0 140 1 -0.531928700000000032 125.809998 0 0 31 false 1.18573949999999995 1.45022047678782995 0.0348846784078203978 0.11702688 16 10 0.269225449999999977 0 16 false 139 1400.4678563054099 2.47994569720377012 564.71698 17.8226830000000014 15 441.831702828170023 13.8542167348479008 31.8914970000000011 18.7382470000000012 14 1503.70108339105991 20.8634050787882011 72.0736160000000012 16.8190160000000013 1.38920200000000005 0 1.91923139999999992 0.915563600000000033 1.00366780000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.498353278172004 -63.1120809397607019 22.6843141270289017 -12.9808352738238995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481190890228572416 2481190890228572416 244374787 2015.5 25.7550451610920987 0.072730795303366999 -3.22544394131154988 0.0611843544707146025 1.92458295940408997 0.0896314966432815996 21.4721720000000005 -2.48614420508990008 0.147427048603182009 -14.1173972669341996 0.117532924528848004 0.185590670000000013 0.39291847000000002 -0.025074372000000001 0.114153580000000004 -0.217521300000000001 0.125356419999999996 0.0976394800000000007 -0.0344006940000000025 0.0443708999999999978 0.330689369999999982 156 0 156 0 0.780351699999999981 164.264999 0.0983016014469623028 0.311989224490263006 31 false 4.0075396999999997 1.42587257112689003 0.0185272853046785993 0.1296186 18 10 0.142979650000000014 0 18 false 155 4035.28053458902014 4.15250572989219968 971.77002 16.6736809999999984 18 1343.22720674177003 21.1275584245254002 63.5770199999999974 17.531015 17 4115.28804528880028 24.8270075055942989 165.758510000000001 15.7259200000000003 1.35269780000000006 0 1.80509570000000008 0.857334139999999967 0.947761540000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.440092655582987 -63.1032017734484967 22.6728251940405983 -12.9553808143968006 100001 3937.95996 3857.93994 4190 0.0111999996 0 0.298799992 0.00400000019 0 0.0839999989 200111 0.587383749999999982 0.51884359999999996 0.612002970000000035 0.0747521599999999981 0.0675409500000000024 0.0819633699999999937 +1635721458409799680 Gaia DR2 2481190546631187968 2481190546631187968 1211792914 2015.5 25.7854584967732983 1.28311041853819008 -3.24335629781203005 1.07499919791281995 -0.00274531568106528004 1.57948671834503007 -0.00173810619999999996 0.594291647864962025 2.6689421989805 -1.32704170963286994 1.87633257666231001 0.164744449999999987 0.318007439999999975 -0.0367594919999999978 0.166948469999999988 -0.252176899999999982 0.179291830000000013 0.223223749999999999 -0.0228120440000000001 0.058590330000000003 0.261247459999999987 152 0 151 1 16.547619000000001 648.794983 7.66814241325325963 21.7268635946246 31 false 0.0119862574999999999 1.32310062128887007 0.282168267051280008 0.126218049999999998 18 10 2.4194545999999999 0 18 false 151 178.530085809957001 1.95344333291164007 91.3925018 20.0590879999999991 12 176.314427242248001 7.0253816259300903 25.0967750000000009 19.7356680000000004 11 430.364428445967008 12.8852026740309 33.3998950000000008 18.1773300000000013 3.3981884 0 1.5583381999999999 -0.32341956999999999 1.88175770000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.517790749189004 -63.1059426466558975 22.6950465381195983 -12.9832009896196006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348021607651456 2481348021607651456 626394664 2015.5 25.2606912236566998 0.932537634709635022 -3.4259291242863501 0.680809319622947995 \N \N \N \N \N \N \N -0.00334128460000000013 \N \N \N \N \N \N \N \N \N 129 0 128 1 60.6709019999999981 5629.47998 5.77185156692495038 327.662580813438012 3 false 0.0289487470000000004 \N \N -0.0302793509999999995 16 10 1.87853979999999998 0 16 false 137 1397.37278351483997 13.7346699768616993 101.740997 17.8250850000000014 13 1260.32866029738011 14.4681635706647995 87.1104799999999955 17.6001779999999997 14 2082.13496128836005 13.4475113219491007 154.834229999999991 16.4656489999999991 2.39196279999999994 0 1.13452909999999996 -0.22490692000000001 1.35943600000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.643885272575005 -63.4978973612405966 22.1262376115234005 -12.9599615396240004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192024101214336 2481192024101214336 1000832619 2015.5 25.7929759134163987 1.05399930589728008 -3.23732717176233997 1.1371595453951 1.32573412833269 1.36488763409617997 0.971313800000000005 31.2688253439463004 2.59850847891086989 -4.81718381521765959 3.07478958111917988 0.155553849999999994 0.27829870000000001 -0.0519297869999999981 -0.0628095800000000037 -0.401692780000000027 -0.261598889999999973 -0.504519460000000031 0.0437851699999999983 0.181571299999999991 0.588461499999999971 118 0 117 1 0.305878219999999978 115.957001 0 9.49502669955479904e-16 31 false 0.0203324390000000008 1.31586880194662004 0.332116007359777976 0.172322909999999996 14 9 3.20943639999999997 0 14 false 114 98.182109646324804 1.23199702087752994 79.6934967 20.708283999999999 7 39.6274479895128025 18.4588758198345992 2.14679650000000022 21.3563979999999987 11 118.956920709038002 7.78510466378020993 15.2800670000000007 19.5734460000000006 1.61520639999999993 0 1.78295139999999996 0.648113249999999974 1.13483810000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.526820840274013 -63.0972253276825015 22.7044838016343 -12.9803525153352002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191341200530688 2481191341200530688 1129089473 2015.5 25.8367229603555018 0.0473134927716735987 -3.24388414374978984 0.0401721459736242986 1.39093469885014009 0.057801151600940702 24.0641350000000003 29.3320964999718008 0.102982256514364004 -2.48065904212066002 0.0818405654874640037 0.203424700000000014 0.299875530000000001 0.0381155239999999979 0.0788755639999999952 -0.224764629999999993 0.0895840299999999951 -0.00140538199999999994 -0.0963026099999999968 0.0423633640000000006 0.345100550000000006 151 0 150 1 -0.925141800000000014 129.190994 0 0 31 false 10.2772260000000006 1.50909041793381005 0.0129643814317443994 0.0899574759999999946 17 10 0.104185730000000004 0 17 false 150 8993.89158522213984 7.19254691371750976 1250.44995 15.8034960000000009 15 4029.67362209739986 12.1766435752966995 330.934700000000021 16.3382129999999997 15 7110.21500530636968 14.8193261025566994 479.79340000000002 15.1322139999999994 1.23860609999999993 0 1.20599940000000005 0.534716599999999986 0.671282770000000029 \N \N 0 \N \N \N NOT_AVAILABLE 152.619829676721992 -63.0838549188862032 22.7436988980798986 -13.0025014706076991 100001 4928.5 4861 5169.91992 0.104999997 0.0160000008 0.316100001 0.0469999984 0.00789999962 0.154499993 200111 0.622570199999999963 0.565782369999999979 0.639980299999999946 0.206029999999999991 0.187577930000000004 0.224482060000000011 +1635721458409799680 Gaia DR2 2481188519406953984 2481188519406953984 121953828 2015.5 25.8884077236786005 0.142859650004237004 -3.24522970834898983 0.119631948470829003 2.12846056056649013 0.178642995618803008 11.9146040000000006 21.8260355702778988 0.317724767136544017 -14.6391677823243 0.210053583155219992 0.188241450000000005 0.208943340000000005 0.0828814999999999968 0.163124770000000002 -0.324217900000000003 0.21881123999999999 0.232237849999999996 -0.14407621000000001 0.0127886590000000008 0.287798940000000003 152 0 149 3 1.2795901999999999 166.091003 0.439907121479817975 1.99242433148317 31 false 1.01949550000000011 1.33699053713106997 0.0350049186871689011 0.0974049300000000007 17 10 0.292049969999999992 0 17 false 147 1500.01340133444 2.53659741691993013 591.348999 17.7481270000000002 16 325.564593925059 11.2711722874076994 28.8847139999999989 19.0697960000000002 15 1870.13463582263989 20.0304067080620989 93.3647840000000002 16.5822369999999992 1.46378640000000004 0 2.48755840000000017 1.32166859999999997 1.16588969999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.723345816825002 -63.0622436011857985 22.7924501138869999 -13.0227099753084996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481188519407081728 2481188519407081728 593593532 2015.5 25.8891921950300983 0.128312588670978001 -3.24423939327716981 0.105484812645568998 2.15948338533222994 0.161578652985991 13.3649050000000003 21.7872519439073997 0.276819843626607998 -13.9917511557409995 0.186011739535253989 0.177436800000000006 0.253268839999999995 0.0784931900000000043 0.154589160000000003 -0.308137099999999997 0.193735839999999993 0.180514409999999986 -0.122151575999999998 0.0443363150000000011 0.288397579999999987 152 0 151 1 0.728610300000000044 158.104004 0.149444144850086003 0.237729966373677992 31 false 1.27526990000000007 1.24427876476377008 0.0321601846724529974 0.0966854399999999975 17 10 0.25480425000000001 0 17 false 150 1535.72754318524994 3.08747729866892007 497.404999 17.7225800000000007 17 325.238762137566027 12.7054197300191003 25.5984270000000009 19.0708829999999985 16 1977.62948543112998 8.41402118827597079 235.039749999999998 16.5215570000000014 1.49952909999999995 0 2.5493260000000002 1.34830279999999991 1.20102310000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.723927668150992 -63.0610088282397001 22.7935711590999013 -13.022076559377 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191165106810752 2481191165106810752 109582865 2015.5 25.8590151789301004 0.289697224624192007 -3.23127728707448991 0.24118701224160799 0.653932869637170011 0.353716511525131005 1.84874840000000007 12.0321197927467001 0.623546954298619949 -9.56094919514793062 0.396042587355922016 0.233104850000000002 0.205216229999999999 0.0995910400000000057 0.211309019999999986 -0.303686699999999976 0.248533470000000006 0.249448940000000008 -0.104888620000000002 0.0659548340000000038 0.296821920000000017 140 0 138 2 0.909151139999999969 147.669998 0 0 31 false 0.270313099999999973 1.73143304427124001 0.0697658124471972063 0.115561269999999994 16 10 0.569394049999999985 0 17 false 138 490.768577645720995 1.72829694940301004 283.960999 18.9611739999999998 15 280.744902743783996 8.60811800165125085 32.6139700000000019 19.2306080000000001 16 369.399807296202994 15.7551773075051997 23.4462490000000017 18.3431780000000018 1.32474800000000004 0 0.887430199999999947 0.269433980000000017 0.617996199999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.65162643084301 -63.0627136185469013 22.7696971366675989 -12.9989533538320003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191474344454144 2481191474344454144 333763587 2015.5 25.8782077620183983 0.599597582157819997 -3.24186242932786017 0.491353944267948983 2.2929641861783101 0.766152284853603982 2.99283080000000012 -1.61873438489992005 1.30760288672583003 -7.38111500668003018 0.806619136492137012 0.152045559999999996 0.199936029999999987 0.0882204500000000058 0.180018189999999995 -0.388144900000000015 0.24228732 0.254652949999999989 -0.142465869999999994 0.0238002860000000004 0.270420160000000021 149 0 149 0 2.52897719999999993 190.518997 2.03341260248215994 2.69410103544037982 31 false 0.0592844449999999981 1.25021327273718996 0.140668073045042002 0.0957672150000000028 17 10 1.18421850000000006 0 17 false 148 219.007909712252001 1.39246321684355001 157.281006 19.8372150000000005 12 66.959091057458096 10.6674053223845 6.27698 20.7868649999999988 14 320.158317015953003 10.9213462919374997 29.3149130000000007 18.4985080000000011 1.7675955000000001 0 2.28835679999999986 0.949649799999999988 1.33870700000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.699898291212008 -63.0637329858307965 22.7839979532508004 -13.0158374742147007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191543063934336 2481191543063934336 489046900 2015.5 25.8728888309947003 1.7209795255795699 -3.22269454583272008 1.41111328126218005 \N \N \N \N \N \N \N -0.0114225669999999998 \N \N \N \N \N \N \N \N \N 80 0 79 1 3.28929230000000006 120.736 3.19608938655856001 3.35058316017844016 3 false 0.0165828299999999998 \N \N 0.00605529799999999976 9 7 4.56533099999999958 0 9 false 79 95.5734475817471036 2.29087516058917995 41.7192001 20.7375219999999985 7 93.0756647913523949 18.5163261953410014 5.02668099999999995 20.4292979999999993 8 163.313585204610007 10.1293994104954006 16.1227319999999992 19.2293640000000003 2.68264099999999983 0 1.19993400000000006 -0.308223719999999979 1.50815769999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.670673900503999 -63.0488918817304977 22.7861548007143 -12.9960588881037999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191611783410944 2481191611783410944 571373000 2015.5 25.9067109488508009 2.19973787823315003 -3.22369849521539997 2.08327994082001 \N \N \N \N \N \N \N 0.402359399999999978 \N \N \N \N \N \N \N \N \N 126 0 125 1 29.5764390000000006 1405.34998 13.1525074136970996 196.000033756149008 3 false 0.00478753770000000037 \N \N 0.183080140000000002 15 10 4.38630299999999984 0 15 false 130 168.447284476458009 2.64536202128750997 63.6764984 20.1222059999999985 13 147.444359545478989 8.44606624477373913 17.4571630000000013 19.9298169999999999 13 386.343656742606015 8.56478005600970071 45.1084140000000033 18.2944850000000017 3.16887279999999993 0 1.63533210000000007 -0.192388530000000002 1.82772059999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.73844832047601 -63.0348450458669021 22.8180115623193984 -13.0093949192926992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379044155787776 2481379044155787776 114667432 2015.5 25.618943392781599 4.13685625890000974 -3.22508392273361011 5.83747491445160982 \N \N \N \N \N \N \N 0.536202199999999962 \N \N \N \N \N \N \N \N \N 54 0 54 0 34.8622060000000005 1830.98999 15.7077989321570008 136.297129892224007 3 false 0.00379568660000000014 \N \N 0.356776450000000023 10 7 10.3910300000000007 0 11 true 83 317.700481723538019 5.32970715959103991 59.6094017 19.4333209999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.169323797809994 -63.1622906324994986 22.5433119437604006 -12.9050680749299005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379048451408896 2481379048451408896 94774428 2015.5 25.6272833750099984 0.0543017128144145031 -3.22201019077868001 0.0416450428371449993 1.13678125824994991 0.0652728536670097031 17.4158340000000003 16.6911218246259985 0.103314772091964005 1.59556033857547996 0.086955116576393196 -0.0709688299999999966 0.487910999999999984 -0.00978308900000000002 0.0147690070000000007 -0.336878149999999987 -0.135666559999999992 -0.168295770000000011 0.106258064999999999 0.212526080000000006 0.200377780000000005 146 0 144 2 -0.662470699999999968 127.613998 0 0 31 true 9.06058600000000069 1.53444275994761004 0.0139710010536849994 0.00539251839999999993 17 10 0.100689769999999998 0 17 false 144 8019.42456373734967 7.21892018104408972 1110.89001 15.9280080000000002 15 3831.83618830524983 23.018763081760401 166.465769999999992 16.3928699999999985 13 6028.83641973860995 11.7629670824018007 512.526860000000056 15.3113364999999995 1.22959850000000004 0 1.08153340000000009 0.46486187000000001 0.616671560000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.182960622135994 -63.1558975299386987 22.552415494305599 -12.9052738477725999 100001 5019.75977 4982.20996 5152.3999 0.00800000038 0 0.0873999968 0.00549999997 0.000899999985 0.0439999998 200111 0.686356659999999952 0.651472399999999952 0.696741460000000035 0.269479750000000018 0.23658462999999999 0.302374870000000018 +1635721458409799680 Gaia DR2 2481379147237355136 2481379147237355136 1453435538 2015.5 25.6317885843251005 2.02796011620618 -3.20318410459614 2.0928907546022999 \N \N \N \N \N \N \N 0.254480329999999977 \N \N \N \N \N \N \N \N \N 74 0 74 0 3.59848329999999983 119.528999 7.16139113821864992 3.8551398455594299 3 false 0.00728553000000000013 \N \N 0.130256239999999995 9 8 5.48742399999999986 0 9 false 76 88.9826087654105038 2.17059441171188006 40.9945984 20.8151040000000016 7 28.2819446632307994 7.15781276921488008 3.95119929999999986 21.7226140000000001 7 82.3775556604139041 9.76384695500500932 8.43699699999999986 19.9723970000000008 1.24360819999999994 0 1.75021739999999992 0.907510759999999972 0.842706700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.173774085747993 -63.1369915794278995 22.5638121552214983 -12.8894232425833 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378326896903040 2481378326896903040 1411644250 2015.5 25.6570761451878013 0.0483048128960295031 -3.22300333394843008 0.0391472604514630021 1.02050874868604002 0.0584187689298594978 17.4688510000000008 16.8216301657199985 0.101292942135215003 1.46175184760835997 0.0816553207748214049 0.0419326199999999968 0.353641270000000008 -0.0615045469999999997 0.0250212159999999989 -0.296732930000000006 -0.0405462460000000011 -0.113628229999999997 0.0407526870000000027 0.150402619999999987 0.243709700000000001 181 0 180 1 -0.993419649999999987 156.445007 0 0 31 true 7.77404259999999958 1.53372492764196999 0.0128376001020558995 0.0335038969999999978 21 10 0.0997385600000000039 0 21 false 179 7070.65378719986984 4.81352394372864012 1468.91003 16.0647160000000007 19 3336.0186951434398 18.5099360954265002 180.228530000000006 16.5433179999999993 18 5349.32743151386967 12.2804902151311008 435.595579999999984 15.4411719999999999 1.2283653000000001 0 1.10214609999999991 0.478601459999999979 0.623544699999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.243189329904993 -63.1438228422982988 22.5804174979042003 -12.9171408555612999 100001 4979.41992 4924.93994 5026.66992 0.117700003 0.0140000004 0.252299994 0.0577000007 0.00789999962 0.128999993 200111 0.73277060000000005 0.719060499999999991 0.749073699999999953 0.297403340000000016 0.260759830000000026 0.334046840000000012 +1635721458409799680 Gaia DR2 2481378356961567616 2481378356961567616 9045487 2015.5 25.6623123400822983 19.4572129020065994 -3.21683215839532011 4.07604306857584042 \N \N \N \N \N \N \N -0.218658490000000011 \N \N \N \N \N \N \N \N \N 64 0 64 0 0.318142150000000012 61.8334007 1.88779718531558993 0.26083780295498199 3 false 0.0123118229999999995 \N \N -0.00677418700000000009 9 5 106.561965999999998 0 9 false 65 70.3525881767399 1.81447878439313004 38.7728996 21.0701660000000004 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.247639396717005 -63.1359888055806024 22.5877340540015012 -12.9133255028509009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379765710407040 2481379765710407040 729782230 2015.5 25.6430181714008008 4.57903265904386991 -3.18975524494072005 8.5374282092323206 \N \N \N \N \N \N \N -0.875682650000000007 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.280394699999999997 44.9626999 0 0 3 false 0.0165619549999999997 \N \N -0.1634052 6 5 86.4450760000000002 0 6 false 50 80.3696456584237069 1.68879279230401003 47.5900002 20.9256360000000008 6 58.1009762640856025 16.3601636157579016 3.55136900000000022 20.9409300000000016 5 58.3726909323718033 9.16463589900273057 6.36934100000000036 20.3463950000000011 1.44922459999999997 0 0.594533899999999949 0.0152931209999999998 0.5792408 \N \N 0 \N \N \N NOT_AVAILABLE 152.183165406937007 -63.1200202047510999 22.5795751406665985 -12.8810608116171004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379765710309120 2481379765710309120 549588009 2015.5 25.6477088413529017 0.28273965085290198 -3.18472326558695995 0.211563091787032004 1.45070458213672993 0.34349110031298602 4.22341250000000024 9.30997576148678085 0.588072597126731988 -28.2968508366074012 0.385208562107538011 0.00307907959999999996 0.325901659999999982 -0.00708624200000000041 0.0818033600000000055 -0.337001900000000021 0.0490883140000000009 0.0678870699999999938 -0.00540196659999999957 0.136322130000000014 0.172900100000000001 180 0 178 2 2.70767500000000005 227.610001 0.972778311580765997 2.83440602828166988 31 false 0.227222619999999986 1.46345718447753992 0.0697050808647945025 0.0220928300000000008 21 10 0.521981699999999993 0 21 false 175 516.385455851926054 1.70094190358514008 303.588013 18.9059309999999989 18 117.903684995590993 8.65657212351332994 13.6201349999999994 20.1725700000000003 19 682.952508226872055 9.06272919574490032 75.3583699999999936 17.6759430000000002 1.55088840000000006 0 2.49662600000000001 1.26663780000000004 1.22998809999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.187641307978993 -63.1134506486708986 22.5859413508113001 -12.8781044211182003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382411410167936 2481382411410167936 29362992 2015.5 25.6164423066920008 0.37942521005770502 -3.17477253243957014 0.262255291372420984 1.11888646475805009 0.427267072238537993 2.61870499999999984 12.9819521206788995 0.79889182646051804 -14.0680663014244001 0.461582705472193988 -0.0391470270000000009 0.296726880000000026 -0.158908219999999989 0.102701223999999994 -0.256421029999999994 0.0414128529999999995 0.117051370000000002 0.096434900000000004 0.175790919999999989 0.065126139999999999 147 0 146 1 -0.724527099999999979 128.552002 0 0 31 false 0.166164010000000001 1.40537224430373997 0.0906754340785532048 -0.0183845400000000013 17 10 0.705519140000000045 0 17 false 148 352.733898822665992 1.67386002336921003 210.731003 19.3197480000000006 13 111.043150890145 10.6436981434846007 10.43276 20.2376600000000018 12 382.795322270585984 10.4793015018519995 36.5287059999999997 18.3045019999999994 1.40003119999999992 0 1.93315700000000001 0.917911499999999991 1.01524539999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.115906075824 -63.1180753337328966 22.5599191550921994 -12.8573671401957998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382892446631680 2481382892446631680 256907492 2015.5 25.6164480006735999 0.778663868697664019 -3.13927064041134019 0.766880776955471966 1.40525925843846999 0.965529638024615 1.45542839999999996 -2.21023363448161003 1.80400822525432991 -6.67185014497206019 1.9442389806609901 0.0812073799999999957 0.281956140000000022 -0.0239598700000000012 -0.0306478349999999983 -0.390863200000000022 -0.270735090000000012 -0.577560100000000021 0.0691510439999999948 0.252044349999999973 0.500135239999999981 141 0 139 2 1.65985369999999999 162.292007 1.45308800986380993 0.707446994837772958 31 false 0.0345497280000000018 1.41130511588918006 0.21753191459742599 0.0646950599999999987 16 9 2.06292769999999992 0 16 false 139 139.388533523847997 1.27805328045831001 109.063004 20.3277989999999988 10 36.1727420235023018 4.2193946878204196 8.57296900000000051 21.4554350000000014 11 190.848540810141998 8.16263317173176084 23.3807560000000016 19.0601979999999998 1.62869400000000009 0 2.39523699999999984 1.12763600000000008 1.26760099999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.081828189253997 -63.0860956016882 22.5733199857740985 -12.8243569583988002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382789367292928 2481382789367292928 964527730 2015.5 25.6203023015729983 1.04538399626362999 -3.1676743101436502 0.690594848181230958 0.584554297777563958 1.16146168104465008 0.503291959999999983 25.5762872468325995 2.03103436256244985 -2.5728671203991702 1.37127548839948998 -0.242547380000000007 0.402505200000000007 0.126199320000000004 -0.0128383400000000002 -0.412543400000000005 -0.121643050000000003 -0.111955369999999998 0.0212424299999999996 0.194754659999999996 0.0556789400000000032 122 0 120 2 0.836499749999999986 127.443001 0 0 31 false 0.0310037100000000003 2.06712800429624011 0.230258071893422012 -0.0612418100000000007 14 10 1.79247390000000006 0 14 false 118 121.793127249294002 1.16325227385328001 104.700996 20.4743080000000006 12 60.115467837849998 6.04229014117200958 9.94912000000000063 20.9039229999999989 13 92.4838456836018992 11.5030384163154 8.03994900000000001 19.8467559999999992 1.25293860000000001 0 1.05716699999999997 0.429615020000000014 0.627552030000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.116759211800002 -63.1100075037932982 22.5662735948586999 -12.8521846235375996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382789367296256 2481382789367296256 488749575 2015.5 25.6189101712372995 0.15889392323273599 -3.16052270062448981 0.114907896388038999 0.077937811683717606 0.181271106182338992 0.429951640000000024 12.5094518061022004 0.354098656212684992 -4.17153101162896967 0.222382935674847987 -0.0309305199999999995 0.255010999999999988 0.14086361 -0.0222790000000000002 -0.22383457000000001 -0.0687636900000000023 0.0948632300000000067 -0.0843680599999999947 0.192250489999999996 0.00337002000000000005 159 0 158 1 1.44049190000000005 178.865997 0.0702589325156413036 0.0344743047689074975 31 false 0.818019199999999946 1.62325623008380004 0.0376950934640482016 -0.00666582070000000006 18 10 0.314286999999999983 0 18 false 154 1097.98562355388003 1.87940825824641999 584.218994 18.0868740000000017 18 573.025843409360959 15.3178267020714998 37.409084 18.4559539999999984 15 761.365092002723031 8.20422055961319963 92.801636000000002 17.557938 1.21530819999999995 0 0.898016000000000036 0.369079600000000008 0.528936399999999973 \N \N 0 \N \N \N NOT_AVAILABLE 152.10712046639199 -63.1041706003496969 22.5676463758721013 -12.8450231777932995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379804365652096 2481379804365652096 1544187459 2015.5 25.6481974527556993 0.121742963548864006 -3.16725162464843013 0.0907187175054170042 0.927453060512938965 0.144300719293061014 6.42722399999999983 17.8639975977421983 0.263367471063460978 -4.09489383197646983 0.175550236484682987 0.0294791419999999998 0.267679239999999985 0.00991700199999999941 0.0561379700000000023 -0.299189450000000023 0.0299436489999999993 -0.0149064699999999998 -0.0337845300000000001 0.143111180000000004 0.176977040000000002 176 0 175 1 2.93290139999999999 229.203003 0.325794322491749 1.32625011392207992 31 false 1.22961870000000006 1.49977613527053011 0.0308166872317486989 0.0019838350999999998 20 10 0.236761360000000004 0 20 false 173 1669.54011978367998 2.51096115435623002 664.901001 17.6318739999999998 17 682.887973330010027 10.0985866186923996 67.6221299999999985 18.2655139999999996 18 1424.03092168658009 8.55533735331703937 166.449420000000003 16.8781220000000012 1.26197559999999998 0 1.38739199999999996 0.633640300000000045 0.753751750000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.171791079885992 -63.0975104596298024 22.5929988134151998 -12.8620370751616999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379971868841856 2481379971868841856 948806931 2015.5 25.6493428645223993 1.11354552743071 -3.15268948349658995 1.55600043608505989 \N \N \N \N \N \N \N 0.00663632599999999968 \N \N \N \N \N \N \N \N \N 112 0 111 1 0.366771130000000001 110.742996 0 0 3 false 0.0214889179999999992 \N \N 0.140847529999999999 13 7 7.61298660000000016 0 13 false 113 96.7842703868496983 1.1826736629058201 81.8350983 20.7238539999999993 10 74.0783081498607032 9.48966414239803946 7.80620959999999986 20.6771600000000007 10 63.1128713458410999 5.88209562502220962 10.7296569999999996 20.2616249999999987 1.4174945000000001 0 0.415534970000000003 -0.0466938019999999995 0.462228780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.160059536022999 -63.0839026078305025 22.5995833313536991 -12.8489163166502003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379903151630080 2481379903151630080 1450836373 2015.5 25.6619766567138008 1.70083358049072997 -3.15768627769866983 1.46801919432028005 2.47572276742819009 2.25489017839792982 1.09793500000000011 5.94600833093524983 2.91401593518709978 -20.7235208014547005 3.34183677481532015 -0.353058219999999978 0.631456259999999991 -0.0458664820000000001 0.292450040000000022 -0.627267959999999958 -0.348408879999999976 -0.756186840000000027 0.258175280000000007 0.485902000000000001 0.537401099999999965 98 0 98 0 -0.697401049999999967 83.188797 0 1.04199042298598005e-15 31 false 0.0209140179999999995 1.08864687816527006 0.354419133139488973 -0.0960733000000000004 12 8 3.70663639999999983 0 12 false 99 92.0348335114186966 1.40794301658781995 65.3683014 20.7784839999999988 6 37.6936181970804967 10.8989668507574002 3.45845799999999981 21.4107190000000003 7 86.7468780889994946 21.173036660591201 4.0970449999999996 19.9162849999999985 1.35210220000000003 0 1.49443440000000005 0.63223459999999998 0.862199799999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.189951174724001 -63.082907990150602 22.6097304257296017 -12.8582022789265 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379971868752512 2481379971868752512 1516390860 2015.5 25.6597439017510993 0.722134046887193959 -3.15431923337254982 0.665475998944186964 -0.422224132342917002 0.864411863307032013 -0.488452500000000012 -2.0198164600905999 1.61798779083018007 -6.42019775493254041 1.70268844947427 -0.0593304899999999996 0.280971699999999991 -0.0780774899999999994 0.0413753430000000019 -0.425331799999999982 -0.239744399999999996 -0.61168100000000003 0.0884478499999999945 0.257357720000000012 0.439481850000000007 135 0 133 2 0.231982230000000011 131.069 0 0 31 false 0.0470391599999999965 0.927130359198852005 0.191856688810296994 0.0160755380000000003 16 9 1.79170099999999999 0 17 false 142 155.073528958629993 1.39515488502324003 111.151001 20.212019999999999 13 63.7055064867510978 10.3789243181904993 6.13796799999999987 20.8409459999999989 14 179.700325585112012 9.55628828533543029 18.8044049999999991 19.125547000000001 1.56961560000000011 0 1.7153988 0.62892530000000002 1.08647350000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.182278841315991 -63.0808482311478969 22.6088741073088002 -12.8542513177202995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382995525737472 2481382995525737472 1391291058 2015.5 25.6364820764785009 1.70691437203600005 -3.13905745867053998 1.30036465264758005 1.92108241957248005 1.94976430448079996 0.985289599999999988 1.84881485241865007 3.79810610654328018 -0.0755692955950646034 3.57187007638987009 -0.292979839999999991 0.282291230000000004 -0.224625020000000009 0.240985000000000005 -0.555021349999999969 0.0751224759999999936 -0.361214219999999975 -0.132651340000000006 -0.0298085000000000017 0.497075900000000015 97 0 96 1 1.33499900000000005 109.469002 0 0 31 false 0.0172738820000000008 1.5916357874498499 0.38300717853354499 -0.0412953120000000007 12 9 3.9608150000000002 0 12 false 100 88.547941225563207 1.38332768771717007 64.0108032 20.8204199999999986 9 54.8002108647303032 8.02503805934344072 6.82865430000000018 21.0044329999999988 10 51.2458343745312987 9.9654990999476194 5.14232499999999959 20.4877740000000017 1.19761169999999995 0 0.516658799999999974 0.184013370000000009 0.332645420000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.121422426142004 -63.0772132370293974 22.5924781642610988 -12.8315167851864 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382999821319552 2481382999821319552 92970736 2015.5 25.6258623304649014 0.296316467815324003 -3.13728644079787999 0.251581562810727022 2.47663745825461001 0.369131670445450977 6.70936060000000012 -3.7159909689059698 0.667162169089330015 -2.17685800212596003 0.427902996720138984 0.171826850000000003 0.189502090000000012 0.113838314999999995 0.196203340000000004 -0.40410950000000001 0.297165159999999984 0.324119099999999993 -0.195990880000000006 -0.0623035470000000008 0.331140460000000025 156 0 155 1 3.11109109999999989 209.761002 1.01850362472266998 2.80855447602144981 31 false 0.232724039999999993 1.20372201653439004 0.069604073256249302 0.0566457199999999966 18 10 0.617135050000000018 0 19 true 154 547.841021551448989 1.6335792038641801 335.362 18.8417299999999983 14 155.945689913634993 15.2954612715326004 10.1955530000000003 19.8689560000000007 16 704.297383108910026 14.0951875151111992 49.9672240000000016 17.6425300000000007 1.57024220000000003 0 2.22642519999999999 1.0272254999999999 1.19919970000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.098629360710987 -63.0802259956873002 22.5830333339386016 -12.8259696630834998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382995525821056 2481382995525821056 1395097448 2015.5 25.6394398680312996 1.33669195002256003 -3.13395105963076004 1.96780013402754994 \N \N \N \N \N \N \N -0.105605420000000005 \N \N \N \N \N \N \N \N \N 87 0 87 0 1.63897490000000001 104.047997 2.09364765035569 0.718637225756949993 3 false 0.0217626430000000017 \N \N -0.0149739669999999995 10 7 5.44688700000000026 0 10 false 88 96.5377483312232982 1.28345630164350011 75.2170029 20.726624000000001 9 73.8610479577209986 17.9650871460472992 4.1113660000000003 20.6803500000000007 9 90.5245326759273041 10.8794993222397007 8.32065200000000083 19.870004999999999 1.70281149999999992 0 0.810344700000000029 -0.0462741850000000024 0.856618899999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.122393952958987 -63.0713307118238973 22.5972210372041999 -12.8278545481832005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382961165999616 2481382961165999616 218042575 2015.5 25.6563311139372985 0.530579108490790041 -3.13713184857400984 0.395208673524584997 0.58686257415406895 0.653488930756980002 0.898045199999999988 1.78610165301358004 1.21336739534551996 -7.31024753031401975 0.666246475088685952 0.0393941849999999982 0.131530200000000014 -0.121499665000000007 0.152513939999999987 -0.483341340000000008 0.25424728000000002 0.227419690000000008 -0.0990878199999999931 -0.0570976960000000033 0.262965600000000022 152 0 151 1 1.16462979999999994 166.091995 0.399612393900216023 0.121044610428724997 31 false 0.0873203050000000008 1.32023769866298002 0.124347839167242999 0.0262151699999999994 18 10 1.08781860000000008 0 18 false 150 233.885600082193008 1.3176771004549499 177.498001 19.7658580000000015 12 96.9878351234282974 5.4478356415479503 17.8030030000000004 20.3845959999999984 13 197.102565258764997 8.21480785564251015 23.9935699999999983 19.025188 1.25741140000000007 0 1.35940740000000004 0.618738200000000016 0.740669249999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.158980163201988 -63.0668588475734992 22.6121069716581999 -12.8370152094431003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228498688 2481380006228498688 1576584044 2015.5 25.658089669753199 0.40394096141052499 -3.1406730440239401 0.399647952985054011 -1.01614126256265003 0.599376625997570023 -1.69533010000000006 0.0384000982648005015 1.05457143707607992 0.150248136293063994 0.699230433760870018 0.219807900000000001 -0.0234682200000000014 0.13980149 0.244528679999999998 -0.646386099999999963 0.459328899999999984 0.410976830000000015 -0.391396670000000002 -0.31782611999999999 0.515899400000000008 157 0 155 2 1.39425120000000002 174.729004 1.00502049117824011 1.15292773750831001 31 false 0.126797999999999994 1.50230221134016007 0.102792751780967001 0.0707266299999999987 18 9 1.04177990000000009 0 18 false 155 330.264470960605024 2.75006477061105992 120.093002 19.3912100000000009 13 216.019602325617001 6.45054128436107987 33.4885999999999981 19.5151560000000011 15 228.011396124315013 6.87600672139821967 33.1604400000000012 18.8670299999999997 1.34447099999999997 0 0.648126599999999997 0.123945236 0.52418136999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.165873456826006 -63.0692827364801971 22.6124460422084006 -12.8409539934645007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382961166003072 2481382961166003072 1152968046 2015.5 25.6548060383715004 0.243981037982125004 -3.1295077075976101 0.175365802488547995 1.71409358057290007 0.292072559520982988 5.86872530000000037 10.9126653206616009 0.515797140864513004 17.4137539566042996 0.323906558473974981 0.0257522069999999992 0.287366239999999995 0.00791376400000000021 0.0822126640000000047 -0.298741429999999974 0.0594893900000000031 0.0295199509999999991 -0.0355014199999999988 0.143396560000000006 0.167679560000000005 172 0 172 0 2.38312580000000018 213.662003 0.544200545103833977 0.975390111662678971 31 false 0.323543199999999975 1.32766479420298 0.0587221253121449974 0.0169088750000000003 20 10 0.457471940000000021 0 20 false 171 591.721273646077975 1.52305897930973999 388.507996 18.7580719999999985 16 137.217034459086989 11.6500020046636994 11.7782839999999993 20.0078679999999984 18 750.686934115060012 10.0769829230256001 74.4952100000000002 17.5732730000000004 1.50054430000000005 0 2.43459499999999984 1.24979590000000007 1.18479920000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.148629994406008 -63.0606569657072029 22.6135301931702983 -12.8293653203977005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481383270403656448 2481383270403656448 1465711722 2015.5 25.6114059149932984 0.22036810786331601 -3.11318381790515986 0.17243823769643099 0.335730033359172009 0.257153621759031004 1.30556209999999995 8.17997461651408919 0.460888848258147021 -18.4528428269780989 0.327361355252505981 0.131993849999999996 0.31078956000000002 0.0432719329999999985 0.0860615200000000025 -0.198753540000000006 0.0399291179999999996 -0.0217836149999999992 -0.0209426319999999992 0.174702809999999986 0.220589549999999995 153 0 152 1 2.08675800000000011 184.983994 0.63424033522825396 1.68826105018328998 31 false 0.401642979999999983 1.5331508035227801 0.0635010787341926952 0.0480663799999999988 17 10 0.414875150000000026 0 18 false 153 756.79323657565601 2.38721870961223992 317.019012 18.4909229999999987 16 394.915531819267017 8.1936235301360405 48.1979100000000003 18.8601279999999996 15 593.551758925738 12.7069608739183995 46.7107600000000005 17.8282740000000004 1.3061259999999999 0 1.03185459999999996 0.36920546999999998 0.66264915000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.04681301921201 -63.0647772146360026 22.5783597226961987 -12.7982472050826992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384713512672128 2481384713512672128 904204242 2015.5 25.6395505833167014 0.315447083016103025 -3.10339658255022011 0.229742163660251991 0.229561082190977012 0.368943910415495013 0.622211340000000002 10.2782927350278008 0.66954511165291497 -12.7431373739806002 0.421045486961924009 0.0540965100000000004 0.271106300000000022 0.00466158330000000006 0.0992292899999999978 -0.268376400000000015 0.0789536900000000069 0.047015750000000002 -0.0287367250000000012 0.147981439999999992 0.17224007999999999 169 0 166 3 1.64651499999999995 191.639999 0.864218823193825036 1.7662273551946901 31 false 0.193871529999999986 1.58435197457542998 0.0762679324921748947 0.0164220389999999994 19 10 0.593477499999999991 0 19 false 162 439.616473421588012 1.49330581733253998 294.390991 19.080680000000001 16 255.183118639487986 16.7320601325024008 15.2511469999999996 19.3342589999999994 15 327.498869857222019 7.62629378016865012 42.9433859999999967 18.4738959999999999 1.32543250000000001 0 0.860362999999999989 0.253578199999999976 0.606784800000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.093312774366012 -63.0437632138457005 22.6088504233947987 -12.7994820644741996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384507354237056 2481384507354237056 1450774696 2015.5 25.6462654758997992 0.648193596034503994 -3.11492955896344004 0.472195901474780022 0.936743557864341048 0.781004898905525047 1.19940800000000003 -0.782635476229507021 1.3918862694829599 -0.319857762673699975 0.877384583576496957 0.0109982420000000001 0.257822629999999997 0.0950790640000000048 0.068670060000000005 -0.343478830000000013 0.0666758999999999963 0.0408355779999999974 -0.0956388039999999939 0.12461788 0.17203273999999999 159 0 158 1 0.689010440000000002 164.671005 0 0 31 false 0.0494807469999999985 1.50624023944004004 0.153068369453874004 0.0314093100000000028 18 10 1.23452730000000011 0 18 false 158 163.562094398217994 1.56130359287227005 104.760002 20.154160000000001 13 108.993078050194001 10.2923393743665006 10.5897279999999991 20.2578899999999997 15 97.2262344985405065 9.92463338993525035 9.79645599999999916 19.7924609999999994 1.26080130000000001 0 0.46542929999999999 0.103731155000000005 0.361698149999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.117691827101993 -63.0512376759193032 22.6108952330293995 -12.8126726238951996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384507356569216 2481384507356569216 1552055624 2015.5 25.6599732051789005 1.59299518253918992 -3.11913027649573005 2.22363707144176015 \N \N \N \N \N \N \N -0.0253016019999999994 \N \N \N \N \N \N \N \N \N 79 0 79 0 -0.550573700000000055 66.8768997 0 0 3 false 0.0183920620000000007 \N \N -0.0991166799999999987 9 7 6.28545900000000035 0 9 false 78 86.1788192039175982 1.52045521307215004 56.6795998 20.8498650000000012 5 30.6253542697729984 5.77065455766251034 5.30708499999999983 21.6361850000000011 8 110.488783116166005 7.69769708972406974 14.3534849999999992 19.6536240000000006 1.63745729999999989 0 1.98256110000000008 0.786319729999999995 1.1962413999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.148918530684995 -63.0490684247212982 22.6223646787208992 -12.8216123111483995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379495128007168 2481379495128007168 1134226241 2015.5 25.6677175447323016 2.25324490321597981 -3.19915554378281985 1.86827161240096995 \N \N \N \N \N \N \N 0.117106859999999993 \N \N \N \N \N \N \N \N \N 125 0 125 0 59.5301359999999988 5413.77979 14.5321014791514003 273.128695468524995 3 false 0.0044309893000000003 \N \N 0.0557326000000000002 20 10 4.7444267 0 20 false 173 354.918738675661018 5.01248749857670983 70.8069 19.3130440000000014 17 491.469683553833988 10.0365510662940007 48.9679829999999967 18.6226459999999996 16 1014.56205286973 14.5844756368241999 69.5645200000000017 17.2462230000000005 4.24331429999999976 0 1.37642289999999989 -0.690397260000000013 2.06682010000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.241315917880002 -63.1177290829752025 22.5995529287181007 -12.8988731622799992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378704854024960 2481378704854024960 388403832 2015.5 25.6964608625597002 0.228844514254696013 -3.21205010322020001 0.184747539506794012 0.667629886960538044 0.275787268902029981 2.42081480000000004 7.67549582634041005 0.480996339179175003 -0.673273429251114996 0.356116234683069022 0.0790683850000000049 0.321800470000000005 -0.0364679430000000027 0.0852442600000000023 -0.303153300000000014 0.0496541100000000013 -0.00483489999999999961 0.0141596880000000001 0.132194060000000002 0.257711530000000022 170 0 164 6 2.8652432000000001 214.947006 0.898319514388249973 3.52732761899622016 31 false 0.34334806000000001 1.38953939052351005 0.0641962372355917993 0.0676998099999999992 20 10 0.437565270000000006 0 20 false 161 749.976933373501993 2.26680256507063005 330.85199 18.5007459999999995 16 264.229918319813976 9.77874971411720928 27.0208280000000016 19.2964319999999994 14 871.678825741348987 9.70808771982088992 89.7889299999999935 17.4110280000000017 1.51459159999999993 0 1.88540459999999999 0.795686699999999969 1.08971789999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.31086594671001 -63.1167921409234012 22.6220666745816992 -12.9214186173505006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378460040775040 2481378460040775040 1048559802 2015.5 25.6970184573764016 0.60121990209784304 -3.22028650441622011 0.459972074964125011 2.13539177018378012 0.754523426782327977 2.83011979999999985 3.28579066811589016 1.13959916002601003 -1.13037336040028991 0.748868572076757055 0.128232960000000007 0.427258550000000015 0.039531216000000001 0.19576753999999999 -0.254697899999999977 0.158994450000000009 0.239449770000000006 -0.00737338999999999963 0.142071320000000001 0.237700070000000013 163 0 161 2 1.54162439999999989 184.100006 1.62074970921813999 1.68038648993846995 31 false 0.0597000099999999978 1.19803505853903003 0.142238838165211989 0.0998288799999999948 19 10 1.02446130000000002 0 19 false 161 211.432936580475996 1.7614213626645201 120.035004 19.8754349999999995 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.319940910600991 -63.1239555224442981 22.6194901115026994 -12.9292825677609997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378700558944768 2481378700558944768 550827322 2015.5 25.697407209374699 0.524871021200538967 -3.20351287659129014 0.366502613459188997 0.23576213685584399 0.651111232667196949 0.36209195999999999 -0.87657938977130101 0.941115267075879003 -5.76328923820601968 0.593837891297415044 -0.0977497999999999978 0.493112830000000002 -0.00142587269999999993 0.155713220000000013 -0.413575860000000017 0.0909721799999999997 0.136277900000000007 0.039378284999999999 0.15454409999999999 0.192386339999999989 167 0 166 1 2.27541569999999993 204.597 1.24415532947620999 1.51012627950417011 31 false 0.088116739999999999 1.48822000675201993 0.116879480653145004 0.0142001820000000004 19 10 0.835965340000000001 0 20 false 165 261.861908451159991 1.4728358547414 177.794006 19.643184999999999 16 80.7180570278133018 6.57225682314761972 12.2816340000000004 20.5839609999999986 17 268.999379613622978 9.87430341879545992 27.2423649999999995 18.6875420000000005 1.3355032 0 1.89641949999999992 0.940776799999999969 0.955642699999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.304490523521991 -63.1087011473322974 22.6261891697053983 -12.9138270854474992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379525195311744 2481379525195311744 729012828 2015.5 25.6737890794562986 1.38334701814019989 -3.19659865677281996 2.16977548526108999 \N \N \N \N \N \N \N -0.0628473300000000068 \N \N \N \N \N \N \N \N \N 100 0 100 0 2.44852330000000018 132.072998 2.99466403992652985 1.34564671119630996 3 false 0.0166996199999999984 \N \N 0.0302807949999999992 12 8 6.1332399999999998 0 12 false 104 94.3923831928365047 1.36707361947622008 69.0469971 20.751024000000001 9 65.2240806894909042 10.5509178662344993 6.18183949999999971 20.8153690000000005 10 69.5522905031566978 7.54605291579448956 9.21704300000000032 20.1561410000000016 1.42783100000000007 0 0.659227400000000019 0.0643444060000000068 0.594882970000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.250910089861009 -63.1127829460073002 22.606300785833799 -12.8987251102309006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379632566971648 2481379632566971648 1096177409 2015.5 25.6931200997912015 1.10712749706492009 -3.18051005926911001 1.70834004765666991 \N \N \N \N \N \N \N 0.343383219999999989 \N \N \N \N \N \N \N \N \N 102 0 101 1 -0.0278587159999999986 94.9512024 0 0 3 false 0.0248442959999999984 \N \N 0.161067870000000002 12 7 4.22129439999999967 0 12 false 101 109.594924172316993 1.40464125458493005 78.0233994 20.5888899999999992 9 87.0616588350225982 2.81115760664890013 30.9700370000000014 20.5018220000000007 11 80.5660951679633968 8.91820058180229047 9.03389549999999986 19.9965399999999995 1.52952109999999997 0 0.505281450000000021 -0.0870685600000000032 0.592350000000000043 \N \N 0 \N \N \N NOT_AVAILABLE 152.273763565319001 -63.0898815158998971 22.6307833593365011 -12.8908619446812001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481379662633493888 2481379662633493888 1577532445 2015.5 25.6965343232972003 1.20105972335341993 -3.17624560930608979 0.847466677210533037 2.83416024313063986 1.43276115309855001 1.97811080000000006 3.08241783074783005 2.18277220982465003 -4.40476711759875972 1.49982776485003 0.139943050000000013 0.433453379999999999 0.0669459500000000041 0.170792040000000006 -0.164306659999999993 0.0837468900000000044 -0.093934279999999995 0.0255819470000000007 0.23224220000000001 0.269315360000000004 112 0 111 1 0.311241869999999976 109.912003 0 9.76005508936516968e-16 31 false 0.0221469070000000004 1.17040055486721006 0.296804097854210025 0.0349577500000000027 13 9 1.97613039999999995 0 13 false 112 98.6741170005573025 1.26347906286569001 78.0971985 20.7028579999999991 9 50.9706396649506033 11.9513973611406996 4.26482700000000037 21.0830880000000001 11 133.841469709177005 5.82990338506539008 22.9577500000000008 19.4454439999999984 1.8729541999999999 0 1.63764379999999998 0.380229949999999983 1.25741389999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.276423224637995 -63.084556352704503 22.6356440568631001 -12.8881497663881994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378528760251904 2481378528760251904 808781296 2015.5 25.7194857883107986 0.705593285378035007 -3.21937835019061014 0.654006665001697018 0.0891065459873943005 0.932089299018384998 0.0955987199999999981 3.5336016342896901 1.56365469525160994 -4.22520900891874973 1.36296699221185991 0.153166369999999996 0.258097829999999973 -0.171148749999999988 -0.0218803210000000012 -0.421068879999999979 -0.215678750000000002 -0.452787280000000014 0.226955280000000009 0.346186820000000006 0.452000139999999995 133 0 132 1 1.86464940000000001 158.322006 1.8309231033290001 1.48590140269535009 31 false 0.0458810249999999989 1.38562175045912994 0.194272391613156986 0.142645080000000007 15 9 1.59905870000000006 0 16 false 129 183.314802270025012 1.66319740808874994 110.218002 20.0303730000000009 11 103.399432484835998 9.00157773356901991 11.4868129999999997 20.3150919999999999 11 126.364403195392995 7.41269724847119971 17.0470199999999998 19.5078579999999988 1.25338400000000005 0 0.807233800000000001 0.284719469999999975 0.522514339999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.363668488075007 -63.1133200433197032 22.6412358124930009 -12.9366869427382003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378631839467648 2481378631839467648 363947084 2015.5 25.7296357812201997 1.02271823805650008 -3.20783824697309994 1.04599177848930003 0.115102230112071005 1.22385876135044991 0.0940486199999999994 4.21189019069607973 1.89105326227219006 -18.4747488385130012 2.23167122355678016 0.353351650000000017 0.52500239999999998 -0.109993240000000006 -0.166833160000000008 -0.0144125329999999999 -0.331733300000000009 -0.665248599999999968 0.0179773919999999983 0.089138480000000006 0.539614260000000012 115 0 114 1 0.938777740000000027 122.734001 0 0 31 false 0.0307324879999999988 1.42580632683149 0.255984049857508 0.159353119999999987 14 8 2.37146519999999983 0 14 false 114 129.123019613176012 1.46894683059602005 87.9018021 20.410855999999999 11 59.0949158377844981 9.75291540709100069 6.0592050000000004 20.9225120000000011 11 143.679910024908992 12.2767349988191992 11.7034300000000009 19.36843 1.57040019999999991 0 1.55408290000000004 0.511655799999999994 1.04242710000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.372631598587986 -63.0985067234173016 22.6552587917115993 -12.9296812935719991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378631839468160 2481378631839468160 1613082635 2015.5 25.7207704511706012 0.108688453373469995 -3.20186116624417005 0.0930242817041675996 0.253794936961618978 0.142187345928520004 1.78493330000000006 10.5923203307632008 0.226771164480557008 -17.8013656010416987 0.180103852028406008 0.152291370000000009 0.308784159999999974 0.00190803179999999998 0.0184047950000000016 -0.317498620000000009 -0.113448136000000005 -0.259498329999999999 0.085655190000000006 0.305226060000000021 0.306863339999999984 142 0 142 0 1.35240329999999997 159.888 0.207993639094150001 0.643999630904122045 31 false 1.81229390000000001 1.67067585747532998 0.0286770120501191016 0.111496449999999997 16 9 0.215363599999999988 0 16 false 140 2172.36630636870996 3.09589539610079001 701.692017 17.3460329999999985 15 1212.78307394886997 11.1428567569415993 108.839510000000004 17.6419299999999986 16 1416.78067622410003 10.6566794206905993 132.947660000000013 16.8836629999999985 1.21046049999999994 0 0.758266450000000036 0.295896529999999991 0.46236991999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.349259492838996 -63.0970101392371987 22.6490680274442013 -12.9208684677573995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378631841373824 2481378631841373824 3927829 2015.5 25.7301507097446986 1.19385747043112 -3.20038455888605 1.22578220862660991 \N \N \N \N \N \N \N 0.366254120000000016 \N \N \N \N \N \N \N \N \N 98 0 96 2 -0.207511279999999992 87.5776978 0 0 3 false 0.0210515109999999984 \N \N 0.279354800000000014 11 7 4.99990459999999981 0 11 false 93 107.553194366653003 1.34237422832378006 80.1215973 20.6093079999999986 5 54.2728730054827011 13.0052327813030004 4.17315669999999983 21.0149299999999997 7 165.491864377154997 5.64148396900417026 29.3348100000000009 19.2149800000000006 2.0433119999999998 0 1.79995159999999998 0.405622480000000007 1.39432909999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.366436750805008 -63.0915811459354003 22.6585609712327987 -12.9229386633419008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378567415081088 2481378567415081088 541302443 2015.5 25.7465446432183001 0.0833571434491640062 -3.21246019244870995 0.0843750567504902016 4.77446511026419973 0.107249282540966995 44.5174560000000028 25.3980321898406984 0.205548922930919004 -12.0646872088588992 0.168334153959706995 0.375201339999999994 0.132498150000000009 0.233196870000000001 0.264613299999999996 -0.39138373999999998 0.412468520000000005 0.399091360000000006 -0.337452699999999994 -0.244892909999999991 0.567246999999999946 137 0 137 0 4.16097830000000002 210.895004 0.329355496549656013 3.91341841003172997 31 false 3.42458960000000001 1.2933095422763099 0.024050894010541099 0.133936940000000004 16 10 0.220395000000000008 0 16 false 135 5494.58784036923043 7.03774796280978965 780.731018 16.3385280000000002 13 1173.51919395245 18.8558008842835001 62.2365070000000031 17.6776620000000015 13 6795.78884608011958 26.2333002456271984 259.052000000000021 15.1813199999999995 1.45039239999999992 0 2.49634169999999989 1.33913419999999994 1.15720749999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.410643575016991 -63.0952597310973999 22.66962410971 -12.9401862033898993 100001 3767.05005 3386 4217.1001 0.124700002 0.0900000036 0.603999972 0.0666999966 0.0505000018 0.353599995 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378563122799616 2481378563122799616 101750970 2015.5 25.7464391160689985 1.18718224594077992 -3.20967146603469011 1.16281183920357001 0.667876416229395975 1.47914485174929999 0.451528759999999973 38.4106895243363979 2.8157537917663098 -37.0246403985936965 3.14913123183122989 0.141503109999999988 0.258343549999999977 0.122577615000000001 -0.128922129999999996 -0.350553659999999989 -0.246461719999999995 -0.443871620000000022 -0.061233990000000002 0.194681880000000002 0.447740099999999974 105 0 104 1 0.965278149999999946 112.486 2.05411107120654002 1.0405498680393801 31 false 0.019132942 1.01171347033552994 0.341622660946823975 0.136968139999999988 13 9 3.20547300000000002 0 13 false 108 103.634812792976007 1.57531483465470989 65.7866974 20.6496010000000005 6 47.8661465664638968 12.1685924392772993 3.93358100000000022 21.1513179999999998 9 135.881751745897986 9.70117436494722973 14.0067319999999995 19.4290179999999992 1.77303250000000001 0 1.72229959999999993 0.501716599999999957 1.22058299999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.407731243240988 -63.0927998108352028 22.6705754780774988 -12.9375540231662995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481378563119991168 2481378563119991168 239331819 2015.5 25.7380413016920997 0.66178202409176401 -3.20367308470284984 0.665306159376493955 0.251130851865214999 0.912636575930581007 0.27517069999999999 24.0365251932860993 1.46732956459858999 -15.0117974302029005 1.00084399214312003 0.423835699999999982 0.172600029999999988 0.313243099999999997 0.391534920000000008 -0.462675840000000005 0.564441700000000046 0.557441399999999976 -0.365267000000000008 -0.236793129999999991 0.592919500000000044 125 0 125 0 1.76377579999999989 148.679993 0.630073047923798035 0.241622367676686989 31 false 0.071325369999999999 1.41840175933196999 0.168891983838595994 0.219767059999999986 14 8 1.53211530000000007 0 14 false 123 214.032808909085986 1.41324502928831008 151.447998 19.862165000000001 11 61.4147778666556974 8.93939374203161918 6.87012770000000028 20.880707000000001 12 303.923537331507987 13.1324871433306001 23.1428779999999996 18.5550099999999993 1.70692669999999991 0 2.3256969999999999 1.01854130000000009 1.30715559999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.385268433461988 -63.0910850867983015 22.6648375631283017 -12.9288932621136006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381213114925056 2481381213114925056 1060754846 2015.5 25.6946972830703011 0.0732403911997843993 -3.15171712490688982 0.0550905562444249999 32.5294057121342988 0.0821439162107187038 396.005069999999989 394.545350163066018 0.16572379690306599 -148.827427611757997 0.119690344048702005 0.0428769069999999988 0.21977084999999999 -0.159372459999999994 0.011815107 -0.229643020000000003 -0.0315955840000000029 -0.204806010000000011 0.0527337000000000014 0.147158600000000001 0.189453969999999999 155 0 152 3 17.4317600000000006 692.361023 0.442625530047365989 22.4260988835788986 31 true 4.01815459999999991 1.23211807913376004 0.0216564791211815988 -0.00834965499999999923 18 10 0.154568630000000012 0 18 true 152 19931.1994057564989 11.9428604844285005 1668.88 14.9395319999999998 17 2304.00481531261994 21.9270186187671001 105.076065 16.9451789999999995 16 28946.2587719313015 49.5588361451871009 584.078700000000026 13.607939 1.5679069000000001 0 3.3372402000000001 2.00564669999999978 1.3315935000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.249128884388995 -63.0632903749830973 22.6431457579137003 -12.8646650863834999 100001 3806.29004 3543.19995 4103.70996 0.31400001 0.200900003 0.476999998 0.196999997 0.119999997 0.3134 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228494848 2481380006228494848 424967389 2015.5 25.6657768746246013 0.444311895489772013 -3.14650396511949992 0.303706998641972981 2.18331907219105004 0.549275338099686983 3.9749083999999999 13.2190903643263002 0.850440220525775947 16.5202581010338996 0.519839770962538972 -0.117447815999999997 0.413325429999999994 0.0321094899999999975 0.110534859999999999 -0.448773680000000008 0.0825001300000000048 0.0550912319999999969 -0.0287928250000000011 0.126958220000000011 0.187589969999999995 167 0 167 0 2.68846229999999986 214.565994 1.05178374464187008 1.51412494046211998 31 false 0.120923320000000001 1.34241889742418996 0.0977790636484924952 -0.0342192300000000033 19 10 0.753839499999999996 0 19 false 166 314.12088921413698 1.3337251631609901 235.520996 19.4456230000000012 15 104.059858510588001 14.7802327464968997 7.04047499999999982 20.3081800000000001 17 397.96773357758201 8.98771106709897971 44.2790999999999997 18.2622999999999998 1.59819869999999997 0 2.04587940000000001 0.862556459999999969 1.18332290000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.186736380413009 -63.0711894902891999 22.6175677000072 -12.8491990003519003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380006228498048 2481380006228498048 1613094534 2015.5 25.6645073731089006 0.225465396016926001 -3.14213361419392001 0.165432896800010998 0.233166683960513987 0.269351951786662991 0.865658040000000017 1.68470459116810001 0.486598022039508027 -2.33074180665628017 0.311369206494847006 0.0135981690000000002 0.254809300000000016 0.0179306509999999988 0.0674024450000000053 -0.336041450000000019 0.0488769640000000019 0.00404585760000000013 -0.040271073999999997 0.141736090000000009 0.176113710000000007 176 0 174 2 1.95627149999999994 206.813995 0.577404105293470971 1.24093402245892004 31 false 0.366503950000000023 1.64958997244395 0.0559344513761596968 0.00537521199999999987 20 10 0.432457900000000006 0 20 false 173 671.656050976548045 1.73154873283936994 387.893005 18.6204989999999988 17 381.307984711932022 17.6457060502665009 21.6091100000000012 18.8981999999999992 17 487.088260898627027 9.1701117366121796 53.1169399999999996 18.0428999999999995 1.29291810000000007 0 0.855299000000000031 0.277700420000000003 0.577598599999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.180014245548989 -63.067807528957303 22.6180070727499007 -12.8446687411937006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381414977770368 2481381414977770368 856059361 2015.5 25.6798520575478015 0.584926992851611982 -3.14289692768777007 0.412307762084655027 -0.137919978893589007 0.706590761492012054 -0.195190740000000001 1.04696918563718011 1.19421233295572993 0.703093034316418009 0.757405396940840969 -0.0238531550000000009 0.318548620000000005 -0.00212350280000000004 0.0961290149999999982 -0.369031339999999985 0.0546933859999999966 -0.0397641060000000005 -0.0106469300000000006 0.162089989999999989 0.204810650000000011 163 0 163 0 -0.725537960000000037 144.820007 0 0 31 false 0.062750360000000005 1.78102857278158999 0.137031542704034004 0.0111830260000000004 19 10 1.06056109999999992 0 19 false 162 187.718140410056009 1.51777214418528006 123.68 20.0045999999999999 15 122.902201974571994 6.68506548880372975 18.3845920000000014 20.1274900000000017 15 130.120975596904003 8.01932694488261966 16.2259220000000006 19.4760509999999982 1.3478888 0 0.651437759999999977 0.122888565000000005 0.528549200000000052 \N \N 0 \N \N \N NOT_AVAILABLE 152.211192908448993 -63.0618188346411017 22.6323331977667017 -12.8510125998744993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381518056994560 2481381518056994560 1216470099 2015.5 25.6852007892631988 0.323339520582936024 -3.12416239878257995 0.249314812851229001 0.795885935389471055 0.392499283423973999 2.02773860000000017 1.5399347906899099 0.737649159220284956 0.29744565899110198 0.488554557552318025 0.0353704499999999977 0.158531769999999989 0.0529971399999999981 0.0345147359999999973 -0.373924340000000022 0.036361723999999998 -0.0311604720000000016 -0.0769539199999999951 0.139397099999999996 0.185271459999999999 169 0 166 3 1.16531790000000002 182.104996 0.600872321916590013 0.657175705231270002 31 false 0.174439189999999994 1.75565323089776992 0.0886587279378139026 0.0176633999999999992 20 10 0.656021999999999994 0 20 false 165 391.238914399294003 2.5721414479685798 152.106003 19.2072600000000016 18 255.719699542389009 10.4686646565287003 24.4271560000000001 19.3319779999999994 17 259.934285077578011 11.7271614959439994 22.1651500000000006 18.7247619999999984 1.31800279999999992 0 0.607215900000000031 0.124717709999999996 0.482498170000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.203780802146014 -63.0426296943006008 22.6444923212001008 -12.8355540481499002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381449337509888 2481381449337509888 865897524 2015.5 25.6929803879386007 1.48061586692154989 -3.14091294533634979 1.46209152600526004 \N \N \N \N \N \N \N 0.133734030000000004 \N \N \N \N \N \N \N \N \N 92 0 92 0 1.49676919999999991 107.504997 0 0 3 false 0.0161977999999999983 \N \N 0.0764831299999999964 11 8 4.37216950000000004 0 11 false 93 89.9306728992186066 1.60425546415180009 56.0575981 20.8035959999999989 9 78.9039277288650993 12.3893214201987991 6.3687043000000001 20.6086400000000012 8 72.3772803653589989 12.2476983016992005 5.90945959999999992 20.112915000000001 1.68219819999999998 0 0.495725629999999973 -0.194955829999999997 0.690681459999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.23531923790901 -63.0543170037565019 22.6455850501966012 -12.8539873655785009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381621136210944 2481381621136210944 1213341017 2015.5 25.6993329487097988 0.248756367617527008 -3.12313522199263005 0.168422217196290996 1.00764019917135994 0.283409994899831985 3.55541520000000011 18.0405180895952988 0.592394588323441051 -4.90093387479619036 0.314201951805892998 -0.0305896940000000006 0.0830048250000000043 0.194072810000000012 -0.0292826300000000005 -0.288004460000000018 -0.00529668849999999965 0.113531015999999998 -0.171331020000000001 0.185730260000000008 -0.0211436259999999987 159 0 157 2 1.81841199999999992 185.199005 0.34118810153316198 0.369006070908308004 31 false 0.367897269999999998 1.61270022495666998 0.0600935804623424982 -0.0541214459999999967 18 9 0.524861040000000001 0 18 false 154 613.140041514590962 2.31457411304885996 264.903992 18.7194670000000016 17 236.499120937145989 14.8789826149349995 15.8948450000000001 19.4168149999999997 14 595.090995079993036 8.64148021676878031 68.8644699999999972 17.8254620000000017 1.35628090000000001 0 1.59135249999999995 0.697347640000000046 0.894004800000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.230803219753994 -63.0355529023808003 22.6583390006748999 -12.8397866440999007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380354121475968 2481380354121475968 1192329601 2015.5 25.7480700395195008 3.28197128821501982 -3.17078343556670017 2.96073574371920989 \N \N \N \N \N \N \N 0.235883559999999992 \N \N \N \N \N \N \N \N \N 66 0 66 0 59.9362300000000019 5991.62988 14.7199121109002 454.905950183142011 3 false 0.00443405800000000027 \N \N 0.196410329999999994 13 9 6.18746500000000044 0 16 false 139 784.836522303224001 11.1035861972431 70.683197 18.4514180000000003 12 1143.92457494478003 18.6762706198299995 61.250160000000001 17.7053949999999993 11 2452.42736607027018 18.5262990213916012 132.375460000000004 16.2879299999999994 4.58229449999999972 0 1.41746520000000009 -0.746023199999999997 2.16348839999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.373316613349999 -63.0571336298404006 22.6867953846420001 -12.9019872254096004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381552417231616 2481381552417231616 1066015476 2015.5 25.7185726337526006 0.401453133571853027 -3.12601997395759978 0.302287146167767973 0.376443751166359974 0.463464046858746981 0.812239399999999945 10.8975705424571991 0.923533638111360022 -14.7436762978987002 0.546710686857064032 0.010433655 0.164682600000000012 0.128358379999999994 0.0157860460000000015 -0.25741567999999998 0.00226715369999999986 0.189781040000000012 -0.101865280000000002 0.175986840000000005 0.0129923529999999999 160 0 159 1 3.72734239999999994 228.246002 1.35569389271585994 4.05505396972677001 31 false 0.120508619999999997 1.4737171060832901 0.099472511390110499 0.00737024329999999995 18 10 0.812693099999999946 0 18 false 159 367.281096238401005 1.76161011092351005 208.492004 19.2758700000000012 14 199.170673622832993 9.01820656956781086 22.0853980000000014 19.6033250000000017 12 264.342025287831007 6.47362269919698985 40.8337100000000035 18.7065049999999999 1.2620108000000001 0 0.896820069999999969 0.32745552 0.569364549999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.271695147444007 -63.0297636113240003 22.6755759020426986 -12.8495313999813998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381586778865408 2481381586778865408 848540627 2015.5 25.719019212657301 1.2842347042937301 -3.12236376466350007 1.24714908106841005 0.94871522480974102 1.4555390382395601 0.651796460000000022 2.59908250973195987 3.0793662622293998 -17.6506223971436995 3.18911289657995001 0.0127233980000000003 0.0748278099999999946 -0.0543020329999999996 0.0776914100000000024 -0.394809340000000009 -0.15796019 -0.578595999999999999 0.0520296950000000008 0.233923750000000014 0.431222529999999993 110 0 109 1 1.2972897000000001 123.107002 1.75189038681959008 0.852627444686869018 31 false 0.0157014879999999996 1.21074468393001999 0.37420646491189602 -0.0565049570000000015 13 7 3.34663839999999979 0 13 false 113 85.3180431275026052 1.35471043850824002 62.9788017 20.8607639999999996 7 55.0343136255516967 23.2630186656232993 2.3657427000000002 20.999804000000001 7 121.971599579677999 9.20209547376217074 13.2547639999999998 19.5462719999999983 2.07465980000000005 0 1.45353130000000008 0.139039999999999997 1.31449130000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.269059138679012 -63.0262797471917011 22.6773796871348985 -12.8462950525624997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380521626992256 2481380521626992256 120443053 2015.5 25.7415518737658005 1.81313651691851008 -3.14654466285402012 1.84127467738748996 1.76618613146227998 2.06187840832220992 0.856590799999999986 5.76756968908440015 3.74644713985487021 -2.46585080100427012 4.77995867649751993 0.0448722949999999995 0.218445 0.260154580000000024 -0.243678179999999994 -0.223062470000000013 -0.323466929999999986 -0.452789549999999985 -0.0420355720000000002 0.428876599999999997 0.0489691979999999985 57 0 56 1 0.214508040000000011 52.5144997 0.874548248767611947 0.0523097591011884022 31 false 0.0150599099999999993 1.83781598302681992 0.478251409089781976 0.15034415000000001 7 6 4.36497159999999962 0 7 false 58 85.4242411081238942 1.75406993652852994 48.7005997 20.859413 4 43.5446542957197025 21.0356127417028986 2.07004449999999984 21.2540510000000005 3 98.1114454042749031 15.6383000623678008 6.27379230000000021 19.7826209999999989 1.6582657999999999 1 1.4714297999999999 0.394638060000000013 1.07679180000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.336990498195007 -63.0381919658049981 22.6897255860106988 -12.8770529765890007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192367697322624 2481192367697322624 577729236 2015.5 25.7578067922954013 0.364735300782331018 -3.21196537920052005 0.281801987639629992 1.18545310173431995 0.445315220508571974 2.6620537999999998 7.85954282765517043 0.756887261435918002 -0.381900741701732993 0.474996808461128017 0.122884850000000004 0.271145799999999992 0.00606306269999999994 0.190751119999999996 -0.303079040000000022 0.230206739999999993 0.194909350000000009 -0.0724916460000000068 0.0586128120000000002 0.257736059999999989 138 0 137 1 1.28898019999999991 153.332993 0.492642576933261023 0.343009683063903004 31 false 0.179590019999999989 1.50388399850651999 0.0828255272490044936 0.0769670900000000019 16 10 0.682038900000000003 0 16 false 135 377.029127773374 1.70026278453058 221.748001 19.2474290000000003 11 97.4790837738507037 5.61950342024659033 17.3465649999999982 20.3791100000000007 14 449.929610957875013 9.49358680162755064 47.3930050000000023 18.1290590000000016 1.45190020000000009 0 2.25005150000000009 1.13168139999999995 1.11837000000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.432490797359009 -63.0898810266520016 22.6805404367261012 -12.9438595962077994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192333337584128 2481192333337584128 1119290682 2015.5 25.7879831208323012 0.485459119709419018 -3.21600063127137004 0.405037685803460001 2.80342770503761995 0.586507603434744951 4.77986570000000022 6.56500207865506002 1.09041671248318006 -1.06378480344708004 0.769067891101459011 0.152289969999999997 0.26087353000000002 0.141007020000000011 0.0737264900000000056 -0.180471350000000003 0.0730904799999999993 0.221892370000000005 -0.160522069999999989 0.0861308199999999968 0.149778080000000008 129 0 129 0 12.0787659999999999 426.537994 2.78934218153426983 18.7083500587994003 31 false 0.0928769499999999998 1.38947051821317991 0.110533633581653995 0.113310610000000006 15 10 0.972360730000000006 0 15 false 131 633.426320952503033 5.55171399848850022 114.096001 18.6841259999999991 14 205.040693468222997 9.53082441448198914 21.5134280000000011 19.571788999999999 14 808.030043355708017 8.60128797775137954 93.9429099999999977 17.4933510000000005 1.59935059999999996 0 2.07843780000000011 0.887662900000000032 1.19077490000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.496197236547999 -63.0802678618471973 22.7077697934442 -12.9586864941906992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380079243569152 2481380079243569152 274395783 2015.5 25.7603307644087991 0.0307040141985956 -3.19599219625784992 0.0276272865153339986 3.20310998413340009 0.0379254173788581977 84.4581400000000002 -12.5279671205863998 0.0666701199277889012 6.00290998017514976 0.0642884913203757985 0.189155190000000001 0.36517417000000002 0.0638423800000000041 -0.0528361830000000018 -0.180943920000000008 -0.0661233960000000009 -0.0866375699999999971 -0.113216440000000002 0.0556766600000000028 0.327603340000000021 141 61 141 0 2.85602929999999988 187.921997 0 0 31 true 156.020870000000002 1.58507959690305 0.00894112776114558069 0.0840581200000000001 16 10 0.0605884599999999968 0 16 false 132 122584.795985774006 46.8583769595109985 2616.07007 12.9672750000000008 15 62733.132270805203 132.001077986327999 475.247130000000027 13.3576460000000008 16 86260.7889054456027 85.2637072676637047 1011.69410000000005 12.4223859999999995 1.21543559999999995 0 0.935259799999999974 0.390371320000000022 0.544888499999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.422007659407001 -63.0744223707662997 22.6889694120401018 -12.9299309753107003 100001 5430.75 5416 5445.33008 0.0250000004 0.00800000038 0.147400007 0.0137 0.00389999989 0.0781000033 200111 0.787576900000000024 0.783364060000000029 0.791872559999999948 0.486093639999999994 0.475554440000000023 0.49663284000000002 +1635721458409799680 Gaia DR2 2481192505136276736 2481192505136276736 439621931 2015.5 25.7894428506147015 0.121275997442264 -3.19497447621952979 0.0945064634325209069 0.520461507974756987 0.153138240892203986 3.39863850000000012 13.0189921595823996 0.237324548294663012 -11.9801265815770996 0.191739786888975 0.0776393300000000064 0.445531850000000007 0.0576230250000000013 0.0925284799999999963 -0.310123499999999996 0.0837989900000000038 -0.0483725779999999994 -0.0849433400000000061 0.0513501430000000009 0.36700569999999999 131 0 131 0 0.848110849999999972 139.235001 0.157800072122207008 0.34415472728351898 31 true 1.81821480000000002 1.52201313495545998 0.0282352682828308985 0.085979189999999997 15 10 0.228080780000000011 0 15 false 129 2127.24578774605015 3.23126394243581982 658.33197 17.3688220000000015 14 1023.88921742106004 16.0299938938597002 63.8733369999999994 17.8257559999999984 14 1588.37730869974007 11.1008326405630999 143.086320000000001 16.7595370000000017 1.22800409999999993 0 1.06621929999999998 0.456933980000000017 0.609285349999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.478674423618997 -63.0607423990028977 22.7170894967761008 -12.9396673464972007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192470776538624 2481192470776538624 1218875397 2015.5 25.7981135025952995 0.276565652520611993 -3.19079391845014992 0.229009305324424012 1.65122167004525999 0.343220048347019024 4.81097100000000033 4.66038189550102988 0.601921621823777953 -10.3580306428253994 0.383123767033226981 0.207244829999999991 0.223255989999999988 0.130551890000000004 0.185494540000000013 -0.291286400000000001 0.226375650000000012 0.278592899999999977 -0.148962779999999989 0.0514557799999999996 0.258661059999999998 146 0 146 0 2.92945119999999992 195.307007 0.681767280901336981 1.25616301952689002 31 false 0.278943419999999997 1.20936490826750997 0.0656104345473312034 0.121249770000000007 17 10 0.547139200000000048 0 17 false 146 562.616565260572997 1.96341218879060997 286.549988 18.8128339999999987 14 147.774008611183007 9.26893130747703964 15.9429390000000009 19.9273929999999986 12 703.951755413935985 11.6143938880774993 60.6102869999999996 17.6430630000000015 1.51386550000000009 0 2.28433039999999998 1.11455919999999997 1.16977120000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.49177870199901 -63.053181389282102 22.7269270226362003 -12.9389605989141998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380212387434112 2481380212387434112 568620316 2015.5 25.7795621167296005 0.657438892002825015 -3.17510712140333995 0.534647474999510042 -0.888541048892750984 0.81908380761509203 -1.08479869999999989 17.2620061017694013 1.3699053090726101 0.185017504218628004 0.904578090007438052 0.251695449999999987 0.280810920000000019 0.082904500000000006 0.194764880000000001 -0.232077840000000007 0.219344810000000001 0.190599459999999998 -0.095236940000000006 0.0772168700000000069 0.31241074000000002 136 0 134 2 1.53405579999999997 154.490005 1.40895199070542998 0.997941038029857008 31 false 0.0542909879999999984 1.34011605602787998 0.171390322662543004 0.162178600000000006 16 10 1.25248800000000005 0 16 false 136 189.18854002213601 1.62600141810107002 116.351997 19.9961279999999988 9 81.3783304369175937 12.6002590616930004 6.45846500000000034 20.5751169999999988 9 223.332659121233007 11.7765091011411993 18.9642499999999998 18.8895400000000002 1.61062069999999991 0 1.68557739999999989 0.578988999999999976 1.10658839999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.439856723384992 -63.0472286389613004 22.7151666189952017 -12.9175647010247996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192195898630912 2481192195898630912 209291442 2015.5 25.8260593354138983 0.160791597610858011 -3.2103977885652899 0.14462020363403999 0.245605121376888003 0.218538951408831006 1.12385059999999992 4.31838097896329032 0.354066490996578997 -2.56352113671044979 0.243932238070761004 0.215748649999999986 0.16409762 0.0774696700000000044 0.143679339999999989 -0.429121350000000013 0.172347919999999988 0.105352920000000003 -0.0934044599999999947 0.0888392850000000039 0.33604487999999999 138 0 137 1 0.259238960000000018 135.576996 0 0 31 false 0.843304500000000012 1.47909332545178995 0.039541274610325701 0.161845829999999996 16 9 0.327595440000000016 0 16 false 136 1098.49949531279003 2.35716126747389998 466.026001 18.0863669999999992 14 610.285047693383035 5.5018532196116503 110.923546000000002 18.387556 15 763.435507364122032 15.0497949696309998 50.7273029999999991 17.5549889999999991 1.25054280000000007 0 0.832567199999999952 0.301189419999999985 0.531377800000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.566114837322004 -63.0584992978162973 22.7461636994944989 -12.9674455154056005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191444279230592 2481191444279230592 540656475 2015.5 25.8355178344910001 0.101687006589356005 -3.21682105992467005 0.0852177831110583067 1.97514769249203992 0.126859766037918986 15.5695359999999994 47.2079551744679975 0.221398245820833006 16.2877698530340993 0.157087647160669003 0.185915500000000011 0.254775699999999994 0.0704768100000000008 0.130658329999999989 -0.29211330000000002 0.159060459999999987 0.125278119999999993 -0.110300720000000005 0.052666339999999999 0.302303219999999984 149 0 149 0 3.90187170000000005 220 0.242532183891653014 1.06999868816104993 31 true 2.01120950000000009 1.30276756952264994 0.0254016671815214014 0.099901379999999998 17 10 0.206392540000000013 0 17 false 147 2420.35733159440997 3.40264244148398998 711.317017 17.2286660000000005 16 663.661916354457048 14.9734656055361004 44.322533 18.296520000000001 16 3034.34120251973991 52.8565271576149982 57.4071240000000032 16.0567589999999996 1.52787479999999998 0 2.2397613999999999 1.06785390000000002 1.17190740000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.591074113807991 -63.0601005232734977 22.752755076619799 -12.9768892164690008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191444279745664 2481191444279745664 1587333150 2015.5 25.8356904417260012 0.602017493138477966 -3.21643260004351994 0.294179657726474975 2.49269471133899989 0.568968599505535022 4.38107600000000019 49.9799559313715989 0.996829580340222954 15.4215636890876997 0.414098000113749976 -0.400325660000000028 0.448598239999999981 -0.420582440000000002 0.250714700000000013 -0.523385349999999971 0.385325199999999979 0.0871505439999999965 -0.0957428000000000029 0.0847774599999999989 0.0431532800000000022 98 0 97 1 1.8836440000000001 119.195 1.00511494785662991 2.39574021494220979 31 false 0.25356105000000001 1.23971552675871011 0.0880441232200234042 -0.177572129999999995 12 8 0.943211849999999963 0 17 false 93 556.621974819918023 2.71876142139115018 204.733994 18.824465 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.591037288645992 -63.0596758796831978 22.7530660210128985 -12.9765912407211008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192195899069184 2481192195899069184 1684791287 2015.5 25.8300711374557004 1.21505366322729991 -3.20239090803432003 1.88497526065963994 \N \N \N \N \N \N \N 0.666814499999999977 \N \N \N \N \N \N \N \N \N 96 0 96 0 -0.133705590000000013 88.5518036 0 0 3 false 0.0306844640000000016 \N \N 0.366805260000000022 11 7 4.51547669999999979 0 11 false 97 125.632386314482005 1.77842052034001008 70.6427002 20.4406099999999995 8 72.1959608811237956 5.6238107030627198 12.8375520000000005 20.7051070000000017 11 103.132320723785 10.1998491630863004 10.1111609999999992 19.728434 1.39556600000000008 0 0.976673099999999961 0.264495849999999977 0.712177300000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.566261350351994 -63.0495466483884996 22.7530052526418984 -12.9614702878717996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192475071896064 2481192475071896064 1305124823 2015.5 25.8085069371730995 0.047853634487043599 -3.18976126478140998 0.0411615200533623007 0.294406690038493013 0.0586170416824279977 5.02254440000000013 -2.6698343109852698 0.104373789812827994 -2.60282238606967997 0.0843657190974348992 0.222372929999999996 0.301888880000000026 0.0565209569999999967 0.0791775499999999993 -0.20802248000000001 0.0956025600000000031 0.00972663500000000084 -0.116710430000000004 0.0273957379999999993 0.355169740000000012 147 0 146 1 -0.937565300000000046 125.217003 0 0 31 false 10.1938250000000004 1.65960870458536003 0.0131483807921982006 0.106708914000000002 17 10 0.106220819999999994 0 17 false 145 9034.80185599236029 6.33501869164414 1426.17004 15.7985690000000005 16 5441.62227500855988 21.7633127342512012 250.036480000000012 16.0120679999999993 15 5438.26592418559994 16.1496579853438007 336.741849999999999 15.4232689999999995 1.20421990000000001 0 0.588798500000000002 0.213499070000000013 0.375299449999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.511339828283013 -63.0476892887361018 22.7372192259894987 -12.9418133125061008 100001 6904 6515 7116 0.643999994 0.462300003 0.787999988 0.319999993 0.198500007 0.405099988 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192475071896192 2481192475071896192 970300965 2015.5 25.8164816760458997 2.84163168966869994 -3.19071730124588004 2.87190465343187995 \N \N \N \N \N \N \N 0.391674159999999993 \N \N \N \N \N \N \N \N \N 105 0 105 0 51.2175519999999977 3972.8501 16.5096004257108007 222.382153077650997 3 false 0.00344321950000000014 \N \N 0.197112160000000008 17 10 6.31198800000000038 0 17 false 149 302.405811101354004 3.43803126426160999 87.9589996 19.4868899999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.528041828934988 -63.0450433545386986 22.7444573094357985 -12.9456280496783993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192543791372544 2481192543791372544 1437003479 2015.5 25.8037503666325989 0.0542572567140302969 -3.18001673270814988 0.0462362842837880997 0.691645446153113963 0.0659359948010213026 10.489649 -0.900119843742261949 0.118186025134520006 -2.89540686722533014 0.0916572154382957055 0.233921170000000012 0.2907362 0.0468331099999999972 0.101328799999999997 -0.196854310000000005 0.121893235000000003 0.0493416399999999991 -0.106895439999999994 0.0316544299999999973 0.341324100000000019 150 0 146 4 -0.182592699999999997 137.300003 0 0 31 false 7.73970559999999974 1.57173930109355009 0.0143281988718644004 0.106139325000000007 17 10 0.117275370000000004 0 17 false 146 7024.31031773975974 6.09235341502597993 1152.96997 16.0718570000000014 16 3662.86598847200003 16.5348272578036983 221.524290000000008 16.4418350000000011 16 4855.23005943189037 9.65089416610319084 503.086029999999994 15.5463950000000004 1.21265939999999994 0 0.895440099999999961 0.36997795 0.525462149999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.492474928354994 -63.0410272017530033 22.7363608913290989 -12.9310053887004006 100001 5693 5418.06006 6455.93994 0.0447000004 0.00800000038 0.136899993 0.0189999994 0.00439999998 0.0610999987 200111 0.784987870000000032 0.610416100000000017 0.866677800000000054 0.583156760000000052 0.465092899999999976 0.701220630000000011 +1635721458409799680 Gaia DR2 2481192539496477824 2481192539496477824 251787826 2015.5 25.8032984329427002 0.291583612231621991 -3.17900352673258002 0.240545360051898 0.531517234807937 0.358837730849496994 1.4812189 -3.24729439324684011 0.628930550947060962 -2.15693080543251003 0.414509367348059987 0.204180479999999998 0.272070230000000024 0.123867619999999998 0.170735229999999988 -0.238538639999999996 0.199231849999999988 0.284748459999999981 -0.146304999999999991 0.0523912980000000028 0.243239029999999995 150 0 148 2 13.8948850000000004 528.601013 1.70578088407483008 20.2294049057992993 31 false 0.244877339999999999 1.38869117092043992 0.0663002593824403019 0.100942270000000001 17 10 0.570536400000000055 0 17 false 148 1213.63521118735002 4.17028256858557977 291.019989 17.9781459999999988 15 466.459568313578018 8.36632769844569957 55.7543999999999969 18.679354 16 1176.1988929997101 10.9589907983441002 107.327299999999994 17.085718 1.35350259999999989 0 1.59363560000000004 0.701208100000000001 0.892427439999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.490598242349989 -63.0403156374922986 22.7363122693200985 -12.9298972567732005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192917453137920 2481192917453137920 239887366 2015.5 25.8123482603823007 0.143881674642739987 -3.17309214319783006 0.118576097096302999 0.00540193416206895 0.176845948061751995 0.0305459870000000001 2.08688668950992007 0.314067663412968989 -3.52989139046007994 0.215693684656361989 0.193701580000000012 0.237298549999999997 0.0658967300000000006 0.145767449999999993 -0.264770479999999975 0.178610770000000002 0.141837359999999996 -0.113924499999999998 0.0500063400000000033 0.287696930000000017 148 0 148 0 -0.164957090000000001 139.570999 0 0 31 false 0.985178949999999998 1.56849629117130007 0.0352954960646564009 0.105648980000000003 17 10 0.288567870000000004 0 17 false 148 1259.88056809328009 2.54851095479093992 494.359009 17.9375420000000005 16 657.340171536040998 11.8310492663022995 55.5605959999999968 18.3069130000000015 17 898.433263155828968 8.11871602882192001 110.661990000000003 17.3782059999999987 1.23485789999999995 0 0.928707100000000008 0.369371400000000016 0.559335699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.502761560051994 -63.0310326368960006 22.7471632170802991 -12.9277192887190004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380452905611648 2481380452905611648 232487796 2015.5 25.7588614939971983 0.772796772816646049 -3.16603768288028009 0.600665684316563975 1.16829503373853005 0.93934430598366303 1.24373460000000002 12.6806318826264004 1.63876470818279008 8.4065513750706593 0.977126211754386964 0.147807230000000012 0.230619039999999997 0.0305075240000000011 0.205307469999999992 -0.293892319999999985 0.249671000000000004 0.270796919999999997 -0.0910951640000000062 0.0568361000000000005 0.232556540000000006 140 0 140 0 4.6534886000000002 225.869003 2.75338529037242985 3.44691850218575002 31 false 0.0391852739999999991 1.09951003770535993 0.16995502434492199 0.0760078299999999984 16 10 1.46930589999999994 0 16 false 134 181.663001792430009 1.47453790824799991 123.199997 20.0401999999999987 11 47.8355104606733974 14.4195908656698002 3.31739700000000015 21.1520119999999991 14 268.884190230322019 8.7077576864433297 30.8786950000000004 18.6880069999999989 1.74344640000000006 0 2.46400450000000015 1.11181259999999993 1.3521919 \N \N 0 \N \N \N NOT_AVAILABLE 152.390099124165005 -63.0481458372839967 22.6988651449514016 -12.9015339361995007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380487265350144 2481380487265350144 1584777741 2015.5 25.7673209850691016 0.800711425493037976 -3.15795627402677015 0.62679628213042704 4.1318623986534897 0.995011426429807999 4.1525780000000001 45.2599975633130001 1.68783937356819003 -18.7795476450375993 1.02093790802070994 0.155879779999999996 0.261743959999999998 0.0748003099999999949 0.196409300000000009 -0.313250719999999983 0.236271129999999996 0.273962229999999973 -0.11205271 0.0593716700000000014 0.246431470000000014 151 0 150 1 3.86454250000000021 220.386993 2.66925640950469978 3.31321027977910987 31 false 0.034442465999999998 1.11924311800163001 0.174065761249802997 0.100559554999999995 17 10 1.51890919999999996 0 17 false 149 170.243434558171998 1.70506068966704993 99.8460007 20.1106900000000017 4 53.7642643774901003 8.44300093776178961 6.36790940000000028 21.0251540000000006 15 213.389855023975997 10.1139870277712003 21.0984900000000017 18.9389859999999999 1.56924770000000002 0 2.0861683000000002 0.914464950000000054 1.17170329999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.399029968381001 -63.0371793735530019 22.7099709358375996 -12.8971223066553993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380281106911488 2481380281106911488 207218710 2015.5 25.7770028906883013 0.566709084862100032 -3.15961661427916995 0.455877742071541026 -0.357084201276156976 0.706785011963380949 -0.505223199999999983 0.326406056003410994 1.21407849913698995 -6.70175767061698036 0.756411464685349033 0.188773589999999991 0.23752957999999999 0.0855473999999999957 0.186326560000000002 -0.305752299999999977 0.220097719999999997 0.24146608 -0.111504409999999998 0.0680314100000000005 0.262977200000000022 150 0 150 0 3.49039600000000005 212.070999 1.48558331810284994 1.44924676812085007 31 false 0.065831600000000004 1.53552041893925995 0.134457842920265996 0.106286240000000004 17 10 1.09642259999999991 0 17 false 149 223.329358353433008 1.77490848738805007 125.825996 19.816002000000001 11 78.2365551074440049 12.9552789880406998 6.03897100000000009 20.6178649999999983 13 252.541284219929992 7.4954982949229203 33.6923940000000002 18.7560879999999983 1.48112120000000003 0 1.86177640000000011 0.801862700000000039 1.05991360000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.419795794453989 -63.0344313219439982 22.7185685472609009 -12.9022190169745006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481380628999381632 2481380628999381632 1094624285 2015.5 25.8072269778893002 0.0371155973210533022 -3.15979307915671992 0.0350873385815793984 2.66709459071569022 0.047325626663015298 56.3562429999999992 43.806948786893102 0.0838366059162291011 -17.1480894752294013 0.0825890003389681965 0.268024700000000005 0.33380470000000001 0.0556451119999999966 0.034502465000000003 -0.250183700000000009 0.0542174799999999985 -0.0910877900000000018 -0.156331550000000014 -0.0569411849999999983 0.530181470000000044 147 147 147 0 2.975603 197.447998 0 0 31 true 303.403380000000027 1.60061942581270999 0.0104935594245949993 0.120901320000000007 17 10 0.0629189299999999979 0 17 false 144 219945.849952034012 52.9647502715381009 4152.68018 12.3325770000000006 14 119104.573559500001 139.826998595504989 851.799560000000042 12.6615669999999998 14 145805.325245560001 117.187125851996996 1244.20949999999993 11.852487 1.20443239999999996 0 0.809080099999999969 0.328989980000000015 0.480090139999999999 4.67543224285638015 4.36016554464126038 5 5500 3.5 0 NOT_AVAILABLE 152.479743753169998 -63.0213368258092004 22.7472968118593002 -12.9134716341513993 100001 5822.33008 5800.25 5936.72998 0.0599999987 0.0170000009 0.281599998 0.0340000018 0.00889999978 0.142100006 200111 1.08457209999999993 1.04317820000000006 1.0928464 1.21786700000000003 1.18773829999999991 1.24799569999999993 +1635721458409799680 Gaia DR2 2481380628999380096 2481380628999380096 1279402783 2015.5 25.8106988772967014 0.0373315062865635025 -3.1538906253418002 0.0315914412901927011 0.541040171746037024 0.0463196295896950994 11.6805810000000001 11.7061284697521 0.0881273325204255942 -8.97438750385544992 0.0669482802514415054 0.248347399999999996 0.170291570000000003 0.1904835 0.0626201200000000013 -0.242573630000000012 0.0824060499999999946 -0.0828875399999999957 -0.23554101999999999 0.0238627679999999995 0.376336249999999983 141 0 139 2 0.157716859999999987 135.923996 0 1.73613222438441009e-15 31 false 22.1484780000000008 1.61693360627495997 0.0102655253514693998 0.0807934899999999956 16 9 0.0924286250000000004 0 16 false 139 18520.6976174049014 11.4195372826240007 1621.83997 15.0192219999999992 15 10694.5455082974004 38.5412130746163015 277.483369999999979 15.2784820000000003 14 12020.1475116919992 36.7386118508230979 327.180240000000026 14.5621449999999992 1.22644909999999996 0 0.716337200000000007 0.259260180000000007 0.457077029999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.480888087453991 -63.0145113643330035 22.7528293832565005 -12.9092555487060991 100001 6371.68018 6072 6881.50977 0.253699988 0.0241999999 0.615100026 0.129500002 0.0137 0.314099997 200111 1.28448830000000003 1.10121010000000008 1.41440729999999992 2.45002630000000021 1.9836878 2.91636469999999992 +1635721458409799680 Gaia DR2 2481380835157810176 2481380835157810176 1328991335 2015.5 25.8209543833920989 0.0845912574682794044 -3.12430960452233997 0.0646035579389628023 0.612490376698743955 0.103692450547684001 5.90679839999999956 0.297525852804473023 0.167159577836643009 -6.24069650875696968 0.120469487639578002 0.0619729870000000002 0.385155899999999995 0.00974613199999999937 0.152975720000000009 -0.300608629999999988 0.198822809999999989 0.0984487760000000017 -0.0991331599999999979 0.0136743019999999993 0.302078249999999993 130 0 130 0 0.514776050000000041 132.623001 0 0 31 false 4.00960699999999992 1.55662489031231011 0.0198353548849432015 0.0424355120000000016 15 10 0.157490980000000003 0 15 false 130 3950.45023444411981 3.8684335492586599 1021.20001 16.6967490000000005 15 2155.19838798091996 23.3351366986975997 92.3585049999999939 17.017669999999999 15 2700.84988262257002 14.1236060757205006 191.229479999999995 16.1831679999999984 1.22923920000000009 0 0.834501269999999962 0.320920939999999988 0.51358029999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.472510900346009 -62.9834399667803027 22.7737477637986991 -12.8855043666090001 100001 5663 5512 5847.5 0.0185000002 0 0.134100005 0.00499999989 0 0.0502999984 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384541713978624 2481384541713978624 642998925 2015.5 25.6728704285830993 0.417596033210367978 -3.10602452259497008 0.406340215768619006 0.0394846750027317006 0.608707819472531053 0.064866389999999996 10.1366688748053004 1.07238991064144007 5.44631227720458977 0.650646825657584027 0.21697298000000001 -0.0167185699999999986 0.157692610000000011 0.259159619999999979 -0.64016426000000004 0.487173940000000028 0.488534699999999988 -0.4030339 -0.32660842000000001 0.475230460000000021 158 0 157 1 2.06715999999999989 190.190994 0.940559356846064953 1.01467791806990992 31 false 0.124225940000000007 1.42816192551992005 0.101094368709735996 0.077866249999999998 18 9 1.04364750000000006 0 18 false 155 315.020825223012992 1.59276663145981989 197.781998 19.4425179999999997 14 109.450615459575999 13.5827756096299002 8.05804400000000065 20.2533439999999985 15 380.952473527270001 6.7305689962864701 56.6003380000000007 18.3097439999999985 1.55673229999999996 0 1.94359970000000004 0.81082535 1.13277439999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.161914799127999 -63.0316646085471035 22.6395888277976987 -12.8141598475785994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384477290068992 2481384477290068992 1333721678 2015.5 25.674472299592999 0.0368917805098738019 -3.10893466491602988 0.0294690708671894001 1.16075498925825005 0.0437234923130613018 26.5476279999999996 8.83055802493426079 0.0806973234794488015 4.59696813819146044 0.0635464967646551943 0.063348790000000002 0.278890939999999976 -0.0133491819999999994 -0.00259184399999999983 -0.277902480000000007 -0.0701945600000000031 -0.212751629999999997 0.00309692739999999989 0.180451909999999993 0.242426100000000005 176 0 176 0 -2.33608800000000016 130.776001 0 0 31 true 14.7403554999999997 1.55370952614466007 0.0099742548606980997 0.00057759230000000003 20 10 0.0825429260000000026 0 20 false 176 12460.8635219675998 6.75610295688510032 1844.39001 15.4494950000000006 19 6100.93072917505015 19.591542683086999 311.40634 15.8878974999999993 19 9144.40907091940062 20.4533868751099988 447.085329999999999 14.8590309999999999 1.22345769999999998 0 1.02886680000000008 0.438402179999999975 0.590464600000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.167883611435002 -63.0335883691207002 22.6400170161474996 -12.8174542450091007 100001 5136 4998.06006 5373.66992 0.0329999998 0.00800000038 0.291999996 0.0140000004 0.00439999998 0.129999995 200111 0.791418599999999972 0.722960950000000047 0.835705640000000027 0.392651499999999987 0.359452160000000021 0.425850840000000008 +1635721458409799680 Gaia DR2 2481384610433456000 2481384610433456000 280466097 2015.5 25.6983781055767011 0.277878483188865988 -3.10541229654051998 0.200379295525740991 0.667359554281378053 0.310972580118037023 2.14604000000000017 2.15487598994663987 0.678811019486706968 -5.51737635431624973 0.412737644928535985 -0.00442872849999999957 0.0914511600000000036 -0.041003524999999999 -0.011091488 -0.298068500000000014 -0.0129289090000000006 0.00283385370000000013 -0.0338934099999999988 0.144303459999999995 0.0638121400000000033 146 0 146 0 1.45750019999999991 166.173996 0.664853020178387988 1.16876220713051993 31 false 0.279862249999999979 1.37607674039401995 0.0713830621116219033 -0.0354321900000000023 17 10 0.597152099999999963 0 17 false 144 562.427013429243971 1.49593881374399995 375.968994 18.8131999999999984 15 194.744440837674006 17.9813649730463005 10.8303480000000008 19.6277259999999991 15 590.908075045731948 9.72689605474178087 60.7499120000000019 17.833120000000001 1.39689679999999994 0 1.79460529999999996 0.814525599999999961 0.980079649999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.211872878891995 -63.0200193422674033 22.6641116266177001 -12.8229541923730999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481384610433457536 2481384610433457536 161193030 2015.5 25.6982170445152001 0.163515532080421994 -3.10121660962338996 0.130857487016190988 0.10393984152987 0.20064247381054201 0.518035099999999971 6.51811645014459007 0.399106199258065009 -3.21093106095400005 0.278662383581028017 0.0605956169999999975 0.0455567580000000028 -0.0288262500000000012 -0.103569530000000007 -0.39155230000000002 -0.150743130000000003 -0.213872389999999996 0.0573089499999999974 0.315281120000000026 0.138657050000000004 145 0 145 0 -0.516743660000000049 130.891998 0 1.69852201187039993e-15 31 false 0.771426999999999974 1.70948560782581005 0.0446034051994256969 0.00924892899999999948 17 9 0.356543449999999984 0 18 false 144 1069.08552602713007 2.16924307170399011 492.838013 18.1158350000000006 15 655.389875760110044 20.3715250816262987 32.1718600000000023 18.3101389999999995 16 667.305569163342966 10.9283252974374996 61.0620159999999998 17.7011089999999989 1.23722139999999992 0 0.609029770000000026 0.194303510000000013 0.414726260000000013 \N \N 0 \N \N \N NOT_AVAILABLE 152.207523009769005 -63.0163133102067974 22.6655399985064996 -12.8189931479458998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382033453152128 2481382033453152128 1312491369 2015.5 25.7171851623863006 1.09730955422129006 -3.10081044517978999 1.12523228227209993 0.901874769544863009 1.28658413487682011 0.700983899999999993 1.73545356816938989 2.54959637993486998 0.053078395167693998 2.86185073580780003 0.103203854999999997 0.143109189999999997 -0.00887417000000000067 -0.118565480000000001 -0.36409205 -0.272025469999999991 -0.594883399999999951 0.0892744199999999932 0.364171330000000015 0.332549270000000008 116 0 115 1 -0.353615300000000021 104.194 0 0 31 false 0.0189888460000000002 2.0854953650306598 0.307234560693204983 0.0107253650000000006 14 9 2.85951159999999982 0 15 false 116 100.719007054136 1.56026002091901006 64.5526962 20.6805880000000002 12 58.5553944080827975 5.04713880185455999 11.6017010000000003 20.9324699999999986 12 96.9571268381812956 12.6233460203484 7.68077849999999973 19.7954709999999992 1.54402360000000005 0 1.13699909999999993 0.251882549999999983 0.885116600000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.244691513394002 -63.007687837285502 22.6837580302968007 -12.8255773288566992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481382033453079296 2481382033453079296 1177805986 2015.5 25.7229596518772006 1.80022075192971998 -3.1036811600396299 1.64819215004308006 \N \N \N \N \N \N \N -0.367032399999999981 \N \N \N \N \N \N \N \N \N 83 0 83 0 0.574559599999999948 84.6922989 1.64113320880923008 0.330190926274932017 3 false 0.0176382879999999985 \N \N -0.129591690000000009 11 8 4.46849629999999998 0 11 false 85 95.2843476131035061 1.47272586390336002 64.6993027 20.7408119999999982 9 67.792520210897095 12.8884909702551003 5.25992700000000024 20.7734340000000017 10 81.5276399831925005 9.41501637460313034 8.65931999999999924 19.9836579999999984 1.56710060000000007 0 0.789775849999999946 0.0326213840000000033 0.757154459999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.258882309948007 -63.0077540954734019 22.6881756329810997 -12.8303663643728996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381758575661952 2481381758575661952 1284895389 2015.5 25.7395494082371989 0.299921353838381977 -3.11190065311946018 0.231368861513013002 0.141845832216305007 0.357274584970230014 0.397021899999999983 4.72734293091381996 0.632930904105916015 -4.80935512702053014 0.423637371058251999 0.168490840000000003 0.272493199999999991 -0.0174681710000000011 0.099168085000000003 -0.165214780000000006 0.0631718339999999962 -0.0250017030000000001 0.00330370250000000011 0.18198547000000001 0.216818330000000004 151 0 150 1 -0.823558699999999977 130.798996 0 0 31 false 0.222084370000000003 1.60726074684291009 0.0770729602266733982 0.0816191799999999995 17 10 0.565637049999999975 0 17 false 149 446.759131491582025 1.70192264185086994 262.502991 19.0631829999999987 14 247.183077002433009 5.16579336000790956 47.8499759999999981 19.3688409999999998 14 275.134558553529985 9.8482385670903092 27.9374390000000012 18.6630569999999985 1.16912579999999999 0 0.705783840000000051 0.305658339999999973 0.400125500000000023 \N \N 0 \N \N \N NOT_AVAILABLE 152.299624910896 -63.0079116871191971 22.7008783547291983 -12.8440987162576992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381792935400448 2481381792935400448 1616925366 2015.5 25.7515924771150999 0.791664717033203957 -3.10616461521015985 0.58276635771343599 1.16482132885519007 0.92629470216044596 1.25750629999999997 -0.544659794221640015 1.72634338216331007 -5.52360241342880975 1.0575951760898199 0.119745299999999999 0.207183929999999988 -0.070406590000000005 0.106803596000000001 -0.214355230000000008 0.0894800399999999968 0.012614531 0.016398933000000001 0.16582036 0.186516459999999995 149 0 148 1 5.18425099999999972 248.845993 2.74046334199194019 3.43781538892952021 31 false 0.0335701929999999982 1.66401677867971998 0.189303597109731991 0.0602701380000000009 17 10 1.52932249999999992 0 17 false 144 165.202412297498995 1.59479665359372991 103.587997 20.1433239999999998 11 64.0062153067422059 11.3232341384021993 5.65264399999999956 20.8358330000000009 13 195.492641822975003 4.32422758957261966 45.2086830000000006 19.0340939999999996 1.5707933999999999 0 1.80173870000000003 0.692508699999999977 1.10922999999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.317924422993002 -62.9974951534276002 22.7145112768128001 -12.8431831609217006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381797230484352 2481381797230484352 659794240 2015.5 25.7490707803225014 0.0297798401404748003 -3.10089231730921 0.0257580597371467011 2.24935564776128016 0.0353512151645705985 63.6288070000000019 17.5842707077718003 0.060924963972184297 -31.2929701487717011 0.0554148090759983974 0.206275139999999996 0.382013099999999994 -0.0201906700000000008 -0.059676899999999998 -0.119375414999999999 -0.164178450000000004 -0.373799199999999998 0.0136761729999999998 0.190886420000000001 0.314020899999999992 148 0 148 0 6.08770200000000017 271.612 0.117651761425213996 2.85625396010216992 31 true 34.832535 1.54446325563608999 0.00798228978835936048 0.0736185240000000046 17 10 0.0695037200000000049 0 17 false 148 57456.2515998157978 16.0624332368766005 3577.06006 13.7900229999999997 15 27383.2667619759013 55.0947617269576 497.021239999999977 14.2576750000000008 15 42943.4162348913014 107.143412104052004 400.80313000000001 13.1796790000000001 1.22400400000000009 0 1.07799629999999991 0.46765232000000001 0.610343929999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.307859668893997 -62.9938547239796023 22.7140964562732997 -12.8373544506818007 100001 5062 4956.6001 5221.9502 0.271299988 0.131200001 0.3574 0.136999995 0.0644999966 0.172099993 200111 0.909106999999999998 0.85426740000000001 0.948181599999999958 0.488892400000000005 0.470930930000000025 0.506853899999999968 +1635721458409799680 Gaia DR2 2481381724218730368 2481381724218730368 305351165 2015.5 25.7555255741143014 1.15977337556772997 -3.11839730766621015 1.72145999565650998 \N \N \N \N \N \N \N 0.491839740000000025 \N \N \N \N \N \N \N \N \N 111 0 108 3 -0.00647497600000000034 102.241997 0 0 3 false 0.0218153479999999983 \N \N 0.22270029999999999 13 8 4.22420740000000006 0 13 false 112 103.859301777235999 1.27175343355506998 81.6661987 20.6472529999999992 9 46.9052051455872032 13.8895316248061 3.37701850000000015 21.173335999999999 12 132.03439527386999 7.85728426105896993 16.804075000000001 19.4602029999999999 1.72290399999999999 0 1.71313289999999996 0.526082999999999967 1.1870499000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.33749270298901 -63.0067769545575018 22.7136470282902998 -12.8560031622478999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381896014615680 2481381896014615680 1371824224 2015.5 25.7575681419889015 0.778244921324030003 -3.10178532870382018 0.605147098536835015 0.381955295470515988 0.902067457992968946 0.423422100000000023 0.439319453523887016 1.68824372986871007 -10.0415890325402994 1.10967320391388991 0.189034570000000013 0.200090939999999995 -0.0787791300000000028 0.0934259149999999983 -0.145788859999999992 0.0731508599999999981 -0.0785509499999999944 0.0441643099999999983 0.183603110000000014 0.232605599999999996 131 0 130 1 0.546199439999999981 133.139999 0 0 31 false 0.0373800359999999984 1.69592767279847001 0.197692038737281001 0.115009799999999995 15 10 1.50907849999999999 0 15 false 129 139.896143610677996 1.37869031794310004 101.470001 20.3238500000000002 10 45.3046111238150004 8.10739723709574989 5.58805849999999982 21.2110330000000005 13 152.053784950327014 9.75353641864770005 15.5896050000000006 19.3069270000000017 1.41074929999999998 0 1.90410609999999991 0.887182240000000011 1.0169239000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.325522899280003 -62.9909470756437031 22.7218535912587996 -12.8413028084383001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481381827295127808 2481381827295127808 953562568 2015.5 25.7774798823461992 0.035315195886878599 -3.10482313367662011 0.0309200894933912007 4.85842355926758973 0.042147374285682597 115.272270000000006 67.656958323534397 0.0686566970362462031 -17.7569737278784991 0.0659547113740536067 0.220947009999999999 0.443678650000000008 -0.0508433999999999969 -0.0759657599999999933 -0.102260970000000007 -0.210759950000000001 -0.435024469999999996 0.0653190700000000068 0.209496739999999987 0.333559270000000019 161 161 160 1 2.2926403999999998 198.184998 0 0 31 true 325.18689999999998 1.55250005876895991 0.00854736691568386969 0.0569399599999999978 18 10 0.0501436700000000013 0 18 false 160 242390.974881467002 118.784741635138005 2040.58997 12.2270749999999992 15 116141.408936345004 219.853174791425005 528.268069999999966 12.6889199999999995 15 179170.963472158997 352.753833035986986 507.920700000000011 11.6287509999999994 1.2183307000000001 0 1.06016920000000003 0.461845400000000017 0.598323799999999961 5.6029377832371301 1.5991380217498099 9 5500 4.5 0 NOT_AVAILABLE 152.367810737945007 -62.9849749880009 22.7396753757029018 -12.8514333917329004 100001 5205.58984 5030.77979 5618.47998 0.158000007 0.134000003 0.216100007 0.0790000036 0.0649000034 0.101099998 200111 0.807008269999999972 0.692754899999999951 0.86406654000000005 0.430853199999999992 0.425467819999999997 0.436238559999999997 +1635721458409799680 Gaia DR2 2481381865949960960 2481381865949960960 445292267 2015.5 25.7784149188555993 0.179074000370995995 -3.09879754041297995 0.121012628659181998 0.387589743633907025 0.209335040064176997 1.85152830000000002 5.30581531807990014 0.335332839740030975 -0.856326630379407039 0.219193209967243008 0.000802987700000000037 0.427036819999999984 -0.031332314 0.14397763999999999 -0.222952600000000001 0.0953673500000000035 0.000320679799999999985 0.00831071599999999924 0.162450860000000002 0.169614910000000008 142 0 141 1 2.10982899999999995 173.063995 0.344618371925257017 0.865303964518408963 31 false 0.825980900000000018 1.59054108937708993 0.0381569163918746984 -0.000348227740000000023 16 10 0.299005100000000024 0 16 false 140 1247.99244209200992 2.60503263344399016 479.070007 17.9478359999999988 14 650.052443071685047 16.5035250945991017 39.3887020000000021 18.3190169999999988 14 852.409275237724955 11.2296505889024996 75.9070099999999996 17.4352990000000005 1.20390280000000005 0 0.883718499999999962 0.371181499999999998 0.51253700000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.363848639100013 -62.9791491824587979 22.7428366601230003 -12.8461722129594005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386912536423168 2481386912536423168 398335648 2015.5 25.8138771078467997 9.98384395056113938 -3.11009067753446988 14.4881617767914008 \N \N \N \N \N \N \N 0.779863540000000022 \N \N \N \N \N \N \N \N \N 39 0 39 0 1.24303359999999996 44.5122986 4.93738197987959992 1.27480419837925996 3 false 0.00975570000000000083 \N \N 0.397842499999999988 5 3 10788.0339999999997 0 5 false 42 76.2587612278701954 2.26056191158729014 33.7344017 20.982641000000001 3 51.7107554180761966 3.23390095291050983 15.9902099999999994 21.0674360000000007 4 84.237322025739104 21.7770943259750993 3.86816169999999993 19.9481579999999994 1.78272080000000011 0 1.119278 0.0847949999999999954 1.03448300000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.444789740760996 -62.9737704491370991 22.7723628938942007 -12.8696836523656994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386912536429696 2481386912536429696 85008854 2015.5 25.8152321823659996 0.709156098443298966 -3.10586782484952018 0.543876991752390015 3.8125651934038598 0.822283439430797958 4.63655849999999958 16.1758494950884 1.68251494404419999 -5.88722704376214967 0.928224656583474972 0.114909600000000001 0.0717859700000000045 -0.000387008130000000014 0.133195029999999992 -0.219903989999999994 0.161357219999999996 0.289163769999999987 -0.099028320000000003 0.088336609999999996 0.0802095099999999978 130 0 128 2 3.0593357000000001 176.643997 2.44252810657549979 3.51892493144366014 31 false 0.0477429960000000028 1.38878955479408006 0.153161876238780997 0.0491895099999999988 15 10 1.48067750000000009 0 15 false 126 205.226917092629009 1.51345302085260003 135.602005 19.9077799999999989 11 44.6517842329526005 5.88154598099588988 7.59184459999999994 21.2267909999999986 13 318.604701705358991 9.94144826703193019 32.0481199999999973 18.5037899999999986 1.77002360000000003 0 2.72300150000000007 1.3190116999999999 1.40398979999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.443384898225986 -62.9693823115209028 22.7752448546111985 -12.8662529732908997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386706377995520 2481386706377995520 840262168 2015.5 25.8253648286278015 0.33897059813970698 -3.11643624441135003 0.263129936270624976 0.397118471265461015 0.397979758180666998 0.997835899999999998 -1.28962399295899011 0.768010468722895023 -3.47034740624243021 0.451016625560987983 0.159151760000000003 0.129119099999999987 -0.0217249129999999985 0.16598251 -0.20461109999999999 0.197562440000000006 0.219312430000000003 -0.0672878600000000049 0.0793398099999999967 0.168420139999999996 135 0 134 1 2.37046739999999989 170.141006 0.579347186491561028 0.587431650318431031 31 false 0.19772751999999999 1.40762096736910003 0.0763859890140611009 0.0690059660000000019 16 10 0.681687500000000002 0 16 false 133 424.004486278418995 1.92993082906969993 219.699005 19.1199399999999997 12 152.81445774547899 10.2257243025449007 14.9441199999999998 19.8909780000000005 12 434.592732355174974 10.0246196352994001 43.3525399999999976 18.1667139999999989 1.3853797000000001 0 1.72426410000000008 0.77103805999999997 0.953226099999999965 \N \N 0 \N \N \N NOT_AVAILABLE 152.473602313473009 -62.9744322854222034 22.7809161803474005 -12.8797989003167999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386706377995648 2481386706377995648 983610484 2015.5 25.8292358138204996 0.291581754129003001 -3.1138615159462999 0.248145816810111997 1.20596462476860999 0.355648596655413984 3.39088820000000002 0.484702318713475022 0.66735336765298503 -3.05054942077385993 0.469732937496569025 0.20076157 0.0793461050000000001 -0.0479014099999999984 0.114996769999999998 -0.311993240000000005 0.136058800000000008 -0.0290985479999999984 -0.0287802280000000014 0.0889474749999999981 0.304453370000000001 128 0 126 2 1.1303493 138.718002 0.39698003866397702 0.286688211785301017 31 false 0.261173040000000023 1.52334191990716006 0.0657021715654302063 0.127334200000000008 16 10 0.609219850000000007 0 16 false 125 503.960722996184984 1.95874260917665999 257.287994 18.9323729999999983 9 156.080138400191004 11.8979789449860007 13.1182060000000007 19.8680200000000013 10 539.184010602369995 9.05495770927715071 59.5457230000000024 17.9325769999999984 1.3795999000000001 0 1.93544200000000011 0.935646059999999946 0.99979589999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.478752531747006 -62.9704207738965991 22.7855741401189 -12.8788237713506 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386672018257024 2481386672018257024 127429754 2015.5 25.8411790185318999 0.349355057060294016 -3.11623717219866014 0.272396984890122984 0.0255769749871131991 0.408935801017848988 0.0625452100000000039 7.22054236031569996 0.788060417777760036 -9.56982530692953048 0.45455508413592699 0.160620879999999994 0.104865630000000001 -0.0449227540000000022 0.197445559999999992 -0.277494579999999991 0.251939360000000001 0.248400850000000006 -0.0618628099999999972 0.0360643000000000005 0.215922399999999987 136 0 132 4 0.339226000000000028 131.798996 0 0 31 false 0.197919619999999991 1.31685576051477993 0.0789814055628233064 0.0860413240000000024 16 10 0.703910499999999995 0 16 false 133 393.929464087654992 1.76733816277614997 222.893997 19.199819999999999 13 134.098867966092996 14.4077482016903993 9.30741300000000038 20.032824999999999 13 389.291544056174985 11.9608804188810005 32.5470660000000009 18.2862319999999983 1.32863989999999998 0 1.74659349999999991 0.833005899999999966 0.913587570000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.504618494438006 -62.9673106771359983 22.7960576749328006 -12.8854132294943007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386740737734144 2481386740737734144 1451752861 2015.5 25.8368108162849985 2.40888571467253998 -3.1103244203538698 2.13056440052169016 \N \N \N \N \N \N \N 0.469689430000000019 \N \N \N \N \N \N \N \N \N 63 0 62 1 -1.99415969999999998 37.7406006 0 0 3 false 0.0208414160000000015 \N \N 0.301926880000000009 8 6 18.0844099999999983 0 8 false 61 94.8354478233700036 1.4016522791744801 67.6597977 20.7459400000000009 4 63.3237983972435003 9.40547686876734979 6.73265169999999991 20.8474709999999988 6 78.7023688757838045 15.9302887344304995 4.94042349999999963 20.0219500000000004 1.49760629999999995 0 0.825521469999999979 0.101531979999999994 0.723989499999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.490279027071011 -62.963918656797901 22.7941234966096005 -12.8783117903158999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191817941611520 2481191817941611520 1232933521 2015.5 25.8529444418254997 0.0357384605563079993 -3.21289766042090985 0.0330298447578815033 0.701769410923263948 0.0441271760691264031 15.9033379999999998 15.1266114846579001 0.0767058905154865966 -6.24511570515073977 0.0753174739642919061 0.247016769999999997 0.367433129999999997 0.0161993840000000007 -0.0172146260000000002 -0.193439499999999986 -0.0535121799999999995 -0.201432909999999993 -0.0669841500000000062 0.0548448399999999989 0.442396640000000008 150 150 150 0 0.546830240000000023 153.817993 0 0 31 true 316.442799999999977 1.53059431392231993 0.0103659406550017999 0.0979212200000000033 17 10 0.0569296140000000034 0 17 false 147 224726.499124063004 58.0842225590178032 3868.97998 12.3092299999999994 15 101049.298412819 126.712358983667002 797.470000000000027 12.8400545000000008 14 175985.184252581006 168.496663178694007 1044.44309999999996 11.6482299999999999 1.23276279999999994 0 1.19182490000000008 0.530824659999999948 0.661000249999999956 26.5783047370968006 0.826973092216606975 6 5000 3 0 NOT_AVAILABLE 152.621708828511998 -63.0489015276358984 22.7708409352086001 -12.9796322276274001 100001 4909.5 4849.0498 5115.66992 \N \N \N \N \N \N 200111 6.23018099999999997 5.73812700000000042 6.38648560000000032 20.3163240000000016 18.5009100000000011 22.1317389999999996 +1635721458409799680 Gaia DR2 2481191852301584000 2481191852301584000 386978231 2015.5 25.8670041468208005 0.70087507447993902 -3.19883780889525005 0.844824797528592963 -1.46880543321344992 0.877318768108896974 -1.67419819999999997 -1.24795838423857997 1.88318190703571009 -1.43251713786738 2.16346028722602002 0.253847570000000022 0.0830808799999999958 -0.194848510000000003 -0.0904033600000000021 -0.418807600000000002 -0.356265200000000004 -0.663152300000000028 0.17168833 0.262403039999999976 0.659744899999999967 117 0 117 0 1.57093759999999993 136.432999 0 0 31 false 0.0494331230000000024 1.63081691268841 0.211688570212968996 0.192156049999999995 14 9 2.3614320000000002 0 14 false 116 162.278819051921005 2.10137197218046001 77.2251968 20.1627100000000006 10 147.980986137614991 15.9465761322797004 9.2797970000000003 19.9258729999999993 10 126.181089202915004 14.6296183777026005 8.62504299999999979 19.5094339999999988 1.68945070000000008 0 0.416439060000000028 -0.236837390000000009 0.653276439999999958 \N \N 0 \N \N \N NOT_AVAILABLE 152.635794153705007 -63.0300878056333005 22.7895392788845008 -12.9717116437239 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191787877129216 2481191787877129216 552033414 2015.5 25.8697709737306987 3.03872051447725999 -3.20937556492637999 2.58436498043813989 \N \N \N \N \N \N \N 0.262174000000000018 \N \N \N \N \N \N \N \N \N 111 0 110 1 56.0487800000000007 4803.0498 17.5937868915363005 253.431361172702992 3 false 0.00305545239999999987 \N \N 0.140000910000000006 17 10 5.68094439999999956 0 17 false 149 325.324602657844025 4.1481343458916804 78.4266968 19.4075740000000003 14 491.493804221542973 11.8041953654267004 41.6372149999999976 18.6225929999999984 14 1019.38975021732006 10.9207696144629001 93.3441300000000069 17.2410700000000006 4.64423370000000002 0 1.38152309999999989 -0.784980800000000034 2.16650400000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.651526289492011 -63.0383208856413972 22.7882040686730001 -12.9825275040193997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191890956069248 2481191890956069248 1664638443 2015.5 25.8833956034490988 1.10706288305857004 -3.20561136615935993 1.53725574986318003 \N \N \N \N \N \N \N 0.163856059999999998 \N \N \N \N \N \N \N \N \N 102 0 101 1 -1.74608059999999998 73.2232971 0 0 3 false 0.0216561200000000009 \N \N 0.203406799999999999 12 8 4.85505999999999993 0 12 false 103 95.4093047527216953 1.4426117765042199 66.1364975 20.7393900000000002 8 41.5798989784442981 10.9458307679661999 3.79869749999999984 21.3041799999999988 10 70.5500251481129936 7.17022400652415026 9.83930600000000055 20.1406759999999991 1.17525149999999989 0 1.16350360000000008 0.564790699999999979 0.598712899999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.674764746029012 -63.0289309137817 22.8026073457928007 -12.9840226538943995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191886661321856 2481191886661321856 1554887953 2015.5 25.8874055099926004 0.293617825041910974 -3.20250341150625983 0.251004715982869997 0.601548967115419053 0.369293372631738004 1.62891889999999995 14.0704861522846993 0.670282118977509001 -5.45241281618443008 0.487575387170837982 0.177961619999999987 0.159592299999999992 0.0542458800000000033 0.115169830000000001 -0.356546250000000009 0.151284749999999996 0.0255187530000000017 -0.121621980000000005 0.0404921400000000029 0.338386149999999997 143 0 143 0 1.99623020000000007 173.115005 0.710749154104464043 1.00824553046971999 31 false 0.229581279999999999 1.38459761575292006 0.0718642728691085975 0.115055926000000003 16 10 0.620876800000000006 0 16 false 141 484.362781360534996 1.88772673209212005 256.584991 18.975439999999999 14 168.229306839538992 13.2655855438864005 12.681635 19.7866339999999994 15 501.913036881671019 8.31135294860722951 60.3888469999999984 18.010349999999999 1.38355460000000008 0 1.77628520000000001 0.811195400000000011 0.965089799999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.679651059220987 -63.0243727943762977 22.8076002662225008 -12.9826022452272998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192749949285888 2481192749949285888 410573831 2015.5 25.866164990839799 4.7837221531144003 -3.17350639509617016 8.11016700730269058 \N \N \N \N \N \N \N 0.955004630000000021 \N \N \N \N \N \N \N \N \N 62 0 62 0 2.61842560000000013 88.8775024 3.94635089815957985 2.0121839158611099 3 false 0.0177876390000000009 \N \N 0.546603740000000005 7 5 15.2552479999999999 0 7 false 62 118.248259302502007 2.16975973604036998 54.4982986 20.5063780000000015 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.609486174121997 -63.0077289513327017 22.7982865128857988 -12.9478429035090006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481192749949802368 2481192749949802368 1284440646 2015.5 25.8660294507379014 0.677666931677419981 -3.17332868637583987 0.587729980083547043 0.57939774852452397 0.811109572971696946 0.714327339999999977 7.46473179784218033 1.69154945412916002 -6.27239939831772997 0.906320257666786033 0.246950609999999987 -0.184362780000000004 -0.0895311899999999966 0.336726340000000013 -0.504432699999999956 0.46900662999999998 0.527374699999999974 -0.183698 -0.291338099999999989 0.338916150000000027 114 0 113 1 7.71274499999999996 264.423004 2.11542429109921004 4.96668204855076034 31 false 0.0754467550000000042 1.18877907523180992 0.142113594769606999 0.0356294600000000017 13 8 1.55426989999999998 0 14 false 110 274.860069108403991 1.7579502654813699 156.352997 19.5905859999999983 11 79.8413332906815043 8.37857820473501036 9.52922249999999948 20.5958199999999998 10 521.912354546421966 20.1593917720235005 25.889289999999999 17.9679259999999985 2.18930910000000001 0 2.62789340000000005 1.00523380000000007 1.62265970000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.609045813036005 -63.0076292100295987 22.7982243228708015 -12.9476279109979 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481191719157651840 2481191719157651840 1121630483 2015.5 25.9054190746302986 0.0385223814520845032 -3.19893954156628002 0.0327320350691042983 3.64459827725936014 0.0455202477530827002 80.0654300000000063 11.3083718017799004 0.0837665438097103948 -13.9238984279398998 0.0698461399982463066 0.107981489999999999 0.252720449999999985 -0.0222135730000000003 0.0828762400000000038 -0.183076600000000006 0.0853617400000000054 -0.0837451699999999938 -0.0732261599999999985 0.0282129220000000014 0.262872129999999982 129 0 129 0 1.49437489999999995 148.300995 0 0 31 false 19.8238279999999989 1.39962876530555991 0.0109629078210860004 0.0207905019999999989 15 9 0.0863610499999999948 0 16 false 127 16507.6625177827991 8.64805440962981997 1908.82996 15.1441520000000001 14 5559.91453496347003 11.1589456847340003 498.247279999999989 15.9887180000000004 14 16017.6306628418006 23.7330602150552004 674.907960000000003 14.2504240000000006 1.30712300000000003 0 1.73829359999999999 0.844566350000000021 0.893727300000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.71172469890999 -63.0132182156380978 22.8261111614511982 -12.9858920570757999 100001 4089.05005 3992.20996 4188.72021 0.335999995 0 0.680199981 0.165999994 0 0.392399997 200111 0.554669700000000043 0.528587099999999976 0.581905600000000023 0.0774913500000000005 0.0753331000000000001 0.079649600000000001 +1635721458409799680 Gaia DR2 2481197800831342720 2481197800831342720 1281623765 2015.5 25.907532693429701 0.100207548303488006 -3.18238577517174015 0.0814152375571025044 2.01666234925321985 0.119988509273636995 16.8071289999999998 5.89653875850295961 0.222935111805426994 -38.2319958378696967 0.148925145908677004 0.167463400000000012 0.18668056999999999 0.0213714800000000017 0.142928389999999989 -0.22996222999999999 0.175672650000000014 0.136186630000000003 -0.0955661099999999958 0.0532281319999999974 0.235417989999999994 142 0 142 0 1.28868270000000007 158.720993 0.103382935746645005 0.17822122964867701 31 false 2.15358759999999982 1.38470889510797002 0.0245260313150756984 0.0714509700000000025 16 10 0.204294950000000003 0 16 false 140 2358.48882284324009 3.03173824575164019 777.932983 17.2567799999999991 13 668.987569422361048 10.8552249126194997 61.6281620000000032 18.2878439999999998 14 2552.14888639253013 25.5825186979945016 99.7614399999999932 16.2446559999999991 1.36576279999999994 0 2.04318799999999978 1.0310630999999999 1.01212499999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.699751089508993 -62.9974403053058012 22.8343631721262987 -12.9712694806888003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481197865255801088 2481197865255801088 1213816765 2015.5 25.8974206716296003 0.158097693688439012 -3.1780348345593401 0.126301262874235987 0.576472980663147005 0.184498438596370995 3.12454130000000019 -1.91647330962662998 0.374261084920820997 -5.28173180681726961 0.231826582857663999 0.0886538999999999938 0.062279420000000002 0.0171402379999999986 0.102377739999999995 -0.23355627000000001 0.139511539999999989 0.209827419999999987 -0.117998086000000002 0.0669577699999999998 0.0936691760000000068 124 0 123 1 2.24075870000000021 155.078003 0.303186277011933014 0.724460166027864005 31 false 0.953556599999999976 1.5311447336850601 0.038414441636515001 0.0148260435000000003 14 9 0.332643299999999975 0 15 false 126 1315.99526723822009 2.58097986268117996 509.881989 17.890229999999999 12 553.540784469542018 13.2401706487643995 41.8076799999999977 18.4935149999999986 12 1082.29110012472006 9.3741793353520908 115.454490000000007 17.1760599999999997 1.24303779999999997 0 1.3174553 0.603284840000000044 0.714170459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.675568458800996 -62.9980047952440998 22.8263655814130004 -12.9635152422501996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481193024827708672 2481193024827708672 1622728469 2015.5 25.8509652337229987 0.0686727535024310026 -3.15362560114677981 0.0637652126315839951 11.0545846475076992 0.0890220335004618946 124.178070000000005 49.7070606925076035 0.166390188220845003 -25.7252974546534006 0.12896786312539199 0.109284800000000001 0.0919901099999999999 0.170234489999999988 -0.0907731400000000022 -0.23179203000000001 -0.110609589999999994 0.112595749999999994 -0.14838997000000001 0.260074599999999989 0.00473482530000000033 114 0 114 0 8.79794500000000035 296.036011 0.381374862216343979 12.3087759444103 31 false 5.48936840000000004 1.22356111422330005 0.0184788648187671004 0.0959304500000000004 13 8 0.152085969999999987 0 14 false 114 23522.7789076474 21.7999480461875983 1079.03003 14.7596445000000003 12 3873.87676874557019 24.0109568619356999 161.337880000000013 16.381022999999999 13 31289.6288740851996 66.2881923008842051 472.024170000000026 13.5234190000000005 1.49487039999999993 0 2.85760399999999981 1.62137890000000007 1.23622509999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.560167865052989 -62.9965783950138984 22.7912947139910997 -12.9237775862762998 100001 3974.73999 3648.44995 4172.52979 1.72300005 1.38960004 1.99510002 0.944999993 0.774299979 1.08899999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198621170047488 2481198621170047488 258928747 2015.5 25.8892147750493002 1.15443491423211997 -3.16091431968244008 1.18775892922519 3.00904472056762007 1.42313794065567989 2.11437320000000017 7.32388847072501026 2.95208246497599003 -4.18233066052424007 3.47117063373590007 0.022096178000000001 0.077952980000000005 0.0810731350000000045 -0.0223608970000000011 -0.515789700000000018 -0.19507642 -0.482005660000000002 0.0074481536000000001 0.270414800000000011 0.442274270000000025 84 0 84 0 -0.377244829999999975 73.7138977 0 0 31 false 0.0231558939999999998 1.78254480474260002 0.344753300908740012 0.0955569150000000062 10 9 3.46694609999999992 0 10 false 87 108.673033898225 1.77654009645801003 61.1711998 20.5980600000000003 5 64.7129171530966971 22.7983542743379992 2.83849069999999992 20.823912 7 101.882892547891004 6.20648679162592032 16.4155499999999996 19.7416669999999996 1.53300049999999999 0 1.08224490000000007 0.225851059999999992 0.856393799999999983 \N \N 0 \N \N \N NOT_AVAILABLE 152.64272030861801 -62.9862688218994009 22.8249961750974997 -12.9445821525299998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198724250344448 2481198724250344448 620290904 2015.5 25.8862168493654003 1.05841643513787997 -3.1498547664591201 1.04910449489956004 \N \N \N \N \N \N \N 0.261393959999999981 \N \N \N \N \N \N \N \N \N 105 0 103 2 -0.25240385999999998 93.8593979 0 0 3 false 0.0253920070000000012 \N \N 0.17488187999999999 12 8 5.3071003000000001 0 12 false 102 109.986136782138004 1.31720969306013003 83.4992981 20.5850200000000001 8 41.1236640699359981 13.4683578735736003 3.05335400000000012 21.3161580000000015 9 151.588646416383 14.1315509436424005 10.7269649999999999 19.3102529999999994 1.75215089999999996 0 2.00590519999999994 0.73113819999999996 1.27476689999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.626055967500008 -62.977668400122603 22.8263060309686985 -12.9331960055611006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386637658518400 2481386637658518400 1135075434 2015.5 25.8472136572781004 0.813608274124492992 -3.12498201676016008 0.649761162460590014 1.92445288975317008 0.961533764999419005 2.00144080000000013 15.0163957757975997 1.86151254996188009 -50.5571464718725991 1.1447511061651201 0.168555050000000012 0.104597375000000006 -0.0025051056999999999 0.161860809999999994 -0.265935839999999979 0.210037079999999987 0.185626550000000001 -0.090993433999999998 0.0432514250000000031 0.222555520000000007 129 0 128 1 4.27964599999999962 202.143997 2.78092052529669997 3.87857429648733998 31 false 0.0346964339999999982 1.30369918380569993 0.199380886318103995 0.0948670900000000011 15 10 1.66291820000000001 0 15 false 127 165.94158579583501 1.31849517198722999 125.857002 20.1384770000000017 11 51.4359208103888008 8.44621499899393946 6.08981900000000032 21.0732210000000002 14 217.540051821144004 7.62606054295682956 28.5258749999999992 18.9180719999999987 1.62090749999999995 0 2.15514949999999983 0.934743899999999961 1.22040560000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.524992034572989 -62.9725119801216024 22.7985126544197989 -12.8957599333402992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386637660492672 2481386637660492672 362938215 2015.5 25.8487988736908001 1.25597623502617006 -3.12438354267592011 1.13116390229357 0.0270874469162356996 1.37308663285509991 0.0197274129999999992 18.3395801539794014 3.3398497380002401 10.1561042076811994 3.05232654656290991 0.153278649999999989 -0.103124839999999995 -0.169399130000000009 0.0130193040000000006 -0.248429919999999999 -0.0995554000000000022 -0.485743140000000018 0.00205441420000000013 0.0493546700000000033 0.437825599999999981 95 0 94 1 0.277099499999999999 92.0647964 0.658479187144172973 0.0500714939152615002 31 false 0.0197405299999999992 1.53435532186825996 0.348651548767232977 0.0386251300000000006 11 8 3.39219159999999986 0 11 false 95 92.040388986256005 1.34415695099628008 68.4744034 20.7784200000000006 7 40.2194293014213997 8.2469102553264797 4.87690900000000038 21.3402980000000007 9 122.684942926611001 11.5829045842280998 10.5918980000000005 19.5399419999999999 1.76992269999999996 0 1.80035590000000001 0.561878199999999994 1.23847770000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.527539917028008 -62.9712778608040011 22.8002484787423008 -12.8957845728369005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198999128208128 2481198999128208128 359787479 2015.5 25.8600303710751014 4.9672429033624601 -3.12771505228458002 2.31077126271435995 \N \N \N \N \N \N \N -0.432018669999999994 \N \N \N \N \N \N \N \N \N 48 0 47 1 2.23398019999999997 65.0852966 3.23259251614808996 0.824979275950407986 3 false 0.0100618919999999994 \N \N -0.199876500000000012 6 6 12.228548 0 6 false 48 69.867979543720395 2.7492398703663401 25.4136009 21.0776709999999987 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.552924134774003 -62.9693302910593005 22.8096946534877993 -12.9030017060870996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198999127175296 2481198999127175296 403725762 2015.5 25.8590085016041016 0.316500143960932012 -3.12486349773468008 0.236630125841045008 0.536291776511169993 0.385023993741489989 1.39287889999999992 15.4353054565779004 0.656831738471929993 -12.6043321991127009 0.418140384527781017 0.0275527970000000004 0.290287139999999999 -0.00431440399999999998 0.150812009999999996 -0.360187099999999982 0.203447789999999989 0.146635879999999996 -0.0998287000000000063 0.0274020939999999984 0.241405229999999998 119 0 117 2 2.31127359999999982 149.466003 0.77464148108346198 1.75218026891034007 31 false 0.28828885999999998 1.37024927100137006 0.074015979082124303 0.0446091630000000003 14 10 0.590513100000000013 0 14 false 117 582.698259800189021 2.2253823139511999 261.84201 18.774754999999999 11 186.844606487480007 13.5397532168419001 13.7997055 19.6726880000000008 10 671.991100831565973 11.4192457957319995 58.8472399999999993 17.6935119999999984 1.47389440000000005 0 1.97917560000000003 0.897932049999999982 1.08124350000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.548144750959011 -62.9672197867279024 22.8097952679644997 -12.8999746850824 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198930408751488 2481198930408751488 1242842023 2015.5 25.8716176864138987 1.07976088460167996 -3.13704728604544014 1.12913095774172989 -0.39943075273460199 1.29771215043049004 -0.307796120000000006 9.73970932009560997 2.92186407036777984 -6.43344178240954001 3.10798383990284988 0.205565720000000007 -0.0269561260000000004 0.0167115200000000005 -0.0158103030000000012 -0.328550930000000019 -0.188754990000000011 -0.535983499999999946 -0.0887470699999999973 0.104630360000000006 0.542063239999999946 103 0 101 2 0.973336500000000049 109.399002 2.58007968092391993 4.23418559776289971 31 false 0.0219636630000000013 1.50260023948465005 0.323696898233086006 0.0756685299999999977 12 8 3.32268020000000019 0 12 false 101 110.039543077941005 1.73069182486841999 63.5811996 20.5844939999999994 9 54.1321323115110005 20.8558093773653006 2.59554220000000013 21.0177499999999995 9 168.486040235882001 18.9252398797265009 8.90271700000000088 19.1955099999999987 2.02307440000000005 0 1.82223890000000011 0.433256150000000007 1.38898279999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.584828761598004 -62.9726075437271007 22.8172196876317983 -12.9159305799290003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481199037781922688 2481199037781922688 301837634 2015.5 25.8764442810865987 0.0468639169815346021 -3.1268157184626002 0.0416996345864920001 3.16006336376756991 0.0550728287199818978 57.3797199999999989 34.4450470130312993 0.103960856238664995 0.266295441178327985 0.0830807388050329998 0.226369369999999986 0.255685900000000021 0.105905559999999996 0.0848737660000000033 -0.0973784199999999933 0.0832206300000000038 0.0989250400000000057 -0.137210310000000002 0.0725234599999999979 0.234500970000000003 122 0 122 0 1.09169910000000003 133.776993 0.0863751600986719936 0.456729512544847005 31 false 12.5431810000000006 1.41377086000656993 0.0124049470398363993 0.0765343599999999957 14 10 0.103013289999999993 0 15 false 120 12126.0712200966009 8.95103378710978959 1354.70996 15.4790659999999995 12 4034.4283928057298 16.9449177291620998 238.090759999999989 16.3369329999999984 13 11939.8605620512008 51.0989273165082025 233.661669999999987 14.5694219999999994 1.31735069999999999 0 1.76751140000000007 0.857867240000000031 0.909644099999999955 \N \N 0 \N \N \N NOT_AVAILABLE 152.584418767585987 -62.9612992844362012 22.8256730718015994 -12.9081833293403001 100001 4101.81006 3931 4368.4502 0.324499995 0 0.684099972 0.151999995 0 0.307999998 200111 0.542746839999999953 0.478512199999999999 0.590938500000000033 0.0751262099999999988 0.0722868140000000048 0.077965599999999996 +1635721458409799680 Gaia DR2 2481198758609117312 2481198758609117312 278131837 2015.5 25.8989061292386999 0.969882813285405043 -3.14662438454055016 0.939304044224406054 1.02233908753893998 1.17748130012179009 0.868242300000000022 4.00381155964293001 2.48339307602565995 -10.5512711309326992 2.63964012028821982 0.0377845470000000017 0.117975070000000001 -0.0419991349999999999 0.0648903549999999968 -0.412628769999999978 -0.149396790000000002 -0.484889400000000026 -0.0338169999999999998 0.101056895999999993 0.527212140000000051 104 0 103 1 1.84167670000000006 125.323997 1.98460680529310007 0.986711591963565948 31 false 0.0288782250000000004 1.36056514623291003 0.27266794806241601 0.0653509500000000049 12 9 2.80186370000000018 0 12 false 102 132.80375235116 1.46404070104994011 90.7104034 20.3803400000000003 5 51.8328823763469018 9.75075151632564996 5.31578350000000022 21.0648750000000007 8 179.755282848923997 11.1496816263324998 16.1220110000000005 19.1252160000000018 1.74383749999999993 0 1.93965910000000008 0.684534100000000034 1.25512500000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.647931728656999 -62.9691739654171982 22.8396149835050011 -12.9348432238792004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198758609003520 2481198758609003520 389335369 2015.5 25.9044240265962991 0.496953375702070987 -3.14742272241972021 0.387653241353776989 -0.181537572332179986 0.602010450256354024 -0.301552199999999992 4.91150052382472957 1.1375653350450099 -2.65601601216840022 0.635212122835942972 0.174997299999999995 0.0620507859999999967 -0.0530751719999999969 0.188660949999999994 -0.29252893000000002 0.238002149999999996 0.260379519999999975 -0.0605466370000000004 0.0407817550000000029 0.197439029999999988 137 0 136 1 1.50282720000000003 156.112 0.823824126392719958 0.599676404308685962 31 false 0.0951923900000000017 1.38009669829443005 0.110860461422295997 0.0817280400000000018 16 10 1.01172229999999996 0 16 false 137 262.235672382115979 1.59318088608155994 164.598999 19.6416359999999983 13 93.7730445498847018 10.6109513755795 8.83738300000000088 20.4211939999999998 12 266.409361652044026 6.80037919783668965 39.1756630000000001 18.6980460000000015 1.37350649999999996 0 1.72314830000000008 0.779558199999999979 0.943590159999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.659582774119002 -62.967455365355498 22.8445725349337003 -12.9376085767550002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198827328481536 2481198827328481536 680823354 2015.5 25.8955030696433006 0.916287104305260947 -3.13701527408897984 0.769738713746039971 0.482336478144965997 1.0821933828500101 0.445702670000000023 2.98947842255694995 2.21993557231877991 -7.91815153064998967 1.62211445854129011 0.167017310000000002 0.00852892199999999955 -0.0756044599999999983 0.0747919999999999974 -0.307347419999999982 0.0950682699999999964 -0.0937314300000000045 -0.0446816569999999996 0.0627195599999999936 0.289675559999999999 120 0 119 1 5.2981600000000002 213.160004 3.38159203901673999 4.4637259543836203 31 false 0.0271609610000000008 1.43118542459367992 0.247481366514473 0.089773859999999997 14 10 2.02353860000000019 0 14 false 115 151.719401106525993 1.40062837241464 108.321999 20.2357639999999996 12 88.352133969976606 10.4361744648335009 8.46594999999999942 20.4858459999999987 10 121.191096125648002 8.3600213292380392 14.4965060000000001 19.5532439999999994 1.38112349999999995 0 0.932601899999999984 0.250082020000000016 0.682519899999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.631886314333997 -62.962054096374402 22.8399917812436009 -12.9246576378524995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481198861688222080 2481198861688222080 853376357 2015.5 25.8976661326485988 0.386399145735564997 -3.12488850698782006 0.302951138607029991 1.45182312781638001 0.458595715333377008 3.16580180000000011 1.8031303072145799 0.899081849622981988 -1.39219312536170992 0.514829418766790003 0.148741399999999996 0.0404735769999999967 -0.0416555629999999996 0.16674412999999999 -0.317804750000000025 0.223026289999999988 0.22937152999999999 -0.0770763700000000052 0.0320293830000000015 0.191571820000000004 142 0 142 0 2.08984799999999993 173.804001 0.880500722066863029 1.06772673265781992 31 false 0.147211950000000008 1.58496660333591 0.0876159690980436029 0.0616608000000000017 16 10 0.799658949999999979 0 16 false 142 361.150777018051997 1.55401749211780005 232.397995 19.2941439999999993 13 205.454359457706005 16.1121428076314004 12.7515230000000006 19.5696000000000012 13 245.980517191972012 10.3715345529196004 23.7168869999999998 18.7846679999999999 1.24999009999999999 0 0.784931200000000051 0.27545546999999998 0.509475699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.624371394797009 -62.950219880842603 22.846620670628301 -12.9141706087364003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386672020232576 2481386672020232576 16767002 2015.5 25.8512260628770001 12.1755013099724998 -3.10931273310335987 3.7441691883997299 \N \N \N \N \N \N \N 0.854996700000000054 \N \N \N \N \N \N \N \N \N 59 0 59 0 3.55244450000000001 98.9685974 3.00593254309324998 1.03607896937654997 3 false 0.0167615360000000005 \N \N 0.059163331999999999 7 5 507.61126999999999 0 7 false 59 83.3166460912245981 1.49609323775721004 55.6894989 20.8865359999999995 6 21.9329626325094011 5.55962950079288998 3.94504020000000022 21.9986460000000008 5 110.359438134222003 16.8871635978889998 6.53510800000000014 19.6548960000000008 1.58782669999999992 0 2.34375 1.11211009999999999 1.23163990000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.51773495270001 -62.9566785594144989 22.8082384856606986 -12.8826567576511 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481386843816949376 2481386843816949376 642170367 2015.5 25.8591753111100005 0.214562537768195005 -3.09809429260499991 0.173934972901297003 1.52616357005453995 0.246726797181484991 6.18564199999999964 18.2624082165522985 0.477436524702123999 7.43306308801043958 0.290964225583400016 0.211911769999999999 0.152119349999999987 -0.0181075950000000006 0.211614250000000004 -0.179518769999999994 0.246877669999999994 0.258560840000000014 -0.0445812699999999992 0.0698942699999999945 0.220580069999999989 127 0 127 0 3.03156470000000011 174.897003 0.426702285589857011 0.796151643628481009 31 false 0.523932199999999959 1.32557767763744994 0.0482474424231858975 0.0933607500000000062 15 10 0.429088770000000008 0 15 false 126 842.391698239890047 2.18772543260736008 385.053986 18.3745800000000017 10 229.558759918260989 6.13695816815080963 37.4059519999999992 19.4491540000000001 11 937.210625740740056 12.9053019012460002 72.6221400000000017 17.3323269999999994 1.38506759999999995 0 2.11682699999999979 1.07457350000000007 1.04225349999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.522551635087012 -62.9431116692901966 22.8200377837092994 -12.8751366541099994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481199136566131712 2481199136566131712 52249813 2015.5 25.8840089989151991 0.356793244133511989 -3.10067716899005985 0.348786096063313011 3.3634883182836699 0.460660748852234014 7.30144299999999991 48.6057341733176997 0.912057722281170991 -6.82667126253678003 0.568253815407267049 0.376992370000000021 -0.185238609999999998 0.174365639999999988 0.352562900000000012 -0.543736400000000009 0.494889899999999994 0.502017099999999994 -0.341602599999999978 -0.298456900000000025 0.467636050000000025 131 0 130 1 2.00827799999999979 158.735001 0.736951556508359973 1.07445911448831 31 false 0.201639440000000003 1.17669954393964993 0.0834440623389823 0.119207869999999994 15 9 0.885823249999999951 0 15 false 131 444.611683414752974 1.79985433695340991 247.026001 19.0684129999999996 11 76.8248451539760993 9.14584801044028062 8.39996999999999971 20.6376339999999985 12 613.436924509054052 11.0379749611825009 55.5751339999999985 17.7924959999999999 1.55250479999999991 0 2.84513850000000001 1.56922150000000005 1.27591699999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.573986710697 -62.9345080626254969 22.8427259921148007 -12.8866434631346003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481199445803776000 2481199445803776000 1594139772 2015.5 25.9049599568165014 1.15517371316355 -3.10933620673512978 1.02217209085333005 -1.51856301641712998 1.21895006625764002 -1.2457959999999999 19.7856322158676008 3.2051660659508201 -0.116403675562209999 2.96638379058126 0.165354859999999992 -0.2349329 -0.316110759999999991 0.00143444610000000006 -0.256330579999999975 -0.0985566999999999971 -0.475651060000000014 0.112407809999999997 0.0359277730000000031 0.425151649999999992 104 0 104 0 -0.223748360000000007 95.2337036 0 0 31 false 0.0227698980000000002 1.14667557633665007 0.303091926042140025 0.0818014299999999944 12 9 3.26404020000000017 0 12 false 105 101.876827515322006 1.47927508557296994 68.8694 20.668177 6 64.2453434344512004 30.6412843683705987 2.09669229999999995 20.8317830000000015 10 148.82049551171599 12.9581843814923001 11.4846719999999998 19.3302629999999986 2.09140630000000005 0 1.50152020000000008 0.163606639999999998 1.33791349999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.623642585965001 -62.9330499450655978 22.8594280715154987 -12.9023776982851999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363066877422976 2481363066877422976 937084328 2015.5 25.2600609115939001 0.165515239721633012 -3.30159764203725015 0.173906020536812006 1.13116587722602002 0.200563358158282995 5.63994260000000036 26.7125449683484 0.369429175640257013 11.5530629980050996 0.312394493110032978 0.380311430000000006 0.266792399999999985 0.165061070000000004 0.295437720000000015 -0.248843199999999987 0.401991780000000021 0.569164499999999962 -0.233080690000000007 -0.169429229999999986 0.46721459999999998 159 0 156 3 0.632528250000000014 161.563004 0.245935267144316988 0.384915197801876996 31 false 0.726767359999999973 1.46584735643441011 0.043586141060403899 0.13492019999999999 18 9 0.387411300000000014 0 18 false 155 876.323653383294982 1.87814638523999999 466.589996 18.3317049999999995 16 246.228056269585011 10.4081268365175994 23.6572880000000012 19.3730450000000012 16 976.769176861565029 8.93014598610096932 109.378860000000003 17.2874400000000001 1.39559999999999995 0 2.08560560000000006 1.0413399000000001 1.04426569999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.523740749092013 -63.3857672041165969 22.1727117051058009 -12.8441748625024008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363135596900480 2481363135596900480 630192474 2015.5 25.2920969728540008 0.343928184122960001 -3.2984470486371098 0.271193309736398991 1.41877579944554011 0.439715544228636013 3.22657630000000006 17.3219888933978012 0.625001995224238049 -10.1988665528343994 0.497089453164447026 0.091268434999999995 0.540384899999999946 0.067005229999999999 0.100716470000000002 -0.26063225000000001 0.168530089999999994 0.312121570000000015 -0.111888329999999994 -0.0316877179999999967 0.298279760000000005 164 0 163 1 3.49941540000000018 227.876007 0.97433124113840297 2.00102534381300012 31 false 0.188274219999999992 1.42515558852119995 0.0815202344375137999 0.0367563330000000021 19 10 0.586488539999999947 0 19 false 163 393.580654316670973 1.59916647934884004 246.115997 19.2007800000000017 15 120.806081588300998 15.7871348338013995 7.65218539999999958 20.1461660000000009 16 439.570942513960006 12.7054790166318003 34.5969600000000028 18.1543479999999988 1.4237921 0 1.99181750000000002 0.945385000000000031 1.0464325000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.585275819775006 -63.3692601493226988 22.2043941030352983 -12.8530460461809994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316891684615680 2481316891684615680 837204945 2015.5 24.8139407785148016 3.87007281100355982 -3.38323595137008981 2.40918680953534992 \N \N \N \N \N \N \N 0.0101255379999999999 \N \N \N \N \N \N \N \N \N 93 0 90 3 67.3632199999999983 7448.62988 17.2369753141913016 439.681009738079013 3 false 0.00319898240000000009 \N \N 0.00363849999999999981 15 9 8.12928699999999971 0 15 false 129 475.996997320508001 7.35249885744441034 64.739502 18.9943540000000013 7 684.194921249842992 19.3531542037342987 35.3531499999999994 18.2634399999999992 8 1559.88648832467993 32.5261142663943019 47.9579730000000026 16.7791880000000013 4.71448659999999986 0 1.48425099999999999 -0.73091507 2.21516599999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.694902887882989 -63.6473083132532977 21.7173963032443993 -12.7554350783030994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363307397349760 2481363307397349760 132501616 2015.5 25.2547351801324993 1.09531259453440999 -3.28034252971356022 1.08738220975375999 -0.955137906589299979 1.30385363453169001 -0.732549969999999995 2.60269584219796002 2.05362769140866019 -10.4780648199053008 2.29386279225834988 0.498312949999999977 0.55019640000000003 0.0727956500000000034 -0.0504119099999999973 0.294471800000000006 -0.0515750099999999975 -0.108246259999999997 -0.239432329999999999 -0.120434330000000006 0.43262415999999998 97 0 96 1 -0.485023980000000021 83.9786987 0 1.05337863468137003e-15 31 false 0.0282831940000000011 0.940315026404533016 0.346140695198137005 0.118952370000000002 11 8 2.30406639999999996 0 11 false 96 93.561931970435495 1.07255629467699998 87.2326965 20.7606180000000009 4 73.6627744019786945 7.54002240960319003 9.76956900000000061 20.6832680000000018 8 146.214930323911005 14.8881707234556995 9.82088000000000072 19.3494419999999998 2.3500766999999998 0 1.33382610000000001 -0.0773506199999999949 1.41117669999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.492782648096011 -63.3688085258257985 22.1756866344870005 -12.8224576765551994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363479194293376 2481363479194293376 365660682 2015.5 25.2648035669593014 0.459227725657870012 -3.26799856624027019 0.336393669413490026 -0.895993319412028977 0.546664996064919029 -1.63901720000000006 19.4725351249871004 0.811403326078381948 -11.1268482560756006 0.575760673983372051 0.120835129999999999 0.547476700000000038 0.0145839060000000006 0.180763960000000001 -0.172104459999999987 0.229898359999999996 0.364754320000000021 -0.067291279999999995 0.0259103200000000006 0.263336000000000015 154 0 152 2 35.3105049999999991 1960.31006 2.70402109948120994 92.4480783251854064 31 false 0.123030589999999995 1.59728555807601991 0.106289174477190995 0.0552415850000000028 18 10 0.742426040000000009 0 18 false 154 1720.55225396511992 8.90912963426790938 193.121994 17.5991950000000017 16 886.564575848390973 16.3636732253806017 54.1788250000000033 17.9821129999999982 16 1366.23328714695003 22.0188318179729983 62.0484000000000009 16.9231070000000017 1.3093458 0 1.05900569999999994 0.382917400000000019 0.676088330000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.501327961772006 -63.3533574640932002 22.1899388131252984 -12.8146930669679993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363242971745792 2481363242971745792 728581195 2015.5 25.2824643184773983 0.0657430777118886978 -3.27563139412918991 0.0490244365914793007 0.377409479157181982 0.0809012330653056944 4.66506500000000024 4.27381315873863965 0.120498143160278001 -2.71891756512802019 0.103358366835588994 0.0634205300000000027 0.555177900000000002 -0.0186886380000000005 0.0413560800000000034 -0.229927269999999989 0.141169490000000009 0.153229270000000001 -0.117341119999999993 -0.0878851199999999971 0.338160069999999979 157 0 156 1 0.452223450000000027 158.307007 0 0 31 false 5.86621300000000012 1.5977016126383401 0.0174120297212753995 0.0529492719999999986 18 10 0.120638490000000001 0 18 false 153 5096.7814059359398 4.48670739678435027 1135.96997 16.4201259999999998 15 2673.85093905289023 10.4076887809239 256.911099999999976 16.7835450000000002 16 3511.63173684236017 12.9351611769571004 271.479550000000017 15.8981480000000008 1.21360559999999995 0 0.885396960000000011 0.363418579999999991 0.521978399999999954 \N \N 0 \N \N \N NOT_AVAILABLE 151.544145314817996 -63.352739102548 22.203858508361801 -12.8282919683316994 100001 5859.66992 5634.33008 6342.87012 0.508000016 0.320899993 0.587800026 0.252000004 0.151199996 0.294 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363449130175488 2481363449130175488 1320046872 2015.5 25.2811049428094989 0.095833923854522704 -3.27004790987585015 0.0725277190612853978 0.409882912568222013 0.116619347727744002 3.51470759999999993 6.59601322422981973 0.177380022782605007 -9.10249662562270068 0.150209891088494002 0.0201786010000000009 0.548665760000000002 0.0208533519999999986 0.00388928269999999979 -0.226333439999999997 0.0806930960000000058 0.240924429999999995 -0.10483365 -0.0724471500000000018 0.22934388 147 0 147 0 1.84701610000000005 174.690002 0.218071668743504005 1.10867013353548005 31 false 2.7141367999999999 1.62807021168877997 0.0256411700489432987 0.034571677000000002 17 10 0.167290090000000002 0 17 false 146 2969.53906262728015 3.56095305347382007 833.916992 17.0066430000000004 13 1678.18474196206989 12.3772658147789993 135.586060000000003 17.2892900000000012 16 1898.42895651003005 10.8600354500944007 174.808729999999997 16.5659330000000011 1.20443389999999995 0 0.723356250000000034 0.282646180000000025 0.440710070000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.536095576185005 -63.348269087870797 22.204677122955701 -12.8226016197496993 100001 6177.91016 5630.8501 6309 0.0340000018 0.00889999978 0.0900999978 0.0179999992 0.0046000001 0.0454999991 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369320349818240 2481369320349818240 815626026 2015.5 25.2891674600551006 0.450962267621074997 -3.25995660652929997 0.373707254535676991 0.290263956180948024 0.570513353797083012 0.508776800000000029 7.81717017998137997 0.873533536987979975 -2.56435366421998001 0.730667936179364985 0.130442520000000006 0.484523150000000014 0.0881246900000000055 0.0727048440000000046 -0.219904270000000013 0.13232236 0.272474300000000003 -0.139745430000000004 -0.0392063330000000029 0.293271500000000018 162 0 162 0 2.32144800000000018 201.046005 1.15425587986064992 1.27221318347681001 31 false 0.0980596839999999942 1.78139506549342008 0.114652788447928006 0.0407327999999999996 19 10 0.825167699999999948 0 19 false 162 254.567036512968997 1.38030585250093996 184.427994 19.6738600000000012 13 156.304512169675007 14.7912009973164995 10.5673980000000007 19.866458999999999 14 172.422065141941999 8.08804979009399005 21.3181270000000005 19.1704389999999982 1.29131639999999992 0 0.69602010000000003 0.192598340000000007 0.50342180000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.542720029229997 -63.3357074787310026 22.2161676443956999 -12.8161910347724994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370144983545984 2481370144983545984 836815269 2015.5 25.2740135961442007 0.95241299523273204 -3.23661959445783998 0.794636885317074992 1.14549753679203992 1.17103472621770011 0.978192599999999968 3.61633224472135018 1.95978122654557008 -19.779586935062401 1.5866167290517601 0.22484599999999999 0.405982730000000014 0.158346369999999986 0.0594744700000000015 -0.081836030000000004 0.0598647370000000012 0.153751500000000013 -0.18573597 0.0306885260000000007 0.263099399999999983 121 0 115 6 0.499041300000000021 116.874001 2.75169596085234014 6.86038284029188983 31 false 0.0288266019999999998 1.41413390994407995 0.276521866019493023 0.0742664259999999965 15 10 1.81646029999999992 0 15 false 117 115.284996620420998 1.30679779324020995 88.2194977 20.5339339999999986 5 23.3523895695153989 4.95677996816694044 4.71120170000000016 21.9305599999999998 11 137.461429212717007 12.4034785680943003 11.08249 19.4164679999999983 1.39492400000000005 0 2.51409150000000015 1.39662550000000008 1.11746600000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.490060208362991 -63.3210522702910978 22.2105736404549994 -12.7889190323887991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363513554035200 2481363513554035200 1528311073 2015.5 25.2771944593050009 0.229837700664018013 -3.25711195314003987 0.195159779556281998 0.161265698707483002 0.286592948996947983 0.562699440000000051 11.4275423497314996 0.501815037073306991 -4.7938776807809802 0.384674157242775983 0.217591299999999988 0.357602099999999978 0.204483300000000007 0.142465580000000008 -0.244814649999999995 0.265139579999999986 0.385928099999999996 -0.281895000000000007 -0.142537150000000001 0.383071119999999987 136 0 134 2 0.295277330000000005 133.119003 0 8.8472917008842e-16 31 false 0.467556030000000011 1.62984954459072995 0.0637418824293067982 0.0553592030000000027 16 10 0.486283030000000005 0 16 false 133 638.679829999912045 1.99487856326792001 320.160004 18.6751579999999997 11 286.189131568352025 14.9719199592886003 19.1150589999999987 19.2097550000000012 11 498.040251547049024 9.4385601233249492 52.7665500000000023 18.0187589999999993 1.22789119999999996 0 1.19099620000000006 0.5345974 0.656398799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.515923698356005 -63.3382352065515022 22.2058492484562002 -12.8091377785852991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370144983695488 2481370144983695488 1113677953 2015.5 25.2765640855302003 0.807403920928798979 -3.2351607455073399 0.681191662372831019 0.0492259386839737009 0.979113020109712018 0.0502760520000000016 6.22482935279890981 1.7691969366417899 0.878090004336944951 1.51921091464829994 0.2539381 0.37862800000000002 0.178252130000000009 0.0113131470000000008 -0.0444237739999999992 0.0342380099999999993 0.110155753999999995 -0.254402039999999996 -0.0442975280000000027 0.31040835 127 0 125 2 1.60329370000000004 145.830994 1.58840245821209991 1.78275155782257011 31 false 0.0369179170000000015 1.60634133916301991 0.243688773348467003 0.0284274870000000013 15 10 1.68654189999999993 0 15 false 127 124.264829005905 0.999318183614332001 124.349998 20.452496 13 40.6386743456643984 6.40326618581991003 6.34655400000000025 21.3290390000000016 14 165.182523476949996 8.42690131070506965 19.6018100000000004 19.2170099999999984 1.65631090000000003 0 2.11202809999999985 0.87654304999999999 1.2354851 \N \N 0 \N \N \N NOT_AVAILABLE 151.493806013458993 -63.3186473346124004 22.213552503895599 -12.7885022854284003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351384566376704 2481351384566376704 1266049638 2015.5 25.3088198350042006 0.62662759561374104 -3.3060979244473101 0.402498563745221027 1.45513621038115004 0.805138605390263051 1.8073113999999999 40.3856416783130996 0.823999538352683025 -9.85303459215496957 0.761215959064479031 -0.281859069999999989 0.770741459999999989 0.0631087649999999972 -0.0952768999999999977 -0.457959830000000012 0.0487188730000000028 0.272759799999999997 -0.0405974350000000012 -0.142685620000000013 0.233446270000000011 129 0 126 3 2.24024499999999982 158.503006 1.25059853181714997 1.97442618759678989 31 false 0.118568010000000001 1.74483171636953993 0.117842030744155002 -0.0291035450000000015 15 9 0.836928099999999953 0 15 false 126 303.665989412604006 1.62669174784344994 186.677002 19.4823759999999986 10 295.044915559614026 10.9428749358103996 26.9622859999999989 19.1766679999999994 11 122.381123703800995 8.37467079833723993 14.6132460000000002 19.5426329999999986 1.37462229999999996 0 -0.365964899999999982 -0.305707930000000017 -0.0602569579999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.626243358374012 -63.3690344885266015 22.2174162628134013 -12.8663157626604008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926116864 2481351418926116864 807396963 2015.5 25.3172112415761994 0.146475020458679994 -3.29870241194072999 0.113690940774179003 2.12928899819441986 0.182223492347106997 11.685041 -5.87815743685743985 0.273095822393189025 -5.07920670402889041 0.216339381143500986 0.0931092300000000012 0.523429999999999951 0.0292665769999999985 0.0897681639999999975 -0.232056989999999991 0.167426099999999994 0.289427849999999987 -0.113711729999999997 -0.0485853779999999985 0.288611400000000018 166 0 164 2 1.4457097000000001 185.459 0.340842596476128024 1.18237054680095999 31 true 1.01950659999999993 1.30053141381095005 0.0354918289434318981 0.0460242500000000027 19 10 0.256672999999999984 0 19 false 161 1278.72959070369006 1.89247433199130999 675.692017 17.9214200000000012 16 281.198511474943984 7.16939062920801007 39.222095000000003 19.2288549999999994 16 1551.56156840985 9.0404513212993205 171.624339999999989 16.7849980000000016 1.4332663000000001 0 2.44385720000000006 1.30743600000000004 1.13642120000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.636068959937006 -63.3587645669810016 22.2282015497739991 -12.8625316630035993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926118912 2481351418926118912 468726780 2015.5 25.3038178223834009 0.424704560253747976 -3.29308721924833003 0.370283024196472021 0.609867359605980042 0.55257426284133504 1.10368400000000011 0.541853721979518976 0.821897423562936047 -2.0645597083576801 0.690712408300213965 0.142858089999999993 0.476646479999999984 0.0935220900000000022 0.0944993050000000057 -0.259384039999999982 0.150321449999999995 0.326748800000000006 -0.130997780000000008 -0.0335217640000000025 0.304314970000000018 167 0 166 1 1.36364599999999991 185.994995 0.413574139508025018 0.156117071912943994 31 false 0.107104480000000002 1.32372842896779996 0.110232398567746998 0.0449044440000000017 19 10 0.782982350000000049 0 19 false 166 233.463771880714006 1.40585804447268004 166.065002 19.7678170000000009 12 74.9505532217394972 12.7361430666766005 5.88487049999999989 20.6644520000000007 16 301.778324014120983 14.9805055301139003 20.1447350000000007 18.5626999999999995 1.61365029999999998 0 2.1017513000000001 0.896635060000000039 1.20511630000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.603758309571987 -63.3594115739605002 22.2175777884124983 -12.8523805233354995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926118400 2481351418926118400 347642813 2015.5 25.3179311758703989 0.15953886750523899 -3.29468647597821018 0.123420821024156996 0.100641135165079998 0.199937368490065992 0.503363299999999958 7.20129369822195997 0.295460124664047974 -8.67608529751863955 0.236334193500266992 0.0739549899999999982 0.530850469999999963 0.034794356999999998 0.0781743000000000021 -0.250367100000000009 0.160521489999999989 0.279180229999999974 -0.116971290000000006 -0.0543638200000000002 0.291019299999999981 167 0 166 1 3.28598500000000016 226.617996 0.363220819825398 1.16351308254016006 31 false 0.852655300000000005 1.62154038705359005 0.0392989082842659029 0.04491179 19 10 0.277934369999999986 0 19 false 163 1150.21436016561006 2.13244931485373979 539.385986 18.0364189999999986 17 568.113448022287002 6.48465767215473043 87.6088600000000071 18.4652999999999992 16 792.432408781940012 12.2595560521245002 64.6379400000000004 17.5145149999999994 1.18286289999999994 0 0.950784700000000038 0.428880700000000004 0.521904000000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.633683198607997 -63.3548275955319014 22.2304060961585002 -12.8590639418986008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926120192 2481351418926120192 1477822859 2015.5 25.3113160455644 0.354093055757910002 -3.28862119763719996 0.289202257748077007 1.14758151945659992 0.45030317145884402 2.54846430000000002 17.8351762613904015 0.687244366186606004 -6.10825470765797984 0.542737422706065953 0.104848150000000001 0.477596000000000021 0.0904746059999999991 0.0884944299999999989 -0.261022570000000009 0.15753410000000001 0.313183839999999991 -0.141783760000000009 -0.0428991020000000015 0.283838480000000004 168 0 165 3 2.98073170000000021 218.641006 1.10782857493318998 2.24697094677269016 31 false 0.161282000000000009 1.42483649836510007 0.0884183994356460973 0.0409957729999999992 19 10 0.641399799999999964 0 19 false 166 365.79812500804502 1.45559070396770007 251.306 19.2802620000000005 15 130.836878095684 11.0337283951394003 11.8579030000000003 20.0595630000000007 15 345.799418734514973 11.4908656643140006 30.0934179999999998 18.4148600000000009 1.3030037000000001 0 1.64470289999999997 0.779300699999999957 0.86540220000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.614586289890013 -63.352172466393597 22.2264041984876002 -12.8509904768592005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351423221747328 2481351423221747328 710586146 2015.5 25.3120367693774995 0.104150859291458994 -3.28638198883956978 0.0803975583737226024 1.12047355901433998 0.129631888782710009 8.6435019999999998 7.98849452460041043 0.195418113480010008 -13.2691757019155006 0.152156908826491993 0.0764980400000000033 0.514287799999999962 0.0397195700000000027 0.0900586699999999934 -0.252587300000000015 0.172463630000000007 0.289046020000000015 -0.121765583999999996 -0.0513914800000000033 0.287095129999999976 168 0 167 1 1.05751130000000004 181.072006 0.0930887236905074966 0.152700824390569007 31 false 2.05650000000000022 1.4692441719106899 0.0254919927063009984 0.0382679439999999982 19 10 0.184665799999999991 0 19 false 165 2058.2495154019598 2.45474401324187008 838.478027 17.4046209999999988 18 712.472005168644955 11.0612589248998994 64.4114759999999933 18.2194700000000012 19 1960.96089705852 12.1947079463965 160.804239999999993 16.5307479999999991 1.29888669999999995 0 1.68872069999999996 0.814847949999999988 0.873872760000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.613900243245013 -63.3498407060340014 22.2279372810309006 -12.8491745194196998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351350206640768 2481351350206640768 1112528210 2015.5 25.3261520539582001 0.405736488529351014 -3.29755580403816007 0.334662431958660023 0.714924074808036991 0.50156325635511001 1.42539170000000004 12.9545610196999998 0.819486822697591988 -4.61525383193835026 0.61656602647949299 0.129986810000000008 0.440986629999999991 -0.0172933379999999984 0.111549570000000001 -0.235670209999999991 0.159949989999999986 0.352312059999999982 -0.0866107799999999983 -0.0339532869999999987 0.252193539999999994 158 0 158 0 2.34980540000000016 197.104996 0.864495626611741952 0.869063164001222965 31 false 0.124818349999999995 1.2964761962720599 0.101277442096564002 0.0113637470000000004 18 10 0.749847400000000053 0 18 false 158 279.931873015572023 1.34171982294811998 208.636993 19.5707340000000016 16 69.9897358743394022 4.62625775335980993 15.1288009999999993 20.7388019999999997 16 328.482578010354985 12.9219194125030992 25.4205719999999999 18.470638000000001 1.42346180000000011 0 2.26816370000000012 1.16806790000000005 1.10009570000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.652960637746986 -63.3539056594982029 22.2371456545841006 -12.8647579328674002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357294441505536 2481357294441505536 1071442213 2015.5 25.3275894264080002 2.50600293240992 -3.28649502407992999 2.20182854880671997 \N \N \N \N \N \N \N -0.498897819999999992 \N \N \N \N \N \N \N \N \N 78 0 75 3 0.0631347099999999967 70.0803986 0 0 3 false 0.0186852350000000014 \N \N 0.0220412330000000004 10 7 7.51280160000000041 0 10 false 80 86.8406435214905059 1.89758271775527998 45.7638016 20.8415579999999991 7 63.3508256929863975 16.3137104694366997 3.88328739999999994 20.8470079999999989 7 35.6939088787588972 7.98715649027232022 4.46891299999999969 20.880434000000001 1.14053429999999989 0 -0.033426285 0.00544929499999999983 -0.0388755799999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.645289402622012 -63.3432962541923033 22.2426979164449996 -12.8550060328346003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356985203729280 2481356985203729280 309094 2015.5 25.3674791081909987 0.0528506310664709975 -3.31030133587956987 0.0365500163120271032 1.7401037445863099 0.0608024568633626014 28.6189700000000009 10.7557455491203999 0.086033536900962701 4.29734421792868027 0.0692519948477375996 0.181526660000000006 0.630122599999999977 -0.00651777629999999997 0.0992968159999999961 0.0290482900000000009 0.0343958619999999993 0.0588994850000000014 0.0152481460000000006 0.118439069999999994 0.197446910000000003 158 0 156 2 2.39444999999999997 195.757004 0.144120466132880987 1.58749063652880995 31 false 10.7714400000000001 1.47778590591956993 0.0128995149362424004 0.0450197979999999998 18 10 0.083249180000000006 0 18 false 154 11475.6079797546008 7.88429859564951041 1455.5 15.538926 17 4656.83076705572967 18.9626194330965987 245.579509999999999 16.1811620000000005 16 9861.84681340310999 20.0417546558471003 492.065029999999979 14.7770240000000008 1.26517719999999989 0 1.4041376000000001 0.642235760000000044 0.761901860000000042 \N \N 0 \N \N \N NOT_AVAILABLE 151.748242432608009 -63.3477169395872011 22.2716645746798996 -12.8918196549689998 100001 4759.58008 4472.74023 4944 0.178000003 0.0759999976 0.460099995 0.0856999978 0.0373999998 0.223100007 200111 0.616386800000000012 0.571259799999999984 0.697980399999999945 0.17566119999999999 0.162511450000000002 0.18881096 +1635721458409799680 Gaia DR2 2481357058218839808 2481357058218839808 87545861 2015.5 25.3490349273691002 0.0419966491693207974 -3.29326306838968996 0.0307439739411828998 0.566819182749146 0.0503803706761788012 11.2507940000000008 11.7454402945864 0.0725654059085355935 -8.81188263614772005 0.0660654008895635025 0.124285619999999999 0.607075400000000043 -0.019475718999999999 0.0406040179999999987 -0.131477559999999993 0.12714607 0.103680839999999996 -0.0986814899999999967 -0.07832596 0.356052550000000023 148 0 148 0 1.357097 166.460999 0.0313125009029784976 0.106909828133375004 31 true 19.2976929999999989 1.63044949895136004 0.0110726281655041999 0.0786830040000000008 17 10 0.0782971999999999974 0 17 false 144 15991.4792722549992 7.3897436073049203 2164.01001 15.1786440000000002 16 9170.12555273882936 45.1035379458638985 203.31277 15.4454499999999992 16 10281.6794820895993 20.0364257799076988 513.149350000000027 14.7317599999999995 1.21638559999999996 0 0.713689800000000041 0.266805650000000005 0.446884159999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.694868806967008 -63.3402342726838015 22.2605513350420985 -12.8691923474662993 100001 6169.39014 5870.56006 6786.66992 0.0502999984 0.00800000038 0.236399993 0.0270000007 0.00389999989 0.114699997 200111 1.21736099999999992 1.00598480000000001 1.34445440000000005 1.93420999999999998 1.55685969999999996 2.31156020000000018 +1635721458409799680 Gaia DR2 2481357053923211136 2481357053923211136 1680524337 2015.5 25.3582686185641997 0.820265513236152044 -3.29293958933343012 0.770234365994643011 0.181005878770175987 1.05559520961222009 0.171472819999999998 0.40493282532872299 1.94181244601653002 -9.87137506472529935 2.13729412074032021 0.332910060000000008 0.374310079999999989 0.127180409999999994 -0.0756544900000000048 0.0144776790000000002 -0.0460822320000000007 -0.122492400000000001 -0.368839499999999987 -0.222295500000000007 0.524291159999999978 101 0 101 0 0.369128169999999978 100.516998 0.180379886003398993 0.0113531512463826006 31 false 0.042386550000000002 1.6493809138819 0.236822663571528008 0.126357529999999996 12 8 2.22887499999999994 0 12 false 102 125.227594023335996 1.3606040343113599 92.0382004 20.444115 8 82.1596892866920996 11.7050276760820005 7.01917930000000023 20.5647410000000015 8 74.6110171404533986 13.0488423064785 5.71782639999999986 20.0799120000000002 1.25188619999999995 0 0.484828949999999981 0.120626449999999996 0.364202499999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.713115847761998 -63.3359866044531969 22.2694634136413008 -12.8722907611268997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356229291477888 2481356229291477888 326155715 2015.5 25.3768430392303017 1.0474608299864101 -3.30697095888324011 1.49693460204095996 \N \N \N \N \N \N \N 0.54487216000000005 \N \N \N \N \N \N \N \N \N 99 0 98 1 1.13656779999999991 108.637001 1.14720333689838005 0.260490922884848985 3 false 0.0285384259999999987 \N \N 0.279310100000000006 12 7 6.58531569999999977 0 12 false 97 96.859006964611396 1.12813325668041009 85.8578033 20.7230150000000002 6 91.9107199954347038 33.2443695988008017 2.76470040000000017 20.442972000000001 7 105.749016928169993 10.1211872656301995 10.4482820000000007 19.7012299999999989 2.04069540000000016 0 0.741743099999999989 -0.280042650000000004 1.02178569999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.763866524666014 -63.3406919533400981 22.2818386669738011 -12.8921706660369999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357088282950272 2481357088282950272 761388249 2015.5 25.3834172256458004 0.465632357893093984 -3.29128874226047996 0.355902033596101008 -0.470601945194214999 0.567407011995942012 -0.829390399999999972 0.0412686747688326971 0.876573326160278055 -2.30555913536504997 0.653778891278244956 0.122863420000000001 0.501159369999999993 0.0532033400000000017 0.0790046749999999964 -0.102297029999999997 -0.0154708510000000007 0.176271260000000013 -0.0200058429999999988 0.156867430000000002 0.135063559999999999 164 0 164 0 2.62745430000000013 209.804001 1.11403593625228003 1.19549748606829009 31 false 0.0928082540000000067 1.66651272819253005 0.121936806805232001 0.0187011360000000001 19 10 0.777577940000000023 0 19 false 164 240.790393593971999 1.29017928742487009 186.632996 19.7342680000000001 10 138.963257654685009 3.53527112344674999 39.3076670000000021 19.9941390000000006 13 153.719186229500991 17.4248543344710001 8.82183500000000009 19.2951000000000015 1.21550709999999995 0 0.699039459999999946 0.259870529999999988 0.439168930000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.762048959157994 -63.3237112804564006 22.2940281925402992 -12.8800127868010001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369079831767040 2481369079831767040 721598769 2015.5 25.3250483448658983 0.939284569512448986 -3.27253036284368015 1.11802322711359992 0.649789480766247984 1.17159721592550992 0.554618500000000014 1.70838341668720006 2.58323806625862007 -2.79507749291248997 3.71378902203549011 0.419822450000000014 0.299056829999999996 0.0621937659999999976 0.0594270500000000021 -0.202224249999999994 0.262602659999999988 0.367066649999999994 -0.339470979999999978 -0.313919159999999975 0.688704899999999953 99 0 98 1 0.559549450000000004 100.139999 0 1.04199042298598005e-15 31 false 0.0301222519999999987 1.71457713720561999 0.322200158792424973 0.114242979999999994 12 8 3.72455720000000001 0 12 false 99 105.399583460651996 1.24981213295515992 84.3322983 20.6312679999999986 9 81.8101226118048999 11.2169100922801004 7.29346300000000003 20.5693699999999993 10 90.0947699727041993 14.2257134666915004 6.33323400000000003 19.8751719999999992 1.63098260000000006 0 0.694198599999999999 -0.061897278 0.756095900000000043 \N \N 0 \N \N \N NOT_AVAILABLE 151.626856164119005 -63.3317624733681015 22.2455613572282012 -12.8410900757322004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357328803032960 2481357328803032960 922676738 2015.5 25.3377144077572005 3.1719750829658202 -3.2814468246420101 1.94455304162084008 \N \N \N \N \N \N \N -0.0626200960000000001 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.69931520000000003 59.9267006 3.93631423980732986 1.52384425338282004 3 false 0.0151066310000000006 \N \N 0.0380401130000000004 6 6 5.37137300000000018 0 6 false 49 83.1413176397293938 2.05768446754633993 40.4053001 20.8888229999999986 3 54.5904937207151022 1.82083368315817995 29.9810429999999997 21.0085960000000007 4 154.380287722079004 38.426214440396798 4.01757700000000018 19.2904400000000003 2.51344080000000014 1 1.71815680000000004 0.119773864999999993 1.59838300000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.660825616349001 -63.3344044550697021 22.2542448524367984 -12.8540412644903004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369148551282176 2481369148551282176 243907656 2015.5 25.3180033479623994 1.5514111320536299 -3.25329775451516978 2.29092758418460019 \N \N \N \N \N \N \N -0.451798379999999999 \N \N \N \N \N \N \N \N \N 90 0 90 0 0.67764930000000001 93.4332962 0 0 3 false 0.034223530000000002 \N \N 0.171740799999999999 11 7 6.24922199999999961 0 11 false 89 111.972242540742997 1.37774829629944007 81.2718964 20.5655900000000003 7 55.3837872357112033 12.6210670014380995 4.38820169999999976 20.9929309999999987 10 137.333691702111992 7.00549496440098984 19.6037099999999995 19.4174770000000017 1.7211183000000001 0 1.5754547000000001 0.427341460000000006 1.14811329999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.594367965803002 -63.317387534529999 22.2461300564180995 -12.8206191953028998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369359005174400 2481369359005174400 1476193716 2015.5 25.3041790507002986 0.108335044392230004 -3.24618245457999022 0.0770799383225023033 2.37983440299354987 0.126202862969876012 18.857213999999999 41.4786934012561019 0.226276054990138004 -20.5236969032314995 0.147140322106978999 0.0170133769999999997 0.408275280000000018 0.189905479999999988 0.0337684749999999992 -0.205658499999999994 0.0896113139999999975 0.337391610000000008 -0.210194290000000006 -0.0321378500000000025 0.12909791000000001 146 0 146 0 6.07615399999999983 268.60199 0.404185676874506017 4.49443581007443971 31 true 2.27840329999999991 1.40940880636766996 0.0256587159754836994 -0.0332425699999999991 17 10 0.205593799999999993 0 17 false 143 3435.1162456952602 3.52683781234153004 973.992981 16.8485130000000005 16 977.611064065382038 9.0839004456716701 107.620186000000004 17.8759729999999983 16 3707.98942075109017 12.7012285813508008 291.939419999999984 15.8390740000000001 1.36402960000000006 0 2.03689859999999978 1.0274601000000001 1.00943849999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.559808557595005 -63.3168527127149972 22.2356640452691998 -12.8089155265894004 100001 3692 3651 4226.68994 0.105700001 0.0272000004 0.206400007 0.0670000017 0.0133999996 0.143999994 200111 0.542309900000000011 0.413781549999999998 0.554558340000000038 0.0492307540000000016 0.0439112929999999971 0.0545502159999999986 +1635721458409799680 Gaia DR2 2481369354709560192 2481369354709560192 544813112 2015.5 25.3078133609199014 0.185644404814697989 -3.24503101665173022 0.146044806389001997 -0.134954674912238004 0.229121808689784989 -0.589008450000000017 0.520696300890616026 0.364559290201981023 0.0864293003503464052 0.274417459218527005 0.101652383999999998 0.471214560000000005 0.0922694000000000014 0.0920299200000000012 -0.228602470000000002 0.166400400000000004 0.340724050000000001 -0.156983399999999995 -0.051217116 0.25662094000000002 166 0 164 2 1.961781 195.845001 0.370860389002928004 0.86950466053990505 31 true 0.612851139999999961 1.59876186052224001 0.0473447571951085 0.0331246669999999965 19 10 0.336931170000000002 3 19 false 164 884.766813782562963 3.49189739743574012 253.376999 18.3212930000000007 19 551.719086497246963 12.4992384136691008 44.1402169999999998 18.4970929999999996 17 568.781274085809969 10.5715090290372 53.8032230000000027 17.8745569999999994 1.26643569999999994 0 0.622535700000000025 0.17580032000000001 0.446735380000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.566019083930001 -63.3142617367051983 22.2395583167864004 -12.8091833683907996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369285991965312 2481369285991965312 922707440 2015.5 25.3277487125485017 2.28940975012254011 -3.23724185662350994 1.42571183462932005 2.42523122164931015 2.76688206719176 0.876521349999999977 12.2239733717714003 3.46228424814029001 -15.9163158936318005 4.03619370869806993 -0.359022019999999997 0.723133860000000017 0.126946909999999996 -0.313816340000000027 -0.506556329999999999 -0.180737170000000003 -0.0327543949999999986 -0.0496715000000000004 -0.236206890000000003 0.274360700000000013 76 0 76 0 1.46875040000000001 89.2012024 2.93895232823704999 1.06058536693261996 31 false 0.0155186769999999998 1.10110645587165989 0.466179329254248986 -0.0938404399999999972 10 8 3.8770045999999998 0 10 false 79 81.5076035822277021 1.46450347694900995 55.6554985 20.9103700000000003 4 43.2170179402938004 20.3331105447543017 2.12545040000000007 21.2622500000000016 7 151.470159314824997 43.2273116255041998 3.50403829999999994 19.3111020000000018 2.38857700000000017 1 1.95114900000000002 0.351881029999999984 1.59926799999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.598664426654011 -63.2987130880663997 22.2614768820136995 -12.8092824589285001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369285990085504 2481369285990085504 1198000751 2015.5 25.3370679843944018 0.235798097386124006 -3.24224914629091998 0.189614472648714005 1.0264765858292999 0.29339490691032899 3.49861760000000022 0.0679997655806952039 0.459740271212374985 -15.2447147546696993 0.347626036761918999 0.107472940000000003 0.468069599999999975 0.0829963600000000051 0.102457119999999999 -0.228770659999999987 0.15401664000000001 0.340662299999999973 -0.131268460000000003 -0.0212786740000000009 0.243512809999999996 163 0 163 0 1.11907500000000004 178.016998 0.371321669907250018 0.448225512627795974 31 false 0.372437830000000025 1.44991194983038008 0.0596687801041754992 0.0355010960000000028 19 10 0.422325459999999986 0 19 false 163 575.954821071935953 1.45526887312810005 395.772003 18.7873950000000001 16 135.901142697089995 7.86602157817646042 17.2769849999999998 20.0183299999999988 16 691.085243295931946 12.1078369943486006 57.0775149999999982 17.6630919999999989 1.43585289999999999 0 2.35523799999999994 1.23093410000000003 1.12430380000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.622148226044999 -63.2992588213136003 22.2684532151390009 -12.8173675645294001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369290285697408 2481369290285697408 91207533 2015.5 25.3420098792471009 0.0376725097213825022 -3.23738684834980006 0.0271855229152727987 0.635980800025414017 0.0451785737173705029 14.0770444999999995 5.16061377979437008 0.068683936164019202 -3.93854245788398005 0.0578112127120340019 0.0557018300000000008 0.555760150000000008 -0.0396267250000000015 0.0424027930000000011 -0.195119130000000002 0.13303007 0.122054994 -0.107087760000000004 -0.0808108700000000069 0.306434480000000009 164 0 162 2 -0.114470619999999995 154.320007 0 0 31 true 21.827138999999999 1.59375680417851995 0.00984471495173440923 0.0319872870000000031 19 10 0.0723851999999999968 0 19 false 163 17985.3932253788007 7.93763607160208018 2265.84009 15.0510649999999995 17 9888.33060579768971 20.3018316451180993 487.065949999999987 15.3635809999999999 16 11763.3584926460007 19.6650439516137006 598.186199999999985 14.5855910000000009 1.2038485000000001 0 0.777989400000000053 0.312515260000000017 0.465474129999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.627440659495988 -63.2927526816677997 22.2749952865840015 -12.8146669247113998 100001 5897.33008 5848.33008 5951 \N \N \N \N \N \N 200111 1.2652987 1.24258050000000009 1.2865899999999999 1.74463089999999998 1.46797069999999996 2.02129130000000012 +1635721458409799680 Gaia DR2 2481357397522561280 2481357397522561280 652276018 2015.5 25.3642492260986998 2.15538816325656013 -3.26264810331614008 1.43088633248992991 0.046696145851382799 2.77365790454875993 0.0168355820000000017 -6.67378664987090975 2.37713929043253014 -16.1388244661153983 3.53781113846223016 0.0934144100000000033 0.858114959999999982 0.0536426679999999975 -0.162724139999999989 -0.132665460000000013 -0.0245469269999999996 0.0641625900000000055 -0.0467581560000000021 -0.16848072 0.521843970000000046 73 0 72 1 -1.1677287999999999 53.7933006 0 0 31 false 0.0234607070000000008 0.901419772632714 0.402922108737972018 0.198248069999999998 10 8 3.42162500000000014 0 10 false 73 93.4095054232345063 1.51537006994598 61.6413994 20.7623880000000014 5 49.6797751199927973 3.18188166046201015 15.6133319999999998 21.1109389999999983 8 127.885866941016999 12.1921183365637997 10.4892240000000001 19.4948639999999997 1.90093760000000001 0 1.6160755 0.348550799999999994 1.26752470000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.696179175751013 -63.3060634071351984 22.2866118135390003 -12.8463345864876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357122642691200 2481357122642691200 363596110 2015.5 25.3846435514661017 0.512813517355556026 -3.28194460514799013 0.376256492087921002 1.55994743991133 0.60588902997574301 2.57464219999999999 17.4405398067164015 0.958777220258429042 -2.70517028905230994 0.655242963796238032 0.185597120000000004 0.508024930000000041 0.150906160000000011 0.120379559999999997 0.0540435500000000027 -0.0179930199999999985 0.281344949999999983 -0.0850441499999999989 0.220607859999999989 0.058191716999999997 155 0 153 2 3.76590200000000008 221.830994 1.42465062480024995 1.88435167409035009 31 false 0.0894461899999999949 1.51975688613360993 0.127787790327055006 -0.0251734420000000007 18 10 0.847520399999999952 0 18 false 152 254.590370191228004 1.40388319732061007 181.347 19.6737609999999989 13 65.3862557785437986 6.60156190500438989 9.90466400000000036 20.8126719999999992 15 364.892313404313995 12.1111530438846007 30.1286179999999995 18.3565080000000016 1.69008179999999997 0 2.45616339999999989 1.13891030000000004 1.31725310000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.755566096183998 -63.3147481158471024 22.2987291303170991 -12.8717780803584994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357126938342272 2481357126938342272 960289585 2015.5 25.3870824118362997 0.64868319653133899 -3.27786232481262996 0.602403451419946001 -0.140005534506126988 0.766857027808837022 -0.18257058000000001 -0.0550618189774726985 1.28126537869202006 -7.27745395794821981 1.46962161555680004 0.279490740000000015 0.471700430000000004 0.00342167200000000017 -0.184370189999999989 -0.0198098810000000014 -0.25422218000000002 -0.367349119999999973 -0.0743171499999999985 0.0917338899999999985 0.343719149999999973 139 0 139 0 0.524008750000000023 142.067993 0 0 31 false 0.0518325379999999974 1.31228291835742006 0.198700555680332014 0.0473462160000000035 16 9 1.43940000000000001 0 16 false 139 144.282049365738999 1.10874751598080001 130.130997 20.2903349999999989 13 57.1889684679396026 9.88352454874918962 5.78629299999999969 20.9581069999999983 14 166.059646573612014 9.22022008259422954 18.0103779999999993 19.2112599999999993 1.54730689999999993 0 1.74684719999999993 0.667772299999999985 1.07907489999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.756554682082992 -63.3100156274349999 22.3025944823442011 -12.8688808509942998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357191362170368 2481357191362170368 649255692 2015.5 25.3788545079550012 0.278742592240909026 -3.27209859523994995 0.248322904708627001 1.05696622939523999 0.339336401846020985 3.11480360000000012 0.97607148488415596 0.533164804930030045 -17.3656036490118986 0.436561326412028994 0.240950109999999995 0.473512829999999996 0.119194800000000004 0.202226299999999998 -0.17970158 0.26900634000000001 0.471116780000000013 -0.137245220000000001 -0.0400817950000000034 0.342559999999999976 143 0 140 3 2.34399459999999982 176.496002 0.688828441943317049 1.39754314835877991 31 false 0.314064830000000017 1.36379029954691999 0.0713154204886197046 0.0909896899999999981 17 10 0.520895899999999967 0 17 false 140 549.202899366805013 1.88434219381936008 291.455994 18.8390330000000006 14 147.092939943675987 9.16689488188850987 16.0461029999999987 19.9324100000000008 13 626.453686028321044 7.30368047197300019 85.7723299999999966 17.7696970000000007 1.40848970000000007 0 2.16271199999999997 1.09337620000000002 1.06933590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734527680176001 -63.3083402644642987 22.296941288208501 -12.8604949276602003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369221566221056 2481369221566221056 477790164 2015.5 25.3440020262003998 0.0386684089400984032 -3.24995943127180986 0.0280843763473474992 2.02125794737815978 0.0470203955040297966 42.9868349999999992 3.26505383649034986 0.0655395643598530031 7.16215197991089969 0.0637758397127942966 0.0942032500000000023 0.622087999999999974 0.00424379060000000009 -0.00496562850000000031 -0.133305029999999991 0.0685993599999999981 0.00817920500000000016 -0.107354920000000006 -0.0965806599999999987 0.359680559999999983 172 172 172 0 6.57712400000000041 317.322998 0 0 31 true 282.686649999999986 1.66758258389797009 0.0100838616785576003 0.0599345400000000014 20 10 0.0462568329999999972 0 20 false 168 210991.900680777995 56.2411674624943032 3751.56006 12.3777010000000001 18 123761.383262995994 147.659929743323005 838.151399999999967 12.6199255000000008 18 129046.899137101005 216.18889057515301 596.917360000000031 11.9850510000000003 1.19818950000000002 0 0.634874339999999981 0.242224699999999987 0.392649650000000017 3.53088530517725019 1.24879622084569997 6 5500 3.5 -1.5 NOT_AVAILABLE 151.64341955383 -63.3032632337588979 22.2721375258977012 -12.8270871152236001 100001 6865.33008 6505 7066.5 0.158000007 0.0170000009 0.275999993 0.0737000033 0.00860000029 0.144999996 200111 0.999821199999999966 0.943706330000000038 1.11365580000000008 2.000718 1.93571709999999997 2.06571909999999992 +1635721458409799680 Gaia DR2 2481369221566220800 2481369221566220800 1256496049 2015.5 25.3438467723248984 0.0397692089919993025 -3.24898053563999989 0.028875110703314999 2.10435982877153993 0.0481195590099514972 43.7319030000000026 0.96881516781840904 0.0734987185993725006 5.96430425725313995 0.0616167837083409983 0.04381467 0.544144150000000049 -0.0222949240000000007 0.0375081079999999983 -0.21787469000000001 0.132927240000000002 0.128983020000000004 -0.121687409999999996 -0.0891465250000000042 0.310031620000000008 164 0 163 1 -0.431072059999999979 149.815994 0 0 31 true 18.3505339999999997 1.51396802126475993 0.0104010729996222 0.034452143999999997 19 10 0.0767332599999999976 0 19 false 162 14938.4753468648996 8.21112646865037021 1819.30005 15.2525999999999993 9 6622.19468644017979 87.4737342184382953 75.7049499999999966 15.798883 8 12707.9609546538995 60.5708364801245978 209.803300000000007 14.5017300000000002 1.29398450000000009 0 1.29715350000000007 0.546283700000000039 0.750869750000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.642174735687007 -63.3024450127687999 22.2723599025594012 -12.8261200326069993 100001 4926.5 4763.62012 5054.43994 0.110200003 0.0390000008 0.192100003 0.0537 0.0168999992 0.111599997 200111 0.530896900000000005 0.504360999999999948 0.567822339999999981 0.149578450000000002 0.142018929999999988 0.15713798000000001 +1635721458409799680 Gaia DR2 2481357844197207168 2481357844197207168 788937753 2015.5 25.3720588981751014 0.164030917235276991 -3.24500014949349991 0.129671939652080986 0.188449969018349012 0.202297653844910996 0.931548000000000043 0.127702149821874 0.290404953304802982 -6.44618788406925969 0.229572572527139002 0.236387390000000003 0.559472399999999981 0.079164490000000004 0.164683269999999993 -0.0698947300000000021 0.171550900000000006 0.361093669999999978 -0.0945444299999999987 0.0389707700000000018 0.274777680000000024 145 0 145 0 1.32046069999999993 162.541 0 0 31 false 0.97343546000000003 1.61961889188753005 0.038704359120621 0.0958491640000000006 17 9 0.27298277999999998 0 17 false 143 1176.49698738028997 2.9983880006087702 392.376007 18.011889 15 685.749177595793981 9.05672654697264967 75.7171100000000052 18.2609749999999984 15 730.70083070543501 10.2708627093050993 71.1430799999999977 17.6025710000000011 1.20395549999999996 0 0.658403399999999972 0.249086379999999996 0.409317019999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.695006862631004 -63.2867769550391017 22.3007181929916989 -12.8328038268727003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356091850531328 2481356091850531328 1326247936 2015.5 25.4174122235030993 0.678384634747892012 -3.31009920620155018 0.627347901404367025 -1.36327788235728997 0.763887067655776963 -1.78465889999999994 9.70921221880047014 1.44801038585698993 -4.40753995648790031 1.55177910522042994 0.190382169999999989 0.370922030000000014 -0.138754640000000012 -0.0735675539999999933 -0.0562840630000000022 -0.117686436000000005 -0.32343280000000002 0.0211049279999999985 0.0665696600000000027 0.287118319999999982 125 0 125 0 1.8094462 149.498001 0.854483532460660999 0.355210431273411009 31 false 0.0454266899999999987 1.79428171217621002 0.230109429822897005 -0.0703017340000000046 15 9 1.51303019999999999 0 15 false 124 148.612240280521007 1.2900416504382799 115.199997 20.2582300000000011 13 83.8861682339767043 8.98857617081887028 9.33253099999999947 20.5421620000000011 13 105.062048609265005 10.2325012475098998 10.2674850000000006 19.7083049999999993 1.27141759999999993 0 0.833856599999999948 0.283931729999999993 0.549924850000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.848321687626992 -63.3260803164871007 22.3192797251400989 -12.9100090985776994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356366730467840 2481356366730467840 440030844 2015.5 25.3990818479282012 2.03210729045883021 -3.29241461863208018 3.29479278435470979 \N \N \N \N \N \N \N -0.406324300000000027 \N \N \N \N \N \N \N \N \N 86 0 84 2 1.42867910000000009 97.5838013 3.02097695063724014 1.20623291800132004 3 false 0.0166327450000000009 \N \N 0.0781453200000000042 10 7 9.2709255000000006 0 10 false 86 86.9327552814210947 1.61053438140044003 53.9776001 20.8404060000000015 8 43.0101915111249014 8.43496254258814915 5.09903759999999995 21.2674599999999998 9 138.11871110626501 7.24718860145901989 19.0582470000000015 19.411290000000001 2.08355200000000007 0 1.85617070000000006 0.427053450000000001 1.42911720000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.794572034453012 -63.3180015275101979 22.3085152809014993 -12.8868243273937004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357126937937792 2481357126937937792 1535286590 2015.5 25.3919912230118996 0.992580317584833005 -3.28365659870920013 0.926202404500108045 2.60107566924597 1.13764416694805992 2.28636999999999979 5.93145210981854998 2.00621557343471979 -0.577015700400721032 2.10640924492608983 0.31133791999999999 0.433851199999999992 0.100234694999999999 -0.128118960000000004 0.0582559370000000007 -0.193472709999999992 -0.236527380000000009 -0.130102489999999987 0.111586779999999997 0.284482960000000007 129 0 129 0 2.16548229999999986 160.531006 2.42785734770097994 1.4167368433804699 31 false 0.0230401720000000011 1.16534860664637008 0.317301805830371986 -0.0167545290000000006 15 9 2.06434369999999978 0 15 false 129 103.518900847238001 1.17279734835192007 88.2667007 20.650815999999999 7 29.5854925139843985 2.82326098520425983 10.4791919999999994 21.6736900000000006 15 157.155703618795997 6.51162434102618004 24.134640000000001 19.271094999999999 1.80393340000000002 0 2.40259549999999988 1.02287480000000008 1.37972070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.771952480968991 -63.3131403045900001 22.3050766233914004 -12.8760736165545993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356748981194112 2481356748981194112 605431252 2015.5 25.4171734400662004 2.36508371340224022 -3.28539965331647021 1.56418169440115995 \N \N \N \N \N \N \N -0.0971253740000000004 \N \N \N \N \N \N \N \N \N 139 0 138 1 78.3938140000000061 9873.08008 13.5534951011744003 374.106788455267008 3 false 0.00512663300000000023 \N \N -0.0551632400000000023 19 10 3.86905900000000003 0 19 false 166 431.925151347626979 4.84681375522373958 89.115303 19.0998440000000009 18 606.400371688282007 13.4201980628709006 45.1856500000000025 18.3944900000000011 18 1283.70000554077001 8.38628180013673941 153.071409999999986 16.9907600000000016 4.37599040000000006 0 1.40372849999999993 -0.705354700000000001 2.10908320000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.824143970844005 -63.3038940211795023 22.3283916699522003 -12.8869605760108996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270776620337920 2481270776620337920 700768169 2015.5 25.0200142144548003 8.03869834619485957 -3.36905331287917997 2.56224094423289017 \N \N \N \N \N \N \N 0.805953499999999989 \N \N \N \N \N \N \N \N \N 77 0 77 0 1.31689699999999998 88.2214966 0.703062033579093026 0.0950849129098412932 3 false 0.0273869620000000008 \N \N -0.0588377939999999988 9 6 32.3473550000000003 0 9 false 78 92.1118004013425065 1.27612947343905003 72.180603 20.7775779999999983 7 70.0664829573926937 15.6639435313808999 4.47310639999999982 20.7376119999999986 7 54.3287588565644981 7.57994943946864996 7.16743039999999976 20.4243449999999989 1.35048100000000004 0 0.313266749999999983 -0.039966583 0.353233340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.101822064613003 -63.5484166981758989 21.9187592341490998 -12.8183580562954003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356675966091520 2481356675966091520 147153236 2015.5 25.4224788253307992 0.378583746127481025 -3.28505113801843018 0.298983954922704021 0.760406578592447979 0.458770757047536004 1.65748699999999993 4.05401659728874009 0.750740130292302021 -3.73424015667055986 0.535665340381231037 0.0759922499999999973 0.428808399999999978 0.123517920000000003 0.0770893500000000009 -0.183341850000000001 0.0244464869999999994 0.263553859999999973 -0.0725276499999999991 0.12237692 0.118914740000000005 176 0 171 5 1.48928140000000009 193.901001 0.540802479389569046 0.370943057827296974 31 false 0.130464090000000005 1.32918161216913999 0.100569972749570996 -0.0218171049999999998 20 10 0.666074500000000014 0 20 false 172 281.364945413244982 1.35873626430808003 207.078003 19.5651909999999987 15 100.033038322639001 10.1117827680045007 9.89272000000000062 20.3510300000000015 12 289.702520750137012 12.1643382455939992 23.8157229999999984 18.6070379999999993 1.3851602999999999 0 1.74399189999999993 0.785839100000000013 0.958152800000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.834449065535011 -63.3012977629165974 22.3335744981080992 -12.8885886860207997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356401088176384 2481356401088176384 466901692 2015.5 25.4397802098171013 0.253290155834877018 -3.31054929960190991 0.196453981302638997 1.93748256337578995 0.298520244837444992 6.4902886999999998 24.0074208559381006 0.505570846804148988 -0.135669802820956004 0.363549232675816014 0.00842919100000000081 0.452998699999999976 0.0968546940000000051 0.0238944269999999993 -0.164759519999999993 -0.0489564700000000019 0.292699199999999993 -0.0487615900000000005 0.115232475000000001 0.0295262280000000016 168 0 168 0 1.97194699999999989 200.492996 0.0741331127725639027 0.0152235479964852004 31 false 0.303275499999999976 1.36955118226101002 0.065452169994003398 -0.0479379369999999999 19 10 0.445546200000000003 0 19 false 168 482.438755110254988 1.36289494435895997 353.980988 18.9797609999999999 17 135.100016704159003 9.73690476740286037 13.8750479999999996 20.0247500000000009 15 585.987042985721018 11.5240070366152008 50.8492430000000013 17.8421999999999983 1.49467060000000007 0 2.18255039999999978 1.04498859999999993 1.13756180000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.893624755763994 -63.3168536839336014 22.3404068850548008 -12.9186577728630994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353484806049792 2481353484806049792 1399186041 2015.5 25.4701292163814017 0.0332750052910718019 -3.31453597539274991 0.0335399987268059016 0.712584051622114023 0.0424789803944057021 16.7749799999999993 11.9528084228079994 0.0830805825994084951 -6.50122788271109986 0.0711554481268485001 0.266626419999999975 0.239925880000000008 0.238183160000000005 0.266695679999999991 -0.469488699999999981 0.547748400000000024 0.60053690000000004 -0.428374169999999999 -0.404920500000000017 0.629986759999999979 145 0 143 2 0.377033950000000007 143.673004 0 0 31 false 45.0275999999999996 1.59027972007170004 0.0090085385621012596 0.00255470890000000003 17 9 0.102909303999999993 0 17 false 140 37031.7875316557984 12.6397191589824001 2929.80005 14.2669289999999993 16 19405.0092513652016 32.2854953013652022 601.044200000000046 14.6316030000000001 15 25657.7444310218016 36.0096492488601001 712.524199999999951 13.7388735000000004 1.21686690000000008 0 0.892729760000000039 0.364674569999999976 0.528055199999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.958297003474996 -63.307356565382598 22.3677980402583003 -12.9335288245080005 100001 5630.41016 5510.75 5904.47998 \N \N \N \N \N \N 200111 1.79282950000000008 1.6302544000000001 1.87153039999999993 2.91025700000000009 2.51888820000000013 3.30162600000000017 +1635721458409799680 Gaia DR2 2481356435448084736 2481356435448084736 1134024807 2015.5 25.4549499248239997 0.515117627294011005 -3.29556399891637986 0.408403929306784985 0.891698946297199035 0.642173973018849042 1.38856289999999993 13.1887556781108994 1.01994996625463008 -3.61773794456490982 0.73652900754171402 0.0290215259999999989 0.422974970000000006 0.0931354199999999965 0.0550370960000000006 -0.25875231999999998 -0.0325435619999999981 0.152797189999999999 -0.00731798770000000043 0.170878079999999988 0.124728519999999996 160 0 159 1 2.39094419999999985 199.095001 1.69307371671898998 3.33102960256817981 31 false 0.0738018299999999988 1.21421512810248999 0.135882374181024002 0.00157175999999999995 19 10 0.903314599999999968 0 19 false 159 221.517364342756991 1.24446608700392991 178.001999 19.8248460000000009 14 56.7817925311951015 4.34792504552061043 13.0595149999999993 20.9658659999999983 17 265.648224670862987 8.77195427242114079 30.2838129999999985 18.7011530000000015 1.4555518999999999 0 2.26471329999999993 1.14101980000000003 1.1236934999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.909629805357014 -63.2967981558150967 22.3605164622268013 -12.9103079066284998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356504167561600 2481356504167561600 694190807 2015.5 25.453661901872799 1.86960120175564004 -3.29462140855207997 1.73292991645624994 2.50067197979978983 2.64352643798615983 0.945960640000000019 9.90736188928032924 3.07978323655432007 -5.25839981701876003 4.62906333869837017 -0.461016399999999993 0.707787159999999971 0.0877494899999999994 -0.0950282900000000014 -0.716987550000000029 -0.292861800000000005 -0.287010129999999974 0.156712820000000003 0.0891852800000000057 0.475847269999999989 81 0 81 0 -0.517388999999999988 69.1699982 0 0 31 false 0.017142033000000001 1.55893275019518995 0.443275547539910997 -0.109932415000000006 10 7 4.38664339999999964 0 10 false 82 79.2982145608612967 1.25282924183296007 63.2952995 20.9402070000000009 3 15.2643193588497006 5.92314410993374008 2.57706359999999979 22.392195000000001 9 106.057966663772007 9.88282040123893069 10.7315480000000001 19.6980609999999992 1.52994980000000003 0 2.69413379999999991 1.45198819999999995 1.2421454999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.906143005653007 -63.2965033250708018 22.359646379796299 -12.9089578169187007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356710325829376 2481356710325829376 412590391 2015.5 25.4409156634227003 0.683000269775913993 -3.28729448325798002 0.633787884289840009 0.992662625284612021 0.796796264061355952 1.24581739999999996 11.2872925814537997 1.47691725418483011 -10.4350227720366 1.78167422074526005 0.127999709999999989 0.352372469999999993 0.0735390600000000033 -0.166359019999999996 -0.109406600000000007 -0.175810130000000009 -0.228983240000000005 -0.119860984000000004 0.056382584999999999 0.247655110000000012 130 0 130 0 -0.385234359999999998 118.362999 0 0 31 false 0.0424128729999999968 1.14296058026522007 0.216268774824744991 -0.0560997999999999983 15 9 1.65004970000000006 0 15 false 132 131.384614654655991 1.26079052100507005 104.208 20.392004 12 53.4974233905168006 14.6841122303152005 3.64321800000000007 21.0305560000000007 12 139.899099726640003 7.96500800387763963 17.5642129999999987 19.3973830000000014 1.47198760000000006 0 1.63317299999999999 0.638551700000000055 0.994621300000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.873562066314008 -63.2953864081816988 22.3502799966564005 -12.8974573604764 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356611542240384 2481356611542240384 701831464 2015.5 25.4487290921998017 0.0844404578785071941 -3.28454616429897994 0.0594688787267333985 0.388662369253348017 0.0972328295090279932 3.9972338999999999 2.50788599926610001 0.156839884363674992 -32.6026397285329992 0.114720228422942994 -0.00972069149999999979 0.504833340000000019 -0.00573475800000000039 0.0671879400000000016 -0.208400250000000009 0.0307621970000000015 0.0938341199999999931 -0.0063100090000000001 0.0920775100000000013 0.152082820000000007 176 0 175 1 2.66407630000000006 223.205994 0.139609974849736002 0.507908531894478044 31 true 2.96947880000000008 1.64264106171049007 0.0204533991064126015 -0.0228631180000000017 20 10 0.143343749999999992 0 20 false 175 3159.69135547726 2.86637036831129999 1102.32996 16.9392549999999993 16 1700.51709619234998 12.2142297098077002 139.224259999999987 17.2749349999999993 18 2131.09347090579013 19.1615341767641993 111.217269999999999 16.4404140000000005 1.21265339999999999 0 0.834520339999999972 0.335679999999999978 0.498840329999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.886581123257997 -63.2895412948520004 22.3587582977787989 -12.8977768654417009 100001 5809.66992 5613.31006 5871.33008 0.0680000037 0.0237000007 0.179100007 0.0315000005 0.0130000003 0.0798999965 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356538527260288 2481356538527260288 125690535 2015.5 25.4622031028149998 1.89297088608925002 -3.29771658383282018 1.36736010741853997 4.43109988700854984 2.6453586642323299 1.67504689999999989 0.329966199353439016 2.36126128748011999 -6.09137183431787044 3.20890095295463995 -0.100549004999999997 0.825466999999999951 0.186451100000000008 0.0219470260000000014 -0.400826279999999979 -0.505603550000000013 -0.622816700000000001 0.285589929999999992 0.302755239999999981 0.571329700000000051 102 0 102 0 0.636238199999999976 105.428001 0 0 31 false 0.0228582020000000011 1.36743474318755998 0.346785417937767015 0.159575660000000008 12 7 3.40096879999999979 0 12 false 103 89.4903992935388999 1.11474704038432004 80.2787018 20.8089240000000011 7 76.5261394687413059 11.6373552947469996 6.57590499999999967 20.6418630000000007 9 75.035952448968402 11.8200549284805003 6.34818999999999978 20.0737459999999999 1.69361279999999992 0 0.56811714000000002 -0.167060850000000011 0.735177999999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.92623172906201 -63.2956113308970032 22.3666090569749016 -12.9149771857294997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357122642691712 2481357122642691712 152366001 2015.5 25.390034623887999 0.119369606682762003 -3.28101417568724996 0.0813474692817155037 1.26601292632882001 0.135005412446249001 9.37749799999999922 17.0843725173786005 0.233238472849783995 -2.39819361800177022 0.155876989460845994 0.0303839039999999998 0.451464240000000017 0.124154719999999996 0.0455115960000000014 -0.119471826000000003 8.56850899999999965e-05 0.129871409999999993 -0.0900693459999999946 0.11051743 0.0932686800000000066 162 0 159 3 1.12327580000000005 173.843002 0.187261986989297996 0.505759826594495032 31 false 1.62894519999999998 1.4832655378775399 0.0290640998814751007 -0.0561166780000000032 19 10 0.20922099999999999 0 19 false 157 1822.77926724581994 2.67862752568241991 680.48999 17.5365310000000001 16 535.205741831460955 8.6650555780405405 61.7659900000000022 18.5300870000000018 16 1992.80995379018009 17.9415822611655997 111.072140000000005 16.5132559999999984 1.3869016999999999 0 2.01683039999999991 0.993555069999999985 1.02327539999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.765496050189 -63.3115944817518965 22.3042131323160007 -12.8728972144726992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357603681053440 2481357603681053440 698453551 2015.5 25.4016497703697013 1.48815687618979009 -3.25667222909005005 1.03287326135223001 \N \N \N \N \N \N \N -0.266459999999999975 \N \N \N \N \N \N \N \N \N 100 0 100 0 3.43892400000000009 149.817993 3.03123963477557989 2.12641019538396003 3 false 0.0223955500000000002 \N \N -0.0559821279999999991 12 8 2.66060449999999982 0 12 false 103 107.899943109109998 1.42953422206381009 75.4791031 20.6058120000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.765507249530003 -63.2846314828158967 22.3244735814846003 -12.8545433748743001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356779045309696 2481356779045309696 1066251865 2015.5 25.4190006916372013 0.67814409768287498 -3.27441407895577985 0.557773907904950961 1.55965729661582997 0.834853469891788991 1.86818090000000003 10.3099719320910008 1.32396821748237992 -17.3964318157720008 1.08997092599129997 0.0880663899999999944 0.451851999999999976 0.0860164239999999941 0.0353454500000000005 -0.21441555000000001 -0.0552834570000000011 0.0426997429999999983 -0.00350382970000000021 0.170699640000000014 0.194032700000000002 154 0 154 0 3.84670569999999978 224.878998 2.46536066655390007 3.23869084491568993 31 false 0.0423769839999999995 1.07310201110977999 0.170321682994644008 0.0317272950000000026 18 10 1.20056919999999989 0 18 false 154 168.394269429685011 1.27241450108125997 132.341995 20.1225470000000008 14 37.4391261768475019 7.19834877344258039 5.20107129999999973 21.4180740000000007 16 209.173510749401999 7.2316771263338202 28.9246200000000009 18.9606530000000006 1.46449539999999989 0 2.45742029999999989 1.29552650000000003 1.16189380000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.817278972290012 -63.2931937780428981 22.3342845509495014 -12.8774206185108007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357534961604096 2481357534961604096 1637464593 2015.5 25.4175435117170991 1.08731589880063995 -3.26386039568208997 0.942064614697112002 -0.737789063488111019 1.26414414437493994 -0.58362734000000005 11.8378004964020001 2.35344952355896009 -9.39658733120485934 2.42402820246189021 0.229052410000000012 0.413040579999999991 -0.0459850899999999993 -0.119633900000000001 -0.0180530789999999997 -0.123075455 -0.217131870000000005 -0.117506330000000006 -0.0311003740000000001 0.32431053999999998 128 0 125 3 2.49578120000000014 162.149994 3.2293158618683302 2.09120600009842006 31 false 0.0188975870000000004 1.44900456898704011 0.326554384868188996 0.0118894499999999993 15 9 2.42411069999999995 0 15 false 126 101.539537322927004 1.38983201533487 73.0588989 20.6717779999999998 8 47.2860594188797023 11.0601494525090001 4.27535440000000033 21.164555 9 123.925542830880005 9.74076941064083002 12.7223570000000006 19.5290180000000007 1.68615699999999991 0 1.6355362 0.492776869999999978 1.14275930000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.804249362787004 -63.2842946026329969 22.3368869201329012 -12.8670736148875999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357912919897600 2481357912919897600 1342024311 2015.5 25.4109272576003988 1.29365696752411008 -3.23781514278637017 0.775198865395038017 1.1694099227861201 1.46660637615273992 0.797357740000000037 -2.61935455773563008 1.77775135223760006 -6.66532948720104024 1.9099531743748801 -0.102005479999999996 0.76016079999999997 0.103457209999999994 -0.181884269999999987 -0.229467169999999998 -0.26440296000000002 -0.189760679999999987 0.104392566000000006 -0.00259986919999999995 0.16281277999999999 106 0 104 2 -1.19423100000000004 82.5365982 0 0 31 false 0.033612450000000002 1.12437294265240006 0.27675854113308801 -0.0940499699999999966 12 7 1.77767999999999993 0 14 false 107 118.213348528032 1.3340389737615701 88.6130981 20.5066990000000011 9 55.6291425497161001 10.5100615363217997 5.2929415999999998 20.9881320000000002 9 131.964939282989008 7.4873840306249102 17.6249730000000007 19.4607729999999997 1.58691120000000008 0 1.52735899999999991 0.481433869999999986 1.04592510000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.766076864374014 -63.2636238728197995 22.3404332286631018 -12.8404271264864001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357912916800256 2481357912916800256 1068933736 2015.5 25.4071075355712992 1.24635916329352003 -3.23459686568306992 0.834603639856581037 3.29516484185000014 1.42001788258648998 2.32050940000000017 14.9046587493361997 1.81678297913169007 1.99329378574612992 1.94752885242812002 -0.20339409 0.702055800000000008 0.217873590000000006 -0.0166395499999999995 -0.33783856000000001 -0.276729639999999999 -0.409414620000000007 0.112172900000000006 0.16102422999999999 0.253461419999999993 121 0 121 0 0.496602770000000027 123.035004 0 0 31 false 0.0278578639999999995 1.23026152304525005 0.281484254381301979 -0.121609099999999998 14 8 1.93329580000000001 0 14 false 121 112.847269873404002 1.29944938257779996 86.8423996 20.5571379999999984 9 126.577497811697 8.96756436215678931 14.1150359999999999 20.0954970000000017 10 49.7685537339121993 8.40548828637056999 5.92095950000000038 20.5195329999999991 1.56269670000000005 0 -0.424036030000000008 -0.461641299999999977 0.0376052860000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.755348428520989 -63.2623572842371971 22.3380134699733013 -12.8360299749740001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358359593281280 2481358359593281280 876915273 2015.5 25.4789990154977986 1.02900438106157011 -3.24970515000260018 0.787858558788482988 2.06412413807810013 1.27152297477612009 1.62334789999999995 -0.154232449197011012 1.70209719897066991 -3.68678438129373021 1.98358519115774001 0.00496972539999999963 0.653307259999999945 0.0694332000000000005 -0.122129336000000005 -0.263492600000000021 -0.276190900000000017 -0.383409979999999984 0.0435240939999999993 0.0956278400000000056 0.37973705000000002 136 0 134 2 0.565371199999999963 137.598999 0 0 31 false 0.0300245500000000005 1.54068674512731008 0.255489593964617012 0.0630835700000000055 16 9 1.95308830000000011 0 16 false 135 119.016447926634996 1.22369649703440997 97.2598038 20.4993480000000012 12 63.4726503834816 6.26582832229220976 10.1299700000000001 20.8449209999999994 13 90.264785577402094 8.90024095184895003 10.1418359999999996 19.8731229999999996 1.29173270000000007 0 0.971797939999999971 0.345573430000000015 0.626224499999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.913739308901995 -63.2450672022687002 22.4007469451574011 -12.8765203070598009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353514870153344 2481353514870153344 1388951612 2015.5 25.4846865918436016 0.488122461590626999 -3.31088768046451021 0.362552922539505995 0.274916503486186015 0.585392354607865983 0.46962777 5.93663953345630979 0.942228340051711966 -0.47570430102134198 0.633447586615220049 0.0381187239999999997 0.461993700000000007 0.1091144 0.0861678349999999982 -0.173382910000000001 0.0190227850000000004 0.292098000000000024 -0.0553925399999999971 0.136107800000000001 0.0746103699999999953 182 0 180 2 4.10764360000000028 262.769012 1.78123743842609006 3.29749820366270008 31 false 0.0808091199999999982 1.44510468317992991 0.117726865877868 -0.0291625819999999994 21 10 0.830660799999999977 0 21 false 180 260.516869720011982 1.37776588345578999 189.085999 19.648776999999999 16 119.037235875541995 13.0798489546202994 9.10081100000000021 20.1621820000000014 16 222.428821022606996 10.4155527303477999 21.3554500000000012 18.8939419999999991 1.31072530000000009 0 1.26824000000000003 0.513404850000000024 0.754835099999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.983945115721014 -63.2977786500851991 22.3830396138555017 -12.9354917993273002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353347367096192 2481353347367096192 60569020 2015.5 25.5137916782964993 0.0426696024684634981 -3.30841045055711991 0.0282628342168400985 0.488289419155658988 0.0529796407500031999 9.21654799999999952 1.72000439706340003 0.0645921566913797013 -2.5252973680612798 0.0563654764967448027 -0.217474279999999992 0.687617600000000051 0.0309900460000000003 0.118048063999999994 -0.441091999999999984 -0.146074700000000002 -0.275841200000000009 0.152843790000000007 0.251190360000000001 0.292509259999999993 155 9 155 0 -2.52319119999999986 109.861 0 0 31 true 32.1583249999999978 1.60793603853517997 0.00909277494933703051 -0.0289405340000000004 18 9 0.0666940139999999959 0 18 false 154 25789.8377825534008 9.8410462218297603 2620.63989 14.6597439999999999 17 14422.3130950671002 42.7469689299961999 337.387969999999996 14.9538010000000003 16 16724.0728826605991 38.8392799956521984 430.596900000000005 14.2035649999999993 1.2077 0 0.750236499999999973 0.29405690000000001 0.456179620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.039820118671997 -63.2829563093425023 22.4116928976639009 -12.9438927649599993 100001 6278.16992 5666.08984 6708.66992 \N \N \N \N \N \N 200111 1.73102650000000002 1.51599400000000006 2.12521240000000011 4.19405800000000006 3.24024629999999991 5.14786959999999993 +1635721458409799680 Gaia DR2 2481353617949374080 2481353617949374080 409049956 2015.5 25.4966898212876991 0.578602881023702054 -3.2949638592219701 0.419594556178263023 3.65933921884507996 0.77465960396829403 4.7238030000000002 31.9276635657319012 0.849832699069324016 -110.630649582963997 0.625519661892454004 -0.243489189999999994 0.703991099999999981 0.0835192800000000013 0.00273727650000000003 -0.532822970000000007 0.226114060000000006 0.524064799999999997 -0.124503929999999999 -0.170522239999999992 0.260758199999999996 163 0 162 1 4.38174059999999965 247.244003 1.61357837275412996 4.08771248845907031 31 false 0.109497579999999997 1.26203463916129999 0.102735517624837 -0.019610724999999999 19 9 0.814635200000000004 0 20 false 164 336.463397727483994 1.34181852928867995 250.751999 19.3710209999999989 17 66.2955900291611044 11.5107292948503002 5.75946040000000004 20.7976759999999992 19 487.951539958255978 9.61564499312678045 50.745586000000003 18.0409770000000016 1.6472732000000001 0 2.7566986 1.42665479999999989 1.33004380000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.992638050231989 -63.2782364245821967 22.4004888492235992 -12.9251025292376998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356577182502144 2481356577182502144 1135896959 2015.5 25.4814711541094994 1.58824793045137991 -3.28960386576663 1.41131697956757995 \N \N \N \N \N \N \N -0.240234360000000008 \N \N \N \N \N \N \N \N \N 149 0 148 1 27.1305030000000009 1264.60999 7.95401450093810958 57.2355810888641017 3 false 0.0134814319999999998 \N \N 0.00345905170000000012 18 8 3.00925179999999992 0 18 false 153 300.070443366523023 2.80321924783262011 107.044998 19.4953080000000014 16 325.520439150390985 8.65962212061699965 37.5906069999999985 19.0699420000000011 15 569.77673575604797 8.70809293339118007 65.4307199999999938 17.8726580000000013 2.98362330000000009 0 1.19728469999999998 -0.425365449999999978 1.62265009999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.957017277590012 -63.2799797126218024 22.3880227758311996 -12.9145223930712998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355095418126720 2481355095418126720 646223352 2015.5 25.4930157167683014 0.328684548866407023 -3.28479547751623002 0.178769606028268996 2.40276632641295995 0.392251946883352021 6.1255689999999996 42.0810047766580979 0.440310732000662008 -20.0260675343264012 0.295361065179786997 -0.167287479999999988 0.748798799999999987 0.103720439999999997 0.119071060000000006 -0.304543200000000014 0.0239067199999999994 0.270726350000000004 0.0512496529999999992 0.123594365999999997 0.106288694000000003 168 0 166 2 3.8972929999999999 240.675995 0.706150068470189018 2.10047976766173994 31 false 0.370116529999999999 1.19240100671121008 0.0560817413610692969 -0.0389700980000000016 19 9 0.418684449999999986 0 19 false 166 685.898437448783056 1.67017472887324003 410.674988 18.5977150000000009 15 120.061311902211997 9.86598128759587034 12.1692219999999995 20.1528799999999997 15 945.194166683128969 18.9552814714776012 49.8644200000000026 17.3231180000000009 1.55308040000000003 0 2.82976150000000004 1.55516429999999994 1.2745972000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.975497514740994 -63.2706580873468027 22.4008331652803996 -12.9142979956311006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353553524995072 2481353553524995072 689076112 2015.5 25.5067878920256987 0.722177637991412991 -3.30020292439861995 0.447016373720072024 2.0698208181454798 0.88904158397229005 2.32814860000000001 2.44781066398947988 1.04329574647982004 -14.4903326864468998 0.719727807193474955 -0.270449519999999999 0.708798939999999988 0.181383899999999987 0.0365822599999999984 -0.442429159999999988 -0.0380486900000000031 0.266687180000000024 0.057342841999999998 0.0614076330000000031 0.0975344259999999935 174 0 173 1 2.46636129999999998 216.595001 1.20450234733603989 0.985900459458874945 31 false 0.0643308300000000055 1.36753556395255993 0.136083292366691005 -0.0677663099999999963 20 9 0.973728240000000023 0 20 false 172 195.759159277484002 1.28284170337384995 152.598007 19.9590600000000009 14 53.435275938890598 7.36105199526650988 7.25919000000000025 21.0318180000000012 15 270.595346663494013 7.40257513353288044 36.5542200000000008 18.6811199999999999 1.65525140000000004 0 2.35069850000000002 1.07275769999999993 1.2779408000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.017892621384988 -63.2785912909863981 22.4081250385085013 -12.9336867799559005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481354854899954176 2481354854899954176 1548791872 2015.5 25.5338930049456998 0.524194190942611993 -3.29763958235563015 0.352803948362302 0.480086902513132019 0.635595690541364 0.755333800000000055 4.38378778073612008 0.95618572890195197 2.92336630115083995 0.618178391455599052 -0.183038640000000002 0.544903759999999959 0.00929699299999999992 0.039379705000000001 -0.402498359999999999 -0.0750087299999999957 0.132403429999999989 0.0906217700000000043 0.132806050000000009 0.0740496739999999959 156 0 155 1 1.15232179999999995 170.130997 0.69598496641836205 0.472867351686376003 31 false 0.0988673340000000012 1.46282493301975003 0.110859023305695997 -0.0251070039999999987 18 10 0.842111229999999988 0 18 false 156 255.263956097701993 1.6564710635795401 154.100998 19.6708929999999995 12 67.1114459736637059 4.04775464545932984 16.5799200000000013 20.7843969999999985 16 302.501790061123017 11.0587254225535006 27.3541279999999993 18.5600999999999985 1.44796490000000011 0 2.22429660000000018 1.11350440000000006 1.1107921999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.069633021391013 -63.2645452512106985 22.4349068960228983 -12.9412703574464008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358153434847104 2481358153434847104 197817279 2015.5 25.4865332962945992 0.438874964350983998 -3.26368102991188991 0.292747891055876008 2.26312473490939015 0.52633999628128203 4.29973939999999999 20.6515015192732001 0.739109953374645023 1.09878026766431991 0.493079080551566018 -0.134507640000000012 0.594138860000000046 0.135277320000000006 0.0592451800000000015 -0.31271454999999998 -0.0174382549999999997 0.278089099999999978 0.0110213250000000002 0.107929399999999995 0.0632309999999999955 184 0 184 0 2.73525099999999988 235.100998 0.914192358618280965 1.11401403652148989 31 false 0.125258480000000005 1.31477978854341004 0.0917555863449562026 -0.035352322999999998 21 10 0.655267099999999991 0 21 false 184 310.606905951239014 1.21632471780908991 255.365005 19.4578379999999989 15 93.513161966806706 13.6521459162529002 6.84970429999999997 20.4242060000000016 16 376.88608306333299 6.49877226690119958 57.993426999999997 18.3213940000000015 1.51445199999999991 0 2.10281180000000001 0.966367700000000052 1.13644410000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.942227960893007 -63.2544204325536015 22.4026397390585004 -12.8922842810522003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355129777989376 2481355129777989376 515677070 2015.5 25.5039294188611017 3.11347001286570979 -3.27730689644454021 5.05611932322797042 \N \N \N \N \N \N \N -0.281649199999999988 \N \N \N \N \N \N \N \N \N 46 0 46 0 1.02911090000000005 50.2751999 3.51958149295797984 0.897927545351473011 3 false 0.0139506620000000008 \N \N 0.0940188299999999977 6 6 15.6261390000000002 0 6 false 45 74.1485205218125998 1.62881946897668994 45.5228996 21.0131100000000011 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.990125090285005 -63.259190947258098 22.4140556533669013 -12.9113493918718003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355134073490304 2481355134073490304 943906378 2015.5 25.5109925700192015 0.0382712224250287975 -3.26973355488848005 0.0253833125335175998 1.21077026884324002 0.0409298371056771998 29.5816039999999987 -1.79807611119790001 0.070115844520366899 -13.7086224834222996 0.0541129039078898991 0.000634191439999999963 0.519682500000000047 -0.173314140000000005 0.0604142100000000029 -0.106213056 0.0416994730000000008 -0.131805389999999994 0.0390582120000000019 0.0559214729999999993 0.157103639999999989 177 177 175 2 4.29746960000000033 261.302002 0 0 31 true 255.157119999999992 1.59699808056126002 0.00870298032198871079 -0.070722714000000006 20 10 0.0456250419999999976 0 21 false 173 187796.258252124011 43.1607393997810007 4351.08984 12.5041484999999994 21 103417.598833274998 125.398605805751998 824.710940000000051 12.814902 20 121761.133580000998 198.223304280052986 614.262449999999944 12.0481479999999994 1.19905869999999992 0 0.766754150000000023 0.310753820000000014 0.456000330000000009 -10.1436364153158998 1.85967008458890004 8 5500 4.5 0 NOT_AVAILABLE 151.996962014129991 -63.2493109666040993 22.423643250002101 -12.9069056601520007 100001 5941.5 5890.33008 6058.25 \N \N \N \N \N \N 200111 2.11368750000000016 2.03300569999999992 2.15056819999999993 5.01603699999999986 4.76981929999999998 5.26225469999999973 +1635721458409799680 Gaia DR2 2481358187794585344 2481358187794585344 732109298 2015.5 25.5089910480035016 0.551355196649323975 -3.26435426135582984 0.334308368925679 1.19979930491090991 0.609173107213342946 1.96955400000000003 -3.74046515153471981 0.812321422173101992 -1.19292718227660011 0.524416938507127006 -0.417081480000000004 0.693726900000000035 0.28380147 -0.101206175999999995 -0.455976700000000013 -0.208593429999999996 0.356468600000000024 0.121627310000000002 0.0244449059999999989 -0.120761090000000001 149 0 148 1 0.368010879999999985 148.628998 0 0 31 false 0.140607939999999987 1.32631453519427001 0.0985006896510294966 -0.150394990000000006 17 8 0.782660899999999993 0 18 false 149 294.794481436816 1.31424770153123993 224.307007 19.5145659999999985 14 99.1805912238290972 10.6137720784050007 9.34451900000000002 20.360320999999999 13 293.816637669904026 7.25924792551063991 40.4748039999999989 18.5917279999999998 1.3331227000000001 0 1.76859279999999996 0.845754600000000023 0.922838200000000053 \N \N 0 \N \N \N NOT_AVAILABLE 151.98778607375101 -63.2453273526977 22.4237698293792995 -12.9011685306535 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358462672500096 2481358462672500096 874244458 2015.5 25.4875836368746995 0.249998962723465001 -3.2400159924629599 0.174936164546660999 3.46129125861018982 0.306473710561913026 11.2939249999999998 15.8516741979527005 0.437631153857057975 -13.4365378302707992 0.293935000151774983 -0.0626634499999999955 0.555488599999999999 0.0771542399999999989 0.114747370000000001 -0.298303800000000008 -0.0172868559999999998 0.199854420000000005 0.0653393699999999938 0.185406309999999991 0.112128099999999994 168 0 167 1 4.7092729999999996 261.493011 0.836121547106730034 3.50944991485086 31 false 0.383140099999999983 1.28680922647684004 0.0547488653595950975 0.0176851020000000012 19 10 0.388773829999999987 0 19 false 166 789.889835612547017 1.91777741534641999 411.877991 18.4444480000000013 16 168.560241206947012 20.9506067287315005 8.04560200000000059 19.7845000000000013 16 1026.58457638909999 9.3748889027843294 109.503653999999997 17.2334330000000016 1.51305259999999997 0 2.55106739999999999 1.34005170000000007 1.21101569999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.921611159386998 -63.2326262990318 22.4125815503976007 -12.8706693237193992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358462672614272 2481358462672614272 88089854 2015.5 25.4909757051413983 1.01088102953832992 -3.23343302704593993 0.904523751848910984 -0.495640053722112006 1.24030137051438993 -0.399612599999999984 -0.638581629785007987 2.01765384539997017 -1.0062013410981101 2.33504722317143987 -0.0423003500000000004 0.46249148000000001 0.0743678700000000026 -0.145932929999999988 -0.440237019999999979 -0.399538820000000017 -0.489674149999999975 0.215879979999999999 0.354263480000000019 0.310809730000000006 115 0 112 3 2.98017699999999985 155.927002 2.72030240781315991 2.27486532327103008 31 false 0.0306435130000000007 2.03897693659089985 0.265298244632922009 0.0259877929999999986 14 9 2.30463340000000017 0 14 false 111 143.897155264002009 1.90824503006993007 75.4080963 20.2932360000000003 11 104.422938829567997 9.85325301465853087 10.5978139999999996 20.3043979999999991 11 106.547771737193003 9.5800419858191006 11.121848 19.6930599999999991 1.46612140000000002 0 0.611337660000000005 0.0111618040000000009 0.600175860000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.922077990952999 -63.225226254064097 22.4182982836503015 -12.8657964593407996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358497032240128 2481358497032240128 508443139 2015.5 25.497088486305401 0.741155275952303016 -3.23408074858595018 0.479821915088029016 0.554289917581016978 0.848540436170260981 0.653227450000000043 7.23529018202410956 1.34874278023534 -0.707626502653999956 0.796726670407008952 -0.164193869999999992 0.540807200000000043 0.0699446299999999938 0.0402563329999999983 -0.319562500000000027 -0.0276775169999999987 0.324939800000000001 0.0195045920000000012 0.0941742359999999945 -0.00555142900000000009 175 0 175 0 2.88034960000000018 228.022003 1.77226949865093997 1.79831274321899004 31 false 0.0471329600000000015 1.38740049240475005 0.152249294340736002 -0.0654210999999999959 20 10 1.18392849999999994 0 20 false 174 178.093634160877997 1.46763244244419 121.348 20.0617449999999984 12 64.1633008957155937 13.5589481533890996 4.73217399999999966 20.8331720000000011 14 184.871157006560992 9.9275858266443997 18.6219649999999994 19.0947479999999992 1.39833439999999998 0 1.73842429999999992 0.77142714999999995 0.966997149999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.934916441908001 -63.2231731542185003 22.4238738013937997 -12.8686463666308004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358260809681152 2481358260809681152 1346250511 2015.5 25.5050258505694991 0.0587404266576821016 -3.2490916263465599 0.0406281561263005034 1.21941305990269999 0.0720340527200799968 16.9282859999999999 9.42461202072212068 0.101216684409044994 -3.98964414715771021 0.0764928841883601995 -0.0068803429999999997 0.574452040000000053 0.00936454700000000084 0.0884691300000000069 -0.237230350000000006 -0.0457963799999999976 -0.0261111730000000014 0.071544369999999996 0.193300159999999999 0.190188410000000002 168 0 167 1 -1.44441160000000002 136.770004 0 0 31 true 7.92026040000000009 1.55184018157663006 0.0129398176116356997 0.0358979739999999992 19 10 0.095766190000000001 0 20 false 167 7158.37772478847 5.57166454724131999 1284.78003 16.0513289999999991 18 3262.48546657252018 16.9015556737956985 193.028699999999986 16.5675160000000012 14 5573.58561106557045 7.35068157968945979 758.240660000000048 15.3965840000000007 1.23436780000000002 1 1.17093280000000011 0.516187669999999987 0.654745099999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.965190049643013 -63.2332813699572966 22.4257606045122984 -12.8855207123880007 100002 4912.87988 4887 4955.66992 0.0160000008 0.00260000001 0.195600003 0.00800000038 0 0.0952999964 200111 0.638775800000000005 0.627793200000000051 0.6455592 0.214158939999999992 0.187517479999999986 0.240800399999999998 +1635721458409799680 Gaia DR2 2481358600113662336 2481358600113662336 1548053871 2015.5 25.5233064180073015 1.44547280300629 -3.23694006817154989 1.1621470021973801 1.09874007299907994 2.03580420043922006 0.539708140000000003 1.50957740045262989 2.9303873258086699 -1.85039402469749992 4.14928735759005018 -0.209646699999999991 0.597329099999999946 0.0493721900000000033 -0.323229250000000023 -0.472019399999999978 0.0336296899999999968 0.135771040000000009 -0.354962 -0.410396399999999995 0.534286799999999951 100 0 99 1 0.694203800000000038 103.133003 0 1.0364331011053801e-15 31 false 0.0200830289999999988 0.901575387042167997 0.353175844145414974 0.0707994900000000066 13 9 4.06564040000000038 0 13 false 102 91.4882653451198991 1.58425446296495998 57.7485008 20.7849520000000005 9 54.2077804762501003 10.0529340450015994 5.39223500000000033 21.0162329999999997 12 99.9283037972902974 6.7700606218283097 14.7603259999999992 19.7626999999999988 1.68476340000000002 0 1.2535343000000001 0.231281280000000006 1.02225300000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.990038566435999 -63.214427845095102 22.4477579084047996 -12.8809442493580004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370248062769920 2481370248062769920 517857495 2015.5 25.2647177893661983 0.133552744057077011 -3.21416806479322981 0.104501555150004005 0.0437634066938139971 0.168640141247733993 0.259507659999999973 -0.082517053105702301 0.245712595998423988 -2.16563851726388013 0.190142099674236009 0.115585030000000005 0.517183599999999966 0.0454433299999999971 0.108039490000000002 -0.229714470000000004 0.0877233099999999988 0.196993470000000004 -0.0351315899999999973 0.073619900000000002 0.270432950000000005 148 0 147 1 0.0974372250000000023 142.977997 0 0 31 true 1.36305279999999995 1.61380064437529991 0.0349960566173622006 0.0941983599999999949 17 10 0.227864440000000001 0 17 false 143 1466.31025559910995 2.45269322508777998 597.836975 17.7728000000000002 15 666.541049892574961 13.4750598908822994 49.4647939999999977 18.2918200000000013 16 1124.11269354270007 8.85818687200704069 126.900989999999993 17.1348950000000002 1.22119700000000009 0 1.1569252000000001 0.519020099999999984 0.637905100000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.450073760022008 -63.3046908292094983 22.2102193748643018 -12.7646272582324993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370179343287680 2481370179343287680 1397228162 2015.5 25.2872256854852999 0.239814426101576994 -3.22718853377568005 0.186675705107543999 -0.149614883579059998 0.289326223864079024 -0.517114799999999986 2.94300819813001979 0.45028328710534099 -7.01043273561753022 0.373340919781672997 0.16295111000000001 0.520527359999999994 0.0525327959999999997 0.0810416699999999962 -0.12432812 0.132740999999999998 0.218591270000000004 -0.119103429999999996 -0.0326631000000000005 0.294769170000000025 147 0 144 3 2.2603270000000002 179.404007 0.709555216691650004 2.13753871199254997 31 false 0.410360200000000008 1.60257779954747992 0.0666847786901094974 0.0762120399999999948 17 10 0.424497069999999976 0 17 false 144 705.749186269065945 2.16816775704117992 325.505005 18.5667399999999994 17 382.219696386241026 10.2045068033060993 37.4559700000000007 18.8956049999999998 15 482.135507255582979 7.55990839741076037 63.7753099999999975 18.053996999999999 1.22473429999999994 0 0.841608050000000052 0.328865049999999992 0.512742999999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.507678995628993 -63.3068981227064 22.2267134238046999 -12.7850181165792005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370351141986176 2481370351141986176 1616033395 2015.5 25.2767381854041986 0.756576677156590049 -3.20992726616006019 0.766212910963712024 2.07534632392408991 0.912043564119180972 2.27549029999999997 37.485807233456903 1.58523795893874997 -3.63667108914942006 1.95138666753007994 0.37243900000000002 0.450605540000000027 -0.0190001740000000016 -0.162014049999999993 -0.0512840000000000032 -0.202050279999999999 -0.30554667000000002 -0.118598560000000006 0.018279067999999999 0.511738400000000038 119 0 118 1 1.08328439999999993 129.348999 1.11237190431697996 0.409268857267525987 31 false 0.0439648399999999981 1.1770956878330201 0.22255817588087401 0.164314789999999988 14 9 1.95333029999999996 0 14 false 118 133.22052444437 1.15678693887909989 115.164001 20.3769379999999991 7 49.3550094784354982 18.3715886945777989 2.68648579999999981 21.1180599999999998 12 154.907965642276992 7.1526345604704602 21.657468999999999 19.2867360000000012 1.53326950000000006 0 1.83132359999999994 0.741121299999999983 1.09020230000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.470224935472004 -63.2957442405688013 22.2232612075927989 -12.7651119054213993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370355437586432 2481370355437586432 461436655 2015.5 25.2868806077526003 0.0791017935581528053 -3.21196964827636 0.0586655181165356976 0.276131392981862012 0.0938270713545179963 2.94298219999999988 5.74849800047925985 0.143393955500048992 -3.85658765755770006 0.118051520029259005 0.130579050000000002 0.553009749999999967 0.0173431260000000004 0.0782798299999999947 -0.125514700000000007 0.134225189999999994 0.184951320000000002 -0.0952432700000000049 -0.0316074449999999979 0.288493779999999977 149 0 148 1 1.2819566 165.059006 0.184070927152947011 1.19296544817179995 31 true 4.12332199999999993 1.65132283914621003 0.0212307659878313015 0.0666441700000000026 17 10 0.138349759999999988 0 17 false 148 4303.76065934260987 4.04740354350615039 1063.33997 16.603745 16 2316.79155591415019 14.3617500290307003 161.316800000000001 16.9391700000000007 16 2887.75102147510006 16.335811906692701 176.774259999999998 16.1105209999999985 1.20930110000000002 0 0.828649500000000039 0.335426329999999995 0.493223199999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.492547154790003 -63.2932780366959022 22.2321402191487003 -12.7707449359846006 100001 5822 5791 6269.54004 0.349799991 0.102200001 0.587800026 0.206 0.0524000004 0.300999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370763458852992 2481370763458852992 1625058340 2015.5 25.3037254517282015 0.0967377602148925958 -3.19684231355692017 0.0764218505574596058 0.380497581152205 0.120659470004244998 3.15348300000000004 5.12919784770314013 0.18943596196665799 1.05685392309447002 0.148111914744342987 0.0712543000000000065 0.481419680000000016 0.0280670319999999987 0.089837169999999994 -0.287445159999999977 0.228139499999999995 0.334608200000000022 -0.169901820000000009 -0.121995350000000002 0.321828449999999988 162 0 161 1 1.14004900000000009 176.292007 0.189960632801120993 0.712465232101265 31 true 2.40572499999999989 1.58362136116625996 0.0238602961989237 0.0446800249999999982 19 10 0.182356070000000009 0 19 false 159 2655.18875371861986 2.79389962252263002 950.35199 17.1281280000000002 18 1362.21271734164998 8.92438203170618038 152.639450000000011 17.5157759999999989 17 1850.07373623386002 13.4869391751102992 137.175219999999996 16.593945999999999 1.20981469999999991 0 0.921829200000000015 0.387647630000000021 0.534181600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.51204308831899 -63.2724244675569025 22.2538894322840015 -12.7628855527445992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370699034985728 2481370699034985728 957948830 2015.5 25.3128806676899991 0.652901341115502021 -3.19707525681383986 0.609994345042566999 2.01698139797036013 0.850816370437336045 2.37064239999999993 19.5566075249029012 1.34227406452664 -18.6596339179703996 1.19087668633406008 0.235649140000000007 0.396150769999999985 0.118377419999999997 0.0871037540000000055 -0.242712569999999989 0.111933400000000002 0.201808910000000008 -0.135272250000000011 0.0155330504999999994 0.356991229999999993 141 0 139 2 2.65133799999999997 181.442001 1.57299857521249997 1.09991336071087997 31 false 0.0489447380000000015 1.41018557405323008 0.175197385766680008 0.111684699999999998 17 10 1.31375599999999992 0 18 false 143 166.152460191249986 1.43923765575466001 115.445 20.1370980000000017 12 41.3806674741978 8.45629767096492913 4.89347300000000018 21.3093949999999985 14 234.912883578215997 10.6556319762468998 22.045888999999999 18.8346519999999984 1.66289170000000008 0 2.47474300000000014 1.17229650000000007 1.3024464 \N \N 0 \N \N \N NOT_AVAILABLE 151.530645701244993 -63.2687360797399023 22.2625136165818986 -12.7664724589127001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369973186729344 2481369973186729344 955580328 2015.5 25.3263310391856002 0.521985246080187038 -3.19897587760446012 0.313008496317031981 2.28143223082934998 0.660528336858538956 3.4539506000000002 2.16193766060484016 0.678656531342471947 -14.4055477914128005 0.527870494820871006 -0.109342919999999996 0.770027160000000044 0.121892559999999997 0.0631290399999999974 -0.330281900000000017 0.147556159999999992 0.400004179999999987 -0.0448848869999999983 -0.0332322899999999977 0.251646700000000001 146 0 145 1 1.6876274 169.421997 0.791855660566671005 1.03001148725988001 31 false 0.169728760000000006 1.19272093026045001 0.0908441931524247986 0.0210670329999999989 17 9 0.667739799999999994 0 17 false 145 368.621294453169014 1.63895648403102001 224.912003 19.2719149999999999 13 177.567502389185989 22.6543791362460993 7.83810949999999984 19.7279799999999987 14 600.200670138915029 19.5876427567649003 30.6418019999999984 17.8161799999999992 2.10993809999999993 0 1.91180039999999996 0.45606422000000002 1.45573620000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.559446544389999 -63.2647221622184972 22.2745950988547001 -12.7731904052155993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369973184793856 2481369973184793856 1115783865 2015.5 25.3271479763639995 0.0430305371878640028 -3.19863917470510017 0.0249070160623633997 1.27909845930205002 0.0523778427767565002 24.4206029999999998 57.8957030548993998 0.0606957640517069991 -45.9909448226933009 0.0519746979001219009 -0.144368229999999986 0.73888564000000001 -0.0503838200000000028 -0.0155109150000000001 -0.322895140000000025 0.114066780000000007 0.0867626700000000001 -0.0987703800000000048 -0.100084889999999996 0.308412100000000022 155 0 155 0 -1.80078800000000006 120.345001 0 0 31 true 34.9448700000000017 1.60362682133775003 0.00886989766924507067 -0.0025989120000000001 18 9 0.0638849699999999993 0 18 false 154 28479.2448229114016 11.1999727769547004 2542.80005 14.5520449999999997 15 15761.3641818750002 15.0095219232802997 1050.0911000000001 14.8574040000000007 15 18830.8668515848985 46.018406054248203 409.202940000000012 14.0747440000000008 1.21464700000000003 0 0.782659529999999992 0.305358899999999989 0.477300639999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.560766327143995 -63.2640693569885002 22.2754998297217988 -12.7731781279097998 100001 6011 5751.49023 6482.41016 0.050999999 0.00889999978 0.140499994 0.0252999999 0.00289999996 0.0680999979 200111 0.760174400000000028 0.653632600000000008 0.830319499999999988 0.67968565000000003 0.618930100000000039 0.740441200000000022 +1635721458409799680 Gaia DR2 2481369977480463616 2481369977480463616 1635032146 2015.5 25.3423050077378988 0.0517299510243972027 -3.19806518044928989 0.0334312105384029015 0.56350489941853199 0.0694142648520501004 8.11799800000000005 7.60434846874403991 0.0734405711405802936 -10.0025837256575993 0.064149262976148605 -0.230225370000000013 0.736402149999999978 0.000301033170000000001 0.0519138759999999977 -0.478800979999999987 0.0124545119999999992 -0.0443466039999999978 0.00502783059999999983 0.0512935299999999969 0.354297199999999979 146 0 145 1 -0.632145049999999986 129.054001 0 0 31 false 22.3648640000000007 1.60552521108832003 0.0105971465529843007 0.0414284020000000031 17 9 0.0751089000000000062 0 17 false 144 18458.0586232981004 8.5713018152083702 2153.46997 15.0229009999999992 15 9766.27207646156057 21.2509025994001988 459.569759999999974 15.3770659999999992 15 12753.5775152949991 32.1386384409901993 396.830050000000028 14.4978400000000001 1.22005509999999995 0 0.879225730000000039 0.354165080000000021 0.525060650000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.590630883214004 -63.2570840024650991 22.2901414805218003 -12.7782234448603003 100001 5798 5363.22998 6448 1.10699999 0.734000027 1.35399997 0.542999983 0.386200011 0.646799982 200111 1.50063649999999993 1.21333810000000009 1.75379599999999991 2.29275969999999996 1.69598150000000003 2.88953779999999982 +1635721458409799680 Gaia DR2 2481369663947212416 2481369663947212416 1372742711 2015.5 25.353983599066801 0.569149088283223969 -3.22622684200916998 0.489800362965718994 1.23849877381603002 0.668116803661700009 1.85371590000000008 13.4265348460531992 1.18717842112060001 -7.02764879633155015 0.859605299322091954 0.138541419999999998 0.430791560000000018 0.0395033320000000021 0.127511070000000004 -0.100010920000000003 0.0744684800000000036 0.51592439999999995 -0.100723796000000004 0.0482469700000000001 0.0741365550000000068 130 0 128 2 4.0390839999999999 196.934998 1.84996264698068003 2.9057572856212901 31 false 0.0779407899999999959 1.55233722304480004 0.135147185614227006 -0.0086033640000000005 16 10 1.04714229999999997 0 16 false 128 246.62782533762001 1.61616038189321998 152.600998 19.7082610000000003 14 67.7600356957057954 7.61860601705692986 8.89401999999999937 20.7739539999999998 11 289.484953467090975 9.30201849858966945 31.1206600000000009 18.6078550000000007 1.4485186000000001 0 2.16609950000000007 1.06569289999999994 1.1004065999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.640845482742009 -63.2775492076492014 22.2906109321703987 -12.8087001715861 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369805681772288 2481369805681772288 168168166 2015.5 25.3632032433375016 0.0846887732983515051 -3.20838129007269979 0.0662049186194996059 0.61181435654008498 0.121055740984428006 5.05398899999999962 6.35539563088044979 0.137754376610875001 2.49726190276805005 0.123879541734354004 -0.172843720000000006 0.702080400000000049 -0.0754494500000000012 -0.0712389650000000013 -0.548343539999999963 0.470713229999999982 0.575297649999999994 -0.355581399999999992 -0.398577999999999988 0.547058099999999992 138 0 138 0 1.03037249999999991 149.800003 0 8.71323407359577044e-16 31 false 6.88474749999999958 1.59807163597407009 0.0161285961059818989 0.0558943000000000009 16 8 0.160450260000000011 0 16 false 137 6373.90342027416955 6.76161423980553966 942.659973 16.1773530000000001 15 3437.42275974866016 11.6128362860713992 296.00200000000001 16.5108050000000013 13 4307.28018403637998 14.9078089648475007 288.927799999999991 15.6764130000000002 1.21506439999999993 0 0.834392550000000011 0.333452220000000021 0.500940300000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.642350619442993 -63.2574808387508014 22.3061317712443987 -12.795504365507 100001 5744 5501.33008 5836.66992 0.0670000017 0.00889999978 0.178100005 0.0392999984 0.00289999996 0.0869000033 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357985931774080 2481357985931774080 987852177 2015.5 25.3845437072845996 0.194031617203475004 -3.22913077099227985 0.13029406241739 0.268563530532022976 0.267288621764551981 1.00476980000000005 9.71167930542486957 0.268466789133853023 -16.8402544918238988 0.219513503684558992 -0.246646399999999988 0.742601700000000031 0.0928376399999999991 0.0494853520000000033 -0.509427100000000022 0.0578812469999999968 0.173126880000000011 -0.00136038900000000004 0.0105354009999999998 0.303153659999999991 130 0 129 1 -1.02442089999999997 107.947998 0 0 31 false 1.22198220000000002 1.5069788307924199 0.0387895191545450033 0.0733281900000000014 15 9 0.262720640000000005 0 15 false 128 1415.44532159280993 3.77298989770355009 375.152008 17.8111320000000006 15 611.632672667700945 9.82085422930522967 62.2789700000000011 18.3851620000000011 15 1243.74084052224998 14.4168697837222002 86.2698299999999989 17.0250950000000003 1.3108055999999999 0 1.36006739999999993 0.574029899999999982 0.786037450000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.704906224835014 -63.2670946152227032 22.3186010669116008 -12.8226462079672991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369801386724608 2481369801386724608 731321364 2015.5 25.3678894306974989 18.1545872654108997 -3.21515530125530002 7.93700679113174967 \N \N \N \N \N \N \N 0.52691319999999997 \N \N \N \N \N \N \N \N \N 35 0 35 0 0.554872099999999979 33.7798004 0 0 3 false 0.0118212439999999998 \N \N 0.413844350000000027 5 5 180.801559999999995 0 5 false 38 64.8862387537013063 2.01642363693366011 32.1789017 21.157983999999999 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.658195368258987 -63.2615980155933997 22.308031568428099 -12.8035259961599994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370007544605056 2481370007544605056 588368730 2015.5 25.3568241592343995 0.239125720842554013 -3.20379229884198979 0.145489939423044001 1.19763163849700005 0.294006730042843001 4.07348399999999966 22.2028522974964986 0.336642514890365008 -7.57752278573776028 0.248292969268948005 -0.256220669999999984 0.73308759999999995 0.0911695599999999967 -0.0398019479999999967 -0.430378050000000012 0.0793759750000000014 0.380281179999999996 -0.0539814529999999987 -0.102816044999999995 0.153986810000000002 148 0 148 0 2.85952539999999988 196.190994 0.49852561058221101 1.83778368851586005 31 false 0.746311199999999952 1.27996857431854005 0.0416308166100542998 -0.0155858690000000005 18 9 0.30410334 0 18 false 146 1152.90150811485 2.86510866122161012 402.394012 18.033885999999999 15 303.442468417269993 6.84985297142018013 44.2991200000000021 19.1461959999999998 16 1252.18013860735005 15.7513787254237005 79.4965440000000001 17.017754 1.34931090000000009 0 2.12844280000000019 1.11231039999999992 1.01613240000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.625193717694998 -63.2560601364113992 22.3017949465041987 -12.7888908727707999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369835745913856 2481369835745913856 1576927650 2015.5 25.3814400979076993 0.472954259185260018 -3.2017683078973298 0.362592087024173004 1.71922168246949991 0.575546068718643 2.98711400000000005 5.87937839588396027 0.701831845508163021 -11.5130698384423997 0.588724324909326024 0.226497830000000011 0.678583200000000053 0.189093950000000011 0.250338730000000009 -0.0954185300000000014 0.231583640000000007 0.518966099999999986 -0.0306539600000000009 0.0945511760000000007 0.313456449999999998 140 0 138 2 -0.371977800000000025 126.379997 0 0 31 false 0.162002730000000011 1.5651231949237201 0.0934942023232227942 0.0882479899999999984 17 10 0.706384360000000044 0 17 false 136 348.542262573856988 1.95292857321911995 178.472 19.3327269999999984 14 160.565674975296986 26.3069704757966996 6.10354099999999988 19.837254999999999 16 374.750277630689027 9.41339776312720922 39.8103100000000012 18.3275639999999989 1.53587099999999999 0 1.50969120000000001 0.504528050000000006 1.00516319999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.672610559194993 -63.2437047973851989 22.3259887202321003 -12.7960678000338 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370041904349952 2481370041904349952 808405976 2015.5 25.3731859720913988 0.22211453615895399 -3.18902898245916999 0.155178954103012995 1.01721611015442992 0.265555785469936023 3.83051750000000002 13.4550711210728 0.400071581210867999 -1.68840573325868992 0.270406220706063016 0.0556835999999999998 0.542119860000000009 0.182745870000000005 0.114329316 -0.227507839999999989 0.172379730000000009 0.398618499999999987 -0.150523540000000011 -0.00945249899999999962 0.218075170000000013 146 0 145 1 0.662379260000000025 150.677994 0 0 31 false 0.616513599999999995 1.4755940250139401 0.0452420835830020032 0.0209169100000000004 17 10 0.36512536000000001 0 17 false 141 875.413226283137988 2.7729377692981898 315.699005 18.3328319999999998 16 296.684430996756987 10.1706920973122994 29.1705250000000014 19.1706499999999984 16 916.343689864370958 10.9752689531892003 83.4916840000000064 17.3567730000000005 1.38566349999999994 0 1.81387710000000002 0.837818150000000039 0.976058960000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.643950520874 -63.2357245127763008 22.3229469411638988 -12.7811879395692998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371313214768128 2481371313214768128 477725448 2015.5 25.3801334697072996 0.921326686468606049 -3.19157797105793994 0.672435531898778027 -0.69020131672844498 1.19303910380379996 -0.578523640000000006 8.90959299040465069 1.55763119687745011 5.31223647122124021 1.0659029143635701 0.00116534480000000007 0.595246260000000027 0.255025859999999993 0.107438610000000004 -0.340802879999999975 0.199012820000000007 0.521029900000000046 -0.164489799999999992 -0.0491664450000000031 0.23180342000000001 138 0 137 1 1.21313129999999991 151.975006 1.47168905992467991 0.979188088530902001 31 false 0.0446889960000000017 1.75029623021144998 0.170813979801421989 0.0707922099999999943 18 10 1.44384620000000008 0 18 false 138 158.628266509944012 1.93479975979526997 81.9869003 20.1874140000000004 13 57.5893216502948988 10.0570972828940999 5.72623700000000024 20.9505330000000001 15 201.635471497395997 9.73707467315984054 20.7080139999999986 19.0005039999999994 1.63416519999999998 0 1.95002940000000002 0.763118740000000018 1.18691060000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.660294212976993 -63.2350566078710017 22.3285960829487991 -12.7861139151505991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371008272614144 2481371008272614144 219905911 2015.5 25.2999828584330011 2.66879663858966021 -3.17619029551461995 1.49759415542679997 \N \N \N \N \N \N \N -0.105960940000000003 \N \N \N \N \N \N \N \N \N 116 0 115 1 39.2727239999999966 2320.6499 10.9945508547637996 128.606466452934001 3 false 0.00741994239999999982 \N \N 0.0335041729999999982 15 9 3.59006330000000018 0 16 true 130 297.282529899341 5.03186102281595993 59.0800018 19.5054419999999986 14 309.989036152906976 25.7678365163311014 12.0300759999999993 19.1230219999999989 13 701.861823150357054 21.9943039334693005 31.9110720000000008 17.646291999999999 3.40366739999999979 0 1.47673030000000005 -0.382419600000000026 1.85914990000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.484962789039002 -63.2553351283896035 22.2581353119930014 -12.7423107987187993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370797818596608 2481370797818596608 1072490953 2015.5 25.3196774062365009 0.74950177417338204 -3.18045780306789982 0.472292962398173977 1.08861773038316989 0.972014869004990012 1.11996000000000007 0.15703532752853 1.04088758708999007 -2.46265504297645998 0.778306600529943049 -0.275998899999999991 0.74131674000000003 0.127391559999999987 -0.0358189049999999981 -0.477418960000000003 0.0603558419999999998 0.365236000000000005 -0.0379894399999999993 -0.0901621999999999979 0.17486850000000001 144 6 142 2 2.25355650000000018 176.998993 1.36796093625088999 1.55154077380583999 31 false 0.0835553200000000024 1.44532997998289003 0.13580301927593999 -0.0211745820000000008 17 9 0.948853300000000011 0 17 false 140 243.558047648852011 1.67145814331384002 145.716003 19.7218589999999985 15 133.978732390364002 9.88346732137816986 13.5558429999999994 20.0337980000000009 15 120.843723848191004 10.7308471477369007 11.2613400000000006 19.5563600000000015 1.0462494 0 0.477437969999999989 0.311939240000000007 0.165498730000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.528528903680012 -63.2508116457794003 22.2752631729687991 -12.7535275389149998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370866539971328 2481370866539971328 877443369 2015.5 25.3496025273984991 2.04884795121988006 -3.16851987524445988 1.35302481535670993 5.52496077902141014 2.48258340864687987 2.22548840000000014 6.95908863921258014 3.31559499289824 -4.17162915784614974 3.4386454740215302 -0.159811079999999994 0.670492399999999988 0.250925300000000018 -0.0981860199999999989 -0.355080569999999984 -0.12861112999999999 -0.140371259999999998 -0.0932092900000000002 -0.0941734399999999972 0.393222930000000026 74 0 74 0 2.6234415000000002 103.757004 3.0354434656487399 1.0934489355402901 31 false 0.0170664500000000004 1.06479546198240005 0.432485978215005007 0.00212353100000000012 10 8 3.51035740000000018 0 10 false 76 89.9846966276809042 1.67227259798399008 53.8097992 20.8029440000000001 6 79.5768107127387054 15.4368238419967998 5.15499900000000011 20.5994220000000006 7 66.6844953697961955 10.9032446991827001 6.11602300000000021 20.2018589999999989 1.62540200000000001 0 0.39756393000000001 -0.203521730000000012 0.601085659999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.577214386277006 -63.2272590390583034 22.3082527338406997 -12.7534441579574995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371553732969216 2481371553732969216 1408185368 2015.5 25.3865584369339992 1.47856906543242994 -3.17162427354961007 1.32396565919962006 3.61543152079168983 1.80629109823674994 2.00157739999999995 10.5757682859716997 2.36966558788956005 12.1070739110235994 3.34248148352435992 0.342597040000000019 0.709255500000000039 0.117870909999999995 -0.0367135140000000026 0.00455936800000000027 0.191645499999999996 0.390640350000000025 -0.22710422999999999 -0.21753539999999999 0.564099849999999958 95 0 94 1 0.982499299999999964 102.029999 0 0 31 false 0.0255305320000000016 1.3849288309963701 0.312220584064976991 0.200267400000000012 13 9 3.29446459999999997 0 13 false 97 109.993905365778005 1.71112097637622007 64.2817993 20.5849440000000001 8 60.5979044007436016 9.70954535551828002 6.24106499999999986 20.8952449999999992 11 183.495312637721014 8.31856776891936001 22.058523000000001 19.1028580000000012 2.21915219999999991 0 1.79238699999999995 0.310300830000000027 1.48208619999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.654186360707996 -63.2142784441893966 22.3422508424953001 -12.7699283803381007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359493464768128 2481359493464768128 906942816 2015.5 25.4147438871837998 2.62352617940338995 -3.21210012193808003 4.12330903305401986 \N \N \N \N \N \N \N -0.393446420000000019 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.56052469999999999 76.8292007 3.99415340402519981 1.64063080525038996 3 false 0.0138224639999999996 \N \N 0.129504430000000004 8 7 12.9783380000000008 0 8 false 66 84.3365197204153958 1.54603316959708992 54.5503006 20.8733269999999997 5 81.513647531988596 9.44062719613300949 8.63434699999999999 20.5733129999999989 7 85.4849863579078004 16.6738546660597997 5.12688830000000006 19.9321960000000011 1.98014620000000008 0 0.641117099999999995 -0.300014500000000017 0.941131599999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.749165982422994 -63.2387672480130973 22.3537846106520988 -12.8179257407298994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371248790783488 2481371248790783488 656968478 2015.5 25.3966073504766001 0.0467539759628834012 -3.20526425919595015 0.0327237432481466972 7.92071911353303015 0.0539737962202926982 146.751190000000008 23.8102987373878001 0.0745859428970706007 -1.01284401526196999 0.0684917796814124985 0.176777719999999999 0.657100000000000017 -0.00183440290000000004 0.0413196529999999979 -0.00333711090000000021 0.068332866000000006 0.0307970249999999987 -0.037266050000000002 -0.0146385160000000007 0.296780619999999995 147 147 137 10 9.54605399999999982 354.498993 0 0.175707661096698997 31 true 436.792239999999993 1.57415973378287011 0.0109185183531406004 0.0969089699999999971 17 10 0.0483689049999999968 0 17 false 137 672350.686347809038 1004.30135012687003 669.471008 11.1193760000000008 17 323796.432371240982 739.043653732774033 438.128969999999981 11.5757080000000006 17 481512.601834374014 669.088990651279005 719.654049999999984 10.5554009999999998 1.19775150000000008 0 1.02030749999999992 0.456332200000000021 0.563975329999999997 12.9869459975802002 0.654479048408900033 5 5500 4.5 0 NOT_AVAILABLE 151.706326253091987 -63.2403686896853969 22.3391041147188005 -12.8048983687322 100001 5245.33008 5137 5427 0.0205000006 0 0.182999998 0.0135000004 0 0.0715999976 200111 0.809445859999999962 0.756161149999999949 0.843946399999999985 0.446850999999999998 0.442692040000000009 0.451009930000000003 +1635721458409799680 Gaia DR2 2481371244495189248 2481371244495189248 1230979570 2015.5 25.405156088118499 0.198529314915596999 -3.19793794575525014 0.14018707087228599 0.872965904689013028 0.234016556063075004 3.73035959999999989 -22.5987084196851988 0.357340436848401 -47.7178235688110988 0.251834400917710977 0.0050934133999999999 0.560683900000000013 -0.0468616700000000011 0.0999358300000000033 -0.255136279999999993 0.187579699999999988 0.360766230000000021 -0.0807458199999999959 -0.0412375999999999993 0.215225770000000011 149 0 149 0 2.40584640000000016 188.011002 0.401496431485925009 1.08799143536658005 31 false 0.710231199999999951 1.36373701076530995 0.0424707266258851981 0.0244021500000000009 17 10 0.324214219999999997 0 17 false 148 1071.48145933122009 2.46947808390991019 433.890015 18.1134030000000017 16 311.581572354645004 7.35912275851446029 42.339500000000001 19.1174579999999992 15 1191.34534840708989 9.6826123451980699 123.039664999999999 17.0718250000000005 1.40266249999999992 0 2.04563329999999999 1.00405499999999992 1.04157830000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.716464219883989 -63.2300883782739973 22.3500096806868989 -12.8012327432996997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359459104922240 2481359459104922240 95940965 2015.5 25.4382973971949014 0.681196969805762054 -3.2142150795534099 0.437642134376962977 0.584468532106318994 0.797421391680110947 0.732948099999999991 6.50840207777612001 1.1413842083977499 6.57999924884305987 0.763426360861557018 -0.13432303000000001 0.602018599999999959 0.17640494000000001 0.0340010450000000006 -0.28537615999999999 -0.0412187050000000013 0.254019170000000016 -0.00394122859999999995 0.101121900000000001 0.0550313799999999978 176 0 174 2 1.66317019999999993 200.710007 1.26243823632548002 0.970105720886124012 31 false 0.0567622929999999984 1.73175996821556 0.140156951312428002 -0.0287948639999999999 20 10 1.01629799999999992 0 20 false 175 186.121655373621991 1.37009995709729004 135.845001 20.0138740000000013 10 55.8553048723056023 17.0530651093332999 3.27538200000000002 20.9837269999999982 13 233.706799793599004 9.07803673755564944 25.7442020000000014 18.8402419999999999 1.55576789999999998 0 2.14348399999999994 0.969852449999999977 1.17363170000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.798330871898003 -63.2305645983476978 22.3754068264158015 -12.8285562349475999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358531391981952 2481358531391981952 863174776 2015.5 25.4717694551634004 0.220374173258846007 -3.22532633692867021 0.142124937120455014 0.909684691505626031 0.245663731244259997 3.70296700000000012 10.3528685775473992 0.40139517719694201 -47.6297182953713971 0.260413064652204984 -0.105259729999999996 0.537482600000000033 -0.028571843999999999 0.056707966999999998 -0.25737268000000002 0.0187323370000000017 0.194482180000000004 0.0123702780000000002 0.0824350499999999958 0.0669652450000000066 170 0 170 0 1.49642159999999991 192.962997 0.36811979289709601 0.667210753093131048 31 false 0.506719600000000048 1.53706592131420994 0.0470684681656192982 -0.0524895819999999999 19 10 0.353928240000000005 0 19 false 168 808.58190746536502 2.35797772240860004 342.912994 18.4190560000000012 16 329.706276893231973 9.84916800442617912 33.4755480000000034 19.0560699999999983 16 761.874600790878958 13.7781802202429002 55.295734000000003 17.5572100000000013 1.34999420000000003 0 1.49885939999999995 0.637014399999999981 0.861844999999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.875912474655991 -63.2261923502929974 22.403074690775 -12.8511968685448998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359291601831552 2481359291601831552 1441029144 2015.5 25.4737999374005 0.0495634296749892997 -3.21682802506381993 0.0341578719706238029 4.05305410726847981 0.0552473858504344967 73.3619159999999937 -11.9378709461851003 0.089810756522628904 -10.0581799630655997 0.0699360608740278028 -0.0638359039999999989 0.545168499999999945 0.027648207000000001 0.00336754790000000012 -0.191473349999999987 -0.0356875899999999982 0.0845944960000000051 -0.00695160799999999975 0.0653049500000000005 0.0911052450000000014 171 0 170 1 2.29099500000000011 209.432999 0.122476792431718995 1.13183687531479005 31 false 10.1731350000000003 1.38356818603334997 0.0121834232337838001 -0.0406389720000000024 19 10 0.0857723060000000065 0 19 false 169 10343.3454595716994 6.92509752383304988 1493.59998 15.6517130000000009 18 2853.85049090119992 13.3082334756697005 214.442469999999986 16.7128100000000011 18 11238.2344230997005 25.2491270125088008 445.093999999999994 14.6351750000000003 1.36243010000000009 0 2.07763579999999992 1.06109710000000002 1.01653860000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.871835250515005 -63.2176508743481023 22.4082183951191993 -12.8440427360272995 100001 4040.05005 3848 4205.31006 0.0780000016 0.0219000001 0.291599989 0.0452000014 0.0133999996 0.168799996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371553732845056 2481371553732845056 221186121 2015.5 25.3964876556469008 0.130940172510448011 -3.17190985587475982 0.0942138592494024957 0.535971585665005024 0.156410120648056011 3.42670660000000016 10.9623506690297994 0.22652322423364199 -17.1538131427139007 0.17170731422913299 0.0200058800000000002 0.574549100000000035 0.0108126509999999995 0.114953379999999994 -0.241939989999999994 0.234599489999999994 0.336783920000000014 -0.119127549999999999 -0.0627745299999999951 0.269969879999999995 147 0 146 1 2.61226219999999998 188.763 0.362066354442791005 2.17088123998999993 31 true 1.66096320000000008 1.54592532150911999 0.0277666811753546003 0.0340992400000000029 17 10 0.212130220000000008 0 17 false 142 2393.51399498961018 4.74826611933197995 504.082001 17.2407760000000003 16 1090.83383590620997 10.5906191535204997 103.000010000000003 17.7569920000000003 15 1865.32171965282009 11.2613837039582005 165.638759999999991 16.5850350000000013 1.23506929999999993 0 1.17195699999999992 0.516216299999999961 0.655740740000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.674333720899995 -63.210288426130198 22.3515932283544991 -12.7738468625944002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371656812061184 2481371656812061184 1103352303 2015.5 25.4021173516734997 0.196876419437522987 -3.17066943997292983 0.139250406406160987 2.02683358868093011 0.239017558557703014 8.47985300000000031 31.1415314036437998 0.319666414145894973 -6.54493856324410039 0.242008691769581008 0.130662300000000009 0.631080599999999992 0.0877032299999999931 0.156426759999999998 -0.135106830000000011 0.197026010000000001 0.399131599999999975 -0.0864694200000000052 0.0224895370000000004 0.259116599999999975 152 0 151 1 2.1762545000000002 185.651001 0.517994716148003964 2.14991395683821995 31 false 0.774401699999999971 1.29266124362518009 0.0395497067187828011 0.0825152839999999943 18 10 0.297403040000000007 0 18 false 148 1252.95779898800993 3.67529991416196999 340.912994 17.9435250000000011 13 269.708211248369992 6.31418415199320027 42.7146570000000025 19.2741529999999983 12 1548.49935653198008 8.56914976930002936 180.706299999999999 16.7871419999999993 1.45113230000000004 0 2.48701099999999986 1.33062740000000002 1.15638350000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.684420563429001 -63.206758040858503 22.3574201036939009 -12.7747647834020004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371386229736064 2481371386229736064 375715796 2015.5 25.4256482760829989 0.144911366731867997 -3.17943813575067979 0.0924051865510949061 0.554682973937329016 0.167560749670100012 3.31033949999999999 12.4251978499122995 0.233573671758582013 -7.50204254268917037 0.181517282615061004 0.000269923130000000006 0.638610239999999996 0.0384426799999999999 0.0465070750000000019 -0.138041720000000007 -0.00707864440000000039 0.0600666799999999973 -0.00456234100000000014 0.0813045599999999979 0.154023240000000006 161 0 160 1 2.26335620000000004 197.578003 0.250002534250155006 0.757398937677723039 31 false 1.30725509999999989 1.60303609097447008 0.0308607934242347004 0.0277621579999999986 18 10 0.210456160000000003 0 18 false 157 1679.69610255156999 2.2817137561249301 736.156006 17.6252880000000012 15 971.728811753079981 13.0727166811676003 74.332579999999993 17.8825259999999986 17 1114.61788717512991 12.6587038525597997 88.0515000000000043 17.1441060000000007 1.24209769999999997 0 0.738420500000000035 0.257238399999999978 0.481182100000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.739844236081012 -63.204595577860303 22.3765048054209004 -12.7915725600730994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371450653631872 2481371450653631872 203327808 2015.5 25.414026163588801 0.336781334823718026 -3.16726295126216018 0.244093725317330007 2.06539057150168004 0.416627612888277987 4.95740200000000009 -13.8849275300456991 0.580364427031993979 -13.3756280284222004 0.422946664821556018 -0.0129133389999999994 0.590257200000000037 0.10449551 0.0772945700000000069 -0.288355980000000012 0.150424809999999992 0.411712350000000005 -0.10897279 -0.0372026150000000014 0.207070620000000011 160 0 158 2 1.68040440000000002 183.563995 0 0 31 false 0.239828910000000006 1.41608845044689002 0.0713758412225456995 0.0525139759999999969 18 10 0.527093770000000017 0 18 false 158 446.916147375904984 2.31070316709960988 193.410995 19.0628010000000003 13 88.2086910451245956 13.0630321798621001 6.75254340000000042 20.4876100000000001 14 593.798362665296963 9.74523753884666988 60.9321600000000032 17.8278220000000012 1.52602909999999992 0 2.6597881000000001 1.42480849999999992 1.23497959999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.705005248613986 -63.1985808588483025 22.3700417854450002 -12.7759786760473002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358531391982848 2481358531391982848 761263030 2015.5 25.4808004178240992 0.620553881002241958 -3.22330454713531989 0.452630496601578003 -0.388742874968901975 0.722351495920609987 -0.538163069999999966 0.693958922934499012 1.17319991970310999 -0.554458245892766044 0.926459151707188955 -0.155212330000000009 0.495489420000000014 0.104080820000000004 -0.0309443120000000016 -0.361864799999999986 -0.056640465000000001 0.0745957500000000023 -0.0190790199999999986 0.0527546480000000012 0.127737600000000007 161 0 159 2 5.06747630000000004 260.204987 1.91674527258620997 3.58668151731684981 31 true 0.0583369300000000021 1.85483526407046995 0.155881349569725991 -0.0313156249999999997 19 10 1.04365409999999992 3 19 false 160 215.893759763557 2.95847297455286018 72.9747009 19.852765999999999 15 174.18967792701801 19.6607480737578015 8.85976900000000001 19.7488330000000012 12 153.043349317072995 8.93563974518169957 17.1272960000000012 19.2998830000000012 1.51571319999999998 0 0.44894980000000001 -0.103933334000000002 0.55288314999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.892030974063005 -63.2204777251530032 22.4124366685071017 -12.8526382868355995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358874989367936 2481358874989367936 1507273270 2015.5 25.5206046519678011 0.755829807004694043 -3.21943658403881994 0.509286508952388028 1.04531430838224004 0.903014509878896976 1.15758310000000009 -4.57836430548069018 1.28145631302196006 -6.52733972581648025 0.922945252773257008 -0.22585131 0.601674099999999989 0.222333609999999987 -0.0354283970000000004 -0.362435879999999988 -0.173091949999999994 0.145702059999999994 0.0621160830000000025 0.13338644999999999 0.0173499119999999986 156 0 149 7 1.72079049999999989 174.462997 0 0 31 false 0.0523384000000000002 1.24136447712925002 0.166533791012313998 -0.00783524099999999973 18 10 1.15833659999999994 0 18 false 152 165.617976079913007 1.66281288522729009 99.6010971 20.1405959999999986 11 57.8126850512093 11.4818461114999995 5.0351385999999998 20.9463310000000007 14 188.232934725299998 10.9426518496976009 17.2017650000000017 19.0751799999999996 1.48562149999999993 0 1.87115100000000001 0.805734630000000007 1.06541630000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.967838027330998 -63.199816100536502 22.4517965033386986 -12.8636772986862002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359699623096960 2481359699623096960 1179896302 2015.5 25.4860761455492018 0.166574140715321006 -3.1995996612836799 0.113616747071981994 0.367281070913478003 0.187276086965093014 1.96117439999999998 0.470863003282006976 0.302993416373650015 -2.5146163362424101 0.205521668078883002 -0.168506349999999999 0.537104959999999965 0.150823180000000001 -0.0220439959999999997 -0.282563500000000023 -0.076504210000000003 0.282773879999999977 -0.00946009400000000049 0.0731311999999999934 -0.0150584220000000001 180 9 179 1 0.237661509999999992 177.794006 0 0 31 false 0.912278649999999969 1.56103283074585009 0.0369040812321186976 -0.0414535629999999988 20 10 0.259737249999999975 0 20 false 175 1186.79933442644005 2.41787619665167997 490.843994 18.0024219999999993 17 529.21216613558704 11.9914521223277006 44.1324499999999986 18.5423149999999985 17 934.25584831159199 9.43928822241348087 98.9752399999999994 17.3357559999999999 1.23312179999999993 0 1.20655819999999991 0.539892200000000044 0.666666030000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.87987867592301 -63.1968205085400996 22.426413788211299 -12.8325395424221007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359703918691456 2481359703918691456 1383758756 2015.5 25.4831797916547984 2.12750545013118009 -3.19756059167223006 1.51358591242720997 \N \N \N \N \N \N \N 0.0207369249999999998 \N \N \N \N \N \N \N \N \N 108 0 107 1 54.3280699999999968 4500.56006 11.4319846326541992 330.207572663631993 3 false 0.00742079999999999997 \N \N 0.000274182679999999978 19 10 3.39150710000000011 0 19 false 165 668.692863526587985 8.29631801123001011 80.6011963 18.6252999999999993 15 1059.39106593510996 12.5590015948660998 84.3531299999999931 17.7887479999999982 16 2099.42751267722997 13.7908751445334996 152.233100000000007 16.4566669999999995 4.72387080000000026 0 1.33208079999999995 -0.836551669999999969 2.16863250000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.872142354738003 -63.1962284304280999 22.4244264904559998 -12.8295788032271005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359699623096320 2481359699623096320 814986694 2015.5 25.4947776332265015 0.160485601820298002 -3.2007445591689998 0.101735934655734994 0.129540884993081001 0.184361056158157011 0.702647750000000015 0.118174173265272006 0.266246303601462009 -2.10139783080314979 0.180743038248212001 -0.0139442760000000002 0.621809359999999978 0.0791465040000000064 0.0752028799999999997 -0.0676298139999999964 -0.0413464679999999973 0.298330800000000007 -0.011565199 0.151443589999999989 -0.0143472210000000003 164 0 162 2 1.60203549999999995 186.384995 0.341935808179261003 1.19151642039419992 31 false 1.10605559999999992 1.55988828503833998 0.0330514018979745014 -0.0156901259999999987 19 10 0.235993829999999988 0 19 false 159 1591.31803862815991 2.58126477898525009 616.487976 17.6839730000000017 14 747.167056048441054 8.84413763606923986 84.4816200000000066 18.1678449999999998 13 1225.32708237626002 7.36932007506440012 166.274110000000007 17.04129 1.2395349 0 1.1265544999999999 0.483871459999999975 0.642683000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.898353763431004 -63.1941038880666994 22.4342657174531013 -12.8368033690055992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358943708850688 2481358943708850688 672672665 2015.5 25.4999285411572991 1.49929043869376999 -3.20223622446110001 1.23164714494412997 1.9227036422394701 1.79903167458283009 1.0687435999999999 -2.19613964668138983 3.05092396483746997 -3.42853896952470993 3.73692190784962008 -0.27730492000000001 0.446873870000000006 0.264846350000000008 -0.158711970000000008 -0.531882999999999995 -0.160040569999999993 -0.146611230000000009 -0.113984669999999996 -0.0445433500000000024 0.33231765000000002 94 0 93 1 -1.97644759999999997 63.7582016 0 0 31 false 0.0183455439999999984 1.55348727472651005 0.37123337349742902 0.00539509529999999959 11 9 3.52099900000000021 0 11 false 95 86.0969360872826002 1.63610483167702991 52.6231003 20.8508969999999998 7 56.4023457967331012 6.93178223682050998 8.13677400000000084 20.9731449999999988 8 48.2541945185709977 7.07575870613322966 6.81964970000000026 20.5530819999999999 1.21556639999999994 0 0.420063020000000009 0.122247696000000003 0.297815319999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.910067992134003 -63.1932287967686008 22.4386064207646001 -12.8400840324772005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358982364185600 2481358982364185600 956616142 2015.5 25.5111728252299983 1.72785523525513995 -3.19764042053741981 1.25318410795095003 \N \N \N \N \N \N \N -0.0629348599999999953 \N \N \N \N \N \N \N \N \N 140 0 140 0 57.8412480000000002 5053.1001 10.3720641101356996 275.830549659659994 3 false 0.00887118899999999981 \N \N -0.00807717600000000015 20 10 2.85264870000000004 0 20 false 176 587.176553153399027 6.89992459787735957 85.098999 18.7664429999999989 18 709.442432136840011 10.9707620176382008 64.6666500000000042 18.2240940000000009 20 1500.98281076738999 14.9983604266873005 100.076459999999997 16.8209799999999987 3.76449850000000019 0 1.40311429999999993 -0.542348860000000044 1.94546320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.928114612011996 -63.1842342400038035 22.4510477360786993 -12.8399450315541994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358703190819072 2481358703190819072 1588739736 2015.5 25.5290441807422006 1.09313431160037999 -3.22208788069645014 0.703562920710852024 2.47475579121340017 1.19200579132466 2.07612730000000001 43.4795919855812016 1.99929827240491997 -13.2856323137418997 1.32010724904485999 -0.233096100000000001 0.519118549999999956 0.325660400000000017 -0.100545549999999997 -0.304162770000000027 -0.167951689999999987 0.228083659999999994 -0.0354321079999999969 0.0840411400000000003 -0.0603338740000000026 150 0 149 1 4.01700199999999974 222.602005 2.89589830130607995 2.7964671066648199 31 false 0.0260675549999999992 1.40780398918003002 0.208282608719688012 -0.0742637800000000015 17 10 1.8155154 0 17 false 149 132.674060830581993 1.56749875830706009 84.6406021 20.3814010000000003 10 63.1778025897976008 14.2382447395181995 4.43719049999999982 20.8499769999999991 14 212.318411433509993 11.9766168028098008 17.7277449999999988 18.9444499999999998 2.07648900000000003 0 1.90552710000000003 0.468576429999999988 1.43695069999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.987229988702012 -63.1985595732816989 22.4588311642364999 -12.8692448457771995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358634471197312 2481358634471197312 142473623 2015.5 25.5485542655824993 4.70782761478988032 -3.22401219370369008 7.03544765778648973 \N \N \N \N \N \N \N 0.838649899999999948 \N \N \N \N \N \N \N \N \N 43 0 43 0 1.40134059999999994 50.7596016 0.446949453589567003 0.0142463877764717004 3 false 0.0162082049999999998 \N \N 0.431835259999999999 6 6 13.4266470000000009 0 6 false 45 79.3915941820901025 1.85639186760744002 42.7666016 20.9389290000000017 4 45.2493495379157977 15.7000521167982008 2.88211459999999997 21.2123570000000008 3 88.3210875149372043 0.538005383660887015 164.163939999999997 19.8967589999999994 1.68242540000000007 0 1.31559749999999998 0.273427960000000025 1.04216960000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.028010994118006 -63.1918557958474025 22.4766824215371983 -12.8782055829012005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359016723386624 2481359016723386624 1270692198 2015.5 25.5327205855530011 0.663192361418822984 -3.20128638397684995 0.435574260761477983 1.82592287799971009 0.767209443688145032 2.37995359999999989 -6.78665917700246002 1.15816460597128001 -10.9195891216972001 0.742877562178153039 -0.114034930000000007 0.527045499999999945 0.033934739999999998 0.106305689999999994 -0.299739540000000027 0.0768862000000000018 0.203799800000000003 -0.0121732000000000003 0.107350009999999996 0.108168766 168 0 167 1 2.47348260000000009 209.932999 1.73168234360485007 1.73173521601497993 31 false 0.0562293000000000029 1.31125052086972005 0.142796272103599992 -0.047696040000000002 19 10 1.0202194 0 20 false 168 195.882756805051002 1.30415129715077005 150.199005 19.9583760000000012 13 36.9162115936120969 9.33562375561566959 3.95433799999999991 21.4333460000000002 15 252.910374927192009 7.01674875849369961 36.0438100000000006 18.7545029999999997 1.47959210000000008 0 2.67884250000000002 1.47496990000000006 1.20387270000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.974605670447005 -63.1782187107265969 22.4701873206213989 -12.8512558996443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788070400 2481359046788070400 71464940 2015.5 25.5369785481248002 0.281443654548086009 -3.19271132458900997 0.178115618061538 2.34808690264144992 0.306399811445351999 7.66347359999999966 10.6202607983163002 0.52141430649186904 -11.2943708250486008 0.327862566639092023 -0.109722 0.500974999999999948 -0.106144820000000001 0.0945986500000000063 -0.264287260000000024 0.0778846100000000069 0.140993619999999986 0.0144629270000000004 0.0854453800000000013 0.0851905049999999997 169 0 169 0 5.25107570000000035 277.720001 1.03982377922239011 4.53355876099980026 31 false 0.312771799999999989 1.17578494424313007 0.0595254682027476015 -0.0530420799999999984 19 10 0.460870200000000008 0 19 false 166 754.983117103471045 1.82590561335897994 413.484009 18.4935229999999997 16 173.187782381279987 22.0611723299747986 7.85034369999999981 19.7550950000000007 15 1027.39036753361006 9.0863683518877707 113.069419999999994 17.2325820000000007 1.59020530000000004 0 2.5225124000000001 1.26157190000000008 1.26094060000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.974875995367 -63.1686484120315015 22.4774794845498 -12.8448481536757004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359115507551360 2481359115507551360 789072334 2015.5 25.536174446855199 3.53672487645071998 -3.18124652483631021 1.90185172771460009 \N \N \N \N \N \N \N -0.234368920000000008 \N \N \N \N \N \N \N \N \N 139 0 137 2 48.7044830000000033 3552.19995 16.4669693154596004 185.003187081708006 3 false 0.00339345079999999995 \N \N -0.142569169999999995 20 10 6.15875859999999964 0 21 true 169 252.492506054485006 4.06597047649893018 62.098999 19.6827450000000006 17 366.594754268863994 25.0733323158653008 14.6209030000000002 18.9409220000000005 15 727.314627906893975 8.29530742842164059 87.6778400000000033 17.6076149999999991 4.33244279999999993 0 1.33330729999999997 -0.741823200000000016 2.07513050000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.962285318171013 -63.1586594897102032 22.4810425431467991 -12.8338928928833997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788616320 2481359046788616320 1507031379 2015.5 25.5393390610116988 0.903092005690915967 -3.18940150307936987 0.558926372720815023 3.67043877042716993 1.11083601531167009 3.30421299999999984 11.1155592065970001 1.40363688385773 -8.40018661645633991 0.930663550141444973 -0.31181049999999999 0.648790899999999948 0.106791239999999996 0.0788143349999999993 -0.511117500000000002 -0.0500640700000000022 0.0443557350000000003 0.0734200299999999972 0.143219430000000009 0.140792379999999995 153 0 149 4 -0.698763000000000023 131.835007 0 0 31 false 0.0441179699999999994 1.59253985220983996 0.167371209398428006 -0.0531395200000000026 18 9 1.26666490000000009 0 18 false 151 146.241733093990007 1.36343033627436006 107.260002 20.2756879999999988 14 40.9625756002540982 7.90500388309957014 5.1818540000000004 21.3204199999999986 17 223.180846382114993 9.78749276896463982 22.802658000000001 18.8902779999999986 1.80621100000000001 0 2.43014140000000012 1.04473109999999991 1.38541029999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.976410025022005 -63.1646446415945988 22.4809767581187003 -12.8426383727277997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788070272 2481359046788070272 652432593 2015.5 25.5495011755353012 0.254535004832090017 -3.19323268674446981 0.148978907661996007 0.648498354353825968 0.28943576228121598 2.24056049999999995 -6.34980766870506041 0.388046983933116985 -1.98086402673321005 0.265160714525161989 -0.241060849999999993 0.66224700000000003 0.0344342799999999977 0.076100773999999996 -0.38835989999999998 0.0178263430000000014 0.101453600000000005 0.0313875399999999985 0.0933517199999999991 0.121253386000000005 168 0 166 2 1.76847029999999994 194.108994 0.523327950649512985 1.42366791337234 31 false 0.50160439999999995 1.42291876478155999 0.0479111641144900971 -0.0672567699999999935 19 9 0.344295100000000021 0 19 false 166 852.129890838274036 1.89985624468872993 448.52301 18.3621000000000016 18 323.616189080512015 11.1469820088651002 29.0317299999999996 19.076312999999999 19 813.223798014648992 7.93545073439229043 102.479849999999999 17.4863950000000017 1.33411590000000002 0 1.5899181 0.71421239999999997 0.875705700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.000344463080012 -63.1637057189494016 22.4892063605412993 -12.8499355009524994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788071424 2481359046788071424 429098613 2015.5 25.5498680829572997 0.343210315791258991 -3.19009150127754992 0.22985617758850499 -0.589189699429418012 0.397899183223126007 -1.48075120000000005 12.4809453390321003 0.612599689338961029 3.42097452721673978 0.426427810370485993 -0.0884202399999999972 0.534479739999999981 0.0554183129999999968 0.0685422799999999971 -0.286102240000000008 0.0308033709999999995 0.126709729999999993 -0.0161930750000000012 0.0928794800000000004 0.133498090000000014 176 0 174 2 3.74912430000000008 246.863007 0.959251147766508994 1.94408002480894004 31 false 0.192544880000000002 1.33804421847989996 0.0761326380829182997 -0.0199824679999999998 20 10 0.542612100000000042 0 20 false 172 458.267377485737995 1.6406732901571901 279.316986 19.0355680000000014 17 158.845997280374007 10.2597837562110996 15.4823920000000008 19.848948 17 476.560448159031012 8.03656312591846955 59.299038000000003 18.0666259999999994 1.38654089999999997 0 1.7823218999999999 0.813379300000000027 0.968942639999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.998062745476005 -63.1607157178988032 22.4907416763806012 -12.8471497121009008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359875717382400 2481359875717382400 452553254 2015.5 25.5129285229738016 0.155906648180506008 -3.17207231740042017 0.0917307754334713982 0.564884989062015008 0.178430056742058002 3.16586230000000013 6.22394806276197965 0.235830343126547992 -10.3633291135663992 0.158905707274427987 -0.244049500000000003 0.667271300000000012 0.0577056499999999972 0.0683147600000000021 -0.392599079999999989 0.0210791659999999999 0.15687601000000001 0.0265913030000000002 0.0796897699999999931 0.113227053999999994 177 0 176 1 -0.0922655200000000036 168.638 0 0 31 false 1.31244969999999994 1.64705817851953995 0.0305111546287843011 -0.0623110799999999979 20 9 0.210778460000000001 0 20 false 177 1573.42632001474999 2.22988115508960005 705.609985 17.6962490000000017 18 879.564709862042037 11.4383346543759998 76.8962199999999996 17.9907189999999986 17 1055.50439520249006 10.7643682735920994 98.0554000000000059 17.2032699999999998 1.2298441 0 0.787448900000000007 0.294469829999999988 0.492979049999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.907146542692999 -63.1604172045906012 22.4623739958719995 -12.8168184051074991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348567067805312 2481348567067805312 567236058 2015.5 25.1874709768619987 0.469262669434861002 -3.42490837769471002 0.375288927125762006 0.982819196703196951 0.500522091983211959 1.96358799999999989 4.39293983505555996 1.08869787901989001 1.54077354997240001 0.67049004856808303 0.191531990000000013 0.209190829999999994 -0.298112659999999974 0.209170770000000006 -0.00290991720000000021 0.246038110000000004 0.297911470000000012 0.114368445999999999 0.00523876800000000042 0.167076229999999992 144 0 142 2 2.61888599999999983 184.270004 1.42119192840148001 2.38060260289344994 31 false 0.104953210000000005 1.47859825817546997 0.120032146055569 0.00522551360000000041 17 10 0.978891249999999991 0 17 false 142 255.518091204733992 1.30733600945099004 195.449005 19.6698109999999993 11 86.4460095761396019 3.38233093989878997 25.5581169999999993 20.509525 14 277.015118131993972 7.01689598095692002 39.4782999999999973 18.655660000000001 1.42244769999999998 0 1.85386469999999992 0.83971404999999999 1.01415060000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.494742103112003 -63.5282058722962972 22.0569280793975011 -12.9320258626840001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360833494410752 2481360833494410752 417470591 2015.5 25.1914071581771992 1.60936584639151992 -3.37550032118207 1.09528869882245994 \N \N \N \N \N \N \N -0.276738170000000006 \N \N \N \N \N \N \N \N \N 94 0 94 0 -0.410096799999999984 83.0019989 0 0 3 false 0.038408829999999998 \N \N 0.0570821649999999972 11 7 4.58340450000000033 0 11 false 96 107.656998224027006 1.2553329796016901 85.759697 20.6082600000000014 7 54.962104312692901 12.7617041268935001 4.30679999999999996 21.0012299999999996 10 189.22620816440201 17.4226079478406994 10.8609580000000001 19.0694680000000005 2.26820660000000007 0 1.93176269999999994 0.392971039999999994 1.53879169999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.45553012874899 -63.4818314996840982 22.0793930980311011 -12.8875611687294995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361039652844928 2481361039652844928 488683654 2015.5 25.2019730355907008 0.125938091623316012 -3.35432103358325007 0.115081681623670995 0.666475286086932961 0.152229752067251006 4.37808799999999998 -2.26426641413049978 0.267486994708278025 -5.76077557865632972 0.212389284435168996 0.239573759999999997 0.327364500000000003 -0.0154718570000000003 0.121224164999999995 -0.101366239999999996 0.0892179099999999975 0.241267499999999996 -0.0357884539999999973 0.0881821599999999955 0.216043349999999995 138 0 138 0 -0.476818299999999973 124.734001 0 0 31 false 1.23366510000000007 1.62225968835584 0.0345142425912675008 0.0879897399999999968 16 10 0.245957640000000005 0 16 false 136 1260.13747232494006 2.57424551255936018 489.516998 17.9373199999999997 14 558.867753452898 10.6931933584650007 52.2638779999999983 18.483115999999999 14 1010.43991472611003 14.0185955973235004 72.0785400000000038 17.2506449999999987 1.24534640000000008 0 1.23247149999999994 0.545795440000000021 0.686675999999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.456710872132987 -63.4581769602730006 22.0974700850734997 -12.8717727463964007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348773226236160 2481348773226236160 1682995665 2015.5 25.2141020858625993 0.0657599723369254041 -3.41838750004357017 0.053762003991493397 0.33968502777854398 0.074046651161000801 4.58744599999999991 4.55139272819704033 0.144234563480344996 1.51545618350694 0.104580874103023996 0.182108700000000012 0.291294429999999993 -0.167533249999999995 0.150497880000000001 -0.0835704800000000025 0.200557920000000001 0.173864419999999992 0.00420402800000000028 -0.0228827820000000008 0.240730990000000006 144 0 141 3 -0.0517679899999999998 134.485001 0 0 31 false 5.31074330000000039 1.64604647688357009 0.018212031983069199 0.0545238070000000005 17 10 0.137391580000000013 0 17 false 140 4543.71276339549968 4.21732428729755959 1077.39001 16.5448379999999986 14 2434.34724912958018 15.0879722266280005 161.34357 16.8854310000000005 16 3041.59657248964004 13.6804572620452003 222.331500000000005 16.0541669999999996 1.20516939999999995 0 0.831264499999999962 0.340593340000000022 0.490671159999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.542424837741009 -63.5109673439511013 22.0847465234440001 -12.9357828781490998 100001 5803.66992 5773.25 5861 0.122699998 0.00800000038 0.366699994 0.0822999999 0.00490000006 0.193100005 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347952888147072 2481347952888147072 1242089449 2015.5 25.2345892139945995 0.0583802167605328992 -3.42898486163492988 0.045661122571394 1.4952859750760199 0.0654948665017301979 22.8305840000000018 17.0928864006468011 0.128300420674184013 -14.3549706546971994 0.092200035073947903 0.104511119999999999 0.300397279999999989 -0.192089989999999988 0.134734140000000002 -0.132092120000000007 0.208490220000000004 0.184447880000000008 -0.0271435039999999989 -0.0703511099999999945 0.212717579999999989 156 0 156 0 1.2655597999999999 173.345993 0 0 31 false 6.46043249999999958 1.48454615435076009 0.0158976822363199009 0.0167945029999999988 18 10 0.123087799999999997 0 18 false 156 5514.14382728338023 4.75425553909803966 1159.82996 16.3346710000000002 16 2201.13041293792003 50.7941013593227026 43.3343699999999998 16.9947739999999996 18 4901.63741355330967 13.6251681963245996 359.748749999999973 15.5360669999999992 1.28809989999999996 0 1.45870689999999992 0.660102839999999969 0.798603999999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.594031946786004 -63.5118103098562017 22.1002326798706008 -12.9531823770615002 100001 4419.41016 4361.37988 4618.58984 0.263000011 0.116899997 0.48269999 0.131999999 0.0579000004 0.231999993 200111 0.613423700000000016 0.561653799999999981 0.62985469999999999 0.129321619999999998 0.117283490000000004 0.141359750000000006 +1635721458409799680 Gaia DR2 2481348983679712000 2481348983679712000 1590268440 2015.5 25.2103644864275012 0.702232654982065996 -3.40637683503527988 0.630444532211069997 2.44738289215923022 0.793244668142793041 3.0852811 11.5558962270226999 1.5139730682519601 -0.927337816653373004 1.05464384600845995 0.32185092999999998 0.311826019999999982 -0.0816394700000000056 0.275542969999999998 0.0109236980000000008 0.304420440000000014 0.439475119999999997 0.00410094199999999978 0.0173805949999999987 0.272578060000000011 134 0 132 2 3.91017100000000006 199.164993 2.43172862548497992 3.45516306017294994 31 false 0.0480980500000000033 1.21430829648610006 0.183208609656415999 0.0706000549999999949 16 9 1.39192509999999992 0 16 false 132 162.197164757048995 1.30429750102007991 124.356003 20.163257999999999 11 60.8299696399881995 8.39749598083485083 7.24382259999999967 20.8910939999999989 12 219.352578668820001 10.1917730604876997 21.522514000000001 18.9090629999999997 1.72741950000000011 0 1.98203090000000004 0.727836599999999945 1.25419429999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.523370221583008 -63.5016979266152006 22.085739258337199 -12.923243338752 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348910666937600 2481348910666937600 1589068131 2015.5 25.2336060078348012 0.989235104086562012 -3.40044326862674984 1.13037142474035002 0.538684283966361033 1.14151040496510991 0.471904839999999992 0.272783653139087978 2.45692900643591994 4.52584148789247998 3.30922234016118022 0.425953630000000028 0.265626799999999996 -0.20218912 -0.144802480000000011 -0.0831254599999999982 -0.160439739999999997 -0.280553039999999976 -0.0354765699999999989 -0.0440307039999999969 0.587597499999999995 102 0 101 1 1.37116550000000004 115.524002 2.64997446609944021 1.85854131112492005 31 false 0.0250130780000000011 1.6277126837521001 0.301924275704388012 0.134466190000000013 13 9 3.28328469999999983 0 13 false 100 93.2753927301617978 1.08799253487154002 85.7316971 20.7639479999999992 7 41.0321082330463014 5.48110767240406993 7.48609800000000014 21.3185789999999997 11 125.770295043827005 7.87488921675740983 15.9710560000000008 19.5129759999999983 1.7882787 0 1.80560300000000007 0.554630300000000021 1.25097269999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.564702841815006 -63.4864269171305011 22.1101087260180016 -12.9262948285677002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347914232775936 2481347914232775936 294991847 2015.5 25.2558349767076997 0.585123245889515031 -3.4281637178447899 0.581862326303091981 1.14381247792803009 0.680675921986594989 1.68040680000000009 8.23400407680295032 1.37554214560515997 11.6737656104488003 1.34040298456847995 0.339801499999999979 0.224432510000000002 -0.143766370000000004 0.0807741299999999995 -0.104619673999999996 0.126126690000000014 0.0601234469999999965 -0.0205554439999999991 -0.0895056199999999941 0.428600160000000008 130 0 127 3 -0.58609929999999999 112.439003 0 0 31 false 0.0593713299999999999 1.40559294036831006 0.187268294099008997 0.0616414299999999971 16 10 1.42492280000000004 0 16 false 128 142.322621880373987 1.25926938195325011 113.019997 20.3051819999999985 11 40.1325653430224989 5.45827425844836966 7.35261060000000022 21.3426459999999985 14 189.350305740968992 7.75972234706479025 24.4016860000000015 19.0687539999999984 1.61241319999999999 0 2.27389140000000012 1.0374641 1.2364272999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.636212691622006 -63.5019927184784976 22.1207682076413015 -12.9602488228688006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348021607651456 2481348021607651456 626394664 2015.5 25.2606912236566998 0.932537634709635022 -3.4259291242863501 0.680809319622947995 \N \N \N \N \N \N \N -0.00334128460000000013 \N \N \N \N \N \N \N \N \N 129 0 128 1 60.6709019999999981 5629.47998 5.77185156692495038 327.662580813438012 3 false 0.0289487470000000004 \N \N -0.0302793509999999995 16 10 1.87853979999999998 0 16 false 137 1397.37278351483997 13.7346699768616993 101.740997 17.8250850000000014 13 1260.32866029738011 14.4681635706647995 87.1104799999999955 17.6001779999999997 14 2082.13496128836005 13.4475113219491007 154.834229999999991 16.4656489999999991 2.39196279999999994 0 1.13452909999999996 -0.22490692000000001 1.35943600000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.643885272575005 -63.4978973612405966 22.1262376115234005 -12.9599615396240004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348120391194112 2481348120391194112 1360187212 2015.5 25.2721028878873994 0.0388523973746578988 -3.4025328639098702 0.0273654795931473002 4.07252671466279992 0.042051090376188302 96.8471150000000023 13.3655064246606994 0.0763282106485095035 11.8575288265679006 0.0623467766971824017 -0.0112499090000000006 0.441216380000000019 -0.233326399999999989 0.0648217199999999993 -0.0690586400000000045 0.123867266000000004 -0.0830421149999999997 -0.00488655040000000006 -0.0775026199999999943 0.132316380000000011 154 154 151 3 7.9738749999999996 327.897003 0 2.32062285740462012e-15 31 true 341.170599999999979 1.49914464044846008 0.00977765520238656032 -0.00123673750000000008 18 10 0.0494679599999999983 0 18 false 148 255273.272942782001 59.5496181934764977 4286.72998 12.1708529999999993 16 120353.133528418999 171.062668711788007 703.561649999999986 12.650245 16 192043.019365062006 174.237417635664997 1102.19170000000008 11.5534239999999997 1.22377150000000001 0 1.09682079999999993 0.479392050000000014 0.6174288 -12.6697607580446991 2.89608286342975019 8 5500 3.5 0 NOT_AVAILABLE 151.644495626240996 -63.4718766972090975 22.1459622345521012 -12.9424221253932004 100001 5016.22998 4957.75977 5085.45996 0.588999987 0.423900008 0.717999995 0.294 0.234999999 0.349599987 200111 1.08284500000000006 1.05356340000000004 1.10853789999999996 0.668862760000000001 0.658911759999999957 0.678813760000000044 +1635721458409799680 Gaia DR2 2481348876305454336 2481348876305454336 576988743 2015.5 25.2561481421202991 0.302705207816260979 -3.3966422631112998 0.262223575431575984 3.13746176664349008 0.350969702891919977 8.93940899999999949 -10.8298177391548993 0.681410156736759975 -30.7160776311670993 0.481076961581967999 0.18474154000000001 0.273917899999999992 -0.113388329999999996 0.167061519999999991 -0.139453560000000004 0.193554709999999991 0.383247049999999978 -0.0452213799999999985 -0.0272601750000000011 0.194141640000000004 151 0 151 0 3.75789360000000006 219.214005 1.07386872562508007 2.98334088010133014 31 false 0.209449130000000011 1.29240670602485008 0.0830496675172884002 -0.00337699899999999989 18 10 0.613509900000000052 0 18 false 150 426.859841908698002 2.01350000080280012 211.998993 19.1126520000000006 15 88.1092356605850995 6.89214102630557957 12.7840159999999994 20.4888340000000007 17 606.122533853412051 7.00684213528874977 86.5043799999999976 17.8055200000000013 1.62636939999999997 0 2.68331529999999985 1.37618259999999992 1.30713269999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.606622131002013 -63.4733706312171009 22.133005478623101 -12.931068954253 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350353774808064 2481350353774808064 1206520101 2015.5 25.2672360318873004 0.281452075547657998 -3.39289837694149021 0.260927296722570978 0.738498399316498966 0.351193200838195996 2.10282660000000021 4.01913321243724031 0.600582917557119011 3.90625388404001006 0.504932833737576026 0.262295300000000009 0.341475750000000022 0.0245269559999999991 0.122215710000000005 -0.200925560000000003 0.157837659999999991 0.240860660000000004 -0.100907700000000003 -0.0159145610000000007 0.350181100000000023 164 0 162 2 2.07762119999999983 195.994003 0.850393248018780024 1.68833452293793007 31 false 0.216381939999999995 1.35795161583752999 0.075811484868645404 0.06936755 19 10 0.577987130000000016 0 19 false 161 402.957700454664973 1.72520837844335007 233.570007 19.175217 16 123.069427857768005 8.73361898705202933 14.0914579999999994 20.1260130000000004 16 482.46082459017498 8.37761208560872994 57.5893020000000035 18.0532649999999997 1.5027142 0 2.07274819999999993 0.950796100000000033 1.12195200000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.625431427881011 -63.4652503705789002 22.1449778703519016 -12.9316747525941 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350358069860224 2481350358069860224 697403277 2015.5 25.2670782817852988 0.0270437831713890992 -3.39157976283985008 0.0219529069885758994 0.941589815053889945 0.0322362007543414986 29.2090819999999987 5.08201672493667989 0.0559886123987146031 4.46120886268484007 0.0509136064921039966 0.163939820000000014 0.435946500000000015 -0.0348078569999999976 0.0254974809999999989 -0.110501779999999994 0.0853968400000000016 0.0194720830000000011 -0.12907115999999999 -0.0958507299999999951 0.341754300000000011 165 0 165 0 -2.06788540000000021 125.219002 0 0 31 true 35.743267000000003 1.62465412896071992 0.00731910682511238957 0.0785821800000000015 19 10 0.0651830500000000063 0 19 false 163 27840.7014733411997 9.73509500716104981 2859.83008 14.5766650000000002 19 15435.6215084140003 40.0454514494073024 385.452549999999974 14.8800779999999992 19 18270.0942115842008 30.2974165963298994 603.02484000000004 14.1075680000000006 1.2106633 0 0.772510499999999989 0.3034134 0.469097140000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.623849460131993 -63.4641260683470989 22.1453270443249011 -12.9303911155286997 100001 6328.85986 5640 6873.41992 0.0769999996 0.0170000009 0.148499995 0.0460000001 0.00789999962 0.0816000029 200111 0.917449799999999982 0.777835100000000002 1.15524760000000004 1.2166376000000001 1.11727130000000008 1.31600389999999989 +1635721458409799680 Gaia DR2 2481348120391349760 2481348120391349760 121443835 2015.5 25.2754498165892016 1.28099726507688993 -3.40724211299977986 1.09674207896275 \N \N \N \N \N \N \N 0.197945239999999995 \N \N \N \N \N \N \N \N \N 77 0 77 0 -0.158486779999999994 69.4618988 0 0 3 false 0.0237826759999999991 \N \N 0.0317036320000000024 10 7 4.56289239999999996 0 10 false 77 82.4848894412292992 1.42304051468033999 57.9637985 20.8974299999999999 7 40.9587090690416034 11.0901516303257992 3.69325070000000011 21.3205220000000004 7 65.1913552459515984 4.42041593410259015 14.7477870000000006 20.2264440000000008 1.28690309999999997 0 1.09407809999999994 0.423091900000000021 0.670986199999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.655772329845007 -63.474700644231703 22.1473649235869985 -12.9480319960967005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349632219698816 2481349632219698816 556940297 2015.5 25.2914144383230983 0.242870709576936988 -3.39563206576909016 0.227231123984715011 1.11576865430083005 0.298971158688174976 3.73202780000000001 8.89992280227465038 0.518266325424980967 -7.89802127944652987 0.434409630994879004 0.28524670000000002 0.342993559999999975 0.0670554700000000059 0.140595140000000007 -0.157604070000000013 0.169925959999999987 0.293254899999999985 -0.129433099999999995 -0.0128853249999999996 0.330968229999999974 170 0 169 1 0.540363700000000002 173.289993 0 0 31 false 0.279106440000000011 1.45467279831614005 0.0622885287453195033 0.0733472299999999994 20 10 0.497748049999999997 0 20 false 168 421.488183213775983 1.50346271152991995 280.345001 19.1264019999999988 15 134.686882646373988 5.73132167580886964 23.5001430000000013 20.0280740000000002 15 423.735404078904992 9.86994828892454912 42.9318770000000001 18.1941829999999989 1.3248823999999999 0 1.8338909000000001 0.901672359999999951 0.932218549999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.676863782637014 -63.4573804732648981 22.1669591785613989 -12.9431229216805992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349563500362496 2481349563500362496 503360280 2015.5 25.2934132943125007 10.2137845574319996 -3.39684728338156994 3.40699712105619001 \N \N \N \N \N \N \N 0.789968800000000027 \N \N \N \N \N \N \N \N \N 61 0 61 0 -0.623174369999999977 49.0475998 0 0 3 false 0.0168177819999999999 \N \N -0.0730340500000000031 8 6 54.0948939999999965 0 8 false 63 71.6410883339567022 1.62097959318498996 44.1962013 21.0504600000000011 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.682063777846992 -63.4576227117322986 22.1684019110249011 -12.9449886976768003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360936573626368 2481360936573626368 1396457565 2015.5 25.2067984032141013 0.232460629517846989 -3.37412866400421008 0.218694872635025989 1.87087726529014997 0.279872617961234027 6.68474599999999963 18.9010608364807986 0.485902774919094005 -23.706231700868301 0.411056694531025002 0.314736799999999983 0.337051780000000023 -0.0339035759999999978 0.125482380000000004 -0.106052679999999996 0.12312679 0.148087620000000003 -0.0134906390000000004 0.0557703859999999982 0.340474160000000026 138 0 136 2 0.727906799999999965 142.432999 0 1.75589907262068996e-15 31 false 0.370293529999999982 1.4621769544963501 0.0630356603468489041 0.123760863999999998 16 10 0.465555700000000017 0 16 false 135 481.127117319933006 1.58598117788371007 303.362 18.9827159999999999 15 123.938158947882002 9.9660156091972194 12.4360789999999994 20.1183760000000014 14 563.156956045792981 10.2465943109607007 54.9604029999999995 17.8853450000000009 1.42809469999999994 0 2.2330302999999998 1.13566020000000001 1.09737010000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.485352481532004 -63.4740462597906969 22.0945606435444013 -12.8919594273952001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349151183366528 2481349151183366528 813894213 2015.5 25.2398603853966996 0.322966914768772984 -3.37338914583631988 0.307813641147426986 1.38426642101185005 0.385640666589190995 3.58952399999999994 1.54151212182288999 0.686690787958084026 -7.95514660589870015 0.568402662703321959 0.333311259999999998 0.339811379999999996 0.0545729100000000023 0.179218409999999995 -0.0863045900000000005 0.188576830000000001 0.341861799999999993 -0.107350580000000001 0.00765555770000000014 0.320757540000000008 154 0 153 1 2.46894649999999993 193.871994 0.78974978222145098 1.02140513151541001 31 false 0.17467611999999999 1.3226862440515299 0.0843254296046585944 0.106867193999999999 18 10 0.656311450000000018 0 18 false 151 317.179376420345022 1.39201065788697997 227.856995 19.4351020000000005 14 88.5425856879899982 10.0227967076463003 8.83412000000000042 20.4835069999999995 11 412.57377368192698 5.75275305426873018 71.7176199999999966 18.2231659999999991 1.57991470000000001 0 2.26034159999999984 1.04840470000000008 1.21193700000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.551469166857004 -63.4592980964755995 22.1263079971046004 -12.9034562964129993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362448402119296 2481362448402119296 217313173 2015.5 25.2234942001039002 0.178796970121921001 -3.34746257443579021 0.152966985706376013 0.661642498321927008 0.211792943605812994 3.12400630000000001 -1.95862931083497993 0.362145615170760993 -3.66400005405672013 0.279379425403678994 0.257654519999999998 0.413224849999999977 0.0301638120000000017 0.167032569999999991 -0.0854898240000000059 0.184614759999999989 0.322213899999999998 -0.0873943300000000062 0.0189207899999999998 0.280011999999999983 166 0 165 1 2.3201404000000001 204.410004 0.580672338346246986 2.09794674448145013 31 false 0.584405399999999964 1.50715020786076992 0.0455605886018353029 0.0783164350000000037 19 10 0.337524500000000005 0 19 false 165 844.286508714591946 1.99151664017298002 423.94101 18.3721400000000017 18 324.950414757348994 9.33869052037151981 34.7961430000000007 19.0718460000000007 17 796.640645896659976 6.3922440375406504 124.626130000000003 17.5087639999999993 1.32844840000000008 0 1.56308169999999991 0.699705099999999969 0.86337660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.493661756915998 -63.4428198957654033 22.1205488081062995 -12.8733298836804 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350701666873728 2481350701666873728 404390648 2015.5 25.2405492095724995 0.753931650610703996 -3.35709535525155989 0.842291091348791987 0.0791032665348433972 0.870934498326895956 0.090825740000000002 14.0202029493945002 1.69928532799277998 -5.32128616379309971 2.12012624501690006 0.450950799999999985 0.354954930000000002 0.00109384530000000008 0.0106047620000000002 0.0817012339999999976 0.0354946800000000007 -0.0858085600000000059 -0.161798030000000009 -0.140967409999999987 0.525825499999999946 119 0 119 0 2.85153480000000004 161.862 2.17893749764489986 1.53718419925325001 31 false 0.036925063000000001 1.32118617812586003 0.210438617452375992 0.159348039999999996 14 9 2.10351920000000003 0 14 false 119 122.000796783404994 1.1150698830261101 109.411003 20.4724600000000017 10 36.1285083339265967 7.78397286532803001 4.64139700000000044 21.4567620000000012 12 160.541492835956007 11.5017962998916996 13.9579500000000003 19.2479520000000015 1.61203859999999999 0 2.20881080000000019 0.984302499999999969 1.22450830000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.537296258601998 -63.4442703421324978 22.1331334470397998 -12.8885668978108008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362452697738112 2481362452697738112 363959589 2015.5 25.2300863874670007 0.048580154391731703 -3.34785099873178993 0.0391576565425775999 0.356539020038968979 0.0567842243716958003 6.27883899999999961 -4.50008371658104966 0.106098782146598 -17.2443590656352015 0.0788575623558128991 0.220332709999999987 0.333626660000000019 0.114319019999999993 0.105841144999999998 -0.0816469900000000026 0.136108580000000007 0.173949880000000001 -0.186910810000000011 -0.0194658499999999998 0.274586260000000026 159 0 159 0 1.33166920000000011 177.837997 0.0627902547235485997 0.238020975724166001 31 false 9.06149199999999944 1.60014911882428001 0.0125782057873270996 0.0495776529999999993 18 10 0.105093315000000007 0 18 false 155 7828.38034248482018 4.94529028759775979 1583 15.9541854999999995 14 4403.79174537272957 14.3736153671398998 306.38024999999999 16.2418210000000016 15 5074.63554046805984 27.0872680974689999 187.34393 15.4984079999999995 1.21077750000000006 0 0.74341299999999999 0.287635799999999997 0.455777170000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.507346321351008 -63.4403656069159965 22.1266756689701012 -12.8761200336958002 100001 6228.5 5573.12012 6643 0.174199998 0.0175000001 0.442999989 0.0855000019 0.0126999998 0.219999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350456853424896 2481350456853424896 932069764 2015.5 25.2722252992510015 0.409114951692261974 -3.37096249004788007 0.37860007295435999 1.98746885288791009 0.505354424942962011 3.93282180000000015 59.7266952261486992 0.956152550845558946 1.42774368839143007 0.733604528974325043 0.319996769999999986 0.214616420000000002 0.193106589999999995 0.167971520000000013 -0.184670549999999989 0.227586800000000006 0.320356729999999978 -0.264939550000000024 -0.069144115000000006 0.357450070000000009 156 0 156 0 2.4666570000000001 197.251999 1.30035703778746004 1.99919548249380008 31 false 0.107235929999999993 1.51009448595100992 0.112297277796186007 0.0530985399999999996 18 10 0.912826059999999995 0 18 false 156 252.725249580540009 1.62169394403562994 155.839996 19.6817439999999984 14 74.168564631575407 9.86402686680654917 7.51909600000000022 20.6758379999999988 16 310.764421676207007 7.20094091837978034 43.1560860000000019 18.5308419999999998 1.52312829999999999 0 2.14499659999999981 0.994094849999999974 1.15090179999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.61449722326401 -63.4432933630088982 22.1580331424851984 -12.9131255468894999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349735299102336 2481349735299102336 1186473285 2015.5 25.2941816016012986 0.656972150738072025 -3.37804257163277022 0.631617850025658956 3.70292882624739006 0.802436710500350037 4.6146054000000003 -1.66301635610476994 1.42143452796837 -14.1411992656824008 1.19250510517163 0.306732400000000016 0.321109900000000004 0.0692791400000000029 0.176531090000000002 -0.166282469999999988 0.222402569999999994 0.363103999999999982 -0.142154169999999996 -0.0484052820000000009 0.352945950000000008 164 0 162 2 5.47617629999999966 274.434998 2.65714538330749983 3.79612236056392005 31 false 0.0397126699999999985 1.50394472087180997 0.177686446602007997 0.0901044599999999973 19 10 1.37985730000000006 0 19 false 162 149.314916070245999 1.02459881590391011 145.729996 20.253107 15 25.8882126358706017 4.78689116190249031 5.40814730000000043 21.8186320000000009 16 232.698956917358004 5.29771335698974966 43.9244160000000008 18.8449339999999985 1.73182400000000003 0 2.97369770000000022 1.56552500000000006 1.40817260000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.665578311721987 -63.4403049613530996 22.1762530936338003 -12.9277941159070995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350491213163392 2481350491213163392 1448702894 2015.5 25.2964857146895987 0.656197542672366962 -3.37074196717968988 0.78175597955798104 -0.575465568819795048 0.78204263333024604 -0.735849399999999987 -1.65830201902892993 1.69207895121844998 -15.0955066851806006 2.30087204992323002 0.467974129999999988 0.23869631999999999 -0.121588550000000004 -0.220725919999999992 -0.156434390000000006 -0.26169574000000001 -0.39376317999999999 -0.102925464999999994 0.0240664740000000009 0.653836199999999979 127 0 126 1 2.93954300000000002 171.886993 1.45083780601835999 0.915748512167677053 31 false 0.0481824169999999982 1.41857776716839989 0.187719789569695011 0.192396490000000003 15 9 2.32742069999999979 0 15 false 125 134.151761937682011 1.13138017682442005 118.573997 20.3693750000000016 11 62.0653234091505013 11.2452626194802008 5.5192420000000002 20.8692670000000007 12 148.90705908758801 7.46653049958104997 19.9432739999999988 19.3296320000000001 1.57263970000000008 0 1.53963469999999991 0.499891279999999993 1.0397434000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.663228708766013 -63.4327230510787032 22.1812103160635985 -12.9218573878782994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350800450813568 2481350800450813568 194781241 2015.5 25.2735115459849986 0.317926540990568995 -3.34415729275261997 0.29610109417625502 0.733185483141850947 0.392072796330971973 1.87002380000000001 15.5598032143367 0.767292524851487023 -2.43205424868199982 0.587475894588776026 0.287544130000000009 0.19082613000000001 0.200845689999999993 0.103963174000000005 -0.121339929999999999 0.120725979999999997 0.309762419999999983 -0.276324599999999976 0.00350706230000000013 0.24484787999999999 145 0 145 0 1.42855930000000009 164.546997 0 0 31 false 0.183280510000000008 1.48155126981517005 0.0875153570959061045 0.0401442399999999977 18 10 0.707797699999999974 0 18 false 144 319.996095267257999 1.7210936454819501 185.925995 19.4255050000000011 13 117.764629790021004 10.9966822911283995 10.7091054999999997 20.1738509999999991 16 338.415239418155011 20.442840561588099 16.5542179999999988 18.4382950000000001 1.42557939999999994 0 1.73555560000000009 0.74834630000000002 0.987209299999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.591458200775008 -63.4185147817238004 22.1694052294287012 -12.8886860400608008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351178407937792 2481351178407937792 10634132 2015.5 25.2909943605501013 0.334675135000065016 -3.33582251649337991 0.30475175898871798 0.315099434073889018 0.411233224296888022 0.766230459999999947 -0.171939903062678007 0.716081980903913951 2.59430228922412986 0.576429273443077039 0.257375660000000006 0.342174980000000017 0.0634479149999999936 0.145521330000000004 -0.16533871 0.181636269999999989 0.3175867 -0.136119109999999988 -0.0211302769999999994 0.307184960000000007 174 0 171 3 2.13877840000000008 207.324997 1.01099057019990002 1.61449364591533007 31 false 0.147388789999999992 1.36746191327403999 0.0858954264167585968 0.0698511200000000027 20 10 0.675590800000000047 0 20 false 170 314.409910323294014 1.17692317633544996 267.145996 19.4446259999999995 15 97.3338662660081013 5.42923498066013988 17.9277300000000004 20.3807280000000013 17 354.769835610181985 7.92415445988658984 44.7706870000000023 18.3870530000000016 1.4379436000000001 0 1.99367519999999998 0.936101900000000042 1.05757330000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.618739033634995 -63.4035153721871012 22.1892008575449005 -12.8873790528722001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362727575644928 2481362727575644928 769803628 2015.5 25.2055703984066 1.94126105899500989 -3.33540071117857018 1.62607023932470995 \N \N \N \N \N \N \N 0.216254350000000012 \N \N \N \N \N \N \N \N \N 71 0 70 1 95.7595799999999997 18650.6992 9.14898722989775948 1487.57963106681996 3 false 0.0115472219999999993 \N \N 0.0872663260000000052 15 10 4.11142970000000041 0 15 false 132 3864.4363891612802 46.5885377806930023 82.9481964 16.7206499999999991 14 4511.41388957628988 69.6516688341079941 64.7710799999999978 16.2156069999999985 14 8025.35534869579988 47.8731780766720973 167.637820000000005 15.0007590000000004 3.24413919999999978 0 1.21484759999999992 -0.50504300000000002 1.71989060000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.445963831617007 -63.4395276115100017 22.1080582523754998 -12.8555147343983993 132011 5095.62988 4284.4502 6938 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362826359252480 2481362826359252480 1057751954 2015.5 25.2009535601714987 0.253168536357804008 -3.3081590920182502 0.233935550834500988 0.50340845791417399 0.309690645250945973 1.62552030000000003 -7.34687833197190976 0.531547465268986996 -6.78186539365137975 0.414172750387973021 0.324869899999999989 0.335308200000000001 0.0423179700000000034 0.155600739999999987 -0.0983370100000000025 0.12096643 0.272236199999999984 -0.0665039099999999994 0.0920794899999999999 0.279404250000000021 159 0 157 2 0.382106100000000004 158.074997 0.0969451022734663936 0.0227915319694964001 31 false 0.280161019999999983 1.4811231293445799 0.0662054578868853938 0.13003482999999999 18 10 0.492527629999999994 0 18 false 156 410.819707964436986 1.55113806735702009 264.851013 19.1542379999999994 13 135.664982729961991 9.75651876332491952 13.9050609999999999 20.0202179999999998 14 464.066189794829995 8.83665542904373069 52.5160449999999983 18.0954699999999988 1.45984029999999998 0 1.92474750000000006 0.865980149999999949 1.05876729999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.410735946977013 -63.4168333075688011 22.1139788512661006 -12.8284957108872 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362830654859904 2481362830654859904 923240850 2015.5 25.2088333308648984 0.126070946222937991 -3.31476165992952021 0.109200044567915003 0.0565828268387930031 0.154935799611712999 0.365201769999999981 -0.292935609192968016 0.278371136971505007 -2.17173820094253989 0.204127723940200012 0.262801500000000021 0.272973569999999999 0.103880310000000003 0.115048810000000001 -0.172596980000000011 0.125906409999999996 0.184984599999999999 -0.142949330000000013 0.0556162149999999966 0.284890529999999975 151 0 150 1 3.81397649999999988 219.251007 0.360280909772605018 1.53424989840128001 31 false 1.21272810000000009 1.54254181928115996 0.0330327482934643021 0.0983622600000000069 17 10 0.258344999999999991 0 17 false 148 1501.52617011428993 2.5829738724836302 581.317017 17.7470339999999993 14 734.918443859840977 13.6180615359442001 53.9664500000000018 18.1857909999999983 14 1156.63511657585991 7.90524181712033958 146.312420000000003 17.1039299999999983 1.25975400000000004 0 1.08186150000000003 0.438756939999999984 0.643104549999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.432921702430008 -63.4194639883650026 22.1189776108078995 -12.8375357678998991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362482761994112 2481362482761994112 449231108 2015.5 25.2343151984566987 6.33974431337408983 -3.33667354315130993 3.4952403197358799 \N \N \N \N \N \N \N -0.845334649999999965 \N \N \N \N \N \N \N \N \N 39 0 39 0 0.39867646000000001 36.6888008 1.77800768885611005 0.303322904704475982 3 false 0.0206879529999999985 \N \N -0.17419330999999999 5 4 82940.1499999999942 0 5 false 39 80.874666614278695 1.74032408613144995 46.4710007 20.9188350000000014 2 39.396753556444402 11.0960431851079999 3.55052279999999998 21.3627380000000002 2 68.0601729062536975 0.149913148832067994 453.997340000000008 20.1796879999999987 1.32868469999999994 0 1.18305020000000005 0.443902970000000008 0.739147200000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.505227592642996 -63.4284551183891026 22.1349322646237994 -12.8672900129193994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362551481339520 2481362551481339520 597455129 2015.5 25.2301093569816999 0.565744920684521979 -3.32760283143062008 0.623192689218477036 0.296996096903796025 0.653497219631201998 0.454471860000000005 5.87870236568204962 1.18497198872352993 0.0601020685251101028 1.23834129143760996 0.485213799999999973 0.335327660000000027 0.0303333640000000015 0.0548014380000000009 0.00680179099999999974 0.0271631269999999987 0.0473346450000000016 -0.0716116100000000061 0.0826719699999999974 0.427701229999999988 137 0 133 4 -0.724265460000000028 116.132004 0 0 31 false 0.0623783399999999974 1.47864996239820989 0.167887581874710007 0.18315519999999999 16 10 1.27066520000000005 0 16 false 133 150.005058557881 1.21105808798207004 123.862999 20.2481000000000009 9 131.550422181616995 8.3080230207872301 15.8341429999999992 20.0536579999999987 11 108.953568427159993 5.99037707888168036 18.1880990000000011 19.6688159999999996 1.6033058 0 0.384841920000000004 -0.194442749999999998 0.579284669999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.488094546342012 -63.422039580128498 22.1343635785222013 -12.8573100442315997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362865014597888 2481362865014597888 1106867228 2015.5 25.2242331896286984 0.0467210300815609977 -3.30951306824402991 0.040783375143613701 0.359068631326642018 0.0569241032609323974 6.30784900000000004 5.2912052231764104 0.0970959941633354057 -3.0510396204448198 0.082811110790514994 0.218713689999999988 0.381910059999999996 -0.0360636039999999991 0.0676124540000000024 -0.170533669999999998 0.0657909099999999941 0.051571752999999998 -0.0320672540000000034 0.0466404899999999997 0.332891080000000006 160 0 159 1 0.46638727000000002 161.641006 0 0 31 false 9.27295499999999961 1.59613911825058996 0.0126887914030039007 0.131239369999999994 18 10 0.0997064800000000001 0 18 false 157 7663.38114390588999 7.1762520173210298 1067.88 15.9773150000000008 16 4069.73372572281005 24.5900165553625989 165.503500000000003 16.3274730000000012 14 5203.87015292329033 7.56821125072545975 687.595760000000041 15.4711040000000004 1.2101191 0 0.856369000000000047 0.350157739999999995 0.506211300000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.459017103673006 -63.4081716556100972 22.1356194356594003 -12.8383323211086005 100001 5756.5 5651.50977 5796.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362860718989952 2481362860718989952 1434552867 2015.5 25.2277280290200991 0.465198619965153992 -3.30965856271411019 0.460569624501804997 1.24414998514608999 0.561095412287477946 2.21735900000000008 13.8139622462788001 0.996603836082908034 -7.17874844611170015 0.886628411965082019 0.377133580000000024 0.317064169999999979 0.0376509130000000011 0.0983279199999999992 -0.0640636100000000069 0.0766527600000000003 0.152068559999999992 -0.0830035199999999973 0.0734439800000000059 0.338806329999999989 151 0 151 0 1.45967639999999999 171.647003 0.809975970916455013 0.506397599223525008 31 false 0.0802857599999999977 1.35169272245898009 0.134513349210546002 0.148001949999999993 17 10 0.966179499999999969 0 17 false 150 183.101170088309004 1.48519867349916002 123.283997 20.0316369999999999 13 82.2688058949704981 16.7586578134708013 4.90903329999999993 20.5633009999999992 15 201.294417275638011 12.6316779626890003 15.9356829999999992 19.0023400000000002 1.54866970000000004 0 1.56096079999999993 0.531663899999999967 1.02929690000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.466207840468002 -63.4068176997262967 22.1388902054351 -12.8397552328071995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362929438470016 2481362929438470016 1519696730 2015.5 25.2128921303721008 0.414938641229572025 -3.29884694286119018 0.402772615400610989 0.972944018896359952 0.503535393586098001 1.93222570000000005 -2.91838705797007991 0.868239193681906052 -8.29679419851940025 0.742387980444561002 0.367101799999999978 0.338506899999999999 0.043419816 0.12765283999999999 -0.072244020000000006 0.0995978039999999981 0.199536999999999992 -0.069545104999999996 0.0840915740000000023 0.327609539999999977 151 0 148 3 0.990627049999999953 159.697006 0.288087404282241999 0.0797573966113418048 31 false 0.106395890000000007 1.3403636138311501 0.113372015812823995 0.144564360000000003 17 10 0.830420999999999965 0 17 false 147 208.00717523944499 1.28339739884694004 162.074997 19.8931700000000014 14 82.5131498006872022 21.0634571385040985 3.91736029999999991 20.5600799999999992 16 277.458276751617007 8.69505566070677993 31.9098909999999982 18.653925000000001 1.73057210000000006 0 1.90615460000000003 0.666910200000000009 1.23924450000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.425991260476991 -63.4033371393857976 22.1288645933841011 -12.8242404421933998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350869170292736 2481350869170292736 1181016477 2015.5 25.273633779973899 0.243601856980181997 -3.33462611819013999 0.224659335833493012 0.74344214877564796 0.297396183023943994 2.49983760000000022 -1.35550030745208994 0.539283010063547952 -4.16673151394758001 0.454436703436907008 0.278594999999999982 0.314928199999999991 0.0626626760000000005 0.116785079999999999 -0.143674099999999999 0.160370039999999991 0.251571920000000004 -0.158894750000000001 -0.0445293149999999999 0.336578339999999976 163 0 161 2 1.26422989999999991 178.682007 0.360842630590974989 0.337872991586641025 31 false 0.28349439999999998 1.41057241852181003 0.0684490372513616996 0.0811125860000000004 19 10 0.518363299999999971 0 19 false 159 443.585665526199023 1.43778812912168008 308.519989 19.0709230000000005 15 162.271567446415986 8.49114893956982009 19.110672000000001 19.8257830000000013 17 457.416352594950013 7.62597941234607024 59.9813270000000003 18.1111409999999999 1.39699719999999994 0 1.71464159999999999 0.754859900000000028 0.959781650000000042 \N \N 0 \N \N \N NOT_AVAILABLE 151.582600102268003 -63.4098463194688975 22.1731293348586007 -12.8798724823199002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350869172096256 2481350869172096256 623021738 2015.5 25.2748484496143995 0.839326452244677945 -3.33486834775772989 1.00752487671300006 1.1126814027702201 0.974970121423921032 1.14124669999999995 5.36462746359265008 2.20737929438800995 -2.47749219652131014 3.00356050584157996 0.533511900000000039 0.244812919999999989 -0.143410890000000013 -0.232177080000000008 -0.0671840759999999954 -0.246342520000000009 -0.356796800000000025 -0.172211890000000006 -0.0591809900000000028 0.677717899999999984 125 0 123 2 2.29245020000000022 156.031998 2.10136132813588983 1.4220929828976101 31 false 0.0313792079999999987 1.23703738422518006 0.236722515183425991 0.250825200000000026 15 8 3.05117130000000003 0 15 false 124 106.428115898214003 1.35574894442862992 78.501297 20.6207260000000012 10 47.3453819273380034 9.81154335800638933 4.82547760000000014 21.1631950000000018 13 146.454994847254994 8.4613145920987094 17.3087750000000007 19.3476600000000012 1.82095099999999999 0 1.81553460000000011 0.542468999999999979 1.27306560000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.585280542845993 -63.4095469556371967 22.1741937853077999 -12.8805450537279 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362620200817792 2481362620200817792 570268444 2015.5 25.2524224652232014 0.336848698492012988 -3.32230458942871021 0.313017418606721998 -0.113475046120795994 0.403124278409490999 -0.28148898 -0.549977713604655971 0.703970877149796004 0.352514626037511991 0.570181102299542997 0.320002229999999999 0.360585539999999982 0.0500125999999999973 0.183153079999999996 -0.0960471700000000012 0.194306599999999996 0.340584100000000001 -0.096363686000000004 0.0139704570000000004 0.318866460000000018 167 0 167 0 2.56852459999999994 211.973007 0.995516852647251982 1.53126454708662996 31 true 0.151608379999999987 1.57901803021605991 0.0891285842559736002 0.0955407600000000023 19 10 0.66869029999999996 3 19 false 166 315.971714931449981 1.49832957680167 210.882996 19.4392449999999997 15 208.834042697346007 6.86012794050070962 30.441713 19.5518859999999997 17 224.630130790532007 8.40758006928430035 26.7175730000000016 18.8832500000000003 1.37184489999999992 0 0.668636299999999961 0.112640379999999998 0.555995939999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.528068651326009 -63.4077483927868002 22.1576048626629003 -12.8606066662951992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362620200819072 2481362620200819072 756879843 2015.5 25.2563473640794989 0.101951320259171002 -3.31934317220957986 0.0898950686474769001 0.0600963344795536966 0.120069829504479003 0.500511499999999998 0.0229592189489646013 0.212965600752384993 -2.10890944178588002 0.16854561695991499 0.273744170000000009 0.380864529999999979 0.0180707569999999998 0.167749239999999994 -0.0945992900000000025 0.200569570000000003 0.323209850000000021 -0.0954130440000000024 -0.0118388399999999998 0.304594599999999993 165 0 163 2 0.717266740000000014 170.393997 0 0 31 false 1.79486619999999997 1.60624343015881998 0.0264859237828388994 0.0937740299999999943 19 10 0.203645350000000003 0 19 false 162 1786.49970478144996 2.27250890156394014 786.13501 17.5583600000000004 15 883.817305355811982 8.82073544881044924 100.197685000000007 17.9854810000000001 14 1316.80329657430002 9.14440642249961044 144.000959999999992 16.9631180000000015 1.23180580000000006 0 1.0223637000000001 0.427122119999999994 0.595241550000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.533161477388006 -63.4033980923451992 22.1624612495328002 -12.8593001672120995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362693215906176 2481362693215906176 79417551 2015.5 25.2523951977958987 0.179982901942952994 -3.31248382953067022 0.16598163288092399 0.675826724265812029 0.211900363396915009 3.18936090000000005 3.31049662626154984 0.359783055715751976 -18.8402235262018998 0.292687553720781979 0.380242970000000013 0.426005599999999984 0.0866442899999999988 0.244498490000000013 -0.0162568930000000014 0.266531799999999985 0.440264370000000016 -0.117317640000000001 -0.00295482830000000016 0.352835120000000002 154 0 152 2 2.53427699999999989 194.072998 0.557913521353415987 2.11851829863805996 31 false 0.661076659999999983 1.6378691684733 0.0450484570228771031 0.154494820000000005 18 9 0.352165039999999985 0 19 false 151 960.671419386476032 1.71271103555017001 560.906982 18.2319279999999999 15 538.380101233667006 12.5643351893962993 42.8498700000000028 18.5236659999999986 15 667.491374410053027 7.57560495020739033 88.1106340000000046 17.700806 1.25523819999999997 0 0.8228607 0.291738500000000012 0.531122199999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.518655285091 -63.3988778451003014 22.1612960975615998 -12.8514689752751998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351182703579520 2481351182703579520 1631697362 2015.5 25.2941636375901986 0.353059901304201007 -3.32793081757040987 0.339651373492216024 2.04097911020433997 0.435190809384984001 4.68984899999999971 10.9747552308869007 0.785826460091520018 -14.9990872555364998 0.643436663608655035 0.296433239999999987 0.275887549999999981 0.0630112099999999981 0.158651710000000001 -0.179541830000000013 0.190955469999999988 0.337390699999999988 -0.142728699999999986 -0.0297431280000000006 0.321546500000000013 174 0 172 2 1.50549230000000001 195.311996 0.178921900791270988 0.0374817353353905994 31 false 0.125052510000000006 1.27991319751199994 0.0968263434497388942 0.0713604699999999953 20 10 0.748484499999999997 0 21 false 174 248.744542596016998 1.39160699284827993 178.746002 19.6989820000000009 16 75.9312030923533996 8.5672875925166494 8.8629219999999993 20.6503370000000004 18 306.874728376738972 5.55212695715975979 55.2715600000000009 18.5445180000000001 1.53895209999999993 0 2.10581970000000007 0.951354999999999951 1.1544646999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.617583312635986 -63.3950288242104989 22.1952042484968004 -12.8812113473658005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351247127418240 2481351247127418240 1615402075 2015.5 25.2776005149312013 0.16252833861833299 -3.32185642914777013 0.145810235495702989 -0.157477685316548988 0.193227939868007986 -0.814984000000000042 -0.574225946449334002 0.364308055238206974 -2.76908834785009006 0.307755517584983984 0.198850240000000011 0.328640460000000023 -0.0184742300000000012 0.0726260199999999995 -0.111134133999999996 0.0958094800000000024 0.267777319999999985 -0.115863569999999999 -0.0351723170000000016 0.223064399999999996 153 0 153 0 2.31530360000000002 190.723999 0.387165831907333002 0.907824808712581977 31 false 0.656510530000000037 1.60288289059086009 0.046976673577615799 0.0532108700000000004 18 10 0.338007700000000022 0 19 false 151 905.420690144051946 1.89257201672156006 478.40799 18.2962400000000009 17 462.092170786378006 8.9938865512414008 51.3784750000000017 18.6895680000000013 18 662.767688704193006 7.52188248116149971 88.1119460000000032 17.7085170000000005 1.2423614999999999 0 0.981050500000000048 0.393327700000000002 0.58772279999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.578405783948995 -63.396609225626797 22.1817380373204998 -12.8694649571495994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351281487158400 2481351281487158400 915720543 2015.5 25.2964024504857008 1.79303101293346989 -3.3145303437099698 1.46351144799666999 -1.46805630552425992 2.70541266434217986 -0.542636750000000001 -2.33381935508052996 2.8912223053925401 -4.49144095365497975 3.63842172149624021 -0.122034680000000006 0.762810769999999971 0.009533639 -0.0800319699999999939 -0.517189499999999969 -0.306873259999999981 -0.355941950000000007 0.105333254000000001 0.10547927 0.682518500000000028 70 0 70 0 0.132267859999999987 65.8451004 0 0 31 false 0.0276605060000000014 1.69232275361978002 0.374043836082571024 0.13917642999999999 9 8 3.81102799999999986 0 9 false 71 95.0648453097824984 1.4273095687478099 66.6042023 20.7433170000000011 8 85.1980224870306984 10.6035277497893006 8.03487499999999955 20.5253140000000016 7 68.298300960712794 9.88250927709806959 6.91102840000000018 20.1758960000000016 1.61464870000000005 0 0.349418640000000003 -0.218002319999999999 0.567420959999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.609293370377998 -63.3819605829460002 22.2024063377577008 -12.8695806284825007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363066877422976 2481363066877422976 937084328 2015.5 25.2600609115939001 0.165515239721633012 -3.30159764203725015 0.173906020536812006 1.13116587722602002 0.200563358158282995 5.63994260000000036 26.7125449683484 0.369429175640257013 11.5530629980050996 0.312394493110032978 0.380311430000000006 0.266792399999999985 0.165061070000000004 0.295437720000000015 -0.248843199999999987 0.401991780000000021 0.569164499999999962 -0.233080690000000007 -0.169429229999999986 0.46721459999999998 159 0 156 3 0.632528250000000014 161.563004 0.245935267144316988 0.384915197801876996 31 false 0.726767359999999973 1.46584735643441011 0.043586141060403899 0.13492019999999999 18 9 0.387411300000000014 0 18 false 155 876.323653383294982 1.87814638523999999 466.589996 18.3317049999999995 16 246.228056269585011 10.4081268365175994 23.6572880000000012 19.3730450000000012 16 976.769176861565029 8.93014598610096932 109.378860000000003 17.2874400000000001 1.39559999999999995 0 2.08560560000000006 1.0413399000000001 1.04426569999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.523740749092013 -63.3857672041165969 22.1727117051058009 -12.8441748625024008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363135596900480 2481363135596900480 630192474 2015.5 25.2920969728540008 0.343928184122960001 -3.2984470486371098 0.271193309736398991 1.41877579944554011 0.439715544228636013 3.22657630000000006 17.3219888933978012 0.625001995224238049 -10.1988665528343994 0.497089453164447026 0.091268434999999995 0.540384899999999946 0.067005229999999999 0.100716470000000002 -0.26063225000000001 0.168530089999999994 0.312121570000000015 -0.111888329999999994 -0.0316877179999999967 0.298279760000000005 164 0 163 1 3.49941540000000018 227.876007 0.97433124113840297 2.00102534381300012 31 false 0.188274219999999992 1.42515558852119995 0.0815202344375137999 0.0367563330000000021 19 10 0.586488539999999947 0 19 false 163 393.580654316670973 1.59916647934884004 246.115997 19.2007800000000017 15 120.806081588300998 15.7871348338013995 7.65218539999999958 20.1461660000000009 16 439.570942513960006 12.7054790166318003 34.5969600000000028 18.1543479999999988 1.4237921 0 1.99181750000000002 0.945385000000000031 1.0464325000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.585275819775006 -63.3692601493226988 22.2043941030352983 -12.8530460461809994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349632219839744 2481349632219839744 21268264 2015.5 25.2983341305910017 1.1073440078494301 -3.38925676816386012 1.34409295027541997 2.27473750430028021 1.37476542698368998 1.65463690000000008 -3.5803967936632799 2.80308929163226006 -6.7993190622921702 4.27039790134879027 0.495061839999999975 0.403281359999999978 -0.0203832600000000003 -0.0452699500000000032 -0.0471558720000000015 0.0209081820000000008 -0.0764913859999999945 -0.284228150000000013 -0.282858039999999977 0.757082499999999992 77 0 77 0 0.64021629999999996 79.2462997 1.16189240466575994 0.263341884992984998 31 false 0.0299254790000000014 1.4023556213931101 0.318112887606139982 0.334717419999999988 9 7 4.25567899999999977 0 9 false 79 85.1458548255892964 1.26653908760259992 67.2272034 20.8629570000000015 6 69.7045496756551017 12.0192343664487993 5.79941700000000004 20.7432349999999985 6 57.0973292008445981 12.5720217886554 4.54161899999999985 20.3703800000000008 1.48923129999999992 0 0.372854230000000009 -0.119722369999999995 0.492576599999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.684709426071009 -63.4486590285572021 22.1759604369417005 -12.9397465330357004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349391701528576 2481349391701528576 296796766 2015.5 25.3391741542986004 0.586440498375392028 -3.40212053260222991 0.62083592520644304 -0.134538252290636012 0.683458463210087963 -0.196849200000000002 14.9459726836608997 1.26753141552085991 -11.5012901407630004 1.55164597208147992 0.414617479999999983 0.404361929999999981 -0.0673830599999999946 -0.117624186000000006 0.0243214980000000004 -0.13135021999999999 -0.241771099999999989 -0.107173050000000006 -0.0242310579999999998 0.49202963999999999 132 0 132 0 2.57403229999999983 171.781998 1.08255347197838003 0.626473454556179976 31 false 0.0585024199999999994 1.51374032832902006 0.164561631800705988 0.16120197 15 9 1.54188679999999989 0 15 false 132 147.172326573560014 1.07478867702959002 136.931 20.2687999999999988 11 51.6212261643253996 5.94305994840023022 8.68596699999999977 21.0693170000000016 11 127.228154550656001 4.98611614810129034 25.5164849999999994 19.5004619999999989 1.21523789999999998 0 1.56885530000000006 0.800516099999999953 0.768339160000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.779423344561991 -63.4427653517853969 22.2099717296047992 -12.966744443524 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361417609962624 2481361417609962624 835310826 2015.5 25.073025338515599 12.3576411279995 -3.37852557902039008 4.90118848374796023 \N \N \N \N \N \N \N 0.849635200000000035 \N \N \N \N \N \N \N \N \N 50 0 49 1 -1.17538980000000004 33.3124008 0 0 3 false 0.0238761439999999985 \N \N 0.27434873999999998 6 5 183.37897000000001 0 6 false 51 75.7806836369677939 1.14788416175990005 66.0177002 20.9894700000000007 6 66.558379615962707 6.44069826814204038 10.3340320000000006 20.7933799999999991 6 60.6579413099795985 10.0880959169983004 6.01282359999999994 20.3047000000000004 1.67874340000000011 0 0.4886799 -0.196088790000000013 0.684768700000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.218483833958004 -63.5346905274493992 21.9656002047565018 -12.8467187096541995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349464716662528 2481349464716662528 981337762 2015.5 25.3238484063016998 0.0541677687716839024 -3.3933881590629098 0.0465128375067205002 1.08471506443268995 0.0639761021346839931 16.9550039999999989 4.74280747513252976 0.109998062633550997 -64.0995777666048951 0.090779419163100103 0.267816160000000025 0.425275950000000014 0.0356545970000000031 0.13961752999999999 -0.0626511399999999941 0.18162273000000001 0.256303369999999975 -0.1138985 -0.026398253 0.316747160000000028 162 0 162 0 0.216352430000000012 160.188004 0 0 31 true 6.92799760000000031 1.58110037097128009 0.0127484601233650002 0.0991625039999999985 19 10 0.110979999999999995 0 19 false 159 5953.67996706258964 4.29068175163795029 1387.57996 16.2514019999999988 14 3031.79269213465022 15.4740895755524992 195.927050000000008 16.6471389999999992 16 4305.83732415484974 11.4675665210533992 375.479600000000005 15.6767760000000003 1.23245289999999996 0 0.970362660000000044 0.395736699999999997 0.574625970000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.740132588071987 -63.4414578568929031 22.1986862656337998 -12.9529839205155 100001 5282.75 5004.64014 5429.18994 0.0694999993 0.00889999978 0.187999994 0.0324999988 0.00240000011 0.107100002 200111 0.546833000000000014 0.517731000000000052 0.609297100000000036 0.209818769999999988 0.183455289999999993 0.236182239999999988 +1635721458409799680 Gaia DR2 2481346471123907968 2481346471123907968 420754994 2015.5 25.3625296348733009 2.95863491999778017 -3.40886075764667007 3.53674182435569984 \N \N \N \N \N \N \N 0.810025039999999974 \N \N \N \N \N \N \N \N \N 44 0 44 0 -1.82396599999999998 24.5147991 0 0 3 false 0.0169573849999999984 \N \N 0.0938464849999999934 5 5 10.7276699999999998 0 5 false 44 74.0194088478347965 1.96795751569077004 37.6123009 21.0150010000000016 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.832976384007992 -63.4388115457339978 22.2296578536332987 -12.9816096784603996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346402404288384 2481346402404288384 407493347 2015.5 25.3695539714078997 0.136819199256038998 -3.42102924076653991 0.113895059294158996 1.84019148394774001 0.160130808553375997 11.4918010000000006 16.6590191342392018 0.281983774416975974 -8.96909357802415919 0.219243269330770013 0.181101380000000006 0.389696360000000019 0.012411376 0.0825153740000000024 -0.0804516400000000048 0.0441803340000000017 0.146356459999999994 -0.0436514799999999994 0.105605359999999995 0.18606550999999999 182 0 180 2 2.5129302 225.557999 0.141103464250523003 0.158444263709603989 31 false 0.844973560000000012 1.3486204571362399 0.0349603605256280994 0.0112608754999999998 21 10 0.255910430000000022 0 21 false 177 1003.39233023781003 1.96565869079889 510.460999 18.1846889999999988 19 267.726974540083006 9.17778800849069043 29.1711880000000008 19.282157999999999 19 1148.35408632494 6.91448088703231001 166.07956999999999 17.1117300000000014 1.41129349999999998 0 2.17042730000000006 1.09746929999999998 1.07295800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.858860173825008 -63.4467687717908007 22.2317400148289011 -12.9955065062135997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346849080890368 2481346849080890368 1297087914 2015.5 25.3628591110796009 0.297296992519166026 -3.39779355824988016 0.267063257491216011 -0.665066169971997967 0.357662334746343014 -1.85948059999999993 2.87594331920218016 0.657283668038774027 -1.79559776207400001 0.511376868440898025 0.188766139999999999 0.259568779999999999 0.00770197530000000033 0.057413314 -0.0988927260000000002 0.00893334399999999931 0.132180529999999991 -0.0466400100000000026 0.155164030000000008 0.141581430000000008 156 0 156 0 3.52246360000000003 220 0.215456801135477993 0.0652392217825464027 31 false 0.180266039999999989 1.60494144961506002 0.0818929722233071034 -0.00641587380000000016 18 10 0.585251870000000007 0 18 false 153 320.927989610626014 1.30585946630417005 245.759995 19.422346000000001 15 191.162552216094014 8.21474201190268971 23.2706699999999991 19.6478800000000007 13 214.068177415999997 5.39680807955830044 39.6657030000000006 18.9355399999999996 1.26268430000000009 0 0.712341299999999955 0.225534440000000003 0.486806870000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.822978933949003 -63.4286823998464016 22.2341607633243008 -12.9714441840635999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346780361413120 2481346780361413120 1334075498 2015.5 25.378229349024501 0.347643242683722986 -3.40096101084753011 0.287829294914677014 1.20394005847940999 0.400332504936946998 3.00735019999999986 6.73185589082669988 0.779912242920562049 -11.8109213434553002 0.534796954510802003 0.17456954999999999 0.276142900000000024 -0.111500955999999998 0.117222935 -0.145580380000000009 0.0948256249999999967 0.242530970000000012 0.00723766540000000003 0.0725858399999999987 0.172180090000000008 173 0 172 1 3.46777340000000001 237.886002 1.33726096630239999 2.91494627749055013 31 false 0.137488250000000006 1.43557033676688994 0.0886342580076378977 0.00311317480000000008 20 10 0.694752000000000036 0 20 false 172 333.10565957256398 1.18168751604639999 281.890015 19.3819100000000013 18 119.564316047172994 5.88976354186108964 20.3003600000000013 20.1573850000000014 20 333.066563805229009 6.42107518390731968 51.8708400000000012 18.4555930000000004 1.35882079999999994 0 1.70179180000000008 0.775474549999999985 0.926317199999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.856980312773004 -63.4249279185875992 22.2475970394438001 -12.9800473747914005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346849082886144 2481346849082886144 819044553 2015.5 25.3667132209702011 4.76668028651110998 -3.39122041729106982 4.46938074711597011 \N \N \N \N \N \N \N 0.858743400000000046 \N \N \N \N \N \N \N \N \N 48 0 48 0 -0.526966500000000004 37.6820984 0 0 3 false 0.0142937559999999995 \N \N 0.291859299999999988 6 5 32.1494 0 6 false 49 65.2759394212034039 1.52962771754370008 42.6744003 21.151484 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.824410992357002 -63.4210930769878019 22.2403183524811006 -12.9667535479769995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346883440632192 2481346883440632192 1087428393 2015.5 25.3769326348201005 0.0584097035705404971 -3.38446917067338005 0.0444631352363003968 1.11437805571171999 0.0659176522500641987 16.9056099999999994 3.55548064519812002 0.127954606291839995 -3.63780239902320002 0.0896415572472799987 0.100267709999999996 0.311630499999999977 0.0331604740000000023 0.0469835030000000028 -0.109844510000000006 0.0291743320000000007 0.0704319199999999951 -0.0881573999999999969 0.0908720100000000031 0.136301430000000001 178 0 175 3 1.59133959999999997 200.319 0 0 31 true 5.20893699999999971 1.52018878618126996 0.0144914459576383995 -0.0230548549999999991 20 10 0.120101639999999996 0 20 false 172 4692.3652900324596 3.74612477495823981 1252.58997 16.5098860000000016 16 1929.55226878577992 11.4537414345453001 168.464799999999997 17.137747000000001 17 3951.83544517672999 16.2382254150032992 243.366209999999995 15.7699230000000004 1.2533951000000001 0 1.36782359999999992 0.627861000000000002 0.739962600000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.838482595757995 -63.4106051687817001 22.2526038960047003 -12.9642407000077 100001 4896 4718.50977 4997 \N \N \N \N \N \N 200111 0.571008799999999983 0.548159500000000022 0.61477550000000003 0.168789699999999987 0.147585359999999999 0.189994040000000003 +1635721458409799680 Gaia DR2 2481349872737870848 2481349872737870848 1345345331 2015.5 25.3507138473006002 0.132263493528817999 -3.38016363510493001 0.110516137560140004 0.960244752255242973 0.155882564641670995 6.16005230000000026 -0.235945571019805012 0.273219903901952998 -5.72530216060680974 0.207477413142046013 0.203546499999999991 0.406328770000000006 -0.00265184200000000017 0.0848953800000000064 0.00294297599999999993 0.010930637 0.207977379999999989 -0.0477583859999999999 0.135066500000000006 0.118930259999999996 168 0 168 0 -0.827310499999999949 147.888 0 0 31 false 0.978690740000000003 1.46968785878603003 0.0334127946173946033 0.0282475070000000016 19 10 0.244516910000000004 0 19 false 168 1082.2921685174199 2.19813947220273009 492.367004 18.1025050000000007 17 432.464203458725024 14.7050233090828009 29.4092850000000006 18.7615130000000008 16 983.564756873484953 6.3696907767376203 154.413270000000011 17.2799130000000005 1.30836100000000011 0 1.48159979999999991 0.659008000000000038 0.822591799999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.781556246135011 -63.4179884718630973 22.2292698482586992 -12.9505854099665996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350250694999808 2481350250694999808 1677441228 2015.5 25.3710216932708015 0.82286765042057497 -3.34403834537600009 0.470268019768423973 0.627345302949441019 0.971592910099327023 0.645687400000000022 -4.36268949283465002 1.2121149150033601 -24.3435313367835988 0.834884312296324982 -0.196334330000000001 0.711344799999999999 0.0162415539999999983 0.0619030259999999999 -0.352627579999999996 -0.0426724850000000031 0.136857179999999995 0.0824577799999999944 0.105755559999999998 0.120717249999999998 146 0 145 1 1.01413130000000007 156.944 1.24496135330478008 0.862042589890137045 31 false 0.0582334550000000034 1.50461154420304011 0.170961523501347995 -0.11047034 17 9 1.07989160000000006 0 17 false 146 174.405859702659001 1.20139095236426008 145.169998 20.0844629999999995 16 77.1655889123786949 10.4973914288932004 7.35092970000000001 20.6328299999999984 16 175.224689866283001 10.5490488081299993 16.610474 19.1529309999999988 1.44714330000000002 0 1.47989850000000001 0.548366550000000008 0.931531899999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.787718206032991 -63.3766555210055031 22.2622746519101007 -12.9244834382710003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356126210439040 2481356126210439040 1383516026 2015.5 25.3819863337289 0.66714126074253699 -3.33636146929453004 0.526796343301324965 2.24876242272193005 0.821149745651512997 2.73855329999999997 -5.60995546530626044 1.25449032807649008 -21.6177999395215998 0.971208673058031047 0.0894924849999999966 0.499254350000000013 0.0757263999999999993 0.0728701300000000052 -0.178206219999999999 0.000855935099999999977 0.196913900000000003 -0.0227843879999999992 0.126155230000000007 0.164044049999999997 178 0 175 3 2.65193000000000012 222.938004 1.68081443290377996 1.35864495288378007 31 false 0.0416249200000000028 1.4010145083035499 0.168051285811990997 -0.0139226279999999994 20 10 1.12182209999999993 0 20 false 176 140.893421237949013 1.05654793447562989 133.352997 20.3161400000000008 12 60.4200767156278005 9.96459320713267083 6.06347660000000044 20.8984360000000002 13 218.607354027386009 8.7749603215674199 24.9126319999999986 18.9127580000000002 1.98041489999999998 0 1.9856777000000001 0.582296400000000047 1.40338129999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.802391703529992 -63.3650153136122967 22.2756180485067006 -12.9213836991944007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356126210262912 2481356126210262912 487711556 2015.5 25.3807789018534997 0.279952991653845018 -3.33536655213760991 0.208926908834439012 0.856560922871162034 0.336602842246160994 2.54472280000000017 31.3121110032608989 0.506941144429925994 10.9749950333079997 0.386071471446609027 0.0479426800000000014 0.535798200000000002 0.0594382999999999995 0.0790951299999999996 -0.187163739999999995 0.0228762659999999993 0.193668840000000009 -0.0138035720000000001 0.106229946000000006 0.162968260000000004 178 0 176 2 2.08191779999999982 211.694 0.631074018918725055 1.04525795395359999 31 false 0.253652219999999984 1.34690675061785003 0.0702981086453549064 -0.0177699220000000005 20 10 0.453624340000000015 0 20 false 173 445.402267401140989 1.3874074991832801 321.032013 19.0664839999999991 16 119.533568078618003 7.27074232177193025 16.4403530000000018 20.1576629999999994 15 532.011713546968963 11.3381376855103007 46.9223179999999971 17.9471169999999987 1.46282430000000008 0 2.21054649999999997 1.09117890000000006 1.11936759999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.799009545258002 -63.3646360954828012 22.2748448581881 -12.9200144358113995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346539843384320 2481346539843384320 504249663 2015.5 25.4105923428962015 1.59286712711715994 -3.42253469203429006 2.31843258157794008 \N \N \N \N \N \N \N 0.51715224999999998 \N \N \N \N \N \N \N \N \N 65 0 58 7 6.29087070000000015 146.417999 3.02972003024990988 2.53399267770994019 3 false 0.0166007349999999984 \N \N 0.0988816700000000048 8 6 9.09345800000000004 0 8 false 59 78.954041707223297 1.59236509619120992 49.582901 20.9449299999999994 4 41.2414975047053005 14.4029001906472995 2.86341620000000008 21.3130510000000015 3 37.1631636121678994 14.6518601641865995 2.53641270000000008 20.8366369999999996 0.993041749999999945 0 0.47641372999999998 0.368122100000000008 0.108291626000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.942944821059996 -63.4304368963688034 22.2702496518201016 -13.0120143548691996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345783928996864 2481345783928996864 502762141 2015.5 25.4192275272400998 0.158431625273922988 -3.42916734001045986 0.181223579590159001 1.25588473112029009 0.189851676619535004 6.61508369999999957 3.93579054737787004 0.380148990010817978 -9.32791091225242042 0.367470853377703022 0.391511050000000027 0.176692170000000009 0.193411420000000001 0.297929500000000014 -0.338066340000000021 0.434292500000000026 0.545603040000000039 -0.269314600000000015 -0.243385800000000013 0.548116860000000039 151 0 150 1 2.27343340000000005 186.473999 0.47148102596504099 1.6521531642976699 31 false 0.742591400000000013 1.37416600159982005 0.0406162103097012991 0.116921479999999994 17 9 0.430173369999999999 0 17 false 150 1040.67041826281002 1.67098588836658002 622.788025 18.1450819999999986 17 328.072744670380018 7.90719597433696997 41.4904020000000031 19.0614619999999988 15 1076.27547167793 8.29077753927393957 129.816000000000003 17.1821120000000001 1.34946490000000008 0 1.87935070000000004 0.916379900000000025 0.962970729999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.966735180609987 -63.4326883758673006 22.2759629051163017 -13.0213581663193008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346608562720512 2481346608562720512 579063437 2015.5 25.3980836504298004 0.465282498949733003 -3.40371932049444981 0.456892995380221989 -0.57888426847785901 0.553692169435312964 -1.04549840000000005 -0.218983377649379002 1.02244705924848001 -1.99913989340945997 0.818913310655533966 0.31403120000000001 0.2727657 0.0530656170000000024 0.17840513999999999 -0.115182734999999994 0.151366709999999988 0.367836739999999995 -0.08740589 0.0602068499999999993 0.254014430000000013 176 0 173 3 0.789460840000000053 182.186005 0.693774228857980013 0.31517528822836699 31 false 0.0700331399999999937 1.6258334431197401 0.126724996499809006 0.0414501999999999995 21 10 0.948100500000000013 0 21 false 176 181.038000104041004 1.30220072231146 139.024994 20.0439410000000002 15 101.537983886343 6.23918110856099961 16.274248 20.334816 15 113.563529575789005 7.92039872677360979 14.3381080000000001 19.6238230000000016 1.18815669999999995 0 0.71099279999999998 0.290874479999999991 0.420118329999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.899601412413006 -63.4188640553265017 22.265458827393001 -12.9899204503715993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346647218116224 2481346647218116224 930154776 2015.5 25.4242364749316998 0.511999835920828983 -3.4005014576321102 0.360735903848875994 -3.84772354793810978 0.574817166724767015 -6.69382140000000003 6.54745134598876977 0.999563877983880023 -1.21530829549600994 0.637003388534561954 0.107952856 0.434235539999999975 -0.0496685170000000023 0.152514709999999998 -0.0122940930000000007 0.126817170000000007 0.221238540000000011 -0.024868636999999999 0.119088009999999994 0.0974134650000000046 167 0 167 0 114.243904000000001 23173.5 3.53068342731838003 1160.94717013330001 31 true 0.0787065549999999975 1.77911650761601003 0.108664262616593996 0.0185301289999999994 19 10 0.880942169999999969 0 19 false 115 9537.26991586177064 47.4460849499763029 201.013 15.7398050000000005 17 6619.26661937856989 296.614244047979014 22.316078000000001 15.7993629999999996 13 11384.1874162215008 261.720361997280975 43.4975239999999985 14.6211649999999995 1.88769469999999995 0 1.17819790000000002 0.0595579150000000029 1.11864000000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.949096448946989 -63.4046805603831984 22.2915813122126991 -12.9965557620569996 112001 5143.4502 4279.41992 7050 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346642924553216 2481346642924553216 1542090929 2015.5 25.4243652055585017 1.82484331767214991 -3.40020777736549995 0.655011178071329025 \N \N \N \N \N \N \N -0.991865899999999967 \N \N \N \N \N \N \N \N \N 89 0 87 2 6.41955899999999957 193.559998 0.470280126077793015 7.77193167386148964 3 false 2.89815349999999983 \N \N -0.461978100000000003 10 5 2.4259643999999998 0 19 false 91 7989.09504225230012 12.0258913743414997 664.325012 15.9321219999999997 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.949071560530996 -63.4043601899336977 22.2918150292429011 -12.9963301509811995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346750297330944 2481346750297330944 1455971191 2015.5 25.4140970926403007 0.0250716895595252988 -3.38517975553528983 0.017283663335591299 1.02450613527366996 0.0283678818767613 36.115000000000002 -3.26547446699906008 0.0425889192589697999 -4.7207799973200899 0.0365954845838031978 0.0232202450000000005 0.593194800000000022 -0.0533125249999999995 0.0441886069999999978 -0.13329916 -0.00738570839999999965 -0.123621464 0.0175431110000000001 0.0765706300000000006 0.216988349999999997 177 9 177 0 -1.99702350000000006 136.981995 0 1.49381188301628004e-15 31 true 86.479299999999995 1.57361830828191995 0.00617030662991643018 -0.0157894719999999988 20 10 0.0466810169999999983 0 20 false 174 66794.9792204809928 21.0188503709365015 3177.86011 13.6265059999999991 18 33390.1980861444972 48.8275035575687966 683.839969999999994 14.0423399999999994 18 47799.8295695989 44.7020316760817025 1069.29880000000003 13.0633545000000009 1.21551100000000001 0 0.978985800000000017 0.415834429999999977 0.56315135999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.91392186069001 -63.3952388175898989 22.2877232144847 -12.9785816574175996 100001 5349 5319.5 5383.25 1.57430005 1.17400002 1.88499999 0.791999996 0.596599996 0.952099979 200111 1.8829613999999999 1.8590776 1.90390370000000009 2.61497760000000001 2.44203500000000018 2.78792019999999985 +1635721458409799680 Gaia DR2 2481346681577854336 2481346681577854336 1009637662 2015.5 25.4338991743881984 2.19353067376319988 -3.38990184453697019 1.53623923379239002 \N \N \N \N \N \N \N -0.0160428230000000012 \N \N \N \N \N \N \N \N \N 143 0 143 0 62.6574329999999975 5981.62988 13.4835632255605997 244.788308394953987 3 false 0.00510492199999999959 \N \N -0.0283097009999999996 20 10 3.6164909999999999 0 20 false 173 317.886116101064999 5.02916682055106978 63.2084999 19.4326879999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.958279575949007 -63.3909516718956993 22.3047937207795997 -12.9902590017525998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351522005306368 2481351522005306368 1440377864 2015.5 25.4767464998067013 0.399113072925876999 -3.41209000174002997 0.340658598891798003 0.22544769102918899 0.508244909220315955 0.443580799999999997 4.20055715545780028 0.789532231232903947 -3.12990165946331 0.622543248480592948 0.0783991140000000059 0.429474599999999984 0.0749534800000000029 0.0665737400000000062 -0.268086900000000017 -0.00420920270000000023 0.174356800000000006 -0.00931648350000000014 0.137448270000000011 0.18254477999999999 176 0 172 4 1.19478369999999989 189.076004 0.655003002498628972 0.486254016065906014 31 false 0.107993809999999996 1.51181169301013996 0.104709763464396005 0.0131168629999999994 20 10 0.710326699999999978 0 20 false 173 241.125696562734987 1.33452658816204006 180.682999 19.7327580000000005 14 87.2043188197726948 12.4970058805386 6.97801700000000036 20.500043999999999 14 221.391706938207989 11.8016026907521994 18.7594600000000007 18.8990170000000006 1.27981389999999995 0 1.60102649999999991 0.767286299999999977 0.833740229999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.065811397047014 -63.3924143014403967 22.3372063689932006 -13.0266512708137991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352557093115008 2481352557093115008 735196513 2015.5 25.4408926860807014 0.0707835716869500975 -3.38422672693908 0.0646321418963384936 2.29200955756492997 0.108644285051964995 21.0964579999999984 29.4616989748666995 0.126233614403978012 4.61361367599641969 0.116012993083216998 -0.279872569999999987 0.651002170000000047 -0.101932703999999999 -0.101592249999999995 -0.67750189999999999 0.439813500000000024 0.541806760000000054 -0.356970039999999988 -0.419314320000000018 0.541675699999999982 151 0 149 2 0.899224400000000035 159.091995 0.107010823710894001 0.619836721000726953 31 false 7.72963670000000036 1.41264750038603992 0.0144664838140959005 0.0257942209999999991 17 8 0.149288950000000004 0 17 false 147 7226.68929050804036 6.01936932152837034 1200.56995 16.0410180000000011 15 2387.49854736654015 10.7328878164511998 222.44699 16.9065300000000001 16 7158.09928858540025 10.3693393223576997 690.31389999999999 15.1249260000000003 1.32088110000000003 0 1.78160479999999999 0.86551285 0.916091899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.966848928777011 -63.3828147578941028 22.3136007753125014 -12.9875572180214007 100001 4183.75977 3975.25 4721.29004 0.363200009 0.221000001 0.678499997 0.174999997 0.1215 0.326999992 200111 0.542096000000000022 0.425684720000000016 0.600456300000000054 0.0811176450000000021 0.0732357399999999936 0.0889995499999999967 +1635721458409799680 Gaia DR2 2481351796885353600 2481351796885353600 75833813 2015.5 25.4527164772512009 0.883302703794016986 -3.38944973932458016 0.996539685537713993 1.00721596089840992 1.17211721835519 0.859313369999999965 3.26936847384213003 2.46422223940564011 -14.5350645006523997 3.60957272636579996 0.257769729999999975 0.277790340000000024 -0.0288017690000000014 -0.110372074000000001 -0.317778320000000003 -0.0757886799999999972 -0.153533639999999999 -0.204026600000000002 -0.133112389999999997 0.681625000000000036 108 0 103 5 1.07303360000000003 113.068001 1.79347557581582007 36.388569045865701 31 false 0.0287880410000000003 1.85121752546787999 0.303011083159916983 0.0272469860000000008 13 9 3.56852100000000005 0 13 false 103 95.5883366242841959 1.27991885754443002 74.6830978 20.7373539999999998 8 41.9328731736809033 4.73047517940185003 8.86440999999999946 21.2950020000000002 10 109.174676222846003 13.7746416694738993 7.92577269999999956 19.6666150000000002 1.5808158000000001 0 1.6283875000000001 0.557647699999999968 1.07073970000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.995643599027005 -63.3824134088774969 22.3228850751530992 -12.9967633283549997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351801178894592 2481351801178894592 289455600 2015.5 25.4612993869220006 1.67990465798774991 -3.39517049619341993 0.933735684048945025 3.86149362580151001 1.96988465694967996 1.96026379999999989 3.1165759788612899 2.69338270781027012 -1.09347380126696003 2.31555954792316987 -0.0964012149999999984 0.680744099999999963 0.368149969999999993 -0.191428999999999988 -0.278029320000000024 -0.304324450000000024 -0.296758350000000004 -0.0242985450000000013 0.0017935786999999999 0.274950980000000011 99 0 99 0 1.8652884999999999 121.174004 1.47545634904762002 0.48830683299720401 31 false 0.0299700599999999998 1.45949673804703006 0.302060235458516013 0.000217391189999999992 12 7 2.60073260000000017 0 13 false 101 100.909132607253994 1.41464554559547007 71.3317032 20.6785400000000017 12 54.6354209962428996 9.65840214464147984 5.65677640000000004 21.0077019999999983 11 78.7098504397955026 7.38897566793168004 10.652336 20.0218470000000011 1.32143900000000003 0 0.985855099999999984 0.329162600000000027 0.656692500000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.018411488885988 -63.3838573024080034 22.3288950089841016 -13.0052394230171995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351762523476352 2481351762523476352 26162654 2015.5 25.4786718509800991 0.652820766668389951 -3.4009281961445299 0.688656708500608006 1.93327896506048003 0.827601895489489037 2.33600120000000011 13.1001292149678008 1.49359743816754009 5.97270551694576035 1.99297153916261993 0.204431000000000002 0.351949200000000018 -0.0259663540000000005 -0.182982119999999998 -0.316620740000000012 -0.272426000000000001 -0.383867530000000012 0.0083238419999999997 0.151696620000000004 0.513669500000000001 131 0 131 0 1.34719480000000003 147.876007 1.14843090002788006 0.569830260925654031 31 false 0.0477456149999999982 1.51764904529436007 0.208018220698832995 0.0576720100000000027 15 9 1.95708820000000006 0 15 false 132 134.298906120108995 1.21065324292760002 110.931 20.3681850000000004 13 62.0230576461224032 11.1892925585168008 5.54307200000000044 20.870004999999999 13 186.971299662831996 14.9150673411424997 12.5357330000000005 19.0824829999999999 1.8540312000000001 0 1.78752139999999993 0.501819600000000032 1.28570180000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.058862457409987 -63.3815244037474983 22.3432626857279004 -13.0169836437335995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352827675372544 2481352827675372544 1382858131 2015.5 25.4199491825817994 0.269912892476188992 -3.3707842379148798 0.215337401659185995 1.6697393368225899 0.328275981160335018 5.0863889999999996 -0.241121823742593 0.523200027894537012 -13.7100551288021997 0.393674843814335984 0.0942212199999999944 0.46313542000000002 0.0727364999999999956 0.0867212339999999943 -0.192944060000000001 0.0473765020000000009 0.240879819999999994 -0.0472999500000000003 0.0941048899999999966 0.174036980000000008 176 0 170 6 1.30399189999999998 189.108994 0 0 31 false 0.258570199999999972 1.26950140789191002 0.0688772480876073956 -0.0133159860000000001 20 10 0.469194049999999974 0 20 false 169 422.472944536187981 1.33611346394514996 316.195007 19.1238689999999991 15 117.262301702800002 12.8963662640543006 9.09266200000000069 20.1784919999999985 16 539.842924994619011 11.1539273290915002 48.399357000000002 17.9312520000000006 1.55537820000000004 0 2.24724000000000013 1.05462269999999991 1.19261740000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.911801979710987 -63.3797321344071989 22.2987422661528996 -12.9673540760594008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352896394850432 2481352896394850432 589290950 2015.5 25.4141341873364013 0.568962267477940986 -3.36103759912750988 0.446391229407837986 0.609751619269625955 0.70206972822392899 0.868505799999999994 7.66426095335785984 1.15098396290025007 -9.10706627564229976 0.804271115423628946 0.0852938000000000029 0.408362700000000023 0.176367200000000002 0.0577938799999999989 -0.196542250000000002 -0.00449852970000000005 0.227064459999999996 -0.0962960399999999994 0.147298490000000004 0.115358180000000005 168 0 166 2 2.37464299999999984 206.692993 1.4953597075865499 1.44522248266830999 31 false 0.0605398499999999992 1.39804164066179992 0.14476615672170301 -0.040272266000000001 19 10 1.02239039999999992 0 19 false 163 177.258389368378005 1.22002829649006994 145.289993 20.0668490000000013 14 97.261793559553098 9.10377983227867915 10.6836719999999996 20.381533000000001 13 184.982564410511998 9.76665408826099046 18.9402180000000016 19.0940930000000009 1.59227650000000009 0 1.28743929999999995 0.314683900000000016 0.972755429999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.890726312905002 -63.373447580856002 22.2968923455084003 -12.9561538732873007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355851332352128 2481355851332352128 36181950 2015.5 25.406770197616801 0.297419693703320998 -3.35008235131396015 0.235076620881317006 0.463271451337961993 0.359420624007267986 1.2889394999999999 11.2075950099044999 0.559452588962695008 -4.99470936460749027 0.470591400127294002 0.0811007400000000045 0.505647100000000016 0.0442639739999999976 0.0347987099999999966 -0.181047900000000012 -0.0170106780000000013 0.0762844800000000017 -0.017956670000000001 0.0975368399999999997 0.210659349999999995 171 0 170 1 3.4922209999999998 236.070007 0.620973265737827962 0.887071119535071007 31 false 0.211136639999999987 1.60911827561638998 0.0776521871835496036 -0.00659845350000000039 19 10 0.511544499999999958 0 19 false 169 398.756859127095026 1.35968837895471006 293.270996 19.1865960000000015 13 227.640518353689004 14.9504444402515002 15.2263369999999991 19.4582629999999988 13 298.235629285554978 7.80088671444470005 38.2309899999999985 18.5755209999999984 1.31878899999999999 0 0.882741899999999968 0.271667480000000017 0.611074450000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.865384573108997 -63.3667366042782021 22.2940247655510007 -12.9432600783369001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352930756660096 2481352930756660096 1314493718 2015.5 25.4162732451540982 5.84824000374389996 -3.35215982577313998 4.82579059661911991 \N \N \N \N \N \N \N -0.573666499999999968 \N \N \N \N \N \N \N \N \N 41 0 40 1 3.33472439999999981 69.9078979 6.84629815074270986 3.86347406581425012 3 false 0.00853947700000000018 \N \N 0.0594258230000000026 5 4 9571.61100000000079 0 5 false 41 60.4561189458952981 2.64099082826405995 22.8915005 21.2347660000000005 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.886474933760013 -63.3645176740379981 22.3022874824616011 -12.9486886480260992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353033833808896 2481353033833808896 1129653748 2015.5 25.4349575248493984 0.411283829191677996 -3.33826703760224008 0.320182061951444996 2.13459837343535996 0.500827845774297953 4.2621399999999996 24.7893037743771991 0.787458923430513047 -5.44608876789954977 0.571762681274304962 0.062735810000000003 0.468740549999999978 0.0908524500000000013 0.101988529999999994 -0.243192989999999998 0.098212234999999995 0.276153450000000023 -0.0711235300000000042 0.0585257750000000021 0.194936649999999989 177 0 174 3 3.36685180000000006 237.925003 1.57663627050427002 3.82431166235214004 31 false 0.114505609999999994 1.23160714306914998 0.100754034228507997 -0.0177771299999999986 20 10 0.70793735999999996 0 20 false 173 314.426647097133014 1.38782738878184997 226.559998 19.4445669999999993 18 64.1334865152789035 7.71740027742340029 8.3102450000000001 20.8336749999999995 18 467.671821486229987 14.1479343907677997 33.0558359999999993 18.0870670000000011 1.6913494 0 2.7466086999999999 1.38910869999999997 1.35750009999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.910614629130009 -63.3439331956943974 22.3253333336854993 -12.9426498231956 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360661697319552 2481360661697319552 1608714505 2015.5 25.1427144971363994 1.27666020819482995 -3.38875490512534983 1.59329020026352008 \N \N \N \N \N \N \N 0.40340123 \N \N \N \N \N \N \N \N \N 65 0 65 0 -1.32817669999999999 46.0339012 0 0 3 false 0.0245890129999999998 \N \N 0.246981019999999996 8 6 5.65330099999999991 0 8 false 66 77.0759112919893994 1.22534529618988008 62.9014015 20.971070000000001 5 43.6008925147827995 9.94734478926467958 4.3831686999999997 21.2526499999999992 7 129.866570996553008 14.6821148863181996 8.8452219999999997 19.4781760000000013 2.25060530000000014 0 1.77447320000000008 0.281579970000000013 1.49289319999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.369562127756012 -63.5144938058967981 22.0280332926636007 -12.8819270591635 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355988771308672 2481355988771308672 1190877365 2015.5 25.4243549340373001 0.133229581201325997 -3.33754439701939987 0.100379116306008001 -0.0748460764873332962 0.156300607547668002 -0.478859780000000013 -0.982388752944088006 0.254707703567678023 -14.4691039803701003 0.205423982321924992 0.0431020260000000016 0.48533084999999998 0.0644799800000000062 0.0294645169999999991 -0.188459159999999987 -0.00717199870000000041 0.0459767469999999984 -0.0433625799999999978 0.0821109000000000006 0.192781520000000012 169 0 168 1 0.480892900000000012 171.147995 0 0 31 false 1.1028233999999999 1.58180725578346992 0.0336562370082567966 -0.0203038570000000015 19 10 0.232627210000000001 0 19 false 168 1284.59990053446995 1.87557551852059001 684.909973 17.9164470000000016 17 777.413655152296997 5.21244729498028025 149.145610000000005 18.1247579999999999 17 804.193038608613961 4.75866328433573038 168.995569999999987 17.4985199999999992 1.23120570000000007 0 0.626237869999999974 0.20831108000000001 0.417926799999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.888637167348008 -63.3478514832941997 22.3155109174144997 -12.9380765942311005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352591452853248 2481352591452853248 1152635686 2015.5 25.4454975133436001 4.0030438548739804 -3.37841895535685 2.05784748560295006 \N \N \N \N \N \N \N -0.342577929999999975 \N \N \N \N \N \N \N \N \N 88 0 87 1 44.185299999999998 2940.1001 15.2156028921006996 220.008160764089013 3 false 0.00415744300000000025 \N \N -0.2566137 17 10 6.45381360000000015 0 21 false 178 343.831848644859008 5.09479683083298962 67.4869003 19.3475000000000001 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.970488780553012 -63.3755897419123002 22.3201830927105007 -12.9838529351636005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352655876681216 2481352655876681216 1021397175 2015.5 25.4354519911900994 0.563049269669224972 -3.36721743930955997 0.465124045742570991 0.447917648524950973 0.676849118926872051 0.661768849999999964 1.91833762251134998 1.07677191337527001 -18.7986316810390015 0.830549790483909978 0.246381240000000001 0.489481100000000002 -0.0364282760000000025 0.131348770000000004 -0.0210263600000000009 0.0301212070000000005 0.246761869999999994 0.0183146110000000015 0.152362439999999988 0.18199499999999999 148 0 147 1 -0.306351130000000027 136.25 0 0 31 false 0.0676374700000000051 1.45845421506431006 0.15158612690013501 0.0120732860000000008 17 10 0.965424060000000028 0 17 false 147 174.789022113382003 1.0712960635814599 163.156998 20.0820800000000013 11 49.5086738952156011 5.27150529919112021 9.39175200000000032 21.1146850000000015 13 173.053662216720994 9.98757249988753948 17.3268990000000009 19.1664679999999983 1.27331979999999989 0 1.9482174000000001 1.03260419999999997 0.915613200000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.939504717971005 -63.3698278147646974 22.3148541489009986 -12.9697436646311992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352660172329728 2481352660172329728 1317021457 2015.5 25.4383455516809001 0.0338396979350810978 -3.36736095701182991 0.0229639980494425015 0.671693446157364038 0.0370697826823263021 18.1197030000000012 27.4062434802647985 0.0600799170362235971 3.69358427376463982 0.0461469918684491026 0.0852534249999999938 0.559441999999999995 -0.140725729999999993 0.0801882599999999973 -0.0481088569999999979 0.0477474369999999967 -0.0369406899999999982 0.0399679360000000025 0.0865414199999999939 0.17291709999999999 158 0 158 0 -0.297350349999999986 147.207001 0 0 31 true 32.0068049999999999 1.6256001802731499 0.00847093369293942973 -0.0184955930000000011 18 10 0.0623471300000000006 0 18 false 157 26117.059502604101 10.0216237079060004 2606.07007 14.6460550000000005 17 14702.8804031932996 32.6898595051013032 449.768860000000018 14.9328819999999993 16 16930.2066667129984 36.5045330859868002 463.78370000000001 14.1902650000000001 1.21120399999999995 0 0.742617599999999989 0.286827100000000002 0.455790519999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.945453931955001 -63.3687083110352987 22.317555313404501 -12.9709418610125002 100001 6184.1499 5652.83984 6578 0.304500014 0.166899994 0.6153 0.151500002 0.0763999969 0.246999994 200111 1.30635140000000005 1.15460190000000007 1.56345960000000006 2.24871679999999996 1.96144509999999994 2.53598860000000004 +1635721458409799680 Gaia DR2 2481351835538609024 2481351835538609024 1168434449 2015.5 25.4661166614671011 0.0767087764205020006 -3.37983223325388993 0.0529658767383658011 0.302994090843781982 0.085925729960401806 3.52623249999999988 6.40217209317984981 0.149772718842091007 -7.4043396294569801 0.100206869590478004 -0.0238567299999999996 0.457860299999999998 -0.117380810000000002 0.0871468559999999948 -0.227014419999999995 0.0709930059999999974 0.140656019999999993 0.0204217270000000006 0.0754790600000000006 0.128009420000000013 178 0 178 0 -0.376496459999999977 165.442993 0 0 31 false 3.72161870000000006 1.59327856790597999 0.0183181651112200999 -0.0505328329999999992 20 10 0.137554850000000006 0 20 false 178 3524.65034011896978 3.19730979234384982 1102.38 16.8205759999999991 18 1829.01570604714993 11.2166476017620003 163.06259 17.1958449999999985 17 2494.51557204534993 12.8565218771828 194.027250000000009 16.2694550000000007 1.22665540000000006 0 0.926389699999999983 0.375268939999999995 0.551120759999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.013249317825995 -63.3679502023356989 22.3392849505303985 -12.9927534972208996 100001 5317.25 5002 5445.3999 0.493000001 0.230000004 0.66049999 0.239299998 0.114 0.364499986 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352690238576640 2481352690238576640 449607541 2015.5 25.4672465361798999 1.78889162621542996 -3.36037204237875997 1.67774948571356997 -4.64029995789419036 2.6432905604013901 -1.75550129999999993 -0.315484082448437009 2.84302155972773996 -20.5109971981028991 4.06826022438592005 -0.344382520000000025 0.724240400000000006 0.362126950000000003 0.0581101399999999976 -0.67025570000000001 -0.576467900000000033 -0.643312450000000036 0.400065930000000014 0.454337570000000024 0.526301099999999966 87 0 86 1 -1.16265649999999998 66.498497 0 0 31 false 0.0231393519999999984 1.38275183475113006 0.366038178537945014 -0.0279244909999999992 12 8 4.24535939999999989 0 12 false 90 82.2240364746083969 1.23064926093606997 66.8134995 20.9008700000000012 9 35.9119474765814033 6.91255582191606965 5.19517659999999992 21.4632910000000017 10 97.7347041749377041 7.69003797465903016 12.7092620000000007 19.786798000000001 1.62539640000000007 0 1.67649270000000006 0.562421799999999972 1.11407089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.996715219044006 -63.3499222927720993 22.3477212123403 -12.9750788428194994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481352969409974784 2481352969409974784 944909785 2015.5 25.4404315520939015 0.0463892380017393996 -3.34922654193234015 0.0310963849728350013 0.607072291334535996 0.0537260518990078026 11.2994020000000006 1.37196721781073006 0.0799316921454430035 5.49076589093176981 0.0615053343170251995 0.0887658300000000039 0.584120799999999996 0.0311300769999999991 0.0542367180000000032 -0.0654139999999999999 0.00676467099999999988 0.0190412159999999997 -0.0322520729999999992 0.08404557 0.180309180000000013 166 0 166 0 -0.256933299999999976 155.779999 0 0 31 true 13.3348759999999995 1.6068527467887701 0.0113084210597113998 -0.000805312359999999948 19 10 0.0777808900000000053 0 19 false 166 11220.1447254240993 7.12827698403200039 1574.03003 15.5633700000000008 18 6167.52296825071971 15.7780400934837992 390.89285000000001 15.8761109999999999 18 7440.61591550489993 13.4933981433770995 551.426399999999944 15.0828980000000001 1.21283089999999993 0 0.793212899999999999 0.31274128000000001 0.480471599999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.932157378786997 -63.3514558092062998 22.3264009135240009 -12.9548519242715994 100001 5804.91016 5661.83008 6035 0.0599999987 0.0170000009 0.2861 0.0299999993 0.00889999978 0.129299998 200111 1.08322000000000007 1.00219630000000004 1.13865789999999989 1.20035610000000004 0.969264450000000055 1.4314479 +1635721458409799680 Gaia DR2 2481353381726452224 2481353381726452224 967036931 2015.5 25.4617358765387003 1.43645538341703993 -3.33186558738543015 1.19621154415436992 \N \N \N \N \N \N \N 0.516308960000000039 \N \N \N \N \N \N \N \N \N 95 0 95 0 1.63412920000000006 112.974998 2.5049791267394701 1.45410590753392999 3 false 0.0274882600000000005 \N \N 0.0922052859999999974 11 7 7.0115109999999996 0 11 false 97 104.624204391320006 1.12292695330162995 93.1709976 20.6392859999999985 6 39.5896151518277009 10.7358021709239004 3.68762519999999983 21.3574349999999988 7 143.833950339754011 8.57105606531307984 16.7813569999999999 19.3672660000000008 1.75316570000000005 0 1.99016949999999992 0.718149200000000043 1.2720203000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.958166362231992 -63.3266055506795027 22.3532533341196995 -12.9465513643181005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353171272762624 2481353171272762624 1226066507 2015.5 25.4732161417475993 0.380975956411974015 -3.33659693992512985 0.287814748478956994 2.17362709780802987 0.46085003398636798 4.71656039999999965 -1.37943514683012003 0.782237560050640046 -15.1884714874707996 0.522955430429182022 0.0682128500000000054 0.392206160000000026 0.250674520000000012 0.034465889999999999 -0.12968244000000001 -0.0266952249999999995 0.272836330000000016 -0.163581900000000002 0.15415682 0.0427205449999999987 163 0 163 0 1.58478300000000005 187.132004 0.547204900288335017 0.414431717043053982 31 false 0.145751710000000007 1.23442815491313995 0.0943842736689699952 -0.0234835000000000009 19 10 0.696937699999999993 0 19 false 163 301.489494528453974 1.4585561010202801 206.703995 19.4901850000000003 18 50.9235170741411025 7.82114177816345979 6.5110083000000003 21.0840929999999993 17 429.970322241137978 9.1232237119399695 47.1292100000000005 18.1783239999999999 1.59505999999999992 0 2.90576930000000022 1.59390830000000006 1.31186099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.985743393918995 -63.3259112406434994 22.3623967371534995 -12.9551730621064998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351109688463872 2481351109688463872 733815938 2015.5 25.3296193608791995 0.644623126404955005 -3.3247385665235698 0.577423486712517975 1.08690823555052996 0.797231367215954001 1.36335359999999994 7.9780929421706297 1.21481926004649998 -27.6902360630502997 0.984955683657000036 0.213108600000000009 0.471250500000000017 0.0724156600000000067 0.19355406 -0.165469499999999992 0.215528150000000002 0.432140829999999976 -0.0838852100000000017 0.0174715019999999999 0.282341269999999978 149 0 149 0 2.99345730000000021 200.177002 1.64385863838749002 1.41897389653381989 31 false 0.051640156999999999 1.20888586638613993 0.159472163249089 0.0397031939999999972 17 10 1.15127099999999993 0 17 false 149 161.02449795926799 1.16104497237639004 138.688995 20.1711349999999996 11 63.6032545398248033 15.6664329892997003 4.05984259999999963 20.842690000000001 13 212.632702914188002 7.66580225181937003 27.7378269999999993 18.9428440000000009 1.71549020000000008 0 1.89984510000000006 0.671554569999999962 1.22829060000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.68592641782999 -63.3769812002286983 22.2301620056653988 -12.8913010298391004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351040968986368 2481351040968986368 157736538 2015.5 25.3372366424437985 0.297357336447352016 -3.32745163605838012 0.267640577406009994 0.596923780572391038 0.386046763259906001 1.54624739999999994 3.94691750626247018 0.559665718695843029 -4.53088162347857004 0.453022365370232993 0.205880179999999996 0.463867570000000007 0.0646850199999999959 0.171386100000000013 -0.24078614000000001 0.150229680000000004 0.318691159999999973 -0.035348079999999997 0.0680885299999999943 0.307176899999999975 143 0 143 0 1.28246320000000003 159.684998 0.660133646639490035 1.04965059834989005 31 false 0.252164300000000008 1.45828896386952001 0.074109742261780201 0.106180339999999998 17 10 0.529340799999999945 0 17 false 142 441.229400447840987 1.78792743601260007 246.783005 19.0767039999999994 15 158.478153529379 10.9933605944532005 14.4158059999999999 19.851465000000001 15 452.503166789097975 10.3443288163188996 43.7440830000000034 18.1228659999999984 1.38472489999999993 0 1.72859950000000007 0.774761200000000039 0.953838349999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.703852379691995 -63.3761698546881007 22.2363866477267997 -12.8966275293921004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351384566376704 2481351384566376704 1266049638 2015.5 25.3088198350042006 0.62662759561374104 -3.3060979244473101 0.402498563745221027 1.45513621038115004 0.805138605390263051 1.8073113999999999 40.3856416783130996 0.823999538352683025 -9.85303459215496957 0.761215959064479031 -0.281859069999999989 0.770741459999999989 0.0631087649999999972 -0.0952768999999999977 -0.457959830000000012 0.0487188730000000028 0.272759799999999997 -0.0405974350000000012 -0.142685620000000013 0.233446270000000011 129 0 126 3 2.24024499999999982 158.503006 1.25059853181714997 1.97442618759678989 31 false 0.118568010000000001 1.74483171636953993 0.117842030744155002 -0.0291035450000000015 15 9 0.836928099999999953 0 15 false 126 303.665989412604006 1.62669174784344994 186.677002 19.4823759999999986 10 295.044915559614026 10.9428749358103996 26.9622859999999989 19.1766679999999994 11 122.381123703800995 8.37467079833723993 14.6132460000000002 19.5426329999999986 1.37462229999999996 0 -0.365964899999999982 -0.305707930000000017 -0.0602569579999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.626243358374012 -63.3690344885266015 22.2174162628134013 -12.8663157626604008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926116864 2481351418926116864 807396963 2015.5 25.3172112415761994 0.146475020458679994 -3.29870241194072999 0.113690940774179003 2.12928899819441986 0.182223492347106997 11.685041 -5.87815743685743985 0.273095822393189025 -5.07920670402889041 0.216339381143500986 0.0931092300000000012 0.523429999999999951 0.0292665769999999985 0.0897681639999999975 -0.232056989999999991 0.167426099999999994 0.289427849999999987 -0.113711729999999997 -0.0485853779999999985 0.288611400000000018 166 0 164 2 1.4457097000000001 185.459 0.340842596476128024 1.18237054680095999 31 true 1.01950659999999993 1.30053141381095005 0.0354918289434318981 0.0460242500000000027 19 10 0.256672999999999984 0 19 false 161 1278.72959070369006 1.89247433199130999 675.692017 17.9214200000000012 16 281.198511474943984 7.16939062920801007 39.222095000000003 19.2288549999999994 16 1551.56156840985 9.0404513212993205 171.624339999999989 16.7849980000000016 1.4332663000000001 0 2.44385720000000006 1.30743600000000004 1.13642120000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.636068959937006 -63.3587645669810016 22.2282015497739991 -12.8625316630035993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926118912 2481351418926118912 468726780 2015.5 25.3038178223834009 0.424704560253747976 -3.29308721924833003 0.370283024196472021 0.609867359605980042 0.55257426284133504 1.10368400000000011 0.541853721979518976 0.821897423562936047 -2.0645597083576801 0.690712408300213965 0.142858089999999993 0.476646479999999984 0.0935220900000000022 0.0944993050000000057 -0.259384039999999982 0.150321449999999995 0.326748800000000006 -0.130997780000000008 -0.0335217640000000025 0.304314970000000018 167 0 166 1 1.36364599999999991 185.994995 0.413574139508025018 0.156117071912943994 31 false 0.107104480000000002 1.32372842896779996 0.110232398567746998 0.0449044440000000017 19 10 0.782982350000000049 0 19 false 166 233.463771880714006 1.40585804447268004 166.065002 19.7678170000000009 12 74.9505532217394972 12.7361430666766005 5.88487049999999989 20.6644520000000007 16 301.778324014120983 14.9805055301139003 20.1447350000000007 18.5626999999999995 1.61365029999999998 0 2.1017513000000001 0.896635060000000039 1.20511630000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.603758309571987 -63.3594115739605002 22.2175777884124983 -12.8523805233354995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926118400 2481351418926118400 347642813 2015.5 25.3179311758703989 0.15953886750523899 -3.29468647597821018 0.123420821024156996 0.100641135165079998 0.199937368490065992 0.503363299999999958 7.20129369822195997 0.295460124664047974 -8.67608529751863955 0.236334193500266992 0.0739549899999999982 0.530850469999999963 0.034794356999999998 0.0781743000000000021 -0.250367100000000009 0.160521489999999989 0.279180229999999974 -0.116971290000000006 -0.0543638200000000002 0.291019299999999981 167 0 166 1 3.28598500000000016 226.617996 0.363220819825398 1.16351308254016006 31 false 0.852655300000000005 1.62154038705359005 0.0392989082842659029 0.04491179 19 10 0.277934369999999986 0 19 false 163 1150.21436016561006 2.13244931485373979 539.385986 18.0364189999999986 17 568.113448022287002 6.48465767215473043 87.6088600000000071 18.4652999999999992 16 792.432408781940012 12.2595560521245002 64.6379400000000004 17.5145149999999994 1.18286289999999994 0 0.950784700000000038 0.428880700000000004 0.521904000000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.633683198607997 -63.3548275955319014 22.2304060961585002 -12.8590639418986008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926120192 2481351418926120192 1477822859 2015.5 25.3113160455644 0.354093055757910002 -3.28862119763719996 0.289202257748077007 1.14758151945659992 0.45030317145884402 2.54846430000000002 17.8351762613904015 0.687244366186606004 -6.10825470765797984 0.542737422706065953 0.104848150000000001 0.477596000000000021 0.0904746059999999991 0.0884944299999999989 -0.261022570000000009 0.15753410000000001 0.313183839999999991 -0.141783760000000009 -0.0428991020000000015 0.283838480000000004 168 0 165 3 2.98073170000000021 218.641006 1.10782857493318998 2.24697094677269016 31 false 0.161282000000000009 1.42483649836510007 0.0884183994356460973 0.0409957729999999992 19 10 0.641399799999999964 0 19 false 166 365.79812500804502 1.45559070396770007 251.306 19.2802620000000005 15 130.836878095684 11.0337283951394003 11.8579030000000003 20.0595630000000007 15 345.799418734514973 11.4908656643140006 30.0934179999999998 18.4148600000000009 1.3030037000000001 0 1.64470289999999997 0.779300699999999957 0.86540220000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.614586289890013 -63.352172466393597 22.2264041984876002 -12.8509904768592005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351423221747328 2481351423221747328 710586146 2015.5 25.3120367693774995 0.104150859291458994 -3.28638198883956978 0.0803975583737226024 1.12047355901433998 0.129631888782710009 8.6435019999999998 7.98849452460041043 0.195418113480010008 -13.2691757019155006 0.152156908826491993 0.0764980400000000033 0.514287799999999962 0.0397195700000000027 0.0900586699999999934 -0.252587300000000015 0.172463630000000007 0.289046020000000015 -0.121765583999999996 -0.0513914800000000033 0.287095129999999976 168 0 167 1 1.05751130000000004 181.072006 0.0930887236905074966 0.152700824390569007 31 false 2.05650000000000022 1.4692441719106899 0.0254919927063009984 0.0382679439999999982 19 10 0.184665799999999991 0 19 false 165 2058.2495154019598 2.45474401324187008 838.478027 17.4046209999999988 18 712.472005168644955 11.0612589248998994 64.4114759999999933 18.2194700000000012 19 1960.96089705852 12.1947079463965 160.804239999999993 16.5307479999999991 1.29888669999999995 0 1.68872069999999996 0.814847949999999988 0.873872760000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.613900243245013 -63.3498407060340014 22.2279372810309006 -12.8491745194196998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351350206640768 2481351350206640768 1112528210 2015.5 25.3261520539582001 0.405736488529351014 -3.29755580403816007 0.334662431958660023 0.714924074808036991 0.50156325635511001 1.42539170000000004 12.9545610196999998 0.819486822697591988 -4.61525383193835026 0.61656602647949299 0.129986810000000008 0.440986629999999991 -0.0172933379999999984 0.111549570000000001 -0.235670209999999991 0.159949989999999986 0.352312059999999982 -0.0866107799999999983 -0.0339532869999999987 0.252193539999999994 158 0 158 0 2.34980540000000016 197.104996 0.864495626611741952 0.869063164001222965 31 false 0.124818349999999995 1.2964761962720599 0.101277442096564002 0.0113637470000000004 18 10 0.749847400000000053 0 18 false 158 279.931873015572023 1.34171982294811998 208.636993 19.5707340000000016 16 69.9897358743394022 4.62625775335980993 15.1288009999999993 20.7388019999999997 16 328.482578010354985 12.9219194125030992 25.4205719999999999 18.470638000000001 1.42346180000000011 0 2.26816370000000012 1.16806790000000005 1.10009570000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.652960637746986 -63.3539056594982029 22.2371456545841006 -12.8647579328674002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357294441505536 2481357294441505536 1071442213 2015.5 25.3275894264080002 2.50600293240992 -3.28649502407992999 2.20182854880671997 \N \N \N \N \N \N \N -0.498897819999999992 \N \N \N \N \N \N \N \N \N 78 0 75 3 0.0631347099999999967 70.0803986 0 0 3 false 0.0186852350000000014 \N \N 0.0220412330000000004 10 7 7.51280160000000041 0 10 false 80 86.8406435214905059 1.89758271775527998 45.7638016 20.8415579999999991 7 63.3508256929863975 16.3137104694366997 3.88328739999999994 20.8470079999999989 7 35.6939088787588972 7.98715649027232022 4.46891299999999969 20.880434000000001 1.14053429999999989 0 -0.033426285 0.00544929499999999983 -0.0388755799999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.645289402622012 -63.3432962541923033 22.2426979164449996 -12.8550060328346003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351075328725376 2481351075328725376 111651282 2015.5 25.3479773552490002 1.25473394420008999 -3.32586765714053989 0.914903728088709012 \N \N \N \N \N \N \N 0.197476950000000012 \N \N \N \N \N \N \N \N \N 148 0 146 2 70.5934199999999947 7742.70996 7.1676397925200801 442.19929089099702 3 false 0.0188162959999999997 \N \N 0.0897443400000000058 17 10 1.93724739999999995 0 17 false 146 1178.76335182072989 6.40841805192908964 183.940002 18.0097999999999985 12 189.093314945684995 8.29663819886862974 22.7915600000000005 19.6596979999999988 14 1848.06781679390997 13.2663701904047997 139.304699999999997 16.5951249999999995 1.72821889999999989 0 3.06457330000000017 1.64989849999999993 1.41467480000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.723944178669996 -63.3701367150575976 22.2472106738231012 -12.8991097267438999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356985203729280 2481356985203729280 309094 2015.5 25.3674791081909987 0.0528506310664709975 -3.31030133587956987 0.0365500163120271032 1.7401037445863099 0.0608024568633626014 28.6189700000000009 10.7557455491203999 0.086033536900962701 4.29734421792868027 0.0692519948477375996 0.181526660000000006 0.630122599999999977 -0.00651777629999999997 0.0992968159999999961 0.0290482900000000009 0.0343958619999999993 0.0588994850000000014 0.0152481460000000006 0.118439069999999994 0.197446910000000003 158 0 156 2 2.39444999999999997 195.757004 0.144120466132880987 1.58749063652880995 31 false 10.7714400000000001 1.47778590591956993 0.0128995149362424004 0.0450197979999999998 18 10 0.083249180000000006 0 18 false 154 11475.6079797546008 7.88429859564951041 1455.5 15.538926 17 4656.83076705572967 18.9626194330965987 245.579509999999999 16.1811620000000005 16 9861.84681340310999 20.0417546558471003 492.065029999999979 14.7770240000000008 1.26517719999999989 0 1.4041376000000001 0.642235760000000044 0.761901860000000042 \N \N 0 \N \N \N NOT_AVAILABLE 151.748242432608009 -63.3477169395872011 22.2716645746798996 -12.8918196549689998 100001 4759.58008 4472.74023 4944 0.178000003 0.0759999976 0.460099995 0.0856999978 0.0373999998 0.223100007 200111 0.616386800000000012 0.571259799999999984 0.697980399999999945 0.17566119999999999 0.162511450000000002 0.18881096 +1635721458409799680 Gaia DR2 2481357058218839808 2481357058218839808 87545861 2015.5 25.3490349273691002 0.0419966491693207974 -3.29326306838968996 0.0307439739411828998 0.566819182749146 0.0503803706761788012 11.2507940000000008 11.7454402945864 0.0725654059085355935 -8.81188263614772005 0.0660654008895635025 0.124285619999999999 0.607075400000000043 -0.019475718999999999 0.0406040179999999987 -0.131477559999999993 0.12714607 0.103680839999999996 -0.0986814899999999967 -0.07832596 0.356052550000000023 148 0 148 0 1.357097 166.460999 0.0313125009029784976 0.106909828133375004 31 true 19.2976929999999989 1.63044949895136004 0.0110726281655041999 0.0786830040000000008 17 10 0.0782971999999999974 0 17 false 144 15991.4792722549992 7.3897436073049203 2164.01001 15.1786440000000002 16 9170.12555273882936 45.1035379458638985 203.31277 15.4454499999999992 16 10281.6794820895993 20.0364257799076988 513.149350000000027 14.7317599999999995 1.21638559999999996 0 0.713689800000000041 0.266805650000000005 0.446884159999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.694868806967008 -63.3402342726838015 22.2605513350420985 -12.8691923474662993 100001 6169.39014 5870.56006 6786.66992 0.0502999984 0.00800000038 0.236399993 0.0270000007 0.00389999989 0.114699997 200111 1.21736099999999992 1.00598480000000001 1.34445440000000005 1.93420999999999998 1.55685969999999996 2.31156020000000018 +1635721458409799680 Gaia DR2 2481357053923211136 2481357053923211136 1680524337 2015.5 25.3582686185641997 0.820265513236152044 -3.29293958933343012 0.770234365994643011 0.181005878770175987 1.05559520961222009 0.171472819999999998 0.40493282532872299 1.94181244601653002 -9.87137506472529935 2.13729412074032021 0.332910060000000008 0.374310079999999989 0.127180409999999994 -0.0756544900000000048 0.0144776790000000002 -0.0460822320000000007 -0.122492400000000001 -0.368839499999999987 -0.222295500000000007 0.524291159999999978 101 0 101 0 0.369128169999999978 100.516998 0.180379886003398993 0.0113531512463826006 31 false 0.042386550000000002 1.6493809138819 0.236822663571528008 0.126357529999999996 12 8 2.22887499999999994 0 12 false 102 125.227594023335996 1.3606040343113599 92.0382004 20.444115 8 82.1596892866920996 11.7050276760820005 7.01917930000000023 20.5647410000000015 8 74.6110171404533986 13.0488423064785 5.71782639999999986 20.0799120000000002 1.25188619999999995 0 0.484828949999999981 0.120626449999999996 0.364202499999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.713115847761998 -63.3359866044531969 22.2694634136413008 -12.8722907611268997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356229291477888 2481356229291477888 326155715 2015.5 25.3768430392303017 1.0474608299864101 -3.30697095888324011 1.49693460204095996 \N \N \N \N \N \N \N 0.54487216000000005 \N \N \N \N \N \N \N \N \N 99 0 98 1 1.13656779999999991 108.637001 1.14720333689838005 0.260490922884848985 3 false 0.0285384259999999987 \N \N 0.279310100000000006 12 7 6.58531569999999977 0 12 false 97 96.859006964611396 1.12813325668041009 85.8578033 20.7230150000000002 6 91.9107199954347038 33.2443695988008017 2.76470040000000017 20.442972000000001 7 105.749016928169993 10.1211872656301995 10.4482820000000007 19.7012299999999989 2.04069540000000016 0 0.741743099999999989 -0.280042650000000004 1.02178569999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.763866524666014 -63.3406919533400981 22.2818386669738011 -12.8921706660369999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357088282950272 2481357088282950272 761388249 2015.5 25.3834172256458004 0.465632357893093984 -3.29128874226047996 0.355902033596101008 -0.470601945194214999 0.567407011995942012 -0.829390399999999972 0.0412686747688326971 0.876573326160278055 -2.30555913536504997 0.653778891278244956 0.122863420000000001 0.501159369999999993 0.0532033400000000017 0.0790046749999999964 -0.102297029999999997 -0.0154708510000000007 0.176271260000000013 -0.0200058429999999988 0.156867430000000002 0.135063559999999999 164 0 164 0 2.62745430000000013 209.804001 1.11403593625228003 1.19549748606829009 31 false 0.0928082540000000067 1.66651272819253005 0.121936806805232001 0.0187011360000000001 19 10 0.777577940000000023 0 19 false 164 240.790393593971999 1.29017928742487009 186.632996 19.7342680000000001 10 138.963257654685009 3.53527112344674999 39.3076670000000021 19.9941390000000006 13 153.719186229500991 17.4248543344710001 8.82183500000000009 19.2951000000000015 1.21550709999999995 0 0.699039459999999946 0.259870529999999988 0.439168930000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.762048959157994 -63.3237112804564006 22.2940281925402992 -12.8800127868010001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357328803032960 2481357328803032960 922676738 2015.5 25.3377144077572005 3.1719750829658202 -3.2814468246420101 1.94455304162084008 \N \N \N \N \N \N \N -0.0626200960000000001 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.69931520000000003 59.9267006 3.93631423980732986 1.52384425338282004 3 false 0.0151066310000000006 \N \N 0.0380401130000000004 6 6 5.37137300000000018 0 6 false 49 83.1413176397293938 2.05768446754633993 40.4053001 20.8888229999999986 3 54.5904937207151022 1.82083368315817995 29.9810429999999997 21.0085960000000007 4 154.380287722079004 38.426214440396798 4.01757700000000018 19.2904400000000003 2.51344080000000014 1 1.71815680000000004 0.119773864999999993 1.59838300000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.660825616349001 -63.3344044550697021 22.2542448524367984 -12.8540412644903004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357122642691200 2481357122642691200 363596110 2015.5 25.3846435514661017 0.512813517355556026 -3.28194460514799013 0.376256492087921002 1.55994743991133 0.60588902997574301 2.57464219999999999 17.4405398067164015 0.958777220258429042 -2.70517028905230994 0.655242963796238032 0.185597120000000004 0.508024930000000041 0.150906160000000011 0.120379559999999997 0.0540435500000000027 -0.0179930199999999985 0.281344949999999983 -0.0850441499999999989 0.220607859999999989 0.058191716999999997 155 0 153 2 3.76590200000000008 221.830994 1.42465062480024995 1.88435167409035009 31 false 0.0894461899999999949 1.51975688613360993 0.127787790327055006 -0.0251734420000000007 18 10 0.847520399999999952 0 18 false 152 254.590370191228004 1.40388319732061007 181.347 19.6737609999999989 13 65.3862557785437986 6.60156190500438989 9.90466400000000036 20.8126719999999992 15 364.892313404313995 12.1111530438846007 30.1286179999999995 18.3565080000000016 1.69008179999999997 0 2.45616339999999989 1.13891030000000004 1.31725310000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.755566096183998 -63.3147481158471024 22.2987291303170991 -12.8717780803584994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356061786427648 2481356061786427648 1508479860 2015.5 25.4116842464144987 0.332098838541447006 -3.33073882944519983 0.240364775596564995 -0.889344639924235958 0.398974503220056009 -2.22907639999999985 26.5114864590121009 0.614572984081617979 -15.3574885796658993 0.457759934844524985 -0.00877273400000000078 0.500773849999999965 -0.0108537649999999996 0.0817700400000000022 -0.278336169999999994 -0.00480069799999999994 -0.00855002399999999982 0.0457324299999999975 0.156874309999999989 0.211427609999999988 161 0 160 1 52.4531500000000008 4121.12012 2.19961874311037997 222.298189813893998 31 false 0.198622820000000005 1.5486144784803999 0.0779023114376131975 0.0274994819999999987 18 10 0.553167049999999993 0 18 true 160 5624.98997957105985 19.4472564513065009 289.243011 16.3130600000000001 17 2783.69675635941985 14.3807343191203003 193.571259999999995 16.7398339999999983 18 4713.27833906282012 10.1673702796783001 463.569059999999979 15.5786119999999997 1.33279799999999993 0 1.16122149999999991 0.426773069999999977 0.734448430000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.856652611175008 -63.3471686412479968 22.3060203991345993 -12.9270874834429002 110001 5073.89014 4897 5252.62012 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356091850531328 2481356091850531328 1326247936 2015.5 25.4174122235030993 0.678384634747892012 -3.31009920620155018 0.627347901404367025 -1.36327788235728997 0.763887067655776963 -1.78465889999999994 9.70921221880047014 1.44801038585698993 -4.40753995648790031 1.55177910522042994 0.190382169999999989 0.370922030000000014 -0.138754640000000012 -0.0735675539999999933 -0.0562840630000000022 -0.117686436000000005 -0.32343280000000002 0.0211049279999999985 0.0665696600000000027 0.287118319999999982 125 0 125 0 1.8094462 149.498001 0.854483532460660999 0.355210431273411009 31 false 0.0454266899999999987 1.79428171217621002 0.230109429822897005 -0.0703017340000000046 15 9 1.51303019999999999 0 15 false 124 148.612240280521007 1.2900416504382799 115.199997 20.2582300000000011 13 83.8861682339767043 8.98857617081887028 9.33253099999999947 20.5421620000000011 13 105.062048609265005 10.2325012475098998 10.2674850000000006 19.7083049999999993 1.27141759999999993 0 0.833856599999999948 0.283931729999999993 0.549924850000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.848321687626992 -63.3260803164871007 22.3192797251400989 -12.9100090985776994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356366730467840 2481356366730467840 440030844 2015.5 25.3990818479282012 2.03210729045883021 -3.29241461863208018 3.29479278435470979 \N \N \N \N \N \N \N -0.406324300000000027 \N \N \N \N \N \N \N \N \N 86 0 84 2 1.42867910000000009 97.5838013 3.02097695063724014 1.20623291800132004 3 false 0.0166327450000000009 \N \N 0.0781453200000000042 10 7 9.2709255000000006 0 10 false 86 86.9327552814210947 1.61053438140044003 53.9776001 20.8404060000000015 8 43.0101915111249014 8.43496254258814915 5.09903759999999995 21.2674599999999998 9 138.11871110626501 7.24718860145901989 19.0582470000000015 19.411290000000001 2.08355200000000007 0 1.85617070000000006 0.427053450000000001 1.42911720000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.794572034453012 -63.3180015275101979 22.3085152809014993 -12.8868243273937004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357126937937792 2481357126937937792 1535286590 2015.5 25.3919912230118996 0.992580317584833005 -3.28365659870920013 0.926202404500108045 2.60107566924597 1.13764416694805992 2.28636999999999979 5.93145210981854998 2.00621557343471979 -0.577015700400721032 2.10640924492608983 0.31133791999999999 0.433851199999999992 0.100234694999999999 -0.128118960000000004 0.0582559370000000007 -0.193472709999999992 -0.236527380000000009 -0.130102489999999987 0.111586779999999997 0.284482960000000007 129 0 129 0 2.16548229999999986 160.531006 2.42785734770097994 1.4167368433804699 31 false 0.0230401720000000011 1.16534860664637008 0.317301805830371986 -0.0167545290000000006 15 9 2.06434369999999978 0 15 false 129 103.518900847238001 1.17279734835192007 88.2667007 20.650815999999999 7 29.5854925139843985 2.82326098520425983 10.4791919999999994 21.6736900000000006 15 157.155703618795997 6.51162434102618004 24.134640000000001 19.271094999999999 1.80393340000000002 0 2.40259549999999988 1.02287480000000008 1.37972070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.771952480968991 -63.3131403045900001 22.3050766233914004 -12.8760736165545993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356748981194112 2481356748981194112 605431252 2015.5 25.4171734400662004 2.36508371340224022 -3.28539965331647021 1.56418169440115995 \N \N \N \N \N \N \N -0.0971253740000000004 \N \N \N \N \N \N \N \N \N 139 0 138 1 78.3938140000000061 9873.08008 13.5534951011744003 374.106788455267008 3 false 0.00512663300000000023 \N \N -0.0551632400000000023 19 10 3.86905900000000003 0 19 false 166 431.925151347626979 4.84681375522373958 89.115303 19.0998440000000009 18 606.400371688282007 13.4201980628709006 45.1856500000000025 18.3944900000000011 18 1283.70000554077001 8.38628180013673941 153.071409999999986 16.9907600000000016 4.37599040000000006 0 1.40372849999999993 -0.705354700000000001 2.10908320000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.824143970844005 -63.3038940211795023 22.3283916699522003 -12.8869605760108996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356675966091520 2481356675966091520 147153236 2015.5 25.4224788253307992 0.378583746127481025 -3.28505113801843018 0.298983954922704021 0.760406578592447979 0.458770757047536004 1.65748699999999993 4.05401659728874009 0.750740130292302021 -3.73424015667055986 0.535665340381231037 0.0759922499999999973 0.428808399999999978 0.123517920000000003 0.0770893500000000009 -0.183341850000000001 0.0244464869999999994 0.263553859999999973 -0.0725276499999999991 0.12237692 0.118914740000000005 176 0 171 5 1.48928140000000009 193.901001 0.540802479389569046 0.370943057827296974 31 false 0.130464090000000005 1.32918161216913999 0.100569972749570996 -0.0218171049999999998 20 10 0.666074500000000014 0 20 false 172 281.364945413244982 1.35873626430808003 207.078003 19.5651909999999987 15 100.033038322639001 10.1117827680045007 9.89272000000000062 20.3510300000000015 12 289.702520750137012 12.1643382455939992 23.8157229999999984 18.6070379999999993 1.3851602999999999 0 1.74399189999999993 0.785839100000000013 0.958152800000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.834449065535011 -63.3012977629165974 22.3335744981080992 -12.8885886860207997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356401088174336 2481356401088174336 465746898 2015.5 25.4434948909186005 0.347691454756474005 -3.31950800120455014 0.258056457698962016 -0.0514910355153457983 0.395616705685633008 -0.130153849999999988 2.34021344369500994 0.71226249844102596 -3.88105193640063995 0.490600480048814014 -0.0381336769999999978 0.436912829999999974 -0.00846841499999999997 0.0154910789999999996 -0.203308450000000002 -0.0464951170000000025 0.248579639999999991 0.00176827970000000001 0.0924801299999999937 0.0166697150000000016 158 0 156 2 2.94494940000000005 207.352997 0.962565684457409976 1.64591701159834991 31 false 0.176022659999999997 1.65431421173273008 0.0900257934030975066 -0.0841742800000000041 18 10 0.625085600000000019 0 18 false 156 392.430437082279013 1.35534762702159006 289.541992 19.2039590000000011 12 210.778594778931989 7.88434515986590956 26.7338099999999983 19.5418219999999998 14 264.653032668769015 10.4733960162488007 25.2690750000000008 18.7052270000000007 1.2115054999999999 0 0.836595540000000026 0.337863919999999984 0.498731599999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.909689563215011 -63.3233329543538019 22.3405564987914005 -12.9283526057323996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353446150673920 2481353446150673920 1542027458 2015.5 25.4565159460828987 0.484397447018568017 -3.3210571952982102 0.387639107272914007 2.19356339325979999 0.597030522437097977 3.67412280000000013 12.5615475051387993 0.96262174383938004 -3.97732200691882998 0.690520278695306966 0.057921460000000001 0.428856579999999987 0.111050166000000006 0.0692863900000000033 -0.213255869999999986 0.0164842070000000007 0.273178250000000011 -0.0631037400000000054 0.115552310000000005 0.1130824 176 0 176 0 0.991323350000000048 189.281006 0 0 31 false 0.0768304540000000064 1.49521393172139994 0.127529005158138004 -0.0305405389999999985 20 10 0.852300700000000022 0 20 false 175 190.269843516326006 1.21599208714286 156.473007 19.9899400000000007 16 69.8125869766230949 11.4032858927845009 6.12214659999999977 20.7415540000000007 15 211.55375505746099 9.74249725984680914 21.7145299999999999 18.9483679999999985 1.4787752999999999 0 1.79318620000000006 0.751613599999999993 1.04157260000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.937290486996005 -63.3191133023549 22.3523694755922016 -12.9345832715768996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356401088176384 2481356401088176384 466901692 2015.5 25.4397802098171013 0.253290155834877018 -3.31054929960190991 0.196453981302638997 1.93748256337578995 0.298520244837444992 6.4902886999999998 24.0074208559381006 0.505570846804148988 -0.135669802820956004 0.363549232675816014 0.00842919100000000081 0.452998699999999976 0.0968546940000000051 0.0238944269999999993 -0.164759519999999993 -0.0489564700000000019 0.292699199999999993 -0.0487615900000000005 0.115232475000000001 0.0295262280000000016 168 0 168 0 1.97194699999999989 200.492996 0.0741331127725639027 0.0152235479964852004 31 false 0.303275499999999976 1.36955118226101002 0.065452169994003398 -0.0479379369999999999 19 10 0.445546200000000003 0 19 false 168 482.438755110254988 1.36289494435895997 353.980988 18.9797609999999999 17 135.100016704159003 9.73690476740286037 13.8750479999999996 20.0247500000000009 15 585.987042985721018 11.5240070366152008 50.8492430000000013 17.8421999999999983 1.49467060000000007 0 2.18255039999999978 1.04498859999999993 1.13756180000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.893624755763994 -63.3168536839336014 22.3404068850548008 -12.9186577728630994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353484806049792 2481353484806049792 1399186041 2015.5 25.4701292163814017 0.0332750052910718019 -3.31453597539274991 0.0335399987268059016 0.712584051622114023 0.0424789803944057021 16.7749799999999993 11.9528084228079994 0.0830805825994084951 -6.50122788271109986 0.0711554481268485001 0.266626419999999975 0.239925880000000008 0.238183160000000005 0.266695679999999991 -0.469488699999999981 0.547748400000000024 0.60053690000000004 -0.428374169999999999 -0.404920500000000017 0.629986759999999979 145 0 143 2 0.377033950000000007 143.673004 0 0 31 false 45.0275999999999996 1.59027972007170004 0.0090085385621012596 0.00255470890000000003 17 9 0.102909303999999993 0 17 false 140 37031.7875316557984 12.6397191589824001 2929.80005 14.2669289999999993 16 19405.0092513652016 32.2854953013652022 601.044200000000046 14.6316030000000001 15 25657.7444310218016 36.0096492488601001 712.524199999999951 13.7388735000000004 1.21686690000000008 0 0.892729760000000039 0.364674569999999976 0.528055199999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.958297003474996 -63.307356565382598 22.3677980402583003 -12.9335288245080005 100001 5630.41016 5510.75 5904.47998 \N \N \N \N \N \N 200111 1.79282950000000008 1.6302544000000001 1.87153039999999993 2.91025700000000009 2.51888820000000013 3.30162600000000017 +1635721458409799680 Gaia DR2 2481356435448084736 2481356435448084736 1134024807 2015.5 25.4549499248239997 0.515117627294011005 -3.29556399891637986 0.408403929306784985 0.891698946297199035 0.642173973018849042 1.38856289999999993 13.1887556781108994 1.01994996625463008 -3.61773794456490982 0.73652900754171402 0.0290215259999999989 0.422974970000000006 0.0931354199999999965 0.0550370960000000006 -0.25875231999999998 -0.0325435619999999981 0.152797189999999999 -0.00731798770000000043 0.170878079999999988 0.124728519999999996 160 0 159 1 2.39094419999999985 199.095001 1.69307371671898998 3.33102960256817981 31 false 0.0738018299999999988 1.21421512810248999 0.135882374181024002 0.00157175999999999995 19 10 0.903314599999999968 0 19 false 159 221.517364342756991 1.24446608700392991 178.001999 19.8248460000000009 14 56.7817925311951015 4.34792504552061043 13.0595149999999993 20.9658659999999983 17 265.648224670862987 8.77195427242114079 30.2838129999999985 18.7011530000000015 1.4555518999999999 0 2.26471329999999993 1.14101980000000003 1.1236934999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.909629805357014 -63.2967981558150967 22.3605164622268013 -12.9103079066284998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356504167561600 2481356504167561600 694190807 2015.5 25.453661901872799 1.86960120175564004 -3.29462140855207997 1.73292991645624994 2.50067197979978983 2.64352643798615983 0.945960640000000019 9.90736188928032924 3.07978323655432007 -5.25839981701876003 4.62906333869837017 -0.461016399999999993 0.707787159999999971 0.0877494899999999994 -0.0950282900000000014 -0.716987550000000029 -0.292861800000000005 -0.287010129999999974 0.156712820000000003 0.0891852800000000057 0.475847269999999989 81 0 81 0 -0.517388999999999988 69.1699982 0 0 31 false 0.017142033000000001 1.55893275019518995 0.443275547539910997 -0.109932415000000006 10 7 4.38664339999999964 0 10 false 82 79.2982145608612967 1.25282924183296007 63.2952995 20.9402070000000009 3 15.2643193588497006 5.92314410993374008 2.57706359999999979 22.392195000000001 9 106.057966663772007 9.88282040123893069 10.7315480000000001 19.6980609999999992 1.52994980000000003 0 2.69413379999999991 1.45198819999999995 1.2421454999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.906143005653007 -63.2965033250708018 22.359646379796299 -12.9089578169187007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356710325829376 2481356710325829376 412590391 2015.5 25.4409156634227003 0.683000269775913993 -3.28729448325798002 0.633787884289840009 0.992662625284612021 0.796796264061355952 1.24581739999999996 11.2872925814537997 1.47691725418483011 -10.4350227720366 1.78167422074526005 0.127999709999999989 0.352372469999999993 0.0735390600000000033 -0.166359019999999996 -0.109406600000000007 -0.175810130000000009 -0.228983240000000005 -0.119860984000000004 0.056382584999999999 0.247655110000000012 130 0 130 0 -0.385234359999999998 118.362999 0 0 31 false 0.0424128729999999968 1.14296058026522007 0.216268774824744991 -0.0560997999999999983 15 9 1.65004970000000006 0 15 false 132 131.384614654655991 1.26079052100507005 104.208 20.392004 12 53.4974233905168006 14.6841122303152005 3.64321800000000007 21.0305560000000007 12 139.899099726640003 7.96500800387763963 17.5642129999999987 19.3973830000000014 1.47198760000000006 0 1.63317299999999999 0.638551700000000055 0.994621300000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.873562066314008 -63.2953864081816988 22.3502799966564005 -12.8974573604764 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356611542240384 2481356611542240384 701831464 2015.5 25.4487290921998017 0.0844404578785071941 -3.28454616429897994 0.0594688787267333985 0.388662369253348017 0.0972328295090279932 3.9972338999999999 2.50788599926610001 0.156839884363674992 -32.6026397285329992 0.114720228422942994 -0.00972069149999999979 0.504833340000000019 -0.00573475800000000039 0.0671879400000000016 -0.208400250000000009 0.0307621970000000015 0.0938341199999999931 -0.0063100090000000001 0.0920775100000000013 0.152082820000000007 176 0 175 1 2.66407630000000006 223.205994 0.139609974849736002 0.507908531894478044 31 true 2.96947880000000008 1.64264106171049007 0.0204533991064126015 -0.0228631180000000017 20 10 0.143343749999999992 0 20 false 175 3159.69135547726 2.86637036831129999 1102.32996 16.9392549999999993 16 1700.51709619234998 12.2142297098077002 139.224259999999987 17.2749349999999993 18 2131.09347090579013 19.1615341767641993 111.217269999999999 16.4404140000000005 1.21265339999999999 0 0.834520339999999972 0.335679999999999978 0.498840329999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.886581123257997 -63.2895412948520004 22.3587582977787989 -12.8977768654417009 100001 5809.66992 5613.31006 5871.33008 0.0680000037 0.0237000007 0.179100007 0.0315000005 0.0130000003 0.0798999965 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356538527260288 2481356538527260288 125690535 2015.5 25.4622031028149998 1.89297088608925002 -3.29771658383282018 1.36736010741853997 4.43109988700854984 2.6453586642323299 1.67504689999999989 0.329966199353439016 2.36126128748011999 -6.09137183431787044 3.20890095295463995 -0.100549004999999997 0.825466999999999951 0.186451100000000008 0.0219470260000000014 -0.400826279999999979 -0.505603550000000013 -0.622816700000000001 0.285589929999999992 0.302755239999999981 0.571329700000000051 102 0 102 0 0.636238199999999976 105.428001 0 0 31 false 0.0228582020000000011 1.36743474318755998 0.346785417937767015 0.159575660000000008 12 7 3.40096879999999979 0 12 false 103 89.4903992935388999 1.11474704038432004 80.2787018 20.8089240000000011 7 76.5261394687413059 11.6373552947469996 6.57590499999999967 20.6418630000000007 9 75.035952448968402 11.8200549284805003 6.34818999999999978 20.0737459999999999 1.69361279999999992 0 0.56811714000000002 -0.167060850000000011 0.735177999999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.92623172906201 -63.2956113308970032 22.3666090569749016 -12.9149771857294997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363066877422976 2481363066877422976 937084328 2015.5 25.2600609115939001 0.165515239721633012 -3.30159764203725015 0.173906020536812006 1.13116587722602002 0.200563358158282995 5.63994260000000036 26.7125449683484 0.369429175640257013 11.5530629980050996 0.312394493110032978 0.380311430000000006 0.266792399999999985 0.165061070000000004 0.295437720000000015 -0.248843199999999987 0.401991780000000021 0.569164499999999962 -0.233080690000000007 -0.169429229999999986 0.46721459999999998 159 0 156 3 0.632528250000000014 161.563004 0.245935267144316988 0.384915197801876996 31 false 0.726767359999999973 1.46584735643441011 0.043586141060403899 0.13492019999999999 18 9 0.387411300000000014 0 18 false 155 876.323653383294982 1.87814638523999999 466.589996 18.3317049999999995 16 246.228056269585011 10.4081268365175994 23.6572880000000012 19.3730450000000012 16 976.769176861565029 8.93014598610096932 109.378860000000003 17.2874400000000001 1.39559999999999995 0 2.08560560000000006 1.0413399000000001 1.04426569999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.523740749092013 -63.3857672041165969 22.1727117051058009 -12.8441748625024008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363135596900480 2481363135596900480 630192474 2015.5 25.2920969728540008 0.343928184122960001 -3.2984470486371098 0.271193309736398991 1.41877579944554011 0.439715544228636013 3.22657630000000006 17.3219888933978012 0.625001995224238049 -10.1988665528343994 0.497089453164447026 0.091268434999999995 0.540384899999999946 0.067005229999999999 0.100716470000000002 -0.26063225000000001 0.168530089999999994 0.312121570000000015 -0.111888329999999994 -0.0316877179999999967 0.298279760000000005 164 0 163 1 3.49941540000000018 227.876007 0.97433124113840297 2.00102534381300012 31 false 0.188274219999999992 1.42515558852119995 0.0815202344375137999 0.0367563330000000021 19 10 0.586488539999999947 0 19 false 163 393.580654316670973 1.59916647934884004 246.115997 19.2007800000000017 15 120.806081588300998 15.7871348338013995 7.65218539999999958 20.1461660000000009 16 439.570942513960006 12.7054790166318003 34.5969600000000028 18.1543479999999988 1.4237921 0 1.99181750000000002 0.945385000000000031 1.0464325000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.585275819775006 -63.3692601493226988 22.2043941030352983 -12.8530460461809994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363307397349760 2481363307397349760 132501616 2015.5 25.2547351801324993 1.09531259453440999 -3.28034252971356022 1.08738220975375999 -0.955137906589299979 1.30385363453169001 -0.732549969999999995 2.60269584219796002 2.05362769140866019 -10.4780648199053008 2.29386279225834988 0.498312949999999977 0.55019640000000003 0.0727956500000000034 -0.0504119099999999973 0.294471800000000006 -0.0515750099999999975 -0.108246259999999997 -0.239432329999999999 -0.120434330000000006 0.43262415999999998 97 0 96 1 -0.485023980000000021 83.9786987 0 1.05337863468137003e-15 31 false 0.0282831940000000011 0.940315026404533016 0.346140695198137005 0.118952370000000002 11 8 2.30406639999999996 0 11 false 96 93.561931970435495 1.07255629467699998 87.2326965 20.7606180000000009 4 73.6627744019786945 7.54002240960319003 9.76956900000000061 20.6832680000000018 8 146.214930323911005 14.8881707234556995 9.82088000000000072 19.3494419999999998 2.3500766999999998 0 1.33382610000000001 -0.0773506199999999949 1.41117669999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.492782648096011 -63.3688085258257985 22.1756866344870005 -12.8224576765551994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363479194293376 2481363479194293376 365660682 2015.5 25.2648035669593014 0.459227725657870012 -3.26799856624027019 0.336393669413490026 -0.895993319412028977 0.546664996064919029 -1.63901720000000006 19.4725351249871004 0.811403326078381948 -11.1268482560756006 0.575760673983372051 0.120835129999999999 0.547476700000000038 0.0145839060000000006 0.180763960000000001 -0.172104459999999987 0.229898359999999996 0.364754320000000021 -0.067291279999999995 0.0259103200000000006 0.263336000000000015 154 0 152 2 35.3105049999999991 1960.31006 2.70402109948120994 92.4480783251854064 31 false 0.123030589999999995 1.59728555807601991 0.106289174477190995 0.0552415850000000028 18 10 0.742426040000000009 0 18 false 154 1720.55225396511992 8.90912963426790938 193.121994 17.5991950000000017 16 886.564575848390973 16.3636732253806017 54.1788250000000033 17.9821129999999982 16 1366.23328714695003 22.0188318179729983 62.0484000000000009 16.9231070000000017 1.3093458 0 1.05900569999999994 0.382917400000000019 0.676088330000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.501327961772006 -63.3533574640932002 22.1899388131252984 -12.8146930669679993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363242971745792 2481363242971745792 728581195 2015.5 25.2824643184773983 0.0657430777118886978 -3.27563139412918991 0.0490244365914793007 0.377409479157181982 0.0809012330653056944 4.66506500000000024 4.27381315873863965 0.120498143160278001 -2.71891756512802019 0.103358366835588994 0.0634205300000000027 0.555177900000000002 -0.0186886380000000005 0.0413560800000000034 -0.229927269999999989 0.141169490000000009 0.153229270000000001 -0.117341119999999993 -0.0878851199999999971 0.338160069999999979 157 0 156 1 0.452223450000000027 158.307007 0 0 31 false 5.86621300000000012 1.5977016126383401 0.0174120297212753995 0.0529492719999999986 18 10 0.120638490000000001 0 18 false 153 5096.7814059359398 4.48670739678435027 1135.96997 16.4201259999999998 15 2673.85093905289023 10.4076887809239 256.911099999999976 16.7835450000000002 16 3511.63173684236017 12.9351611769571004 271.479550000000017 15.8981480000000008 1.21360559999999995 0 0.885396960000000011 0.363418579999999991 0.521978399999999954 \N \N 0 \N \N \N NOT_AVAILABLE 151.544145314817996 -63.352739102548 22.203858508361801 -12.8282919683316994 100001 5859.66992 5634.33008 6342.87012 0.508000016 0.320899993 0.587800026 0.252000004 0.151199996 0.294 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363449130175488 2481363449130175488 1320046872 2015.5 25.2811049428094989 0.095833923854522704 -3.27004790987585015 0.0725277190612853978 0.409882912568222013 0.116619347727744002 3.51470759999999993 6.59601322422981973 0.177380022782605007 -9.10249662562270068 0.150209891088494002 0.0201786010000000009 0.548665760000000002 0.0208533519999999986 0.00388928269999999979 -0.226333439999999997 0.0806930960000000058 0.240924429999999995 -0.10483365 -0.0724471500000000018 0.22934388 147 0 147 0 1.84701610000000005 174.690002 0.218071668743504005 1.10867013353548005 31 false 2.7141367999999999 1.62807021168877997 0.0256411700489432987 0.034571677000000002 17 10 0.167290090000000002 0 17 false 146 2969.53906262728015 3.56095305347382007 833.916992 17.0066430000000004 13 1678.18474196206989 12.3772658147789993 135.586060000000003 17.2892900000000012 16 1898.42895651003005 10.8600354500944007 174.808729999999997 16.5659330000000011 1.20443389999999995 0 0.723356250000000034 0.282646180000000025 0.440710070000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.536095576185005 -63.348269087870797 22.204677122955701 -12.8226016197496993 100001 6177.91016 5630.8501 6309 0.0340000018 0.00889999978 0.0900999978 0.0179999992 0.0046000001 0.0454999991 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369320349818240 2481369320349818240 815626026 2015.5 25.2891674600551006 0.450962267621074997 -3.25995660652929997 0.373707254535676991 0.290263956180948024 0.570513353797083012 0.508776800000000029 7.81717017998137997 0.873533536987979975 -2.56435366421998001 0.730667936179364985 0.130442520000000006 0.484523150000000014 0.0881246900000000055 0.0727048440000000046 -0.219904270000000013 0.13232236 0.272474300000000003 -0.139745430000000004 -0.0392063330000000029 0.293271500000000018 162 0 162 0 2.32144800000000018 201.046005 1.15425587986064992 1.27221318347681001 31 false 0.0980596839999999942 1.78139506549342008 0.114652788447928006 0.0407327999999999996 19 10 0.825167699999999948 0 19 false 162 254.567036512968997 1.38030585250093996 184.427994 19.6738600000000012 13 156.304512169675007 14.7912009973164995 10.5673980000000007 19.866458999999999 14 172.422065141941999 8.08804979009399005 21.3181270000000005 19.1704389999999982 1.29131639999999992 0 0.69602010000000003 0.192598340000000007 0.50342180000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.542720029229997 -63.3357074787310026 22.2161676443956999 -12.8161910347724994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370144983545984 2481370144983545984 836815269 2015.5 25.2740135961442007 0.95241299523273204 -3.23661959445783998 0.794636885317074992 1.14549753679203992 1.17103472621770011 0.978192599999999968 3.61633224472135018 1.95978122654557008 -19.779586935062401 1.5866167290517601 0.22484599999999999 0.405982730000000014 0.158346369999999986 0.0594744700000000015 -0.081836030000000004 0.0598647370000000012 0.153751500000000013 -0.18573597 0.0306885260000000007 0.263099399999999983 121 0 115 6 0.499041300000000021 116.874001 2.75169596085234014 6.86038284029188983 31 false 0.0288266019999999998 1.41413390994407995 0.276521866019493023 0.0742664259999999965 15 10 1.81646029999999992 0 15 false 117 115.284996620420998 1.30679779324020995 88.2194977 20.5339339999999986 5 23.3523895695153989 4.95677996816694044 4.71120170000000016 21.9305599999999998 11 137.461429212717007 12.4034785680943003 11.08249 19.4164679999999983 1.39492400000000005 0 2.51409150000000015 1.39662550000000008 1.11746600000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.490060208362991 -63.3210522702910978 22.2105736404549994 -12.7889190323887991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481363513554035200 2481363513554035200 1528311073 2015.5 25.2771944593050009 0.229837700664018013 -3.25711195314003987 0.195159779556281998 0.161265698707483002 0.286592948996947983 0.562699440000000051 11.4275423497314996 0.501815037073306991 -4.7938776807809802 0.384674157242775983 0.217591299999999988 0.357602099999999978 0.204483300000000007 0.142465580000000008 -0.244814649999999995 0.265139579999999986 0.385928099999999996 -0.281895000000000007 -0.142537150000000001 0.383071119999999987 136 0 134 2 0.295277330000000005 133.119003 0 8.8472917008842e-16 31 false 0.467556030000000011 1.62984954459072995 0.0637418824293067982 0.0553592030000000027 16 10 0.486283030000000005 0 16 false 133 638.679829999912045 1.99487856326792001 320.160004 18.6751579999999997 11 286.189131568352025 14.9719199592886003 19.1150589999999987 19.2097550000000012 11 498.040251547049024 9.4385601233249492 52.7665500000000023 18.0187589999999993 1.22789119999999996 0 1.19099620000000006 0.5345974 0.656398799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.515923698356005 -63.3382352065515022 22.2058492484562002 -12.8091377785852991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370144983695488 2481370144983695488 1113677953 2015.5 25.2765640855302003 0.807403920928798979 -3.2351607455073399 0.681191662372831019 0.0492259386839737009 0.979113020109712018 0.0502760520000000016 6.22482935279890981 1.7691969366417899 0.878090004336944951 1.51921091464829994 0.2539381 0.37862800000000002 0.178252130000000009 0.0113131470000000008 -0.0444237739999999992 0.0342380099999999993 0.110155753999999995 -0.254402039999999996 -0.0442975280000000027 0.31040835 127 0 125 2 1.60329370000000004 145.830994 1.58840245821209991 1.78275155782257011 31 false 0.0369179170000000015 1.60634133916301991 0.243688773348467003 0.0284274870000000013 15 10 1.68654189999999993 0 15 false 127 124.264829005905 0.999318183614332001 124.349998 20.452496 13 40.6386743456643984 6.40326618581991003 6.34655400000000025 21.3290390000000016 14 165.182523476949996 8.42690131070506965 19.6018100000000004 19.2170099999999984 1.65631090000000003 0 2.11202809999999985 0.87654304999999999 1.2354851 \N \N 0 \N \N \N NOT_AVAILABLE 151.493806013458993 -63.3186473346124004 22.213552503895599 -12.7885022854284003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351384566376704 2481351384566376704 1266049638 2015.5 25.3088198350042006 0.62662759561374104 -3.3060979244473101 0.402498563745221027 1.45513621038115004 0.805138605390263051 1.8073113999999999 40.3856416783130996 0.823999538352683025 -9.85303459215496957 0.761215959064479031 -0.281859069999999989 0.770741459999999989 0.0631087649999999972 -0.0952768999999999977 -0.457959830000000012 0.0487188730000000028 0.272759799999999997 -0.0405974350000000012 -0.142685620000000013 0.233446270000000011 129 0 126 3 2.24024499999999982 158.503006 1.25059853181714997 1.97442618759678989 31 false 0.118568010000000001 1.74483171636953993 0.117842030744155002 -0.0291035450000000015 15 9 0.836928099999999953 0 15 false 126 303.665989412604006 1.62669174784344994 186.677002 19.4823759999999986 10 295.044915559614026 10.9428749358103996 26.9622859999999989 19.1766679999999994 11 122.381123703800995 8.37467079833723993 14.6132460000000002 19.5426329999999986 1.37462229999999996 0 -0.365964899999999982 -0.305707930000000017 -0.0602569579999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.626243358374012 -63.3690344885266015 22.2174162628134013 -12.8663157626604008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926116864 2481351418926116864 807396963 2015.5 25.3172112415761994 0.146475020458679994 -3.29870241194072999 0.113690940774179003 2.12928899819441986 0.182223492347106997 11.685041 -5.87815743685743985 0.273095822393189025 -5.07920670402889041 0.216339381143500986 0.0931092300000000012 0.523429999999999951 0.0292665769999999985 0.0897681639999999975 -0.232056989999999991 0.167426099999999994 0.289427849999999987 -0.113711729999999997 -0.0485853779999999985 0.288611400000000018 166 0 164 2 1.4457097000000001 185.459 0.340842596476128024 1.18237054680095999 31 true 1.01950659999999993 1.30053141381095005 0.0354918289434318981 0.0460242500000000027 19 10 0.256672999999999984 0 19 false 161 1278.72959070369006 1.89247433199130999 675.692017 17.9214200000000012 16 281.198511474943984 7.16939062920801007 39.222095000000003 19.2288549999999994 16 1551.56156840985 9.0404513212993205 171.624339999999989 16.7849980000000016 1.4332663000000001 0 2.44385720000000006 1.30743600000000004 1.13642120000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.636068959937006 -63.3587645669810016 22.2282015497739991 -12.8625316630035993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926118912 2481351418926118912 468726780 2015.5 25.3038178223834009 0.424704560253747976 -3.29308721924833003 0.370283024196472021 0.609867359605980042 0.55257426284133504 1.10368400000000011 0.541853721979518976 0.821897423562936047 -2.0645597083576801 0.690712408300213965 0.142858089999999993 0.476646479999999984 0.0935220900000000022 0.0944993050000000057 -0.259384039999999982 0.150321449999999995 0.326748800000000006 -0.130997780000000008 -0.0335217640000000025 0.304314970000000018 167 0 166 1 1.36364599999999991 185.994995 0.413574139508025018 0.156117071912943994 31 false 0.107104480000000002 1.32372842896779996 0.110232398567746998 0.0449044440000000017 19 10 0.782982350000000049 0 19 false 166 233.463771880714006 1.40585804447268004 166.065002 19.7678170000000009 12 74.9505532217394972 12.7361430666766005 5.88487049999999989 20.6644520000000007 16 301.778324014120983 14.9805055301139003 20.1447350000000007 18.5626999999999995 1.61365029999999998 0 2.1017513000000001 0.896635060000000039 1.20511630000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.603758309571987 -63.3594115739605002 22.2175777884124983 -12.8523805233354995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926118400 2481351418926118400 347642813 2015.5 25.3179311758703989 0.15953886750523899 -3.29468647597821018 0.123420821024156996 0.100641135165079998 0.199937368490065992 0.503363299999999958 7.20129369822195997 0.295460124664047974 -8.67608529751863955 0.236334193500266992 0.0739549899999999982 0.530850469999999963 0.034794356999999998 0.0781743000000000021 -0.250367100000000009 0.160521489999999989 0.279180229999999974 -0.116971290000000006 -0.0543638200000000002 0.291019299999999981 167 0 166 1 3.28598500000000016 226.617996 0.363220819825398 1.16351308254016006 31 false 0.852655300000000005 1.62154038705359005 0.0392989082842659029 0.04491179 19 10 0.277934369999999986 0 19 false 163 1150.21436016561006 2.13244931485373979 539.385986 18.0364189999999986 17 568.113448022287002 6.48465767215473043 87.6088600000000071 18.4652999999999992 16 792.432408781940012 12.2595560521245002 64.6379400000000004 17.5145149999999994 1.18286289999999994 0 0.950784700000000038 0.428880700000000004 0.521904000000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.633683198607997 -63.3548275955319014 22.2304060961585002 -12.8590639418986008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351418926120192 2481351418926120192 1477822859 2015.5 25.3113160455644 0.354093055757910002 -3.28862119763719996 0.289202257748077007 1.14758151945659992 0.45030317145884402 2.54846430000000002 17.8351762613904015 0.687244366186606004 -6.10825470765797984 0.542737422706065953 0.104848150000000001 0.477596000000000021 0.0904746059999999991 0.0884944299999999989 -0.261022570000000009 0.15753410000000001 0.313183839999999991 -0.141783760000000009 -0.0428991020000000015 0.283838480000000004 168 0 165 3 2.98073170000000021 218.641006 1.10782857493318998 2.24697094677269016 31 false 0.161282000000000009 1.42483649836510007 0.0884183994356460973 0.0409957729999999992 19 10 0.641399799999999964 0 19 false 166 365.79812500804502 1.45559070396770007 251.306 19.2802620000000005 15 130.836878095684 11.0337283951394003 11.8579030000000003 20.0595630000000007 15 345.799418734514973 11.4908656643140006 30.0934179999999998 18.4148600000000009 1.3030037000000001 0 1.64470289999999997 0.779300699999999957 0.86540220000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.614586289890013 -63.352172466393597 22.2264041984876002 -12.8509904768592005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351423221747328 2481351423221747328 710586146 2015.5 25.3120367693774995 0.104150859291458994 -3.28638198883956978 0.0803975583737226024 1.12047355901433998 0.129631888782710009 8.6435019999999998 7.98849452460041043 0.195418113480010008 -13.2691757019155006 0.152156908826491993 0.0764980400000000033 0.514287799999999962 0.0397195700000000027 0.0900586699999999934 -0.252587300000000015 0.172463630000000007 0.289046020000000015 -0.121765583999999996 -0.0513914800000000033 0.287095129999999976 168 0 167 1 1.05751130000000004 181.072006 0.0930887236905074966 0.152700824390569007 31 false 2.05650000000000022 1.4692441719106899 0.0254919927063009984 0.0382679439999999982 19 10 0.184665799999999991 0 19 false 165 2058.2495154019598 2.45474401324187008 838.478027 17.4046209999999988 18 712.472005168644955 11.0612589248998994 64.4114759999999933 18.2194700000000012 19 1960.96089705852 12.1947079463965 160.804239999999993 16.5307479999999991 1.29888669999999995 0 1.68872069999999996 0.814847949999999988 0.873872760000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.613900243245013 -63.3498407060340014 22.2279372810309006 -12.8491745194196998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351350206640768 2481351350206640768 1112528210 2015.5 25.3261520539582001 0.405736488529351014 -3.29755580403816007 0.334662431958660023 0.714924074808036991 0.50156325635511001 1.42539170000000004 12.9545610196999998 0.819486822697591988 -4.61525383193835026 0.61656602647949299 0.129986810000000008 0.440986629999999991 -0.0172933379999999984 0.111549570000000001 -0.235670209999999991 0.159949989999999986 0.352312059999999982 -0.0866107799999999983 -0.0339532869999999987 0.252193539999999994 158 0 158 0 2.34980540000000016 197.104996 0.864495626611741952 0.869063164001222965 31 false 0.124818349999999995 1.2964761962720599 0.101277442096564002 0.0113637470000000004 18 10 0.749847400000000053 0 18 false 158 279.931873015572023 1.34171982294811998 208.636993 19.5707340000000016 16 69.9897358743394022 4.62625775335980993 15.1288009999999993 20.7388019999999997 16 328.482578010354985 12.9219194125030992 25.4205719999999999 18.470638000000001 1.42346180000000011 0 2.26816370000000012 1.16806790000000005 1.10009570000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.652960637746986 -63.3539056594982029 22.2371456545841006 -12.8647579328674002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357294441505536 2481357294441505536 1071442213 2015.5 25.3275894264080002 2.50600293240992 -3.28649502407992999 2.20182854880671997 \N \N \N \N \N \N \N -0.498897819999999992 \N \N \N \N \N \N \N \N \N 78 0 75 3 0.0631347099999999967 70.0803986 0 0 3 false 0.0186852350000000014 \N \N 0.0220412330000000004 10 7 7.51280160000000041 0 10 false 80 86.8406435214905059 1.89758271775527998 45.7638016 20.8415579999999991 7 63.3508256929863975 16.3137104694366997 3.88328739999999994 20.8470079999999989 7 35.6939088787588972 7.98715649027232022 4.46891299999999969 20.880434000000001 1.14053429999999989 0 -0.033426285 0.00544929499999999983 -0.0388755799999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.645289402622012 -63.3432962541923033 22.2426979164449996 -12.8550060328346003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356985203729280 2481356985203729280 309094 2015.5 25.3674791081909987 0.0528506310664709975 -3.31030133587956987 0.0365500163120271032 1.7401037445863099 0.0608024568633626014 28.6189700000000009 10.7557455491203999 0.086033536900962701 4.29734421792868027 0.0692519948477375996 0.181526660000000006 0.630122599999999977 -0.00651777629999999997 0.0992968159999999961 0.0290482900000000009 0.0343958619999999993 0.0588994850000000014 0.0152481460000000006 0.118439069999999994 0.197446910000000003 158 0 156 2 2.39444999999999997 195.757004 0.144120466132880987 1.58749063652880995 31 false 10.7714400000000001 1.47778590591956993 0.0128995149362424004 0.0450197979999999998 18 10 0.083249180000000006 0 18 false 154 11475.6079797546008 7.88429859564951041 1455.5 15.538926 17 4656.83076705572967 18.9626194330965987 245.579509999999999 16.1811620000000005 16 9861.84681340310999 20.0417546558471003 492.065029999999979 14.7770240000000008 1.26517719999999989 0 1.4041376000000001 0.642235760000000044 0.761901860000000042 \N \N 0 \N \N \N NOT_AVAILABLE 151.748242432608009 -63.3477169395872011 22.2716645746798996 -12.8918196549689998 100001 4759.58008 4472.74023 4944 0.178000003 0.0759999976 0.460099995 0.0856999978 0.0373999998 0.223100007 200111 0.616386800000000012 0.571259799999999984 0.697980399999999945 0.17566119999999999 0.162511450000000002 0.18881096 +1635721458409799680 Gaia DR2 2481357058218839808 2481357058218839808 87545861 2015.5 25.3490349273691002 0.0419966491693207974 -3.29326306838968996 0.0307439739411828998 0.566819182749146 0.0503803706761788012 11.2507940000000008 11.7454402945864 0.0725654059085355935 -8.81188263614772005 0.0660654008895635025 0.124285619999999999 0.607075400000000043 -0.019475718999999999 0.0406040179999999987 -0.131477559999999993 0.12714607 0.103680839999999996 -0.0986814899999999967 -0.07832596 0.356052550000000023 148 0 148 0 1.357097 166.460999 0.0313125009029784976 0.106909828133375004 31 true 19.2976929999999989 1.63044949895136004 0.0110726281655041999 0.0786830040000000008 17 10 0.0782971999999999974 0 17 false 144 15991.4792722549992 7.3897436073049203 2164.01001 15.1786440000000002 16 9170.12555273882936 45.1035379458638985 203.31277 15.4454499999999992 16 10281.6794820895993 20.0364257799076988 513.149350000000027 14.7317599999999995 1.21638559999999996 0 0.713689800000000041 0.266805650000000005 0.446884159999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.694868806967008 -63.3402342726838015 22.2605513350420985 -12.8691923474662993 100001 6169.39014 5870.56006 6786.66992 0.0502999984 0.00800000038 0.236399993 0.0270000007 0.00389999989 0.114699997 200111 1.21736099999999992 1.00598480000000001 1.34445440000000005 1.93420999999999998 1.55685969999999996 2.31156020000000018 +1635721458409799680 Gaia DR2 2481357053923211136 2481357053923211136 1680524337 2015.5 25.3582686185641997 0.820265513236152044 -3.29293958933343012 0.770234365994643011 0.181005878770175987 1.05559520961222009 0.171472819999999998 0.40493282532872299 1.94181244601653002 -9.87137506472529935 2.13729412074032021 0.332910060000000008 0.374310079999999989 0.127180409999999994 -0.0756544900000000048 0.0144776790000000002 -0.0460822320000000007 -0.122492400000000001 -0.368839499999999987 -0.222295500000000007 0.524291159999999978 101 0 101 0 0.369128169999999978 100.516998 0.180379886003398993 0.0113531512463826006 31 false 0.042386550000000002 1.6493809138819 0.236822663571528008 0.126357529999999996 12 8 2.22887499999999994 0 12 false 102 125.227594023335996 1.3606040343113599 92.0382004 20.444115 8 82.1596892866920996 11.7050276760820005 7.01917930000000023 20.5647410000000015 8 74.6110171404533986 13.0488423064785 5.71782639999999986 20.0799120000000002 1.25188619999999995 0 0.484828949999999981 0.120626449999999996 0.364202499999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.713115847761998 -63.3359866044531969 22.2694634136413008 -12.8722907611268997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356229291477888 2481356229291477888 326155715 2015.5 25.3768430392303017 1.0474608299864101 -3.30697095888324011 1.49693460204095996 \N \N \N \N \N \N \N 0.54487216000000005 \N \N \N \N \N \N \N \N \N 99 0 98 1 1.13656779999999991 108.637001 1.14720333689838005 0.260490922884848985 3 false 0.0285384259999999987 \N \N 0.279310100000000006 12 7 6.58531569999999977 0 12 false 97 96.859006964611396 1.12813325668041009 85.8578033 20.7230150000000002 6 91.9107199954347038 33.2443695988008017 2.76470040000000017 20.442972000000001 7 105.749016928169993 10.1211872656301995 10.4482820000000007 19.7012299999999989 2.04069540000000016 0 0.741743099999999989 -0.280042650000000004 1.02178569999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.763866524666014 -63.3406919533400981 22.2818386669738011 -12.8921706660369999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357088282950272 2481357088282950272 761388249 2015.5 25.3834172256458004 0.465632357893093984 -3.29128874226047996 0.355902033596101008 -0.470601945194214999 0.567407011995942012 -0.829390399999999972 0.0412686747688326971 0.876573326160278055 -2.30555913536504997 0.653778891278244956 0.122863420000000001 0.501159369999999993 0.0532033400000000017 0.0790046749999999964 -0.102297029999999997 -0.0154708510000000007 0.176271260000000013 -0.0200058429999999988 0.156867430000000002 0.135063559999999999 164 0 164 0 2.62745430000000013 209.804001 1.11403593625228003 1.19549748606829009 31 false 0.0928082540000000067 1.66651272819253005 0.121936806805232001 0.0187011360000000001 19 10 0.777577940000000023 0 19 false 164 240.790393593971999 1.29017928742487009 186.632996 19.7342680000000001 10 138.963257654685009 3.53527112344674999 39.3076670000000021 19.9941390000000006 13 153.719186229500991 17.4248543344710001 8.82183500000000009 19.2951000000000015 1.21550709999999995 0 0.699039459999999946 0.259870529999999988 0.439168930000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.762048959157994 -63.3237112804564006 22.2940281925402992 -12.8800127868010001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369079831767040 2481369079831767040 721598769 2015.5 25.3250483448658983 0.939284569512448986 -3.27253036284368015 1.11802322711359992 0.649789480766247984 1.17159721592550992 0.554618500000000014 1.70838341668720006 2.58323806625862007 -2.79507749291248997 3.71378902203549011 0.419822450000000014 0.299056829999999996 0.0621937659999999976 0.0594270500000000021 -0.202224249999999994 0.262602659999999988 0.367066649999999994 -0.339470979999999978 -0.313919159999999975 0.688704899999999953 99 0 98 1 0.559549450000000004 100.139999 0 1.04199042298598005e-15 31 false 0.0301222519999999987 1.71457713720561999 0.322200158792424973 0.114242979999999994 12 8 3.72455720000000001 0 12 false 99 105.399583460651996 1.24981213295515992 84.3322983 20.6312679999999986 9 81.8101226118048999 11.2169100922801004 7.29346300000000003 20.5693699999999993 10 90.0947699727041993 14.2257134666915004 6.33323400000000003 19.8751719999999992 1.63098260000000006 0 0.694198599999999999 -0.061897278 0.756095900000000043 \N \N 0 \N \N \N NOT_AVAILABLE 151.626856164119005 -63.3317624733681015 22.2455613572282012 -12.8410900757322004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357328803032960 2481357328803032960 922676738 2015.5 25.3377144077572005 3.1719750829658202 -3.2814468246420101 1.94455304162084008 \N \N \N \N \N \N \N -0.0626200960000000001 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.69931520000000003 59.9267006 3.93631423980732986 1.52384425338282004 3 false 0.0151066310000000006 \N \N 0.0380401130000000004 6 6 5.37137300000000018 0 6 false 49 83.1413176397293938 2.05768446754633993 40.4053001 20.8888229999999986 3 54.5904937207151022 1.82083368315817995 29.9810429999999997 21.0085960000000007 4 154.380287722079004 38.426214440396798 4.01757700000000018 19.2904400000000003 2.51344080000000014 1 1.71815680000000004 0.119773864999999993 1.59838300000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.660825616349001 -63.3344044550697021 22.2542448524367984 -12.8540412644903004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369148551282176 2481369148551282176 243907656 2015.5 25.3180033479623994 1.5514111320536299 -3.25329775451516978 2.29092758418460019 \N \N \N \N \N \N \N -0.451798379999999999 \N \N \N \N \N \N \N \N \N 90 0 90 0 0.67764930000000001 93.4332962 0 0 3 false 0.034223530000000002 \N \N 0.171740799999999999 11 7 6.24922199999999961 0 11 false 89 111.972242540742997 1.37774829629944007 81.2718964 20.5655900000000003 7 55.3837872357112033 12.6210670014380995 4.38820169999999976 20.9929309999999987 10 137.333691702111992 7.00549496440098984 19.6037099999999995 19.4174770000000017 1.7211183000000001 0 1.5754547000000001 0.427341460000000006 1.14811329999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.594367965803002 -63.317387534529999 22.2461300564180995 -12.8206191953028998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369359005174400 2481369359005174400 1476193716 2015.5 25.3041790507002986 0.108335044392230004 -3.24618245457999022 0.0770799383225023033 2.37983440299354987 0.126202862969876012 18.857213999999999 41.4786934012561019 0.226276054990138004 -20.5236969032314995 0.147140322106978999 0.0170133769999999997 0.408275280000000018 0.189905479999999988 0.0337684749999999992 -0.205658499999999994 0.0896113139999999975 0.337391610000000008 -0.210194290000000006 -0.0321378500000000025 0.12909791000000001 146 0 146 0 6.07615399999999983 268.60199 0.404185676874506017 4.49443581007443971 31 true 2.27840329999999991 1.40940880636766996 0.0256587159754836994 -0.0332425699999999991 17 10 0.205593799999999993 0 17 false 143 3435.1162456952602 3.52683781234153004 973.992981 16.8485130000000005 16 977.611064065382038 9.0839004456716701 107.620186000000004 17.8759729999999983 16 3707.98942075109017 12.7012285813508008 291.939419999999984 15.8390740000000001 1.36402960000000006 0 2.03689859999999978 1.0274601000000001 1.00943849999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.559808557595005 -63.3168527127149972 22.2356640452691998 -12.8089155265894004 100001 3692 3651 4226.68994 0.105700001 0.0272000004 0.206400007 0.0670000017 0.0133999996 0.143999994 200111 0.542309900000000011 0.413781549999999998 0.554558340000000038 0.0492307540000000016 0.0439112929999999971 0.0545502159999999986 +1635721458409799680 Gaia DR2 2481369354709560192 2481369354709560192 544813112 2015.5 25.3078133609199014 0.185644404814697989 -3.24503101665173022 0.146044806389001997 -0.134954674912238004 0.229121808689784989 -0.589008450000000017 0.520696300890616026 0.364559290201981023 0.0864293003503464052 0.274417459218527005 0.101652383999999998 0.471214560000000005 0.0922694000000000014 0.0920299200000000012 -0.228602470000000002 0.166400400000000004 0.340724050000000001 -0.156983399999999995 -0.051217116 0.25662094000000002 166 0 164 2 1.961781 195.845001 0.370860389002928004 0.86950466053990505 31 true 0.612851139999999961 1.59876186052224001 0.0473447571951085 0.0331246669999999965 19 10 0.336931170000000002 3 19 false 164 884.766813782562963 3.49189739743574012 253.376999 18.3212930000000007 19 551.719086497246963 12.4992384136691008 44.1402169999999998 18.4970929999999996 17 568.781274085809969 10.5715090290372 53.8032230000000027 17.8745569999999994 1.26643569999999994 0 0.622535700000000025 0.17580032000000001 0.446735380000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.566019083930001 -63.3142617367051983 22.2395583167864004 -12.8091833683907996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369285991965312 2481369285991965312 922707440 2015.5 25.3277487125485017 2.28940975012254011 -3.23724185662350994 1.42571183462932005 2.42523122164931015 2.76688206719176 0.876521349999999977 12.2239733717714003 3.46228424814029001 -15.9163158936318005 4.03619370869806993 -0.359022019999999997 0.723133860000000017 0.126946909999999996 -0.313816340000000027 -0.506556329999999999 -0.180737170000000003 -0.0327543949999999986 -0.0496715000000000004 -0.236206890000000003 0.274360700000000013 76 0 76 0 1.46875040000000001 89.2012024 2.93895232823704999 1.06058536693261996 31 false 0.0155186769999999998 1.10110645587165989 0.466179329254248986 -0.0938404399999999972 10 8 3.8770045999999998 0 10 false 79 81.5076035822277021 1.46450347694900995 55.6554985 20.9103700000000003 4 43.2170179402938004 20.3331105447543017 2.12545040000000007 21.2622500000000016 7 151.470159314824997 43.2273116255041998 3.50403829999999994 19.3111020000000018 2.38857700000000017 1 1.95114900000000002 0.351881029999999984 1.59926799999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.598664426654011 -63.2987130880663997 22.2614768820136995 -12.8092824589285001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369285990085504 2481369285990085504 1198000751 2015.5 25.3370679843944018 0.235798097386124006 -3.24224914629091998 0.189614472648714005 1.0264765858292999 0.29339490691032899 3.49861760000000022 0.0679997655806952039 0.459740271212374985 -15.2447147546696993 0.347626036761918999 0.107472940000000003 0.468069599999999975 0.0829963600000000051 0.102457119999999999 -0.228770659999999987 0.15401664000000001 0.340662299999999973 -0.131268460000000003 -0.0212786740000000009 0.243512809999999996 163 0 163 0 1.11907500000000004 178.016998 0.371321669907250018 0.448225512627795974 31 false 0.372437830000000025 1.44991194983038008 0.0596687801041754992 0.0355010960000000028 19 10 0.422325459999999986 0 19 false 163 575.954821071935953 1.45526887312810005 395.772003 18.7873950000000001 16 135.901142697089995 7.86602157817646042 17.2769849999999998 20.0183299999999988 16 691.085243295931946 12.1078369943486006 57.0775149999999982 17.6630919999999989 1.43585289999999999 0 2.35523799999999994 1.23093410000000003 1.12430380000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.622148226044999 -63.2992588213136003 22.2684532151390009 -12.8173675645294001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369290285697408 2481369290285697408 91207533 2015.5 25.3420098792471009 0.0376725097213825022 -3.23738684834980006 0.0271855229152727987 0.635980800025414017 0.0451785737173705029 14.0770444999999995 5.16061377979437008 0.068683936164019202 -3.93854245788398005 0.0578112127120340019 0.0557018300000000008 0.555760150000000008 -0.0396267250000000015 0.0424027930000000011 -0.195119130000000002 0.13303007 0.122054994 -0.107087760000000004 -0.0808108700000000069 0.306434480000000009 164 0 162 2 -0.114470619999999995 154.320007 0 0 31 true 21.827138999999999 1.59375680417851995 0.00984471495173440923 0.0319872870000000031 19 10 0.0723851999999999968 0 19 false 163 17985.3932253788007 7.93763607160208018 2265.84009 15.0510649999999995 17 9888.33060579768971 20.3018316451180993 487.065949999999987 15.3635809999999999 16 11763.3584926460007 19.6650439516137006 598.186199999999985 14.5855910000000009 1.2038485000000001 0 0.777989400000000053 0.312515260000000017 0.465474129999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.627440659495988 -63.2927526816677997 22.2749952865840015 -12.8146669247113998 100001 5897.33008 5848.33008 5951 \N \N \N \N \N \N 200111 1.2652987 1.24258050000000009 1.2865899999999999 1.74463089999999998 1.46797069999999996 2.02129130000000012 +1635721458409799680 Gaia DR2 2481357397522561280 2481357397522561280 652276018 2015.5 25.3642492260986998 2.15538816325656013 -3.26264810331614008 1.43088633248992991 0.046696145851382799 2.77365790454875993 0.0168355820000000017 -6.67378664987090975 2.37713929043253014 -16.1388244661153983 3.53781113846223016 0.0934144100000000033 0.858114959999999982 0.0536426679999999975 -0.162724139999999989 -0.132665460000000013 -0.0245469269999999996 0.0641625900000000055 -0.0467581560000000021 -0.16848072 0.521843970000000046 73 0 72 1 -1.1677287999999999 53.7933006 0 0 31 false 0.0234607070000000008 0.901419772632714 0.402922108737972018 0.198248069999999998 10 8 3.42162500000000014 0 10 false 73 93.4095054232345063 1.51537006994598 61.6413994 20.7623880000000014 5 49.6797751199927973 3.18188166046201015 15.6133319999999998 21.1109389999999983 8 127.885866941016999 12.1921183365637997 10.4892240000000001 19.4948639999999997 1.90093760000000001 0 1.6160755 0.348550799999999994 1.26752470000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.696179175751013 -63.3060634071351984 22.2866118135390003 -12.8463345864876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357122642691200 2481357122642691200 363596110 2015.5 25.3846435514661017 0.512813517355556026 -3.28194460514799013 0.376256492087921002 1.55994743991133 0.60588902997574301 2.57464219999999999 17.4405398067164015 0.958777220258429042 -2.70517028905230994 0.655242963796238032 0.185597120000000004 0.508024930000000041 0.150906160000000011 0.120379559999999997 0.0540435500000000027 -0.0179930199999999985 0.281344949999999983 -0.0850441499999999989 0.220607859999999989 0.058191716999999997 155 0 153 2 3.76590200000000008 221.830994 1.42465062480024995 1.88435167409035009 31 false 0.0894461899999999949 1.51975688613360993 0.127787790327055006 -0.0251734420000000007 18 10 0.847520399999999952 0 18 false 152 254.590370191228004 1.40388319732061007 181.347 19.6737609999999989 13 65.3862557785437986 6.60156190500438989 9.90466400000000036 20.8126719999999992 15 364.892313404313995 12.1111530438846007 30.1286179999999995 18.3565080000000016 1.69008179999999997 0 2.45616339999999989 1.13891030000000004 1.31725310000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.755566096183998 -63.3147481158471024 22.2987291303170991 -12.8717780803584994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357126938342272 2481357126938342272 960289585 2015.5 25.3870824118362997 0.64868319653133899 -3.27786232481262996 0.602403451419946001 -0.140005534506126988 0.766857027808837022 -0.18257058000000001 -0.0550618189774726985 1.28126537869202006 -7.27745395794821981 1.46962161555680004 0.279490740000000015 0.471700430000000004 0.00342167200000000017 -0.184370189999999989 -0.0198098810000000014 -0.25422218000000002 -0.367349119999999973 -0.0743171499999999985 0.0917338899999999985 0.343719149999999973 139 0 139 0 0.524008750000000023 142.067993 0 0 31 false 0.0518325379999999974 1.31228291835742006 0.198700555680332014 0.0473462160000000035 16 9 1.43940000000000001 0 16 false 139 144.282049365738999 1.10874751598080001 130.130997 20.2903349999999989 13 57.1889684679396026 9.88352454874918962 5.78629299999999969 20.9581069999999983 14 166.059646573612014 9.22022008259422954 18.0103779999999993 19.2112599999999993 1.54730689999999993 0 1.74684719999999993 0.667772299999999985 1.07907489999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.756554682082992 -63.3100156274349999 22.3025944823442011 -12.8688808509942998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357191362170368 2481357191362170368 649255692 2015.5 25.3788545079550012 0.278742592240909026 -3.27209859523994995 0.248322904708627001 1.05696622939523999 0.339336401846020985 3.11480360000000012 0.97607148488415596 0.533164804930030045 -17.3656036490118986 0.436561326412028994 0.240950109999999995 0.473512829999999996 0.119194800000000004 0.202226299999999998 -0.17970158 0.26900634000000001 0.471116780000000013 -0.137245220000000001 -0.0400817950000000034 0.342559999999999976 143 0 140 3 2.34399459999999982 176.496002 0.688828441943317049 1.39754314835877991 31 false 0.314064830000000017 1.36379029954691999 0.0713154204886197046 0.0909896899999999981 17 10 0.520895899999999967 0 17 false 140 549.202899366805013 1.88434219381936008 291.455994 18.8390330000000006 14 147.092939943675987 9.16689488188850987 16.0461029999999987 19.9324100000000008 13 626.453686028321044 7.30368047197300019 85.7723299999999966 17.7696970000000007 1.40848970000000007 0 2.16271199999999997 1.09337620000000002 1.06933590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734527680176001 -63.3083402644642987 22.296941288208501 -12.8604949276602003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369221566221056 2481369221566221056 477790164 2015.5 25.3440020262003998 0.0386684089400984032 -3.24995943127180986 0.0280843763473474992 2.02125794737815978 0.0470203955040297966 42.9868349999999992 3.26505383649034986 0.0655395643598530031 7.16215197991089969 0.0637758397127942966 0.0942032500000000023 0.622087999999999974 0.00424379060000000009 -0.00496562850000000031 -0.133305029999999991 0.0685993599999999981 0.00817920500000000016 -0.107354920000000006 -0.0965806599999999987 0.359680559999999983 172 172 172 0 6.57712400000000041 317.322998 0 0 31 true 282.686649999999986 1.66758258389797009 0.0100838616785576003 0.0599345400000000014 20 10 0.0462568329999999972 0 20 false 168 210991.900680777995 56.2411674624943032 3751.56006 12.3777010000000001 18 123761.383262995994 147.659929743323005 838.151399999999967 12.6199255000000008 18 129046.899137101005 216.18889057515301 596.917360000000031 11.9850510000000003 1.19818950000000002 0 0.634874339999999981 0.242224699999999987 0.392649650000000017 3.53088530517725019 1.24879622084569997 6 5500 3.5 -1.5 NOT_AVAILABLE 151.64341955383 -63.3032632337588979 22.2721375258977012 -12.8270871152236001 100001 6865.33008 6505 7066.5 0.158000007 0.0170000009 0.275999993 0.0737000033 0.00860000029 0.144999996 200111 0.999821199999999966 0.943706330000000038 1.11365580000000008 2.000718 1.93571709999999997 2.06571909999999992 +1635721458409799680 Gaia DR2 2481369221566220800 2481369221566220800 1256496049 2015.5 25.3438467723248984 0.0397692089919993025 -3.24898053563999989 0.028875110703314999 2.10435982877153993 0.0481195590099514972 43.7319030000000026 0.96881516781840904 0.0734987185993725006 5.96430425725313995 0.0616167837083409983 0.04381467 0.544144150000000049 -0.0222949240000000007 0.0375081079999999983 -0.21787469000000001 0.132927240000000002 0.128983020000000004 -0.121687409999999996 -0.0891465250000000042 0.310031620000000008 164 0 163 1 -0.431072059999999979 149.815994 0 0 31 true 18.3505339999999997 1.51396802126475993 0.0104010729996222 0.034452143999999997 19 10 0.0767332599999999976 0 19 false 162 14938.4753468648996 8.21112646865037021 1819.30005 15.2525999999999993 9 6622.19468644017979 87.4737342184382953 75.7049499999999966 15.798883 8 12707.9609546538995 60.5708364801245978 209.803300000000007 14.5017300000000002 1.29398450000000009 0 1.29715350000000007 0.546283700000000039 0.750869750000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.642174735687007 -63.3024450127687999 22.2723599025594012 -12.8261200326069993 100001 4926.5 4763.62012 5054.43994 0.110200003 0.0390000008 0.192100003 0.0537 0.0168999992 0.111599997 200111 0.530896900000000005 0.504360999999999948 0.567822339999999981 0.149578450000000002 0.142018929999999988 0.15713798000000001 +1635721458409799680 Gaia DR2 2481357844197207168 2481357844197207168 788937753 2015.5 25.3720588981751014 0.164030917235276991 -3.24500014949349991 0.129671939652080986 0.188449969018349012 0.202297653844910996 0.931548000000000043 0.127702149821874 0.290404953304802982 -6.44618788406925969 0.229572572527139002 0.236387390000000003 0.559472399999999981 0.079164490000000004 0.164683269999999993 -0.0698947300000000021 0.171550900000000006 0.361093669999999978 -0.0945444299999999987 0.0389707700000000018 0.274777680000000024 145 0 145 0 1.32046069999999993 162.541 0 0 31 false 0.97343546000000003 1.61961889188753005 0.038704359120621 0.0958491640000000006 17 9 0.27298277999999998 0 17 false 143 1176.49698738028997 2.9983880006087702 392.376007 18.011889 15 685.749177595793981 9.05672654697264967 75.7171100000000052 18.2609749999999984 15 730.70083070543501 10.2708627093050993 71.1430799999999977 17.6025710000000011 1.20395549999999996 0 0.658403399999999972 0.249086379999999996 0.409317019999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.695006862631004 -63.2867769550391017 22.3007181929916989 -12.8328038268727003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356091850531328 2481356091850531328 1326247936 2015.5 25.4174122235030993 0.678384634747892012 -3.31009920620155018 0.627347901404367025 -1.36327788235728997 0.763887067655776963 -1.78465889999999994 9.70921221880047014 1.44801038585698993 -4.40753995648790031 1.55177910522042994 0.190382169999999989 0.370922030000000014 -0.138754640000000012 -0.0735675539999999933 -0.0562840630000000022 -0.117686436000000005 -0.32343280000000002 0.0211049279999999985 0.0665696600000000027 0.287118319999999982 125 0 125 0 1.8094462 149.498001 0.854483532460660999 0.355210431273411009 31 false 0.0454266899999999987 1.79428171217621002 0.230109429822897005 -0.0703017340000000046 15 9 1.51303019999999999 0 15 false 124 148.612240280521007 1.2900416504382799 115.199997 20.2582300000000011 13 83.8861682339767043 8.98857617081887028 9.33253099999999947 20.5421620000000011 13 105.062048609265005 10.2325012475098998 10.2674850000000006 19.7083049999999993 1.27141759999999993 0 0.833856599999999948 0.283931729999999993 0.549924850000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.848321687626992 -63.3260803164871007 22.3192797251400989 -12.9100090985776994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356366730467840 2481356366730467840 440030844 2015.5 25.3990818479282012 2.03210729045883021 -3.29241461863208018 3.29479278435470979 \N \N \N \N \N \N \N -0.406324300000000027 \N \N \N \N \N \N \N \N \N 86 0 84 2 1.42867910000000009 97.5838013 3.02097695063724014 1.20623291800132004 3 false 0.0166327450000000009 \N \N 0.0781453200000000042 10 7 9.2709255000000006 0 10 false 86 86.9327552814210947 1.61053438140044003 53.9776001 20.8404060000000015 8 43.0101915111249014 8.43496254258814915 5.09903759999999995 21.2674599999999998 9 138.11871110626501 7.24718860145901989 19.0582470000000015 19.411290000000001 2.08355200000000007 0 1.85617070000000006 0.427053450000000001 1.42911720000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.794572034453012 -63.3180015275101979 22.3085152809014993 -12.8868243273937004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357126937937792 2481357126937937792 1535286590 2015.5 25.3919912230118996 0.992580317584833005 -3.28365659870920013 0.926202404500108045 2.60107566924597 1.13764416694805992 2.28636999999999979 5.93145210981854998 2.00621557343471979 -0.577015700400721032 2.10640924492608983 0.31133791999999999 0.433851199999999992 0.100234694999999999 -0.128118960000000004 0.0582559370000000007 -0.193472709999999992 -0.236527380000000009 -0.130102489999999987 0.111586779999999997 0.284482960000000007 129 0 129 0 2.16548229999999986 160.531006 2.42785734770097994 1.4167368433804699 31 false 0.0230401720000000011 1.16534860664637008 0.317301805830371986 -0.0167545290000000006 15 9 2.06434369999999978 0 15 false 129 103.518900847238001 1.17279734835192007 88.2667007 20.650815999999999 7 29.5854925139843985 2.82326098520425983 10.4791919999999994 21.6736900000000006 15 157.155703618795997 6.51162434102618004 24.134640000000001 19.271094999999999 1.80393340000000002 0 2.40259549999999988 1.02287480000000008 1.37972070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.771952480968991 -63.3131403045900001 22.3050766233914004 -12.8760736165545993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356748981194112 2481356748981194112 605431252 2015.5 25.4171734400662004 2.36508371340224022 -3.28539965331647021 1.56418169440115995 \N \N \N \N \N \N \N -0.0971253740000000004 \N \N \N \N \N \N \N \N \N 139 0 138 1 78.3938140000000061 9873.08008 13.5534951011744003 374.106788455267008 3 false 0.00512663300000000023 \N \N -0.0551632400000000023 19 10 3.86905900000000003 0 19 false 166 431.925151347626979 4.84681375522373958 89.115303 19.0998440000000009 18 606.400371688282007 13.4201980628709006 45.1856500000000025 18.3944900000000011 18 1283.70000554077001 8.38628180013673941 153.071409999999986 16.9907600000000016 4.37599040000000006 0 1.40372849999999993 -0.705354700000000001 2.10908320000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.824143970844005 -63.3038940211795023 22.3283916699522003 -12.8869605760108996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356675966091520 2481356675966091520 147153236 2015.5 25.4224788253307992 0.378583746127481025 -3.28505113801843018 0.298983954922704021 0.760406578592447979 0.458770757047536004 1.65748699999999993 4.05401659728874009 0.750740130292302021 -3.73424015667055986 0.535665340381231037 0.0759922499999999973 0.428808399999999978 0.123517920000000003 0.0770893500000000009 -0.183341850000000001 0.0244464869999999994 0.263553859999999973 -0.0725276499999999991 0.12237692 0.118914740000000005 176 0 171 5 1.48928140000000009 193.901001 0.540802479389569046 0.370943057827296974 31 false 0.130464090000000005 1.32918161216913999 0.100569972749570996 -0.0218171049999999998 20 10 0.666074500000000014 0 20 false 172 281.364945413244982 1.35873626430808003 207.078003 19.5651909999999987 15 100.033038322639001 10.1117827680045007 9.89272000000000062 20.3510300000000015 12 289.702520750137012 12.1643382455939992 23.8157229999999984 18.6070379999999993 1.3851602999999999 0 1.74399189999999993 0.785839100000000013 0.958152800000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.834449065535011 -63.3012977629165974 22.3335744981080992 -12.8885886860207997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356401088176384 2481356401088176384 466901692 2015.5 25.4397802098171013 0.253290155834877018 -3.31054929960190991 0.196453981302638997 1.93748256337578995 0.298520244837444992 6.4902886999999998 24.0074208559381006 0.505570846804148988 -0.135669802820956004 0.363549232675816014 0.00842919100000000081 0.452998699999999976 0.0968546940000000051 0.0238944269999999993 -0.164759519999999993 -0.0489564700000000019 0.292699199999999993 -0.0487615900000000005 0.115232475000000001 0.0295262280000000016 168 0 168 0 1.97194699999999989 200.492996 0.0741331127725639027 0.0152235479964852004 31 false 0.303275499999999976 1.36955118226101002 0.065452169994003398 -0.0479379369999999999 19 10 0.445546200000000003 0 19 false 168 482.438755110254988 1.36289494435895997 353.980988 18.9797609999999999 17 135.100016704159003 9.73690476740286037 13.8750479999999996 20.0247500000000009 15 585.987042985721018 11.5240070366152008 50.8492430000000013 17.8421999999999983 1.49467060000000007 0 2.18255039999999978 1.04498859999999993 1.13756180000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.893624755763994 -63.3168536839336014 22.3404068850548008 -12.9186577728630994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356435448084736 2481356435448084736 1134024807 2015.5 25.4549499248239997 0.515117627294011005 -3.29556399891637986 0.408403929306784985 0.891698946297199035 0.642173973018849042 1.38856289999999993 13.1887556781108994 1.01994996625463008 -3.61773794456490982 0.73652900754171402 0.0290215259999999989 0.422974970000000006 0.0931354199999999965 0.0550370960000000006 -0.25875231999999998 -0.0325435619999999981 0.152797189999999999 -0.00731798770000000043 0.170878079999999988 0.124728519999999996 160 0 159 1 2.39094419999999985 199.095001 1.69307371671898998 3.33102960256817981 31 false 0.0738018299999999988 1.21421512810248999 0.135882374181024002 0.00157175999999999995 19 10 0.903314599999999968 0 19 false 159 221.517364342756991 1.24446608700392991 178.001999 19.8248460000000009 14 56.7817925311951015 4.34792504552061043 13.0595149999999993 20.9658659999999983 17 265.648224670862987 8.77195427242114079 30.2838129999999985 18.7011530000000015 1.4555518999999999 0 2.26471329999999993 1.14101980000000003 1.1236934999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.909629805357014 -63.2967981558150967 22.3605164622268013 -12.9103079066284998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356504167561600 2481356504167561600 694190807 2015.5 25.453661901872799 1.86960120175564004 -3.29462140855207997 1.73292991645624994 2.50067197979978983 2.64352643798615983 0.945960640000000019 9.90736188928032924 3.07978323655432007 -5.25839981701876003 4.62906333869837017 -0.461016399999999993 0.707787159999999971 0.0877494899999999994 -0.0950282900000000014 -0.716987550000000029 -0.292861800000000005 -0.287010129999999974 0.156712820000000003 0.0891852800000000057 0.475847269999999989 81 0 81 0 -0.517388999999999988 69.1699982 0 0 31 false 0.017142033000000001 1.55893275019518995 0.443275547539910997 -0.109932415000000006 10 7 4.38664339999999964 0 10 false 82 79.2982145608612967 1.25282924183296007 63.2952995 20.9402070000000009 3 15.2643193588497006 5.92314410993374008 2.57706359999999979 22.392195000000001 9 106.057966663772007 9.88282040123893069 10.7315480000000001 19.6980609999999992 1.52994980000000003 0 2.69413379999999991 1.45198819999999995 1.2421454999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.906143005653007 -63.2965033250708018 22.359646379796299 -12.9089578169187007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356710325829376 2481356710325829376 412590391 2015.5 25.4409156634227003 0.683000269775913993 -3.28729448325798002 0.633787884289840009 0.992662625284612021 0.796796264061355952 1.24581739999999996 11.2872925814537997 1.47691725418483011 -10.4350227720366 1.78167422074526005 0.127999709999999989 0.352372469999999993 0.0735390600000000033 -0.166359019999999996 -0.109406600000000007 -0.175810130000000009 -0.228983240000000005 -0.119860984000000004 0.056382584999999999 0.247655110000000012 130 0 130 0 -0.385234359999999998 118.362999 0 0 31 false 0.0424128729999999968 1.14296058026522007 0.216268774824744991 -0.0560997999999999983 15 9 1.65004970000000006 0 15 false 132 131.384614654655991 1.26079052100507005 104.208 20.392004 12 53.4974233905168006 14.6841122303152005 3.64321800000000007 21.0305560000000007 12 139.899099726640003 7.96500800387763963 17.5642129999999987 19.3973830000000014 1.47198760000000006 0 1.63317299999999999 0.638551700000000055 0.994621300000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.873562066314008 -63.2953864081816988 22.3502799966564005 -12.8974573604764 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356611542240384 2481356611542240384 701831464 2015.5 25.4487290921998017 0.0844404578785071941 -3.28454616429897994 0.0594688787267333985 0.388662369253348017 0.0972328295090279932 3.9972338999999999 2.50788599926610001 0.156839884363674992 -32.6026397285329992 0.114720228422942994 -0.00972069149999999979 0.504833340000000019 -0.00573475800000000039 0.0671879400000000016 -0.208400250000000009 0.0307621970000000015 0.0938341199999999931 -0.0063100090000000001 0.0920775100000000013 0.152082820000000007 176 0 175 1 2.66407630000000006 223.205994 0.139609974849736002 0.507908531894478044 31 true 2.96947880000000008 1.64264106171049007 0.0204533991064126015 -0.0228631180000000017 20 10 0.143343749999999992 0 20 false 175 3159.69135547726 2.86637036831129999 1102.32996 16.9392549999999993 16 1700.51709619234998 12.2142297098077002 139.224259999999987 17.2749349999999993 18 2131.09347090579013 19.1615341767641993 111.217269999999999 16.4404140000000005 1.21265339999999999 0 0.834520339999999972 0.335679999999999978 0.498840329999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.886581123257997 -63.2895412948520004 22.3587582977787989 -12.8977768654417009 100001 5809.66992 5613.31006 5871.33008 0.0680000037 0.0237000007 0.179100007 0.0315000005 0.0130000003 0.0798999965 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356538527260288 2481356538527260288 125690535 2015.5 25.4622031028149998 1.89297088608925002 -3.29771658383282018 1.36736010741853997 4.43109988700854984 2.6453586642323299 1.67504689999999989 0.329966199353439016 2.36126128748011999 -6.09137183431787044 3.20890095295463995 -0.100549004999999997 0.825466999999999951 0.186451100000000008 0.0219470260000000014 -0.400826279999999979 -0.505603550000000013 -0.622816700000000001 0.285589929999999992 0.302755239999999981 0.571329700000000051 102 0 102 0 0.636238199999999976 105.428001 0 0 31 false 0.0228582020000000011 1.36743474318755998 0.346785417937767015 0.159575660000000008 12 7 3.40096879999999979 0 12 false 103 89.4903992935388999 1.11474704038432004 80.2787018 20.8089240000000011 7 76.5261394687413059 11.6373552947469996 6.57590499999999967 20.6418630000000007 9 75.035952448968402 11.8200549284805003 6.34818999999999978 20.0737459999999999 1.69361279999999992 0 0.56811714000000002 -0.167060850000000011 0.735177999999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.92623172906201 -63.2956113308970032 22.3666090569749016 -12.9149771857294997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357122642691712 2481357122642691712 152366001 2015.5 25.390034623887999 0.119369606682762003 -3.28101417568724996 0.0813474692817155037 1.26601292632882001 0.135005412446249001 9.37749799999999922 17.0843725173786005 0.233238472849783995 -2.39819361800177022 0.155876989460845994 0.0303839039999999998 0.451464240000000017 0.124154719999999996 0.0455115960000000014 -0.119471826000000003 8.56850899999999965e-05 0.129871409999999993 -0.0900693459999999946 0.11051743 0.0932686800000000066 162 0 159 3 1.12327580000000005 173.843002 0.187261986989297996 0.505759826594495032 31 false 1.62894519999999998 1.4832655378775399 0.0290640998814751007 -0.0561166780000000032 19 10 0.20922099999999999 0 19 false 157 1822.77926724581994 2.67862752568241991 680.48999 17.5365310000000001 16 535.205741831460955 8.6650555780405405 61.7659900000000022 18.5300870000000018 16 1992.80995379018009 17.9415822611655997 111.072140000000005 16.5132559999999984 1.3869016999999999 0 2.01683039999999991 0.993555069999999985 1.02327539999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.765496050189 -63.3115944817518965 22.3042131323160007 -12.8728972144726992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357603681053440 2481357603681053440 698453551 2015.5 25.4016497703697013 1.48815687618979009 -3.25667222909005005 1.03287326135223001 \N \N \N \N \N \N \N -0.266459999999999975 \N \N \N \N \N \N \N \N \N 100 0 100 0 3.43892400000000009 149.817993 3.03123963477557989 2.12641019538396003 3 false 0.0223955500000000002 \N \N -0.0559821279999999991 12 8 2.66060449999999982 0 12 false 103 107.899943109109998 1.42953422206381009 75.4791031 20.6058120000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.765507249530003 -63.2846314828158967 22.3244735814846003 -12.8545433748743001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356779045309696 2481356779045309696 1066251865 2015.5 25.4190006916372013 0.67814409768287498 -3.27441407895577985 0.557773907904950961 1.55965729661582997 0.834853469891788991 1.86818090000000003 10.3099719320910008 1.32396821748237992 -17.3964318157720008 1.08997092599129997 0.0880663899999999944 0.451851999999999976 0.0860164239999999941 0.0353454500000000005 -0.21441555000000001 -0.0552834570000000011 0.0426997429999999983 -0.00350382970000000021 0.170699640000000014 0.194032700000000002 154 0 154 0 3.84670569999999978 224.878998 2.46536066655390007 3.23869084491568993 31 false 0.0423769839999999995 1.07310201110977999 0.170321682994644008 0.0317272950000000026 18 10 1.20056919999999989 0 18 false 154 168.394269429685011 1.27241450108125997 132.341995 20.1225470000000008 14 37.4391261768475019 7.19834877344258039 5.20107129999999973 21.4180740000000007 16 209.173510749401999 7.2316771263338202 28.9246200000000009 18.9606530000000006 1.46449539999999989 0 2.45742029999999989 1.29552650000000003 1.16189380000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.817278972290012 -63.2931937780428981 22.3342845509495014 -12.8774206185108007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357534961604096 2481357534961604096 1637464593 2015.5 25.4175435117170991 1.08731589880063995 -3.26386039568208997 0.942064614697112002 -0.737789063488111019 1.26414414437493994 -0.58362734000000005 11.8378004964020001 2.35344952355896009 -9.39658733120485934 2.42402820246189021 0.229052410000000012 0.413040579999999991 -0.0459850899999999993 -0.119633900000000001 -0.0180530789999999997 -0.123075455 -0.217131870000000005 -0.117506330000000006 -0.0311003740000000001 0.32431053999999998 128 0 125 3 2.49578120000000014 162.149994 3.2293158618683302 2.09120600009842006 31 false 0.0188975870000000004 1.44900456898704011 0.326554384868188996 0.0118894499999999993 15 9 2.42411069999999995 0 15 false 126 101.539537322927004 1.38983201533487 73.0588989 20.6717779999999998 8 47.2860594188797023 11.0601494525090001 4.27535440000000033 21.164555 9 123.925542830880005 9.74076941064083002 12.7223570000000006 19.5290180000000007 1.68615699999999991 0 1.6355362 0.492776869999999978 1.14275930000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.804249362787004 -63.2842946026329969 22.3368869201329012 -12.8670736148875999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357912919897600 2481357912919897600 1342024311 2015.5 25.4109272576003988 1.29365696752411008 -3.23781514278637017 0.775198865395038017 1.1694099227861201 1.46660637615273992 0.797357740000000037 -2.61935455773563008 1.77775135223760006 -6.66532948720104024 1.9099531743748801 -0.102005479999999996 0.76016079999999997 0.103457209999999994 -0.181884269999999987 -0.229467169999999998 -0.26440296000000002 -0.189760679999999987 0.104392566000000006 -0.00259986919999999995 0.16281277999999999 106 0 104 2 -1.19423100000000004 82.5365982 0 0 31 false 0.033612450000000002 1.12437294265240006 0.27675854113308801 -0.0940499699999999966 12 7 1.77767999999999993 0 14 false 107 118.213348528032 1.3340389737615701 88.6130981 20.5066990000000011 9 55.6291425497161001 10.5100615363217997 5.2929415999999998 20.9881320000000002 9 131.964939282989008 7.4873840306249102 17.6249730000000007 19.4607729999999997 1.58691120000000008 0 1.52735899999999991 0.481433869999999986 1.04592510000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.766076864374014 -63.2636238728197995 22.3404332286631018 -12.8404271264864001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357912916800256 2481357912916800256 1068933736 2015.5 25.4071075355712992 1.24635916329352003 -3.23459686568306992 0.834603639856581037 3.29516484185000014 1.42001788258648998 2.32050940000000017 14.9046587493361997 1.81678297913169007 1.99329378574612992 1.94752885242812002 -0.20339409 0.702055800000000008 0.217873590000000006 -0.0166395499999999995 -0.33783856000000001 -0.276729639999999999 -0.409414620000000007 0.112172900000000006 0.16102422999999999 0.253461419999999993 121 0 121 0 0.496602770000000027 123.035004 0 0 31 false 0.0278578639999999995 1.23026152304525005 0.281484254381301979 -0.121609099999999998 14 8 1.93329580000000001 0 14 false 121 112.847269873404002 1.29944938257779996 86.8423996 20.5571379999999984 9 126.577497811697 8.96756436215678931 14.1150359999999999 20.0954970000000017 10 49.7685537339121993 8.40548828637056999 5.92095950000000038 20.5195329999999991 1.56269670000000005 0 -0.424036030000000008 -0.461641299999999977 0.0376052860000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.755348428520989 -63.2623572842371971 22.3380134699733013 -12.8360299749740001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358359593281280 2481358359593281280 876915273 2015.5 25.4789990154977986 1.02900438106157011 -3.24970515000260018 0.787858558788482988 2.06412413807810013 1.27152297477612009 1.62334789999999995 -0.154232449197011012 1.70209719897066991 -3.68678438129373021 1.98358519115774001 0.00496972539999999963 0.653307259999999945 0.0694332000000000005 -0.122129336000000005 -0.263492600000000021 -0.276190900000000017 -0.383409979999999984 0.0435240939999999993 0.0956278400000000056 0.37973705000000002 136 0 134 2 0.565371199999999963 137.598999 0 0 31 false 0.0300245500000000005 1.54068674512731008 0.255489593964617012 0.0630835700000000055 16 9 1.95308830000000011 0 16 false 135 119.016447926634996 1.22369649703440997 97.2598038 20.4993480000000012 12 63.4726503834816 6.26582832229220976 10.1299700000000001 20.8449209999999994 13 90.264785577402094 8.90024095184895003 10.1418359999999996 19.8731229999999996 1.29173270000000007 0 0.971797939999999971 0.345573430000000015 0.626224499999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.913739308901995 -63.2450672022687002 22.4007469451574011 -12.8765203070598009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353514870153344 2481353514870153344 1388951612 2015.5 25.4846865918436016 0.488122461590626999 -3.31088768046451021 0.362552922539505995 0.274916503486186015 0.585392354607865983 0.46962777 5.93663953345630979 0.942228340051711966 -0.47570430102134198 0.633447586615220049 0.0381187239999999997 0.461993700000000007 0.1091144 0.0861678349999999982 -0.173382910000000001 0.0190227850000000004 0.292098000000000024 -0.0553925399999999971 0.136107800000000001 0.0746103699999999953 182 0 180 2 4.10764360000000028 262.769012 1.78123743842609006 3.29749820366270008 31 false 0.0808091199999999982 1.44510468317992991 0.117726865877868 -0.0291625819999999994 21 10 0.830660799999999977 0 21 false 180 260.516869720011982 1.37776588345578999 189.085999 19.648776999999999 16 119.037235875541995 13.0798489546202994 9.10081100000000021 20.1621820000000014 16 222.428821022606996 10.4155527303477999 21.3554500000000012 18.8939419999999991 1.31072530000000009 0 1.26824000000000003 0.513404850000000024 0.754835099999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.983945115721014 -63.2977786500851991 22.3830396138555017 -12.9354917993273002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353347367096192 2481353347367096192 60569020 2015.5 25.5137916782964993 0.0426696024684634981 -3.30841045055711991 0.0282628342168400985 0.488289419155658988 0.0529796407500031999 9.21654799999999952 1.72000439706340003 0.0645921566913797013 -2.5252973680612798 0.0563654764967448027 -0.217474279999999992 0.687617600000000051 0.0309900460000000003 0.118048063999999994 -0.441091999999999984 -0.146074700000000002 -0.275841200000000009 0.152843790000000007 0.251190360000000001 0.292509259999999993 155 9 155 0 -2.52319119999999986 109.861 0 0 31 true 32.1583249999999978 1.60793603853517997 0.00909277494933703051 -0.0289405340000000004 18 9 0.0666940139999999959 0 18 false 154 25789.8377825534008 9.8410462218297603 2620.63989 14.6597439999999999 17 14422.3130950671002 42.7469689299961999 337.387969999999996 14.9538010000000003 16 16724.0728826605991 38.8392799956521984 430.596900000000005 14.2035649999999993 1.2077 0 0.750236499999999973 0.29405690000000001 0.456179620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.039820118671997 -63.2829563093425023 22.4116928976639009 -12.9438927649599993 100001 6278.16992 5666.08984 6708.66992 \N \N \N \N \N \N 200111 1.73102650000000002 1.51599400000000006 2.12521240000000011 4.19405800000000006 3.24024629999999991 5.14786959999999993 +1635721458409799680 Gaia DR2 2481353617949374080 2481353617949374080 409049956 2015.5 25.4966898212876991 0.578602881023702054 -3.2949638592219701 0.419594556178263023 3.65933921884507996 0.77465960396829403 4.7238030000000002 31.9276635657319012 0.849832699069324016 -110.630649582963997 0.625519661892454004 -0.243489189999999994 0.703991099999999981 0.0835192800000000013 0.00273727650000000003 -0.532822970000000007 0.226114060000000006 0.524064799999999997 -0.124503929999999999 -0.170522239999999992 0.260758199999999996 163 0 162 1 4.38174059999999965 247.244003 1.61357837275412996 4.08771248845907031 31 false 0.109497579999999997 1.26203463916129999 0.102735517624837 -0.019610724999999999 19 9 0.814635200000000004 0 20 false 164 336.463397727483994 1.34181852928867995 250.751999 19.3710209999999989 17 66.2955900291611044 11.5107292948503002 5.75946040000000004 20.7976759999999992 19 487.951539958255978 9.61564499312678045 50.745586000000003 18.0409770000000016 1.6472732000000001 0 2.7566986 1.42665479999999989 1.33004380000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.992638050231989 -63.2782364245821967 22.4004888492235992 -12.9251025292376998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356577182502144 2481356577182502144 1135896959 2015.5 25.4814711541094994 1.58824793045137991 -3.28960386576663 1.41131697956757995 \N \N \N \N \N \N \N -0.240234360000000008 \N \N \N \N \N \N \N \N \N 149 0 148 1 27.1305030000000009 1264.60999 7.95401450093810958 57.2355810888641017 3 false 0.0134814319999999998 \N \N 0.00345905170000000012 18 8 3.00925179999999992 0 18 false 153 300.070443366523023 2.80321924783262011 107.044998 19.4953080000000014 16 325.520439150390985 8.65962212061699965 37.5906069999999985 19.0699420000000011 15 569.77673575604797 8.70809293339118007 65.4307199999999938 17.8726580000000013 2.98362330000000009 0 1.19728469999999998 -0.425365449999999978 1.62265009999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.957017277590012 -63.2799797126218024 22.3880227758311996 -12.9145223930712998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355095418126720 2481355095418126720 646223352 2015.5 25.4930157167683014 0.328684548866407023 -3.28479547751623002 0.178769606028268996 2.40276632641295995 0.392251946883352021 6.1255689999999996 42.0810047766580979 0.440310732000662008 -20.0260675343264012 0.295361065179786997 -0.167287479999999988 0.748798799999999987 0.103720439999999997 0.119071060000000006 -0.304543200000000014 0.0239067199999999994 0.270726350000000004 0.0512496529999999992 0.123594365999999997 0.106288694000000003 168 0 166 2 3.8972929999999999 240.675995 0.706150068470189018 2.10047976766173994 31 false 0.370116529999999999 1.19240100671121008 0.0560817413610692969 -0.0389700980000000016 19 9 0.418684449999999986 0 19 false 166 685.898437448783056 1.67017472887324003 410.674988 18.5977150000000009 15 120.061311902211997 9.86598128759587034 12.1692219999999995 20.1528799999999997 15 945.194166683128969 18.9552814714776012 49.8644200000000026 17.3231180000000009 1.55308040000000003 0 2.82976150000000004 1.55516429999999994 1.2745972000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.975497514740994 -63.2706580873468027 22.4008331652803996 -12.9142979956311006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481353553524995072 2481353553524995072 689076112 2015.5 25.5067878920256987 0.722177637991412991 -3.30020292439861995 0.447016373720072024 2.0698208181454798 0.88904158397229005 2.32814860000000001 2.44781066398947988 1.04329574647982004 -14.4903326864468998 0.719727807193474955 -0.270449519999999999 0.708798939999999988 0.181383899999999987 0.0365822599999999984 -0.442429159999999988 -0.0380486900000000031 0.266687180000000024 0.057342841999999998 0.0614076330000000031 0.0975344259999999935 174 0 173 1 2.46636129999999998 216.595001 1.20450234733603989 0.985900459458874945 31 false 0.0643308300000000055 1.36753556395255993 0.136083292366691005 -0.0677663099999999963 20 9 0.973728240000000023 0 20 false 172 195.759159277484002 1.28284170337384995 152.598007 19.9590600000000009 14 53.435275938890598 7.36105199526650988 7.25919000000000025 21.0318180000000012 15 270.595346663494013 7.40257513353288044 36.5542200000000008 18.6811199999999999 1.65525140000000004 0 2.35069850000000002 1.07275769999999993 1.2779408000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.017892621384988 -63.2785912909863981 22.4081250385085013 -12.9336867799559005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481354854899954176 2481354854899954176 1548791872 2015.5 25.5338930049456998 0.524194190942611993 -3.29763958235563015 0.352803948362302 0.480086902513132019 0.635595690541364 0.755333800000000055 4.38378778073612008 0.95618572890195197 2.92336630115083995 0.618178391455599052 -0.183038640000000002 0.544903759999999959 0.00929699299999999992 0.039379705000000001 -0.402498359999999999 -0.0750087299999999957 0.132403429999999989 0.0906217700000000043 0.132806050000000009 0.0740496739999999959 156 0 155 1 1.15232179999999995 170.130997 0.69598496641836205 0.472867351686376003 31 false 0.0988673340000000012 1.46282493301975003 0.110859023305695997 -0.0251070039999999987 18 10 0.842111229999999988 0 18 false 156 255.263956097701993 1.6564710635795401 154.100998 19.6708929999999995 12 67.1114459736637059 4.04775464545932984 16.5799200000000013 20.7843969999999985 16 302.501790061123017 11.0587254225535006 27.3541279999999993 18.5600999999999985 1.44796490000000011 0 2.22429660000000018 1.11350440000000006 1.1107921999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.069633021391013 -63.2645452512106985 22.4349068960228983 -12.9412703574464008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358153434847104 2481358153434847104 197817279 2015.5 25.4865332962945992 0.438874964350983998 -3.26368102991188991 0.292747891055876008 2.26312473490939015 0.52633999628128203 4.29973939999999999 20.6515015192732001 0.739109953374645023 1.09878026766431991 0.493079080551566018 -0.134507640000000012 0.594138860000000046 0.135277320000000006 0.0592451800000000015 -0.31271454999999998 -0.0174382549999999997 0.278089099999999978 0.0110213250000000002 0.107929399999999995 0.0632309999999999955 184 0 184 0 2.73525099999999988 235.100998 0.914192358618280965 1.11401403652148989 31 false 0.125258480000000005 1.31477978854341004 0.0917555863449562026 -0.035352322999999998 21 10 0.655267099999999991 0 21 false 184 310.606905951239014 1.21632471780908991 255.365005 19.4578379999999989 15 93.513161966806706 13.6521459162529002 6.84970429999999997 20.4242060000000016 16 376.88608306333299 6.49877226690119958 57.993426999999997 18.3213940000000015 1.51445199999999991 0 2.10281180000000001 0.966367700000000052 1.13644410000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.942227960893007 -63.2544204325536015 22.4026397390585004 -12.8922842810522003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355129777989376 2481355129777989376 515677070 2015.5 25.5039294188611017 3.11347001286570979 -3.27730689644454021 5.05611932322797042 \N \N \N \N \N \N \N -0.281649199999999988 \N \N \N \N \N \N \N \N \N 46 0 46 0 1.02911090000000005 50.2751999 3.51958149295797984 0.897927545351473011 3 false 0.0139506620000000008 \N \N 0.0940188299999999977 6 6 15.6261390000000002 0 6 false 45 74.1485205218125998 1.62881946897668994 45.5228996 21.0131100000000011 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.990125090285005 -63.259190947258098 22.4140556533669013 -12.9113493918718003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481355134073490304 2481355134073490304 943906378 2015.5 25.5109925700192015 0.0382712224250287975 -3.26973355488848005 0.0253833125335175998 1.21077026884324002 0.0409298371056771998 29.5816039999999987 -1.79807611119790001 0.070115844520366899 -13.7086224834222996 0.0541129039078898991 0.000634191439999999963 0.519682500000000047 -0.173314140000000005 0.0604142100000000029 -0.106213056 0.0416994730000000008 -0.131805389999999994 0.0390582120000000019 0.0559214729999999993 0.157103639999999989 177 177 175 2 4.29746960000000033 261.302002 0 0 31 true 255.157119999999992 1.59699808056126002 0.00870298032198871079 -0.070722714000000006 20 10 0.0456250419999999976 0 21 false 173 187796.258252124011 43.1607393997810007 4351.08984 12.5041484999999994 21 103417.598833274998 125.398605805751998 824.710940000000051 12.814902 20 121761.133580000998 198.223304280052986 614.262449999999944 12.0481479999999994 1.19905869999999992 0 0.766754150000000023 0.310753820000000014 0.456000330000000009 -10.1436364153158998 1.85967008458890004 8 5500 4.5 0 NOT_AVAILABLE 151.996962014129991 -63.2493109666040993 22.423643250002101 -12.9069056601520007 100001 5941.5 5890.33008 6058.25 \N \N \N \N \N \N 200111 2.11368750000000016 2.03300569999999992 2.15056819999999993 5.01603699999999986 4.76981929999999998 5.26225469999999973 +1635721458409799680 Gaia DR2 2481358187794585344 2481358187794585344 732109298 2015.5 25.5089910480035016 0.551355196649323975 -3.26435426135582984 0.334308368925679 1.19979930491090991 0.609173107213342946 1.96955400000000003 -3.74046515153471981 0.812321422173101992 -1.19292718227660011 0.524416938507127006 -0.417081480000000004 0.693726900000000035 0.28380147 -0.101206175999999995 -0.455976700000000013 -0.208593429999999996 0.356468600000000024 0.121627310000000002 0.0244449059999999989 -0.120761090000000001 149 0 148 1 0.368010879999999985 148.628998 0 0 31 false 0.140607939999999987 1.32631453519427001 0.0985006896510294966 -0.150394990000000006 17 8 0.782660899999999993 0 18 false 149 294.794481436816 1.31424770153123993 224.307007 19.5145659999999985 14 99.1805912238290972 10.6137720784050007 9.34451900000000002 20.360320999999999 13 293.816637669904026 7.25924792551063991 40.4748039999999989 18.5917279999999998 1.3331227000000001 0 1.76859279999999996 0.845754600000000023 0.922838200000000053 \N \N 0 \N \N \N NOT_AVAILABLE 151.98778607375101 -63.2453273526977 22.4237698293792995 -12.9011685306535 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358462672500096 2481358462672500096 874244458 2015.5 25.4875836368746995 0.249998962723465001 -3.2400159924629599 0.174936164546660999 3.46129125861018982 0.306473710561913026 11.2939249999999998 15.8516741979527005 0.437631153857057975 -13.4365378302707992 0.293935000151774983 -0.0626634499999999955 0.555488599999999999 0.0771542399999999989 0.114747370000000001 -0.298303800000000008 -0.0172868559999999998 0.199854420000000005 0.0653393699999999938 0.185406309999999991 0.112128099999999994 168 0 167 1 4.7092729999999996 261.493011 0.836121547106730034 3.50944991485086 31 false 0.383140099999999983 1.28680922647684004 0.0547488653595950975 0.0176851020000000012 19 10 0.388773829999999987 0 19 false 166 789.889835612547017 1.91777741534641999 411.877991 18.4444480000000013 16 168.560241206947012 20.9506067287315005 8.04560200000000059 19.7845000000000013 16 1026.58457638909999 9.3748889027843294 109.503653999999997 17.2334330000000016 1.51305259999999997 0 2.55106739999999999 1.34005170000000007 1.21101569999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.921611159386998 -63.2326262990318 22.4125815503976007 -12.8706693237193992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358462672614272 2481358462672614272 88089854 2015.5 25.4909757051413983 1.01088102953832992 -3.23343302704593993 0.904523751848910984 -0.495640053722112006 1.24030137051438993 -0.399612599999999984 -0.638581629785007987 2.01765384539997017 -1.0062013410981101 2.33504722317143987 -0.0423003500000000004 0.46249148000000001 0.0743678700000000026 -0.145932929999999988 -0.440237019999999979 -0.399538820000000017 -0.489674149999999975 0.215879979999999999 0.354263480000000019 0.310809730000000006 115 0 112 3 2.98017699999999985 155.927002 2.72030240781315991 2.27486532327103008 31 false 0.0306435130000000007 2.03897693659089985 0.265298244632922009 0.0259877929999999986 14 9 2.30463340000000017 0 14 false 111 143.897155264002009 1.90824503006993007 75.4080963 20.2932360000000003 11 104.422938829567997 9.85325301465853087 10.5978139999999996 20.3043979999999991 11 106.547771737193003 9.5800419858191006 11.121848 19.6930599999999991 1.46612140000000002 0 0.611337660000000005 0.0111618040000000009 0.600175860000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.922077990952999 -63.225226254064097 22.4182982836503015 -12.8657964593407996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358497032240128 2481358497032240128 508443139 2015.5 25.497088486305401 0.741155275952303016 -3.23408074858595018 0.479821915088029016 0.554289917581016978 0.848540436170260981 0.653227450000000043 7.23529018202410956 1.34874278023534 -0.707626502653999956 0.796726670407008952 -0.164193869999999992 0.540807200000000043 0.0699446299999999938 0.0402563329999999983 -0.319562500000000027 -0.0276775169999999987 0.324939800000000001 0.0195045920000000012 0.0941742359999999945 -0.00555142900000000009 175 0 175 0 2.88034960000000018 228.022003 1.77226949865093997 1.79831274321899004 31 false 0.0471329600000000015 1.38740049240475005 0.152249294340736002 -0.0654210999999999959 20 10 1.18392849999999994 0 20 false 174 178.093634160877997 1.46763244244419 121.348 20.0617449999999984 12 64.1633008957155937 13.5589481533890996 4.73217399999999966 20.8331720000000011 14 184.871157006560992 9.9275858266443997 18.6219649999999994 19.0947479999999992 1.39833439999999998 0 1.73842429999999992 0.77142714999999995 0.966997149999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.934916441908001 -63.2231731542185003 22.4238738013937997 -12.8686463666308004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358260809681152 2481358260809681152 1346250511 2015.5 25.5050258505694991 0.0587404266576821016 -3.2490916263465599 0.0406281561263005034 1.21941305990269999 0.0720340527200799968 16.9282859999999999 9.42461202072212068 0.101216684409044994 -3.98964414715771021 0.0764928841883601995 -0.0068803429999999997 0.574452040000000053 0.00936454700000000084 0.0884691300000000069 -0.237230350000000006 -0.0457963799999999976 -0.0261111730000000014 0.071544369999999996 0.193300159999999999 0.190188410000000002 168 0 167 1 -1.44441160000000002 136.770004 0 0 31 true 7.92026040000000009 1.55184018157663006 0.0129398176116356997 0.0358979739999999992 19 10 0.095766190000000001 0 20 false 167 7158.37772478847 5.57166454724131999 1284.78003 16.0513289999999991 18 3262.48546657252018 16.9015556737956985 193.028699999999986 16.5675160000000012 14 5573.58561106557045 7.35068157968945979 758.240660000000048 15.3965840000000007 1.23436780000000002 1 1.17093280000000011 0.516187669999999987 0.654745099999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.965190049643013 -63.2332813699572966 22.4257606045122984 -12.8855207123880007 100002 4912.87988 4887 4955.66992 0.0160000008 0.00260000001 0.195600003 0.00800000038 0 0.0952999964 200111 0.638775800000000005 0.627793200000000051 0.6455592 0.214158939999999992 0.187517479999999986 0.240800399999999998 +1635721458409799680 Gaia DR2 2481358600113662336 2481358600113662336 1548053871 2015.5 25.5233064180073015 1.44547280300629 -3.23694006817154989 1.1621470021973801 1.09874007299907994 2.03580420043922006 0.539708140000000003 1.50957740045262989 2.9303873258086699 -1.85039402469749992 4.14928735759005018 -0.209646699999999991 0.597329099999999946 0.0493721900000000033 -0.323229250000000023 -0.472019399999999978 0.0336296899999999968 0.135771040000000009 -0.354962 -0.410396399999999995 0.534286799999999951 100 0 99 1 0.694203800000000038 103.133003 0 1.0364331011053801e-15 31 false 0.0200830289999999988 0.901575387042167997 0.353175844145414974 0.0707994900000000066 13 9 4.06564040000000038 0 13 false 102 91.4882653451198991 1.58425446296495998 57.7485008 20.7849520000000005 9 54.2077804762501003 10.0529340450015994 5.39223500000000033 21.0162329999999997 12 99.9283037972902974 6.7700606218283097 14.7603259999999992 19.7626999999999988 1.68476340000000002 0 1.2535343000000001 0.231281280000000006 1.02225300000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.990038566435999 -63.214427845095102 22.4477579084047996 -12.8809442493580004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370248062769920 2481370248062769920 517857495 2015.5 25.2647177893661983 0.133552744057077011 -3.21416806479322981 0.104501555150004005 0.0437634066938139971 0.168640141247733993 0.259507659999999973 -0.082517053105702301 0.245712595998423988 -2.16563851726388013 0.190142099674236009 0.115585030000000005 0.517183599999999966 0.0454433299999999971 0.108039490000000002 -0.229714470000000004 0.0877233099999999988 0.196993470000000004 -0.0351315899999999973 0.073619900000000002 0.270432950000000005 148 0 147 1 0.0974372250000000023 142.977997 0 0 31 true 1.36305279999999995 1.61380064437529991 0.0349960566173622006 0.0941983599999999949 17 10 0.227864440000000001 0 17 false 143 1466.31025559910995 2.45269322508777998 597.836975 17.7728000000000002 15 666.541049892574961 13.4750598908822994 49.4647939999999977 18.2918200000000013 16 1124.11269354270007 8.85818687200704069 126.900989999999993 17.1348950000000002 1.22119700000000009 0 1.1569252000000001 0.519020099999999984 0.637905100000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.450073760022008 -63.3046908292094983 22.2102193748643018 -12.7646272582324993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370179343287680 2481370179343287680 1397228162 2015.5 25.2872256854852999 0.239814426101576994 -3.22718853377568005 0.186675705107543999 -0.149614883579059998 0.289326223864079024 -0.517114799999999986 2.94300819813001979 0.45028328710534099 -7.01043273561753022 0.373340919781672997 0.16295111000000001 0.520527359999999994 0.0525327959999999997 0.0810416699999999962 -0.12432812 0.132740999999999998 0.218591270000000004 -0.119103429999999996 -0.0326631000000000005 0.294769170000000025 147 0 144 3 2.2603270000000002 179.404007 0.709555216691650004 2.13753871199254997 31 false 0.410360200000000008 1.60257779954747992 0.0666847786901094974 0.0762120399999999948 17 10 0.424497069999999976 0 17 false 144 705.749186269065945 2.16816775704117992 325.505005 18.5667399999999994 17 382.219696386241026 10.2045068033060993 37.4559700000000007 18.8956049999999998 15 482.135507255582979 7.55990839741076037 63.7753099999999975 18.053996999999999 1.22473429999999994 0 0.841608050000000052 0.328865049999999992 0.512742999999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.507678995628993 -63.3068981227064 22.2267134238046999 -12.7850181165792005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370351141986176 2481370351141986176 1616033395 2015.5 25.2767381854041986 0.756576677156590049 -3.20992726616006019 0.766212910963712024 2.07534632392408991 0.912043564119180972 2.27549029999999997 37.485807233456903 1.58523795893874997 -3.63667108914942006 1.95138666753007994 0.37243900000000002 0.450605540000000027 -0.0190001740000000016 -0.162014049999999993 -0.0512840000000000032 -0.202050279999999999 -0.30554667000000002 -0.118598560000000006 0.018279067999999999 0.511738400000000038 119 0 118 1 1.08328439999999993 129.348999 1.11237190431697996 0.409268857267525987 31 false 0.0439648399999999981 1.1770956878330201 0.22255817588087401 0.164314789999999988 14 9 1.95333029999999996 0 14 false 118 133.22052444437 1.15678693887909989 115.164001 20.3769379999999991 7 49.3550094784354982 18.3715886945777989 2.68648579999999981 21.1180599999999998 12 154.907965642276992 7.1526345604704602 21.657468999999999 19.2867360000000012 1.53326950000000006 0 1.83132359999999994 0.741121299999999983 1.09020230000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.470224935472004 -63.2957442405688013 22.2232612075927989 -12.7651119054213993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370355437586432 2481370355437586432 461436655 2015.5 25.2868806077526003 0.0791017935581528053 -3.21196964827636 0.0586655181165356976 0.276131392981862012 0.0938270713545179963 2.94298219999999988 5.74849800047925985 0.143393955500048992 -3.85658765755770006 0.118051520029259005 0.130579050000000002 0.553009749999999967 0.0173431260000000004 0.0782798299999999947 -0.125514700000000007 0.134225189999999994 0.184951320000000002 -0.0952432700000000049 -0.0316074449999999979 0.288493779999999977 149 0 148 1 1.2819566 165.059006 0.184070927152947011 1.19296544817179995 31 true 4.12332199999999993 1.65132283914621003 0.0212307659878313015 0.0666441700000000026 17 10 0.138349759999999988 0 17 false 148 4303.76065934260987 4.04740354350615039 1063.33997 16.603745 16 2316.79155591415019 14.3617500290307003 161.316800000000001 16.9391700000000007 16 2887.75102147510006 16.335811906692701 176.774259999999998 16.1105209999999985 1.20930110000000002 0 0.828649500000000039 0.335426329999999995 0.493223199999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.492547154790003 -63.2932780366959022 22.2321402191487003 -12.7707449359846006 100001 5822 5791 6269.54004 0.349799991 0.102200001 0.587800026 0.206 0.0524000004 0.300999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370763458852992 2481370763458852992 1625058340 2015.5 25.3037254517282015 0.0967377602148925958 -3.19684231355692017 0.0764218505574596058 0.380497581152205 0.120659470004244998 3.15348300000000004 5.12919784770314013 0.18943596196665799 1.05685392309447002 0.148111914744342987 0.0712543000000000065 0.481419680000000016 0.0280670319999999987 0.089837169999999994 -0.287445159999999977 0.228139499999999995 0.334608200000000022 -0.169901820000000009 -0.121995350000000002 0.321828449999999988 162 0 161 1 1.14004900000000009 176.292007 0.189960632801120993 0.712465232101265 31 true 2.40572499999999989 1.58362136116625996 0.0238602961989237 0.0446800249999999982 19 10 0.182356070000000009 0 19 false 159 2655.18875371861986 2.79389962252263002 950.35199 17.1281280000000002 18 1362.21271734164998 8.92438203170618038 152.639450000000011 17.5157759999999989 17 1850.07373623386002 13.4869391751102992 137.175219999999996 16.593945999999999 1.20981469999999991 0 0.921829200000000015 0.387647630000000021 0.534181600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.51204308831899 -63.2724244675569025 22.2538894322840015 -12.7628855527445992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370699034985728 2481370699034985728 957948830 2015.5 25.3128806676899991 0.652901341115502021 -3.19707525681383986 0.609994345042566999 2.01698139797036013 0.850816370437336045 2.37064239999999993 19.5566075249029012 1.34227406452664 -18.6596339179703996 1.19087668633406008 0.235649140000000007 0.396150769999999985 0.118377419999999997 0.0871037540000000055 -0.242712569999999989 0.111933400000000002 0.201808910000000008 -0.135272250000000011 0.0155330504999999994 0.356991229999999993 141 0 139 2 2.65133799999999997 181.442001 1.57299857521249997 1.09991336071087997 31 false 0.0489447380000000015 1.41018557405323008 0.175197385766680008 0.111684699999999998 17 10 1.31375599999999992 0 18 false 143 166.152460191249986 1.43923765575466001 115.445 20.1370980000000017 12 41.3806674741978 8.45629767096492913 4.89347300000000018 21.3093949999999985 14 234.912883578215997 10.6556319762468998 22.045888999999999 18.8346519999999984 1.66289170000000008 0 2.47474300000000014 1.17229650000000007 1.3024464 \N \N 0 \N \N \N NOT_AVAILABLE 151.530645701244993 -63.2687360797399023 22.2625136165818986 -12.7664724589127001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369973186729344 2481369973186729344 955580328 2015.5 25.3263310391856002 0.521985246080187038 -3.19897587760446012 0.313008496317031981 2.28143223082934998 0.660528336858538956 3.4539506000000002 2.16193766060484016 0.678656531342471947 -14.4055477914128005 0.527870494820871006 -0.109342919999999996 0.770027160000000044 0.121892559999999997 0.0631290399999999974 -0.330281900000000017 0.147556159999999992 0.400004179999999987 -0.0448848869999999983 -0.0332322899999999977 0.251646700000000001 146 0 145 1 1.6876274 169.421997 0.791855660566671005 1.03001148725988001 31 false 0.169728760000000006 1.19272093026045001 0.0908441931524247986 0.0210670329999999989 17 9 0.667739799999999994 0 17 false 145 368.621294453169014 1.63895648403102001 224.912003 19.2719149999999999 13 177.567502389185989 22.6543791362460993 7.83810949999999984 19.7279799999999987 14 600.200670138915029 19.5876427567649003 30.6418019999999984 17.8161799999999992 2.10993809999999993 0 1.91180039999999996 0.45606422000000002 1.45573620000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.559446544389999 -63.2647221622184972 22.2745950988547001 -12.7731904052155993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369973184793856 2481369973184793856 1115783865 2015.5 25.3271479763639995 0.0430305371878640028 -3.19863917470510017 0.0249070160623633997 1.27909845930205002 0.0523778427767565002 24.4206029999999998 57.8957030548993998 0.0606957640517069991 -45.9909448226933009 0.0519746979001219009 -0.144368229999999986 0.73888564000000001 -0.0503838200000000028 -0.0155109150000000001 -0.322895140000000025 0.114066780000000007 0.0867626700000000001 -0.0987703800000000048 -0.100084889999999996 0.308412100000000022 155 0 155 0 -1.80078800000000006 120.345001 0 0 31 true 34.9448700000000017 1.60362682133775003 0.00886989766924507067 -0.0025989120000000001 18 9 0.0638849699999999993 0 18 false 154 28479.2448229114016 11.1999727769547004 2542.80005 14.5520449999999997 15 15761.3641818750002 15.0095219232802997 1050.0911000000001 14.8574040000000007 15 18830.8668515848985 46.018406054248203 409.202940000000012 14.0747440000000008 1.21464700000000003 0 0.782659529999999992 0.305358899999999989 0.477300639999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.560766327143995 -63.2640693569885002 22.2754998297217988 -12.7731781279097998 100001 6011 5751.49023 6482.41016 0.050999999 0.00889999978 0.140499994 0.0252999999 0.00289999996 0.0680999979 200111 0.760174400000000028 0.653632600000000008 0.830319499999999988 0.67968565000000003 0.618930100000000039 0.740441200000000022 +1635721458409799680 Gaia DR2 2481369977480463616 2481369977480463616 1635032146 2015.5 25.3423050077378988 0.0517299510243972027 -3.19806518044928989 0.0334312105384029015 0.56350489941853199 0.0694142648520501004 8.11799800000000005 7.60434846874403991 0.0734405711405802936 -10.0025837256575993 0.064149262976148605 -0.230225370000000013 0.736402149999999978 0.000301033170000000001 0.0519138759999999977 -0.478800979999999987 0.0124545119999999992 -0.0443466039999999978 0.00502783059999999983 0.0512935299999999969 0.354297199999999979 146 0 145 1 -0.632145049999999986 129.054001 0 0 31 false 22.3648640000000007 1.60552521108832003 0.0105971465529843007 0.0414284020000000031 17 9 0.0751089000000000062 0 17 false 144 18458.0586232981004 8.5713018152083702 2153.46997 15.0229009999999992 15 9766.27207646156057 21.2509025994001988 459.569759999999974 15.3770659999999992 15 12753.5775152949991 32.1386384409901993 396.830050000000028 14.4978400000000001 1.22005509999999995 0 0.879225730000000039 0.354165080000000021 0.525060650000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.590630883214004 -63.2570840024650991 22.2901414805218003 -12.7782234448603003 100001 5798 5363.22998 6448 1.10699999 0.734000027 1.35399997 0.542999983 0.386200011 0.646799982 200111 1.50063649999999993 1.21333810000000009 1.75379599999999991 2.29275969999999996 1.69598150000000003 2.88953779999999982 +1635721458409799680 Gaia DR2 2481369663947212416 2481369663947212416 1372742711 2015.5 25.353983599066801 0.569149088283223969 -3.22622684200916998 0.489800362965718994 1.23849877381603002 0.668116803661700009 1.85371590000000008 13.4265348460531992 1.18717842112060001 -7.02764879633155015 0.859605299322091954 0.138541419999999998 0.430791560000000018 0.0395033320000000021 0.127511070000000004 -0.100010920000000003 0.0744684800000000036 0.51592439999999995 -0.100723796000000004 0.0482469700000000001 0.0741365550000000068 130 0 128 2 4.0390839999999999 196.934998 1.84996264698068003 2.9057572856212901 31 false 0.0779407899999999959 1.55233722304480004 0.135147185614227006 -0.0086033640000000005 16 10 1.04714229999999997 0 16 false 128 246.62782533762001 1.61616038189321998 152.600998 19.7082610000000003 14 67.7600356957057954 7.61860601705692986 8.89401999999999937 20.7739539999999998 11 289.484953467090975 9.30201849858966945 31.1206600000000009 18.6078550000000007 1.4485186000000001 0 2.16609950000000007 1.06569289999999994 1.1004065999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.640845482742009 -63.2775492076492014 22.2906109321703987 -12.8087001715861 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369805681772288 2481369805681772288 168168166 2015.5 25.3632032433375016 0.0846887732983515051 -3.20838129007269979 0.0662049186194996059 0.61181435654008498 0.121055740984428006 5.05398899999999962 6.35539563088044979 0.137754376610875001 2.49726190276805005 0.123879541734354004 -0.172843720000000006 0.702080400000000049 -0.0754494500000000012 -0.0712389650000000013 -0.548343539999999963 0.470713229999999982 0.575297649999999994 -0.355581399999999992 -0.398577999999999988 0.547058099999999992 138 0 138 0 1.03037249999999991 149.800003 0 8.71323407359577044e-16 31 false 6.88474749999999958 1.59807163597407009 0.0161285961059818989 0.0558943000000000009 16 8 0.160450260000000011 0 16 false 137 6373.90342027416955 6.76161423980553966 942.659973 16.1773530000000001 15 3437.42275974866016 11.6128362860713992 296.00200000000001 16.5108050000000013 13 4307.28018403637998 14.9078089648475007 288.927799999999991 15.6764130000000002 1.21506439999999993 0 0.834392550000000011 0.333452220000000021 0.500940300000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.642350619442993 -63.2574808387508014 22.3061317712443987 -12.795504365507 100001 5744 5501.33008 5836.66992 0.0670000017 0.00889999978 0.178100005 0.0392999984 0.00289999996 0.0869000033 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481357985931774080 2481357985931774080 987852177 2015.5 25.3845437072845996 0.194031617203475004 -3.22913077099227985 0.13029406241739 0.268563530532022976 0.267288621764551981 1.00476980000000005 9.71167930542486957 0.268466789133853023 -16.8402544918238988 0.219513503684558992 -0.246646399999999988 0.742601700000000031 0.0928376399999999991 0.0494853520000000033 -0.509427100000000022 0.0578812469999999968 0.173126880000000011 -0.00136038900000000004 0.0105354009999999998 0.303153659999999991 130 0 129 1 -1.02442089999999997 107.947998 0 0 31 false 1.22198220000000002 1.5069788307924199 0.0387895191545450033 0.0733281900000000014 15 9 0.262720640000000005 0 15 false 128 1415.44532159280993 3.77298989770355009 375.152008 17.8111320000000006 15 611.632672667700945 9.82085422930522967 62.2789700000000011 18.3851620000000011 15 1243.74084052224998 14.4168697837222002 86.2698299999999989 17.0250950000000003 1.3108055999999999 0 1.36006739999999993 0.574029899999999982 0.786037450000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.704906224835014 -63.2670946152227032 22.3186010669116008 -12.8226462079672991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369801386724608 2481369801386724608 731321364 2015.5 25.3678894306974989 18.1545872654108997 -3.21515530125530002 7.93700679113174967 \N \N \N \N \N \N \N 0.52691319999999997 \N \N \N \N \N \N \N \N \N 35 0 35 0 0.554872099999999979 33.7798004 0 0 3 false 0.0118212439999999998 \N \N 0.413844350000000027 5 5 180.801559999999995 0 5 false 38 64.8862387537013063 2.01642363693366011 32.1789017 21.157983999999999 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.658195368258987 -63.2615980155933997 22.308031568428099 -12.8035259961599994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370007544605056 2481370007544605056 588368730 2015.5 25.3568241592343995 0.239125720842554013 -3.20379229884198979 0.145489939423044001 1.19763163849700005 0.294006730042843001 4.07348399999999966 22.2028522974964986 0.336642514890365008 -7.57752278573776028 0.248292969268948005 -0.256220669999999984 0.73308759999999995 0.0911695599999999967 -0.0398019479999999967 -0.430378050000000012 0.0793759750000000014 0.380281179999999996 -0.0539814529999999987 -0.102816044999999995 0.153986810000000002 148 0 148 0 2.85952539999999988 196.190994 0.49852561058221101 1.83778368851586005 31 false 0.746311199999999952 1.27996857431854005 0.0416308166100542998 -0.0155858690000000005 18 9 0.30410334 0 18 false 146 1152.90150811485 2.86510866122161012 402.394012 18.033885999999999 15 303.442468417269993 6.84985297142018013 44.2991200000000021 19.1461959999999998 16 1252.18013860735005 15.7513787254237005 79.4965440000000001 17.017754 1.34931090000000009 0 2.12844280000000019 1.11231039999999992 1.01613240000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.625193717694998 -63.2560601364113992 22.3017949465041987 -12.7888908727707999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369835745913856 2481369835745913856 1576927650 2015.5 25.3814400979076993 0.472954259185260018 -3.2017683078973298 0.362592087024173004 1.71922168246949991 0.575546068718643 2.98711400000000005 5.87937839588396027 0.701831845508163021 -11.5130698384423997 0.588724324909326024 0.226497830000000011 0.678583200000000053 0.189093950000000011 0.250338730000000009 -0.0954185300000000014 0.231583640000000007 0.518966099999999986 -0.0306539600000000009 0.0945511760000000007 0.313456449999999998 140 0 138 2 -0.371977800000000025 126.379997 0 0 31 false 0.162002730000000011 1.5651231949237201 0.0934942023232227942 0.0882479899999999984 17 10 0.706384360000000044 0 17 false 136 348.542262573856988 1.95292857321911995 178.472 19.3327269999999984 14 160.565674975296986 26.3069704757966996 6.10354099999999988 19.837254999999999 16 374.750277630689027 9.41339776312720922 39.8103100000000012 18.3275639999999989 1.53587099999999999 0 1.50969120000000001 0.504528050000000006 1.00516319999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.672610559194993 -63.2437047973851989 22.3259887202321003 -12.7960678000338 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370041904349952 2481370041904349952 808405976 2015.5 25.3731859720913988 0.22211453615895399 -3.18902898245916999 0.155178954103012995 1.01721611015442992 0.265555785469936023 3.83051750000000002 13.4550711210728 0.400071581210867999 -1.68840573325868992 0.270406220706063016 0.0556835999999999998 0.542119860000000009 0.182745870000000005 0.114329316 -0.227507839999999989 0.172379730000000009 0.398618499999999987 -0.150523540000000011 -0.00945249899999999962 0.218075170000000013 146 0 145 1 0.662379260000000025 150.677994 0 0 31 false 0.616513599999999995 1.4755940250139401 0.0452420835830020032 0.0209169100000000004 17 10 0.36512536000000001 0 17 false 141 875.413226283137988 2.7729377692981898 315.699005 18.3328319999999998 16 296.684430996756987 10.1706920973122994 29.1705250000000014 19.1706499999999984 16 916.343689864370958 10.9752689531892003 83.4916840000000064 17.3567730000000005 1.38566349999999994 0 1.81387710000000002 0.837818150000000039 0.976058960000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.643950520874 -63.2357245127763008 22.3229469411638988 -12.7811879395692998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371313214768128 2481371313214768128 477725448 2015.5 25.3801334697072996 0.921326686468606049 -3.19157797105793994 0.672435531898778027 -0.69020131672844498 1.19303910380379996 -0.578523640000000006 8.90959299040465069 1.55763119687745011 5.31223647122124021 1.0659029143635701 0.00116534480000000007 0.595246260000000027 0.255025859999999993 0.107438610000000004 -0.340802879999999975 0.199012820000000007 0.521029900000000046 -0.164489799999999992 -0.0491664450000000031 0.23180342000000001 138 0 137 1 1.21313129999999991 151.975006 1.47168905992467991 0.979188088530902001 31 false 0.0446889960000000017 1.75029623021144998 0.170813979801421989 0.0707922099999999943 18 10 1.44384620000000008 0 18 false 138 158.628266509944012 1.93479975979526997 81.9869003 20.1874140000000004 13 57.5893216502948988 10.0570972828940999 5.72623700000000024 20.9505330000000001 15 201.635471497395997 9.73707467315984054 20.7080139999999986 19.0005039999999994 1.63416519999999998 0 1.95002940000000002 0.763118740000000018 1.18691060000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.660294212976993 -63.2350566078710017 22.3285960829487991 -12.7861139151505991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371008272614144 2481371008272614144 219905911 2015.5 25.2999828584330011 2.66879663858966021 -3.17619029551461995 1.49759415542679997 \N \N \N \N \N \N \N -0.105960940000000003 \N \N \N \N \N \N \N \N \N 116 0 115 1 39.2727239999999966 2320.6499 10.9945508547637996 128.606466452934001 3 false 0.00741994239999999982 \N \N 0.0335041729999999982 15 9 3.59006330000000018 0 16 true 130 297.282529899341 5.03186102281595993 59.0800018 19.5054419999999986 14 309.989036152906976 25.7678365163311014 12.0300759999999993 19.1230219999999989 13 701.861823150357054 21.9943039334693005 31.9110720000000008 17.646291999999999 3.40366739999999979 0 1.47673030000000005 -0.382419600000000026 1.85914990000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.484962789039002 -63.2553351283896035 22.2581353119930014 -12.7423107987187993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370797818596608 2481370797818596608 1072490953 2015.5 25.3196774062365009 0.74950177417338204 -3.18045780306789982 0.472292962398173977 1.08861773038316989 0.972014869004990012 1.11996000000000007 0.15703532752853 1.04088758708999007 -2.46265504297645998 0.778306600529943049 -0.275998899999999991 0.74131674000000003 0.127391559999999987 -0.0358189049999999981 -0.477418960000000003 0.0603558419999999998 0.365236000000000005 -0.0379894399999999993 -0.0901621999999999979 0.17486850000000001 144 6 142 2 2.25355650000000018 176.998993 1.36796093625088999 1.55154077380583999 31 false 0.0835553200000000024 1.44532997998289003 0.13580301927593999 -0.0211745820000000008 17 9 0.948853300000000011 0 17 false 140 243.558047648852011 1.67145814331384002 145.716003 19.7218589999999985 15 133.978732390364002 9.88346732137816986 13.5558429999999994 20.0337980000000009 15 120.843723848191004 10.7308471477369007 11.2613400000000006 19.5563600000000015 1.0462494 0 0.477437969999999989 0.311939240000000007 0.165498730000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.528528903680012 -63.2508116457794003 22.2752631729687991 -12.7535275389149998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481370866539971328 2481370866539971328 877443369 2015.5 25.3496025273984991 2.04884795121988006 -3.16851987524445988 1.35302481535670993 5.52496077902141014 2.48258340864687987 2.22548840000000014 6.95908863921258014 3.31559499289824 -4.17162915784614974 3.4386454740215302 -0.159811079999999994 0.670492399999999988 0.250925300000000018 -0.0981860199999999989 -0.355080569999999984 -0.12861112999999999 -0.140371259999999998 -0.0932092900000000002 -0.0941734399999999972 0.393222930000000026 74 0 74 0 2.6234415000000002 103.757004 3.0354434656487399 1.0934489355402901 31 false 0.0170664500000000004 1.06479546198240005 0.432485978215005007 0.00212353100000000012 10 8 3.51035740000000018 0 10 false 76 89.9846966276809042 1.67227259798399008 53.8097992 20.8029440000000001 6 79.5768107127387054 15.4368238419967998 5.15499900000000011 20.5994220000000006 7 66.6844953697961955 10.9032446991827001 6.11602300000000021 20.2018589999999989 1.62540200000000001 0 0.39756393000000001 -0.203521730000000012 0.601085659999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.577214386277006 -63.2272590390583034 22.3082527338406997 -12.7534441579574995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371553732969216 2481371553732969216 1408185368 2015.5 25.3865584369339992 1.47856906543242994 -3.17162427354961007 1.32396565919962006 3.61543152079168983 1.80629109823674994 2.00157739999999995 10.5757682859716997 2.36966558788956005 12.1070739110235994 3.34248148352435992 0.342597040000000019 0.709255500000000039 0.117870909999999995 -0.0367135140000000026 0.00455936800000000027 0.191645499999999996 0.390640350000000025 -0.22710422999999999 -0.21753539999999999 0.564099849999999958 95 0 94 1 0.982499299999999964 102.029999 0 0 31 false 0.0255305320000000016 1.3849288309963701 0.312220584064976991 0.200267400000000012 13 9 3.29446459999999997 0 13 false 97 109.993905365778005 1.71112097637622007 64.2817993 20.5849440000000001 8 60.5979044007436016 9.70954535551828002 6.24106499999999986 20.8952449999999992 11 183.495312637721014 8.31856776891936001 22.058523000000001 19.1028580000000012 2.21915219999999991 0 1.79238699999999995 0.310300830000000027 1.48208619999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.654186360707996 -63.2142784441893966 22.3422508424953001 -12.7699283803381007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359493464768128 2481359493464768128 906942816 2015.5 25.4147438871837998 2.62352617940338995 -3.21210012193808003 4.12330903305401986 \N \N \N \N \N \N \N -0.393446420000000019 \N \N \N \N \N \N \N \N \N 64 0 64 0 1.56052469999999999 76.8292007 3.99415340402519981 1.64063080525038996 3 false 0.0138224639999999996 \N \N 0.129504430000000004 8 7 12.9783380000000008 0 8 false 66 84.3365197204153958 1.54603316959708992 54.5503006 20.8733269999999997 5 81.513647531988596 9.44062719613300949 8.63434699999999999 20.5733129999999989 7 85.4849863579078004 16.6738546660597997 5.12688830000000006 19.9321960000000011 1.98014620000000008 0 0.641117099999999995 -0.300014500000000017 0.941131599999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.749165982422994 -63.2387672480130973 22.3537846106520988 -12.8179257407298994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371248790783488 2481371248790783488 656968478 2015.5 25.3966073504766001 0.0467539759628834012 -3.20526425919595015 0.0327237432481466972 7.92071911353303015 0.0539737962202926982 146.751190000000008 23.8102987373878001 0.0745859428970706007 -1.01284401526196999 0.0684917796814124985 0.176777719999999999 0.657100000000000017 -0.00183440290000000004 0.0413196529999999979 -0.00333711090000000021 0.068332866000000006 0.0307970249999999987 -0.037266050000000002 -0.0146385160000000007 0.296780619999999995 147 147 137 10 9.54605399999999982 354.498993 0 0.175707661096698997 31 true 436.792239999999993 1.57415973378287011 0.0109185183531406004 0.0969089699999999971 17 10 0.0483689049999999968 0 17 false 137 672350.686347809038 1004.30135012687003 669.471008 11.1193760000000008 17 323796.432371240982 739.043653732774033 438.128969999999981 11.5757080000000006 17 481512.601834374014 669.088990651279005 719.654049999999984 10.5554009999999998 1.19775150000000008 0 1.02030749999999992 0.456332200000000021 0.563975329999999997 12.9869459975802002 0.654479048408900033 5 5500 4.5 0 NOT_AVAILABLE 151.706326253091987 -63.2403686896853969 22.3391041147188005 -12.8048983687322 100001 5245.33008 5137 5427 0.0205000006 0 0.182999998 0.0135000004 0 0.0715999976 200111 0.809445859999999962 0.756161149999999949 0.843946399999999985 0.446850999999999998 0.442692040000000009 0.451009930000000003 +1635721458409799680 Gaia DR2 2481371244495189248 2481371244495189248 1230979570 2015.5 25.405156088118499 0.198529314915596999 -3.19793794575525014 0.14018707087228599 0.872965904689013028 0.234016556063075004 3.73035959999999989 -22.5987084196851988 0.357340436848401 -47.7178235688110988 0.251834400917710977 0.0050934133999999999 0.560683900000000013 -0.0468616700000000011 0.0999358300000000033 -0.255136279999999993 0.187579699999999988 0.360766230000000021 -0.0807458199999999959 -0.0412375999999999993 0.215225770000000011 149 0 149 0 2.40584640000000016 188.011002 0.401496431485925009 1.08799143536658005 31 false 0.710231199999999951 1.36373701076530995 0.0424707266258851981 0.0244021500000000009 17 10 0.324214219999999997 0 17 false 148 1071.48145933122009 2.46947808390991019 433.890015 18.1134030000000017 16 311.581572354645004 7.35912275851446029 42.339500000000001 19.1174579999999992 15 1191.34534840708989 9.6826123451980699 123.039664999999999 17.0718250000000005 1.40266249999999992 0 2.04563329999999999 1.00405499999999992 1.04157830000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.716464219883989 -63.2300883782739973 22.3500096806868989 -12.8012327432996997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359184229109760 2481359184229109760 315467191 2015.5 25.4567527634870991 2.56745588381251988 -3.22806276411110016 1.53244070148076994 \N \N \N \N \N \N \N -0.162006769999999994 \N \N \N \N \N \N \N \N \N 55 0 55 0 -0.153064580000000006 47.8347015 0 0 3 false 0.012348131 \N \N -0.105469430000000003 7 6 4.69363699999999984 0 7 false 54 71.4532706549692023 1.15115990114888 62.0707016 21.0533099999999997 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.848498233413011 -63.2351263914298016 22.3877441379829989 -12.8482181117913008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359459104922240 2481359459104922240 95940965 2015.5 25.4382973971949014 0.681196969805762054 -3.2142150795534099 0.437642134376962977 0.584468532106318994 0.797421391680110947 0.732948099999999991 6.50840207777612001 1.1413842083977499 6.57999924884305987 0.763426360861557018 -0.13432303000000001 0.602018599999999959 0.17640494000000001 0.0340010450000000006 -0.28537615999999999 -0.0412187050000000013 0.254019170000000016 -0.00394122859999999995 0.101121900000000001 0.0550313799999999978 176 0 174 2 1.66317019999999993 200.710007 1.26243823632548002 0.970105720886124012 31 false 0.0567622929999999984 1.73175996821556 0.140156951312428002 -0.0287948639999999999 20 10 1.01629799999999992 0 20 false 175 186.121655373621991 1.37009995709729004 135.845001 20.0138740000000013 10 55.8553048723056023 17.0530651093332999 3.27538200000000002 20.9837269999999982 13 233.706799793599004 9.07803673755564944 25.7442020000000014 18.8402419999999999 1.55576789999999998 0 2.14348399999999994 0.969852449999999977 1.17363170000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.798330871898003 -63.2305645983476978 22.3754068264158015 -12.8285562349475999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358531391981952 2481358531391981952 863174776 2015.5 25.4717694551634004 0.220374173258846007 -3.22532633692867021 0.142124937120455014 0.909684691505626031 0.245663731244259997 3.70296700000000012 10.3528685775473992 0.40139517719694201 -47.6297182953713971 0.260413064652204984 -0.105259729999999996 0.537482600000000033 -0.028571843999999999 0.056707966999999998 -0.25737268000000002 0.0187323370000000017 0.194482180000000004 0.0123702780000000002 0.0824350499999999958 0.0669652450000000066 170 0 170 0 1.49642159999999991 192.962997 0.36811979289709601 0.667210753093131048 31 false 0.506719600000000048 1.53706592131420994 0.0470684681656192982 -0.0524895819999999999 19 10 0.353928240000000005 0 19 false 168 808.58190746536502 2.35797772240860004 342.912994 18.4190560000000012 16 329.706276893231973 9.84916800442617912 33.4755480000000034 19.0560699999999983 16 761.874600790878958 13.7781802202429002 55.295734000000003 17.5572100000000013 1.34999420000000003 0 1.49885939999999995 0.637014399999999981 0.861844999999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.875912474655991 -63.2261923502929974 22.403074690775 -12.8511968685448998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359291601831552 2481359291601831552 1441029144 2015.5 25.4737999374005 0.0495634296749892997 -3.21682802506381993 0.0341578719706238029 4.05305410726847981 0.0552473858504344967 73.3619159999999937 -11.9378709461851003 0.089810756522628904 -10.0581799630655997 0.0699360608740278028 -0.0638359039999999989 0.545168499999999945 0.027648207000000001 0.00336754790000000012 -0.191473349999999987 -0.0356875899999999982 0.0845944960000000051 -0.00695160799999999975 0.0653049500000000005 0.0911052450000000014 171 0 170 1 2.29099500000000011 209.432999 0.122476792431718995 1.13183687531479005 31 false 10.1731350000000003 1.38356818603334997 0.0121834232337838001 -0.0406389720000000024 19 10 0.0857723060000000065 0 19 false 169 10343.3454595716994 6.92509752383304988 1493.59998 15.6517130000000009 18 2853.85049090119992 13.3082334756697005 214.442469999999986 16.7128100000000011 18 11238.2344230997005 25.2491270125088008 445.093999999999994 14.6351750000000003 1.36243010000000009 0 2.07763579999999992 1.06109710000000002 1.01653860000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.871835250515005 -63.2176508743481023 22.4082183951191993 -12.8440427360272995 100001 4040.05005 3848 4205.31006 0.0780000016 0.0219000001 0.291599989 0.0452000014 0.0133999996 0.168799996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371553732845056 2481371553732845056 221186121 2015.5 25.3964876556469008 0.130940172510448011 -3.17190985587475982 0.0942138592494024957 0.535971585665005024 0.156410120648056011 3.42670660000000016 10.9623506690297994 0.22652322423364199 -17.1538131427139007 0.17170731422913299 0.0200058800000000002 0.574549100000000035 0.0108126509999999995 0.114953379999999994 -0.241939989999999994 0.234599489999999994 0.336783920000000014 -0.119127549999999999 -0.0627745299999999951 0.269969879999999995 147 0 146 1 2.61226219999999998 188.763 0.362066354442791005 2.17088123998999993 31 true 1.66096320000000008 1.54592532150911999 0.0277666811753546003 0.0340992400000000029 17 10 0.212130220000000008 0 17 false 142 2393.51399498961018 4.74826611933197995 504.082001 17.2407760000000003 16 1090.83383590620997 10.5906191535204997 103.000010000000003 17.7569920000000003 15 1865.32171965282009 11.2613837039582005 165.638759999999991 16.5850350000000013 1.23506929999999993 0 1.17195699999999992 0.516216299999999961 0.655740740000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.674333720899995 -63.210288426130198 22.3515932283544991 -12.7738468625944002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371656812061184 2481371656812061184 1103352303 2015.5 25.4021173516734997 0.196876419437522987 -3.17066943997292983 0.139250406406160987 2.02683358868093011 0.239017558557703014 8.47985300000000031 31.1415314036437998 0.319666414145894973 -6.54493856324410039 0.242008691769581008 0.130662300000000009 0.631080599999999992 0.0877032299999999931 0.156426759999999998 -0.135106830000000011 0.197026010000000001 0.399131599999999975 -0.0864694200000000052 0.0224895370000000004 0.259116599999999975 152 0 151 1 2.1762545000000002 185.651001 0.517994716148003964 2.14991395683821995 31 false 0.774401699999999971 1.29266124362518009 0.0395497067187828011 0.0825152839999999943 18 10 0.297403040000000007 0 18 false 148 1252.95779898800993 3.67529991416196999 340.912994 17.9435250000000011 13 269.708211248369992 6.31418415199320027 42.7146570000000025 19.2741529999999983 12 1548.49935653198008 8.56914976930002936 180.706299999999999 16.7871419999999993 1.45113230000000004 0 2.48701099999999986 1.33062740000000002 1.15638350000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.684420563429001 -63.206758040858503 22.3574201036939009 -12.7747647834020004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371386229736064 2481371386229736064 375715796 2015.5 25.4256482760829989 0.144911366731867997 -3.17943813575067979 0.0924051865510949061 0.554682973937329016 0.167560749670100012 3.31033949999999999 12.4251978499122995 0.233573671758582013 -7.50204254268917037 0.181517282615061004 0.000269923130000000006 0.638610239999999996 0.0384426799999999999 0.0465070750000000019 -0.138041720000000007 -0.00707864440000000039 0.0600666799999999973 -0.00456234100000000014 0.0813045599999999979 0.154023240000000006 161 0 160 1 2.26335620000000004 197.578003 0.250002534250155006 0.757398937677723039 31 false 1.30725509999999989 1.60303609097447008 0.0308607934242347004 0.0277621579999999986 18 10 0.210456160000000003 0 18 false 157 1679.69610255156999 2.2817137561249301 736.156006 17.6252880000000012 15 971.728811753079981 13.0727166811676003 74.332579999999993 17.8825259999999986 17 1114.61788717512991 12.6587038525597997 88.0515000000000043 17.1441060000000007 1.24209769999999997 0 0.738420500000000035 0.257238399999999978 0.481182100000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.739844236081012 -63.204595577860303 22.3765048054209004 -12.7915725600730994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371450653631872 2481371450653631872 203327808 2015.5 25.414026163588801 0.336781334823718026 -3.16726295126216018 0.244093725317330007 2.06539057150168004 0.416627612888277987 4.95740200000000009 -13.8849275300456991 0.580364427031993979 -13.3756280284222004 0.422946664821556018 -0.0129133389999999994 0.590257200000000037 0.10449551 0.0772945700000000069 -0.288355980000000012 0.150424809999999992 0.411712350000000005 -0.10897279 -0.0372026150000000014 0.207070620000000011 160 0 158 2 1.68040440000000002 183.563995 0 0 31 false 0.239828910000000006 1.41608845044689002 0.0713758412225456995 0.0525139759999999969 18 10 0.527093770000000017 0 18 false 158 446.916147375904984 2.31070316709960988 193.410995 19.0628010000000003 13 88.2086910451245956 13.0630321798621001 6.75254340000000042 20.4876100000000001 14 593.798362665296963 9.74523753884666988 60.9321600000000032 17.8278220000000012 1.52602909999999992 0 2.6597881000000001 1.42480849999999992 1.23497959999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.705005248613986 -63.1985808588483025 22.3700417854450002 -12.7759786760473002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358531391982848 2481358531391982848 761263030 2015.5 25.4808004178240992 0.620553881002241958 -3.22330454713531989 0.452630496601578003 -0.388742874968901975 0.722351495920609987 -0.538163069999999966 0.693958922934499012 1.17319991970310999 -0.554458245892766044 0.926459151707188955 -0.155212330000000009 0.495489420000000014 0.104080820000000004 -0.0309443120000000016 -0.361864799999999986 -0.056640465000000001 0.0745957500000000023 -0.0190790199999999986 0.0527546480000000012 0.127737600000000007 161 0 159 2 5.06747630000000004 260.204987 1.91674527258620997 3.58668151731684981 31 true 0.0583369300000000021 1.85483526407046995 0.155881349569725991 -0.0313156249999999997 19 10 1.04365409999999992 3 19 false 160 215.893759763557 2.95847297455286018 72.9747009 19.852765999999999 15 174.18967792701801 19.6607480737578015 8.85976900000000001 19.7488330000000012 12 153.043349317072995 8.93563974518169957 17.1272960000000012 19.2998830000000012 1.51571319999999998 0 0.44894980000000001 -0.103933334000000002 0.55288314999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.892030974063005 -63.2204777251530032 22.4124366685071017 -12.8526382868355995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358874989367936 2481358874989367936 1507273270 2015.5 25.5206046519678011 0.755829807004694043 -3.21943658403881994 0.509286508952388028 1.04531430838224004 0.903014509878896976 1.15758310000000009 -4.57836430548069018 1.28145631302196006 -6.52733972581648025 0.922945252773257008 -0.22585131 0.601674099999999989 0.222333609999999987 -0.0354283970000000004 -0.362435879999999988 -0.173091949999999994 0.145702059999999994 0.0621160830000000025 0.13338644999999999 0.0173499119999999986 156 0 149 7 1.72079049999999989 174.462997 0 0 31 false 0.0523384000000000002 1.24136447712925002 0.166533791012313998 -0.00783524099999999973 18 10 1.15833659999999994 0 18 false 152 165.617976079913007 1.66281288522729009 99.6010971 20.1405959999999986 11 57.8126850512093 11.4818461114999995 5.0351385999999998 20.9463310000000007 14 188.232934725299998 10.9426518496976009 17.2017650000000017 19.0751799999999996 1.48562149999999993 0 1.87115100000000001 0.805734630000000007 1.06541630000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.967838027330998 -63.199816100536502 22.4517965033386986 -12.8636772986862002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359699623096960 2481359699623096960 1179896302 2015.5 25.4860761455492018 0.166574140715321006 -3.1995996612836799 0.113616747071981994 0.367281070913478003 0.187276086965093014 1.96117439999999998 0.470863003282006976 0.302993416373650015 -2.5146163362424101 0.205521668078883002 -0.168506349999999999 0.537104959999999965 0.150823180000000001 -0.0220439959999999997 -0.282563500000000023 -0.076504210000000003 0.282773879999999977 -0.00946009400000000049 0.0731311999999999934 -0.0150584220000000001 180 9 179 1 0.237661509999999992 177.794006 0 0 31 false 0.912278649999999969 1.56103283074585009 0.0369040812321186976 -0.0414535629999999988 20 10 0.259737249999999975 0 20 false 175 1186.79933442644005 2.41787619665167997 490.843994 18.0024219999999993 17 529.21216613558704 11.9914521223277006 44.1324499999999986 18.5423149999999985 17 934.25584831159199 9.43928822241348087 98.9752399999999994 17.3357559999999999 1.23312179999999993 0 1.20655819999999991 0.539892200000000044 0.666666030000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.87987867592301 -63.1968205085400996 22.426413788211299 -12.8325395424221007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359703918691456 2481359703918691456 1383758756 2015.5 25.4831797916547984 2.12750545013118009 -3.19756059167223006 1.51358591242720997 \N \N \N \N \N \N \N 0.0207369249999999998 \N \N \N \N \N \N \N \N \N 108 0 107 1 54.3280699999999968 4500.56006 11.4319846326541992 330.207572663631993 3 false 0.00742079999999999997 \N \N 0.000274182679999999978 19 10 3.39150710000000011 0 19 false 165 668.692863526587985 8.29631801123001011 80.6011963 18.6252999999999993 15 1059.39106593510996 12.5590015948660998 84.3531299999999931 17.7887479999999982 16 2099.42751267722997 13.7908751445334996 152.233100000000007 16.4566669999999995 4.72387080000000026 0 1.33208079999999995 -0.836551669999999969 2.16863250000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.872142354738003 -63.1962284304280999 22.4244264904559998 -12.8295788032271005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359699623096320 2481359699623096320 814986694 2015.5 25.4947776332265015 0.160485601820298002 -3.2007445591689998 0.101735934655734994 0.129540884993081001 0.184361056158157011 0.702647750000000015 0.118174173265272006 0.266246303601462009 -2.10139783080314979 0.180743038248212001 -0.0139442760000000002 0.621809359999999978 0.0791465040000000064 0.0752028799999999997 -0.0676298139999999964 -0.0413464679999999973 0.298330800000000007 -0.011565199 0.151443589999999989 -0.0143472210000000003 164 0 162 2 1.60203549999999995 186.384995 0.341935808179261003 1.19151642039419992 31 false 1.10605559999999992 1.55988828503833998 0.0330514018979745014 -0.0156901259999999987 19 10 0.235993829999999988 0 19 false 159 1591.31803862815991 2.58126477898525009 616.487976 17.6839730000000017 14 747.167056048441054 8.84413763606923986 84.4816200000000066 18.1678449999999998 13 1225.32708237626002 7.36932007506440012 166.274110000000007 17.04129 1.2395349 0 1.1265544999999999 0.483871459999999975 0.642683000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.898353763431004 -63.1941038880666994 22.4342657174531013 -12.8368033690055992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358943708850688 2481358943708850688 672672665 2015.5 25.4999285411572991 1.49929043869376999 -3.20223622446110001 1.23164714494412997 1.9227036422394701 1.79903167458283009 1.0687435999999999 -2.19613964668138983 3.05092396483746997 -3.42853896952470993 3.73692190784962008 -0.27730492000000001 0.446873870000000006 0.264846350000000008 -0.158711970000000008 -0.531882999999999995 -0.160040569999999993 -0.146611230000000009 -0.113984669999999996 -0.0445433500000000024 0.33231765000000002 94 0 93 1 -1.97644759999999997 63.7582016 0 0 31 false 0.0183455439999999984 1.55348727472651005 0.37123337349742902 0.00539509529999999959 11 9 3.52099900000000021 0 11 false 95 86.0969360872826002 1.63610483167702991 52.6231003 20.8508969999999998 7 56.4023457967331012 6.93178223682050998 8.13677400000000084 20.9731449999999988 8 48.2541945185709977 7.07575870613322966 6.81964970000000026 20.5530819999999999 1.21556639999999994 0 0.420063020000000009 0.122247696000000003 0.297815319999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.910067992134003 -63.1932287967686008 22.4386064207646001 -12.8400840324772005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358982364185600 2481358982364185600 956616142 2015.5 25.5111728252299983 1.72785523525513995 -3.19764042053741981 1.25318410795095003 \N \N \N \N \N \N \N -0.0629348599999999953 \N \N \N \N \N \N \N \N \N 140 0 140 0 57.8412480000000002 5053.1001 10.3720641101356996 275.830549659659994 3 false 0.00887118899999999981 \N \N -0.00807717600000000015 20 10 2.85264870000000004 0 20 false 176 587.176553153399027 6.89992459787735957 85.098999 18.7664429999999989 18 709.442432136840011 10.9707620176382008 64.6666500000000042 18.2240940000000009 20 1500.98281076738999 14.9983604266873005 100.076459999999997 16.8209799999999987 3.76449850000000019 0 1.40311429999999993 -0.542348860000000044 1.94546320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.928114612011996 -63.1842342400038035 22.4510477360786993 -12.8399450315541994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358909349216768 2481358909349216768 1400567342 2015.5 25.5220873762253007 1.16284072727947008 -3.20180364890733982 0.991653782446109022 \N \N \N \N \N \N \N -0.276572170000000006 \N \N \N \N \N \N \N \N \N 103 0 103 0 1.06260189999999999 112.907997 0 0 3 false 0.0320824160000000025 \N \N 0.0880330299999999982 12 8 4.00418900000000022 0 12 false 105 123.333136281071006 1.54069647957773004 80.0502014 20.4606670000000008 9 68.9130912789278938 17.0832680466991 4.0339520000000002 20.7556340000000006 9 105.506498112984005 5.65718238765270964 18.6500100000000018 19.7037219999999991 1.41421510000000006 0 1.05191229999999991 0.294967650000000026 0.756944660000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.953886366153 -63.1832777030863966 22.4598675419953011 -12.8478281614004999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358703190819072 2481358703190819072 1588739736 2015.5 25.5290441807422006 1.09313431160037999 -3.22208788069645014 0.703562920710852024 2.47475579121340017 1.19200579132466 2.07612730000000001 43.4795919855812016 1.99929827240491997 -13.2856323137418997 1.32010724904485999 -0.233096100000000001 0.519118549999999956 0.325660400000000017 -0.100545549999999997 -0.304162770000000027 -0.167951689999999987 0.228083659999999994 -0.0354321079999999969 0.0840411400000000003 -0.0603338740000000026 150 0 149 1 4.01700199999999974 222.602005 2.89589830130607995 2.7964671066648199 31 false 0.0260675549999999992 1.40780398918003002 0.208282608719688012 -0.0742637800000000015 17 10 1.8155154 0 17 false 149 132.674060830581993 1.56749875830706009 84.6406021 20.3814010000000003 10 63.1778025897976008 14.2382447395181995 4.43719049999999982 20.8499769999999991 14 212.318411433509993 11.9766168028098008 17.7277449999999988 18.9444499999999998 2.07648900000000003 0 1.90552710000000003 0.468576429999999988 1.43695069999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.987229988702012 -63.1985595732816989 22.4588311642364999 -12.8692448457771995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358634471197312 2481358634471197312 142473623 2015.5 25.5485542655824993 4.70782761478988032 -3.22401219370369008 7.03544765778648973 \N \N \N \N \N \N \N 0.838649899999999948 \N \N \N \N \N \N \N \N \N 43 0 43 0 1.40134059999999994 50.7596016 0.446949453589567003 0.0142463877764717004 3 false 0.0162082049999999998 \N \N 0.431835259999999999 6 6 13.4266470000000009 0 6 false 45 79.3915941820901025 1.85639186760744002 42.7666016 20.9389290000000017 4 45.2493495379157977 15.7000521167982008 2.88211459999999997 21.2123570000000008 3 88.3210875149372043 0.538005383660887015 164.163939999999997 19.8967589999999994 1.68242540000000007 0 1.31559749999999998 0.273427960000000025 1.04216960000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.028010994118006 -63.1918557958474025 22.4766824215371983 -12.8782055829012005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481358840631879424 2481358840631879424 698614081 2015.5 25.5527461174117008 1.2826965437431801 -3.20486781242678997 0.950483686295158003 2.18648385788312982 1.4874941631688301 1.46991089999999991 9.59565133810751014 2.1835182388225598 -2.55293525597469007 2.50089111041362999 -0.0723050300000000062 0.598662849999999969 0.192457230000000007 -0.209388230000000009 -0.280240979999999973 -0.326686860000000023 -0.326692550000000026 0.0524921640000000009 0.115672570000000002 0.203600399999999987 124 0 123 1 0.400617900000000027 123.572998 1.02772777949662997 0.21518419188896401 31 false 0.0216293400000000004 1.67638022020278998 0.313108209496550993 0.0389983949999999982 15 9 2.33683750000000012 0 16 false 129 100.955788955011997 1.42621245171728006 70.7858963 20.6780380000000008 9 56.9750629835815019 16.5308220733298015 3.44659599999999999 20.9621749999999984 13 139.110170814346986 8.36471738289360012 16.6305890000000005 19.4035219999999988 1.94228819999999991 0 1.55865290000000001 0.284137729999999977 1.27451519999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.017980523800986 -63.1727889243674028 22.4879031776126013 -12.8619462792959993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359016723386624 2481359016723386624 1270692198 2015.5 25.5327205855530011 0.663192361418822984 -3.20128638397684995 0.435574260761477983 1.82592287799971009 0.767209443688145032 2.37995359999999989 -6.78665917700246002 1.15816460597128001 -10.9195891216972001 0.742877562178153039 -0.114034930000000007 0.527045499999999945 0.033934739999999998 0.106305689999999994 -0.299739540000000027 0.0768862000000000018 0.203799800000000003 -0.0121732000000000003 0.107350009999999996 0.108168766 168 0 167 1 2.47348260000000009 209.932999 1.73168234360485007 1.73173521601497993 31 false 0.0562293000000000029 1.31125052086972005 0.142796272103599992 -0.047696040000000002 19 10 1.0202194 0 20 false 168 195.882756805051002 1.30415129715077005 150.199005 19.9583760000000012 13 36.9162115936120969 9.33562375561566959 3.95433799999999991 21.4333460000000002 15 252.910374927192009 7.01674875849369961 36.0438100000000006 18.7545029999999997 1.47959210000000008 0 2.67884250000000002 1.47496990000000006 1.20387270000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.974605670447005 -63.1782187107265969 22.4701873206213989 -12.8512558996443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788070400 2481359046788070400 71464940 2015.5 25.5369785481248002 0.281443654548086009 -3.19271132458900997 0.178115618061538 2.34808690264144992 0.306399811445351999 7.66347359999999966 10.6202607983163002 0.52141430649186904 -11.2943708250486008 0.327862566639092023 -0.109722 0.500974999999999948 -0.106144820000000001 0.0945986500000000063 -0.264287260000000024 0.0778846100000000069 0.140993619999999986 0.0144629270000000004 0.0854453800000000013 0.0851905049999999997 169 0 169 0 5.25107570000000035 277.720001 1.03982377922239011 4.53355876099980026 31 false 0.312771799999999989 1.17578494424313007 0.0595254682027476015 -0.0530420799999999984 19 10 0.460870200000000008 0 19 false 166 754.983117103471045 1.82590561335897994 413.484009 18.4935229999999997 16 173.187782381279987 22.0611723299747986 7.85034369999999981 19.7550950000000007 15 1027.39036753361006 9.0863683518877707 113.069419999999994 17.2325820000000007 1.59020530000000004 0 2.5225124000000001 1.26157190000000008 1.26094060000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.974875995367 -63.1686484120315015 22.4774794845498 -12.8448481536757004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359115507551360 2481359115507551360 789072334 2015.5 25.536174446855199 3.53672487645071998 -3.18124652483631021 1.90185172771460009 \N \N \N \N \N \N \N -0.234368920000000008 \N \N \N \N \N \N \N \N \N 139 0 137 2 48.7044830000000033 3552.19995 16.4669693154596004 185.003187081708006 3 false 0.00339345079999999995 \N \N -0.142569169999999995 20 10 6.15875859999999964 0 21 true 169 252.492506054485006 4.06597047649893018 62.098999 19.6827450000000006 17 366.594754268863994 25.0733323158653008 14.6209030000000002 18.9409220000000005 15 727.314627906893975 8.29530742842164059 87.6778400000000033 17.6076149999999991 4.33244279999999993 0 1.33330729999999997 -0.741823200000000016 2.07513050000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.962285318171013 -63.1586594897102032 22.4810425431467991 -12.8338928928833997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788616320 2481359046788616320 1507031379 2015.5 25.5393390610116988 0.903092005690915967 -3.18940150307936987 0.558926372720815023 3.67043877042716993 1.11083601531167009 3.30421299999999984 11.1155592065970001 1.40363688385773 -8.40018661645633991 0.930663550141444973 -0.31181049999999999 0.648790899999999948 0.106791239999999996 0.0788143349999999993 -0.511117500000000002 -0.0500640700000000022 0.0443557350000000003 0.0734200299999999972 0.143219430000000009 0.140792379999999995 153 0 149 4 -0.698763000000000023 131.835007 0 0 31 false 0.0441179699999999994 1.59253985220983996 0.167371209398428006 -0.0531395200000000026 18 9 1.26666490000000009 0 18 false 151 146.241733093990007 1.36343033627436006 107.260002 20.2756879999999988 14 40.9625756002540982 7.90500388309957014 5.1818540000000004 21.3204199999999986 17 223.180846382114993 9.78749276896463982 22.802658000000001 18.8902779999999986 1.80621100000000001 0 2.43014140000000012 1.04473109999999991 1.38541029999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.976410025022005 -63.1646446415945988 22.4809767581187003 -12.8426383727277997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788070272 2481359046788070272 652432593 2015.5 25.5495011755353012 0.254535004832090017 -3.19323268674446981 0.148978907661996007 0.648498354353825968 0.28943576228121598 2.24056049999999995 -6.34980766870506041 0.388046983933116985 -1.98086402673321005 0.265160714525161989 -0.241060849999999993 0.66224700000000003 0.0344342799999999977 0.076100773999999996 -0.38835989999999998 0.0178263430000000014 0.101453600000000005 0.0313875399999999985 0.0933517199999999991 0.121253386000000005 168 0 166 2 1.76847029999999994 194.108994 0.523327950649512985 1.42366791337234 31 false 0.50160439999999995 1.42291876478155999 0.0479111641144900971 -0.0672567699999999935 19 9 0.344295100000000021 0 19 false 166 852.129890838274036 1.89985624468872993 448.52301 18.3621000000000016 18 323.616189080512015 11.1469820088651002 29.0317299999999996 19.076312999999999 19 813.223798014648992 7.93545073439229043 102.479849999999999 17.4863950000000017 1.33411590000000002 0 1.5899181 0.71421239999999997 0.875705700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.000344463080012 -63.1637057189494016 22.4892063605412993 -12.8499355009524994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359046788071424 2481359046788071424 429098613 2015.5 25.5498680829572997 0.343210315791258991 -3.19009150127754992 0.22985617758850499 -0.589189699429418012 0.397899183223126007 -1.48075120000000005 12.4809453390321003 0.612599689338961029 3.42097452721673978 0.426427810370485993 -0.0884202399999999972 0.534479739999999981 0.0554183129999999968 0.0685422799999999971 -0.286102240000000008 0.0308033709999999995 0.126709729999999993 -0.0161930750000000012 0.0928794800000000004 0.133498090000000014 176 0 174 2 3.74912430000000008 246.863007 0.959251147766508994 1.94408002480894004 31 false 0.192544880000000002 1.33804421847989996 0.0761326380829182997 -0.0199824679999999998 20 10 0.542612100000000042 0 20 false 172 458.267377485737995 1.6406732901571901 279.316986 19.0355680000000014 17 158.845997280374007 10.2597837562110996 15.4823920000000008 19.848948 17 476.560448159031012 8.03656312591846955 59.299038000000003 18.0666259999999994 1.38654089999999997 0 1.7823218999999999 0.813379300000000027 0.968942639999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.998062745476005 -63.1607157178988032 22.4907416763806012 -12.8471497121009008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481359875717382400 2481359875717382400 452553254 2015.5 25.5129285229738016 0.155906648180506008 -3.17207231740042017 0.0917307754334713982 0.564884989062015008 0.178430056742058002 3.16586230000000013 6.22394806276197965 0.235830343126547992 -10.3633291135663992 0.158905707274427987 -0.244049500000000003 0.667271300000000012 0.0577056499999999972 0.0683147600000000021 -0.392599079999999989 0.0210791659999999999 0.15687601000000001 0.0265913030000000002 0.0796897699999999931 0.113227053999999994 177 0 176 1 -0.0922655200000000036 168.638 0 0 31 false 1.31244969999999994 1.64705817851953995 0.0305111546287843011 -0.0623110799999999979 20 9 0.210778460000000001 0 20 false 177 1573.42632001474999 2.22988115508960005 705.609985 17.6962490000000017 18 879.564709862042037 11.4383346543759998 76.8962199999999996 17.9907189999999986 17 1055.50439520249006 10.7643682735920994 98.0554000000000059 17.2032699999999998 1.2298441 0 0.787448900000000007 0.294469829999999988 0.492979049999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.907146542692999 -63.1604172045906012 22.4623739958719995 -12.8168184051074991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266756530940032 2481266756530940032 1174799659 2015.5 25.0990377954270016 0.825160847538683018 -3.40470162200508009 0.419335840921452985 1.09448756361339994 0.96577880231711799 1.13326940000000009 4.30246749464008005 1.10664862536271991 -42.2016873709031017 0.759689694403586024 -0.154384870000000007 0.737207350000000039 -0.159095800000000009 0.201537460000000002 -0.285795899999999992 0.0669005000000000016 -0.0810866699999999996 0.0833820400000000045 0.219921220000000001 0.18500374 124 0 122 2 14.0359510000000007 488.097992 2.76895464424387017 16.7234654701963983 31 false 0.0829228399999999977 1.57969195450010003 0.156079293112621004 -0.031568236999999999 14 9 1.0332977000000001 0 14 true 122 435.658376813390021 2.7112807634128 160.684006 19.0904999999999987 11 193.486385779713004 13.4027607537347002 14.4363080000000004 19.6347619999999985 10 490.695372332887985 5.1805360030434997 94.7190300000000036 18.0348900000000008 1.57045469999999998 0 1.59987260000000009 0.544261930000000005 1.0556106999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.296144348701006 -63.5474246186617009 21.9804284593961015 -12.8806375245043991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362207885516288 2481362207885516288 418582885 2015.5 25.1199843455130001 4.18571049132182971 -3.3243314077062398 2.21612517453197011 \N \N \N \N \N \N \N 0.556478260000000002 \N \N \N \N \N \N \N \N \N 59 0 58 1 2.62307019999999991 83.9438019 4.15559188892296039 2.53303661542146008 3 false 0.0163341759999999989 \N \N 0.150430299999999989 8 7 6.22422599999999981 0 8 false 61 86.0341142137972952 1.3826966721429399 62.2220001 20.8516879999999993 4 14.2931898771683006 8.12795921642637964 1.75852129999999995 22.4635660000000001 5 119.677987572592997 12.3619837437593993 9.6811310000000006 19.5668849999999992 1.55718669999999992 0 2.89668079999999994 1.61187740000000002 1.28480339999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.262346742266999 -63.4657588090213025 22.0308124483293994 -12.8136780017772001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266692106892928 2481266692106892928 1189080254 2015.5 25.1068896005989011 0.0420855294185739984 -3.4101111246505198 0.0354531786773525023 3.53143274813891983 0.0481055401666097976 73.4100999999999999 55.1183275017157968 0.0801437399101379983 -23.1564975637412012 0.0677377081840555006 0.307372179999999995 0.475383339999999988 -0.20946532000000001 0.0465408449999999974 0.175843820000000012 0.0903892200000000062 -0.165881589999999995 0.104825219999999997 0.00108293699999999996 0.251557499999999989 132 124 127 5 3.54906150000000009 185.376999 0 0 31 true 297.937470000000019 1.59222090871062005 0.0115141147586945002 0.121268509999999996 15 9 0.0527632599999999993 0 15 false 125 210694.656680143991 60.528544259955801 3480.90991 12.3792310000000008 15 110555.999134489 140.545801912478993 786.619000000000028 12.7424330000000001 15 143332.494105224003 167.407883637341996 856.187260000000038 11.8710579999999997 1.20500680000000004 0 0.871374129999999969 0.363201139999999978 0.508172999999999986 17.8713945884583012 2.59440740638917999 3 5500 3.5 0 NOT_AVAILABLE 151.317228061777001 -63.5490035891169995 21.985849297963199 -12.8885603675407996 100001 5483.75 5303 5658 0.118000001 0.0142999999 0.201299995 0.0590000004 0.00469999993 0.101999998 200111 0.915861600000000053 0.860318499999999986 0.97935899999999998 0.683384299999999945 0.670197900000000013 0.696570699999999987 +1635721458409799680 Gaia DR2 2481360524256759296 2481360524256759296 1408957806 2015.5 25.1133603695586984 0.561490209318668998 -3.40504935454571989 0.546665751525207022 -1.09747737886126995 0.645018771512641975 -1.70146580000000003 2.1958846282820299 1.3073040329263601 -4.14253405963842969 1.11295077389703989 0.401049319999999987 0.191707130000000003 -0.0624818129999999972 0.0675105149999999932 -0.0230508580000000005 0.095245979999999994 -0.0297971300000000015 -0.0488552670000000008 -0.0121654720000000001 0.400369350000000013 116 0 115 1 -0.415926399999999974 103.305 0 0 31 false 0.0720831450000000012 1.5677999742845401 0.176809229745442997 0.0814253759999999938 13 10 1.27109249999999996 0 13 false 115 161.065610790725003 1.10699951570996991 145.496994 20.1708579999999991 11 110.212574631069998 10.3161334189104998 10.6835159999999991 20.2458099999999988 12 114.108540294231005 9.06538195266574043 12.5872840000000004 19.6186240000000005 1.39273129999999989 0 0.627185800000000016 0.0749511699999999975 0.552234650000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.325543733057003 -63.541680966891299 21.9939252393790987 -12.8862434690488996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360524256760448 2481360524256760448 1598412967 2015.5 25.1143759195684986 0.595136099358424042 -3.3997020566506202 0.549981680685368013 -0.00987142564382409958 0.681663738021483945 -0.0144813709999999998 13.9067566947425991 1.35082735797009001 -13.0148492859109997 0.960243555509951996 0.285431299999999999 0.259467779999999981 -0.203948419999999991 0.183367239999999987 0.0236706120000000006 0.074903300000000006 0.371749370000000023 0.0907337099999999952 0.130270319999999995 0.114336720000000003 125 0 122 3 3.52569460000000001 178.757996 2.09100802305990019 4.79777792949897997 31 false 0.0634034650000000061 1.30071974509116006 0.157990942728327005 0.0476175399999999999 15 10 1.19993630000000007 0 16 false 129 193.744925578523009 1.75647221474493009 110.303001 19.9702899999999985 12 69.5544452101347019 6.92956554427478011 10.0373459999999994 20.7455770000000008 11 245.831598010456986 8.04046764469267039 30.5742909999999988 18.7853260000000013 1.6278416 0 1.96025089999999991 0.775287599999999966 1.18496320000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.322516772216005 -63.5364081967709993 21.9969183166125006 -12.8816491030853992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360592976239360 2481360592976239360 73659641 2015.5 25.1051005400508984 0.218340722049179009 -3.39011888613269008 0.192413066808080013 0.96886223869905197 0.244790594357050001 3.95792270000000013 9.70830425870794933 0.481637393741378983 2.82869441242274 0.344058646879424002 0.320280520000000013 0.286141069999999997 -0.27290072999999998 0.0965821899999999983 0.102483530000000003 0.0472833069999999966 0.0613152530000000001 0.173595959999999994 0.151353939999999992 0.190491400000000005 118 0 117 1 1.03247789999999995 127.445999 0 0 31 false 0.522855500000000029 1.5516889371109599 0.0575790661656370995 0.0682992899999999986 14 10 0.436788979999999993 0 14 false 117 655.562472635322024 1.87362385510115992 349.890015 18.6468300000000013 13 313.290976659387013 13.3906390630301999 23.3962670000000017 19.1115190000000013 11 505.36675316203798 13.4944234703764998 37.4500430000000009 18.0029029999999999 1.24878679999999997 0 1.10861589999999999 0.464689249999999998 0.643926600000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.294586822392006 -63.5316511494321006 21.9917245428081998 -12.8693230214599001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361387545902336 2481361387545902336 57353775 2015.5 25.1032173053081991 3.32255994414374012 -3.3767201295537399 3.24419151096132996 \N \N \N \N \N \N \N 0.246320189999999994 \N \N \N \N \N \N \N \N \N 105 0 103 2 33.4539339999999967 1704.18005 19.2027398064103991 164.475416810196009 3 false 0.0024143131 \N \N 0.104136350000000003 14 9 8.36100099999999991 0 14 true 120 142.476936837135014 2.22277565975461 64.0987015 20.3040050000000001 12 163.046282781270008 8.78226920758586083 18.5653930000000003 19.8206099999999985 10 440.26626236560702 5.3309495998496601 82.5868399999999951 18.1526320000000005 4.23445750000000043 0 1.66797829999999991 -0.483394619999999997 2.15137299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.278040212451998 -63.5203087324892977 21.9950105603822017 -12.8561777519734992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361383250224896 2481361383250224896 671836782 2015.5 25.1037549039952985 0.123128432937297999 -3.37440260792326985 0.0980576897865715058 0.474990172914889985 0.142038100616515006 3.34410400000000019 7.1676220439303 0.261641940280411989 -7.35487494738497993 0.180464210311729989 0.209142610000000007 0.316149120000000006 -0.20062257 0.107762629999999998 -0.0412442349999999971 0.080737299999999998 0.0461555719999999989 0.10403801 0.124531760000000005 0.205496420000000013 151 0 150 1 1.49777019999999994 171.285004 0 0 31 true 1.35908030000000002 1.54732783735141011 0.0324730589915544002 0.0373598100000000002 17 10 0.238371639999999996 0 17 false 147 1428.69275381478997 2.08451773901188009 685.382996 17.8010179999999991 14 706.475627690572992 11.4785027379137006 61.5477139999999991 18.2286450000000002 15 1084.84104388489004 10.5863160475959006 102.475784000000004 17.1735040000000012 1.25381520000000002 0 1.0551413999999999 0.427627560000000018 0.627513899999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.276930614753013 -63.5179819060502027 21.9964003305649989 -12.8542224860859999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254455747111168 2481254455747111168 1532742778 2015.5 25.1227907767862995 0.493484434861248988 -3.4754611071777699 0.386826671890637019 1.2846137867065901 0.548033923389045996 2.34404060000000003 2.98004550378945021 1.09212562374229005 -14.7749659283434998 0.667966016821867958 0.143642280000000011 0.210535179999999988 -0.297779650000000007 0.197324369999999999 -0.0788274199999999953 0.236200450000000006 0.222031200000000012 0.143349470000000007 0.0425546649999999985 0.181151299999999987 133 0 133 0 4.97432039999999986 224.253998 1.98867128583964003 4.99953419561170964 31 false 0.101332320000000004 1.35558762525405996 0.118623094793187001 0.0435002739999999985 15 9 0.984538499999999983 0 15 false 133 305.261314528007006 1.64451086741406005 185.623993 19.4766860000000008 6 262.072311502116975 38.6933391791353003 6.77306030000000003 19.3053360000000005 5 485.900158115098975 29.8939367246338001 16.2541370000000001 18.0455530000000017 2.4502695000000001 0 1.25978279999999998 -0.171350479999999999 1.43113329999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.411859533504014 -63.6014348903614035 21.9762053975718992 -12.9551501703355001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254455744580480 2481254455744580480 561907580 2015.5 25.1228189085565994 0.260809781247636985 -3.47461951924233992 0.188204734216836006 0.683750419581133029 0.278554888462882011 2.45463440000000022 0.619790647200281986 0.582708250157341956 -14.1263731918534994 0.328443001649520006 0.0437896799999999975 0.185854240000000004 -0.33117348000000002 0.189677790000000013 -0.13835132 0.24139701999999999 0.228755669999999994 0.114030389999999995 0.0218092000000000008 0.123043349999999996 132 0 132 0 56.9099599999999981 4898.89014 1.54678881640578991 217.143646449171001 31 true 0.399221930000000003 1.52296885864325993 0.0619097031348413984 0.0386769029999999986 15 9 0.525208530000000007 0 15 false 131 20014.4686812574 14.0733234773045996 1422.16003 14.9350050000000003 15 10114.0283699553001 28.7245011190812001 352.104579999999999 15.3390780000000007 15 14489.2744993219003 39.3828704405265029 367.908050000000003 14.3593030000000006 1.22927579999999992 0 0.979774499999999993 0.404072759999999975 0.575701699999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.411111924653994 -63.6006612183680033 21.9765513056930999 -12.9543785358766002 100001 5338 5252 5572.91016 0.753000021 0.371399999 0.949999988 0.377000004 0.184 0.470499992 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254455744582528 2481254455744582528 885727336 2015.5 25.1229476911155984 0.285463338164529012 -3.46890016061855988 0.232948605305657003 -0.878740807896769005 0.32009557652315701 -2.74524500000000016 9.6222957908581499 0.632053182446815964 -5.85271831729683001 0.414665416246068008 0.175725240000000005 0.213976980000000011 -0.282361980000000012 0.181833419999999996 -0.0609642800000000026 0.22118945000000001 0.162951440000000003 0.143517900000000004 0.0353393479999999996 0.207807259999999994 132 0 132 0 0.162709039999999999 128.936005 0 0 31 false 0.290960580000000024 1.51062398934186004 0.0737982942209110954 0.0389398629999999982 15 9 0.572799500000000017 0 15 false 131 441.558592671384019 1.53138144935422993 288.339996 19.0758949999999992 13 239.528323769859014 10.8988525969186991 21.9773880000000013 19.4029960000000017 13 306.842187730364003 14.8380007937404006 20.6794830000000012 18.544632 1.23736810000000008 0 0.858364099999999963 0.327100749999999996 0.531263350000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.405905547237012 -63.5954297835561988 21.9788426262912004 -12.9491115466669005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254322601080832 2481254322601080832 811021187 2015.5 25.1602525080502986 0.0431622260373896033 -3.47251100151058001 0.0338705078105000987 1.45423292203598997 0.0485006492497256983 29.9837820000000015 10.2572670108195005 0.0937518460386843056 -31.7034543383851002 0.0689196547423771011 0.125180719999999995 0.292681159999999996 -0.255235170000000011 0.0979720060000000004 -0.13539174000000001 0.119480126000000006 -0.00258979710000000005 0.0791692299999999932 0.0261795400000000011 0.239987630000000007 142 0 141 1 2.48668099999999992 180.466003 0.127409953689918004 1.59125444692539997 31 true 14.8109979999999997 1.57533963186202008 0.0120525224778871998 0.0712333099999999941 16 10 0.0941179300000000024 0 16 false 139 15505.5967861437002 7.79090528909681002 1990.21997 15.2121449999999996 16 7495.47065113656026 25.6746725739706996 291.940279999999973 15.6643910000000002 13 11575.7899885332008 22.7749688116110995 508.268100000000004 14.6030440000000006 1.22995980000000005 0 1.06134700000000004 0.452245699999999973 0.609101299999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.485113236854005 -63.5828482259104035 22.0129788550395986 -12.9662257256665008 100001 5664.24023 5121 6169.8501 0.156000003 0.0529999994 0.254999995 0.0828000009 0.0308999997 0.136999995 200111 0.560939900000000047 0.472770420000000025 0.686263139999999994 0.291806600000000027 0.270323660000000021 0.313289550000000028 +1635721458409799680 Gaia DR2 2481254597478987648 2481254597478987648 66215055 2015.5 25.1529365655226016 0.0827093996113537067 -3.45007366564479989 0.0570440506569373992 2.2986962203144401 0.082834459918341305 27.7504829999999991 12.6955578610422997 0.207274603656666001 10.5627519562769994 0.112500544051045995 0.068840995000000002 0.0492434579999999969 -0.4926431 0.13586319999999999 -0.0920855000000000007 0.132645999999999986 0.127167360000000007 0.240693390000000007 0.0136175640000000004 0.0651126999999999956 124 0 124 0 1.90619200000000011 150.117004 0.096098900713496499 0.278920538157494013 31 false 4.94995449999999959 1.47338823385913997 0.0193460398498297992 0.0135799089999999994 14 9 0.19519489000000001 0 14 false 123 4435.2033328296302 5.43807150688787999 815.583984 16.5710809999999995 13 1289.0924013255501 19.9452112952113012 64.6316759999999988 17.5756779999999999 13 4688.27792988787041 10.1060798953710993 463.906679999999994 15.5843869999999995 1.34771060000000009 0 1.99129099999999992 1.00459670000000001 0.986694340000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.448793549556996 -63.5656581377877998 22.014521667732101 -12.9426778741507 100001 3925.48999 3710.33008 4063 0.58130002 0.328900009 0.828100026 0.266499996 0.147200003 0.412099987 200111 0.521051299999999995 0.486378729999999981 0.583233360000000034 0.058080602000000002 0.0537217860000000005 0.0624394200000000024 +1635721458409799680 Gaia DR2 2481254318305626752 2481254318305626752 299902054 2015.5 25.1703757141107012 0.276261366835593991 -3.47423406673352009 0.228796898269465004 2.08621751447414994 0.317824528377870008 6.56405450000000013 5.59693381279876956 0.561322384365613991 8.32657227113593912 0.429685889647823005 0.18770096 0.415741440000000018 -0.131318479999999987 0.153319750000000005 -0.0763115359999999993 0.190394979999999991 0.295223799999999981 -0.00822126999999999927 -0.00795710300000000009 0.229128269999999995 132 0 132 0 0.828375500000000042 139.951996 0.226316129242540992 0.121893301641137999 31 false 0.310017619999999994 1.33885940431717998 0.0711076603115123052 0.000847941500000000013 16 10 0.513055299999999992 0 16 false 131 450.131418917422991 1.46879312057113998 306.463013 19.0550169999999994 12 125.039255728385001 11.2675672653752006 11.0972720000000002 20.1087719999999983 12 532.850527479286029 12.2740877982080008 43.4126400000000032 17.9454059999999984 1.46155049999999997 0 2.16336629999999985 1.0537548000000001 1.10961149999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.50730779852401 -63.5800989990653989 22.021961128563099 -12.9715599919362994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254318308699776 2481254318308699776 1068721051 2015.5 25.1712094234299997 0.553907319306957024 -3.47433726513119989 0.414562863911543011 0.421651624933078006 0.646171697670220979 0.652538060000000031 4.5285508080916701 1.01853241912474002 8.33088166543380915 0.753901900744174958 0.106755320000000001 0.525612650000000015 -0.129643709999999995 0.138194380000000006 -0.120987529999999996 0.175132420000000011 0.302396739999999997 -0.00594384640000000016 0.0129329679999999995 0.203366059999999987 131 0 131 0 4.15353999999999957 203.186996 1.60541531494007006 2.40402698748525001 31 false 0.0905747799999999936 1.10332127758109011 0.139403260778698995 -0.0337847500000000023 15 10 0.920664600000000055 0 15 false 130 236.601810493350001 1.57645329912384002 150.085007 19.7533199999999987 7 55.8950163845123029 12.8273189554147002 4.35749799999999965 20.9829560000000015 8 292.919244391692985 17.687203156787799 16.561083 18.5950500000000005 1.47426710000000005 0 2.38790509999999978 1.22963519999999993 1.15826990000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.50909836756901 -63.5798374256680034 22.0227155627504985 -12.9719633236771994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481254318305628672 2481254318305628672 1661762698 2015.5 25.1767935865385013 0.621018054605743997 -3.46990066586965984 0.636454753685359975 0.103961458382883995 0.705840215051564024 0.147287520000000005 1.38342897521217001 1.43591749865759999 -3.10134169244751989 1.6046898606325799 0.371407150000000019 0.305921759999999987 -0.188818039999999993 -0.0409575250000000016 0.0721340550000000025 -0.0136669449999999998 -0.226899879999999998 -0.0368663560000000029 -0.129664599999999991 0.446514699999999987 124 0 122 2 0.547080299999999964 124.872002 0 0 31 false 0.0553571200000000027 1.59247064773227009 0.196189087606256002 0.0602009449999999988 14 9 1.61785920000000005 0 14 false 121 137.918377078495013 1.2423796836787 111.011002 20.3393100000000011 9 82.3347654417047039 14.0158073869133997 5.87442200000000003 20.5624299999999991 11 82.2826383470671061 10.2848577560252004 8.00036700000000067 19.9736499999999992 1.19358579999999992 0 0.588779449999999982 0.223119740000000011 0.365659699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.516174703899992 -63.5734471288598968 22.029712703248201 -12.9698996899583001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347433196434304 2481347433196434304 35592113 2015.5 25.2031970246829005 0.0444834898478701987 -3.46776624522420018 0.0353290363851061981 1.05945919133200994 0.0489284333428293972 21.6532419999999988 1.96977459969529001 0.0961206984481399046 0.0546395709845510016 0.0720145112288080036 0.146702109999999997 0.328675060000000019 -0.196190730000000008 0.147439149999999991 -0.0448516200000000018 0.222238059999999987 0.144785390000000014 -0.00731405800000000002 -0.069938100000000003 0.223680779999999996 149 0 148 1 -1.30669999999999997 121.421997 0 0 31 true 12.5873574999999995 1.55976965189795003 0.0127609527617978998 0.041466481999999999 17 10 0.0962294300000000047 0 17 false 149 10040.0575782220003 7.16099508456396006 1402.05005 15.6840250000000001 15 4729.52415103507974 17.4113643551571009 271.634299999999996 16.1643450000000009 15 7627.35344495185018 17.5308781080336011 435.081099999999992 15.0559849999999997 1.23075760000000001 0 1.10835930000000005 0.48031997999999998 0.628039360000000046 \N \N 0 \N \N \N NOT_AVAILABLE 151.567664748216998 -63.5602647641391982 22.0556545432916984 -12.9776511989482 100001 4974 4918.14014 5119.33008 0.0289999992 0.00800000038 0.3028 0.0120000001 0.00389999989 0.143099993 200111 0.843425800000000003 0.796217260000000038 0.862693099999999991 0.392293930000000013 0.352354849999999997 0.432232999999999978 +1635721458409799680 Gaia DR2 2481348429629043584 2481348429629043584 974321193 2015.5 25.1655054475434987 0.612098056650973055 -3.44625010634995999 0.622867762334861963 1.21021721801008009 0.71366696362208204 1.69577310000000003 -7.46069382803752035 1.38058797060650007 -7.5239464201212396 1.30341850559384009 0.363038719999999981 0.257440720000000012 -0.154517139999999997 0.0229745540000000012 -0.0301086640000000003 -0.0131352440000000008 0.0256956420000000012 0.0412929319999999975 0.0872499899999999995 0.30677637000000002 114 0 111 3 0.763972459999999964 116.805 0.693386530858846051 0.222780309917714997 31 false 0.058716382999999997 1.20865091776506994 0.185666935116864995 0.107435379999999997 13 10 1.34917970000000009 0 13 false 110 140.526250383729007 1.14181821549613005 123.071999 20.3189719999999987 7 46.3336524611136014 6.5122911361519904 7.11480050000000031 21.1866470000000007 9 205.970925885418012 9.23125399505503985 22.3123460000000016 18.9774059999999984 1.79542669999999993 0 2.20924189999999987 0.867675799999999997 1.34156610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.470632807890013 -63.5568562035704971 22.0279335690871996 -12.9437596581920005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348292189895808 2481348292189895808 1329717265 2015.5 25.2015130244958989 0.0944450580347380025 -3.4418267036859298 0.0759330435185940067 0.458228912424659018 0.106285260752310998 4.31131170000000008 9.27781333331106062 0.217943429209881995 -7.19178504761632986 0.15200486541154401 0.203058929999999999 0.244620520000000008 -0.0535952000000000026 0.152452470000000007 -0.0267368569999999993 0.205730439999999987 0.173719609999999997 -0.112662880000000007 -0.0653052900000000019 0.237200560000000005 127 0 126 1 0.702194199999999991 131.548996 0.14262779632719999 0.390884768455199982 31 false 2.69991519999999996 1.58520627125220992 0.0256498653013833011 0.0165734960000000001 15 10 0.201635380000000003 0 15 false 123 2609.70972407665022 3.09767247748095986 842.473999 17.146885000000001 12 1315.22315383450996 11.2324883780602995 117.090990000000005 17.5538899999999991 12 1854.6169077060199 7.16843457673363016 258.719940000000008 16.5912840000000017 1.21463319999999997 0 0.962606430000000013 0.407005300000000014 0.555601099999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.539380614201008 -63.5375280570602996 22.063882405274601 -12.9529247877475999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347364477103360 2481347364477103360 758979210 2015.5 25.2082101014321012 27.4562130804915014 -3.47510671931582005 10.8678054901135006 \N \N \N \N \N \N \N -0.980526699999999973 \N \N \N \N \N \N \N \N \N 50 0 50 0 0.051849797000000003 44.8255005 0 0 3 false 0.0190385700000000012 \N \N 0.183210280000000003 6 4 3788.01420000000007 0 6 false 52 70.7935451941460059 1.3759565785763499 51.4504013 21.0633809999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.584872450976007 -63.5647621937919993 22.0576443213616002 -12.9863207977825006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347364476956544 2481347364476956544 769605321 2015.5 25.2172190563064014 0.209833678194108003 -3.47534662238801983 0.18559128854142401 0.297848843580253986 0.243998711133308011 1.22069849999999991 6.26148164386485995 0.467117736180333976 -2.37138187128222011 0.331919835548460995 0.25834832000000002 0.23566680000000001 -0.152786599999999995 0.180689860000000008 -0.14062688000000001 0.197611199999999987 0.280856039999999973 0.0421629249999999969 0.018176910000000001 0.274368759999999989 139 0 137 2 1.75624690000000006 161.876007 0.590113272970290037 1.54503589468195002 31 false 0.483007880000000001 1.66108573572525997 0.0564972994266232029 0.0889172399999999946 16 10 0.428242679999999987 0 16 false 137 718.559896998824001 2.02165500937572995 355.432007 18.5472089999999987 15 389.430037936625013 8.92949683077267942 43.6116450000000029 18.8753150000000005 15 500.590399871403008 6.13570691404621993 81.586426000000003 18.0132140000000014 1.23861700000000008 0 0.862100599999999995 0.32810592999999999 0.533994700000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.603360525285012 -63.561133326250399 22.0661294033216997 -12.9898649016381995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347467556172928 2481347467556172928 195921965 2015.5 25.2258460953205983 0.0619962625683165014 -3.46302770229960988 0.0488739164103182966 2.90670244742692985 0.0705613967753681987 41.1939470000000014 52.5221265757095992 0.140456156073485994 -13.9370134738671005 0.0961303684314124968 0.116382613999999995 0.214478749999999996 -0.265395600000000009 0.121285274999999998 -0.191759120000000005 0.160189269999999995 0.118503239999999996 0.0653941999999999996 -0.0106671909999999995 0.224148900000000012 149 0 146 3 0.963156099999999959 157.082993 0.138015434962429989 0.87416047080905801 31 true 6.20513250000000038 1.38579791074883008 0.0165481063538731009 0.0493807699999999974 17 10 0.13380149999999999 0 17 false 146 5865.65988446658957 6.2828846245330503 933.593018 16.2675739999999998 16 1619.42366369023989 9.34853131876396937 173.227599999999995 17.3279880000000013 17 6465.60397072100022 17.0500134104234 379.214020000000005 15.2353970000000007 1.3783662000000001 0 2.0925902999999999 1.06041340000000006 1.0321769999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.609003156932999 -63.5463146240899022 22.0790107114470011 -12.9815969319590003 100001 3706.33008 3556 4336.66992 0.0496999994 0.0280000009 0.351999998 0.0350000001 0.0142999999 0.197999999 200111 0.572837400000000052 0.418416259999999984 0.622295739999999986 0.0557873030000000034 0.0529294719999999982 0.0586451330000000021 +1635721458409799680 Gaia DR2 2481347536275650560 2481347536275650560 532929764 2015.5 25.2211702112190004 0.606690847720072979 -3.45516480065733989 0.531421576355435965 1.02231282922643008 0.690621042804139051 1.48028040000000005 0.0684366842732336 1.35719655901496994 -2.23791745669772002 0.967799201895083949 0.255286279999999977 0.268835339999999978 -0.105973676000000003 0.207221640000000012 -0.0976741200000000032 0.25836969999999998 0.35942542999999999 -0.0334276739999999975 -0.0400360150000000012 0.275300119999999982 139 0 136 3 2.96518639999999989 184.257996 2.19269109484109981 4.97558314794633016 31 false 0.0589533370000000015 1.54955019448632991 0.158631491365681998 0.0462768260000000001 16 10 1.24367490000000003 0 16 false 136 181.045492926940994 1.35194303560229989 133.914993 20.0438960000000002 11 58.1312982258866029 6.29704356857453984 9.23152299999999926 20.9403630000000014 11 199.639434965579994 8.58071767902245064 23.2660540000000005 19.0113050000000001 1.42378990000000005 0 1.9290581 0.89646720000000002 1.03259089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.591984301530005 -63.541203787376098 22.0775392885811002 -12.9725662279104998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347506211548928 2481347506211548928 1397511754 2015.5 25.2359806854912989 4.38298959253260989 -3.44753384477118008 1.89793006574019008 \N \N \N \N \N \N \N -0.303806699999999985 \N \N \N \N \N \N \N \N \N 119 0 119 0 30.8431950000000015 1498.08997 14.1654144564890991 88.123726180394101 3 false 0.00445364139999999964 \N \N -0.0510177050000000035 15 8 10.6757760000000008 0 16 true 130 159.862440734655991 3.4911664351222802 45.7905998 20.178999000000001 14 166.806079780685991 4.98681183256579974 33.4494439999999997 19.7958579999999991 15 388.523516300825008 12.4880055862422008 31.1117339999999984 18.2883759999999995 3.47379660000000001 0 1.50748250000000006 -0.383140560000000019 1.8906231 \N \N 0 \N \N \N NOT_AVAILABLE 151.614643623559999 -63.5279821714440018 22.0945294634705007 -12.9709335416557003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347570635390720 2481347570635390720 1490493599 2015.5 25.2298954080794999 0.84615090980414398 -3.43943225624785009 0.994845583587338989 -0.737510353101954008 0.927677988300199985 -0.795006899999999961 -1.09241215709483996 1.98967383234509998 -2.90403879018007993 1.96411807551570994 0.474378799999999989 0.0931888899999999964 -0.026325972999999999 0.278338699999999994 -0.121528800000000006 0.339895200000000008 0.323838499999999974 0.0101297350000000008 -0.126987430000000012 0.496368379999999998 96 0 96 0 -0.0356349050000000014 89.857399 0 0 31 false 0.0397962440000000015 2.12996107946315982 0.250958058513744975 0.190009879999999992 12 8 2.16710329999999995 0 12 false 97 106.573964391447007 1.18042364519812004 90.2845001 20.6192379999999993 7 74.0076461762860021 20.9078208164598998 3.53971120000000017 20.6781959999999998 8 73.6723136697504941 6.29713974612657967 11.6993290000000005 20.0936580000000014 1.38570389999999999 0 0.584537500000000043 0.0589580540000000028 0.525579449999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.594553308329012 -63.5232578755810025 22.0918063794666004 -12.9611615989935007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347884168670720 2481347884168670720 1472886525 2015.5 25.2429154737297985 0.0892075327017329972 -3.44541138674724001 0.0712312820674012998 0.959171072744654962 0.100135288115184004 9.57875199999999971 11.2621935546222005 0.198600920584244001 5.9914442121944802 0.138973969096276989 0.135072959999999992 0.280284370000000005 -0.200488080000000013 0.156043170000000009 -0.134050849999999999 0.231384000000000006 0.244173770000000012 -0.0146110094999999992 -0.0694330499999999962 0.225247090000000011 158 0 157 1 0.0333298100000000014 151.914001 0 0 31 false 2.59365990000000002 1.52366148033409998 0.0241063565754599009 0.0128195480000000001 18 10 0.184809580000000001 0 18 false 157 2425.67412396574991 3.26710802072617978 742.453003 17.2262839999999997 16 1010.15682265372004 10.1217066990879996 99.8010299999999972 17.8404160000000012 16 2023.10738700583011 11.4171332260608995 177.199250000000006 16.4968719999999998 1.25048300000000001 0 1.34354400000000007 0.614131899999999953 0.729412100000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.626639377824006 -63.5231011371259982 22.1019352222199004 -12.9715169162447008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347879873036544 2481347879873036544 678624012 2015.5 25.2482828206275016 0.846959208328159963 -3.43731465955267002 1.02046377189399995 1.64372194574836006 0.975489871461887037 1.68502200000000002 -1.68339580659232002 2.42298026129972 0.798642706063512953 3.03439017048297011 0.503641299999999958 0.0931430459999999932 -0.133617979999999997 -0.151332529999999993 -0.13587376000000001 -0.204732360000000002 -0.38956404 -0.13289571 -0.0777885539999999959 0.694076359999999948 102 0 100 2 1.25203360000000008 112.575996 1.6982985094076799 0.855292373832026054 31 false 0.0357061139999999971 1.90065078324508008 0.27347793801454201 0.132986259999999995 12 9 3.1731815000000001 0 13 false 103 111.612469330918003 1.3550332258486899 82.3687973 20.5690840000000001 11 52.0695201636672991 6.63957595998999039 7.84229600000000016 21.0599290000000003 11 77.5802794465922005 6.61493918138655967 11.7280420000000003 20.0375419999999984 1.16160679999999994 0 1.02238659999999992 0.490844730000000007 0.531541799999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.629724139630014 -63.5134902312882019 22.1101122683180016 -12.9659702896247992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347227038200448 2481347227038200448 712254956 2015.5 25.2538386051992987 0.490119089264842989 -3.47638348436476985 0.457296057318509974 1.65799946640377005 0.577619253053898052 2.8704019999999999 6.6600598375489497 1.12367951982872993 -33.1079713314507984 0.918897730851698014 0.290234629999999993 0.228724289999999997 -0.0944663099999999978 0.132971780000000012 -0.124720015000000004 0.167335239999999996 0.203289730000000002 -0.0392439180000000026 -0.0374817480000000022 0.323639540000000003 139 0 138 1 1.01678289999999993 149.559998 0.507743046705968037 0.166232498365640996 31 false 0.0791278599999999943 1.21363052905183011 0.147453781489821995 0.0359015759999999975 16 10 1.06019430000000003 0 16 false 138 174.89036216029001 1.12905859593395008 154.899002 20.0814510000000013 11 38.9429783974804025 5.24009811632901989 7.43172700000000042 21.3753150000000005 14 254.975580086408996 8.19755523849931045 31.1038570000000014 18.7456740000000011 1.6805874999999999 0 2.62964060000000011 1.29386329999999994 1.33577729999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.678522395426995 -63.5464148217264011 22.1005982473142986 -13.0043262686647996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347673716395392 2481347673716395392 1629416641 2015.5 25.2571557310824986 1.11145278947428006 -3.45256347048677004 1.06621081261702999 1.51686509397992997 1.13223111924785003 1.33971330000000011 36.138719528417603 3.22501840568070985 -55.3392670211484017 3.49083684691635998 0.414187000000000027 -0.0988132949999999954 -0.565762039999999966 -0.240513880000000013 -0.202901749999999992 -0.275003019999999987 -0.387677129999999981 0.28468897999999998 0.0516414269999999967 0.543807400000000052 96 0 96 0 0.972025099999999975 104.023003 2.06099274370530017 0.946410767077430992 31 false 0.0283748769999999997 1.16391012716287001 0.292533206992929007 0.0978674499999999947 12 8 3.72497999999999996 0 12 false 98 97.5553302688318951 1.3018894291446601 74.9337006 20.7152390000000004 6 41.7995272310459995 14.0351568128255 2.97820159999999978 21.2984599999999986 12 133.813014669106991 8.21327969123269952 16.292273999999999 19.4456750000000014 1.80013280000000009 0 1.85278509999999996 0.58322143999999998 1.26956369999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.662320739201988 -63.5234752599101 22.1127819101727994 -12.9834116997646003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347678010268160 2481347678010268160 751842985 2015.5 25.2591817312829008 0.0872282504730857028 -3.4501584292664802 0.0703780519329118975 0.756624092740983967 0.0990686527862880972 7.63737150000000042 -4.61819548120334034 0.195176462120177002 0.33674130454213802 0.146129401454981989 0.129300159999999997 0.280661549999999982 -0.174082900000000013 0.128978249999999989 -0.141860490000000006 0.203148899999999993 0.174111619999999995 -0.0412495100000000031 -0.0862945100000000048 0.242385970000000006 146 0 146 0 1.74059199999999992 171.535004 0.251778273326224988 1.57144284100120002 31 false 2.75318620000000003 1.56030760543614 0.0241291322421183993 0.0267819299999999989 17 10 0.182995130000000006 0 17 false 146 3016.28879063708018 3.65952722473977987 824.229004 16.9896829999999994 17 1332.50527655321002 11.8091675257359991 112.836510000000004 17.5397169999999996 17 2362.75684487408989 11.9500760520385008 197.718979999999988 16.3283729999999991 1.22510220000000003 0 1.21134380000000008 0.550033569999999972 0.661310199999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.664106902593005 -63.5204355527800999 22.1156218692288995 -12.9819231705427001 100001 4847.77979 4804.58008 4878.72998 0.124300003 0.00600000005 0.326099992 0.0529999994 0.00190000003 0.153699994 200111 0.692005459999999961 0.683253769999999983 0.704506100000000024 0.238278139999999999 0.17403268999999999 0.302523580000000014 +1635721458409799680 Gaia DR2 2481347639356717056 2481347639356717056 536789744 2015.5 25.2891114126315983 5.55290258779194978 -3.45144135554710019 4.7795863405771204 \N \N \N \N \N \N \N -0.621182699999999977 \N \N \N \N \N \N \N \N \N 34 0 33 1 1.96644039999999998 44.5294991 6.02489795918264015 1.43683839544966996 3 false 0.00894739850000000024 \N \N -0.0732007249999999943 5 4 5020.65040000000045 0 5 false 34 62.9552147096317967 2.3116946991020102 27.2334003 21.1907859999999992 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.725852326112005 -63.5087769571028034 22.1436302059180008 -12.9941438062539003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347811153559680 2481347811153559680 1614980974 2015.5 25.2839788656999005 0.302503725306032978 -3.43787685877415994 0.279355402535356012 -0.0322212845030726974 0.356540818124387981 -0.0903719399999999978 8.54630164292309047 0.701519853241009961 -6.39516288903396024 0.544043954848011047 0.221054179999999989 0.23685059 -0.0917875539999999934 0.132918499999999995 -0.120176669999999999 0.125953869999999996 0.334371540000000023 -0.0500655200000000022 -0.00481634499999999965 0.183955640000000004 147 0 146 1 0.383207980000000004 146.848007 0 0 31 false 0.194272899999999998 1.56822860951159004 0.085238859621561594 -0.00919724300000000078 17 10 0.6329901 0 17 false 146 337.522925403112026 1.36913344026485007 246.522995 19.3676069999999996 13 173.138226795152008 5.90618884902063002 29.3147130000000011 19.7554049999999997 13 237.761801735775009 8.07659918440107027 29.4383559999999989 18.8215660000000007 1.21739890000000006 0 0.933839799999999998 0.387798299999999985 0.546041499999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.702428566886994 -63.4987253091029018 22.1438818464060994 -12.9796461035529003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344413835123456 2481344413835123456 1097927963 2015.5 25.3124792201594992 0.0897206031180901031 -3.47175253000557005 0.0673401206181800938 0.419397245862071999 0.0982810184992671948 4.26732699999999987 6.22331190154258973 0.190086810069134998 -5.60596759435524028 0.130529107207880996 0.0863256899999999966 0.376405029999999974 -0.165806399999999993 0.0953877699999999967 0.0052052130000000002 0.0589059739999999998 0.155594160000000009 0.0222563650000000002 0.0879122839999999933 0.0357995899999999992 148 0 144 4 -0.566681899999999961 129.128006 0 0 31 false 2.75769600000000015 1.56813836281221008 0.0225271715579201011 -0.0491726700000000017 17 10 0.172500010000000009 0 17 false 142 2628.22740085549003 3.37590334538701997 778.526001 17.139208 16 1426.55959526276001 12.7120965100346002 112.220640000000003 17.4656640000000003 17 1763.55039594416007 11.3218603162225993 155.765080000000012 16.6459499999999991 1.21378769999999991 0 0.819713600000000042 0.326456069999999987 0.493257520000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.792650332280999 -63.5170875729969993 22.1581852568690998 -13.0216300025546996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344718777104256 2481344718777104256 975630627 2015.5 25.3131263774929991 0.0497419337723421992 -3.45623122950574002 0.0373369637079720013 5.29579413766118012 0.0537480480385377005 98.5299799999999948 -29.1806941106643016 0.101243350992036005 36.4888114359391977 0.0692735740214270035 0.154470099999999999 0.395884960000000008 -0.209880900000000009 0.139196769999999997 0.0984100200000000008 0.137658389999999992 0.044328447 0.07616705 0.0862199700000000069 0.102536290000000002 150 0 149 1 3.70623499999999995 215.625 0.189942751847723995 2.99912052266504991 31 true 10.0962259999999997 1.33693505950121994 0.0134448578757454008 0.0141750250000000008 17 10 0.0978532800000000008 0 18 false 149 12755.6217302846999 9.42585227362327949 1353.26001 15.4241109999999999 15 3218.58580427220022 18.7381715181237993 171.766269999999992 16.5822259999999986 16 14600.3210664974995 32.2897296617712968 452.166099999999972 14.3510139999999993 1.39694539999999989 0 2.2312116999999998 1.1581144000000001 1.07309720000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.778985039564986 -63.5027985787270026 22.1646808558246988 -13.0074428596453 100001 3534 3498 4103.22998 0.40200001 0.108599998 0.639900029 0.169499993 0.0445000008 0.326099992 200111 0.543064699999999956 0.402841300000000013 0.55430025000000005 0.0414442299999999986 0.0405287630000000024 0.0423597000000000001 +1635721458409799680 Gaia DR2 2481344723072768640 2481344723072768640 934013266 2015.5 25.3142929074429013 0.0886023557469242939 -3.45574540516058981 0.0637482437958197951 5.35522080031995973 0.0960153252906948973 55.7746470000000016 -28.1108452175743011 0.187759785331788998 37.2055923410166969 0.119050900109566996 0.0992122740000000031 0.341468449999999979 -0.195586320000000008 0.134990720000000008 0.0103362200000000001 0.132245599999999991 0.109966640000000004 0.0398843470000000005 0.0810634999999999967 0.0843834799999999968 159 0 156 3 5.38899229999999996 264.376007 0.404412391677924976 6.27265306432750958 31 false 2.76630619999999983 1.26003690032781002 0.0207106105014797995 -0.0193613769999999991 18 10 0.171389900000000012 0 18 false 155 4426.7171121825304 4.86051742122635044 910.75 16.5731619999999999 14 793.853972029198985 10.2115081094244005 77.7411100000000062 18.1020369999999993 15 5780.78986666944002 15.3445025888669004 376.733600000000024 15.3569519999999997 1.48521890000000001 0 2.74508570000000018 1.5288754 1.21621040000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.780872604552002 -63.5018590888907966 22.1659755832857002 -13.0074210576102995 100001 4233.12988 3879.6499 4790.66016 0.559000015 0.220300004 0.808799982 0.314999998 0.104999997 0.555499971 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344791792245120 2481344791792245120 1624517833 2015.5 25.2994081643309983 1.37566393240233009 -3.4480111809741798 0.950666588969454995 \N \N \N \N \N \N \N 0.108854999999999993 \N \N \N \N \N \N \N \N \N 112 0 112 0 40.6335300000000004 2476.1499 7.09754804108516968 137.186563430628013 3 false 0.0183794949999999992 \N \N 0.0697059000000000012 14 9 3.06426450000000017 0 14 false 120 571.750954560670039 7.75102501928212995 73.7646027 18.7953499999999991 9 587.412305412359956 11.1580962212802 52.6444929999999971 18.4290309999999984 10 1277.67609556236994 13.9445628868312994 91.6253999999999991 16.995868999999999 3.26206450000000014 0 1.43316270000000001 -0.366317749999999998 1.79948039999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.743354286789014 -63.5012642340079978 22.1547329638863992 -12.9947493884095007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344821856465024 2481344821856465024 1220518193 2015.5 25.3051369767090009 1.57412596175796993 -3.44142383740418012 1.73944956191449007 \N \N \N \N \N \N \N 0.26013383000000001 \N \N \N \N \N \N \N \N \N 52 0 51 1 3.10422500000000001 81.6793976 4.24546514968718025 2.0416959723531698 3 false 0.0169504039999999988 \N \N 0.0979054000000000035 6 5 6.74094770000000043 0 6 false 52 82.3098256658817036 1.68290234354271995 48.9094009 20.8997360000000008 5 63.1463027688065992 6.58769568139885031 9.58549200000000035 20.8505199999999995 3 82.2265720496952071 9.66414356157276977 8.5084180000000007 19.9743899999999996 1.76616670000000009 0 0.876129150000000023 -0.0492172239999999969 0.925346400000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.748581961294008 -63.4928587675779994 22.1626823979954999 -12.9907375721784 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347781089483008 2481347781089483008 1185689235 2015.5 25.3043659356081001 0.104419617836746997 -3.43869214042826021 0.0767263379770127957 0.623110367102180041 0.120901749614269 5.15385700000000035 5.25225237151871038 0.186745030179115007 -15.0260872914379995 0.137548776401989009 0.20068488000000001 0.552633900000000011 -0.115024219999999996 0.185643420000000003 -0.0228126509999999998 0.267854099999999984 0.312523600000000012 -0.0277780349999999995 -0.00943610800000000034 0.268920199999999998 129 0 129 0 -0.199600980000000011 120.228996 0 0 31 false 3.04178099999999985 1.57180045304095994 0.0231818037034355988 0.0440824849999999976 15 9 0.175220440000000005 0 15 false 127 2868.62268194112994 3.54745993384416991 808.640991 17.0441819999999993 13 1395.11704346565989 13.9242751755386998 100.193150000000003 17.4898619999999987 11 2124.26642221013981 6.13794443021807012 346.087600000000009 16.4438969999999998 1.22685479999999991 0 1.04596519999999993 0.445680620000000027 0.600284599999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.744394777009006 -63.490722899054397 22.1629829058235011 -12.9879146677166997 100001 5296.75977 5070 6192.49023 0.152799994 0.053199999 0.252299994 0.0825000033 0.0399000011 0.140499994 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344753136842240 2481344753136842240 284736904 2015.5 25.3270234212080005 0.540652814474886001 -3.45766639495737982 0.489559304119416006 -0.305284965391876995 0.629781776862613052 -0.484747229999999973 9.78753050643896039 1.14497896785590991 -3.86135368032257009 0.882409825124350955 0.318608300000000011 0.333393280000000014 -0.126099559999999999 0.118017559999999994 0.0359326599999999982 0.0630768300000000004 0.135736350000000006 0.0632610900000000059 0.139630730000000008 0.218685660000000004 140 0 139 1 -0.542497459999999987 124.677002 0 0 31 false 0.0667835850000000064 1.59667332784548011 0.158784585833132014 0.0258106090000000017 16 10 1.03662220000000005 0 16 false 138 150.920746862897005 1.20509276579403002 125.236 20.2414929999999984 14 47.3746286311930973 5.36427151811088976 8.83151200000000003 21.1625230000000002 15 169.631730391524002 6.88097702998724969 24.652273000000001 19.1881519999999988 1.43788289999999996 0 1.9743710000000001 0.921030039999999994 1.05334090000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.80843205674401 -63.498123916121898 22.1773695807418001 -13.0138959212839005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346230605594624 2481346230605594624 978821708 2015.5 25.3368548271675991 0.835708512608999032 -3.43771418985578014 0.706333356520189026 0.682976506740952005 0.975863145507955054 0.69986915999999999 5.17655822723460979 1.58449584846159008 -12.3487294216460004 1.49746208888789001 0.176333889999999993 0.493679849999999976 -0.131004480000000006 0.0297284540000000014 -0.0949631699999999995 -0.0314858999999999972 -0.145385340000000002 0.0762115639999999955 0.109512429999999994 0.293295059999999996 136 0 136 0 1.48357420000000007 155.761993 1.43562578949083997 0.61622095572593405 31 false 0.0318856459999999967 1.09997563492255002 0.207239425584410997 -0.0696411599999999936 16 10 1.54444669999999995 0 16 false 134 113.900140416018999 1.14268592248484002 99.677597 20.5470539999999993 12 39.2583576908942007 6.86601552120809977 5.71777870000000021 21.3665580000000013 12 149.110346482078 9.91389851942198952 15.0405359999999995 19.3281500000000008 1.65380569999999993 0 2.03840829999999995 0.819503800000000004 1.21890450000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.809028587625988 -63.4758904602040985 22.1942869425085014 -12.9989728899069998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481344478258933248 2481344478258933248 1271771200 2015.5 25.3448582492452985 0.280428311239652006 -3.47653476094115987 0.206156299916251007 1.66665187570705009 0.304461163489178011 5.47410350000000001 8.58391558519801023 0.652355465321859951 -11.6307629673883 0.386411650953503993 0.092786014 0.196051819999999988 -0.145389240000000003 0.106189690000000003 -0.0700682299999999952 0.0961172500000000013 0.146614579999999994 0.00627777000000000023 0.105284890000000006 0.0698551500000000047 159 0 158 1 3.51469830000000005 222.229004 1.02369066831245004 3.51969883541192008 31 false 0.244831930000000003 1.38850137976853993 0.068559657313679398 -0.0934750099999999973 18 10 0.576032639999999985 0 18 false 155 498.516455864309023 1.62729646681203 306.346008 18.9441659999999992 16 119.096025354058 8.63451116982727029 13.7930250000000001 20.1616460000000011 16 620.805797384665993 10.6771379418914005 58.1434670000000011 17.7795309999999986 1.48420740000000007 0 2.38211439999999985 1.21747969999999994 1.16463469999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.862663597140994 -63.5074783238598002 22.1872058250562993 -13.0380018637776995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345199813439744 2481345199813439744 926568696 2015.5 25.3731184078813001 0.377836639410472019 -3.47145985076780006 0.320483459020847017 -0.0369899431614343979 0.436082244563298027 -0.0848233199999999937 -0.176713606667743994 0.83655123298689904 -2.51579346079617006 0.633950232597080054 0.20104807999999999 0.298659000000000008 -0.121034409999999995 0.0746870300000000015 -0.112240049999999994 0.0481555570000000016 0.107218560000000004 0.0221710760000000014 0.0867015399999999936 0.212095019999999995 176 0 168 8 1.47495700000000007 190.367004 1.28312568451861009 2.37281394079602004 31 false 0.113459309999999994 1.59413017067800999 0.0977137528211222961 -0.0105215989999999995 19 10 0.754690399999999983 0 20 false 168 273.38339791431099 1.19568512731644994 228.641998 19.5964360000000006 18 176.157874171998003 7.67610705944603033 22.9488559999999993 19.7366330000000012 18 186.780932402437003 7.7555760835409604 24.083437 19.0835900000000009 1.32758179999999992 0 0.653043750000000034 0.14019775000000001 0.512846000000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.914777457841012 -63.4907236633140997 22.2160398915170987 -13.0436928339341005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345165453701888 2481345165453701888 1097741943 2015.5 25.3891265317332007 0.570012357389145019 -3.46759605893800016 0.554676621479153975 1.13843595804381992 0.655491378490188015 1.7367672999999999 6.4462197462553199 1.28816278890662006 7.61393438085208007 1.20610261404808994 0.323939350000000015 0.270256940000000001 -0.147039410000000009 -0.0184760859999999992 -0.059551314000000001 -0.051749464000000002 -0.097390850000000001 0.0400450600000000004 0.105653289999999997 0.318288599999999977 154 0 153 1 -0.992469970000000035 130.957993 0 0 31 false 0.0500435160000000032 1.33270886274764 0.169252082093644007 0.0101217400000000006 18 10 1.26224720000000001 0 18 false 153 135.042193284088 1.12151503736859004 120.411003 20.3621920000000003 12 46.1859914426570981 6.93595472798541035 6.65892359999999961 21.1901130000000002 14 139.348211543709994 3.8015698903122499 36.6554369999999992 19.4016669999999998 1.37389800000000006 0 1.78844639999999999 0.82792089999999996 0.960525500000000032 \N \N 0 \N \N \N NOT_AVAILABLE 151.943313251597999 -63.4803329566056007 22.2327482035832986 -13.0459961694181992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345234173179264 2481345234173179264 816385443 2015.5 25.3748595785853013 0.367226390584237006 -3.45783457099628011 0.324728954131557002 0.0540993110111740033 0.430451970411549978 0.125680249999999993 6.64660286529522004 0.817851038258873952 -11.1330381904256992 0.629440448128550045 0.231692659999999995 0.282843200000000017 -0.108133720000000003 0.0774672849999999968 -0.110466510000000004 0.0356012600000000026 0.141273540000000003 0.024088524 0.105051480000000003 0.212153989999999987 168 0 167 1 0.659442799999999996 173.464005 0 1.57898385724466995e-15 31 false 0.117303779999999996 1.35977952581453998 0.103338532287296003 -0.00631673539999999967 19 10 0.738801400000000053 0 20 false 167 230.217913208546008 1.12647959958514998 204.369003 19.7830179999999984 17 86.0813954988471011 6.02699383025973034 14.2826419999999992 20.5141139999999993 17 229.632507146952008 11.9926736665334008 19.1477320000000013 18.859337 1.37136980000000008 0 1.65477750000000001 0.731096269999999993 0.923681259999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.905105082889008 -63.4776844077721023 22.2228575820725993 -13.0316697961063994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481345165453701632 2481345165453701632 419542379 2015.5 25.3923556011982008 0.182939254589679995 -3.4707314299463401 0.149499080347411994 4.0684599719252601 0.209711557279897987 19.4002669999999995 8.36380019814568954 0.411702234893802976 -26.6140746240335986 0.282461713279646975 0.176331450000000001 0.272216200000000019 -0.151355369999999989 0.0973965999999999998 -0.12524861000000001 0.0599476729999999999 0.175468740000000012 0.043494320000000003 0.0993854700000000035 0.16488831000000001 176 0 175 1 1.35610589999999998 195.518997 0 0 31 false 0.489687140000000021 1.09376695915282007 0.0465882647433647004 -0.0193826089999999986 20 10 0.368526039999999999 0 20 false 174 639.859284987552996 1.62910282389070993 392.768005 18.6731550000000013 16 93.2688495646999058 4.8259489276334202 19.3265300000000018 20.4270460000000007 16 899.550585565131996 7.75409413193257002 116.00976 17.3768560000000001 1.55162160000000005 0 3.05019000000000018 1.75389100000000009 1.29629900000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.952859029666001 -63.4817659619722008 22.2346362315994988 -13.0500993762624997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266378573805696 2481266378573805696 918840129 2015.5 25.1157304725205996 0.240750797724799986 -3.43799950625558015 0.177339041238468997 0.298444664929207015 0.291479635925157021 1.02389540000000001 6.21109340322191983 0.445522668858305992 -3.8364877128771302 0.312714414899824988 0.12840088999999999 0.491400269999999972 -0.145293900000000004 0.157942350000000009 -0.172603459999999986 0.154581109999999994 0.167621870000000006 0.0568522919999999987 0.0848325999999999941 0.268079579999999984 133 0 130 3 1.24896849999999993 145.069 0.29313504773350102 0.330777863829867014 31 false 0.498243119999999984 1.61005777996101007 0.0601685110153096989 0.0347759720000000022 15 10 0.406117679999999981 0 15 false 127 670.131885876540991 1.90690374687595998 351.424011 18.6229650000000007 13 388.525139087073001 7.45804459687106025 52.094771999999999 18.8778399999999991 13 458.795416207015023 25.3223538954587006 18.1181979999999996 18.1078720000000004 1.26440869999999994 0 0.769968030000000025 0.254875179999999979 0.515092850000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.361743291115005 -63.5705156937929985 21.9836902002137009 -12.9177359529387008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360318098328448 2481360318098328448 1513288934 2015.5 25.1219225627596998 3.18739874382298982 -3.41268548162015994 2.94015024362487987 \N \N \N \N \N \N \N 0.189789180000000002 \N \N \N \N \N \N \N \N \N 97 0 96 1 30.3369800000000005 1416.27002 18.4528747677600009 87.5265627463429041 3 false 0.00261747000000000021 \N \N 0.120724960000000006 12 9 8.34580599999999961 0 12 false 103 114.855718564423995 1.41884483219700996 80.9502029 20.537984999999999 11 140.784386533722994 10.3831930135759993 13.5588719999999991 19.9800010000000015 10 375.114914068890982 12.5530852264718007 29.8822879999999991 18.326509999999999 4.49171639999999961 0 1.65349199999999996 -0.557983400000000018 2.21147539999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.350186637392 -63.544971177247902 21.9991785513977014 -12.8964971884047994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352458066688 2481360352458066688 1620471269 2015.5 25.1358134191380991 0.827104394521273045 -3.41318329288045996 1.20462875544902004 0.086083524555202795 0.82659921391640101 0.104141793999999996 -2.08661377232518985 2.16684615091705979 -1.75310703108585009 2.90922953472363011 0.685197830000000008 -0.0481965840000000006 -0.473340570000000016 -0.530522900000000019 -0.286460879999999973 -0.596937999999999969 -0.783491550000000037 0.208371090000000009 0.285795599999999983 0.766384599999999971 98 0 97 1 -0.326296499999999989 87.0006027 0 0 31 false 0.0566198099999999996 1.49514812673900011 0.234515687990369009 0.150803199999999998 11 8 3.19169880000000017 0 11 false 97 135.995319005546008 1.22514500250835989 111.002998 20.3545550000000013 11 80.2193881079484044 10.8744478669201001 7.37687000000000026 20.5906899999999986 11 108.515617658837996 10.6842153109289999 10.1566299999999998 19.6731900000000017 1.38780510000000001 0 0.917501450000000052 0.236135480000000009 0.681365969999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.378840094001987 -63.5395357266513017 22.0122086388725009 -12.9020826936717992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360558616499584 2481360558616499584 1357248025 2015.5 25.1229061704672993 0.23813563265314 -3.3962561785696801 0.215339328257317997 0.398490612532774013 0.269671878892539019 1.47768689999999991 1.81792868495940008 0.509848750365193948 -3.22048570492292985 0.383805387668171016 0.341445500000000013 0.298264099999999976 -0.145804299999999998 0.157341060000000005 0.00623385239999999993 0.160415780000000008 0.146587610000000007 0.0911698100000000039 0.079922900000000005 0.300731599999999988 122 0 121 1 1.89541099999999996 146.550995 0.608295107185257033 1.34490295608869004 31 false 0.424346830000000008 1.46038049722933994 0.0706241101368418056 0.122367729999999994 14 10 0.472339779999999987 0 14 false 121 620.856868598876986 1.64651617508155002 377.072998 18.7058870000000006 12 256.446967991211977 8.12279020025641074 31.5712909999999987 19.3288939999999982 12 567.700317483314052 8.18004853180310043 69.4006040000000013 17.8766210000000001 1.3274353000000001 0 1.45227240000000002 0.623006799999999972 0.829265600000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.336542024264986 -63.5296768401374976 22.0063413536048991 -12.8815930555047995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352459675264 2481360352459675264 1667845269 2015.5 25.1431767007732994 2.0377782031920102 -3.40878068635927001 1.37443777862273997 \N \N \N \N \N \N \N -0.151594089999999987 \N \N \N \N \N \N \N \N \N 80 0 80 0 0.194895600000000002 76.7334976 0 1.16031142870231006e-15 3 false 0.0317686240000000022 \N \N 0.0558662269999999975 10 7 5.85039569999999998 0 10 false 81 98.0146494775113979 1.30614364183737997 75.0412979 20.7101380000000006 7 68.9844141470008054 30.3373120816318007 2.27391310000000013 20.7545099999999998 9 141.650874870395995 13.4747419787848006 10.5123250000000006 19.3838709999999992 2.14901849999999994 0 1.37063979999999996 0.0443725599999999984 1.32626719999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.389575567695005 -63.5324278986707967 22.0208843676326005 -12.9007068756592993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352458067328 2481360352458067328 236369956 2015.5 25.1378701352705995 0.493132269028619008 -3.40784539463997982 0.376302136605054016 -0.287129119923568987 0.549073407047248052 -0.522933960000000031 1.66889831511743991 1.28932172804316991 -2.22409060095318978 0.649156844342246964 0.294984299999999977 -0.101015779999999999 -0.53050052999999997 0.0758242699999999992 -0.176600900000000005 -0.0591042599999999987 0.186019870000000004 0.41166678000000001 0.169353510000000013 0.178274270000000012 112 0 110 2 2.26866220000000007 140.615005 0.924234255282029959 0.947986358605659052 31 false 0.139741929999999986 1.83874549514291008 0.109939211541893997 0.0569416879999999972 13 8 1.18086479999999994 0 13 false 110 293.620034328737006 1.44170546988402992 203.662003 19.5189020000000006 11 206.141263197955993 12.1783858262232005 16.9268129999999992 19.5659750000000017 11 216.358199027522005 16.8342460996273005 12.8522649999999992 18.9239859999999993 1.43893270000000006 0 0.641988749999999997 0.0470733639999999995 0.594915399999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.377924067090987 -63.5338311988120026 22.0161889106916 -12.8978808719532996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352459671040 2481360352459671040 1575602994 2015.5 25.1397952162084017 12.2078442416436008 -3.39956673121663 4.06495134119180968 \N \N \N \N \N \N \N 0.846370940000000016 \N \N \N \N \N \N \N \N \N 62 0 62 0 2.31855399999999978 84.6414032 0 0 3 false 0.0167640559999999994 \N \N -0.044957045000000001 7 5 1108.92820000000006 0 7 false 62 71.0347239074257004 1.84002412273867999 38.6053009 21.0596889999999988 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.373940248733987 -63.5255200048449993 22.0211582418320013 -12.8908977054739005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348468284222848 2481348468284222848 165971997 2015.5 25.1689405064810003 0.13278126054602099 -3.43748267164060994 0.109632422041224004 0.858049395962646955 0.153473912959775 5.59084839999999961 12.8692869238947001 0.297171982061000983 -13.5935818674806992 0.199529950492913999 0.20624611000000001 0.228997250000000013 -0.20242845000000001 0.143438409999999988 -0.141404329999999995 0.147591040000000007 0.190269070000000012 0.0761373699999999959 0.0547613799999999984 0.232777449999999997 141 0 139 2 0.47106969999999998 141.169006 0.289208679376516009 0.930294335995697996 31 false 1.23960160000000008 1.47683903395103 0.0349887103179115019 0.0724104299999999979 16 10 0.270979320000000024 0 16 false 139 1399.20833505199994 2.70999076239912018 516.315002 17.8236600000000003 13 501.551628156585025 9.65933642171101958 51.9240259999999978 18.6006 15 1359.86850454472005 7.46929178559248008 182.061229999999995 16.9281770000000016 1.33033810000000008 0 1.67242240000000009 0.776939399999999947 0.895483000000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.469213212358994 -63.5474633736095029 22.0345260040419006 -12.9368789440973995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348463988589440 2481348463988589440 31422633 2015.5 25.1722167596085988 2.23956285561086021 -3.43186010514143014 1.49204428346391005 \N \N \N \N \N \N \N 0.033633620000000003 \N \N \N \N \N \N \N \N \N 111 0 110 1 36.3888900000000035 2002.93005 11.6512826659003998 126.806122320498005 3 false 0.00687314999999999975 \N \N -0.0532359849999999996 15 10 4.61291030000000024 0 15 true 132 268.70675357708501 4.62340435275111972 58.1188011 19.6151699999999991 13 308.112454826492979 17.6802452984222001 17.4269329999999982 19.1296159999999986 14 608.355784892639008 7.79655403855015994 78.0288000000000039 17.8015250000000016 3.41066309999999984 0 1.32809069999999996 -0.485553740000000011 1.81364440000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.47047903877899 -63.5409833628057967 22.0397751429999005 -12.9328620184952996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348257831827456 2481348257831827456 1376843353 2015.5 25.1837192563391987 6.27014199083616042 -3.43858066157139985 1.80330471874046006 \N \N \N \N \N \N \N -0.377116169999999973 \N \N \N \N \N \N \N \N \N 44 0 44 0 -0.54172366999999999 33.7989998 0 0 3 false 0.0233992400000000017 \N \N -0.0723190459999999979 5 5 26.1078410000000005 0 5 false 45 85.4405329635060014 1.76204118824416001 48.4894981 20.8592049999999993 4 65.969224064617606 13.5145231682597995 4.88135769999999969 20.8030340000000002 4 99.4277055756450068 15.6414486879966006 6.35668129999999998 19.7681520000000006 1.93581340000000002 0 1.03488160000000007 -0.0561714170000000013 1.09105300000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.500220022656009 -63.542169995694799 22.0481760042870008 -12.9433482825265997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348360909567104 2481348360909567104 849804526 2015.5 25.1859505152456009 0.534967580016121991 -3.43804227444758004 0.50301139712906795 1.55416768152530005 0.628151600126661047 2.47419209999999978 -7.03565604368059994 1.17273958430443992 -8.51150037904291956 0.923825635704305981 0.332545670000000015 0.259225550000000027 -0.144115999999999994 0.131841000000000014 -0.0779594400000000048 0.116400180000000006 0.168055490000000002 0.0691864400000000018 0.0704555199999999937 0.305639920000000009 133 0 132 1 0.680556099999999997 137.453995 0 1.78333665740568982e-15 31 false 0.0718974400000000069 1.58240134797339005 0.150531248047347993 0.0951284899999999961 15 10 1.0907998000000001 0 15 false 132 156.238549859344005 1.35016028501081009 115.719002 20.2038960000000003 13 50.7107215583815005 12.6856715560713997 3.99748020000000004 21.0886379999999996 14 200.796662852455 12.3628348388281992 16.2419590000000014 19.0050300000000014 1.60976520000000001 0 2.08360859999999981 0.884742739999999972 1.19886589999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.504226443526989 -63.5407333244007972 22.0505037580111996 -12.9436705936471004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348567067805184 2481348567067805184 617395892 2015.5 25.1852807105052996 0.533481592654016956 -3.42500340792871016 0.312291332880389017 0.933497726151871987 0.493774819967159995 1.89053329999999997 25.5437558273031016 1.43825974213869001 -8.96902012612489941 0.542089920753746957 0.0112327339999999994 -0.288667679999999982 -0.69952420000000004 0.194016529999999993 0.0146474859999999995 0.253622599999999976 0.184979320000000003 0.507408999999999999 -0.007480909 0.0396415550000000019 126 0 124 2 3.31914540000000002 177.031006 0.996253277745425048 1.56202296641163008 31 false 0.167015520000000001 1.53180978772675003 0.0958215091998704943 0.0183894370000000015 15 9 1.33395269999999999 0 15 false 123 337.364597114730998 1.49412676640876008 225.794006 19.3681160000000006 12 61.536198828353001 12.8821716221110005 4.77684969999999964 20.8785610000000013 13 442.879767524847011 16.0537271536645001 27.5873489999999997 18.1462059999999994 1.49516570000000004 0 2.73235500000000009 1.51044460000000003 1.2219104999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.490395991192003 -63.5292237805829032 22.0548074189442005 -12.9313066954691998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348567067805312 2481348567067805312 567236058 2015.5 25.1874709768619987 0.469262669434861002 -3.42490837769471002 0.375288927125762006 0.982819196703196951 0.500522091983211959 1.96358799999999989 4.39293983505555996 1.08869787901989001 1.54077354997240001 0.67049004856808303 0.191531990000000013 0.209190829999999994 -0.298112659999999974 0.209170770000000006 -0.00290991720000000021 0.246038110000000004 0.297911470000000012 0.114368445999999999 0.00523876800000000042 0.167076229999999992 144 0 142 2 2.61888599999999983 184.270004 1.42119192840148001 2.38060260289344994 31 false 0.104953210000000005 1.47859825817546997 0.120032146055569 0.00522551360000000041 17 10 0.978891249999999991 0 17 false 142 255.518091204733992 1.30733600945099004 195.449005 19.6698109999999993 11 86.4460095761396019 3.38233093989878997 25.5581169999999993 20.509525 14 277.015118131993972 7.01689598095692002 39.4782999999999973 18.655660000000001 1.42244769999999998 0 1.85386469999999992 0.83971404999999999 1.01415060000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.494742103112003 -63.5282058722962972 22.0569280793975011 -12.9320258626840001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348670147022464 2481348670147022464 866728803 2015.5 25.1775376130737989 0.292779396380249024 -3.40445593158232018 0.251651988707132013 3.37176758902685991 0.343549431694788021 9.81450500000000048 37.7346741170973985 0.64148371219876299 -22.1444718952856014 0.441849411452297003 0.250276900000000024 0.25808215000000001 -0.152178780000000013 0.168230939999999995 -0.113408560000000005 0.160222560000000014 0.250732540000000004 0.0590808599999999989 0.0676572549999999995 0.242113020000000012 140 0 140 0 2.00721399999999983 169.962006 0.816587837054493004 1.69306333902423001 31 false 0.243275340000000007 1.25091725051769997 0.0780924694053105051 0.0674853200000000014 16 10 0.580400000000000027 0 16 false 139 420.960728102535995 1.48422310940886004 283.623993 19.1277620000000006 11 68.3103299954396022 6.61353427441051966 10.3288689999999992 20.7651730000000008 13 609.986267026396945 7.63825552860259993 79.8593699999999984 17.7986199999999997 1.61130609999999996 0 2.96655269999999982 1.63741110000000001 1.32914160000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.45508050109899 -63.5139263400957006 22.0552237666569013 -12.9093572773670999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360661695856128 2481360661695856128 600784486 2015.5 25.1380607959106008 1.06188565152437997 -3.38770048177531979 1.08050567724272994 1.37391973438112003 1.05653432341982989 1.30040240000000007 -1.06302205749169998 2.68493145000521993 -1.15286481630179005 2.56024692620332006 0.468879729999999995 0.0684907000000000016 -0.54772763999999996 -0.250663250000000004 0.0769945900000000016 -0.234547200000000011 -0.465736419999999984 0.281436740000000019 0.0488204839999999973 0.380981620000000021 84 0 84 0 0.129800830000000006 79.9688034 0.348389897882505017 0.0302726052762599986 31 false 0.0360258599999999998 2.12965594764646982 0.300166928949663014 0.178602549999999999 10 7 2.80721739999999986 0 10 false 83 98.4670457542324016 1.2055386663196701 81.6789017 20.7051400000000001 6 65.1735024224841055 3.04817486007353988 21.3811570000000017 20.8162100000000017 9 87.414979255335993 7.74813133404278975 11.2820719999999994 19.9079550000000012 1.54963999999999991 0 0.908254600000000023 0.111070630000000004 0.797184000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.359126641899991 -63.5155110666828975 22.0240044011586988 -12.8792311829816004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360661697319552 2481360661697319552 1608714505 2015.5 25.1427144971363994 1.27666020819482995 -3.38875490512534983 1.59329020026352008 \N \N \N \N \N \N \N 0.40340123 \N \N \N \N \N \N \N \N \N 65 0 65 0 -1.32817669999999999 46.0339012 0 0 3 false 0.0245890129999999998 \N \N 0.246981019999999996 8 6 5.65330099999999991 0 8 false 66 77.0759112919893994 1.22534529618988008 62.9014015 20.971070000000001 5 43.6008925147827995 9.94734478926467958 4.3831686999999997 21.2526499999999992 7 129.866570996553008 14.6821148863181996 8.8452219999999997 19.4781760000000013 2.25060530000000014 0 1.77447320000000008 0.281579970000000013 1.49289319999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.369562127756012 -63.5144938058967981 22.0280332926636007 -12.8819270591635 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360799134670336 2481360799134670336 316147182 2015.5 25.1831361031337018 0.229462515160007013 -3.38758324609465999 0.195743319549116002 0.941903818446512053 0.266995461961737013 3.52778960000000019 13.8817179150411008 0.505250015064063973 -2.38186092935041982 0.351522888359963981 0.239078719999999995 0.258268400000000009 -0.166512860000000013 0.160300460000000006 -0.119066290000000005 0.164215450000000013 0.231434909999999994 0.0574091080000000004 0.0495500830000000017 0.249555410000000005 140 0 140 0 2.46245400000000014 178.834 0.646456675650799006 1.56558235675711011 31 false 0.39931947000000001 1.46845491115003002 0.0621486541111314975 0.0724262400000000028 16 10 0.459028900000000017 0 16 false 139 608.059030683635001 1.54805846262168001 392.787994 18.7285019999999989 16 183.998926645528002 10.8589910970374 16.9443860000000015 19.689350000000001 16 642.756495050579019 10.1671593084512999 63.2188870000000023 17.7418039999999984 1.3596630999999999 0 1.947546 0.960847849999999948 0.986698150000000052 \N \N 0 \N \N \N NOT_AVAILABLE 151.45031570654001 -63.496279748699898 22.0669444056687993 -12.8957412324747995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360833494410752 2481360833494410752 417470591 2015.5 25.1914071581771992 1.60936584639151992 -3.37550032118207 1.09528869882245994 \N \N \N \N \N \N \N -0.276738170000000006 \N \N \N \N \N \N \N \N \N 94 0 94 0 -0.410096799999999984 83.0019989 0 0 3 false 0.038408829999999998 \N \N 0.0570821649999999972 11 7 4.58340450000000033 0 11 false 96 107.656998224027006 1.2553329796016901 85.759697 20.6082600000000014 7 54.962104312692901 12.7617041268935001 4.30679999999999996 21.0012299999999996 10 189.22620816440201 17.4226079478406994 10.8609580000000001 19.0694680000000005 2.26820660000000007 0 1.93176269999999994 0.392971039999999994 1.53879169999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.45553012874899 -63.4818314996840982 22.0793930980311011 -12.8875611687294995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361211451511680 2481361211451511680 1242272167 2015.5 25.175001721628 0.0342482502622884002 -3.35252581354114998 0.0290781816736274991 2.46528977335020016 0.0400572987348869966 61.5440830000000005 -11.3089976156503003 0.0667156639918668054 -8.5776965973432695 0.0635209258130776944 0.175459379999999998 0.454409600000000025 -0.109075284999999994 0.0329076160000000006 -0.0597544399999999989 0.0208953490000000006 -0.170971070000000003 0.0118230379999999993 0.022726296 0.30801820000000002 150 150 150 0 3.47352859999999986 211.701004 0 0 31 true 412.008359999999982 1.6245232987556999 0.0099126650469327799 0.102699040000000005 17 10 0.0477928670000000028 0 17 true 142 339623.273276960012 68.4046944311027971 4964.91016 11.8608720000000005 17 185133.757467774005 333.372456041564021 555.336099999999988 12.1826740000000004 15 221853.424780261994 120.023462755099004 1848.41709999999989 11.3967539999999996 1.19834890000000005 0 0.785920139999999989 0.321802140000000014 0.464117999999999975 -7.80663252477719993 1.90768075658541991 4 6000 3.5 0 NOT_AVAILABLE 151.400459556487988 -63.4680047953727993 22.0724829644709004 -12.8601629917771998 100001 5869 5781.6499 6037.7002 0.439700007 0.223700002 0.605099976 0.212799996 0.102600001 0.300999999 200111 1.43315940000000008 1.3541901999999999 1.47679129999999992 2.1955334999999998 2.1434015999999998 2.24766539999999981 +1635721458409799680 Gaia DR2 2481361039652844928 2481361039652844928 488683654 2015.5 25.2019730355907008 0.125938091623316012 -3.35432103358325007 0.115081681623670995 0.666475286086932961 0.152229752067251006 4.37808799999999998 -2.26426641413049978 0.267486994708278025 -5.76077557865632972 0.212389284435168996 0.239573759999999997 0.327364500000000003 -0.0154718570000000003 0.121224164999999995 -0.101366239999999996 0.0892179099999999975 0.241267499999999996 -0.0357884539999999973 0.0881821599999999955 0.216043349999999995 138 0 138 0 -0.476818299999999973 124.734001 0 0 31 false 1.23366510000000007 1.62225968835584 0.0345142425912675008 0.0879897399999999968 16 10 0.245957640000000005 0 16 false 136 1260.13747232494006 2.57424551255936018 489.516998 17.9373199999999997 14 558.867753452898 10.6931933584650007 52.2638779999999983 18.483115999999999 14 1010.43991472611003 14.0185955973235004 72.0785400000000038 17.2506449999999987 1.24534640000000008 0 1.23247149999999994 0.545795440000000021 0.686675999999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.456710872132987 -63.4581769602730006 22.0974700850734997 -12.8717727463964007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348773226236160 2481348773226236160 1682995665 2015.5 25.2141020858625993 0.0657599723369254041 -3.41838750004357017 0.053762003991493397 0.33968502777854398 0.074046651161000801 4.58744599999999991 4.55139272819704033 0.144234563480344996 1.51545618350694 0.104580874103023996 0.182108700000000012 0.291294429999999993 -0.167533249999999995 0.150497880000000001 -0.0835704800000000025 0.200557920000000001 0.173864419999999992 0.00420402800000000028 -0.0228827820000000008 0.240730990000000006 144 0 141 3 -0.0517679899999999998 134.485001 0 0 31 false 5.31074330000000039 1.64604647688357009 0.018212031983069199 0.0545238070000000005 17 10 0.137391580000000013 0 17 false 140 4543.71276339549968 4.21732428729755959 1077.39001 16.5448379999999986 14 2434.34724912958018 15.0879722266280005 161.34357 16.8854310000000005 16 3041.59657248964004 13.6804572620452003 222.331500000000005 16.0541669999999996 1.20516939999999995 0 0.831264499999999962 0.340593340000000022 0.490671159999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.542424837741009 -63.5109673439511013 22.0847465234440001 -12.9357828781490998 100001 5803.66992 5773.25 5861 0.122699998 0.00800000038 0.366699994 0.0822999999 0.00490000006 0.193100005 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347952888147200 2481347952888147200 526702650 2015.5 25.2380045692126984 0.0320683716846233008 -3.43468232603026014 0.0254331294854567014 0.545940089081980995 0.0372075717902281972 14.672822 3.36776380338690995 0.0735988108844417982 -0.120807403070973998 0.0555814195200940026 0.118775934 0.210053610000000002 -0.163854290000000014 0.0553316250000000023 -0.197333189999999992 0.0688988299999999942 -0.0973198599999999941 -0.0104682720000000007 0.0136389670000000001 0.273754060000000021 140 0 140 0 -3.00201679999999982 90.9227982 0 0 31 false 32.0996549999999985 1.61820629833665008 0.00933541175698334932 0.0193518249999999996 16 10 0.0777743760000000062 0 16 false 138 24875.3254624061992 10.2644288025541996 2423.44995 14.6989439999999991 16 13494.5787981477006 40.0656731962303994 336.811500000000024 15.0259900000000002 15 16606.5679858196017 32.5979976043665971 509.435200000000009 14.2112210000000001 1.21008049999999989 0 0.81476879999999996 0.327045440000000021 0.48772335 \N \N 0 \N \N \N NOT_AVAILABLE 151.606405908445993 -63.5155020658258991 22.1013252775793987 -12.9597360168818998 100001 5819.75 5762 5888.66992 \N \N \N \N \N \N 200111 1.78359139999999994 1.74208809999999992 1.81952289999999994 3.28778000000000015 2.76949049999999986 3.80606959999999983 +1635721458409799680 Gaia DR2 2481347952888147072 2481347952888147072 1242089449 2015.5 25.2345892139945995 0.0583802167605328992 -3.42898486163492988 0.045661122571394 1.4952859750760199 0.0654948665017301979 22.8305840000000018 17.0928864006468011 0.128300420674184013 -14.3549706546971994 0.092200035073947903 0.104511119999999999 0.300397279999999989 -0.192089989999999988 0.134734140000000002 -0.132092120000000007 0.208490220000000004 0.184447880000000008 -0.0271435039999999989 -0.0703511099999999945 0.212717579999999989 156 0 156 0 1.2655597999999999 173.345993 0 0 31 false 6.46043249999999958 1.48454615435076009 0.0158976822363199009 0.0167945029999999988 18 10 0.123087799999999997 0 18 false 156 5514.14382728338023 4.75425553909803966 1159.82996 16.3346710000000002 16 2201.13041293792003 50.7941013593227026 43.3343699999999998 16.9947739999999996 18 4901.63741355330967 13.6251681963245996 359.748749999999973 15.5360669999999992 1.28809989999999996 0 1.45870689999999992 0.660102839999999969 0.798603999999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.594031946786004 -63.5118103098562017 22.1002326798706008 -12.9531823770615002 100001 4419.41016 4361.37988 4618.58984 0.263000011 0.116899997 0.48269999 0.131999999 0.0579000004 0.231999993 200111 0.613423700000000016 0.561653799999999981 0.62985469999999999 0.129321619999999998 0.117283490000000004 0.141359750000000006 +1635721458409799680 Gaia DR2 2481347948592657024 2481347948592657024 398334080 2015.5 25.2416001683493008 1.36500415367454009 -3.43030600324788004 2.28221310055972015 \N \N \N \N \N \N \N 0.465433450000000026 \N \N \N \N \N \N \N \N \N 70 0 69 1 2.01131439999999984 88.7274017 3.4639772983150201 18.7921056556265995 3 false 0.0234702710000000009 \N \N 0.250824659999999977 9 7 6.58505499999999966 0 10 false 71 96.485024344876507 1.4059134588486899 68.6279984 20.7272169999999996 7 61.3606863722916032 4.20809359008780959 14.581588 20.8816619999999986 9 64.6707470939330022 12.0630286896700998 5.36107059999999969 20.2351500000000009 1.30622790000000011 0 0.646513000000000004 0.15444564999999999 0.49206734000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.609481565776008 -63.5100109345433026 22.1064059922395018 -12.9569940165514002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348983679712000 2481348983679712000 1590268440 2015.5 25.2103644864275012 0.702232654982065996 -3.40637683503527988 0.630444532211069997 2.44738289215923022 0.793244668142793041 3.0852811 11.5558962270226999 1.5139730682519601 -0.927337816653373004 1.05464384600845995 0.32185092999999998 0.311826019999999982 -0.0816394700000000056 0.275542969999999998 0.0109236980000000008 0.304420440000000014 0.439475119999999997 0.00410094199999999978 0.0173805949999999987 0.272578060000000011 134 0 132 2 3.91017100000000006 199.164993 2.43172862548497992 3.45516306017294994 31 false 0.0480980500000000033 1.21430829648610006 0.183208609656415999 0.0706000549999999949 16 9 1.39192509999999992 0 16 false 132 162.197164757048995 1.30429750102007991 124.356003 20.163257999999999 11 60.8299696399881995 8.39749598083485083 7.24382259999999967 20.8910939999999989 12 219.352578668820001 10.1917730604876997 21.522514000000001 18.9090629999999997 1.72741950000000011 0 1.98203090000000004 0.727836599999999945 1.25419429999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.523370221583008 -63.5016979266152006 22.085739258337199 -12.923243338752 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348910666937600 2481348910666937600 1589068131 2015.5 25.2336060078348012 0.989235104086562012 -3.40044326862674984 1.13037142474035002 0.538684283966361033 1.14151040496510991 0.471904839999999992 0.272783653139087978 2.45692900643591994 4.52584148789247998 3.30922234016118022 0.425953630000000028 0.265626799999999996 -0.20218912 -0.144802480000000011 -0.0831254599999999982 -0.160439739999999997 -0.280553039999999976 -0.0354765699999999989 -0.0440307039999999969 0.587597499999999995 102 0 101 1 1.37116550000000004 115.524002 2.64997446609944021 1.85854131112492005 31 false 0.0250130780000000011 1.6277126837521001 0.301924275704388012 0.134466190000000013 13 9 3.28328469999999983 0 13 false 100 93.2753927301617978 1.08799253487154002 85.7316971 20.7639479999999992 7 41.0321082330463014 5.48110767240406993 7.48609800000000014 21.3185789999999997 11 125.770295043827005 7.87488921675740983 15.9710560000000008 19.5129759999999983 1.7882787 0 1.80560300000000007 0.554630300000000021 1.25097269999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.564702841815006 -63.4864269171305011 22.1101087260180016 -12.9262948285677002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347914232775936 2481347914232775936 294991847 2015.5 25.2558349767076997 0.585123245889515031 -3.4281637178447899 0.581862326303091981 1.14381247792803009 0.680675921986594989 1.68040680000000009 8.23400407680295032 1.37554214560515997 11.6737656104488003 1.34040298456847995 0.339801499999999979 0.224432510000000002 -0.143766370000000004 0.0807741299999999995 -0.104619673999999996 0.126126690000000014 0.0601234469999999965 -0.0205554439999999991 -0.0895056199999999941 0.428600160000000008 130 0 127 3 -0.58609929999999999 112.439003 0 0 31 false 0.0593713299999999999 1.40559294036831006 0.187268294099008997 0.0616414299999999971 16 10 1.42492280000000004 0 16 false 128 142.322621880373987 1.25926938195325011 113.019997 20.3051819999999985 11 40.1325653430224989 5.45827425844836966 7.35261060000000022 21.3426459999999985 14 189.350305740968992 7.75972234706479025 24.4016860000000015 19.0687539999999984 1.61241319999999999 0 2.27389140000000012 1.0374641 1.2364272999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.636212691622006 -63.5019927184784976 22.1207682076413015 -12.9602488228688006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348120391194112 2481348120391194112 1360187212 2015.5 25.2721028878873994 0.0388523973746578988 -3.4025328639098702 0.0273654795931473002 4.07252671466279992 0.042051090376188302 96.8471150000000023 13.3655064246606994 0.0763282106485095035 11.8575288265679006 0.0623467766971824017 -0.0112499090000000006 0.441216380000000019 -0.233326399999999989 0.0648217199999999993 -0.0690586400000000045 0.123867266000000004 -0.0830421149999999997 -0.00488655040000000006 -0.0775026199999999943 0.132316380000000011 154 154 151 3 7.9738749999999996 327.897003 0 2.32062285740462012e-15 31 true 341.170599999999979 1.49914464044846008 0.00977765520238656032 -0.00123673750000000008 18 10 0.0494679599999999983 0 18 false 148 255273.272942782001 59.5496181934764977 4286.72998 12.1708529999999993 16 120353.133528418999 171.062668711788007 703.561649999999986 12.650245 16 192043.019365062006 174.237417635664997 1102.19170000000008 11.5534239999999997 1.22377150000000001 0 1.09682079999999993 0.479392050000000014 0.6174288 -12.6697607580446991 2.89608286342975019 8 5500 3.5 0 NOT_AVAILABLE 151.644495626240996 -63.4718766972090975 22.1459622345521012 -12.9424221253932004 100001 5016.22998 4957.75977 5085.45996 0.588999987 0.423900008 0.717999995 0.294 0.234999999 0.349599987 200111 1.08284500000000006 1.05356340000000004 1.10853789999999996 0.668862760000000001 0.658911759999999957 0.678813760000000044 +1635721458409799680 Gaia DR2 2481348876305454336 2481348876305454336 576988743 2015.5 25.2561481421202991 0.302705207816260979 -3.3966422631112998 0.262223575431575984 3.13746176664349008 0.350969702891919977 8.93940899999999949 -10.8298177391548993 0.681410156736759975 -30.7160776311670993 0.481076961581967999 0.18474154000000001 0.273917899999999992 -0.113388329999999996 0.167061519999999991 -0.139453560000000004 0.193554709999999991 0.383247049999999978 -0.0452213799999999985 -0.0272601750000000011 0.194141640000000004 151 0 151 0 3.75789360000000006 219.214005 1.07386872562508007 2.98334088010133014 31 false 0.209449130000000011 1.29240670602485008 0.0830496675172884002 -0.00337699899999999989 18 10 0.613509900000000052 0 18 false 150 426.859841908698002 2.01350000080280012 211.998993 19.1126520000000006 15 88.1092356605850995 6.89214102630557957 12.7840159999999994 20.4888340000000007 17 606.122533853412051 7.00684213528874977 86.5043799999999976 17.8055200000000013 1.62636939999999997 0 2.68331529999999985 1.37618259999999992 1.30713269999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.606622131002013 -63.4733706312171009 22.133005478623101 -12.931068954253 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350353774808064 2481350353774808064 1206520101 2015.5 25.2672360318873004 0.281452075547657998 -3.39289837694149021 0.260927296722570978 0.738498399316498966 0.351193200838195996 2.10282660000000021 4.01913321243724031 0.600582917557119011 3.90625388404001006 0.504932833737576026 0.262295300000000009 0.341475750000000022 0.0245269559999999991 0.122215710000000005 -0.200925560000000003 0.157837659999999991 0.240860660000000004 -0.100907700000000003 -0.0159145610000000007 0.350181100000000023 164 0 162 2 2.07762119999999983 195.994003 0.850393248018780024 1.68833452293793007 31 false 0.216381939999999995 1.35795161583752999 0.075811484868645404 0.06936755 19 10 0.577987130000000016 0 19 false 161 402.957700454664973 1.72520837844335007 233.570007 19.175217 16 123.069427857768005 8.73361898705202933 14.0914579999999994 20.1260130000000004 16 482.46082459017498 8.37761208560872994 57.5893020000000035 18.0532649999999997 1.5027142 0 2.07274819999999993 0.950796100000000033 1.12195200000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.625431427881011 -63.4652503705789002 22.1449778703519016 -12.9316747525941 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350358069860224 2481350358069860224 697403277 2015.5 25.2670782817852988 0.0270437831713890992 -3.39157976283985008 0.0219529069885758994 0.941589815053889945 0.0322362007543414986 29.2090819999999987 5.08201672493667989 0.0559886123987146031 4.46120886268484007 0.0509136064921039966 0.163939820000000014 0.435946500000000015 -0.0348078569999999976 0.0254974809999999989 -0.110501779999999994 0.0853968400000000016 0.0194720830000000011 -0.12907115999999999 -0.0958507299999999951 0.341754300000000011 165 0 165 0 -2.06788540000000021 125.219002 0 0 31 true 35.743267000000003 1.62465412896071992 0.00731910682511238957 0.0785821800000000015 19 10 0.0651830500000000063 0 19 false 163 27840.7014733411997 9.73509500716104981 2859.83008 14.5766650000000002 19 15435.6215084140003 40.0454514494073024 385.452549999999974 14.8800779999999992 19 18270.0942115842008 30.2974165963298994 603.02484000000004 14.1075680000000006 1.2106633 0 0.772510499999999989 0.3034134 0.469097140000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.623849460131993 -63.4641260683470989 22.1453270443249011 -12.9303911155286997 100001 6328.85986 5640 6873.41992 0.0769999996 0.0170000009 0.148499995 0.0460000001 0.00789999962 0.0816000029 200111 0.917449799999999982 0.777835100000000002 1.15524760000000004 1.2166376000000001 1.11727130000000008 1.31600389999999989 +1635721458409799680 Gaia DR2 2481348120391349760 2481348120391349760 121443835 2015.5 25.2754498165892016 1.28099726507688993 -3.40724211299977986 1.09674207896275 \N \N \N \N \N \N \N 0.197945239999999995 \N \N \N \N \N \N \N \N \N 77 0 77 0 -0.158486779999999994 69.4618988 0 0 3 false 0.0237826759999999991 \N \N 0.0317036320000000024 10 7 4.56289239999999996 0 10 false 77 82.4848894412292992 1.42304051468033999 57.9637985 20.8974299999999999 7 40.9587090690416034 11.0901516303257992 3.69325070000000011 21.3205220000000004 7 65.1913552459515984 4.42041593410259015 14.7477870000000006 20.2264440000000008 1.28690309999999997 0 1.09407809999999994 0.423091900000000021 0.670986199999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.655772329845007 -63.474700644231703 22.1473649235869985 -12.9480319960967005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349632219698816 2481349632219698816 556940297 2015.5 25.2914144383230983 0.242870709576936988 -3.39563206576909016 0.227231123984715011 1.11576865430083005 0.298971158688174976 3.73202780000000001 8.89992280227465038 0.518266325424980967 -7.89802127944652987 0.434409630994879004 0.28524670000000002 0.342993559999999975 0.0670554700000000059 0.140595140000000007 -0.157604070000000013 0.169925959999999987 0.293254899999999985 -0.129433099999999995 -0.0128853249999999996 0.330968229999999974 170 0 169 1 0.540363700000000002 173.289993 0 0 31 false 0.279106440000000011 1.45467279831614005 0.0622885287453195033 0.0733472299999999994 20 10 0.497748049999999997 0 20 false 168 421.488183213775983 1.50346271152991995 280.345001 19.1264019999999988 15 134.686882646373988 5.73132167580886964 23.5001430000000013 20.0280740000000002 15 423.735404078904992 9.86994828892454912 42.9318770000000001 18.1941829999999989 1.3248823999999999 0 1.8338909000000001 0.901672359999999951 0.932218549999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.676863782637014 -63.4573804732648981 22.1669591785613989 -12.9431229216805992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349563500362496 2481349563500362496 503360280 2015.5 25.2934132943125007 10.2137845574319996 -3.39684728338156994 3.40699712105619001 \N \N \N \N \N \N \N 0.789968800000000027 \N \N \N \N \N \N \N \N \N 61 0 61 0 -0.623174369999999977 49.0475998 0 0 3 false 0.0168177819999999999 \N \N -0.0730340500000000031 8 6 54.0948939999999965 0 8 false 63 71.6410883339567022 1.62097959318498996 44.1962013 21.0504600000000011 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.682063777846992 -63.4576227117322986 22.1684019110249011 -12.9449886976768003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360936573626368 2481360936573626368 1396457565 2015.5 25.2067984032141013 0.232460629517846989 -3.37412866400421008 0.218694872635025989 1.87087726529014997 0.279872617961234027 6.68474599999999963 18.9010608364807986 0.485902774919094005 -23.706231700868301 0.411056694531025002 0.314736799999999983 0.337051780000000023 -0.0339035759999999978 0.125482380000000004 -0.106052679999999996 0.12312679 0.148087620000000003 -0.0134906390000000004 0.0557703859999999982 0.340474160000000026 138 0 136 2 0.727906799999999965 142.432999 0 1.75589907262068996e-15 31 false 0.370293529999999982 1.4621769544963501 0.0630356603468489041 0.123760863999999998 16 10 0.465555700000000017 0 16 false 135 481.127117319933006 1.58598117788371007 303.362 18.9827159999999999 15 123.938158947882002 9.9660156091972194 12.4360789999999994 20.1183760000000014 14 563.156956045792981 10.2465943109607007 54.9604029999999995 17.8853450000000009 1.42809469999999994 0 2.2330302999999998 1.13566020000000001 1.09737010000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.485352481532004 -63.4740462597906969 22.0945606435444013 -12.8919594273952001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349151183366528 2481349151183366528 813894213 2015.5 25.2398603853966996 0.322966914768772984 -3.37338914583631988 0.307813641147426986 1.38426642101185005 0.385640666589190995 3.58952399999999994 1.54151212182288999 0.686690787958084026 -7.95514660589870015 0.568402662703321959 0.333311259999999998 0.339811379999999996 0.0545729100000000023 0.179218409999999995 -0.0863045900000000005 0.188576830000000001 0.341861799999999993 -0.107350580000000001 0.00765555770000000014 0.320757540000000008 154 0 153 1 2.46894649999999993 193.871994 0.78974978222145098 1.02140513151541001 31 false 0.17467611999999999 1.3226862440515299 0.0843254296046585944 0.106867193999999999 18 10 0.656311450000000018 0 18 false 151 317.179376420345022 1.39201065788697997 227.856995 19.4351020000000005 14 88.5425856879899982 10.0227967076463003 8.83412000000000042 20.4835069999999995 11 412.57377368192698 5.75275305426873018 71.7176199999999966 18.2231659999999991 1.57991470000000001 0 2.26034159999999984 1.04840470000000008 1.21193700000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.551469166857004 -63.4592980964755995 22.1263079971046004 -12.9034562964129993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362448402119296 2481362448402119296 217313173 2015.5 25.2234942001039002 0.178796970121921001 -3.34746257443579021 0.152966985706376013 0.661642498321927008 0.211792943605812994 3.12400630000000001 -1.95862931083497993 0.362145615170760993 -3.66400005405672013 0.279379425403678994 0.257654519999999998 0.413224849999999977 0.0301638120000000017 0.167032569999999991 -0.0854898240000000059 0.184614759999999989 0.322213899999999998 -0.0873943300000000062 0.0189207899999999998 0.280011999999999983 166 0 165 1 2.3201404000000001 204.410004 0.580672338346246986 2.09794674448145013 31 false 0.584405399999999964 1.50715020786076992 0.0455605886018353029 0.0783164350000000037 19 10 0.337524500000000005 0 19 false 165 844.286508714591946 1.99151664017298002 423.94101 18.3721400000000017 18 324.950414757348994 9.33869052037151981 34.7961430000000007 19.0718460000000007 17 796.640645896659976 6.3922440375406504 124.626130000000003 17.5087639999999993 1.32844840000000008 0 1.56308169999999991 0.699705099999999969 0.86337660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.493661756915998 -63.4428198957654033 22.1205488081062995 -12.8733298836804 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350701666873728 2481350701666873728 404390648 2015.5 25.2405492095724995 0.753931650610703996 -3.35709535525155989 0.842291091348791987 0.0791032665348433972 0.870934498326895956 0.090825740000000002 14.0202029493945002 1.69928532799277998 -5.32128616379309971 2.12012624501690006 0.450950799999999985 0.354954930000000002 0.00109384530000000008 0.0106047620000000002 0.0817012339999999976 0.0354946800000000007 -0.0858085600000000059 -0.161798030000000009 -0.140967409999999987 0.525825499999999946 119 0 119 0 2.85153480000000004 161.862 2.17893749764489986 1.53718419925325001 31 false 0.036925063000000001 1.32118617812586003 0.210438617452375992 0.159348039999999996 14 9 2.10351920000000003 0 14 false 119 122.000796783404994 1.1150698830261101 109.411003 20.4724600000000017 10 36.1285083339265967 7.78397286532803001 4.64139700000000044 21.4567620000000012 12 160.541492835956007 11.5017962998916996 13.9579500000000003 19.2479520000000015 1.61203859999999999 0 2.20881080000000019 0.984302499999999969 1.22450830000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.537296258601998 -63.4442703421324978 22.1331334470397998 -12.8885668978108008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362452697738112 2481362452697738112 363959589 2015.5 25.2300863874670007 0.048580154391731703 -3.34785099873178993 0.0391576565425775999 0.356539020038968979 0.0567842243716958003 6.27883899999999961 -4.50008371658104966 0.106098782146598 -17.2443590656352015 0.0788575623558128991 0.220332709999999987 0.333626660000000019 0.114319019999999993 0.105841144999999998 -0.0816469900000000026 0.136108580000000007 0.173949880000000001 -0.186910810000000011 -0.0194658499999999998 0.274586260000000026 159 0 159 0 1.33166920000000011 177.837997 0.0627902547235485997 0.238020975724166001 31 false 9.06149199999999944 1.60014911882428001 0.0125782057873270996 0.0495776529999999993 18 10 0.105093315000000007 0 18 false 155 7828.38034248482018 4.94529028759775979 1583 15.9541854999999995 14 4403.79174537272957 14.3736153671398998 306.38024999999999 16.2418210000000016 15 5074.63554046805984 27.0872680974689999 187.34393 15.4984079999999995 1.21077750000000006 0 0.74341299999999999 0.287635799999999997 0.455777170000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.507346321351008 -63.4403656069159965 22.1266756689701012 -12.8761200336958002 100001 6228.5 5573.12012 6643 0.174199998 0.0175000001 0.442999989 0.0855000019 0.0126999998 0.219999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350456853424896 2481350456853424896 932069764 2015.5 25.2722252992510015 0.409114951692261974 -3.37096249004788007 0.37860007295435999 1.98746885288791009 0.505354424942962011 3.93282180000000015 59.7266952261486992 0.956152550845558946 1.42774368839143007 0.733604528974325043 0.319996769999999986 0.214616420000000002 0.193106589999999995 0.167971520000000013 -0.184670549999999989 0.227586800000000006 0.320356729999999978 -0.264939550000000024 -0.069144115000000006 0.357450070000000009 156 0 156 0 2.4666570000000001 197.251999 1.30035703778746004 1.99919548249380008 31 false 0.107235929999999993 1.51009448595100992 0.112297277796186007 0.0530985399999999996 18 10 0.912826059999999995 0 18 false 156 252.725249580540009 1.62169394403562994 155.839996 19.6817439999999984 14 74.168564631575407 9.86402686680654917 7.51909600000000022 20.6758379999999988 16 310.764421676207007 7.20094091837978034 43.1560860000000019 18.5308419999999998 1.52312829999999999 0 2.14499659999999981 0.994094849999999974 1.15090179999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.61449722326401 -63.4432933630088982 22.1580331424851984 -12.9131255468894999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349735299102336 2481349735299102336 1186473285 2015.5 25.2941816016012986 0.656972150738072025 -3.37804257163277022 0.631617850025658956 3.70292882624739006 0.802436710500350037 4.6146054000000003 -1.66301635610476994 1.42143452796837 -14.1411992656824008 1.19250510517163 0.306732400000000016 0.321109900000000004 0.0692791400000000029 0.176531090000000002 -0.166282469999999988 0.222402569999999994 0.363103999999999982 -0.142154169999999996 -0.0484052820000000009 0.352945950000000008 164 0 162 2 5.47617629999999966 274.434998 2.65714538330749983 3.79612236056392005 31 false 0.0397126699999999985 1.50394472087180997 0.177686446602007997 0.0901044599999999973 19 10 1.37985730000000006 0 19 false 162 149.314916070245999 1.02459881590391011 145.729996 20.253107 15 25.8882126358706017 4.78689116190249031 5.40814730000000043 21.8186320000000009 16 232.698956917358004 5.29771335698974966 43.9244160000000008 18.8449339999999985 1.73182400000000003 0 2.97369770000000022 1.56552500000000006 1.40817260000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.665578311721987 -63.4403049613530996 22.1762530936338003 -12.9277941159070995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350491213163392 2481350491213163392 1448702894 2015.5 25.2964857146895987 0.656197542672366962 -3.37074196717968988 0.78175597955798104 -0.575465568819795048 0.78204263333024604 -0.735849399999999987 -1.65830201902892993 1.69207895121844998 -15.0955066851806006 2.30087204992323002 0.467974129999999988 0.23869631999999999 -0.121588550000000004 -0.220725919999999992 -0.156434390000000006 -0.26169574000000001 -0.39376317999999999 -0.102925464999999994 0.0240664740000000009 0.653836199999999979 127 0 126 1 2.93954300000000002 171.886993 1.45083780601835999 0.915748512167677053 31 false 0.0481824169999999982 1.41857776716839989 0.187719789569695011 0.192396490000000003 15 9 2.32742069999999979 0 15 false 125 134.151761937682011 1.13138017682442005 118.573997 20.3693750000000016 11 62.0653234091505013 11.2452626194802008 5.5192420000000002 20.8692670000000007 12 148.90705908758801 7.46653049958104997 19.9432739999999988 19.3296320000000001 1.57263970000000008 0 1.53963469999999991 0.499891279999999993 1.0397434000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.663228708766013 -63.4327230510787032 22.1812103160635985 -12.9218573878782994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350800450813568 2481350800450813568 194781241 2015.5 25.2735115459849986 0.317926540990568995 -3.34415729275261997 0.29610109417625502 0.733185483141850947 0.392072796330971973 1.87002380000000001 15.5598032143367 0.767292524851487023 -2.43205424868199982 0.587475894588776026 0.287544130000000009 0.19082613000000001 0.200845689999999993 0.103963174000000005 -0.121339929999999999 0.120725979999999997 0.309762419999999983 -0.276324599999999976 0.00350706230000000013 0.24484787999999999 145 0 145 0 1.42855930000000009 164.546997 0 0 31 false 0.183280510000000008 1.48155126981517005 0.0875153570959061045 0.0401442399999999977 18 10 0.707797699999999974 0 18 false 144 319.996095267257999 1.7210936454819501 185.925995 19.4255050000000011 13 117.764629790021004 10.9966822911283995 10.7091054999999997 20.1738509999999991 16 338.415239418155011 20.442840561588099 16.5542179999999988 18.4382950000000001 1.42557939999999994 0 1.73555560000000009 0.74834630000000002 0.987209299999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.591458200775008 -63.4185147817238004 22.1694052294287012 -12.8886860400608008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481351178407937792 2481351178407937792 10634132 2015.5 25.2909943605501013 0.334675135000065016 -3.33582251649337991 0.30475175898871798 0.315099434073889018 0.411233224296888022 0.766230459999999947 -0.171939903062678007 0.716081980903913951 2.59430228922412986 0.576429273443077039 0.257375660000000006 0.342174980000000017 0.0634479149999999936 0.145521330000000004 -0.16533871 0.181636269999999989 0.3175867 -0.136119109999999988 -0.0211302769999999994 0.307184960000000007 174 0 171 3 2.13877840000000008 207.324997 1.01099057019990002 1.61449364591533007 31 false 0.147388789999999992 1.36746191327403999 0.0858954264167585968 0.0698511200000000027 20 10 0.675590800000000047 0 20 false 170 314.409910323294014 1.17692317633544996 267.145996 19.4446259999999995 15 97.3338662660081013 5.42923498066013988 17.9277300000000004 20.3807280000000013 17 354.769835610181985 7.92415445988658984 44.7706870000000023 18.3870530000000016 1.4379436000000001 0 1.99367519999999998 0.936101900000000042 1.05757330000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.618739033634995 -63.4035153721871012 22.1892008575449005 -12.8873790528722001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362727575644928 2481362727575644928 769803628 2015.5 25.2055703984066 1.94126105899500989 -3.33540071117857018 1.62607023932470995 \N \N \N \N \N \N \N 0.216254350000000012 \N \N \N \N \N \N \N \N \N 71 0 70 1 95.7595799999999997 18650.6992 9.14898722989775948 1487.57963106681996 3 false 0.0115472219999999993 \N \N 0.0872663260000000052 15 10 4.11142970000000041 0 15 false 132 3864.4363891612802 46.5885377806930023 82.9481964 16.7206499999999991 14 4511.41388957628988 69.6516688341079941 64.7710799999999978 16.2156069999999985 14 8025.35534869579988 47.8731780766720973 167.637820000000005 15.0007590000000004 3.24413919999999978 0 1.21484759999999992 -0.50504300000000002 1.71989060000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.445963831617007 -63.4395276115100017 22.1080582523754998 -12.8555147343983993 132011 5095.62988 4284.4502 6938 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362482761994112 2481362482761994112 449231108 2015.5 25.2343151984566987 6.33974431337408983 -3.33667354315130993 3.4952403197358799 \N \N \N \N \N \N \N -0.845334649999999965 \N \N \N \N \N \N \N \N \N 39 0 39 0 0.39867646000000001 36.6888008 1.77800768885611005 0.303322904704475982 3 false 0.0206879529999999985 \N \N -0.17419330999999999 5 4 82940.1499999999942 0 5 false 39 80.874666614278695 1.74032408613144995 46.4710007 20.9188350000000014 2 39.396753556444402 11.0960431851079999 3.55052279999999998 21.3627380000000002 2 68.0601729062536975 0.149913148832067994 453.997340000000008 20.1796879999999987 1.32868469999999994 0 1.18305020000000005 0.443902970000000008 0.739147200000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.505227592642996 -63.4284551183891026 22.1349322646237994 -12.8672900129193994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350869170292736 2481350869170292736 1181016477 2015.5 25.273633779973899 0.243601856980181997 -3.33462611819013999 0.224659335833493012 0.74344214877564796 0.297396183023943994 2.49983760000000022 -1.35550030745208994 0.539283010063547952 -4.16673151394758001 0.454436703436907008 0.278594999999999982 0.314928199999999991 0.0626626760000000005 0.116785079999999999 -0.143674099999999999 0.160370039999999991 0.251571920000000004 -0.158894750000000001 -0.0445293149999999999 0.336578339999999976 163 0 161 2 1.26422989999999991 178.682007 0.360842630590974989 0.337872991586641025 31 false 0.28349439999999998 1.41057241852181003 0.0684490372513616996 0.0811125860000000004 19 10 0.518363299999999971 0 19 false 159 443.585665526199023 1.43778812912168008 308.519989 19.0709230000000005 15 162.271567446415986 8.49114893956982009 19.110672000000001 19.8257830000000013 17 457.416352594950013 7.62597941234607024 59.9813270000000003 18.1111409999999999 1.39699719999999994 0 1.71464159999999999 0.754859900000000028 0.959781650000000042 \N \N 0 \N \N \N NOT_AVAILABLE 151.582600102268003 -63.4098463194688975 22.1731293348586007 -12.8798724823199002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350869172096256 2481350869172096256 623021738 2015.5 25.2748484496143995 0.839326452244677945 -3.33486834775772989 1.00752487671300006 1.1126814027702201 0.974970121423921032 1.14124669999999995 5.36462746359265008 2.20737929438800995 -2.47749219652131014 3.00356050584157996 0.533511900000000039 0.244812919999999989 -0.143410890000000013 -0.232177080000000008 -0.0671840759999999954 -0.246342520000000009 -0.356796800000000025 -0.172211890000000006 -0.0591809900000000028 0.677717899999999984 125 0 123 2 2.29245020000000022 156.031998 2.10136132813588983 1.4220929828976101 31 false 0.0313792079999999987 1.23703738422518006 0.236722515183425991 0.250825200000000026 15 8 3.05117130000000003 0 15 false 124 106.428115898214003 1.35574894442862992 78.501297 20.6207260000000012 10 47.3453819273380034 9.81154335800638933 4.82547760000000014 21.1631950000000018 13 146.454994847254994 8.4613145920987094 17.3087750000000007 19.3476600000000012 1.82095099999999999 0 1.81553460000000011 0.542468999999999979 1.27306560000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.585280542845993 -63.4095469556371967 22.1741937853077999 -12.8805450537279 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481347776793821952 2481347776793821952 1338468969 2015.5 25.3107457538912008 0.606052934069037041 -3.43277569459008003 0.670425333959858039 1.38800261450464002 0.703506637973739024 1.97297729999999993 15.8336189606696003 1.34709480121155001 -12.6746343023924997 1.14473348004691 0.446822759999999986 0.213833200000000001 0.0792162299999999986 0.335687820000000026 -0.20678437999999999 0.36274519999999999 0.579986930000000012 -0.114065089999999994 -0.102069199999999999 0.434013099999999985 146 0 144 2 2.4861352000000001 183.904999 1.66630149004549999 1.73681813024501008 31 false 0.057243490000000001 1.31370316685763999 0.153147222112456988 0.118068515999999998 17 9 1.38960459999999997 0 17 false 141 164.412779832060011 1.21518625583094009 135.298004 20.1485270000000014 11 47.9702144364285985 6.9690167316379199 6.88335469999999994 21.1489580000000004 12 210.279111010712001 10.2548301703006004 20.5053729999999987 18.9549300000000009 1.5707374999999999 0 2.19402890000000017 1.00043109999999991 1.19359780000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.751580462595996 -63.482643871301903 22.1712978056985008 -12.9847660146063006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349632219839744 2481349632219839744 21268264 2015.5 25.2983341305910017 1.1073440078494301 -3.38925676816386012 1.34409295027541997 2.27473750430028021 1.37476542698368998 1.65463690000000008 -3.5803967936632799 2.80308929163226006 -6.7993190622921702 4.27039790134879027 0.495061839999999975 0.403281359999999978 -0.0203832600000000003 -0.0452699500000000032 -0.0471558720000000015 0.0209081820000000008 -0.0764913859999999945 -0.284228150000000013 -0.282858039999999977 0.757082499999999992 77 0 77 0 0.64021629999999996 79.2462997 1.16189240466575994 0.263341884992984998 31 false 0.0299254790000000014 1.4023556213931101 0.318112887606139982 0.334717419999999988 9 7 4.25567899999999977 0 9 false 79 85.1458548255892964 1.26653908760259992 67.2272034 20.8629570000000015 6 69.7045496756551017 12.0192343664487993 5.79941700000000004 20.7432349999999985 6 57.0973292008445981 12.5720217886554 4.54161899999999985 20.3703800000000008 1.48923129999999992 0 0.372854230000000009 -0.119722369999999995 0.492576599999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.684709426071009 -63.4486590285572021 22.1759604369417005 -12.9397465330357004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349391701528576 2481349391701528576 296796766 2015.5 25.3391741542986004 0.586440498375392028 -3.40212053260222991 0.62083592520644304 -0.134538252290636012 0.683458463210087963 -0.196849200000000002 14.9459726836608997 1.26753141552085991 -11.5012901407630004 1.55164597208147992 0.414617479999999983 0.404361929999999981 -0.0673830599999999946 -0.117624186000000006 0.0243214980000000004 -0.13135021999999999 -0.241771099999999989 -0.107173050000000006 -0.0242310579999999998 0.49202963999999999 132 0 132 0 2.57403229999999983 171.781998 1.08255347197838003 0.626473454556179976 31 false 0.0585024199999999994 1.51374032832902006 0.164561631800705988 0.16120197 15 9 1.54188679999999989 0 15 false 132 147.172326573560014 1.07478867702959002 136.931 20.2687999999999988 11 51.6212261643253996 5.94305994840023022 8.68596699999999977 21.0693170000000016 11 127.228154550656001 4.98611614810129034 25.5164849999999994 19.5004619999999989 1.21523789999999998 0 1.56885530000000006 0.800516099999999953 0.768339160000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.779423344561991 -63.4427653517853969 22.2099717296047992 -12.966744443524 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481349464716662528 2481349464716662528 981337762 2015.5 25.3238484063016998 0.0541677687716839024 -3.3933881590629098 0.0465128375067205002 1.08471506443268995 0.0639761021346839931 16.9550039999999989 4.74280747513252976 0.109998062633550997 -64.0995777666048951 0.090779419163100103 0.267816160000000025 0.425275950000000014 0.0356545970000000031 0.13961752999999999 -0.0626511399999999941 0.18162273000000001 0.256303369999999975 -0.1138985 -0.026398253 0.316747160000000028 162 0 162 0 0.216352430000000012 160.188004 0 0 31 true 6.92799760000000031 1.58110037097128009 0.0127484601233650002 0.0991625039999999985 19 10 0.110979999999999995 0 19 false 159 5953.67996706258964 4.29068175163795029 1387.57996 16.2514019999999988 14 3031.79269213465022 15.4740895755524992 195.927050000000008 16.6471389999999992 16 4305.83732415484974 11.4675665210533992 375.479600000000005 15.6767760000000003 1.23245289999999996 0 0.970362660000000044 0.395736699999999997 0.574625970000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.740132588071987 -63.4414578568929031 22.1986862656337998 -12.9529839205155 100001 5282.75 5004.64014 5429.18994 0.0694999993 0.00889999978 0.187999994 0.0324999988 0.00240000011 0.107100002 200111 0.546833000000000014 0.517731000000000052 0.609297100000000036 0.209818769999999988 0.183455289999999993 0.236182239999999988 +1635721458409799680 Gaia DR2 2481346471123907968 2481346471123907968 420754994 2015.5 25.3625296348733009 2.95863491999778017 -3.40886075764667007 3.53674182435569984 \N \N \N \N \N \N \N 0.810025039999999974 \N \N \N \N \N \N \N \N \N 44 0 44 0 -1.82396599999999998 24.5147991 0 0 3 false 0.0169573849999999984 \N \N 0.0938464849999999934 5 5 10.7276699999999998 0 5 false 44 74.0194088478347965 1.96795751569077004 37.6123009 21.0150010000000016 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.832976384007992 -63.4388115457339978 22.2296578536332987 -12.9816096784603996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346402404288384 2481346402404288384 407493347 2015.5 25.3695539714078997 0.136819199256038998 -3.42102924076653991 0.113895059294158996 1.84019148394774001 0.160130808553375997 11.4918010000000006 16.6590191342392018 0.281983774416975974 -8.96909357802415919 0.219243269330770013 0.181101380000000006 0.389696360000000019 0.012411376 0.0825153740000000024 -0.0804516400000000048 0.0441803340000000017 0.146356459999999994 -0.0436514799999999994 0.105605359999999995 0.18606550999999999 182 0 180 2 2.5129302 225.557999 0.141103464250523003 0.158444263709603989 31 false 0.844973560000000012 1.3486204571362399 0.0349603605256280994 0.0112608754999999998 21 10 0.255910430000000022 0 21 false 177 1003.39233023781003 1.96565869079889 510.460999 18.1846889999999988 19 267.726974540083006 9.17778800849069043 29.1711880000000008 19.282157999999999 19 1148.35408632494 6.91448088703231001 166.07956999999999 17.1117300000000014 1.41129349999999998 0 2.17042730000000006 1.09746929999999998 1.07295800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.858860173825008 -63.4467687717908007 22.2317400148289011 -12.9955065062135997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346849080890368 2481346849080890368 1297087914 2015.5 25.3628591110796009 0.297296992519166026 -3.39779355824988016 0.267063257491216011 -0.665066169971997967 0.357662334746343014 -1.85948059999999993 2.87594331920218016 0.657283668038774027 -1.79559776207400001 0.511376868440898025 0.188766139999999999 0.259568779999999999 0.00770197530000000033 0.057413314 -0.0988927260000000002 0.00893334399999999931 0.132180529999999991 -0.0466400100000000026 0.155164030000000008 0.141581430000000008 156 0 156 0 3.52246360000000003 220 0.215456801135477993 0.0652392217825464027 31 false 0.180266039999999989 1.60494144961506002 0.0818929722233071034 -0.00641587380000000016 18 10 0.585251870000000007 0 18 false 153 320.927989610626014 1.30585946630417005 245.759995 19.422346000000001 15 191.162552216094014 8.21474201190268971 23.2706699999999991 19.6478800000000007 13 214.068177415999997 5.39680807955830044 39.6657030000000006 18.9355399999999996 1.26268430000000009 0 0.712341299999999955 0.225534440000000003 0.486806870000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.822978933949003 -63.4286823998464016 22.2341607633243008 -12.9714441840635999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365162822914688 2481365162822914688 390939463 2015.5 25.0539343706473012 1.87030132645332992 -3.28999740706071986 2.07514574500893012 \N \N \N \N \N \N \N -0.265050769999999991 \N \N \N \N \N \N \N \N \N 60 0 59 1 0.583192939999999993 59.5755997 0.107214242686114999 0.00167520107119168002 3 false 0.0208047309999999999 \N \N -0.0613480200000000031 8 5 6.50913520000000023 0 8 false 62 72.3398968871298962 1.46946808503772997 49.2285995 21.0399199999999986 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.096105734855001 -63.4624514209159969 21.9809846261126012 -12.7574135596640996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346780361413120 2481346780361413120 1334075498 2015.5 25.378229349024501 0.347643242683722986 -3.40096101084753011 0.287829294914677014 1.20394005847940999 0.400332504936946998 3.00735019999999986 6.73185589082669988 0.779912242920562049 -11.8109213434553002 0.534796954510802003 0.17456954999999999 0.276142900000000024 -0.111500955999999998 0.117222935 -0.145580380000000009 0.0948256249999999967 0.242530970000000012 0.00723766540000000003 0.0725858399999999987 0.172180090000000008 173 0 172 1 3.46777340000000001 237.886002 1.33726096630239999 2.91494627749055013 31 false 0.137488250000000006 1.43557033676688994 0.0886342580076378977 0.00311317480000000008 20 10 0.694752000000000036 0 20 false 172 333.10565957256398 1.18168751604639999 281.890015 19.3819100000000013 18 119.564316047172994 5.88976354186108964 20.3003600000000013 20.1573850000000014 20 333.066563805229009 6.42107518390731968 51.8708400000000012 18.4555930000000004 1.35882079999999994 0 1.70179180000000008 0.775474549999999985 0.926317199999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.856980312773004 -63.4249279185875992 22.2475970394438001 -12.9800473747914005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346849082886144 2481346849082886144 819044553 2015.5 25.3667132209702011 4.76668028651110998 -3.39122041729106982 4.46938074711597011 \N \N \N \N \N \N \N 0.858743400000000046 \N \N \N \N \N \N \N \N \N 48 0 48 0 -0.526966500000000004 37.6820984 0 0 3 false 0.0142937559999999995 \N \N 0.291859299999999988 6 5 32.1494 0 6 false 49 65.2759394212034039 1.52962771754370008 42.6744003 21.151484 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.824410992357002 -63.4210930769878019 22.2403183524811006 -12.9667535479769995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346883440632192 2481346883440632192 1087428393 2015.5 25.3769326348201005 0.0584097035705404971 -3.38446917067338005 0.0444631352363003968 1.11437805571171999 0.0659176522500641987 16.9056099999999994 3.55548064519812002 0.127954606291839995 -3.63780239902320002 0.0896415572472799987 0.100267709999999996 0.311630499999999977 0.0331604740000000023 0.0469835030000000028 -0.109844510000000006 0.0291743320000000007 0.0704319199999999951 -0.0881573999999999969 0.0908720100000000031 0.136301430000000001 178 0 175 3 1.59133959999999997 200.319 0 0 31 true 5.20893699999999971 1.52018878618126996 0.0144914459576383995 -0.0230548549999999991 20 10 0.120101639999999996 0 20 false 172 4692.3652900324596 3.74612477495823981 1252.58997 16.5098860000000016 16 1929.55226878577992 11.4537414345453001 168.464799999999997 17.137747000000001 17 3951.83544517672999 16.2382254150032992 243.366209999999995 15.7699230000000004 1.2533951000000001 0 1.36782359999999992 0.627861000000000002 0.739962600000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.838482595757995 -63.4106051687817001 22.2526038960047003 -12.9642407000077 100001 4896 4718.50977 4997 \N \N \N \N \N \N 200111 0.571008799999999983 0.548159500000000022 0.61477550000000003 0.168789699999999987 0.147585359999999999 0.189994040000000003 +1635721458409799680 Gaia DR2 2481349872737870848 2481349872737870848 1345345331 2015.5 25.3507138473006002 0.132263493528817999 -3.38016363510493001 0.110516137560140004 0.960244752255242973 0.155882564641670995 6.16005230000000026 -0.235945571019805012 0.273219903901952998 -5.72530216060680974 0.207477413142046013 0.203546499999999991 0.406328770000000006 -0.00265184200000000017 0.0848953800000000064 0.00294297599999999993 0.010930637 0.207977379999999989 -0.0477583859999999999 0.135066500000000006 0.118930259999999996 168 0 168 0 -0.827310499999999949 147.888 0 0 31 false 0.978690740000000003 1.46968785878603003 0.0334127946173946033 0.0282475070000000016 19 10 0.244516910000000004 0 19 false 168 1082.2921685174199 2.19813947220273009 492.367004 18.1025050000000007 17 432.464203458725024 14.7050233090828009 29.4092850000000006 18.7615130000000008 16 983.564756873484953 6.3696907767376203 154.413270000000011 17.2799130000000005 1.30836100000000011 0 1.48159979999999991 0.659008000000000038 0.822591799999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.781556246135011 -63.4179884718630973 22.2292698482586992 -12.9505854099665996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481350250694999808 2481350250694999808 1677441228 2015.5 25.3710216932708015 0.82286765042057497 -3.34403834537600009 0.470268019768423973 0.627345302949441019 0.971592910099327023 0.645687400000000022 -4.36268949283465002 1.2121149150033601 -24.3435313367835988 0.834884312296324982 -0.196334330000000001 0.711344799999999999 0.0162415539999999983 0.0619030259999999999 -0.352627579999999996 -0.0426724850000000031 0.136857179999999995 0.0824577799999999944 0.105755559999999998 0.120717249999999998 146 0 145 1 1.01413130000000007 156.944 1.24496135330478008 0.862042589890137045 31 false 0.0582334550000000034 1.50461154420304011 0.170961523501347995 -0.11047034 17 9 1.07989160000000006 0 17 false 146 174.405859702659001 1.20139095236426008 145.169998 20.0844629999999995 16 77.1655889123786949 10.4973914288932004 7.35092970000000001 20.6328299999999984 16 175.224689866283001 10.5490488081299993 16.610474 19.1529309999999988 1.44714330000000002 0 1.47989850000000001 0.548366550000000008 0.931531899999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.787718206032991 -63.3766555210055031 22.2622746519101007 -12.9244834382710003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356126210439040 2481356126210439040 1383516026 2015.5 25.3819863337289 0.66714126074253699 -3.33636146929453004 0.526796343301324965 2.24876242272193005 0.821149745651512997 2.73855329999999997 -5.60995546530626044 1.25449032807649008 -21.6177999395215998 0.971208673058031047 0.0894924849999999966 0.499254350000000013 0.0757263999999999993 0.0728701300000000052 -0.178206219999999999 0.000855935099999999977 0.196913900000000003 -0.0227843879999999992 0.126155230000000007 0.164044049999999997 178 0 175 3 2.65193000000000012 222.938004 1.68081443290377996 1.35864495288378007 31 false 0.0416249200000000028 1.4010145083035499 0.168051285811990997 -0.0139226279999999994 20 10 1.12182209999999993 0 20 false 176 140.893421237949013 1.05654793447562989 133.352997 20.3161400000000008 12 60.4200767156278005 9.96459320713267083 6.06347660000000044 20.8984360000000002 13 218.607354027386009 8.7749603215674199 24.9126319999999986 18.9127580000000002 1.98041489999999998 0 1.9856777000000001 0.582296400000000047 1.40338129999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.802391703529992 -63.3650153136122967 22.2756180485067006 -12.9213836991944007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481356126210262912 2481356126210262912 487711556 2015.5 25.3807789018534997 0.279952991653845018 -3.33536655213760991 0.208926908834439012 0.856560922871162034 0.336602842246160994 2.54472280000000017 31.3121110032608989 0.506941144429925994 10.9749950333079997 0.386071471446609027 0.0479426800000000014 0.535798200000000002 0.0594382999999999995 0.0790951299999999996 -0.187163739999999995 0.0228762659999999993 0.193668840000000009 -0.0138035720000000001 0.106229946000000006 0.162968260000000004 178 0 176 2 2.08191779999999982 211.694 0.631074018918725055 1.04525795395359999 31 false 0.253652219999999984 1.34690675061785003 0.0702981086453549064 -0.0177699220000000005 20 10 0.453624340000000015 0 20 false 173 445.402267401140989 1.3874074991832801 321.032013 19.0664839999999991 16 119.533568078618003 7.27074232177193025 16.4403530000000018 20.1576629999999994 15 532.011713546968963 11.3381376855103007 46.9223179999999971 17.9471169999999987 1.46282430000000008 0 2.21054649999999997 1.09117890000000006 1.11936759999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.799009545258002 -63.3646360954828012 22.2748448581881 -12.9200144358113995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481346608562720512 2481346608562720512 579063437 2015.5 25.3980836504298004 0.465282498949733003 -3.40371932049444981 0.456892995380221989 -0.57888426847785901 0.553692169435312964 -1.04549840000000005 -0.218983377649379002 1.02244705924848001 -1.99913989340945997 0.818913310655533966 0.31403120000000001 0.2727657 0.0530656170000000024 0.17840513999999999 -0.115182734999999994 0.151366709999999988 0.367836739999999995 -0.08740589 0.0602068499999999993 0.254014430000000013 176 0 173 3 0.789460840000000053 182.186005 0.693774228857980013 0.31517528822836699 31 false 0.0700331399999999937 1.6258334431197401 0.126724996499809006 0.0414501999999999995 21 10 0.948100500000000013 0 21 false 176 181.038000104041004 1.30220072231146 139.024994 20.0439410000000002 15 101.537983886343 6.23918110856099961 16.274248 20.334816 15 113.563529575789005 7.92039872677360979 14.3381080000000001 19.6238230000000016 1.18815669999999995 0 0.71099279999999998 0.290874479999999991 0.420118329999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.899601412413006 -63.4188640553265017 22.265458827393001 -12.9899204503715993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481263153053810176 2481263153053810176 54668611 2015.5 24.7912306637207003 0.0951825617242633981 -3.47019513285811021 0.061666071302507397 0.489444719628070013 0.0997785116728854005 4.90531200000000034 26.0432416122711992 0.222363720350294003 -26.1676196949405018 0.119025282834014007 -0.0508154150000000027 0.275857240000000004 -0.249708769999999997 0.0456518159999999978 -0.239904850000000003 0.0530773480000000034 0.218829259999999998 0.0334646479999999996 0.0133744190000000002 0.0376860539999999966 115 0 115 0 -0.51672079999999998 101.877998 0 0 31 false 4.21222350000000034 1.5832845433579299 0.0223821184295385014 -0.0353619800000000012 13 9 0.202371400000000007 0 13 false 113 3955.04893312227978 3.95930567349149021 998.924988 16.6954859999999989 13 1874.71528357820989 10.9255047437687995 171.590730000000008 17.1690499999999986 13 2953.17485966450022 11.5890438203248003 254.824720000000013 16.0861969999999985 1.22069040000000006 0 1.08285330000000002 0.473564150000000017 0.609289170000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.729913275835997 -63.7358240637256017 21.6627838896881997 -12.8278194367085003 100001 5036.43994 4929.39014 5215.3999 0.485000014 0.382999986 0.67110002 0.237000003 0.1699 0.323599994 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481263389276561792 2481263389276561792 367564538 2015.5 24.7998467704786982 0.559081668142555999 -3.45632204498553985 0.360436561400224009 1.95215200179743009 0.550187385459506961 3.54815840000000016 -2.4901490772907402 1.34749639051245995 -2.60685863011896002 0.618543100327371032 0.0261830330000000014 0.196164580000000005 -0.433046099999999989 0.209089739999999996 -0.00115833959999999997 0.262693600000000027 0.379413280000000019 0.0963021800000000011 -0.00687576640000000031 0.0209830480000000007 119 0 118 1 1.89826260000000002 143.225006 0.433809409203279983 0.152502407611006002 31 false 0.122563240000000004 1.06954665720047992 0.118949090770611998 0.0570886540000000026 14 8 1.21464130000000003 0 14 false 117 260.649837266137979 1.70649373247391001 152.740005 19.6482220000000005 12 78.5797276950047063 9.50509710782466932 8.26711500000000044 20.613111 12 330.201226174839974 12.9464689404978994 25.5051200000000016 18.4649730000000005 1.56831469999999995 0 2.14813799999999988 0.964889499999999956 1.18324849999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.734550204362989 -63.719630969721301 21.6762462695714007 -12.8181178683712993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481263118694089344 2481263118694089344 1653452588 2015.5 24.8245974122082984 0.105420013190990994 -3.4679459522272702 0.0629103228231168016 1.69011919884361994 0.0965520247965568068 17.5047509999999988 2.28545204256898016 0.265891896924912996 -1.9534810091964101 0.122999077393956005 -0.0693616700000000003 -0.0287010169999999988 -0.515074730000000036 0.183809190000000011 -0.108305650000000003 0.258725350000000021 0.104026884 0.183437180000000005 -0.0585938400000000012 0.0235557399999999986 123 0 123 0 0.866167200000000026 131.095993 0 9.25047849739427909e-16 31 false 3.72964330000000022 1.51343647329147002 0.0202366101485851012 -0.0132684199999999995 14 9 0.248415410000000003 0 14 false 123 3529.89659585612981 5.27212315942963006 669.539978 16.8189600000000006 13 1201.87016908836995 17.0445106708238008 70.5136200000000031 17.6517449999999982 13 3471.89770980352978 21.2326717152774016 163.516750000000002 15.9105019999999993 1.32405229999999996 0 1.74124239999999997 0.832784650000000015 0.908457760000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.796212981271992 -63.719914915738201 21.6953684313224997 -12.8380638894120995 100001 4153.18994 3970.25 4662.68994 0.358500004 0.0838999972 0.704999983 0.192300007 0.0549000017 0.38499999 200111 0.525953349999999986 0.417289299999999974 0.575538800000000017 0.0741507200000000033 0.0654148799999999947 0.0828865540000000012 +1635721458409799680 Gaia DR2 2481268096560712832 2481268096560712832 926013553 2015.5 24.8849541892274999 0.79414816723119297 -3.47307784203748016 0.349540735435116989 0.035065085292797997 0.566996825338274002 0.0618435300000000007 9.34454310189165049 2.14425408916150984 0.977663308204164028 0.657262330590304034 -0.298396139999999976 -0.347820879999999999 -0.768617630000000052 0.310624540000000005 0.0779145900000000058 0.36515835000000002 0.0253324750000000001 0.46345945999999999 -0.119652469999999997 -0.253870929999999995 122 0 122 0 2.74266979999999982 163.335007 1.45207335307398999 2.32376682855456007 31 false 0.113527980000000001 1.68824786361437007 0.110253706610506999 -0.160124700000000009 14 8 2.0022091999999998 0 14 false 114 276.92948571239998 2.18731097034994981 126.607002 19.5824430000000014 12 126.132480804560004 9.68857030703759925 13.0186890000000002 20.0993209999999998 12 226.870647134205996 21.1890418255657984 10.7069799999999997 18.8724750000000014 1.27470400000000006 0 1.22684670000000007 0.516878100000000007 0.709968570000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.924643288930014 -63.6994185639003021 21.7508233018920016 -12.8651346874453001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268371440857984 2481268371440857984 252655378 2015.5 24.8534437496225991 2.65860050064764009 -3.45198175015655995 1.60117216683860009 \N \N \N \N \N \N \N 0.584506199999999976 \N \N \N \N \N \N \N \N \N 78 0 77 1 0.662703799999999954 79.5343018 0 0 3 false 0.0275159809999999984 \N \N 0.102433120000000003 9 7 9.32592600000000083 0 10 false 78 93.2085215129042979 1.22884378689448992 75.8506012 20.7647270000000006 6 52.6564581642857021 16.9000302283191992 3.11576129999999996 21.0477600000000002 7 114.996051526374998 23.7786773549636017 4.83609959999999983 19.6102120000000006 1.79868220000000001 0 1.43754770000000009 0.283033370000000006 1.15451429999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.840263780700013 -63.6933974297579013 21.728863581916201 -12.8338944597551006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268337078886144 2481268337078886144 1052076067 2015.5 24.8810716166187014 0.41189656641953698 -3.45881469819339982 0.230180390319860012 0.347247504346191005 0.334968473739995998 1.03665720000000006 8.69853287322773916 1.08838050600580005 -2.62210552877058012 0.46896858455394802 -0.186231819999999992 -0.163037020000000005 -0.628710600000000008 0.241183089999999989 0.0627834000000000031 0.277705199999999985 -0.0754917699999999997 0.328089399999999975 -0.0327918400000000027 -0.173094319999999996 114 0 113 1 1.62789479999999998 132.968002 0.771701298952196968 1.54815348436913003 31 false 0.272126900000000005 1.5441648406083901 0.0721469477585506974 -0.109150805000000004 13 9 1.00302880000000005 0 13 false 113 506.709558874237985 1.73211041616460992 292.539001 18.9264679999999998 11 238.224844251578986 12.9330453657182005 18.4198570000000004 19.4089199999999984 10 393.880241736748985 9.79292128823657926 40.220913000000003 18.2735100000000017 1.24747030000000003 0 1.13541029999999998 0.482452400000000003 0.65295789999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.903236260303004 -63.6880847780031019 21.752545495263 -12.8504500875815992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268715036011008 2481268715036011008 1589954730 2015.5 24.8960888170710994 0.289468897755044974 -3.44741807486846019 0.151892234607515997 2.64950215230678987 0.24010344572367201 11.0348360000000003 27.9476459178014984 0.761525373258459037 7.90910879562297975 0.287830540917490996 -0.150417689999999993 -0.151509900000000003 -0.623335500000000042 0.197055160000000007 -0.0298507899999999986 0.223299319999999996 0.0897759399999999985 0.319434879999999977 0.00413732649999999993 -0.129077479999999994 132 0 132 0 1.7704013999999999 156.589005 0.367767147698543018 0.602355881509022972 31 false 0.517547670000000015 1.28949465517486006 0.0495598325542463969 -0.118120630000000004 15 9 0.701309100000000019 0 15 false 131 726.418367554510951 2.32652198858873982 312.234009 18.5353980000000007 12 177.095593322490004 15.2117001199365998 11.6420639999999995 19.7308699999999995 11 906.180462219067977 10.6932322378498998 84.7433599999999956 17.3688830000000003 1.49125649999999998 0 2.36198620000000004 1.19547080000000006 1.16651539999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.923191237527988 -63.671462569807602 21.7711548265607995 -12.8454105019051994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268478813307648 2481268478813307648 1037665233 2015.5 24.9260738119899017 1.19921118856955999 -3.45909887078697986 0.707727148151993002 0.76973370963268295 0.900076429495720975 0.855187059999999999 -1.81062185230724992 3.16573570751944011 -18.8822868539191013 1.99351381257595994 -0.366792859999999998 -0.263653099999999974 -0.729011799999999988 0.409473450000000017 0.160411419999999999 0.399097440000000026 -0.460194019999999981 0.411284539999999976 -0.263927970000000012 -0.361186180000000023 106 0 106 0 0.255768869999999982 103.998001 0 0 31 false 0.0410168880000000013 1.33348204492439004 0.239940201849481005 -0.106923279999999996 13 8 3.05227329999999997 0 14 false 106 121.899289538269997 1.14287318166878005 106.660004 20.4733620000000016 9 44.8641537387060012 8.5267696772291508 5.26156500000000005 21.2216400000000007 11 162.052780538075012 8.43850135083343034 19.2039760000000008 19.2377800000000008 1.69744169999999994 0 1.98385999999999996 0.748277659999999956 1.23558239999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.995499008080003 -63.6695290518380972 21.7952421370947995 -12.8673377860167992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481265626954990080 2481265626954990080 365332849 2015.5 24.9592694642385986 2.93905816328092007 -3.45232524976262001 1.72962178974451009 \N \N \N \N \N \N \N -0.00457535270000000022 \N \N \N \N \N \N \N \N \N 109 0 108 1 56.092804000000001 4818.75 13.9977725836964009 300.926070003940993 3 false 0.00486319930000000001 \N \N -0.0761215400000000014 17 9 6.6540739999999996 0 17 false 147 459.243329128899006 5.68576127094461015 80.7707977 19.033258 14 582.266009151452977 10.6790561007587996 54.5241100000000003 18.4385849999999998 15 1318.33543542908001 22.8305806859783011 57.7442780000000013 16.9618549999999999 4.1385500000000004 0 1.47673030000000005 -0.594673160000000034 2.07140350000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.056865967539011 -63.6494686083391983 21.8293902122770014 -12.8733039050715998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266790890803200 2481266790890803200 1292383832 2015.5 25.0044456218463012 2.47076133581528001 -3.47073136219185985 1.97018770076042005 \N \N \N \N \N \N \N 0.684196200000000032 \N \N \N \N \N \N \N \N \N 91 0 91 0 2.04806609999999978 114.943001 1.50348875110995994 0.579595842911657999 3 false 0.0319821279999999986 \N \N 0.040652180000000003 11 7 7.91406869999999962 0 11 false 90 117.911952434724995 1.47708826561051998 79.827301 20.5094719999999988 5 64.3388547567224975 16.7192918574853984 3.84818049999999978 20.8302039999999984 8 171.176736717729995 11.8551312168502001 14.4390420000000006 19.1783080000000012 1.99738529999999992 0 1.65189549999999996 0.320732120000000009 1.33116340000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.166471351219002 -63.647176629190902 21.8653848111279991 -12.9070840252452008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266893969878016 2481266893969878016 1382651456 2015.5 25.0048999542893 0.215656345455329995 -3.44502304852411001 0.154198211785703004 2.30545965018403987 0.224327517023956008 10.2772039999999993 44.8088927659369034 0.485335945220395026 -31.2424369156369011 0.261615982344281017 0.0660508600000000029 0.164639439999999998 -0.314302240000000011 0.187728699999999998 -0.0578887459999999979 0.220623509999999995 0.207940999999999987 0.145413650000000005 0.0964569900000000063 0.103342600000000007 147 0 147 0 3.6369180000000001 211.660004 0.678476380831465997 2.63834052077150982 31 false 0.513090799999999958 1.34408498482172001 0.0497271798716015997 -0.0444133239999999971 17 9 0.437003370000000002 0 17 false 146 838.776650782368051 2.37136306822611997 353.710999 18.379249999999999 13 174.066095839972007 5.96440271768541042 29.1841620000000006 19.7496030000000005 15 1062.86336974874007 17.9875018425621995 59.0889930000000021 17.1957260000000005 1.47468280000000007 0 2.55387690000000012 1.3703536999999999 1.1835232 \N \N 0 \N \N \N NOT_AVAILABLE 151.142987934146987 -63.6236741078865009 21.8755705402900986 -12.883366075564 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266000616672640 2481266000616672640 1027598895 2015.5 25.0383731149328987 0.128240200223785988 -3.47323056135267993 0.0552772227273891983 1.03215339049348009 0.0971022858413358031 10.6295479999999998 -4.22698697563810999 0.33819399501438302 -9.1983310076401299 0.0951152374453353988 -0.313451919999999995 -0.391024399999999994 -0.825597200000000031 0.291986670000000004 0.228576109999999999 0.426288520000000004 -0.11287208 0.602978899999999984 -0.0654137699999999961 -0.188956099999999988 141 0 140 1 1.23816009999999999 155.649994 0.0781396837294894009 0.21512568019216699 31 true 5.17762899999999959 1.56926415306586997 0.0182231231444093984 -0.0473764460000000026 16 8 0.329267440000000022 0 16 false 139 4858.15383610102981 4.68125082668194015 1037.79004 16.4721870000000017 16 2149.25879510160985 14.8371493836061994 144.856580000000008 17.0206659999999985 15 3985.3201182993098 21.7750902945546017 183.02197000000001 15.7607619999999997 1.2627387000000001 0 1.25990390000000008 0.548479099999999997 0.711424799999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.237987847303998 -63.6351406944087969 21.8967177516985991 -12.9219294086218994 100001 4786.70996 4676.8501 4954.41992 0.174500003 0.0160000008 0.354999989 0.0627000034 0.00789999962 0.160999998 200111 0.665869799999999956 0.62155265000000004 0.69751996000000005 0.20971128 0.169040279999999987 0.250382300000000002 +1635721458409799680 Gaia DR2 2481266172415371392 2481266172415371392 206295195 2015.5 25.0398432246547991 0.554234135538269945 -3.4482277060528399 0.41375371789318599 2.57177004266312981 0.610657627527965041 4.21147630000000017 0.354664534967507994 1.21625791221729007 -7.10778874680049011 0.673508699918864973 0.147547869999999998 0.232563910000000013 -0.31735677000000001 0.214346829999999988 0.0019553283000000002 0.229299900000000001 0.275403379999999975 0.184556949999999997 0.111468960000000006 0.139275249999999989 148 0 145 3 8.31668200000000013 329.188995 2.52801544263502986 9.42664780035764949 31 false 0.0789767700000000017 1.42414027778546992 0.129837788026011008 0.00796605599999999914 17 9 1.09429259999999995 0 17 false 147 322.478617359001021 2.87808909559509019 112.045998 19.4171140000000015 14 105.814688474243994 11.7368643303379994 9.01558400000000049 20.2900239999999989 13 398.876459429218983 10.5639514618567993 37.7582629999999995 18.2598249999999993 1.56503759999999992 0 2.03019900000000009 0.872909550000000034 1.15728950000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.21719544810199 -63.6118605157870007 21.9076008879499007 -12.8992409479089005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266928329799808 2481266928329799808 1502040450 2015.5 25.0358931506951983 0.782804050724599021 -3.44378915998917989 0.897584856734507053 0.589922967073717053 0.89559365451251105 0.658694899999999972 10.5829890810212994 1.71918653895193008 -1.99447279853265003 1.9096572982673099 0.376326139999999976 0.308333159999999995 -0.23020409 -0.0359439439999999985 0.290856100000000006 0.0588222099999999998 -0.38963544 0.079806580000000002 -0.187415579999999998 0.306857080000000004 114 0 114 0 0.435485400000000022 114.864998 0 0 31 false 0.0382041149999999968 1.39382754008081999 0.254210698611129993 0.0578577560000000032 13 8 1.85765699999999989 0 13 false 113 106.876989520532007 1.04458692753436999 102.315002 20.6161560000000001 8 26.5366888399588987 6.12553387344997002 4.3321430000000003 21.7917699999999996 11 151.805614768244993 8.4857255164777996 17.889526 19.3087000000000018 1.6686688999999999 0 2.4830703999999999 1.17561530000000003 1.30745510000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.204936342440988 -63.6095029381341988 21.9055260414731983 -12.8936591147586004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266206775255936 2481266206775255936 1672112406 2015.5 25.0450146239566998 1.4241658707765501 -3.44653238394836015 1.43626748379835001 \N \N \N \N \N \N \N -0.510730559999999945 \N \N \N \N \N \N \N \N \N 87 0 85 2 0.356949399999999972 83.9104996 0 0 3 false 0.0427473039999999999 \N \N -0.0180471580000000006 10 7 4.60159159999999989 0 11 false 85 124.051542704495006 1.33705166317848989 92.7798996 20.4543609999999987 7 159.141715743345003 34.2979349248111021 4.63997939999999964 19.8469279999999983 7 94.4518161175723066 17.4352396889027013 5.41729400000000005 19.8238950000000003 2.04425929999999978 0 0.0230331419999999995 -0.607433299999999954 0.630466459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 151.226109653002993 -63.608142726717702 21.9131643629299013 -12.8995742260190003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481265863177722112 2481265863177722112 744839742 2015.5 25.0851921855528985 0.0480960303416531967 -3.46654978165970018 0.0403070884255331968 0.422314306583862986 0.0543936907156706007 7.76403100000000013 11.2731658476517005 0.0975578374027341044 -9.17242778083604016 0.0687784207005238957 0.265151560000000008 0.376153100000000018 -0.255555699999999997 0.158226699999999998 0.189268960000000014 0.224163040000000008 -0.0146308689999999995 0.193466109999999997 0.0527093900000000018 0.191660369999999997 115 0 114 1 -2.97219679999999986 70.2433014 0 0 31 true 17.4118710000000014 1.61915077715794009 0.0129353980100286002 0.140413729999999987 13 8 0.096022330000000003 0 13 false 111 14005.6781886055996 10.1204619348766993 1383.90002 15.3226049999999994 11 7822.47904136349007 37.5597394531367996 208.267650000000003 15.6180269999999997 12 9213.85300160924999 24.5278200576053997 375.649080000000026 14.8508169999999993 1.21638749999999995 0 0.767209999999999948 0.295421600000000006 0.471788399999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.326914460317994 -63.6093014312217022 21.9438033421631005 -12.9329990929147005 100001 5925.2998 5520 6260 \N \N \N \N \N \N 200111 1.66457070000000007 1.49133190000000004 1.91798329999999995 3.07709309999999991 2.21635869999999979 3.93782759999999987 +1635721458409799680 Gaia DR2 2481269092993133440 2481269092993133440 396749900 2015.5 24.8260429778353 0.84852584488737004 -3.44409119930148 0.496002107539083026 0.676091044974394983 0.739452408837937947 0.914313139999999969 17.5340746111310999 2.22037213161778979 1.5425162072426799 0.869843817462675029 -0.0837727300000000036 -0.124085664999999998 -0.575833139999999966 0.222040430000000011 -0.115317984999999998 0.316805930000000013 0.289680720000000003 0.232814009999999988 -0.0844954849999999952 -0.00315164899999999986 124 0 122 2 5.44680929999999996 220.643997 2.64784803086919007 7.63911421057331008 31 false 0.0609680859999999977 1.37414395844451009 0.151063502155003998 -0.00915411699999999981 14 9 2.02351759999999992 0 14 false 120 251.951582383885011 2.10474067490403982 119.707001 19.6850740000000002 11 73.0746621396376952 7.98051551567650019 9.15663400000000038 20.6919700000000013 11 305.803613837266028 15.7630856245797002 19.3999839999999999 18.5483130000000003 1.50377420000000006 0 2.14365769999999989 1.00689699999999993 1.13676069999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.776738795054996 -63.6976275366194997 21.7058016357431995 -12.8164387930278991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269299151710592 2481269299151710592 292292405 2015.5 24.8219012089364988 1.36736096429766008 -3.43252523387447983 0.743337101346128959 0.042651858681447101 1.05570451207793004 0.0404013199999999975 2.70269340450670015 3.44901838321505982 -1.04022547721803993 1.97216358742123998 -0.280158850000000015 -0.257390950000000007 -0.723874400000000029 0.335787329999999995 -0.0590878950000000014 0.362441569999999991 -0.195032199999999989 0.352061300000000021 -0.261667040000000017 -0.131625249999999999 100 0 100 0 0.497292100000000015 101.322998 0 0 31 false 0.0360081869999999971 1.12229175306170004 0.308939172388470018 0.0126761789999999992 12 9 3.23556400000000011 0 12 false 103 109.380495284747994 1.26105739722672006 86.7370987 20.5910170000000008 9 83.9406506617297055 13.1614627099911008 6.37776000000000032 20.5414579999999987 9 100.658838405826998 5.79293653152519017 17.3761329999999994 19.7547899999999998 1.68768190000000007 0 0.786668799999999946 -0.049558640000000001 0.836227399999999954 \N \N 0 \N \N \N NOT_AVAILABLE 150.757392023508999 -63.6888326610863018 21.7062545596545995 -12.8041640608771008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316440712622720 2481316440712622720 208571942 2015.5 24.8149575687214003 0.808461808918089053 -3.39044151981629005 0.384237828244696988 4.29232341014374974 0.594831785360925958 7.2160289999999998 7.66049486336202978 2.12193931820026993 13.2009072289593004 0.665562953118077005 -0.273082939999999996 -0.290736300000000003 -0.755856900000000054 0.290417079999999994 0.0447741929999999969 0.433418870000000012 0.141066090000000005 0.416671840000000016 -0.138674829999999999 -0.133440029999999987 112 0 111 1 4.72599030000000031 189.791 1.67152031570505 4.07166921111357016 31 false 0.116899539999999996 1.02474541393060004 0.127426155478432002 -0.0590809959999999967 13 8 1.98212919999999992 0 13 false 112 317.114795935942027 2.04247756313997986 155.259995 19.4353240000000014 11 97.070311871250297 16.9050727780160983 5.74208159999999967 20.3836730000000017 11 477.641798011128003 26.4106843609071014 18.0851730000000011 18.0641649999999991 1.81231570000000008 0 2.31950760000000011 0.948348999999999998 1.37115860000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.703726171791004 -63.6534413310850979 21.7156281036097987 -12.7625044797298006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316715590532480 2481316715590532480 1405590284 2015.5 24.8008427770804012 0.469499263834744995 -3.38208835139693997 0.274806752862489012 3.07848481909864002 0.38587277698391198 7.97797870000000042 25.8985631553305993 1.22267591462652003 -70.7106835644669047 0.469081015120791978 -0.122257669999999999 -0.137179579999999995 -0.68518937000000002 0.252264770000000027 0.00192357339999999996 0.36224866 0.304860200000000026 0.360896739999999994 -0.081706479999999998 -0.0348577539999999977 124 0 124 0 1.41282259999999993 141.404999 0.306462253383260996 0.161865824882351989 31 false 0.226294279999999987 1.36006221931611004 0.083075632822874404 0.0598436739999999995 14 9 1.1334858000000001 0 14 false 120 371.041054948772 1.73067272175447995 214.391006 19.2648100000000007 12 92.353960320281999 11.3593822207981994 8.1301919999999992 20.4377500000000012 12 512.304867737601967 9.49623915981976019 53.9481850000000023 17.9880980000000008 1.62962779999999996 0 2.44965169999999999 1.17293929999999991 1.27671240000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.667029656951001 -63.6516917825636028 21.7053785031773003 -12.7495285390379998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316818669746048 2481316818669746048 1533599316 2015.5 24.8269714379382016 0.217589959436954 -3.38541066699787985 0.133618796735090001 0.639276863984065025 0.197994132487854996 3.22876669999999999 8.46075179037432967 0.552801931935729018 2.36716193682193987 0.250759427576855987 -0.0446953480000000028 -0.0204264540000000001 -0.603055950000000007 0.208491120000000002 -0.0387731939999999969 0.239964320000000009 0.208445059999999988 0.292945920000000026 -0.0480916050000000025 -0.0351495149999999992 120 0 118 2 2.7742922000000001 159.209 0.529344788660178978 2.39973214599740015 31 false 0.884033439999999948 1.5017201517757599 0.0404542884207571979 0.0266148470000000005 14 9 0.510428850000000045 0 14 false 116 1311.47792217857 3.64863303116448989 359.444 17.8939629999999994 9 506.602136097775997 10.1519214502278992 49.9020920000000032 18.5897199999999998 11 1152.89011347207997 10.1415414953014995 113.679969999999997 17.10745 1.26536050000000011 0 1.48226930000000001 0.695756900000000011 0.7865124 \N \N 0 \N \N \N NOT_AVAILABLE 150.723591592746999 -63.6438817406567026 21.7289607111530998 -12.7622705016741005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316891684096768 2481316891684096768 1486037334 2015.5 24.8207961894911016 0.638258101280499979 -3.37811718114107018 0.527356398186474951 1.88921154514058998 0.705967712285896054 2.67605950000000004 16.1963419644155984 1.42955836603478992 -19.2712021054834999 0.982275824699554989 0.0957712700000000056 0.238839460000000003 -0.247567029999999993 0.157692639999999995 -0.183403179999999999 0.220188720000000004 0.306000439999999985 0.0389914999999999984 -0.0456754830000000028 0.193552030000000014 125 0 125 0 4.83862099999999984 210.679001 2.05512585353673005 2.95454469144894016 31 false 0.0594563499999999981 1.28179701450272998 0.162235786273926014 0.0712939050000000046 14 10 1.28948119999999999 0 14 false 123 171.201534859871998 1.35900982288967009 125.974998 20.1045969999999983 8 47.7887026509381982 9.78578132259207045 4.88348340000000025 21.1530740000000002 8 230.567871994164989 15.5277563383147008 14.8487570000000009 18.8549229999999994 1.6258999999999999 0 2.29815099999999983 1.0484772 1.24967380000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.704136096907007 -63.6398094967444976 21.725857249210101 -12.7532132313831994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316887389388288 2481316887389388288 819344860 2015.5 24.8261012889058001 0.594004432350735967 -3.37832555936231982 0.592298517008171044 4.62031238352967044 0.855316527555567974 5.40187449999999991 -26.1155616395911991 1.20374472196036009 -41.2068723005534991 0.957703812943748956 0.155844289999999996 0.351833430000000003 -0.144219669999999994 0.157742460000000001 -0.430269330000000005 0.222011550000000002 0.372062979999999988 0.00905082200000000003 -0.0926224400000000003 0.388876170000000021 88 0 86 2 2.34404749999999984 113.808998 1.38521540163186008 1.51039509796262994 31 false 0.104446754000000003 1.32248802913474006 0.175130141133719996 0.239549829999999991 10 7 1.16477800000000009 0 10 false 86 241.970264596750013 1.91562282830779007 126.314003 19.7289600000000007 6 33.7045666517306017 9.81130312791601078 3.43527940000000021 21.5321660000000001 8 369.027046282184983 21.630671385221099 17.0603599999999993 18.3442749999999997 1.66438470000000005 0 3.18789100000000003 1.80320550000000002 1.38468550000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.715179736149992 -63.6377986266046989 21.730822333938999 -12.7553671208219992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316853029487360 2481316853029487360 1062226219 2015.5 24.8314482422407004 0.766780653004551005 -3.37797696761635979 0.633064203644165047 2.33646647617407988 0.871644397952218042 2.68052720000000022 5.03196396005736979 1.75494336836269005 -2.39257089575119997 1.88052315662551006 -0.0235864609999999995 0.269426580000000027 -0.0709190700000000007 0.110000180000000003 -0.233142270000000013 0.158953759999999999 -0.0448261800000000002 -0.192023899999999997 -0.238508159999999997 0.362903450000000016 85 0 85 0 0.275886420000000021 82.8563995 0 1.12346670994454001e-15 31 false 0.055214733000000002 1.17693820357133005 0.248132287911958987 0.022863640000000001 10 9 1.87221170000000003 0 10 false 85 132.822643314900006 1.58370527898204005 83.8683014 20.3801859999999984 7 84.0213118447687037 15.9397499592957992 5.27118100000000034 20.5404149999999994 7 81.6419527596948029 13.8056588281763997 5.91365859999999977 19.9821360000000006 1.24725160000000002 0 0.558279039999999949 0.160228730000000014 0.398050300000000024 \N \N 0 \N \N \N NOT_AVAILABLE 150.725786002451997 -63.635263007461397 21.736038660122901 -12.7570189963795002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316887389388544 2481316887389388544 834941183 2015.5 24.8168450204574 1.63382093576774001 -3.36998567955069017 0.862228692906158001 \N \N \N \N \N \N \N -0.415654120000000016 \N \N \N \N \N \N \N \N \N 67 0 67 0 0.316881780000000002 64.9061966 0 0 3 false 0.039094493000000001 \N \N -0.1046121 8 7 4.35105849999999972 0 8 false 69 107.109869371000002 1.99990582827557994 53.5574989 20.6137920000000001 3 18.7594574803178986 0.849573775271744047 22.0810220000000008 22.1683370000000011 5 202.566665139594988 8.59449878272062051 23.5693400000000004 18.9954999999999998 2.06634660000000014 0 3.17283630000000016 1.55454439999999994 1.61829190000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.688450850056995 -63.6340505395492002 21.7251865598738014 -12.7441992944145994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317024828315136 2481317024828315136 1316480104 2015.5 24.8329424045912006 1.19151204455055004 -3.36039105050120002 1.78589952796965989 \N \N \N \N \N \N \N 0.521447540000000043 \N \N \N \N \N \N \N \N \N 70 0 70 0 1.21161370000000002 79.0542984 0.936016307982110995 0.16584178019034701 3 false 0.0297884269999999993 \N \N 0.180797010000000008 8 6 5.59413240000000034 0 8 false 70 97.0430716627532064 1.90570447594859993 50.9224014 20.720955 4 43.1758110439040976 1.86323284035857006 23.1725250000000003 21.2632869999999983 5 77.5311595331862975 17.578429133216801 4.41058540000000043 20.0382290000000012 1.24384939999999999 0 1.22505759999999997 0.542331699999999972 0.682725899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.712386100921009 -63.6186480146061015 21.7441328431067014 -12.7412340616366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317304001475200 2481317304001475200 527468124 2015.5 24.8185683906882986 0.0753369397036937061 -3.34838302023154011 0.0611837600324525999 1.62278615170313989 0.0841577685061407066 19.2826650000000015 -5.88208026959441987 0.170660928783752996 -16.6985685292832002 0.117888092966458996 0.121322349999999995 0.242461070000000001 -0.23917063999999999 0.127425310000000014 -0.13890712999999999 0.152970539999999988 0.235631699999999999 0.0506177169999999996 -0.00658174650000000003 0.169961589999999996 132 0 130 2 1.2392455 144.899002 0 0 31 false 4.42791400000000035 1.43973327932461004 0.0189928598745466998 0.0605777580000000024 15 10 0.158944190000000013 0 15 false 127 3917.66247708983019 3.82736578413335993 1023.59003 16.7058 14 1344.61707059905007 17.5484323201758983 76.6231999999999971 17.5298920000000003 13 3835.78965212997991 40.8141689574639983 93.9818099999999959 15.8022829999999992 1.32232079999999996 0 1.7276087 0.824092860000000038 0.90351579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.671790354361008 -63.6136826569179021 21.7350228699451016 -12.7247677990652992 100001 4106.54004 3935.09009 4556.5 0.197999999 0.102200001 0.449099988 0.0909999982 0.0603 0.206400007 200111 0.598494199999999976 0.486125699999999994 0.651780400000000038 0.0917735199999999973 0.0818736550000000035 0.101673379999999994 +1635721458409799680 Gaia DR2 2481317230986616192 2481317230986616192 1623356892 2015.5 24.835901929165999 12.0730867067674001 -3.35066092182723985 8.25207333531086995 \N \N \N \N \N \N \N 0.637164900000000034 \N \N \N \N \N \N \N \N \N 36 0 36 0 30.3484520000000018 1401.41003 18.3488861631893982 171.790680996316013 3 false 0.00286461719999999993 \N \N 0.093419840000000004 7 6 27.5026510000000002 0 7 true 62 263.542041742511003 4.20647335690023993 62.6515007 19.6362419999999993 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.709335991153011 -63.6085699839577998 21.7506387281102995 -12.7332882949988004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269161712614912 2481269161712614912 190948150 2015.5 24.8585309121815996 0.667389269050073008 -3.43295564898276018 0.376144875462012973 0.837599284198601968 0.536770568712373053 1.56044190000000005 -9.3794049563317099 1.77771283855592999 -16.6032304234650994 0.733084676174573957 -0.176565470000000002 -0.201606800000000003 -0.656533400000000045 0.279747599999999985 -0.0988200999999999941 0.381374979999999975 0.215880039999999995 0.267922300000000002 -0.205285639999999991 -0.0743413099999999938 106 0 106 0 -0.923591199999999946 87.8249969 0 9.99872248613502021e-16 31 false 0.128843099999999988 1.40605678791367006 0.125904089228743993 -0.031151827 12 9 1.63612160000000006 0 12 false 106 236.371442260142999 1.58279358943217008 149.337997 19.7543770000000016 10 56.6827856454943984 13.8984206414732991 4.07836149999999975 20.9677599999999984 10 340.185462224342018 22.0999360405495011 15.3930520000000008 18.4326299999999996 1.67900249999999995 0 2.53512950000000004 1.21338269999999993 1.32174680000000011 \N \N 0 \N \N \N NOT_AVAILABLE 150.832765478042006 -63.6739879431925004 21.7409246048542997 -12.8180995606065995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269436590529664 2481269436590529664 1306443717 2015.5 24.8396469580021986 0.318785599190591018 -3.41220464730059003 0.187799332462731006 0.85829810190063105 0.276109531637911021 3.10854220000000003 10.0763917443885997 0.851409780191540011 0.731710648489272031 0.34829765411753999 -0.0910675100000000043 -0.148586259999999998 -0.586722700000000041 0.233703359999999999 -0.0882350949999999995 0.304758670000000009 0.252094299999999993 0.244389190000000006 -0.107895779999999997 -0.0427473999999999979 116 0 115 1 2.16874460000000013 144.604004 0.58387209116650296 1.31316001932733006 31 false 0.450035330000000011 1.35052240127374001 0.0617146676415996007 -0.0334201000000000012 13 9 0.778468799999999961 0 13 false 113 687.887894206542001 2.07325198988616988 331.791992 18.5945719999999994 12 126.888009937269004 13.9709527611338 9.08227349999999944 20.0928359999999984 12 893.654286476316997 10.6224724399445005 84.1286539999999974 17.3839970000000008 1.48358809999999997 0 2.70883940000000001 1.49826429999999999 1.21057510000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.774636401929996 -63.6629823376396971 21.7308436590996017 -12.7918449736179998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269608389220992 2481269608389220992 924617394 2015.5 24.8589678058630987 0.316450492301488973 -3.41351563684819981 0.195011048291487993 1.04667901976619993 0.281006786448948997 3.72474650000000018 6.94453835157166033 0.843828736788704958 -2.03006990945399002 0.372763261879341001 -0.0503005570000000027 -0.143529089999999998 -0.57155009999999995 0.217114720000000011 -0.0658310500000000021 0.275468559999999973 0.20229649999999999 0.262850099999999975 -0.0818875949999999936 -0.0151480429999999999 103 0 103 0 3.4806982999999998 154.348999 0.641954377622813044 1.64985047575616006 31 false 0.460166750000000013 1.31996094665218 0.0625314817129025979 -0.0102518499999999999 12 9 0.770235800000000026 0 12 false 103 736.423229783432021 2.54876149187261003 288.93399 18.5205480000000016 9 190.175486276772006 9.22606363638561078 20.6128520000000002 19.6535019999999996 10 833.265930791870005 7.18900155658084028 115.908439999999999 17.4599599999999988 1.38974620000000004 0 2.19354059999999995 1.13295360000000001 1.06058690000000011 \N \N 0 \N \N \N NOT_AVAILABLE 150.815381513262992 -63.656137680797201 21.7487191065014009 -12.8002016207321994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269608389220352 2481269608389220352 108122995 2015.5 24.8655028784358016 1.31778543404809989 -3.41537987162343981 0.748102548378525967 -0.0531359511984534003 1.00651512364765994 -0.052792005000000003 -6.60209252241295008 3.19688552038397988 -12.6326510209557004 2.35277560303639 -0.397916729999999996 -0.267217219999999978 -0.696849599999999958 0.485743900000000006 0.0925504340000000009 0.485126669999999982 -0.30516169999999998 0.293629560000000012 -0.449062469999999991 -0.265233730000000001 81 0 81 0 2.35572930000000014 108.055 1.35451670747751995 0.598352759022763969 31 false 0.0482651669999999977 1.51388532050687008 0.288230166921047026 -0.0578991030000000004 10 8 3.11446569999999978 0 10 false 85 129.95765032645599 2.09234749591055014 62.1109009 20.4038620000000002 4 75.3528631929131052 14.2383848051883994 5.29223399999999966 20.6586379999999998 7 143.131124650680988 12.6373298295160001 11.3260570000000005 19.3725850000000008 1.6811936999999999 0 1.28605269999999994 0.254776000000000002 1.03127670000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.830494304913998 -63.6551112988833978 21.7542262556073993 -12.8043478877224004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268543237321472 2481268543237321472 1240518064 2015.5 24.9108490828939999 0.767944805557961963 -3.44072999746322017 0.419480118098032984 -1.42661468206681996 0.684821606988262999 -2.08319160000000014 4.00113904878436966 2.06751252318965006 -1.71144783077936991 0.768885455095429049 -0.0951936899999999975 -0.126083899999999999 -0.621359169999999961 0.216215479999999988 0.0934122099999999955 0.220604660000000008 0.146371279999999993 0.326771770000000017 0.00867069200000000068 -0.151940059999999988 131 0 129 2 3.62950559999999989 189.503998 1.80976878457009005 3.25850130378498992 31 false 0.0703219600000000028 1.88063432519241003 0.131861609865133012 -0.0895323600000000053 15 9 1.89278290000000005 0 15 false 128 227.273741779333989 1.63816623740510003 138.737 19.7969930000000005 11 181.784113893988007 27.2880218586530994 6.66168169999999993 19.702497000000001 12 187.406099392513994 17.3856195284854991 10.7793740000000007 19.0799599999999998 1.62442970000000009 0 0.622537600000000024 -0.0944957700000000067 0.717033400000000043 \N \N 0 \N \N \N NOT_AVAILABLE 150.947042361269013 -63.6592208857346975 21.7877322990631015 -12.8446493984252008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268852474972672 2481268852474972672 1344352109 2015.5 24.9146565701223004 5.23640038517657036 -3.42262030648491011 5.36833665358113965 \N \N \N \N \N \N \N 0.52821640000000003 \N \N \N \N \N \N \N \N \N 96 0 95 1 23.9544099999999993 942.510986 16.0921498365059996 48.4439543848754965 3 false 0.00312893279999999991 \N \N 0.0791464899999999999 11 7 19.6486449999999984 0 12 false 98 130.197792077143987 1.8246911442668301 71.353302 20.4018569999999997 7 174.726296731954989 13.5523276912998991 12.8927145000000003 19.7454929999999997 6 343.199084977583027 13.5544276414017997 25.3200719999999997 18.4230540000000005 3.977989 0 1.32243920000000004 -0.656364440000000049 1.9788036 \N \N 0 \N \N \N NOT_AVAILABLE 150.93773421668601 -63.6411837773242013 21.7982262993165001 -12.8292312953677001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321491596136960 2481321491596136960 1176159931 2015.5 24.7170124406874017 1.37088679491050991 -3.28843252094126992 2.03846349267507021 \N \N \N \N \N \N \N 0.239091229999999988 \N \N \N \N \N \N \N \N \N 64 0 63 1 1.53738430000000004 75.387001 2.93465168731531012 1.54464974531923005 3 false 0.0213977859999999985 \N \N 0.00387298639999999984 8 7 6.36563160000000039 0 8 false 65 85.0195107258340954 1.45972743653314008 58.2434006 20.8645689999999995 5 72.8899061811246014 20.2231913923619011 3.60427300000000006 20.6947200000000002 7 104.889065372915994 13.8702217192040997 7.5621767000000002 19.7100940000000016 2.09103729999999999 0 0.984624860000000046 -0.169849400000000011 1.15447429999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.408368230757986 -63.6009732220950994 21.6612363875928011 -12.6315426700166995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268921194454528 2481268921194454528 4843001 2015.5 24.9006219784012011 0.824894351881771959 -3.41061833818970994 0.740071860158109995 -0.386872924112825978 0.862156697679206996 -0.448726919999999974 -0.421227364977190988 1.93919057814362006 -1.94683555972252997 1.93220950622311993 0.056904780000000002 0.148060109999999995 -0.372366760000000019 0.0674452400000000035 -0.0639969299999999935 0.0412546099999999971 -0.382487240000000006 0.149522469999999991 -0.0234397870000000001 0.210883199999999993 132 0 131 1 2.86521099999999995 176.341003 2.87554664116848002 2.96315737240710009 31 false 0.032074883999999998 1.57917241879718007 0.215740553505221005 0.0231675099999999988 15 9 1.88338910000000004 0 15 false 132 124.863458905062998 1.34969927124191003 92.5121002 20.4472769999999997 11 99.7345526733808043 12.3093753180358991 8.10232449999999993 20.3542750000000012 11 71.3669277484656988 11.9388795226441999 5.97769070000000013 20.1281779999999983 1.37030859999999999 0 0.226097099999999995 -0.0930023199999999994 0.319099430000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.897768691468002 -63.6361439509948994 21.7894324390697989 -12.8128974809482994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269681404116992 2481269681404116992 127075201 2015.5 24.8922750564118012 0.0389554625209966032 -3.40210723253095004 0.027768275011388701 0.552726378113664985 0.0428757792309119035 12.8913430000000009 0.0254560450680633987 0.0801459622132515009 -1.41004948710506994 0.0571936317137535996 0.0685393660000000043 0.350870369999999987 -0.178663220000000011 0.0469080799999999978 -0.0721878299999999945 0.00349167760000000009 -0.220942269999999996 0.0598055119999999982 0.124529360000000006 0.162768080000000009 139 0 138 1 -0.0535819459999999984 131.464996 0 0 31 false 22.1815469999999983 1.6189683503385901 0.00879142178888229001 -0.0161083960000000005 16 10 0.0805391500000000038 0 16 false 138 18226.7197008248004 11.1605940785139008 1633.13 15.0365939999999991 14 10295.6700791719995 30.3502234935712991 339.228819999999985 15.3197519999999994 14 11740.5050754912008 33.3920506591872979 351.595799999999997 14.5877029999999994 1.20900389999999991 0 0.73204899999999995 0.283157349999999974 0.448891639999999981 \N \N 0 \N \N \N NOT_AVAILABLE 150.872714569832993 -63.6318939577246994 21.7847237493710999 -12.8019074031074993 100001 6066.12012 5828.43994 6354.33008 0.330199987 0.197400004 0.463499993 0.172499999 0.109200001 0.229699999 200111 1.38056179999999995 1.25816560000000011 1.49545430000000001 2.32514639999999995 1.91892580000000001 2.7313670000000001 +1635721458409799680 Gaia DR2 2481269715763855232 2481269715763855232 813196668 2015.5 24.9042963805081996 0.0538392108236641978 -3.40028118714191985 0.0394310623386497014 0.617357968622800013 0.0575779649979773975 10.7221220000000006 12.6429256847424991 0.117187771895957998 -5.88866343210781018 0.0809047747257169991 0.0377150360000000004 0.260312019999999977 -0.293433930000000009 0.0833740099999999984 -0.128627259999999993 0.0674150399999999955 -0.128697709999999993 0.125731559999999992 0.103526755999999998 0.151249970000000011 156 0 155 1 2.32266430000000001 193.143005 0.143400284532062994 1.2286326297083201 31 true 8.03712299999999935 1.58553676814343003 0.0120371124504338005 -0.0072186730000000001 18 10 0.113352289999999994 0 18 false 155 8247.29154942137029 6.48564401548765002 1271.62 15.8975880000000007 15 4271.25227497408014 22.7137846763845985 188.046699999999987 16.2749999999999986 15 5728.73702791423966 21.3099140945202983 268.829650000000015 15.3667730000000002 1.21251799999999998 0 0.908226969999999967 0.377411839999999998 0.530815099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 150.895540262306014 -63.6252200945020974 21.7968493725009012 -12.8046510778730003 100001 5502.72998 5354.06006 5921.5 0.169499993 0.0874999985 0.291099995 0.0670000017 0.0295000002 0.143099993 200111 1.02836599999999989 0.888056599999999974 1.0862676 0.873580460000000003 0.697910249999999954 1.04925059999999992 +1635721458409799680 Gaia DR2 2481268852477286144 2481268852477286144 1023160334 2015.5 24.9194230890302997 0.775663111095270974 -3.41818111117301004 1.16540096666744009 2.38585383457101008 0.98785402618880902 2.41518860000000002 26.0151806711639999 2.04088895387546998 -5.54056592283199034 2.92495829982193989 0.38213813000000002 0.152614849999999996 -0.460877719999999991 -0.321935829999999978 -0.442209200000000024 -0.610019800000000001 -0.841790700000000003 0.429856269999999985 0.425282270000000018 0.721056040000000009 115 0 115 0 -0.447957959999999988 102.849998 0 0 31 false 0.0517440960000000033 \N \N 0.0755968840000000031 13 8 3.12271760000000009 0 13 false 116 138.421150629533997 1.35523113074988011 102.138 20.3353600000000014 7 49.6619511923048975 4.29717239937744999 11.5568904999999997 21.1113280000000003 10 179.740993530706987 5.38899391011796958 33.3533479999999969 19.1253010000000003 1.65728249999999999 0 1.98602680000000009 0.775968549999999979 1.21005819999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.943279397731004 -63.6351602818235023 21.8044443219515003 -12.8268675205285003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316853029485184 2481316853029485184 491050435 2015.5 24.8405988389290009 0.45660154331163999 -3.38311243987309984 0.364444587702098977 0.841718161576146984 0.506725992272043957 1.66109130000000005 5.67386074398239959 1.11634886215574003 -4.99267312436770982 0.686810032286175987 0.094599859999999994 0.0962036899999999945 -0.0753218199999999977 0.153700140000000013 -0.205043959999999997 0.223169900000000004 0.335272369999999986 -0.120486919999999997 -0.0668083950000000065 0.152274330000000013 125 0 122 3 1.0536759 133.141998 0.400725945000882988 0.141500200720350994 31 false 0.116792030000000005 1.5260760721100699 0.115938315150068999 -0.00293342560000000013 14 10 0.991912600000000033 0 14 false 122 228.199672275859996 1.82393122662222007 125.113998 19.7925779999999989 9 89.7291220588770955 11.4060310561260003 7.8668136999999998 20.4690550000000009 10 224.938775478884992 6.66768589909290021 33.7356600000000029 18.8817599999999999 1.37891469999999994 0 1.58729549999999997 0.676477430000000046 0.910818099999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.749302171951001 -63.6361343837131983 21.7427905687272016 -12.7651707665774996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269848907394816 2481269848907394816 966118541 2015.5 24.8622190349785015 0.246045649923306992 -3.39548663147236995 0.204124932293594991 0.258929851417320001 0.271969610170500975 0.952054399999999967 7.12692734321760035 0.564291385673172052 -4.85207995843271966 0.414422971789370986 0.11296407 0.190351670000000001 -0.264954750000000017 0.158793800000000013 -0.190276610000000013 0.234884409999999988 0.180802729999999995 0.0392470619999999992 -0.0809805239999999982 0.250737639999999984 134 0 134 0 -0.343277749999999993 122.917999 0 0 31 false 0.370235060000000005 1.55164573647064996 0.0617018519043064997 0.0969572800000000068 15 10 0.518062499999999981 0 15 false 134 505.561196075126986 2.15091563443144018 235.044998 18.9289319999999996 13 290.697640076706023 6.58611153227310986 44.1379779999999968 19.1927850000000007 14 324.838744043186011 9.87576876779331947 32.8924999999999983 18.4827499999999993 1.21753099999999992 0 0.710035300000000036 0.263853070000000023 0.446182250000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.805095094778011 -63.6383970784291009 21.758653303098999 -12.7846540054339997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269956282023680 2481269956282023680 813315923 2015.5 24.8716577874911984 0.142181934393206005 -3.38741681532557015 0.101186514292449001 1.53629131403187991 0.159400296485003007 9.63794500000000021 24.6828832619438998 0.279996987873920022 -14.0428228804995996 0.185837238915944003 -0.0538405330000000029 0.420437249999999985 -0.266131700000000027 0.124234620000000004 -0.283644830000000014 0.218656689999999987 0.226154460000000002 0.0064569060000000001 -0.0360497200000000004 0.189371659999999997 129 0 129 0 0.0914832000000000006 124.776001 0 0 31 false 1.53028739999999996 1.42974063793382999 0.0292899048374785989 0.0240192280000000001 15 10 0.256282569999999987 0 15 false 129 1564.29388155145989 2.65947017370609018 588.197998 17.7025700000000015 13 497.183313997931009 21.0879350283953002 23.5766719999999985 18.6100959999999986 14 1633.77310717088994 9.12800079857711921 178.984769999999997 16.728940999999999 1.36224820000000002 0 1.88115499999999991 0.907526000000000055 0.973628999999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.816803829142998 -63.6271339088945993 21.7706913237655009 -12.7806439894639006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346351872 2481269986346351872 163061008 2015.5 24.884045915905201 0.636651593827772033 -3.38218306119747991 0.528391314123159983 -0.144686563677011992 0.717937423498092975 -0.20153088999999999 25.3387487811866983 1.44038826394781005 -7.28385699729563019 0.951471697808924044 0.139702920000000008 0.196958259999999996 -0.218230530000000006 0.194654880000000002 -0.225993109999999997 0.282227000000000006 0.320585759999999997 0.0126543709999999993 -0.0707339349999999978 0.262870300000000001 142 0 142 0 5.12383800000000011 239.552002 2.37023655916601017 4.0680051055881199 31 false 0.0546377150000000034 1.48910769364178996 0.150409506196319986 0.0741721699999999956 16 10 1.31077379999999999 0 16 false 139 180.843845596400001 1.16958576004917991 154.621994 20.0451070000000016 12 69.928119362325404 9.87538004638068934 7.08105600000000024 20.7397600000000004 14 185.728054250252001 5.87181349903432004 31.6304419999999986 19.0897250000000014 1.41368469999999991 0 1.650034 0.694652559999999974 0.955381400000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.837187682814005 -63.6172189617668025 21.7844577788427998 -12.7803577627921001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986349445504 2481269986349445504 1305264539 2015.5 24.8846395689662003 1.33036175830887005 -3.38162665244102012 0.893351354338628001 0.0799441438439535967 1.15868878347798998 0.0689953600000000056 34.6499189902647018 3.42251036584496005 15.2258276435037008 2.67044780583074992 -0.203324260000000007 -0.315171929999999989 -0.675816199999999978 0.381064999999999987 0.134283020000000003 0.390384229999999999 -0.249126459999999994 0.383642819999999996 -0.396996200000000021 -0.0834939259999999961 106 0 106 0 3.69509389999999982 162.229004 2.55277390954362993 1.55520678400135992 31 false 0.0290363619999999996 1.63418575236780006 0.303259376175318007 0.0949375300000000061 12 8 3.21688490000000016 0 12 false 105 102.241078559732998 1.08940706577966995 93.8501968 20.6643030000000003 4 24.4262761233547003 21.4708377216477011 1.13764890000000007 21.8817440000000012 6 149.509882336577988 10.1302977332980007 14.7586860000000009 19.3252449999999989 1.7012354999999999 0 2.55649950000000015 1.2174415999999999 1.33905790000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.837877198166012 -63.6164660298068014 21.7852334327420003 -12.7800601216820002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346352768 2481269986346352768 1558824202 2015.5 24.8793890941915983 0.192451726552113012 -3.3795897841055198 0.146815710964360996 0.980185533165524037 0.21754860298312001 4.50559330000000013 -4.46914508761492968 0.420482163460899006 -9.01577920202479 0.260844248829320002 0.130977910000000003 0.262432749999999992 -0.212323960000000006 0.165350749999999991 -0.163205039999999996 0.206797850000000005 0.242147129999999988 0.0436845240000000024 0.0210789439999999988 0.212088059999999995 141 0 141 0 14.8102140000000002 553.963013 1.04910462501919999 19.4534038953098012 31 false 0.640324699999999969 1.46826788617056003 0.0408630173666522031 0.0796579050000000011 16 10 0.379427730000000019 0 16 false 141 2276.47562024551007 4.68903443583154989 485.489014 17.2952079999999988 14 787.912492400096994 9.77298018322461992 80.6215200000000038 18.1101929999999989 16 2268.99046452695984 14.3905854281986993 157.671860000000009 16.3723400000000012 1.34282269999999992 0 1.73785400000000001 0.814985300000000024 0.922868699999999986 \N \N 0 \N \N \N NOT_AVAILABLE 150.825245535653011 -63.6168014133245023 21.7810132597330011 -12.7762284328745004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270020706093312 2481270020706093312 701818351 2015.5 24.8586277498385009 0.260135395245950973 -3.37182347356626 0.22064301677571399 0.0219670941456108007 0.290293028613453019 0.0756721350000000015 7.3704208588127802 0.598497538454436984 -16.1769401370095984 0.427693450181593993 0.10663765 0.208968459999999995 -0.215303820000000007 0.149468020000000007 -0.185508129999999993 0.197803079999999992 0.307565839999999979 0.0127439230000000008 -0.0572068170000000001 0.175549540000000004 132 0 131 1 1.63620089999999996 153.039001 0.638862687778878002 1.20868674393580999 31 false 0.324002410000000018 1.62484908365482994 0.0635931759797758039 0.0620636099999999982 15 10 0.539505659999999998 0 15 false 130 521.256661906715976 1.59611305442290008 326.57901 18.8957370000000004 12 239.921137522857009 10.3541775274049002 23.1714340000000014 19.401216999999999 15 419.810520369444021 7.27413672514706988 57.7127600000000029 18.2042870000000008 1.26565609999999995 0 1.19692989999999999 0.505479800000000035 0.691450099999999956 \N \N 0 \N \N \N NOT_AVAILABLE 150.775564263167013 -63.6183787649584005 21.7642176438147992 -12.7613441581145999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317029123587328 2481317029123587328 492549301 2015.5 24.8409853437489012 0.0475554334914810029 -3.35802344577612022 0.0343482702072085977 1.32480437579375998 0.0543051048645937021 24.3955759999999984 12.0643108531599008 0.0935537185651006964 -9.92032704203474935 0.0716602129583392977 0.00838218699999999928 0.435939819999999978 -0.199565980000000004 0.0858693499999999971 -0.221744550000000012 0.125045569999999995 -0.00657004800000000021 0.00204602749999999991 -0.00268672800000000021 0.249721799999999994 134 0 129 5 -0.257566499999999976 119.336998 0 0 31 true 16.1462749999999993 1.54738033972615008 0.0108620191189507005 0.0204646360000000013 15 10 0.0928724199999999972 0 15 false 128 13118.0058356528007 8.20561866382447924 1598.66003 15.3936960000000003 13 6073.70510667077997 26.3172983354286991 230.787569999999988 15.892754 12 10190.2071343987991 16.558053715811301 615.423000000000002 14.7414629999999995 1.23981600000000003 0 1.15129090000000001 0.499057770000000012 0.65223310000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.726605155725991 -63.6131575109627008 21.7526785226637998 -12.7420061449035007 100001 4968 4879.37988 5154.66992 0.140000001 0.0529999994 0.3301 0.0803000033 0.0278999992 0.160999998 200111 0.773367460000000007 0.718369539999999973 0.80171619999999999 0.328241019999999994 0.29901293000000001 0.357469099999999984 +1635721458409799680 Gaia DR2 2481317059187924864 2481317059187924864 556756372 2015.5 24.8602427386054998 0.587474280854078046 -3.34856160903026012 0.450299618519089007 1.04440363028856997 0.664468958692482015 1.57178689999999999 -13.0663975844431999 1.28498983235674991 -5.8773993325879097 0.810747101608205956 0.125802649999999988 0.264364539999999981 -0.216055629999999999 0.155495319999999992 -0.172503039999999996 0.192981199999999992 0.224950280000000002 0.0475343000000000016 0.0225872499999999997 0.213088699999999992 137 0 137 0 29.9490680000000005 1458.19995 3.58966115149353016 76.3500155211388005 31 false 0.0686550100000000024 1.16489899714269995 0.119735341223130995 0.0832993100000000014 16 10 1.15346569999999993 0 16 false 138 836.776415363568049 3.98198360425734998 210.141006 18.3818419999999989 14 212.551002671654999 11.8382976262998998 17.9545250000000003 19.5327300000000008 14 1089.21944842869993 7.46021838125740011 146.003700000000009 17.1691320000000012 1.55569679999999999 0 2.36359789999999981 1.15088839999999992 1.21270940000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.757078526598008 -63.5965569782735969 21.7745788727949012 -12.7403301589158993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318467937195392 2481318467937195392 236110525 2015.5 24.8742753745531999 0.173320912885452011 -3.3578294264948898 0.141371666702509002 2.62576768352626999 0.193349460996637995 13.5804240000000007 6.90772239261460008 0.385619804414113976 -13.3405233271514998 0.264595396310460973 0.135911300000000013 0.235945330000000009 -0.226343960000000011 0.175043210000000005 -0.166085779999999988 0.246313599999999994 0.237952140000000006 0.0338063050000000018 -0.0405011899999999994 0.243994469999999991 141 0 140 1 1.17178629999999995 154.453995 0.113649577395363993 0.0747887102199832066 31 false 0.74460459999999995 1.36790308827439011 0.0420824990656087014 0.0789479540000000007 16 10 0.352810100000000015 0 16 false 140 850.769536483206025 1.85676433127771001 458.200012 18.3638359999999992 14 177.064462503441007 10.5271987137305008 16.8197140000000012 19.7310599999999994 14 1083.13372281967008 9.93004933947990054 109.076369999999997 17.1752150000000015 1.48124499999999992 0 2.5558453000000001 1.36722370000000004 1.1886215 \N \N 0 \N \N \N NOT_AVAILABLE 150.794399502456002 -63.599150041298401 21.7844061919301986 -12.7541236134543006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269780187918464 2481269780187918464 759712671 2015.5 24.8974200714859002 0.431015665409214987 -3.39149261224345011 0.343956778246313988 1.03521122129138998 0.467661429802937012 2.21359100000000009 11.2099874055925 0.942914053917695005 -10.0625097739867009 0.633907876345817023 0.129350080000000006 0.258632499999999987 -0.24474491000000001 0.17142542999999999 -0.0723893800000000032 0.213313269999999999 0.179281319999999994 0.0823840799999999984 0.0262485540000000003 0.184007929999999986 147 0 147 0 3.19907899999999978 202.177002 0.584072270418262041 0.338810509413644989 31 false 0.111973489999999995 1.26644915801200009 0.101813734628524999 0.0444837469999999971 17 10 0.848598359999999996 0 17 false 148 223.818685648291989 1.49493727213867 149.718002 19.8136249999999983 15 78.6963997255996048 10.6471218505169993 7.39133070000000014 20.6115020000000015 16 294.153725039023016 14.1966514211082 20.7199360000000006 18.590485000000001 1.6658579 0 2.02101700000000006 0.797876359999999951 1.22314070000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.873237055358999 -63.6201043631014969 21.7936443247603009 -12.7939464719936993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271468110511488 2481271468110511488 300862494 2015.5 24.8918283046606987 0.0298033426017741999 -3.37283351506001994 0.0239302465218719992 1.68235847525024007 0.0340360791798543991 49.4286799999999999 43.4642588700008972 0.0619667109330269 -3.1765381549525098 0.0540518826259277982 0.14164968 0.393031450000000004 -0.225198129999999996 0.0570909799999999995 -0.108662574999999997 0.104182120000000003 -0.0883785799999999983 0.0119703659999999996 -0.0545210839999999974 0.326988579999999973 142 54 141 1 1.29489480000000001 157.755997 0 0 31 true 159.138869999999997 1.61576188326513992 0.00725790884524649994 0.0796267199999999981 16 10 0.0572691259999999966 0 16 false 140 119156.035416433006 57.5357864160045978 2070.98999 12.9980755000000006 14 65219.7425520662 62.449447490956203 1044.36059999999998 13.3154400000000006 15 78708.4754608621006 81.8045175245255933 962.153140000000008 12.5218659999999993 1.207897 0 0.793574329999999994 0.3173647 0.47620963999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.844294251050002 -63.6054804435410972 21.7954057423111003 -12.7745462074824001 100001 6026.04004 5843.5 6565.33984 0.296000004 0.151999995 0.456099987 0.148000002 0.0649999976 0.225999996 200111 1.17598800000000003 0.990723970000000009 1.25060890000000002 1.64297120000000008 1.57888359999999994 1.70705869999999993 +1635721458409799680 Gaia DR2 2481271261952081536 2481271261952081536 1664435783 2015.5 24.9061211642361009 0.0500594959116801991 -3.37826748200901017 0.0375345459757311026 0.753044773614229945 0.0548328687603990977 13.7334560000000003 9.56582825601232933 0.106406385305977999 0.600072483894225961 0.0760219493773675037 0.0940357450000000039 0.317008100000000015 -0.27371435999999999 0.0730327800000000055 -0.0585819969999999968 0.056079722999999998 -0.116781769999999993 0.118212460000000005 0.0956634499999999971 0.156561900000000004 148 0 147 1 -1.32928200000000007 120.157997 0 0 31 true 9.98890800000000034 1.57950086330428996 0.0114773600088194996 0.0336176399999999972 17 10 0.103630945000000002 0 17 false 147 8313.30429547877975 6.34138604815292961 1310.95996 15.8889309999999995 14 4168.63119323023966 17.086800441127 243.967929999999996 16.301404999999999 13 6003.49714478853002 25.6562447989872986 233.997500000000002 15.3159089999999996 1.22359630000000008 0 0.985495569999999987 0.412473680000000009 0.573021899999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.878561245642004 -63.6044598822046012 21.8069366465879995 -12.7848733450002001 100001 5316.5 5258.97998 5361 0.149299994 0.0275999997 0.314099997 0.0885000005 0.0176999997 0.153999999 200111 0.91682224999999995 0.901663239999999977 0.936985700000000032 0.605015749999999963 0.509439949999999975 0.700591560000000002 +1635721458409799680 Gaia DR2 2481271227592343040 2481271227592343040 112652294 2015.5 24.9195692176567007 0.273886728784909994 -3.37719583107916987 0.203184659564915993 2.17387464043734013 0.296668562398215985 7.32762050000000009 -10.8312048973262005 0.608436650343163965 -31.1775046653288008 0.372692866381688026 0.071857913999999995 0.212215619999999994 -0.292318940000000027 0.14121628 -0.136614679999999988 0.158367680000000011 0.124713980000000002 0.119738310000000001 0.0705631399999999964 0.147843289999999988 159 0 157 2 2.68191500000000005 202.910004 0.888633496726261018 2.58505865493832987 31 false 0.276482369999999977 1.24241769372708011 0.0592874745772756992 0.00137994039999999999 18 10 0.546504560000000028 0 19 false 156 499.193395710474022 1.6841454229902999 296.40799 18.9426939999999995 14 91.1905925466970047 11.1528621087226991 8.17642999999999986 20.4515129999999985 16 686.40522706050001 6.94874648447718979 98.7811599999999999 17.6704700000000017 1.55770460000000011 0 2.78104400000000007 1.50881960000000004 1.27222440000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.904983259293999 -63.5978748291922003 21.8201326458259999 -12.7888440249820992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271566894324224 2481271566894324224 1212100246 2015.5 24.8907226183148005 0.230525122957605993 -3.35485061795793982 0.199201974482154986 1.2361708126878499 0.259508848833540973 4.76350159999999967 15.8437485605749 0.522425566950314946 -49.8450672054177986 0.354742158305580979 0.18105541 0.201674450000000005 -0.195176989999999995 0.218518199999999996 -0.216601399999999999 0.31562707000000001 0.367197359999999973 0.00320125179999999985 -0.0864645500000000011 0.298691749999999978 136 0 136 0 3.15951130000000013 188.235001 0.803216715382573998 2.92511885434293006 31 false 0.438327279999999986 1.5154565814438401 0.0551649432946708998 0.0982810400000000001 16 10 0.482483600000000012 0 16 false 135 748.003299916799961 1.86097037802655008 401.942993 18.5036069999999988 14 294.503010223193996 9.11313205786678004 32.3163339999999977 19.1786630000000002 13 689.672884447463957 8.75101840075843995 78.8105850000000032 17.6653120000000001 1.31573739999999995 0 1.5133513999999999 0.675056459999999969 0.838295000000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.825166153059996 -63.5895979073606981 21.8011760923050986 -12.7574309572363003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271502470249344 2481271502470249344 417655413 2015.5 24.9034374620379992 2.05290844084737989 -3.3575744715481699 1.50844263473005991 \N \N \N \N \N \N \N 0.0840669 \N \N \N \N \N \N \N \N \N 107 0 106 1 45.2929419999999965 3074.38989 11.0130352854296998 182.070469318802992 3 false 0.00773702400000000033 \N \N 0.0694239600000000068 15 9 4.01845300000000005 0 15 true 132 360.161391969336989 4.0659344002833997 88.5802002 19.2971229999999991 13 460.562990234325014 11.1944766041724009 41.1419870000000003 18.6931650000000005 11 949.731865650291979 8.90438549661175927 106.65889 17.3179170000000013 3.91573020000000005 0 1.37524800000000003 -0.603958129999999982 1.97920610000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.85365362101399 -63.5867768685082027 21.8122340421957013 -12.7646573178294993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271395095762048 2481271395095762048 1684136816 2015.5 24.9300099912099995 0.719589149789464977 -3.36602300710111013 0.683014179934951948 0.593055750960949979 0.787114744569586966 0.75345530000000005 -2.17432359709036005 1.72385171414587002 -2.11074425652870001 1.84054879123791992 0.123469784999999999 0.136895080000000002 -0.284745340000000013 0.0747300300000000028 -0.018909734000000001 0.056143110000000003 -0.33454296 0.0587157940000000017 -0.118485615000000002 0.293520630000000005 122 0 122 0 0.183052359999999997 119.146004 0 9.28992634585218961e-16 31 false 0.0415327060000000026 1.44775393845542011 0.208003697985180008 0.0269012130000000002 14 8 1.7897012000000001 0 14 false 123 105.830125218047002 0.98268362292914202 107.695 20.6268419999999999 12 67.3283935964936973 6.97459801700683002 9.6533730000000002 20.7808929999999989 11 89.2537277552102069 8.8137431989884405 10.1266540000000003 19.8853550000000006 1.4795609999999999 0 0.895538330000000049 0.15405083 0.741487499999999966 \N \N 0 \N \N \N NOT_AVAILABLE 150.915762026014988 -63.5833668879917013 21.8343001948941016 -12.7823190343166999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271399391034496 2481271399391034496 1425496068 2015.5 24.9204639244752997 0.527633363438318015 -3.3590660378913002 0.445171080896845983 0.655536012096985976 0.562419799612184024 1.16556360000000003 6.5803942563214699 1.23394320276101999 -7.13839614070537998 1.03571204860755994 0.0821521800000000052 0.139773439999999999 -0.322417940000000014 0.118813370000000001 -0.0719921139999999959 0.142867219999999989 -0.145323129999999995 0.10761751 -0.0511772740000000018 0.197732429999999987 131 0 130 1 -0.811949299999999985 111.975998 0 0 31 false 0.0782315660000000024 1.47309790537294005 0.147873404241906009 -0.00668032049999999974 15 9 1.13159199999999993 0 15 true 128 162.081845671505988 1.20420418303785004 134.597 20.1640300000000003 11 76.6258672864641994 14.0926500754220001 5.43729300000000038 20.6404500000000013 12 153.616603621829 10.2154945080296997 15.0376080000000005 19.2958239999999996 1.42053209999999996 0 1.34462550000000003 0.476419450000000022 0.868206000000000033 \N \N 0 \N \N \N NOT_AVAILABLE 150.889766970307988 -63.5810320702273017 21.827860254331199 -12.7723305895259003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271639909201920 2481271639909201920 570927719 2015.5 24.9301937023950018 2.79220180090791015 -3.3452658643366302 1.88686779571717 \N \N \N \N \N \N \N 0.0089104619999999992 \N \N \N \N \N \N \N \N \N 127 0 127 0 63.4874459999999985 6218.60986 15.6814799437496006 344.80778084658499 3 false 0.00383338700000000017 \N \N -0.014558026 17 9 5.67650129999999997 0 17 false 148 341.463705116683002 3.30397402356244996 103.348999 19.3550049999999985 7 504.716383404283988 20.3001706245761007 24.8626669999999983 18.5937699999999992 5 1133.13322460378004 7.19725607485958019 157.439619999999991 17.1262170000000005 4.79655550000000019 0 1.46755220000000008 -0.761236200000000029 2.2287884 \N \N 0 \N \N \N NOT_AVAILABLE 150.896631736898001 -63.5644352277018001 21.8423470595772997 -12.7631017104055005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635616731520 2481271635616731520 1103228071 2015.5 24.9306764785726003 2.11196928479788992 -3.34543239485127009 1.43092419634799994 \N \N \N \N \N \N \N -0.0130733110000000007 \N \N \N \N \N \N \N \N \N 122 0 121 1 42.1836399999999969 2669.53003 11.3344931476284003 145.179124487840994 3 false 0.00680221940000000011 \N \N -0.0499685439999999967 17 9 4.07496930000000024 0 17 false 147 298.666985684847987 6.56524392856556993 45.4920998 19.5003969999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.897771551289992 -63.5643850216310966 21.8427430308668988 -12.7634346833023997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318021260603392 2481318021260603392 1137564438 2015.5 24.7919433548956007 0.699063294213486008 -3.33187383181705998 0.595455387855165053 -0.182668628924431004 0.779785895561240006 -0.234254849999999987 7.96163499410862041 1.58191795347256003 -6.89688343539655957 1.1913930165539699 0.116904350000000004 0.231980219999999987 -0.22602193000000001 0.135491179999999989 -0.151081230000000011 0.181912970000000007 0.225411670000000008 0.0331439040000000018 -0.0427223480000000003 0.196749900000000005 120 0 120 0 3.66052150000000021 179.029999 2.03431213956565982 1.94862979882897003 31 false 0.0474849400000000033 1.43250344462143997 0.177243424487667001 0.0791533199999999992 14 10 1.43121910000000008 0 14 false 120 140.784580224420012 1.09120639197991998 129.016998 20.3169779999999989 10 55.0269867342396992 9.62309462168147078 5.71822169999999996 20.9999490000000009 11 165.901339498075998 10.6962462536867005 15.5102399999999996 19.2122959999999985 1.56926509999999997 0 1.78765299999999994 0.682970049999999995 1.10468290000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.601969882140992 -63.6096749985162973 21.7159749667850015 -12.6995926926958997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318124339819136 2481318124339819136 462233197 2015.5 24.7968687977664004 0.104402140333669 -3.32972010754426995 0.0833218174841807019 0.531171617186648959 0.113707968944596005 4.67136670000000009 12.1088837155968001 0.233865660729841995 -7.35363585094401984 0.158876393485151007 0.0955236400000000069 0.271016900000000005 -0.216149989999999986 0.150999140000000004 -0.10303764 0.202224120000000007 0.294499100000000014 0.00644038660000000041 -0.0352720099999999995 0.145634550000000002 142 0 142 0 -0.17940296 133.395996 0 0 31 false 2.05484100000000014 1.59410040109623008 0.0254369353446231017 0.0116430300000000004 16 10 0.213608880000000001 0 16 false 142 2037.82005468106991 2.72442297292586 747.981995 17.4154510000000009 13 858.253070856505019 8.50801887983607941 100.875786000000005 18.0173500000000004 16 1727.71374165946008 9.8282261702378193 175.790999999999997 16.6682400000000008 1.26898679999999997 0 1.34910960000000002 0.60189820000000005 0.747211460000000049 \N \N 0 \N \N \N NOT_AVAILABLE 150.610032814129994 -63.6056786400457028 21.7214745798404998 -12.6994121013972006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318055620343168 2481318055620343168 1130938648 2015.5 24.8052547493964006 0.248476898933828988 -3.32777867133181982 0.200002935900772005 1.58854646484137008 0.266823832359353974 5.95354030000000023 10.5112128498842008 0.526382943115396018 -4.8565000568531298 0.343116275792219982 0.177396849999999995 0.35135793999999998 -0.164512009999999986 0.222765550000000007 -0.0247824380000000004 0.275917000000000023 0.400022800000000012 0.0120731290000000002 0.0198917350000000007 0.197844619999999999 136 0 136 0 12.2098460000000006 443.175995 1.29332189011450005 16.9258672801766998 31 false 0.400219920000000007 1.32221788087657011 0.0548337941974332971 0.0451770719999999987 16 10 0.475625779999999998 0 16 false 134 1422.79050791602003 4.24192283903218037 335.411987 17.8055130000000013 14 393.391935345958984 10.0494992545244006 39.1454280000000026 18.8643250000000009 15 1747.86172125501002 11.7490342614302996 148.766420000000011 16.6556530000000009 1.50496760000000007 0 2.20867160000000018 1.05881120000000006 1.14986039999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.625363240259986 -63.6004439180554968 21.730183447321199 -12.7007073452744006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317265346486144 2481317265346486144 1122492693 2015.5 24.8458739389682002 0.656369394201245959 -3.34190542855857009 0.911317427109852973 -2.49778648293243011 0.792602695082819997 -3.15137270000000003 -2.48413809420976994 1.9997469963158101 -3.80618697837644016 2.65308865330045007 0.377508879999999991 -0.0684086599999999961 -0.474634349999999983 -0.261262480000000019 -0.468025030000000009 -0.501166 -0.720985300000000051 0.403342499999999993 0.353056460000000016 0.724180099999999993 103 0 103 0 0.349037529999999985 102.280998 0.654508556937081987 0.198660548117065988 31 false 0.0700662799999999947 1.48256216530815998 0.212407198109052009 0.206143400000000004 12 8 2.81790610000000008 0 12 false 103 154.970407672828998 1.65755794357427999 93.4932022 20.2127440000000007 7 154.371606901988997 37.3416484464803986 4.13403299999999962 19.8799700000000001 9 101.095969132231005 10.1647970039428994 9.94569500000000062 19.7500859999999996 1.64849270000000003 0 0.129884720000000009 -0.332773199999999991 0.462657929999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.721518506855006 -63.5964693813540975 21.7634418861683017 -12.7288384833936998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318742815236608 2481318742815236608 346922192 2015.5 24.8407040533197012 0.724318964216233985 -3.33084581274860003 0.806433461546041008 -1.28979727891709994 0.881872445862151966 -1.4625667 1.51640692546592004 1.94098097006966008 -3.90030277643755019 2.55969292590294017 0.38897756 0.126077099999999998 -0.082653396000000004 0.121453054000000005 0.044184453999999998 0.138712029999999986 -0.088833750000000003 -0.191949069999999999 -0.391940359999999988 0.59769899999999998 97 0 97 0 0.499180699999999977 98.2406006 0 0 31 false 0.0505708870000000019 1.55643317132084991 0.233498297026700996 0.273340939999999977 11 7 2.55548950000000019 0 11 false 94 113.046745583732005 1.22904977790025005 91.9789963 20.5552199999999985 7 72.7461122776860947 13.0554944430215993 5.57206869999999999 20.6968630000000005 7 77.7466021679713037 3.58543263829706982 21.6840229999999998 20.0352169999999994 1.33124329999999991 0 0.661645900000000009 0.141643519999999995 0.520002370000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.700631010273014 -63.5885540394291979 21.7627221145193985 -12.7166540938068007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318536656676608 2481318536656676608 1264058847 2015.5 24.8716783739763017 0.292245988087220021 -3.3410093414467199 0.235607566240364996 0.823414114697199051 0.324705443626756018 2.53588030000000009 6.03406115106471042 0.660721881264147992 -3.80129960403063993 0.433964229907393972 0.125872050000000013 0.201756149999999995 -0.241425620000000007 0.181821869999999997 -0.191415639999999998 0.258786079999999974 0.265414539999999977 0.0344334840000000003 -0.0502366900000000005 0.238639010000000013 141 0 141 0 3.00117659999999997 190.906998 0.916968542651437013 2.36240704982873018 31 false 0.263408240000000016 1.56581526988604991 0.0684812996287007952 0.0696499299999999988 16 10 0.599756100000000014 0 16 false 137 483.471041706779999 1.44510111194272994 334.55899 18.9774400000000014 12 197.124621893853003 7.2564969730858504 27.1652580000000015 19.6145360000000011 12 392.292296990552018 10.9189403501973992 35.9276899999999983 18.2778950000000009 1.21913589999999994 0 1.33664129999999992 0.637096400000000007 0.699544900000000025 \N \N 0 \N \N \N NOT_AVAILABLE 150.773348539952991 -63.5849381424921987 21.7883173819466016 -12.7375379611941995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669975807104 2481271669975807104 1039473270 2015.5 24.8988271644223005 0.839683683016328009 -3.34230316908872016 0.77767129987267003 1.31944643179285004 0.940265658286982053 1.40326989999999996 -12.2218608784673002 2.08524591355934996 -21.960950978533301 2.27542890022853017 0.127477380000000001 0.0909607500000000069 -0.175759660000000012 0.166070999999999996 -0.0661025100000000032 0.160617199999999988 -0.154773729999999998 -0.0779698000000000058 -0.251878529999999989 0.377946439999999995 101 0 100 1 3.92276550000000013 159.037003 2.62374498098985987 2.87082707663088987 31 false 0.0366709159999999978 1.08757034395186003 0.251241927357934991 0.0724713359999999973 12 8 2.25590560000000018 0 12 false 101 116.394036907409998 1.08679256414129011 107.098999 20.5235389999999995 9 52.3290942957400986 12.7745225661183994 4.09636400000000034 21.0545299999999997 12 166.272856237874009 5.73797591274138963 28.9776150000000001 19.2098669999999991 1.87811979999999989 0 1.84466170000000007 0.530990599999999979 1.31367110000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.829930495066009 -63.5748193812601983 21.8136421739860005 -12.7487667926460997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318609671550592 2481318609671550592 1603422949 2015.5 24.9027058063274005 2.01566338708378012 -3.33276839912642986 1.47432672344796001 \N \N \N \N \N \N \N 0.088427439999999996 \N \N \N \N \N \N \N \N \N 109 0 106 3 50.7240070000000003 3889.97998 10.7641011531572008 323.642135784663992 3 false 0.0080383859999999998 \N \N 0.0622709239999999983 15 9 3.97033980000000009 0 15 false 128 350.828913246741024 3.74701087238425989 93.6289978 19.3256259999999997 11 502.019382048324985 14.0237608112746006 35.7977699999999999 18.5995859999999986 12 1034.20091292765005 8.16864172517123066 126.606223999999997 17.2254089999999991 4.37883040000000001 0 1.37417790000000006 -0.72603989999999996 2.1002177999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.828901375702003 -63.5645385795438003 21.8209465847862987 -12.7413406856246993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669973543168 2481271669973543168 522158079 2015.5 24.9102374437332017 2.21976534775645007 -3.34001047034554022 1.67966083300760993 \N \N \N \N \N \N \N 0.0862645699999999988 \N \N \N \N \N \N \N \N \N 122 0 121 1 37.594337000000003 2142.97998 12.7515712657462004 207.405077781073999 3 false 0.00565486630000000025 \N \N 0.0658863259999999951 15 9 4.44426770000000015 0 15 false 131 218.931468355930008 2.3709647275800898 92.3386002 19.8375950000000003 15 361.200890972188972 11.1293095100818995 32.4549260000000004 18.9570159999999994 13 711.878064663815053 7.49316050291518021 95.0037159999999972 17.6309049999999985 4.90143780000000007 0 1.32611079999999992 -0.880579000000000001 2.20668979999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.851039171076991 -63.5679826511133967 21.8253621490879013 -12.7508503073099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271704333282560 2481271704333282560 644772123 2015.5 24.9124653699850001 0.670529279862627003 -3.33414150072109994 0.623036120010397987 1.54909296088616011 0.769399900652262048 2.01337810000000017 4.27231988360743031 1.58022898370341003 1.25606125766285004 1.51831075209620003 0.167862879999999992 0.176286699999999991 -0.162104920000000013 0.163559499999999997 -0.188591439999999999 0.235502600000000006 0.0687723699999999993 -0.0574842299999999973 -0.175690409999999991 0.384854799999999997 112 0 112 0 3.28791050000000018 161.785004 1.61636855208897989 1.28940545564197007 31 false 0.0522705539999999969 1.12117115266088008 0.199185059814394994 0.0967233900000000063 13 9 1.60569739999999994 0 13 false 108 133.737542740744999 1.05576754816325002 126.672997 20.3727319999999992 9 30.9498591383479997 10.4574667858863997 2.95959420000000017 21.6247399999999992 11 154.189556179148013 9.78117647271574064 15.7639069999999997 19.2917820000000013 1.38434889999999999 0 2.3329582000000002 1.25200840000000002 1.08094979999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.850076243061011 -63.5617210320096007 21.8297065038161016 -12.7462202652403001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271708628678400 2481271708628678400 511308596 2015.5 24.9206192593724012 4.05677508348223004 -3.33481225769001988 2.2762174312600898 \N \N \N \N \N \N \N -0.351015999999999995 \N \N \N \N \N \N \N \N \N 69 0 69 0 28.6452850000000012 1238.09998 10.5590031969392992 88.7549343965990971 3 false 0.00821789300000000042 \N \N 0.0816956900000000014 9 6 9.40446700000000035 0 9 true 79 246.765292095509011 2.64039648813644012 93.4577026 19.707654999999999 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.867317289824996 -63.5589318251484983 21.8372060947443991 -12.7498542289896992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481265657021660416 2481265657021660416 7895480 2015.5 24.9533873348688999 1.20742469927747997 -3.44468486535228013 0.745374966788992954 -0.425289941317376019 0.952276706449184052 -0.446603330000000021 -7.08556376845680003 3.07526683769353992 -3.40922667926473011 1.89122299797798998 -0.31537598 -0.278818520000000014 -0.713525529999999963 0.349146220000000007 0.172120539999999989 0.376014139999999997 -0.490734459999999983 0.417240469999999974 -0.233633819999999992 -0.211120079999999988 119 0 119 0 2.15412140000000019 148.919998 1.74202593379370008 0.967344204255237039 31 false 0.0354070370000000023 1.30248699231973997 0.24848053184764099 -0.0517117380000000001 14 8 2.91357640000000018 0 14 false 118 116.470601503283007 1.18626318770414008 98.1828003 20.522825000000001 7 48.9423481725357021 8.12760641455487942 6.02174199999999971 21.1271759999999986 10 209.547339944512004 19.5727302455124992 10.7060860000000009 18.9587150000000015 2.21935560000000009 0 2.16846080000000008 0.604351039999999951 1.56410979999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.037631114334005 -63.6450023560255005 21.8266939218009988 -12.8640335025971009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268680678620416 2481268680678620416 460917855 2015.5 24.9400460470201004 1.25650954730544995 -3.42444584207306013 0.883204680537100995 1.61800949975059005 1.04870227884788991 1.54286830000000008 1.34450632245639001 3.33811693829282996 -15.9372536353918992 2.26284132848079 -0.252762649999999978 -0.242209750000000001 -0.740757800000000022 0.385404000000000024 0.280124719999999994 0.411367539999999976 -0.386308280000000004 0.496491520000000019 -0.296851199999999982 -0.305768969999999973 106 0 105 1 1.24468299999999998 117.910004 0.931365780147373035 0.239398460469588986 31 false 0.0324866060000000012 1.31675666171466998 0.272669355944445024 0.00713243749999999989 12 8 3.22960970000000014 0 12 false 103 101.663093616148998 1.19561378749331992 85.0299988 20.670458 6 40.2225758556344033 14.6691017162448993 2.74199320000000002 21.3402139999999996 9 136.875764950567998 9.85155038776841963 13.8938299999999995 19.4211039999999997 1.74201209999999995 0 1.91910929999999991 0.66975594000000005 1.24935339999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.991278330773014 -63.632221641388 21.821682873980901 -12.8403037526998993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270364303467648 2481270364303467648 1365581430 2015.5 24.9318863164822986 0.269672214009007982 -3.40608315781708981 0.197568247003197001 -0.0203225301483665986 0.29166330249410799 -0.0696780500000000053 3.67544155703757003 0.603927560880029968 -12.6691544022590001 0.381912530893181001 0.042746621999999998 0.204249249999999993 -0.299782570000000026 0.120646970000000006 -0.159268500000000007 0.14261277 0.0636610900000000035 0.103400469999999994 0.0461483859999999996 0.144875530000000002 167 0 167 0 3.37164000000000019 229.740997 0.821977585986550019 2.04663910293212004 31 false 0.267776669999999994 1.62252242415556003 0.0588363748853200988 -0.0232840630000000007 19 10 0.542557540000000005 0 19 false 166 499.246379865366976 1.61949005651648004 308.273987 18.9425799999999995 17 215.238407501989997 10.1982445663121997 21.105436000000001 19.519089000000001 17 434.014053645175977 11.4709563490840996 37.8359069999999988 18.1681610000000013 1.30046499999999998 0 1.3509274 0.576509500000000008 0.774417899999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.957305519431998 -63.6189639167627021 21.8208885895256017 -12.8202305538959997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270398663208576 2481270398663208576 456381082 2015.5 24.940565063212901 0.384872137954786975 -3.39632506451782001 0.297460934678889011 0.527378456744794 0.416802081559716986 1.26529699999999989 3.56364925339242999 0.872780781213195023 -2.81158704114458002 0.565995267972643989 0.0864997660000000057 0.179084379999999987 -0.319674669999999994 0.145982269999999997 -0.143824380000000002 0.183630529999999986 0.115465230000000002 0.123375170000000006 0.0195239279999999994 0.177385209999999988 160 0 159 1 1.12462839999999997 173.869003 0 0 31 false 0.134300520000000007 1.63238779433570991 0.0885156459278741981 -0.00685270400000000026 19 10 0.787247699999999995 0 19 false 161 264.395039023004017 1.4916049396865001 177.255005 19.6327320000000007 15 189.180901334113997 14.7811304277744995 12.7988119999999999 19.6591950000000004 14 159.759563520247013 8.02450619966480083 19.9089579999999984 19.2532519999999998 1.31976939999999998 0 0.405942919999999985 0.0264625549999999987 0.379480360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.965806387791986 -63.6064738438424015 21.8328450888128991 -12.8143693581878999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267271927009280 2481267271927009280 1031518137 2015.5 24.9911412868477001 1.67258894244385004 -3.41948670257185006 1.03288647918789001 \N \N \N \N \N \N \N -0.195582420000000007 \N \N \N \N \N \N \N \N \N 76 0 76 0 0.768430100000000005 79.8331985 0 0 3 false 0.0420099199999999992 \N \N 0.0922081899999999954 9 6 4.32843399999999967 0 9 false 76 106.955873408288994 1.27822758610844001 83.6751022 20.615355000000001 6 65.7998494140192065 25.3373195571621004 2.59695389999999993 20.8058259999999997 5 95.4632464640799014 20.758545913803399 4.59874440000000018 19.8123299999999993 1.50775349999999997 0 0.993495939999999966 0.190471649999999992 0.803024300000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.090759090223003 -63.606296016284702 21.8721681025793018 -12.8545611268343993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266997051512320 2481266997051512320 977878584 2015.5 25.0080723169449008 0.719297443990064012 -3.43609343752146001 0.585751058887570952 2.07849808589126983 0.760019432149149021 2.73479599999999978 6.35190233991617959 1.58493957292003995 -1.03321716995399004 1.08127651132757996 0.128203289999999998 0.234869849999999991 -0.312607259999999998 0.1760438 -0.0275781150000000003 0.226703929999999998 0.102735296000000004 0.15430432999999999 0.0373987559999999983 0.18446035999999999 121 0 120 1 0.938277299999999981 129.102997 1.24139766082837011 0.650038148919851011 31 false 0.0497968099999999969 1.22504417179249003 0.197488006700150986 0.00737080440000000003 14 9 1.43473110000000004 0 14 false 120 130.015393577764002 1.19228277200932009 109.046997 20.4033799999999985 6 64.0109276690083959 15.5871859631365002 4.10663800000000023 20.8357519999999994 12 187.927118268186007 7.2543004821131003 25.9056150000000009 19.0769459999999995 1.93775549999999996 0 1.75880619999999999 0.432373049999999981 1.32643320000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.140980834951989 -63.6142417048275988 21.8819759874542008 -12.8762404530337999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266997049097216 2481266997049097216 55598849 2015.5 25.0226297070334986 0.337661783778748004 -3.43477018061058015 0.261729447158220996 1.22019955648494993 0.376635045046417982 3.23973999999999984 -2.72284334538580008 0.729231345820831045 -11.4299335630581993 0.430214297868687978 0.187475900000000001 0.268729300000000004 -0.279559820000000014 0.210561019999999988 0.0500700999999999993 0.224011729999999992 0.24076903999999999 0.171534660000000005 0.115198300000000003 0.153644699999999995 150 0 149 1 1.11811480000000008 163.095001 0.286337990352957983 0.136539647383329993 31 false 0.197497890000000009 1.44538475609187 0.0856997851719460968 -0.0114260219999999992 17 9 0.656139699999999992 0 17 false 148 340.593936353094989 1.55431309087499003 219.128006 19.3577730000000017 16 66.4626229235684036 8.93086977655097947 7.44189830000000008 20.7949449999999985 16 473.328044525156997 9.66504817269576932 48.9731700000000032 18.0740149999999993 1.58485100000000001 0 2.72093000000000007 1.43717190000000006 1.28375820000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.169370713402998 -63.6069148679917973 21.8963276237696007 -12.8803841139098996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267168847794816 2481267168847794816 160511904 2015.5 24.9784727484790992 0.169696266530431988 -3.41926181909129001 0.120563008240719 2.59395674707716006 0.178220112045104989 14.5547920000000008 20.9299623615249004 0.381297030213157973 3.95820838106951989 0.232690453683900011 0.00774321299999999966 0.171138719999999994 -0.368550239999999973 0.131993620000000006 -0.139355079999999992 0.153181960000000006 0.0106751229999999999 0.157015189999999999 0.0597907339999999982 0.11362891 157 0 156 1 1.51427010000000006 178.128006 0.221230435721692986 0.311207287883869976 31 false 0.770900299999999983 1.86964204476476992 0.0379090938933430988 -0.0482662300000000002 18 9 0.34628819999999999 0 18 false 156 951.875554813659051 2.28484764293150011 416.604004 18.2419149999999988 15 772.510974369699966 8.47761905022820983 91.123580000000004 18.1316260000000007 15 368.626835732328004 11.0833040091167998 33.2596500000000006 18.3454529999999991 1.19883080000000009 0 -0.213827130000000004 -0.110288620000000004 -0.10353851 \N \N 0 \N \N \N NOT_AVAILABLE 151.064734675642995 -63.6114105294874008 21.8602020491636004 -12.8496754764561008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267306286754176 2481267306286754176 43365274 2015.5 25.0085169163759993 0.347057944960614984 -3.40279519383113982 0.273489029320066024 -0.254231403527228006 0.372804474720297985 -0.681942999999999966 -0.786287860656339044 0.792510326729999992 -2.7153644499655698 0.491316879192240985 0.0784845500000000001 0.192824469999999998 -0.285231300000000021 0.149878549999999999 -0.0691483700000000007 0.138570560000000009 0.240928279999999995 0.121431336000000001 0.084734894000000005 0.0666348560000000062 151 0 150 1 0.867137000000000047 159.561996 0.0579133665591428023 0.00467392742766475997 31 false 0.16597793999999999 1.58374989612058004 0.0863612220134751946 -0.0688795299999999944 17 9 0.706813040000000004 0 17 false 150 304.394045997031014 1.50859327272832 201.772995 19.479773999999999 15 140.826369462471007 10.5093535937668996 13.4000979999999998 19.9796799999999983 14 243.994558412916007 7.31535757289857003 33.3537450000000035 18.7934699999999992 1.26421960000000011 0 1.18620869999999989 0.499904630000000016 0.686304099999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.110341759758995 -63.5838547706541988 21.8950281324922997 -12.8454662479707995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270536102166144 2481270536102166144 1196085124 2015.5 24.9709437475927984 2.29253154783233004 -3.38098675515906022 1.24799446513970991 \N \N \N \N \N \N \N -0.559940499999999952 \N \N \N \N \N \N \N \N \N 67 0 67 0 -2.65097929999999993 36.4473991 0 0 3 false 0.0303648730000000006 \N \N -0.109546099999999993 8 6 6.27792800000000017 0 8 false 66 89.4429869807919005 1.00474580440437999 89.0205002 20.8094999999999999 7 68.2819868946976953 13.5478946698575999 5.04004429999999992 20.7656230000000015 7 68.6403091720096938 9.77105050816687992 7.02486470000000018 20.1704709999999992 1.53083320000000001 0 0.595151899999999956 -0.0438766479999999973 0.639028550000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.013245695134003 -63.5798323856929031 21.8675575340638986 -12.8113344818419002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271433750772352 2481271433750772352 948314090 2015.5 24.9341630275398991 3.53572935481115014 -3.34928421747128979 3.55710767243773995 \N \N \N \N \N \N \N 0.355642899999999984 \N \N \N \N \N \N \N \N \N 63 0 63 0 22.5710559999999987 795.078003 15.0823054535942003 67.2297720174012028 3 false 0.00403161100000000005 \N \N 0.285578600000000016 8 6 10.0056879999999992 0 9 true 72 132.204961950441003 1.96777813118948997 67.1848984 20.3852459999999986 7 193.781227574674006 11.7550170964833995 16.4849800000000002 19.633108 6 402.306206295656978 19.7847501840373994 20.3341560000000001 18.2505279999999992 4.50881299999999996 0 1.38257980000000003 -0.752138140000000011 2.13471799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.908491637363994 -63.5664285582584014 21.8445980929000996 -12.7683006762653992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635613958528 2481271635613958528 1116791361 2015.5 24.9320630016986016 4.17292862093545036 -3.3453519705108401 2.5100336636420999 \N \N \N \N \N \N \N -0.459999979999999975 \N \N \N \N \N \N \N \N \N 79 0 79 0 33.1023830000000032 1643.66003 12.6678509616503003 124.230195261966003 3 false 0.00579784070000000009 \N \N -0.112385239999999997 11 7 10.9059930000000005 0 13 true 99 247.670836597402001 2.95201658367630015 83.8989029 19.703678 11 348.670159490633012 11.1876174542320008 31.1657200000000003 18.9953520000000005 11 769.31061005054903 20.038878453282301 38.390900000000002 17.5466650000000008 4.51397850000000034 0 1.44868660000000005 -0.708326340000000054 2.15701300000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.900520349420987 -63.563733264155303 21.8440921246059006 -12.7638718913306999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271742988417792 2481271742988417792 1003672529 2015.5 24.9628532836943009 0.0672508860460959979 -3.35423246595069013 0.0483428551844814966 0.682113720086107045 0.0692017570787812064 9.85688400000000087 9.9828008779685895 0.148623584232461997 -0.626597493917571025 0.103061007965410997 -0.0411339179999999985 0.190386699999999992 -0.389855620000000014 0.119829424000000004 -0.159266440000000009 0.121707190000000007 -0.194216849999999996 0.159266400000000002 0.061040709999999998 0.129211049999999994 149 0 148 1 1.91639289999999995 177.149002 0 0 31 true 5.57145699999999966 1.58017319684842006 0.0142797705981393998 -0.0465793129999999972 17 9 0.14199908 0 17 false 147 4874.05894916799025 4.19768848487024027 1161.13 16.4686400000000006 15 2259.16329888858991 15.5662911688074992 145.131760000000014 16.9665180000000007 15 3764.8598440125902 15.6306025738520997 240.86466999999999 15.8225479999999994 1.23593569999999997 0 1.1439705 0.49787903 0.646091459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.971566267830013 -63.5589316234600972 21.8700079154923017 -12.7834900575573993 100001 4974.33008 4953.5 5041.83008 0.409000009 0.300000012 0.486999989 0.202000007 0.155300006 0.238999993 200111 0.912593100000000046 0.888322350000000038 0.920285699999999984 0.459397580000000028 0.360887400000000025 0.557907759999999975 +1635721458409799680 Gaia DR2 2481271742988417408 2481271742988417408 1092251955 2015.5 24.9660681526891999 0.0431147374036614031 -3.35135769190730004 0.0310816879471397002 0.557031702301789999 0.0437330132526072973 12.7370990000000006 -1.48696128864205002 0.0954603970773733046 -7.24224786006448973 0.0664183867251511018 -0.0548211600000000007 0.215715199999999996 -0.367245470000000018 0.105294639999999995 -0.118185650000000003 0.0901465040000000023 -0.165732230000000008 0.159692240000000013 0.0891737699999999994 0.0483508399999999991 140 0 140 0 0.851990200000000031 148.776993 0 0 31 true 15.7155930000000001 1.60884715765880992 0.0100441863579835006 -0.0599028649999999996 16 9 0.0961533900000000052 0 17 false 140 12864.4662528140998 7.18883087461145021 1789.51001 15.4148859999999992 14 6894.53656960085027 22.2128679006302008 310.384799999999984 15.7551249999999996 13 8699.41108260291003 24.9167382800633987 349.139250000000004 14.9131959999999992 1.21217219999999992 0 0.841929440000000029 0.340238570000000018 0.501690859999999961 \N \N 0 \N \N \N NOT_AVAILABLE 150.975404161368999 -63.5549764339681005 21.8741556258377017 -12.7820057961877005 100001 5785.5 5760 5815 0.455000013 0.296000004 0.598999977 0.224999994 0.150399998 0.294 200111 1.27330530000000008 1.2604188999999999 1.28460430000000003 1.63652789999999992 1.34813950000000005 1.92491630000000002 +1635721458409799680 Gaia DR2 2481271742988417280 2481271742988417280 842677542 2015.5 24.9675474525012007 0.0428350482533403007 -3.3509323976691201 0.0295035930695112004 1.06974215695786001 0.0423353445275677018 25.2683 11.0457185299848994 0.0993120478103777932 10.2741830214888008 0.0642716344835927988 -0.076879740000000002 0.114510009999999995 -0.453657120000000025 0.0981643650000000034 -0.152969300000000002 0.0734870999999999996 -0.225029699999999999 0.229283259999999989 0.109856720000000005 0.0360574459999999999 149 0 144 5 -1.66026399999999996 112.535004 0 0 31 true 17.5377539999999996 1.58872796497145008 0.00945702531821055944 -0.074921354999999995 17 9 0.101392609999999994 0 17 false 143 14249.3222025897994 7.99883490900737026 1781.42004 15.3038799999999995 15 7394.00068800774989 23.9833424042742998 308.297329999999988 15.6791900000000002 13 10006.7038325100002 35.7621848471332981 279.812439999999981 14.7611919999999994 1.22116019999999992 0 0.917997359999999984 0.375309940000000009 0.542687400000000042 \N \N 0 \N \N \N NOT_AVAILABLE 150.97801452553901 -63.5539713074453019 21.8757238515686012 -12.7821567091899997 100001 5439.37988 5377.7998 5641.0498 0.0874999985 0.0250000004 0.210299999 0.0377000012 0.00970000029 0.0860999972 200111 0.801073849999999976 0.744821199999999961 0.819525799999999971 0.506102500000000011 0.460891280000000014 0.551313759999999986 +1635721458409799680 Gaia DR2 2481271773055107840 2481271773055107840 802438498 2015.5 24.9677602112633998 1.94769168556405003 -3.34574097276126015 1.13717890915573006 \N \N \N \N \N \N \N -0.547463060000000001 \N \N \N \N \N \N \N \N \N 65 0 64 1 0.788849499999999981 67.260498 1.19570539903819006 0.310228462673858008 3 false 0.0402680300000000033 \N \N -0.0605250800000000019 8 6 4.9168390000000004 0 9 false 66 110.290366853758002 1.54977355275622997 71.1654968 20.5820219999999985 6 53.9409024344555021 12.5710116782029999 4.29089600000000004 21.0215929999999993 8 118.507635332486004 11.9053119885065009 9.95418199999999942 19.5775550000000003 1.56358660000000005 0 1.44403839999999994 0.439571380000000012 1.004467 \N \N 0 \N \N \N NOT_AVAILABLE 150.973562041435002 -63.5491688795815008 21.8778945655821992 -12.7774117571538994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271773052756608 2481271773052756608 769119827 2015.5 24.9697798709729 0.431144884502226988 -3.34585983607477022 0.300430391501427974 0.673968114918522043 0.454605524451644982 1.48253389999999996 -0.451579274720932011 1.00204177150170004 -9.56996536038436929 0.559009150005960964 0.0245861580000000003 0.104336849999999995 -0.246766879999999994 0.135645550000000004 -0.133781729999999988 0.174133850000000007 0.118249060000000003 0.0489529299999999987 0.0470100400000000029 0.0922764400000000012 149 0 146 3 3.92938799999999988 216.925003 1.53577072469651998 3.82795877320325006 31 false 0.122759660000000007 1.51275371376843992 0.0935947557267066965 -0.0997736399999999968 17 9 0.890009399999999951 0 17 false 144 310.699966011875006 1.47260819747570992 210.985992 19.4575120000000013 14 138.786804657557013 9.34131159725606075 14.8573140000000006 19.9955180000000006 14 286.766132645311018 11.5359583732592004 24.8584579999999988 18.6181009999999993 1.36965880000000007 0 1.3774166000000001 0.538005799999999978 0.839410800000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.97778350362799 -63.548431724048001 21.8797703948686006 -12.7782677067734003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270329946112512 2481270329946112512 1508378196 2015.5 24.9866206052551014 0.666943017993232967 -3.38959617127905988 0.615169933340807051 1.12739888754341999 0.733353792764319001 1.5373192 -7.2254840425744602 1.51900368306272004 -5.59074239781161975 1.64720736622923991 0.0766207799999999994 0.227750809999999998 -0.277769770000000027 0.0555206840000000007 -0.0752307549999999964 0.0229150540000000007 -0.362564900000000023 0.0585821399999999978 -0.0639731600000000011 0.281435849999999987 126 0 126 0 -0.727293850000000019 109.410004 0 0 31 false 0.0481584499999999985 1.04246429219203995 0.185232072289420013 -0.00444245429999999986 15 8 1.58852909999999992 0 15 false 126 119.186589739709007 0.964623875593412006 123.557999 20.4977969999999985 13 30.0250676775767005 7.08907192752718007 4.23540160000000032 21.6576790000000017 11 170.673597013624999 13.0034236607612996 13.1252809999999993 19.1815029999999993 1.68390309999999999 0 2.47617529999999997 1.15988160000000007 1.3162936999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.053291886513989 -63.5810739031068977 21.8792043615978002 -12.8251206038949004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270329943870976 2481270329943870976 408274863 2015.5 24.9911096256036984 0.848505645571070999 -3.38472941936823002 0.82083760121939997 -0.48357958879691898 0.934481320734513954 -0.517484500000000014 4.73381725014137 1.99863606434975005 -6.8983869478812796 2.31928421027815013 0.122201679999999993 0.194865470000000013 -0.220417749999999996 0.0676002950000000047 -0.0610077750000000002 0.0585707000000000033 -0.210663700000000009 0.0202001950000000007 -0.0953560299999999944 0.272055199999999997 103 0 102 1 1.47613280000000002 118.283997 1.0658048117821799 0.297472781113064022 31 false 0.0322665420000000022 1.40699731907564995 0.234969963760052997 0.0349404199999999998 13 8 2.17245359999999987 0 13 false 101 95.5395995542947958 1.11680726383293005 85.5470963 20.7379069999999999 10 73.8266910332157948 10.6114485054536996 6.95726780000000034 20.6808550000000011 10 74.172535781573103 7.11789711350833976 10.4205679999999994 20.0863109999999985 1.5490877999999999 0 0.594543460000000024 -0.0570526120000000025 0.651596069999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.057833627894013 -63.5747745497292982 21.8853200275706001 -12.8222557565666992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267718603617024 2481267718603617024 973461824 2015.5 25.0214397926467988 0.299950932076734011 -3.39042389411314993 0.231026823137362003 0.146140713142258988 0.318033766128998974 0.459513200000000011 9.61687671064814964 0.66744726683710498 -10.1494185232480003 0.407151196982916019 0.108766294999999999 0.20498203000000001 -0.318847629999999993 0.178799929999999996 -0.0341922119999999996 0.207912189999999997 0.147504500000000011 0.165511059999999988 0.0829473899999999958 0.140287440000000013 143 0 142 1 1.39595150000000001 160.688004 0.618562653084898995 0.923962007423601017 31 false 0.251770380000000016 1.5603833109382601 0.0773661042458820003 -0.0146928879999999994 16 9 0.601560059999999952 0 16 false 139 421.934725017790015 1.66109391286389996 254.009995 19.1252519999999997 15 231.107125664201988 7.61916821682229006 30.3323299999999989 19.4418539999999993 15 284.539867192203019 10.9999249947475004 25.8674369999999989 18.6265619999999998 1.22210130000000006 0 0.815292360000000049 0.316602700000000015 0.498689649999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.124927533712992 -63.5672014996431969 21.9120129571226983 -12.8387408534432996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270742260599296 2481270742260599296 905106508 2015.5 25.0092768202551987 0.181039385980624995 -3.37179499745601996 0.17640027556766999 1.07859891481254011 0.212153174548951995 5.08405729999999956 -4.63637396149735004 0.400666386794938989 -6.09287544286407012 0.285380455163808 0.105911660000000005 0.280929030000000024 -0.18030038000000001 0.246119169999999998 -0.409854050000000025 0.497375940000000016 0.564361800000000025 -0.140047150000000009 -0.237573470000000009 0.430429070000000025 122 0 121 1 -0.365393550000000011 109.878998 0 0 31 false 0.936830999999999969 1.34469143673220004 0.0442557207681249024 0.0108705969999999992 14 8 0.396254659999999981 0 14 false 119 1063.47615259848999 2.46747514050165018 430.997986 18.1215459999999986 12 333.283051953406016 13.4023526079923005 24.8675040000000003 19.0443549999999995 12 1117.76513294299002 11.4282184428502998 97.807469999999995 17.1410429999999998 1.3644388999999999 0 1.90331270000000008 0.922809600000000008 0.980503099999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.082579658147012 -63.5554138203516032 21.9075057684504984 -12.8169430151077997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270914059292416 2481270914059292416 278635118 2015.5 24.9830804702104992 1.06184771080829998 -3.36374305376773997 0.467107803689233991 0.914565760261298988 0.783835911311271949 1.16678210000000004 -4.6278431334940402 2.81950781641493009 5.93793853208381961 0.810593499658667005 -0.276187100000000019 -0.374456730000000015 -0.76954705000000001 0.282440840000000026 0.0949307000000000067 0.39950724999999998 0.0722409340000000066 0.486248520000000017 -0.0939425900000000064 -0.167570109999999994 138 0 134 4 1.54313220000000006 154.654007 1.76636689607905994 2.44456640509549006 31 false 0.0596350400000000003 1.4763468193370699 0.143379944214159005 -0.136799250000000011 16 8 2.63539389999999996 0 16 false 132 169.526306676810009 1.45500631338363995 116.512001 20.1152729999999984 10 61.942666773080802 9.5482692854391793 6.48731900000000028 20.8714140000000015 11 207.010369464338993 5.83829169652693025 35.4573499999999981 18.97194 1.5864973 0 1.89947510000000008 0.756141660000000049 1.14333339999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.021691317527001 -63.5590958578574998 21.8856405200844009 -12.7997930344830007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270742260600064 2481270742260600064 989898870 2015.5 24.9997304247663017 0.362496504735547009 -3.36515869581646987 0.239106765071078003 -0.0357616750159285013 0.384402091658588019 -0.0930319500000000021 -0.247900976274097989 0.708934385324930028 -1.90337067645701996 0.420977760545322988 -0.0617009099999999977 0.377064400000000022 -0.31831777 0.168706400000000006 -0.19725203999999999 0.189525830000000006 0.0893977360000000054 0.109472274999999994 0.10127912 0.124994464 141 0 138 3 2.46937780000000018 176.669998 1.04321987248768 2.60897018855694007 31 false 0.222116229999999998 1.71777407594590992 0.0787378217122935015 -0.0799487100000000062 16 9 0.640524149999999959 0 16 false 139 459.004231320291979 1.67167313566699005 274.578003 19.0338250000000002 15 244.926496414810003 14.7565417812015003 16.5978239999999992 19.3787999999999982 13 345.064597886060994 11.2942728572761997 30.5521759999999993 18.4171699999999987 1.28537180000000006 0 0.961629869999999998 0.344974520000000007 0.616655350000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.056898966359995 -63.5533993142774989 21.9009410412329011 -12.8072536848096998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270845339816192 2481270845339816192 1291352421 2015.5 25.0109904738480004 0.641462370165781004 -3.36276823641974998 0.62782534793953404 0.561689044396564974 0.690809707099570014 0.813087939999999953 -1.04168016037540001 1.53144553142590989 -5.19095775179575991 1.49240023704714009 0.215566919999999995 0.157336940000000008 -0.184141040000000006 0.0439085899999999973 0.0428021849999999995 0.047376322999999998 -0.291556539999999975 0.0279611680000000015 -0.0386023450000000032 0.277885349999999975 109 0 108 1 -0.964797800000000039 89.1569977 0 0 31 false 0.0545468259999999996 1.55418023463299004 0.193814995778961996 -0.0140081170000000005 13 9 1.503112 0 13 false 109 133.89332292011099 1.01741335218713003 131.602005 20.3714680000000001 11 78.3839364582874936 10.406699140213 7.53206539999999958 20.6158199999999994 10 93.3821966498534977 9.60230528098207969 9.72497700000000087 19.8362599999999993 1.28285809999999989 0 0.779560099999999978 0.244352340000000001 0.535207749999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.077540513879995 -63.5465047594203014 21.912558134188501 -12.8091881495259994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266932625047936 2481266932625047936 898425560 2015.5 25.0289441723092985 0.0316886063921537967 -3.44312845034448012 0.0228594057938012983 0.253171446867234973 0.0334023528638264997 7.57944969999999962 5.64902797806934043 0.0669913313651950976 -12.1447537607835994 0.0451371430005639979 0.0247311610000000015 0.281517540000000011 -0.377047960000000015 0.115353579999999997 -0.00504279099999999959 0.113892080000000007 -0.214768189999999998 0.193020250000000004 0.100471913999999996 0.0848573700000000014 149 0 148 1 -2.80185370000000011 100.130997 0 0 31 true 40.8935499999999976 1.58339452585210005 0.00819053950092548007 -0.000403289419999999983 17 9 0.0715737939999999961 0 17 false 147 32455.8311451976006 11.6504579355015991 2785.80005 14.4101339999999993 16 16118.0602877984002 26.7225964876143003 603.162230000000022 14.8331060000000008 16 23738.1723059319993 36.5329763347142986 649.773860000000013 13.823302 1.22801460000000007 0 1.00980380000000003 0.42297172999999999 0.586832050000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.190161879018007 -63.6118327459805002 21.8991650790505012 -12.8904805938477001 100001 5204.66992 4860 5365 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266206775111936 2481266206775111936 407618445 2015.5 25.0449063531643006 1.45234294307596001 -3.44179504342009013 1.34413097379396995 -3.27917515704025986 1.79230935761689003 -1.8295809999999999 -7.4575451818132299 3.03288902400325 -2.04038663910877016 1.98276109882109997 0.432594719999999988 0.377450600000000025 0.262416800000000006 0.25557112999999998 0.43660294999999999 0.0597421559999999977 0.402673930000000013 -0.274659839999999988 0.244166119999999987 0.101713250000000005 53 0 53 0 1.09765519999999994 58.8114014 0.997348718903429021 0.156551435314046999 31 false 0.0294432880000000015 1.23592249957913003 0.436019753756033024 0.0356631280000000023 6 6 2.72839900000000002 0 6 false 52 90.4560569787174984 2.09506062889659983 43.1758995 20.7972719999999995 5 65.7826359405866015 12.0455125700338996 5.46117350000000012 20.8061100000000003 6 72.8932405980094984 12.2042736285161997 5.97276350000000011 20.1052019999999985 1.5330744999999999 0 0.700908659999999961 0.00883865399999999961 0.692069999999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.221385956631991 -63.6038948340990018 21.9148580856881985 -12.8951325710684994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266962689358464 2481266962689358464 382247155 2015.5 25.0376174177355004 0.232043139879459986 -3.43674604312503984 0.170158464256911002 -0.28800835230753502 0.249767519457371995 -1.15310570000000001 1.88861274400218004 0.520736471795682054 -1.47849969684357996 0.290664767498670984 0.118429290000000006 0.201821820000000013 -0.377609399999999984 0.187540409999999991 0.0537965929999999967 0.214711469999999988 0.14615357000000001 0.221954669999999993 0.0970380599999999954 0.102591920000000003 148 0 145 3 0.72134469999999995 151.716003 0 0 31 false 0.454735579999999973 1.55564849576833009 0.0557668498305729995 -0.0155432000000000001 17 9 0.472156670000000001 0 17 false 144 633.047771456475971 1.7252370682034901 366.93399 18.6847740000000009 16 332.927175571441012 10.8904866637588995 30.5704600000000006 19.0455150000000017 15 446.35629226105101 9.46732065375081966 47.1470569999999967 18.1377160000000011 1.23100260000000006 0 0.907798769999999977 0.360740659999999991 0.547058099999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.201755145481997 -63.6023918206803032 21.9098378853372999 -12.8877513899131007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267344941908224 2481267344941908224 1515021112 2015.5 25.0441399238783013 0.23229491553107201 -3.42193610514818003 0.173794127770410006 3.7130716668053898 0.258791941313272988 14.3477099999999993 44.211899206919 0.495862693312572989 -18.0271256670124984 0.286051975719425977 0.157427199999999989 0.285164499999999987 -0.292058529999999983 0.205524060000000008 0.0357817900000000008 0.2072436 0.234693349999999995 0.174375560000000013 0.131239309999999998 0.13193648999999999 151 0 150 1 0.265678440000000016 148.891998 0 0 31 false 0.430813369999999973 1.24156455152140999 0.0568557032362256021 -0.00691565730000000007 17 9 0.446910829999999981 0 18 false 151 585.704317266073986 1.59559360983353993 367.075989 18.7691690000000015 13 112.061049298794998 14.9415993182023001 7.49993659999999984 20.2277500000000003 13 790.916249006667954 10.3436029319582001 76.4642900000000054 17.5165940000000013 1.54169479999999992 0 2.71115679999999992 1.45858189999999999 1.25257489999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.200963777408987 -63.5862177283800989 21.9216601316003015 -12.8763976857837008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267344941908096 2481267344941908096 1622443227 2015.5 25.0448486761329008 0.284616400690169025 -3.41902492755854981 0.208707521429248005 -2.2030735476853498 0.315761922022138986 -6.97700829999999961 12.2407594960842001 0.61771049212282203 -2.76360655062243987 0.346051100506240994 0.134876670000000004 0.248096559999999994 -0.317431999999999992 0.193957240000000003 0.0027392362 0.196124610000000005 0.211761670000000013 0.188995020000000014 0.13092434 0.127569629999999989 151 0 150 1 5.33638950000000012 255.209 1.06352977643150992 4.34122480248650966 31 false 0.288661959999999995 1.53396543013888009 0.0673650799601331063 -0.00335752900000000016 17 9 0.556540130000000022 0 17 false 150 629.232852546675986 2.83465735810551989 221.977997 18.6913379999999982 14 249.667358625826012 9.27393855386898913 26.9213939999999994 19.3579849999999993 14 619.915383709352 8.23895770195194999 75.2419699999999949 17.781089999999999 1.38197290000000006 0 1.57689480000000004 0.666646960000000011 0.910247800000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.199642214718011 -63.5832800699840988 21.9234383946764986 -12.8739542684610999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267409365965056 2481267409365965056 1378736416 2015.5 25.0361352787995983 0.309590122553146996 -3.41517702594273009 0.238574292272747013 0.698471981274605969 0.346702880667379976 2.01461269999999981 -2.5427187739238799 0.658432811092110049 -2.20762483255668984 0.396469249275779978 0.181765989999999988 0.29260427 -0.275078920000000005 0.201815749999999988 0.0463672129999999974 0.212125399999999992 0.211497810000000008 0.167288120000000012 0.117293389999999997 0.15352091000000001 150 0 149 1 0.609627249999999954 153.897995 0 0 31 false 0.234789419999999999 1.74919901496241992 0.077569716066719599 -0.00769343599999999968 17 9 0.592615699999999967 0 17 false 147 386.963892768305982 1.37698128811066001 281.02301 19.2191890000000001 17 175.032138910122001 8.63318536239579082 20.2743399999999987 19.7435930000000006 16 305.804005708563977 9.07823984930745986 33.6853869999999986 18.5483110000000018 1.2425866000000001 0 1.19528199999999996 0.524404500000000051 0.670877460000000037 \N \N 0 \N \N \N NOT_AVAILABLE 151.178268007738012 -63.5834630971107018 21.9166075080336995 -12.8671635331392 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267546805062144 2481267546805062144 926569906 2015.5 25.0623241134393986 2.60602947626449 -3.39622124838893003 2.03363823154211998 \N \N \N \N \N \N \N -0.396664100000000019 \N \N \N \N \N \N \N \N \N 56 0 56 0 -0.671661559999999991 43.9067993 0 7.03542143992788015e-16 3 false 0.0283106750000000004 \N \N 0.115713015000000002 7 6 8.15549399999999913 0 7 false 58 88.7108348350844977 1.40925414499775004 62.9487991 20.8184240000000003 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.213530051616004 -63.5552424807297029 21.9487110142421997 -12.8592136451326002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267478085444864 2481267478085444864 316512409 2015.5 25.0721790959092985 0.174426897362189998 -3.40643933948040001 0.136282663067287008 0.075523131261920104 0.200858495148550004 0.376001699999999994 0.635962750650927999 0.368931410297750006 -4.07855668152509043 0.236838316709010011 0.220394759999999995 0.321640519999999985 -0.196662100000000006 0.151140419999999998 -0.0176925060000000002 0.119088285000000002 0.164321329999999988 0.107508279999999998 0.135496869999999991 0.187008430000000003 160 0 157 3 1.42651630000000007 177.513 0.358124492626258006 0.780686742369971043 31 false 0.666956100000000052 1.68894023674545002 0.0462418673858433979 0.0228709409999999988 18 10 0.332064540000000019 0 18 false 156 897.971832672979986 2.10326097819294011 426.942993 18.3052080000000004 18 588.459831182632001 9.47873825681235083 62.0820849999999993 18.4270950000000013 17 482.794253902791979 6.09836246488306966 79.1678540000000055 18.0525149999999996 1.19297080000000011 0 0.374580379999999991 0.121887209999999996 0.252693180000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.243250417913998 -63.560345499759201 21.9542137345166992 -12.8723441279456008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361623769881472 2481361623769881472 30899587 2015.5 25.064688863496901 13.0962999236013005 -3.37198427370107989 5.72437399416030956 \N \N \N \N \N \N \N 0.57389884999999996 \N \N \N \N \N \N \N \N \N 40 0 40 0 1.6255767000000001 49.5924988 4.26658002506481981 1.22551598402119999 3 false 0.0119392509999999997 \N \N -0.143453460000000005 5 4 42785.8949999999968 0 5 false 43 72.1049020861010064 3.12326556654896015 23.0863991 21.0434529999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.195359354207 -63.5322757749693992 21.9601482634455003 -12.8375650579313003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270883994957952 2481270883994957952 930752502 2015.5 25.0296201364503013 0.136721993543919007 -3.3532239863285902 0.105348228905592006 1.08999533510380009 0.15131434701638799 7.20351599999999959 -14.6765669917486008 0.295992830130710982 -11.1228374721729004 0.18422401522135301 0.161029320000000004 0.280015650000000005 -0.227607730000000008 0.156744390000000011 -0.0727793649999999986 0.135729249999999996 0.184002379999999993 0.120399240000000005 0.12811307999999999 0.167529260000000013 162 0 161 1 1.67664769999999996 186.776001 0.169257799696049011 0.257125455471340025 31 false 1.07262799999999991 1.44427625182251007 0.0338505051277609992 0.000994690199999999965 18 10 0.267697450000000003 0 18 false 159 1185.16575576341006 1.83090694770462004 647.310974 18.0039179999999988 17 359.143260451140009 8.95916592555009039 40.0866850000000028 18.9632189999999987 17 1236.86032856411998 9.38268157784898982 131.823759999999993 17.0311179999999993 1.34665009999999996 0 1.9321003000000001 0.959300999999999959 0.972799300000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.106391088561992 -63.5300216094110013 21.9338975556865989 -12.807194458883 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270879699338752 2481270879699338752 759444194 2015.5 25.0244819565414005 0.0467951147337367021 -3.34415446268386995 0.0464094202997661978 3.78930283573644999 0.0574305087776992018 65.9806600000000003 -16.2073754228301006 0.113582037079466999 -34.1295774354431032 0.115217098464409001 0.224969310000000006 0.22838043999999999 -0.0196215700000000014 0.161703409999999992 -0.271090800000000021 0.324107440000000024 0.374311950000000004 -0.220907269999999989 -0.298609320000000011 0.459714230000000001 122 122 118 4 11.0274789999999996 371.588989 0 0.391663547818827007 31 true 220.064069999999987 1.6570887336756901 0.0147437008317672005 0.101866250000000005 14 9 0.0820497939999999953 0 14 true 120 2233365.98963906011 1085.05772552792996 2058.29004 9.81596599999999953 13 1331015.89284140989 2045.94221344912989 650.563800000000015 10.0409299999999995 13 1301928.66610597004 1880.37837400792 692.375900000000001 9.47545200000000065 1.17891309999999994 0 0.565477400000000019 0.224964140000000007 0.34051323 \N \N 0 \N \N \N NOT_AVAILABLE 151.087391337399993 -63.5239526463507005 21.9324475990941998 -12.7968712848390993 100001 6625.58984 6528.2998 6735.4502 1.05669999 0.798200011 1.18560004 0.497299999 0.393000007 0.586099982 200111 1.86145519999999998 1.80122699999999991 1.91735049999999996 6.01586529999999975 5.8947061999999999 6.1370243999999996 +1635721458409799680 Gaia DR2 2481361731143212928 2481361731143212928 661359675 2015.5 25.0707199893404002 0.033892463289234398 -3.35612951358982992 0.0254521449742228997 1.20667390986884993 0.0377819053169463973 31.9378799999999998 19.1957619387899001 0.0709338909183615945 -3.50820259369332987 0.0499488462952056012 0.126819600000000005 0.33159843 -0.276288240000000018 0.0684190499999999951 -0.0353208740000000021 0.0376775040000000006 -0.156433340000000004 0.144825860000000001 0.130928309999999992 0.17172772 159 0 158 1 -1.97388330000000001 120.433998 0 0 31 false 25.9700869999999995 1.55498167987548008 0.00917468873993917966 0.025417116 18 10 0.0736354139999999963 0 18 false 157 20331.7343127171007 7.49364459927825965 2713.19995 14.9179300000000001 16 9452.13782844554044 19.9565235503170015 473.636500000000012 15.4125630000000005 14 15612.8603772390998 30.0425880829418013 519.690900000000056 14.2782134999999997 1.23280180000000006 0 1.13434980000000007 0.494633670000000025 0.639716150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.192589276498012 -63.5153613583091996 21.9718950923797003 -12.8250574505137998 100001 5011.93994 4925 5117.5 0.559199989 0.453500003 0.642099977 0.270999998 0.222900003 0.317099988 200111 1.0336303 0.991428140000000013 1.07044530000000004 0.607363340000000029 0.563510359999999988 0.65121629999999997 +1635721458409799680 Gaia DR2 2481361731143212800 2481361731143212800 356216877 2015.5 25.0779593361948017 0.43037472900033702 -3.35116356357164991 0.398133273419330025 0.13517299423059001 0.519434129691702995 0.26023126000000002 12.0803364848261001 0.914253685345178035 -5.64813455795018005 0.646138296423769964 0.383867559999999997 0.248139069999999989 -0.152574669999999996 0.143927990000000006 -0.0593881269999999989 0.0643946100000000049 0.152987630000000013 0.159829749999999993 0.208094050000000003 0.294686170000000025 141 0 138 3 1.89922790000000008 165.669006 0.568484555621410981 0.301064703960350011 31 false 0.112396270000000006 1.63248650261372008 0.126442399525901999 0.0856130300000000066 16 9 0.836824829999999964 0 16 true 136 230.524414692958004 1.2615592027865401 182.729996 19.7815739999999991 13 71.9936340309402993 8.89067185116861936 8.09765900000000016 20.7081529999999994 14 264.602574197345973 8.86574222229864972 29.8455070000000013 18.7054350000000014 1.46013259999999989 0 2.00271800000000022 0.926578499999999972 1.07613950000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.202577105990997 -63.5078085610908971 21.9806642657188007 -12.8231133579570002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361726847614080 2481361726847614080 206248278 2015.5 25.0754191687540988 2.69164356491639989 -3.34600514533310012 1.90244336759277011 \N \N \N \N \N \N \N 0.0826187399999999961 \N \N \N \N \N \N \N \N \N 114 0 114 0 61.0638000000000005 5771.7002 14.9543319128651007 373.143830930624006 3 false 0.00433029330000000035 \N \N 0.0377760529999999969 17 9 5.14200500000000016 0 17 false 148 391.268460977606992 4.64023016225850959 84.3209 19.207177999999999 16 491.65649961605601 9.3253856017233705 52.7223779999999991 18.6222339999999988 16 1116.79063712363995 15.9484662316809995 70.0249560000000031 17.1419899999999998 4.11085299999999965 0 1.48024369999999994 -0.584943800000000014 2.06518749999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.192542324009992 -63.5042029879418024 21.9802023790660002 -12.8173830106963003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272013570930304 2481272013570930304 1086105403 2015.5 24.9384290802732984 0.297540995317630008 -3.32738757922489015 0.186957358975455012 0.993945204935763993 0.309416279780768022 3.21232369999999978 1.27693172037597003 0.573487738814656978 -13.6802979741838993 0.337627104858441995 -0.139883919999999995 0.393526819999999999 -0.340767260000000016 0.153740700000000008 -0.25613691999999999 0.19478527000000001 0.0645090400000000036 0.0749097100000000043 0.0667295900000000053 0.100838474999999997 149 0 145 4 3.87740760000000018 214.533005 0.826651477943625035 2.73589587430282011 31 false 0.341395769999999987 1.30797773115973004 0.0620417042705255981 -0.107476725999999995 17 9 0.520345700000000022 0 17 false 142 601.799290149671037 1.87305783908032009 321.291992 18.7397370000000016 14 182.43897217466801 7.80490510149332994 23.3749119999999984 19.698595000000001 15 660.842195479454972 8.41208010843132037 78.558716000000004 17.7116760000000006 1.40126649999999997 0 1.98691939999999989 0.958858499999999947 1.02806090000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.896619500696005 -63.5447571995139029 21.8569581175905014 -12.7495315174710999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271807412496512 2481271807412496512 135164118 2015.5 24.957674428065399 0.449392801005188025 -3.34008053137731009 0.302901719205851017 1.60045662291671009 0.480040795786094987 3.33400130000000017 1.13558899015171 0.897408838122948027 -12.6250697857954997 0.54790251423153602 -0.12950078000000001 0.384070279999999986 -0.269545099999999982 0.100436196000000005 -0.256848420000000022 0.131447960000000003 0.198091430000000013 0.0579402629999999988 0.0314941670000000035 0.0507122279999999981 136 0 136 0 2.30064579999999985 171.082001 0.803614019034804006 0.804985163791327007 31 false 0.140770050000000008 1.36470831763291001 0.0950536023372095945 -0.126244099999999998 16 9 0.801663800000000037 0 16 false 135 278.779844273924994 1.56712742194655008 177.891998 19.5752120000000005 12 65.748333006106094 5.46563908314839964 12.0293949999999992 20.8066770000000005 12 329.904598685734015 7.50828753010110006 43.9387299999999996 18.4659499999999994 1.41923080000000001 0 2.34072689999999994 1.2314643999999999 1.10926250000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.947713653882005 -63.5482471510327969 21.8704483517516017 -12.7684294509406993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271811707893632 2481271811707893632 430243583 2015.5 24.9540692315745005 1.53061960912027994 -3.3376911605902202 0.96965454212019897 \N \N \N \N \N \N \N -0.127719570000000004 \N \N \N \N \N \N \N \N \N 126 0 126 0 25.7344970000000011 1122.20996 7.65615226715700015 63.6914442159137977 3 false 0.0146166349999999994 \N \N -0.0796450100000000022 15 8 2.99372030000000011 0 15 false 129 282.34941214836698 2.82389632241870014 99.9858017 19.5613980000000005 10 378.210141669984012 10.8471024917582994 34.8673900000000003 18.9070549999999997 10 662.246407861803959 14.9345495623832001 44.3432460000000006 17.7093719999999983 3.68499640000000017 0 1.19768330000000001 -0.654342650000000026 1.85202599999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.938130453534995 -63.5475841707998015 21.8679255505984003 -12.7648785754704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271085860918912 2481271085860918912 1287204042 2015.5 25.0120865177017997 0.685246536538319018 -3.33423867763251991 0.677807174548353042 0.0973616143333447953 0.753200925506051 0.129263800000000012 1.76177255719868997 1.61860562201013991 -4.89992440018606956 1.68178696928367999 0.269814370000000026 0.220185180000000008 -0.238713199999999987 -0.0350396340000000001 -0.0469257400000000005 -0.0531535819999999978 -0.324387250000000016 0.0651473300000000033 0.00765858259999999992 0.383652419999999994 129 0 129 0 3.14170769999999999 179.492996 2.15417142118199001 1.93026846340476999 31 false 0.0422569179999999975 1.6289672552983101 0.201045440955032989 0.0407404859999999994 15 9 1.71540190000000004 0 15 false 129 132.743207798391012 1.13834831951462001 116.610001 20.3808350000000011 11 61.2508881519836024 20.5899500613866984 2.97479529999999981 20.8836079999999988 12 175.670872817026009 10.3557785842195003 16.9635600000000011 19.1501710000000003 1.78481270000000003 0 1.73343660000000011 0.502773299999999979 1.23066330000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.052858678239005 -63.520158410071403 21.9244153865438989 -12.7830838335724 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364716144853888 2481364716144853888 407390480 2015.5 25.0458385399515002 0.467932962328143021 -3.33800340605588985 0.388456938839876975 1.12741054417424991 0.524459322108494996 2.14966249999999981 5.45757950906604972 1.04472415504936 -0.335643280958200008 0.69077343670393998 0.207929670000000011 0.240996660000000001 -0.176409569999999988 0.16256045999999999 -0.088423600000000005 0.160277560000000013 0.241409449999999998 0.0655671300000000012 0.0760112500000000024 0.202028569999999991 166 0 166 0 3.67493179999999997 235.496994 1.17255193075141007 1.09426854547502006 31 false 0.0802486300000000013 1.50525836798051005 0.123636714570082004 -0.0124011710000000008 19 10 0.936153349999999995 0 19 false 168 198.883064249587989 1.16861563597574003 170.186996 19.941872 14 101.172929288432002 8.50510935452141048 11.8955470000000005 20.3387279999999997 14 148.663437652891986 14.0540989810482007 10.5779420000000002 19.3314100000000018 1.25619729999999996 0 1.00731850000000001 0.396856299999999995 0.610462199999999955 \N \N 0 \N \N \N NOT_AVAILABLE 151.124953473874996 -63.5093987640307986 21.9550942807548992 -12.7990354380888007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364960958619136 2481364960958619136 1530503497 2015.5 25.0362711356245988 0.0857498007584893973 -3.3274186774353498 0.0667518585489897953 0.131469915779789004 0.0950742639963246955 1.38281290000000001 15.4796697530866005 0.186662894539235014 -4.93566675223093032 0.121197811782764994 0.146222839999999993 0.269944249999999997 -0.215827240000000004 0.130765359999999997 -0.0948796499999999959 0.110522490000000001 0.114302106000000001 0.109195314000000002 0.126386460000000006 0.172299919999999995 160 0 160 0 1.59400420000000009 184.044998 0.130256906961745994 0.362195071024877024 31 false 2.70571349999999988 1.68552238342714999 0.0216488260237359988 -0.00177031299999999992 18 10 0.171940239999999994 0 18 false 160 2692.16184655614006 3.05574457278384015 881.017029 17.1131129999999985 17 1512.66091543444008 10.3786225516388004 145.74776 17.4020350000000015 15 1751.53223175120002 5.85383247694767039 299.211200000000019 16.6533739999999995 1.21248029999999996 0 0.74866104 0.288921360000000016 0.459739689999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.095543599190989 -63.5038185464839984 21.9500045884797004 -12.7856702815911003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364784864465024 2481364784864465024 590837350 2015.5 25.0757625895830003 0.804197943398601955 -3.33339925912344981 0.765187785559397038 0.295759206485496973 0.942346202611473949 0.313854100000000025 3.03739058982780996 1.74326215676727991 0.579115859253869991 1.40880589946889989 0.332437780000000016 0.347572619999999999 -0.0544579659999999965 0.128080300000000008 0.113597279999999995 0.0533170479999999988 0.268115820000000005 -0.0493402630000000023 0.11010984 0.168157520000000005 122 0 122 0 2.20454239999999979 153.266998 1.95228085193078993 1.0824690840681499 31 false 0.0328512269999999967 1.83277129752041001 0.263877054976008996 0.0528166099999999999 14 10 1.56583059999999996 0 15 false 121 109.768998420925001 1.66899520746103991 65.7695007 20.5871659999999999 12 89.229165119708199 10.4913651700525001 8.5050100000000004 20.4751200000000004 13 85.6253635378505038 8.9280678483120095 9.5905819999999995 19.930413999999999 1.59293170000000006 0 0.544706339999999956 -0.112045290000000006 0.656751630000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.181316300389 -63.4926300552577985 21.9853056882975011 -12.8057958306158 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268852474972672 2481268852474972672 1344352109 2015.5 24.9146565701223004 5.23640038517657036 -3.42262030648491011 5.36833665358113965 \N \N \N \N \N \N \N 0.52821640000000003 \N \N \N \N \N \N \N \N \N 96 0 95 1 23.9544099999999993 942.510986 16.0921498365059996 48.4439543848754965 3 false 0.00312893279999999991 \N \N 0.0791464899999999999 11 7 19.6486449999999984 0 12 false 98 130.197792077143987 1.8246911442668301 71.353302 20.4018569999999997 7 174.726296731954989 13.5523276912998991 12.8927145000000003 19.7454929999999997 6 343.199084977583027 13.5544276414017997 25.3200719999999997 18.4230540000000005 3.977989 0 1.32243920000000004 -0.656364440000000049 1.9788036 \N \N 0 \N \N \N NOT_AVAILABLE 150.93773421668601 -63.6411837773242013 21.7982262993165001 -12.8292312953677001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268921194454528 2481268921194454528 4843001 2015.5 24.9006219784012011 0.824894351881771959 -3.41061833818970994 0.740071860158109995 -0.386872924112825978 0.862156697679206996 -0.448726919999999974 -0.421227364977190988 1.93919057814362006 -1.94683555972252997 1.93220950622311993 0.056904780000000002 0.148060109999999995 -0.372366760000000019 0.0674452400000000035 -0.0639969299999999935 0.0412546099999999971 -0.382487240000000006 0.149522469999999991 -0.0234397870000000001 0.210883199999999993 132 0 131 1 2.86521099999999995 176.341003 2.87554664116848002 2.96315737240710009 31 false 0.032074883999999998 1.57917241879718007 0.215740553505221005 0.0231675099999999988 15 9 1.88338910000000004 0 15 false 132 124.863458905062998 1.34969927124191003 92.5121002 20.4472769999999997 11 99.7345526733808043 12.3093753180358991 8.10232449999999993 20.3542750000000012 11 71.3669277484656988 11.9388795226441999 5.97769070000000013 20.1281779999999983 1.37030859999999999 0 0.226097099999999995 -0.0930023199999999994 0.319099430000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.897768691468002 -63.6361439509948994 21.7894324390697989 -12.8128974809482994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269681404116992 2481269681404116992 127075201 2015.5 24.8922750564118012 0.0389554625209966032 -3.40210723253095004 0.027768275011388701 0.552726378113664985 0.0428757792309119035 12.8913430000000009 0.0254560450680633987 0.0801459622132515009 -1.41004948710506994 0.0571936317137535996 0.0685393660000000043 0.350870369999999987 -0.178663220000000011 0.0469080799999999978 -0.0721878299999999945 0.00349167760000000009 -0.220942269999999996 0.0598055119999999982 0.124529360000000006 0.162768080000000009 139 0 138 1 -0.0535819459999999984 131.464996 0 0 31 false 22.1815469999999983 1.6189683503385901 0.00879142178888229001 -0.0161083960000000005 16 10 0.0805391500000000038 0 16 false 138 18226.7197008248004 11.1605940785139008 1633.13 15.0365939999999991 14 10295.6700791719995 30.3502234935712991 339.228819999999985 15.3197519999999994 14 11740.5050754912008 33.3920506591872979 351.595799999999997 14.5877029999999994 1.20900389999999991 0 0.73204899999999995 0.283157349999999974 0.448891639999999981 \N \N 0 \N \N \N NOT_AVAILABLE 150.872714569832993 -63.6318939577246994 21.7847237493710999 -12.8019074031074993 100001 6066.12012 5828.43994 6354.33008 0.330199987 0.197400004 0.463499993 0.172499999 0.109200001 0.229699999 200111 1.38056179999999995 1.25816560000000011 1.49545430000000001 2.32514639999999995 1.91892580000000001 2.7313670000000001 +1635721458409799680 Gaia DR2 2481269715763855232 2481269715763855232 813196668 2015.5 24.9042963805081996 0.0538392108236641978 -3.40028118714191985 0.0394310623386497014 0.617357968622800013 0.0575779649979773975 10.7221220000000006 12.6429256847424991 0.117187771895957998 -5.88866343210781018 0.0809047747257169991 0.0377150360000000004 0.260312019999999977 -0.293433930000000009 0.0833740099999999984 -0.128627259999999993 0.0674150399999999955 -0.128697709999999993 0.125731559999999992 0.103526755999999998 0.151249970000000011 156 0 155 1 2.32266430000000001 193.143005 0.143400284532062994 1.2286326297083201 31 true 8.03712299999999935 1.58553676814343003 0.0120371124504338005 -0.0072186730000000001 18 10 0.113352289999999994 0 18 false 155 8247.29154942137029 6.48564401548765002 1271.62 15.8975880000000007 15 4271.25227497408014 22.7137846763845985 188.046699999999987 16.2749999999999986 15 5728.73702791423966 21.3099140945202983 268.829650000000015 15.3667730000000002 1.21251799999999998 0 0.908226969999999967 0.377411839999999998 0.530815099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 150.895540262306014 -63.6252200945020974 21.7968493725009012 -12.8046510778730003 100001 5502.72998 5354.06006 5921.5 0.169499993 0.0874999985 0.291099995 0.0670000017 0.0295000002 0.143099993 200111 1.02836599999999989 0.888056599999999974 1.0862676 0.873580460000000003 0.697910249999999954 1.04925059999999992 +1635721458409799680 Gaia DR2 2481268852477286144 2481268852477286144 1023160334 2015.5 24.9194230890302997 0.775663111095270974 -3.41818111117301004 1.16540096666744009 2.38585383457101008 0.98785402618880902 2.41518860000000002 26.0151806711639999 2.04088895387546998 -5.54056592283199034 2.92495829982193989 0.38213813000000002 0.152614849999999996 -0.460877719999999991 -0.321935829999999978 -0.442209200000000024 -0.610019800000000001 -0.841790700000000003 0.429856269999999985 0.425282270000000018 0.721056040000000009 115 0 115 0 -0.447957959999999988 102.849998 0 0 31 false 0.0517440960000000033 \N \N 0.0755968840000000031 13 8 3.12271760000000009 0 13 false 116 138.421150629533997 1.35523113074988011 102.138 20.3353600000000014 7 49.6619511923048975 4.29717239937744999 11.5568904999999997 21.1113280000000003 10 179.740993530706987 5.38899391011796958 33.3533479999999969 19.1253010000000003 1.65728249999999999 0 1.98602680000000009 0.775968549999999979 1.21005819999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.943279397731004 -63.6351602818235023 21.8044443219515003 -12.8268675205285003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346351872 2481269986346351872 163061008 2015.5 24.884045915905201 0.636651593827772033 -3.38218306119747991 0.528391314123159983 -0.144686563677011992 0.717937423498092975 -0.20153088999999999 25.3387487811866983 1.44038826394781005 -7.28385699729563019 0.951471697808924044 0.139702920000000008 0.196958259999999996 -0.218230530000000006 0.194654880000000002 -0.225993109999999997 0.282227000000000006 0.320585759999999997 0.0126543709999999993 -0.0707339349999999978 0.262870300000000001 142 0 142 0 5.12383800000000011 239.552002 2.37023655916601017 4.0680051055881199 31 false 0.0546377150000000034 1.48910769364178996 0.150409506196319986 0.0741721699999999956 16 10 1.31077379999999999 0 16 false 139 180.843845596400001 1.16958576004917991 154.621994 20.0451070000000016 12 69.928119362325404 9.87538004638068934 7.08105600000000024 20.7397600000000004 14 185.728054250252001 5.87181349903432004 31.6304419999999986 19.0897250000000014 1.41368469999999991 0 1.650034 0.694652559999999974 0.955381400000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.837187682814005 -63.6172189617668025 21.7844577788427998 -12.7803577627921001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986349445504 2481269986349445504 1305264539 2015.5 24.8846395689662003 1.33036175830887005 -3.38162665244102012 0.893351354338628001 0.0799441438439535967 1.15868878347798998 0.0689953600000000056 34.6499189902647018 3.42251036584496005 15.2258276435037008 2.67044780583074992 -0.203324260000000007 -0.315171929999999989 -0.675816199999999978 0.381064999999999987 0.134283020000000003 0.390384229999999999 -0.249126459999999994 0.383642819999999996 -0.396996200000000021 -0.0834939259999999961 106 0 106 0 3.69509389999999982 162.229004 2.55277390954362993 1.55520678400135992 31 false 0.0290363619999999996 1.63418575236780006 0.303259376175318007 0.0949375300000000061 12 8 3.21688490000000016 0 12 false 105 102.241078559732998 1.08940706577966995 93.8501968 20.6643030000000003 4 24.4262761233547003 21.4708377216477011 1.13764890000000007 21.8817440000000012 6 149.509882336577988 10.1302977332980007 14.7586860000000009 19.3252449999999989 1.7012354999999999 0 2.55649950000000015 1.2174415999999999 1.33905790000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.837877198166012 -63.6164660298068014 21.7852334327420003 -12.7800601216820002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346352768 2481269986346352768 1558824202 2015.5 24.8793890941915983 0.192451726552113012 -3.3795897841055198 0.146815710964360996 0.980185533165524037 0.21754860298312001 4.50559330000000013 -4.46914508761492968 0.420482163460899006 -9.01577920202479 0.260844248829320002 0.130977910000000003 0.262432749999999992 -0.212323960000000006 0.165350749999999991 -0.163205039999999996 0.206797850000000005 0.242147129999999988 0.0436845240000000024 0.0210789439999999988 0.212088059999999995 141 0 141 0 14.8102140000000002 553.963013 1.04910462501919999 19.4534038953098012 31 false 0.640324699999999969 1.46826788617056003 0.0408630173666522031 0.0796579050000000011 16 10 0.379427730000000019 0 16 false 141 2276.47562024551007 4.68903443583154989 485.489014 17.2952079999999988 14 787.912492400096994 9.77298018322461992 80.6215200000000038 18.1101929999999989 16 2268.99046452695984 14.3905854281986993 157.671860000000009 16.3723400000000012 1.34282269999999992 0 1.73785400000000001 0.814985300000000024 0.922868699999999986 \N \N 0 \N \N \N NOT_AVAILABLE 150.825245535653011 -63.6168014133245023 21.7810132597330011 -12.7762284328745004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269780187918464 2481269780187918464 759712671 2015.5 24.8974200714859002 0.431015665409214987 -3.39149261224345011 0.343956778246313988 1.03521122129138998 0.467661429802937012 2.21359100000000009 11.2099874055925 0.942914053917695005 -10.0625097739867009 0.633907876345817023 0.129350080000000006 0.258632499999999987 -0.24474491000000001 0.17142542999999999 -0.0723893800000000032 0.213313269999999999 0.179281319999999994 0.0823840799999999984 0.0262485540000000003 0.184007929999999986 147 0 147 0 3.19907899999999978 202.177002 0.584072270418262041 0.338810509413644989 31 false 0.111973489999999995 1.26644915801200009 0.101813734628524999 0.0444837469999999971 17 10 0.848598359999999996 0 17 false 148 223.818685648291989 1.49493727213867 149.718002 19.8136249999999983 15 78.6963997255996048 10.6471218505169993 7.39133070000000014 20.6115020000000015 16 294.153725039023016 14.1966514211082 20.7199360000000006 18.590485000000001 1.6658579 0 2.02101700000000006 0.797876359999999951 1.22314070000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.873237055358999 -63.6201043631014969 21.7936443247603009 -12.7939464719936993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271468110511488 2481271468110511488 300862494 2015.5 24.8918283046606987 0.0298033426017741999 -3.37283351506001994 0.0239302465218719992 1.68235847525024007 0.0340360791798543991 49.4286799999999999 43.4642588700008972 0.0619667109330269 -3.1765381549525098 0.0540518826259277982 0.14164968 0.393031450000000004 -0.225198129999999996 0.0570909799999999995 -0.108662574999999997 0.104182120000000003 -0.0883785799999999983 0.0119703659999999996 -0.0545210839999999974 0.326988579999999973 142 54 141 1 1.29489480000000001 157.755997 0 0 31 true 159.138869999999997 1.61576188326513992 0.00725790884524649994 0.0796267199999999981 16 10 0.0572691259999999966 0 16 false 140 119156.035416433006 57.5357864160045978 2070.98999 12.9980755000000006 14 65219.7425520662 62.449447490956203 1044.36059999999998 13.3154400000000006 15 78708.4754608621006 81.8045175245255933 962.153140000000008 12.5218659999999993 1.207897 0 0.793574329999999994 0.3173647 0.47620963999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.844294251050002 -63.6054804435410972 21.7954057423111003 -12.7745462074824001 100001 6026.04004 5843.5 6565.33984 0.296000004 0.151999995 0.456099987 0.148000002 0.0649999976 0.225999996 200111 1.17598800000000003 0.990723970000000009 1.25060890000000002 1.64297120000000008 1.57888359999999994 1.70705869999999993 +1635721458409799680 Gaia DR2 2481271261952081536 2481271261952081536 1664435783 2015.5 24.9061211642361009 0.0500594959116801991 -3.37826748200901017 0.0375345459757311026 0.753044773614229945 0.0548328687603990977 13.7334560000000003 9.56582825601232933 0.106406385305977999 0.600072483894225961 0.0760219493773675037 0.0940357450000000039 0.317008100000000015 -0.27371435999999999 0.0730327800000000055 -0.0585819969999999968 0.056079722999999998 -0.116781769999999993 0.118212460000000005 0.0956634499999999971 0.156561900000000004 148 0 147 1 -1.32928200000000007 120.157997 0 0 31 true 9.98890800000000034 1.57950086330428996 0.0114773600088194996 0.0336176399999999972 17 10 0.103630945000000002 0 17 false 147 8313.30429547877975 6.34138604815292961 1310.95996 15.8889309999999995 14 4168.63119323023966 17.086800441127 243.967929999999996 16.301404999999999 13 6003.49714478853002 25.6562447989872986 233.997500000000002 15.3159089999999996 1.22359630000000008 0 0.985495569999999987 0.412473680000000009 0.573021899999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.878561245642004 -63.6044598822046012 21.8069366465879995 -12.7848733450002001 100001 5316.5 5258.97998 5361 0.149299994 0.0275999997 0.314099997 0.0885000005 0.0176999997 0.153999999 200111 0.91682224999999995 0.901663239999999977 0.936985700000000032 0.605015749999999963 0.509439949999999975 0.700591560000000002 +1635721458409799680 Gaia DR2 2481271227592343040 2481271227592343040 112652294 2015.5 24.9195692176567007 0.273886728784909994 -3.37719583107916987 0.203184659564915993 2.17387464043734013 0.296668562398215985 7.32762050000000009 -10.8312048973262005 0.608436650343163965 -31.1775046653288008 0.372692866381688026 0.071857913999999995 0.212215619999999994 -0.292318940000000027 0.14121628 -0.136614679999999988 0.158367680000000011 0.124713980000000002 0.119738310000000001 0.0705631399999999964 0.147843289999999988 159 0 157 2 2.68191500000000005 202.910004 0.888633496726261018 2.58505865493832987 31 false 0.276482369999999977 1.24241769372708011 0.0592874745772756992 0.00137994039999999999 18 10 0.546504560000000028 0 19 false 156 499.193395710474022 1.6841454229902999 296.40799 18.9426939999999995 14 91.1905925466970047 11.1528621087226991 8.17642999999999986 20.4515129999999985 16 686.40522706050001 6.94874648447718979 98.7811599999999999 17.6704700000000017 1.55770460000000011 0 2.78104400000000007 1.50881960000000004 1.27222440000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.904983259293999 -63.5978748291922003 21.8201326458259999 -12.7888440249820992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271566894324224 2481271566894324224 1212100246 2015.5 24.8907226183148005 0.230525122957605993 -3.35485061795793982 0.199201974482154986 1.2361708126878499 0.259508848833540973 4.76350159999999967 15.8437485605749 0.522425566950314946 -49.8450672054177986 0.354742158305580979 0.18105541 0.201674450000000005 -0.195176989999999995 0.218518199999999996 -0.216601399999999999 0.31562707000000001 0.367197359999999973 0.00320125179999999985 -0.0864645500000000011 0.298691749999999978 136 0 136 0 3.15951130000000013 188.235001 0.803216715382573998 2.92511885434293006 31 false 0.438327279999999986 1.5154565814438401 0.0551649432946708998 0.0982810400000000001 16 10 0.482483600000000012 0 16 false 135 748.003299916799961 1.86097037802655008 401.942993 18.5036069999999988 14 294.503010223193996 9.11313205786678004 32.3163339999999977 19.1786630000000002 13 689.672884447463957 8.75101840075843995 78.8105850000000032 17.6653120000000001 1.31573739999999995 0 1.5133513999999999 0.675056459999999969 0.838295000000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.825166153059996 -63.5895979073606981 21.8011760923050986 -12.7574309572363003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271502470249344 2481271502470249344 417655413 2015.5 24.9034374620379992 2.05290844084737989 -3.3575744715481699 1.50844263473005991 \N \N \N \N \N \N \N 0.0840669 \N \N \N \N \N \N \N \N \N 107 0 106 1 45.2929419999999965 3074.38989 11.0130352854296998 182.070469318802992 3 false 0.00773702400000000033 \N \N 0.0694239600000000068 15 9 4.01845300000000005 0 15 true 132 360.161391969336989 4.0659344002833997 88.5802002 19.2971229999999991 13 460.562990234325014 11.1944766041724009 41.1419870000000003 18.6931650000000005 11 949.731865650291979 8.90438549661175927 106.65889 17.3179170000000013 3.91573020000000005 0 1.37524800000000003 -0.603958129999999982 1.97920610000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.85365362101399 -63.5867768685082027 21.8122340421957013 -12.7646573178294993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271395095762048 2481271395095762048 1684136816 2015.5 24.9300099912099995 0.719589149789464977 -3.36602300710111013 0.683014179934951948 0.593055750960949979 0.787114744569586966 0.75345530000000005 -2.17432359709036005 1.72385171414587002 -2.11074425652870001 1.84054879123791992 0.123469784999999999 0.136895080000000002 -0.284745340000000013 0.0747300300000000028 -0.018909734000000001 0.056143110000000003 -0.33454296 0.0587157940000000017 -0.118485615000000002 0.293520630000000005 122 0 122 0 0.183052359999999997 119.146004 0 9.28992634585218961e-16 31 false 0.0415327060000000026 1.44775393845542011 0.208003697985180008 0.0269012130000000002 14 8 1.7897012000000001 0 14 false 123 105.830125218047002 0.98268362292914202 107.695 20.6268419999999999 12 67.3283935964936973 6.97459801700683002 9.6533730000000002 20.7808929999999989 11 89.2537277552102069 8.8137431989884405 10.1266540000000003 19.8853550000000006 1.4795609999999999 0 0.895538330000000049 0.15405083 0.741487499999999966 \N \N 0 \N \N \N NOT_AVAILABLE 150.915762026014988 -63.5833668879917013 21.8343001948941016 -12.7823190343166999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271399391034496 2481271399391034496 1425496068 2015.5 24.9204639244752997 0.527633363438318015 -3.3590660378913002 0.445171080896845983 0.655536012096985976 0.562419799612184024 1.16556360000000003 6.5803942563214699 1.23394320276101999 -7.13839614070537998 1.03571204860755994 0.0821521800000000052 0.139773439999999999 -0.322417940000000014 0.118813370000000001 -0.0719921139999999959 0.142867219999999989 -0.145323129999999995 0.10761751 -0.0511772740000000018 0.197732429999999987 131 0 130 1 -0.811949299999999985 111.975998 0 0 31 false 0.0782315660000000024 1.47309790537294005 0.147873404241906009 -0.00668032049999999974 15 9 1.13159199999999993 0 15 true 128 162.081845671505988 1.20420418303785004 134.597 20.1640300000000003 11 76.6258672864641994 14.0926500754220001 5.43729300000000038 20.6404500000000013 12 153.616603621829 10.2154945080296997 15.0376080000000005 19.2958239999999996 1.42053209999999996 0 1.34462550000000003 0.476419450000000022 0.868206000000000033 \N \N 0 \N \N \N NOT_AVAILABLE 150.889766970307988 -63.5810320702273017 21.827860254331199 -12.7723305895259003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271639909201920 2481271639909201920 570927719 2015.5 24.9301937023950018 2.79220180090791015 -3.3452658643366302 1.88686779571717 \N \N \N \N \N \N \N 0.0089104619999999992 \N \N \N \N \N \N \N \N \N 127 0 127 0 63.4874459999999985 6218.60986 15.6814799437496006 344.80778084658499 3 false 0.00383338700000000017 \N \N -0.014558026 17 9 5.67650129999999997 0 17 false 148 341.463705116683002 3.30397402356244996 103.348999 19.3550049999999985 7 504.716383404283988 20.3001706245761007 24.8626669999999983 18.5937699999999992 5 1133.13322460378004 7.19725607485958019 157.439619999999991 17.1262170000000005 4.79655550000000019 0 1.46755220000000008 -0.761236200000000029 2.2287884 \N \N 0 \N \N \N NOT_AVAILABLE 150.896631736898001 -63.5644352277018001 21.8423470595772997 -12.7631017104055005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635616731520 2481271635616731520 1103228071 2015.5 24.9306764785726003 2.11196928479788992 -3.34543239485127009 1.43092419634799994 \N \N \N \N \N \N \N -0.0130733110000000007 \N \N \N \N \N \N \N \N \N 122 0 121 1 42.1836399999999969 2669.53003 11.3344931476284003 145.179124487840994 3 false 0.00680221940000000011 \N \N -0.0499685439999999967 17 9 4.07496930000000024 0 17 false 147 298.666985684847987 6.56524392856556993 45.4920998 19.5003969999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.897771551289992 -63.5643850216310966 21.8427430308668988 -12.7634346833023997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318674098713856 2481318674098713856 954528136 2015.5 24.8765618836582014 0.945185033425278043 -3.3190197987188701 0.978271676479826047 0.863671909465090981 1.12117066155159995 0.770330399999999971 4.65317411552342008 2.06800110250043012 10.9742562377491009 2.49788145400113004 0.310947660000000015 0.345925240000000023 -0.178637560000000001 0.048762492999999997 0.199732149999999997 0.130242739999999996 -0.173510730000000002 -0.0319191630000000004 -0.265983819999999982 0.345937580000000022 80 0 80 0 1.46139259999999993 93.5849991 1.82270207027903997 0.850648286539415044 31 false 0.0364524540000000022 1.01383098559136009 0.293922225780720026 0.212690039999999997 9 7 2.37579349999999989 0 9 false 80 98.5150940301393945 1.0050738893684299 98.0177994 20.7046090000000014 4 38.5044683920858972 15.3485426356785002 2.50867269999999998 21.3876099999999987 6 120.628757217122995 19.9218126639517017 6.05510950000000037 19.5582920000000016 1.61531819999999993 0 1.82931709999999992 0.683000559999999979 1.14631649999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.762740606628 -63.5629149614252 21.8013012167539983 -12.7189123941315003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318884549457408 2481318884549457408 1665249225 2015.5 24.8762540368413987 0.142187857110028987 -3.30816653257689985 0.112626023836406006 0.674004221652731994 0.152875456461372988 4.40884539999999969 7.84059795515621971 0.32719232991963898 -1.01569332067508999 0.202973233043347995 0.149851650000000003 0.140158769999999988 -0.184305579999999997 0.215068829999999989 -0.110739279999999995 0.294390560000000023 0.229383780000000009 0.014362695 -0.0299857019999999995 0.225123020000000007 113 0 112 1 1.47792999999999997 129.350998 0.358203717503571994 1.42129202877030991 31 false 1.42193900000000006 1.58055236567890001 0.0329248581193768014 0.035818570000000001 13 9 0.297909529999999978 0 14 false 112 1649.2294633736401 2.72578562146309 605.046997 17.6451630000000002 14 736.391644218206011 15.7669440743311995 46.7047799999999995 18.1836170000000017 14 1352.17911669193995 22.3803981274713983 60.4180100000000024 16.9343339999999998 1.2663918999999999 0 1.24928280000000003 0.538454059999999957 0.710828800000000038 \N \N 0 \N \N \N NOT_AVAILABLE 150.751970657388995 -63.553173887756202 21.8051244918711014 -12.7087154135112002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318880254191616 2481318880254191616 379856335 2015.5 24.8776217428056015 0.667778632198747002 -3.30732521480019015 0.630088495507021951 0.178815754044455988 0.754550895241352992 0.236983030000000011 0.269555152004452014 1.59479355654152011 -5.47622610820252032 1.83675682948137009 0.104732240000000004 0.185265469999999988 -0.245955299999999988 0.112980479999999994 -0.120426530000000004 0.101213650000000002 -0.222045240000000005 -0.0176614169999999987 -0.185889560000000009 0.401305299999999976 106 0 104 2 -0.0550943539999999982 97.5651016 0 0 31 false 0.0580459050000000018 1.61239286011776994 0.198691275100607995 0.105725250000000007 12 8 1.80010779999999992 0 12 false 104 126.694233656573005 1.11126334901905 114.009003 20.4314730000000004 7 84.443120591582101 8.36482734303086062 10.0950220000000002 20.5349770000000014 7 81.9720763619829995 12.6472605330995993 6.48140949999999982 19.9777549999999984 1.31351829999999992 0 0.557222369999999967 0.103504180000000001 0.453718200000000016 \N \N 0 \N \N \N NOT_AVAILABLE 150.753972540894011 -63.5518407455992005 21.8067439587271004 -12.7084388938865001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669975807104 2481271669975807104 1039473270 2015.5 24.8988271644223005 0.839683683016328009 -3.34230316908872016 0.77767129987267003 1.31944643179285004 0.940265658286982053 1.40326989999999996 -12.2218608784673002 2.08524591355934996 -21.960950978533301 2.27542890022853017 0.127477380000000001 0.0909607500000000069 -0.175759660000000012 0.166070999999999996 -0.0661025100000000032 0.160617199999999988 -0.154773729999999998 -0.0779698000000000058 -0.251878529999999989 0.377946439999999995 101 0 100 1 3.92276550000000013 159.037003 2.62374498098985987 2.87082707663088987 31 false 0.0366709159999999978 1.08757034395186003 0.251241927357934991 0.0724713359999999973 12 8 2.25590560000000018 0 12 false 101 116.394036907409998 1.08679256414129011 107.098999 20.5235389999999995 9 52.3290942957400986 12.7745225661183994 4.09636400000000034 21.0545299999999997 12 166.272856237874009 5.73797591274138963 28.9776150000000001 19.2098669999999991 1.87811979999999989 0 1.84466170000000007 0.530990599999999979 1.31367110000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.829930495066009 -63.5748193812601983 21.8136421739860005 -12.7487667926460997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318609671550592 2481318609671550592 1603422949 2015.5 24.9027058063274005 2.01566338708378012 -3.33276839912642986 1.47432672344796001 \N \N \N \N \N \N \N 0.088427439999999996 \N \N \N \N \N \N \N \N \N 109 0 106 3 50.7240070000000003 3889.97998 10.7641011531572008 323.642135784663992 3 false 0.0080383859999999998 \N \N 0.0622709239999999983 15 9 3.97033980000000009 0 15 false 128 350.828913246741024 3.74701087238425989 93.6289978 19.3256259999999997 11 502.019382048324985 14.0237608112746006 35.7977699999999999 18.5995859999999986 12 1034.20091292765005 8.16864172517123066 126.606223999999997 17.2254089999999991 4.37883040000000001 0 1.37417790000000006 -0.72603989999999996 2.1002177999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.828901375702003 -63.5645385795438003 21.8209465847862987 -12.7413406856246993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669973543168 2481271669973543168 522158079 2015.5 24.9102374437332017 2.21976534775645007 -3.34001047034554022 1.67966083300760993 \N \N \N \N \N \N \N 0.0862645699999999988 \N \N \N \N \N \N \N \N \N 122 0 121 1 37.594337000000003 2142.97998 12.7515712657462004 207.405077781073999 3 false 0.00565486630000000025 \N \N 0.0658863259999999951 15 9 4.44426770000000015 0 15 false 131 218.931468355930008 2.3709647275800898 92.3386002 19.8375950000000003 15 361.200890972188972 11.1293095100818995 32.4549260000000004 18.9570159999999994 13 711.878064663815053 7.49316050291518021 95.0037159999999972 17.6309049999999985 4.90143780000000007 0 1.32611079999999992 -0.880579000000000001 2.20668979999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.851039171076991 -63.5679826511133967 21.8253621490879013 -12.7508503073099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271704333282560 2481271704333282560 644772123 2015.5 24.9124653699850001 0.670529279862627003 -3.33414150072109994 0.623036120010397987 1.54909296088616011 0.769399900652262048 2.01337810000000017 4.27231988360743031 1.58022898370341003 1.25606125766285004 1.51831075209620003 0.167862879999999992 0.176286699999999991 -0.162104920000000013 0.163559499999999997 -0.188591439999999999 0.235502600000000006 0.0687723699999999993 -0.0574842299999999973 -0.175690409999999991 0.384854799999999997 112 0 112 0 3.28791050000000018 161.785004 1.61636855208897989 1.28940545564197007 31 false 0.0522705539999999969 1.12117115266088008 0.199185059814394994 0.0967233900000000063 13 9 1.60569739999999994 0 13 false 108 133.737542740744999 1.05576754816325002 126.672997 20.3727319999999992 9 30.9498591383479997 10.4574667858863997 2.95959420000000017 21.6247399999999992 11 154.189556179148013 9.78117647271574064 15.7639069999999997 19.2917820000000013 1.38434889999999999 0 2.3329582000000002 1.25200840000000002 1.08094979999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.850076243061011 -63.5617210320096007 21.8297065038161016 -12.7462202652403001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271708628678400 2481271708628678400 511308596 2015.5 24.9206192593724012 4.05677508348223004 -3.33481225769001988 2.2762174312600898 \N \N \N \N \N \N \N -0.351015999999999995 \N \N \N \N \N \N \N \N \N 69 0 69 0 28.6452850000000012 1238.09998 10.5590031969392992 88.7549343965990971 3 false 0.00821789300000000042 \N \N 0.0816956900000000014 9 6 9.40446700000000035 0 9 true 79 246.765292095509011 2.64039648813644012 93.4577026 19.707654999999999 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.867317289824996 -63.5589318251484983 21.8372060947443991 -12.7498542289896992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318708457633664 2481318708457633664 1638429914 2015.5 24.899263282558401 0.837757700743471001 -3.31371140950581999 0.767406630252514987 1.95522967147390991 0.950123106073127999 2.05786999999999987 9.77545803138835012 1.96526788195508995 -11.0615225603556002 2.26950847320087012 0.0909147299999999992 0.208527059999999986 -0.227007359999999991 0.145251600000000008 -0.101530259999999997 0.182074130000000001 -0.111662979999999995 -0.0642947299999999944 -0.259625459999999975 0.379200580000000009 105 0 105 0 2.12261100000000003 132.317001 1.71808471338637991 0.906478797916328016 31 false 0.0368899219999999986 1.80892914820684991 0.245080542508606003 0.101728869999999999 12 8 2.20680759999999987 0 12 false 104 101.442588284576004 1.13842965449987998 89.1074982 20.6728149999999999 5 39.3152371135309977 13.4158636596565994 2.93050360000000021 21.3649859999999983 7 141.693507398588991 10.2289836570726003 13.8521590000000003 19.3835450000000016 1.78434669999999995 0 1.98144150000000008 0.692171100000000039 1.28927039999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.804043828320005 -63.5486499578954991 21.8248998558829008 -12.7223641018149003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319292570930432 2481319292570930432 886977732 2015.5 24.8925310088897014 0.284770618611907 -3.29897556016873983 0.219761737460525991 0.834526027612143007 0.319939253989775019 2.60838899999999985 4.95584675905150984 0.574994222998528981 -15.0551193217561998 0.466745942204363995 -0.0265151129999999999 0.383022460000000009 -0.278273300000000001 0.139792109999999997 -0.249721069999999989 0.24448895000000001 0.0553067620000000024 -0.0114570379999999993 -0.090527880000000005 0.264724640000000011 115 0 113 2 -0.126275749999999992 105.497002 0 0 31 false 0.376962779999999997 1.29588098356029002 0.0703788317902209054 0.0187514550000000002 13 9 0.537714200000000031 0 13 false 111 474.322874043010017 1.58550643373555999 299.161987 18.9981800000000014 12 207.707524606080995 29.6480412798946986 7.00577550000000038 19.5577579999999998 13 465.774614556696974 25.1912432540745996 18.4895439999999986 18.0914800000000007 1.41988120000000007 0 1.46627810000000003 0.559577940000000051 0.906700130000000049 \N \N 0 \N \N \N NOT_AVAILABLE 150.776550809469001 -63.5380533906391989 21.824086039636299 -12.7061873349429995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319361290410752 2481319361290410752 1130570689 2015.5 24.8939192278039982 0.156171645670520998 -3.2852566889821202 0.117042540409813003 0.256348976434636 0.17028334529977901 1.50542599999999993 4.27359469522805036 0.322266550855241973 -2.80641558474074992 0.250821137820336992 -0.049729317000000002 0.355086950000000012 -0.280800969999999983 0.109820710000000002 -0.202166719999999994 0.17081977000000001 0.0529035549999999979 0.0288790839999999993 -0.0515193450000000011 0.143605840000000012 103 0 101 2 1.39481739999999999 115.896004 0.281372346729388989 0.798419100215651989 31 true 1.36158470000000009 1.59978795781023009 0.0370652615760296983 -0.0058666415999999999 12 9 0.293801670000000015 0 12 false 101 1465.45975098621989 3.03022608007582983 483.614014 17.7734319999999997 9 745.268385146943956 16.2463611666556993 45.8729439999999968 18.1706070000000004 10 1072.08336949274008 9.7949325885384404 109.452860000000001 17.1863479999999988 1.240124 0 0.984258650000000013 0.397174839999999973 0.587083800000000045 \N \N 0 \N \N \N NOT_AVAILABLE 150.766563968845986 -63.5250029058883001 21.8306074338338014 -12.6939539719609993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319292570932608 2481319292570932608 593428409 2015.5 24.9005079879918014 0.539243038048246026 -3.29027517596130981 0.394554145532011014 2.68576599210644007 0.591706492252791039 4.5390170000000003 9.51303900489739007 1.10305815892379999 1.95628344554168998 0.694732632652231952 -0.0470500630000000031 0.358055599999999974 -0.265133320000000006 0.140379890000000007 -0.254546879999999975 0.227517599999999987 0.303515550000000023 0.0161156149999999998 -0.0317165030000000001 0.138591199999999998 115 0 115 0 7.46785500000000013 260.917999 2.03589012715361983 7.02438196908274026 31 false 0.109153819999999999 1.49279932350201006 0.118721479147290004 -0.0267459710000000003 13 9 0.991274100000000047 0 13 false 114 321.645116298116022 2.36207369886946994 136.171005 19.4199240000000017 12 94.9501525181530042 11.6947964432625007 8.11900900000000014 20.4076479999999982 11 481.358084508401021 16.4941151651042013 29.1836260000000003 18.0557499999999997 1.79175189999999995 0 2.35189819999999994 0.987724299999999999 1.36417389999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.784666867752009 -63.5268268958929028 21.8349694753406993 -12.7010494679431005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268680678620416 2481268680678620416 460917855 2015.5 24.9400460470201004 1.25650954730544995 -3.42444584207306013 0.883204680537100995 1.61800949975059005 1.04870227884788991 1.54286830000000008 1.34450632245639001 3.33811693829282996 -15.9372536353918992 2.26284132848079 -0.252762649999999978 -0.242209750000000001 -0.740757800000000022 0.385404000000000024 0.280124719999999994 0.411367539999999976 -0.386308280000000004 0.496491520000000019 -0.296851199999999982 -0.305768969999999973 106 0 105 1 1.24468299999999998 117.910004 0.931365780147373035 0.239398460469588986 31 false 0.0324866060000000012 1.31675666171466998 0.272669355944445024 0.00713243749999999989 12 8 3.22960970000000014 0 12 false 103 101.663093616148998 1.19561378749331992 85.0299988 20.670458 6 40.2225758556344033 14.6691017162448993 2.74199320000000002 21.3402139999999996 9 136.875764950567998 9.85155038776841963 13.8938299999999995 19.4211039999999997 1.74201209999999995 0 1.91910929999999991 0.66975594000000005 1.24935339999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.991278330773014 -63.632221641388 21.821682873980901 -12.8403037526998993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270364303467648 2481270364303467648 1365581430 2015.5 24.9318863164822986 0.269672214009007982 -3.40608315781708981 0.197568247003197001 -0.0203225301483665986 0.29166330249410799 -0.0696780500000000053 3.67544155703757003 0.603927560880029968 -12.6691544022590001 0.381912530893181001 0.042746621999999998 0.204249249999999993 -0.299782570000000026 0.120646970000000006 -0.159268500000000007 0.14261277 0.0636610900000000035 0.103400469999999994 0.0461483859999999996 0.144875530000000002 167 0 167 0 3.37164000000000019 229.740997 0.821977585986550019 2.04663910293212004 31 false 0.267776669999999994 1.62252242415556003 0.0588363748853200988 -0.0232840630000000007 19 10 0.542557540000000005 0 19 false 166 499.246379865366976 1.61949005651648004 308.273987 18.9425799999999995 17 215.238407501989997 10.1982445663121997 21.105436000000001 19.519089000000001 17 434.014053645175977 11.4709563490840996 37.8359069999999988 18.1681610000000013 1.30046499999999998 0 1.3509274 0.576509500000000008 0.774417899999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.957305519431998 -63.6189639167627021 21.8208885895256017 -12.8202305538959997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271811707893632 2481271811707893632 430243583 2015.5 24.9540692315745005 1.53061960912027994 -3.3376911605902202 0.96965454212019897 \N \N \N \N \N \N \N -0.127719570000000004 \N \N \N \N \N \N \N \N \N 126 0 126 0 25.7344970000000011 1122.20996 7.65615226715700015 63.6914442159137977 3 false 0.0146166349999999994 \N \N -0.0796450100000000022 15 8 2.99372030000000011 0 15 false 129 282.34941214836698 2.82389632241870014 99.9858017 19.5613980000000005 10 378.210141669984012 10.8471024917582994 34.8673900000000003 18.9070549999999997 10 662.246407861803959 14.9345495623832001 44.3432460000000006 17.7093719999999983 3.68499640000000017 0 1.19768330000000001 -0.654342650000000026 1.85202599999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.938130453534995 -63.5475841707998015 21.8679255505984003 -12.7648785754704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270398663208576 2481270398663208576 456381082 2015.5 24.940565063212901 0.384872137954786975 -3.39632506451782001 0.297460934678889011 0.527378456744794 0.416802081559716986 1.26529699999999989 3.56364925339242999 0.872780781213195023 -2.81158704114458002 0.565995267972643989 0.0864997660000000057 0.179084379999999987 -0.319674669999999994 0.145982269999999997 -0.143824380000000002 0.183630529999999986 0.115465230000000002 0.123375170000000006 0.0195239279999999994 0.177385209999999988 160 0 159 1 1.12462839999999997 173.869003 0 0 31 false 0.134300520000000007 1.63238779433570991 0.0885156459278741981 -0.00685270400000000026 19 10 0.787247699999999995 0 19 false 161 264.395039023004017 1.4916049396865001 177.255005 19.6327320000000007 15 189.180901334113997 14.7811304277744995 12.7988119999999999 19.6591950000000004 14 159.759563520247013 8.02450619966480083 19.9089579999999984 19.2532519999999998 1.31976939999999998 0 0.405942919999999985 0.0264625549999999987 0.379480360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.965806387791986 -63.6064738438424015 21.8328450888128991 -12.8143693581878999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267271927009280 2481267271927009280 1031518137 2015.5 24.9911412868477001 1.67258894244385004 -3.41948670257185006 1.03288647918789001 \N \N \N \N \N \N \N -0.195582420000000007 \N \N \N \N \N \N \N \N \N 76 0 76 0 0.768430100000000005 79.8331985 0 0 3 false 0.0420099199999999992 \N \N 0.0922081899999999954 9 6 4.32843399999999967 0 9 false 76 106.955873408288994 1.27822758610844001 83.6751022 20.615355000000001 6 65.7998494140192065 25.3373195571621004 2.59695389999999993 20.8058259999999997 5 95.4632464640799014 20.758545913803399 4.59874440000000018 19.8123299999999993 1.50775349999999997 0 0.993495939999999966 0.190471649999999992 0.803024300000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.090759090223003 -63.606296016284702 21.8721681025793018 -12.8545611268343993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267168847794816 2481267168847794816 160511904 2015.5 24.9784727484790992 0.169696266530431988 -3.41926181909129001 0.120563008240719 2.59395674707716006 0.178220112045104989 14.5547920000000008 20.9299623615249004 0.381297030213157973 3.95820838106951989 0.232690453683900011 0.00774321299999999966 0.171138719999999994 -0.368550239999999973 0.131993620000000006 -0.139355079999999992 0.153181960000000006 0.0106751229999999999 0.157015189999999999 0.0597907339999999982 0.11362891 157 0 156 1 1.51427010000000006 178.128006 0.221230435721692986 0.311207287883869976 31 false 0.770900299999999983 1.86964204476476992 0.0379090938933430988 -0.0482662300000000002 18 9 0.34628819999999999 0 18 false 156 951.875554813659051 2.28484764293150011 416.604004 18.2419149999999988 15 772.510974369699966 8.47761905022820983 91.123580000000004 18.1316260000000007 15 368.626835732328004 11.0833040091167998 33.2596500000000006 18.3454529999999991 1.19883080000000009 0 -0.213827130000000004 -0.110288620000000004 -0.10353851 \N \N 0 \N \N \N NOT_AVAILABLE 151.064734675642995 -63.6114105294874008 21.8602020491636004 -12.8496754764561008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267306286754176 2481267306286754176 43365274 2015.5 25.0085169163759993 0.347057944960614984 -3.40279519383113982 0.273489029320066024 -0.254231403527228006 0.372804474720297985 -0.681942999999999966 -0.786287860656339044 0.792510326729999992 -2.7153644499655698 0.491316879192240985 0.0784845500000000001 0.192824469999999998 -0.285231300000000021 0.149878549999999999 -0.0691483700000000007 0.138570560000000009 0.240928279999999995 0.121431336000000001 0.084734894000000005 0.0666348560000000062 151 0 150 1 0.867137000000000047 159.561996 0.0579133665591428023 0.00467392742766475997 31 false 0.16597793999999999 1.58374989612058004 0.0863612220134751946 -0.0688795299999999944 17 9 0.706813040000000004 0 17 false 150 304.394045997031014 1.50859327272832 201.772995 19.479773999999999 15 140.826369462471007 10.5093535937668996 13.4000979999999998 19.9796799999999983 14 243.994558412916007 7.31535757289857003 33.3537450000000035 18.7934699999999992 1.26421960000000011 0 1.18620869999999989 0.499904630000000016 0.686304099999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.110341759758995 -63.5838547706541988 21.8950281324922997 -12.8454662479707995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270536102166144 2481270536102166144 1196085124 2015.5 24.9709437475927984 2.29253154783233004 -3.38098675515906022 1.24799446513970991 \N \N \N \N \N \N \N -0.559940499999999952 \N \N \N \N \N \N \N \N \N 67 0 67 0 -2.65097929999999993 36.4473991 0 0 3 false 0.0303648730000000006 \N \N -0.109546099999999993 8 6 6.27792800000000017 0 8 false 66 89.4429869807919005 1.00474580440437999 89.0205002 20.8094999999999999 7 68.2819868946976953 13.5478946698575999 5.04004429999999992 20.7656230000000015 7 68.6403091720096938 9.77105050816687992 7.02486470000000018 20.1704709999999992 1.53083320000000001 0 0.595151899999999956 -0.0438766479999999973 0.639028550000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.013245695134003 -63.5798323856929031 21.8675575340638986 -12.8113344818419002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271433750772352 2481271433750772352 948314090 2015.5 24.9341630275398991 3.53572935481115014 -3.34928421747128979 3.55710767243773995 \N \N \N \N \N \N \N 0.355642899999999984 \N \N \N \N \N \N \N \N \N 63 0 63 0 22.5710559999999987 795.078003 15.0823054535942003 67.2297720174012028 3 false 0.00403161100000000005 \N \N 0.285578600000000016 8 6 10.0056879999999992 0 9 true 72 132.204961950441003 1.96777813118948997 67.1848984 20.3852459999999986 7 193.781227574674006 11.7550170964833995 16.4849800000000002 19.633108 6 402.306206295656978 19.7847501840373994 20.3341560000000001 18.2505279999999992 4.50881299999999996 0 1.38257980000000003 -0.752138140000000011 2.13471799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.908491637363994 -63.5664285582584014 21.8445980929000996 -12.7683006762653992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635613958528 2481271635613958528 1116791361 2015.5 24.9320630016986016 4.17292862093545036 -3.3453519705108401 2.5100336636420999 \N \N \N \N \N \N \N -0.459999979999999975 \N \N \N \N \N \N \N \N \N 79 0 79 0 33.1023830000000032 1643.66003 12.6678509616503003 124.230195261966003 3 false 0.00579784070000000009 \N \N -0.112385239999999997 11 7 10.9059930000000005 0 13 true 99 247.670836597402001 2.95201658367630015 83.8989029 19.703678 11 348.670159490633012 11.1876174542320008 31.1657200000000003 18.9953520000000005 11 769.31061005054903 20.038878453282301 38.390900000000002 17.5466650000000008 4.51397850000000034 0 1.44868660000000005 -0.708326340000000054 2.15701300000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.900520349420987 -63.563733264155303 21.8440921246059006 -12.7638718913306999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271742988417792 2481271742988417792 1003672529 2015.5 24.9628532836943009 0.0672508860460959979 -3.35423246595069013 0.0483428551844814966 0.682113720086107045 0.0692017570787812064 9.85688400000000087 9.9828008779685895 0.148623584232461997 -0.626597493917571025 0.103061007965410997 -0.0411339179999999985 0.190386699999999992 -0.389855620000000014 0.119829424000000004 -0.159266440000000009 0.121707190000000007 -0.194216849999999996 0.159266400000000002 0.061040709999999998 0.129211049999999994 149 0 148 1 1.91639289999999995 177.149002 0 0 31 true 5.57145699999999966 1.58017319684842006 0.0142797705981393998 -0.0465793129999999972 17 9 0.14199908 0 17 false 147 4874.05894916799025 4.19768848487024027 1161.13 16.4686400000000006 15 2259.16329888858991 15.5662911688074992 145.131760000000014 16.9665180000000007 15 3764.8598440125902 15.6306025738520997 240.86466999999999 15.8225479999999994 1.23593569999999997 0 1.1439705 0.49787903 0.646091459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.971566267830013 -63.5589316234600972 21.8700079154923017 -12.7834900575573993 100001 4974.33008 4953.5 5041.83008 0.409000009 0.300000012 0.486999989 0.202000007 0.155300006 0.238999993 200111 0.912593100000000046 0.888322350000000038 0.920285699999999984 0.459397580000000028 0.360887400000000025 0.557907759999999975 +1635721458409799680 Gaia DR2 2481271742988417408 2481271742988417408 1092251955 2015.5 24.9660681526891999 0.0431147374036614031 -3.35135769190730004 0.0310816879471397002 0.557031702301789999 0.0437330132526072973 12.7370990000000006 -1.48696128864205002 0.0954603970773733046 -7.24224786006448973 0.0664183867251511018 -0.0548211600000000007 0.215715199999999996 -0.367245470000000018 0.105294639999999995 -0.118185650000000003 0.0901465040000000023 -0.165732230000000008 0.159692240000000013 0.0891737699999999994 0.0483508399999999991 140 0 140 0 0.851990200000000031 148.776993 0 0 31 true 15.7155930000000001 1.60884715765880992 0.0100441863579835006 -0.0599028649999999996 16 9 0.0961533900000000052 0 17 false 140 12864.4662528140998 7.18883087461145021 1789.51001 15.4148859999999992 14 6894.53656960085027 22.2128679006302008 310.384799999999984 15.7551249999999996 13 8699.41108260291003 24.9167382800633987 349.139250000000004 14.9131959999999992 1.21217219999999992 0 0.841929440000000029 0.340238570000000018 0.501690859999999961 \N \N 0 \N \N \N NOT_AVAILABLE 150.975404161368999 -63.5549764339681005 21.8741556258377017 -12.7820057961877005 100001 5785.5 5760 5815 0.455000013 0.296000004 0.598999977 0.224999994 0.150399998 0.294 200111 1.27330530000000008 1.2604188999999999 1.28460430000000003 1.63652789999999992 1.34813950000000005 1.92491630000000002 +1635721458409799680 Gaia DR2 2481271742988417280 2481271742988417280 842677542 2015.5 24.9675474525012007 0.0428350482533403007 -3.3509323976691201 0.0295035930695112004 1.06974215695786001 0.0423353445275677018 25.2683 11.0457185299848994 0.0993120478103777932 10.2741830214888008 0.0642716344835927988 -0.076879740000000002 0.114510009999999995 -0.453657120000000025 0.0981643650000000034 -0.152969300000000002 0.0734870999999999996 -0.225029699999999999 0.229283259999999989 0.109856720000000005 0.0360574459999999999 149 0 144 5 -1.66026399999999996 112.535004 0 0 31 true 17.5377539999999996 1.58872796497145008 0.00945702531821055944 -0.074921354999999995 17 9 0.101392609999999994 0 17 false 143 14249.3222025897994 7.99883490900737026 1781.42004 15.3038799999999995 15 7394.00068800774989 23.9833424042742998 308.297329999999988 15.6791900000000002 13 10006.7038325100002 35.7621848471332981 279.812439999999981 14.7611919999999994 1.22116019999999992 0 0.917997359999999984 0.375309940000000009 0.542687400000000042 \N \N 0 \N \N \N NOT_AVAILABLE 150.97801452553901 -63.5539713074453019 21.8757238515686012 -12.7821567091899997 100001 5439.37988 5377.7998 5641.0498 0.0874999985 0.0250000004 0.210299999 0.0377000012 0.00970000029 0.0860999972 200111 0.801073849999999976 0.744821199999999961 0.819525799999999971 0.506102500000000011 0.460891280000000014 0.551313759999999986 +1635721458409799680 Gaia DR2 2481271773055107840 2481271773055107840 802438498 2015.5 24.9677602112633998 1.94769168556405003 -3.34574097276126015 1.13717890915573006 \N \N \N \N \N \N \N -0.547463060000000001 \N \N \N \N \N \N \N \N \N 65 0 64 1 0.788849499999999981 67.260498 1.19570539903819006 0.310228462673858008 3 false 0.0402680300000000033 \N \N -0.0605250800000000019 8 6 4.9168390000000004 0 9 false 66 110.290366853758002 1.54977355275622997 71.1654968 20.5820219999999985 6 53.9409024344555021 12.5710116782029999 4.29089600000000004 21.0215929999999993 8 118.507635332486004 11.9053119885065009 9.95418199999999942 19.5775550000000003 1.56358660000000005 0 1.44403839999999994 0.439571380000000012 1.004467 \N \N 0 \N \N \N NOT_AVAILABLE 150.973562041435002 -63.5491688795815008 21.8778945655821992 -12.7774117571538994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271773052756608 2481271773052756608 769119827 2015.5 24.9697798709729 0.431144884502226988 -3.34585983607477022 0.300430391501427974 0.673968114918522043 0.454605524451644982 1.48253389999999996 -0.451579274720932011 1.00204177150170004 -9.56996536038436929 0.559009150005960964 0.0245861580000000003 0.104336849999999995 -0.246766879999999994 0.135645550000000004 -0.133781729999999988 0.174133850000000007 0.118249060000000003 0.0489529299999999987 0.0470100400000000029 0.0922764400000000012 149 0 146 3 3.92938799999999988 216.925003 1.53577072469651998 3.82795877320325006 31 false 0.122759660000000007 1.51275371376843992 0.0935947557267066965 -0.0997736399999999968 17 9 0.890009399999999951 0 17 false 144 310.699966011875006 1.47260819747570992 210.985992 19.4575120000000013 14 138.786804657557013 9.34131159725606075 14.8573140000000006 19.9955180000000006 14 286.766132645311018 11.5359583732592004 24.8584579999999988 18.6181009999999993 1.36965880000000007 0 1.3774166000000001 0.538005799999999978 0.839410800000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.97778350362799 -63.548431724048001 21.8797703948686006 -12.7782677067734003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270329946112512 2481270329946112512 1508378196 2015.5 24.9866206052551014 0.666943017993232967 -3.38959617127905988 0.615169933340807051 1.12739888754341999 0.733353792764319001 1.5373192 -7.2254840425744602 1.51900368306272004 -5.59074239781161975 1.64720736622923991 0.0766207799999999994 0.227750809999999998 -0.277769770000000027 0.0555206840000000007 -0.0752307549999999964 0.0229150540000000007 -0.362564900000000023 0.0585821399999999978 -0.0639731600000000011 0.281435849999999987 126 0 126 0 -0.727293850000000019 109.410004 0 0 31 false 0.0481584499999999985 1.04246429219203995 0.185232072289420013 -0.00444245429999999986 15 8 1.58852909999999992 0 15 false 126 119.186589739709007 0.964623875593412006 123.557999 20.4977969999999985 13 30.0250676775767005 7.08907192752718007 4.23540160000000032 21.6576790000000017 11 170.673597013624999 13.0034236607612996 13.1252809999999993 19.1815029999999993 1.68390309999999999 0 2.47617529999999997 1.15988160000000007 1.3162936999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.053291886513989 -63.5810739031068977 21.8792043615978002 -12.8251206038949004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270329943870976 2481270329943870976 408274863 2015.5 24.9911096256036984 0.848505645571070999 -3.38472941936823002 0.82083760121939997 -0.48357958879691898 0.934481320734513954 -0.517484500000000014 4.73381725014137 1.99863606434975005 -6.8983869478812796 2.31928421027815013 0.122201679999999993 0.194865470000000013 -0.220417749999999996 0.0676002950000000047 -0.0610077750000000002 0.0585707000000000033 -0.210663700000000009 0.0202001950000000007 -0.0953560299999999944 0.272055199999999997 103 0 102 1 1.47613280000000002 118.283997 1.0658048117821799 0.297472781113064022 31 false 0.0322665420000000022 1.40699731907564995 0.234969963760052997 0.0349404199999999998 13 8 2.17245359999999987 0 13 false 101 95.5395995542947958 1.11680726383293005 85.5470963 20.7379069999999999 10 73.8266910332157948 10.6114485054536996 6.95726780000000034 20.6808550000000011 10 74.172535781573103 7.11789711350833976 10.4205679999999994 20.0863109999999985 1.5490877999999999 0 0.594543460000000024 -0.0570526120000000025 0.651596069999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.057833627894013 -63.5747745497292982 21.8853200275706001 -12.8222557565666992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267718603617024 2481267718603617024 973461824 2015.5 25.0214397926467988 0.299950932076734011 -3.39042389411314993 0.231026823137362003 0.146140713142258988 0.318033766128998974 0.459513200000000011 9.61687671064814964 0.66744726683710498 -10.1494185232480003 0.407151196982916019 0.108766294999999999 0.20498203000000001 -0.318847629999999993 0.178799929999999996 -0.0341922119999999996 0.207912189999999997 0.147504500000000011 0.165511059999999988 0.0829473899999999958 0.140287440000000013 143 0 142 1 1.39595150000000001 160.688004 0.618562653084898995 0.923962007423601017 31 false 0.251770380000000016 1.5603833109382601 0.0773661042458820003 -0.0146928879999999994 16 9 0.601560059999999952 0 16 false 139 421.934725017790015 1.66109391286389996 254.009995 19.1252519999999997 15 231.107125664201988 7.61916821682229006 30.3323299999999989 19.4418539999999993 15 284.539867192203019 10.9999249947475004 25.8674369999999989 18.6265619999999998 1.22210130000000006 0 0.815292360000000049 0.316602700000000015 0.498689649999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.124927533712992 -63.5672014996431969 21.9120129571226983 -12.8387408534432996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270742260599296 2481270742260599296 905106508 2015.5 25.0092768202551987 0.181039385980624995 -3.37179499745601996 0.17640027556766999 1.07859891481254011 0.212153174548951995 5.08405729999999956 -4.63637396149735004 0.400666386794938989 -6.09287544286407012 0.285380455163808 0.105911660000000005 0.280929030000000024 -0.18030038000000001 0.246119169999999998 -0.409854050000000025 0.497375940000000016 0.564361800000000025 -0.140047150000000009 -0.237573470000000009 0.430429070000000025 122 0 121 1 -0.365393550000000011 109.878998 0 0 31 false 0.936830999999999969 1.34469143673220004 0.0442557207681249024 0.0108705969999999992 14 8 0.396254659999999981 0 14 false 119 1063.47615259848999 2.46747514050165018 430.997986 18.1215459999999986 12 333.283051953406016 13.4023526079923005 24.8675040000000003 19.0443549999999995 12 1117.76513294299002 11.4282184428502998 97.807469999999995 17.1410429999999998 1.3644388999999999 0 1.90331270000000008 0.922809600000000008 0.980503099999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.082579658147012 -63.5554138203516032 21.9075057684504984 -12.8169430151077997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270776620337920 2481270776620337920 700768169 2015.5 25.0200142144548003 8.03869834619485957 -3.36905331287917997 2.56224094423289017 \N \N \N \N \N \N \N 0.805953499999999989 \N \N \N \N \N \N \N \N \N 77 0 77 0 1.31689699999999998 88.2214966 0.703062033579093026 0.0950849129098412932 3 false 0.0273869620000000008 \N \N -0.0588377939999999988 9 6 32.3473550000000003 0 9 false 78 92.1118004013425065 1.27612947343905003 72.180603 20.7775779999999983 7 70.0664829573926937 15.6639435313808999 4.47310639999999982 20.7376119999999986 7 54.3287588565644981 7.57994943946864996 7.16743039999999976 20.4243449999999989 1.35048100000000004 0 0.313266749999999983 -0.039966583 0.353233340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.101822064613003 -63.5484166981758989 21.9187592341490998 -12.8183580562954003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270914059292416 2481270914059292416 278635118 2015.5 24.9830804702104992 1.06184771080829998 -3.36374305376773997 0.467107803689233991 0.914565760261298988 0.783835911311271949 1.16678210000000004 -4.6278431334940402 2.81950781641493009 5.93793853208381961 0.810593499658667005 -0.276187100000000019 -0.374456730000000015 -0.76954705000000001 0.282440840000000026 0.0949307000000000067 0.39950724999999998 0.0722409340000000066 0.486248520000000017 -0.0939425900000000064 -0.167570109999999994 138 0 134 4 1.54313220000000006 154.654007 1.76636689607905994 2.44456640509549006 31 false 0.0596350400000000003 1.4763468193370699 0.143379944214159005 -0.136799250000000011 16 8 2.63539389999999996 0 16 false 132 169.526306676810009 1.45500631338363995 116.512001 20.1152729999999984 10 61.942666773080802 9.5482692854391793 6.48731900000000028 20.8714140000000015 11 207.010369464338993 5.83829169652693025 35.4573499999999981 18.97194 1.5864973 0 1.89947510000000008 0.756141660000000049 1.14333339999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.021691317527001 -63.5590958578574998 21.8856405200844009 -12.7997930344830007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270742260600064 2481270742260600064 989898870 2015.5 24.9997304247663017 0.362496504735547009 -3.36515869581646987 0.239106765071078003 -0.0357616750159285013 0.384402091658588019 -0.0930319500000000021 -0.247900976274097989 0.708934385324930028 -1.90337067645701996 0.420977760545322988 -0.0617009099999999977 0.377064400000000022 -0.31831777 0.168706400000000006 -0.19725203999999999 0.189525830000000006 0.0893977360000000054 0.109472274999999994 0.10127912 0.124994464 141 0 138 3 2.46937780000000018 176.669998 1.04321987248768 2.60897018855694007 31 false 0.222116229999999998 1.71777407594590992 0.0787378217122935015 -0.0799487100000000062 16 9 0.640524149999999959 0 16 false 139 459.004231320291979 1.67167313566699005 274.578003 19.0338250000000002 15 244.926496414810003 14.7565417812015003 16.5978239999999992 19.3787999999999982 13 345.064597886060994 11.2942728572761997 30.5521759999999993 18.4171699999999987 1.28537180000000006 0 0.961629869999999998 0.344974520000000007 0.616655350000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.056898966359995 -63.5533993142774989 21.9009410412329011 -12.8072536848096998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270845339816192 2481270845339816192 1291352421 2015.5 25.0109904738480004 0.641462370165781004 -3.36276823641974998 0.62782534793953404 0.561689044396564974 0.690809707099570014 0.813087939999999953 -1.04168016037540001 1.53144553142590989 -5.19095775179575991 1.49240023704714009 0.215566919999999995 0.157336940000000008 -0.184141040000000006 0.0439085899999999973 0.0428021849999999995 0.047376322999999998 -0.291556539999999975 0.0279611680000000015 -0.0386023450000000032 0.277885349999999975 109 0 108 1 -0.964797800000000039 89.1569977 0 0 31 false 0.0545468259999999996 1.55418023463299004 0.193814995778961996 -0.0140081170000000005 13 9 1.503112 0 13 false 109 133.89332292011099 1.01741335218713003 131.602005 20.3714680000000001 11 78.3839364582874936 10.406699140213 7.53206539999999958 20.6158199999999994 10 93.3821966498534977 9.60230528098207969 9.72497700000000087 19.8362599999999993 1.28285809999999989 0 0.779560099999999978 0.244352340000000001 0.535207749999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.077540513879995 -63.5465047594203014 21.912558134188501 -12.8091881495259994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267344941908224 2481267344941908224 1515021112 2015.5 25.0441399238783013 0.23229491553107201 -3.42193610514818003 0.173794127770410006 3.7130716668053898 0.258791941313272988 14.3477099999999993 44.211899206919 0.495862693312572989 -18.0271256670124984 0.286051975719425977 0.157427199999999989 0.285164499999999987 -0.292058529999999983 0.205524060000000008 0.0357817900000000008 0.2072436 0.234693349999999995 0.174375560000000013 0.131239309999999998 0.13193648999999999 151 0 150 1 0.265678440000000016 148.891998 0 0 31 false 0.430813369999999973 1.24156455152140999 0.0568557032362256021 -0.00691565730000000007 17 9 0.446910829999999981 0 18 false 151 585.704317266073986 1.59559360983353993 367.075989 18.7691690000000015 13 112.061049298794998 14.9415993182023001 7.49993659999999984 20.2277500000000003 13 790.916249006667954 10.3436029319582001 76.4642900000000054 17.5165940000000013 1.54169479999999992 0 2.71115679999999992 1.45858189999999999 1.25257489999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.200963777408987 -63.5862177283800989 21.9216601316003015 -12.8763976857837008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267344941908096 2481267344941908096 1622443227 2015.5 25.0448486761329008 0.284616400690169025 -3.41902492755854981 0.208707521429248005 -2.2030735476853498 0.315761922022138986 -6.97700829999999961 12.2407594960842001 0.61771049212282203 -2.76360655062243987 0.346051100506240994 0.134876670000000004 0.248096559999999994 -0.317431999999999992 0.193957240000000003 0.0027392362 0.196124610000000005 0.211761670000000013 0.188995020000000014 0.13092434 0.127569629999999989 151 0 150 1 5.33638950000000012 255.209 1.06352977643150992 4.34122480248650966 31 false 0.288661959999999995 1.53396543013888009 0.0673650799601331063 -0.00335752900000000016 17 9 0.556540130000000022 0 17 false 150 629.232852546675986 2.83465735810551989 221.977997 18.6913379999999982 14 249.667358625826012 9.27393855386898913 26.9213939999999994 19.3579849999999993 14 619.915383709352 8.23895770195194999 75.2419699999999949 17.781089999999999 1.38197290000000006 0 1.57689480000000004 0.666646960000000011 0.910247800000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.199642214718011 -63.5832800699840988 21.9234383946764986 -12.8739542684610999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267409365965056 2481267409365965056 1378736416 2015.5 25.0361352787995983 0.309590122553146996 -3.41517702594273009 0.238574292272747013 0.698471981274605969 0.346702880667379976 2.01461269999999981 -2.5427187739238799 0.658432811092110049 -2.20762483255668984 0.396469249275779978 0.181765989999999988 0.29260427 -0.275078920000000005 0.201815749999999988 0.0463672129999999974 0.212125399999999992 0.211497810000000008 0.167288120000000012 0.117293389999999997 0.15352091000000001 150 0 149 1 0.609627249999999954 153.897995 0 0 31 false 0.234789419999999999 1.74919901496241992 0.077569716066719599 -0.00769343599999999968 17 9 0.592615699999999967 0 17 false 147 386.963892768305982 1.37698128811066001 281.02301 19.2191890000000001 17 175.032138910122001 8.63318536239579082 20.2743399999999987 19.7435930000000006 16 305.804005708563977 9.07823984930745986 33.6853869999999986 18.5483110000000018 1.2425866000000001 0 1.19528199999999996 0.524404500000000051 0.670877460000000037 \N \N 0 \N \N \N NOT_AVAILABLE 151.178268007738012 -63.5834630971107018 21.9166075080336995 -12.8671635331392 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267546805062144 2481267546805062144 926569906 2015.5 25.0623241134393986 2.60602947626449 -3.39622124838893003 2.03363823154211998 \N \N \N \N \N \N \N -0.396664100000000019 \N \N \N \N \N \N \N \N \N 56 0 56 0 -0.671661559999999991 43.9067993 0 7.03542143992788015e-16 3 false 0.0283106750000000004 \N \N 0.115713015000000002 7 6 8.15549399999999913 0 7 false 58 88.7108348350844977 1.40925414499775004 62.9487991 20.8184240000000003 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.213530051616004 -63.5552424807297029 21.9487110142421997 -12.8592136451326002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267478085444864 2481267478085444864 316512409 2015.5 25.0721790959092985 0.174426897362189998 -3.40643933948040001 0.136282663067287008 0.075523131261920104 0.200858495148550004 0.376001699999999994 0.635962750650927999 0.368931410297750006 -4.07855668152509043 0.236838316709010011 0.220394759999999995 0.321640519999999985 -0.196662100000000006 0.151140419999999998 -0.0176925060000000002 0.119088285000000002 0.164321329999999988 0.107508279999999998 0.135496869999999991 0.187008430000000003 160 0 157 3 1.42651630000000007 177.513 0.358124492626258006 0.780686742369971043 31 false 0.666956100000000052 1.68894023674545002 0.0462418673858433979 0.0228709409999999988 18 10 0.332064540000000019 0 18 false 156 897.971832672979986 2.10326097819294011 426.942993 18.3052080000000004 18 588.459831182632001 9.47873825681235083 62.0820849999999993 18.4270950000000013 17 482.794253902791979 6.09836246488306966 79.1678540000000055 18.0525149999999996 1.19297080000000011 0 0.374580379999999991 0.121887209999999996 0.252693180000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.243250417913998 -63.560345499759201 21.9542137345166992 -12.8723441279456008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266756530940032 2481266756530940032 1174799659 2015.5 25.0990377954270016 0.825160847538683018 -3.40470162200508009 0.419335840921452985 1.09448756361339994 0.96577880231711799 1.13326940000000009 4.30246749464008005 1.10664862536271991 -42.2016873709031017 0.759689694403586024 -0.154384870000000007 0.737207350000000039 -0.159095800000000009 0.201537460000000002 -0.285795899999999992 0.0669005000000000016 -0.0810866699999999996 0.0833820400000000045 0.219921220000000001 0.18500374 124 0 122 2 14.0359510000000007 488.097992 2.76895464424387017 16.7234654701963983 31 false 0.0829228399999999977 1.57969195450010003 0.156079293112621004 -0.031568236999999999 14 9 1.0332977000000001 0 14 true 122 435.658376813390021 2.7112807634128 160.684006 19.0904999999999987 11 193.486385779713004 13.4027607537347002 14.4363080000000004 19.6347619999999985 10 490.695372332887985 5.1805360030434997 94.7190300000000036 18.0348900000000008 1.57045469999999998 0 1.59987260000000009 0.544261930000000005 1.0556106999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.296144348701006 -63.5474246186617009 21.9804284593961015 -12.8806375245043991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266692106892928 2481266692106892928 1189080254 2015.5 25.1068896005989011 0.0420855294185739984 -3.4101111246505198 0.0354531786773525023 3.53143274813891983 0.0481055401666097976 73.4100999999999999 55.1183275017157968 0.0801437399101379983 -23.1564975637412012 0.0677377081840555006 0.307372179999999995 0.475383339999999988 -0.20946532000000001 0.0465408449999999974 0.175843820000000012 0.0903892200000000062 -0.165881589999999995 0.104825219999999997 0.00108293699999999996 0.251557499999999989 132 124 127 5 3.54906150000000009 185.376999 0 0 31 true 297.937470000000019 1.59222090871062005 0.0115141147586945002 0.121268509999999996 15 9 0.0527632599999999993 0 15 false 125 210694.656680143991 60.528544259955801 3480.90991 12.3792310000000008 15 110555.999134489 140.545801912478993 786.619000000000028 12.7424330000000001 15 143332.494105224003 167.407883637341996 856.187260000000038 11.8710579999999997 1.20500680000000004 0 0.871374129999999969 0.363201139999999978 0.508172999999999986 17.8713945884583012 2.59440740638917999 3 5500 3.5 0 NOT_AVAILABLE 151.317228061777001 -63.5490035891169995 21.985849297963199 -12.8885603675407996 100001 5483.75 5303 5658 0.118000001 0.0142999999 0.201299995 0.0590000004 0.00469999993 0.101999998 200111 0.915861600000000053 0.860318499999999986 0.97935899999999998 0.683384299999999945 0.670197900000000013 0.696570699999999987 +1635721458409799680 Gaia DR2 2481360524256759296 2481360524256759296 1408957806 2015.5 25.1133603695586984 0.561490209318668998 -3.40504935454571989 0.546665751525207022 -1.09747737886126995 0.645018771512641975 -1.70146580000000003 2.1958846282820299 1.3073040329263601 -4.14253405963842969 1.11295077389703989 0.401049319999999987 0.191707130000000003 -0.0624818129999999972 0.0675105149999999932 -0.0230508580000000005 0.095245979999999994 -0.0297971300000000015 -0.0488552670000000008 -0.0121654720000000001 0.400369350000000013 116 0 115 1 -0.415926399999999974 103.305 0 0 31 false 0.0720831450000000012 1.5677999742845401 0.176809229745442997 0.0814253759999999938 13 10 1.27109249999999996 0 13 false 115 161.065610790725003 1.10699951570996991 145.496994 20.1708579999999991 11 110.212574631069998 10.3161334189104998 10.6835159999999991 20.2458099999999988 12 114.108540294231005 9.06538195266574043 12.5872840000000004 19.6186240000000005 1.39273129999999989 0 0.627185800000000016 0.0749511699999999975 0.552234650000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.325543733057003 -63.541680966891299 21.9939252393790987 -12.8862434690488996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360524256760448 2481360524256760448 1598412967 2015.5 25.1143759195684986 0.595136099358424042 -3.3997020566506202 0.549981680685368013 -0.00987142564382409958 0.681663738021483945 -0.0144813709999999998 13.9067566947425991 1.35082735797009001 -13.0148492859109997 0.960243555509951996 0.285431299999999999 0.259467779999999981 -0.203948419999999991 0.183367239999999987 0.0236706120000000006 0.074903300000000006 0.371749370000000023 0.0907337099999999952 0.130270319999999995 0.114336720000000003 125 0 122 3 3.52569460000000001 178.757996 2.09100802305990019 4.79777792949897997 31 false 0.0634034650000000061 1.30071974509116006 0.157990942728327005 0.0476175399999999999 15 10 1.19993630000000007 0 16 false 129 193.744925578523009 1.75647221474493009 110.303001 19.9702899999999985 12 69.5544452101347019 6.92956554427478011 10.0373459999999994 20.7455770000000008 11 245.831598010456986 8.04046764469267039 30.5742909999999988 18.7853260000000013 1.6278416 0 1.96025089999999991 0.775287599999999966 1.18496320000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.322516772216005 -63.5364081967709993 21.9969183166125006 -12.8816491030853992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361623769881472 2481361623769881472 30899587 2015.5 25.064688863496901 13.0962999236013005 -3.37198427370107989 5.72437399416030956 \N \N \N \N \N \N \N 0.57389884999999996 \N \N \N \N \N \N \N \N \N 40 0 40 0 1.6255767000000001 49.5924988 4.26658002506481981 1.22551598402119999 3 false 0.0119392509999999997 \N \N -0.143453460000000005 5 4 42785.8949999999968 0 5 false 43 72.1049020861010064 3.12326556654896015 23.0863991 21.0434529999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.195359354207 -63.5322757749693992 21.9601482634455003 -12.8375650579313003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270883994957952 2481270883994957952 930752502 2015.5 25.0296201364503013 0.136721993543919007 -3.3532239863285902 0.105348228905592006 1.08999533510380009 0.15131434701638799 7.20351599999999959 -14.6765669917486008 0.295992830130710982 -11.1228374721729004 0.18422401522135301 0.161029320000000004 0.280015650000000005 -0.227607730000000008 0.156744390000000011 -0.0727793649999999986 0.135729249999999996 0.184002379999999993 0.120399240000000005 0.12811307999999999 0.167529260000000013 162 0 161 1 1.67664769999999996 186.776001 0.169257799696049011 0.257125455471340025 31 false 1.07262799999999991 1.44427625182251007 0.0338505051277609992 0.000994690199999999965 18 10 0.267697450000000003 0 18 false 159 1185.16575576341006 1.83090694770462004 647.310974 18.0039179999999988 17 359.143260451140009 8.95916592555009039 40.0866850000000028 18.9632189999999987 17 1236.86032856411998 9.38268157784898982 131.823759999999993 17.0311179999999993 1.34665009999999996 0 1.9321003000000001 0.959300999999999959 0.972799300000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.106391088561992 -63.5300216094110013 21.9338975556865989 -12.807194458883 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270879699338752 2481270879699338752 759444194 2015.5 25.0244819565414005 0.0467951147337367021 -3.34415446268386995 0.0464094202997661978 3.78930283573644999 0.0574305087776992018 65.9806600000000003 -16.2073754228301006 0.113582037079466999 -34.1295774354431032 0.115217098464409001 0.224969310000000006 0.22838043999999999 -0.0196215700000000014 0.161703409999999992 -0.271090800000000021 0.324107440000000024 0.374311950000000004 -0.220907269999999989 -0.298609320000000011 0.459714230000000001 122 122 118 4 11.0274789999999996 371.588989 0 0.391663547818827007 31 true 220.064069999999987 1.6570887336756901 0.0147437008317672005 0.101866250000000005 14 9 0.0820497939999999953 0 14 true 120 2233365.98963906011 1085.05772552792996 2058.29004 9.81596599999999953 13 1331015.89284140989 2045.94221344912989 650.563800000000015 10.0409299999999995 13 1301928.66610597004 1880.37837400792 692.375900000000001 9.47545200000000065 1.17891309999999994 0 0.565477400000000019 0.224964140000000007 0.34051323 \N \N 0 \N \N \N NOT_AVAILABLE 151.087391337399993 -63.5239526463507005 21.9324475990941998 -12.7968712848390993 100001 6625.58984 6528.2998 6735.4502 1.05669999 0.798200011 1.18560004 0.497299999 0.393000007 0.586099982 200111 1.86145519999999998 1.80122699999999991 1.91735049999999996 6.01586529999999975 5.8947061999999999 6.1370243999999996 +1635721458409799680 Gaia DR2 2481361353185524352 2481361353185524352 1108838203 2015.5 25.0908722902447998 0.667455197932864008 -3.38338583315182984 0.530239909720847002 2.22711614854104001 0.75760840603274604 2.93966649999999996 49.7111446656493996 1.43544380214926992 -14.1361835858845009 0.911273174059587965 0.225422320000000009 0.292935100000000004 -0.22987995 0.171914600000000001 0.0214023300000000007 0.155951990000000013 0.181207580000000007 0.132927800000000013 0.123177400000000006 0.174491480000000004 151 0 147 4 6.41514800000000029 278.820007 2.84206518272464015 37.975630572215799 31 false 0.0474385599999999977 1.02813969754603995 0.169428671431416988 0.0223067480000000012 17 10 1.28495659999999989 0 17 false 145 191.356168083834007 1.38297183486961006 138.365997 19.9837589999999992 12 38.3890440061121012 6.14909135034393017 6.24304340000000035 21.3908699999999996 14 268.302177386664994 9.05584842333048989 29.6275019999999998 18.6903599999999983 1.60272459999999994 0 2.70050999999999997 1.40711019999999998 1.29339979999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.259320746608012 -63.5315631631493005 21.9807383688659002 -12.8578183800185997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361417609962624 2481361417609962624 835310826 2015.5 25.073025338515599 12.3576411279995 -3.37852557902039008 4.90118848374796023 \N \N \N \N \N \N \N 0.849635200000000035 \N \N \N \N \N \N \N \N \N 50 0 49 1 -1.17538980000000004 33.3124008 0 0 3 false 0.0238761439999999985 \N \N 0.27434873999999998 6 5 183.37897000000001 0 6 false 51 75.7806836369677939 1.14788416175990005 66.0177002 20.9894700000000007 6 66.558379615962707 6.44069826814204038 10.3340320000000006 20.7933799999999991 6 60.6579413099795985 10.0880959169983004 6.01282359999999994 20.3047000000000004 1.67874340000000011 0 0.4886799 -0.196088790000000013 0.684768700000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.218483833958004 -63.5346905274493992 21.9656002047565018 -12.8467187096541995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360592976239360 2481360592976239360 73659641 2015.5 25.1051005400508984 0.218340722049179009 -3.39011888613269008 0.192413066808080013 0.96886223869905197 0.244790594357050001 3.95792270000000013 9.70830425870794933 0.481637393741378983 2.82869441242274 0.344058646879424002 0.320280520000000013 0.286141069999999997 -0.27290072999999998 0.0965821899999999983 0.102483530000000003 0.0472833069999999966 0.0613152530000000001 0.173595959999999994 0.151353939999999992 0.190491400000000005 118 0 117 1 1.03247789999999995 127.445999 0 0 31 false 0.522855500000000029 1.5516889371109599 0.0575790661656370995 0.0682992899999999986 14 10 0.436788979999999993 0 14 false 117 655.562472635322024 1.87362385510115992 349.890015 18.6468300000000013 13 313.290976659387013 13.3906390630301999 23.3962670000000017 19.1115190000000013 11 505.36675316203798 13.4944234703764998 37.4500430000000009 18.0029029999999999 1.24878679999999997 0 1.10861589999999999 0.464689249999999998 0.643926600000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.294586822392006 -63.5316511494321006 21.9917245428081998 -12.8693230214599001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361451969702016 2481361451969702016 885269041 2015.5 25.0921690359975997 0.300114907994631974 -3.37384102659533003 0.252037968156545 2.26505160645904979 0.351191440754137996 6.44962069999999965 20.5160362052084011 0.665015826328897997 6.16782415417462015 0.454387920759773023 0.251578120000000016 0.288341879999999995 -0.0962894599999999934 0.107841425000000005 0.0443950929999999966 0.0470024159999999983 0.167272090000000012 0.00267421000000000022 0.153919919999999988 0.127796319999999991 137 0 134 3 2.60107160000000004 174.634995 0.842860355936634997 1.55421303348780993 31 false 0.228222919999999996 1.41459219880451004 0.0826694599689627024 -0.00464830899999999977 16 10 0.588727059999999969 0 16 false 133 424.722489278895978 1.65087649162323991 257.270996 19.1181030000000014 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.252894962768011 -63.5223667569034021 21.9855896064245009 -12.8494273590597992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361387545902336 2481361387545902336 57353775 2015.5 25.1032173053081991 3.32255994414374012 -3.3767201295537399 3.24419151096132996 \N \N \N \N \N \N \N 0.246320189999999994 \N \N \N \N \N \N \N \N \N 105 0 103 2 33.4539339999999967 1704.18005 19.2027398064103991 164.475416810196009 3 false 0.0024143131 \N \N 0.104136350000000003 14 9 8.36100099999999991 0 14 true 120 142.476936837135014 2.22277565975461 64.0987015 20.3040050000000001 12 163.046282781270008 8.78226920758586083 18.5653930000000003 19.8206099999999985 10 440.26626236560702 5.3309495998496601 82.5868399999999951 18.1526320000000005 4.23445750000000043 0 1.66797829999999991 -0.483394619999999997 2.15137299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.278040212451998 -63.5203087324892977 21.9950105603822017 -12.8561777519734992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361383250224896 2481361383250224896 671836782 2015.5 25.1037549039952985 0.123128432937297999 -3.37440260792326985 0.0980576897865715058 0.474990172914889985 0.142038100616515006 3.34410400000000019 7.1676220439303 0.261641940280411989 -7.35487494738497993 0.180464210311729989 0.209142610000000007 0.316149120000000006 -0.20062257 0.107762629999999998 -0.0412442349999999971 0.080737299999999998 0.0461555719999999989 0.10403801 0.124531760000000005 0.205496420000000013 151 0 150 1 1.49777019999999994 171.285004 0 0 31 true 1.35908030000000002 1.54732783735141011 0.0324730589915544002 0.0373598100000000002 17 10 0.238371639999999996 0 17 false 147 1428.69275381478997 2.08451773901188009 685.382996 17.8010179999999991 14 706.475627690572992 11.4785027379137006 61.5477139999999991 18.2286450000000002 15 1084.84104388489004 10.5863160475959006 102.475784000000004 17.1735040000000012 1.25381520000000002 0 1.0551413999999999 0.427627560000000018 0.627513899999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.276930614753013 -63.5179819060502027 21.9964003305649989 -12.8542224860859999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361731143212928 2481361731143212928 661359675 2015.5 25.0707199893404002 0.033892463289234398 -3.35612951358982992 0.0254521449742228997 1.20667390986884993 0.0377819053169463973 31.9378799999999998 19.1957619387899001 0.0709338909183615945 -3.50820259369332987 0.0499488462952056012 0.126819600000000005 0.33159843 -0.276288240000000018 0.0684190499999999951 -0.0353208740000000021 0.0376775040000000006 -0.156433340000000004 0.144825860000000001 0.130928309999999992 0.17172772 159 0 158 1 -1.97388330000000001 120.433998 0 0 31 false 25.9700869999999995 1.55498167987548008 0.00917468873993917966 0.025417116 18 10 0.0736354139999999963 0 18 false 157 20331.7343127171007 7.49364459927825965 2713.19995 14.9179300000000001 16 9452.13782844554044 19.9565235503170015 473.636500000000012 15.4125630000000005 14 15612.8603772390998 30.0425880829418013 519.690900000000056 14.2782134999999997 1.23280180000000006 0 1.13434980000000007 0.494633670000000025 0.639716150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.192589276498012 -63.5153613583091996 21.9718950923797003 -12.8250574505137998 100001 5011.93994 4925 5117.5 0.559199989 0.453500003 0.642099977 0.270999998 0.222900003 0.317099988 200111 1.0336303 0.991428140000000013 1.07044530000000004 0.607363340000000029 0.563510359999999988 0.65121629999999997 +1635721458409799680 Gaia DR2 2481361731143212800 2481361731143212800 356216877 2015.5 25.0779593361948017 0.43037472900033702 -3.35116356357164991 0.398133273419330025 0.13517299423059001 0.519434129691702995 0.26023126000000002 12.0803364848261001 0.914253685345178035 -5.64813455795018005 0.646138296423769964 0.383867559999999997 0.248139069999999989 -0.152574669999999996 0.143927990000000006 -0.0593881269999999989 0.0643946100000000049 0.152987630000000013 0.159829749999999993 0.208094050000000003 0.294686170000000025 141 0 138 3 1.89922790000000008 165.669006 0.568484555621410981 0.301064703960350011 31 false 0.112396270000000006 1.63248650261372008 0.126442399525901999 0.0856130300000000066 16 9 0.836824829999999964 0 16 true 136 230.524414692958004 1.2615592027865401 182.729996 19.7815739999999991 13 71.9936340309402993 8.89067185116861936 8.09765900000000016 20.7081529999999994 14 264.602574197345973 8.86574222229864972 29.8455070000000013 18.7054350000000014 1.46013259999999989 0 2.00271800000000022 0.926578499999999972 1.07613950000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.202577105990997 -63.5078085610908971 21.9806642657188007 -12.8231133579570002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361726847614080 2481361726847614080 206248278 2015.5 25.0754191687540988 2.69164356491639989 -3.34600514533310012 1.90244336759277011 \N \N \N \N \N \N \N 0.0826187399999999961 \N \N \N \N \N \N \N \N \N 114 0 114 0 61.0638000000000005 5771.7002 14.9543319128651007 373.143830930624006 3 false 0.00433029330000000035 \N \N 0.0377760529999999969 17 9 5.14200500000000016 0 17 false 148 391.268460977606992 4.64023016225850959 84.3209 19.207177999999999 16 491.65649961605601 9.3253856017233705 52.7223779999999991 18.6222339999999988 16 1116.79063712363995 15.9484662316809995 70.0249560000000031 17.1419899999999998 4.11085299999999965 0 1.48024369999999994 -0.584943800000000014 2.06518749999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.192542324009992 -63.5042029879418024 21.9802023790660002 -12.8173830106963003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361761207351680 2481361761207351680 194952424 2015.5 25.0871099571659002 0.689136533046064037 -3.3474419144282499 0.765625511822893956 -1.30738936956132989 0.770319460202952055 -1.69720409999999999 -0.222813994802911003 1.50987980123307008 -2.5147795086384801 1.80933071831892001 0.45761126000000002 0.355466569999999982 -0.207829650000000005 -0.139262379999999991 0.162249150000000009 -0.142128749999999998 -0.269432430000000001 -0.0175198399999999983 -0.0120026960000000002 0.376743800000000018 114 0 114 0 -0.113575179999999998 106.672997 0 0 31 false 0.046940825999999998 1.58395136851262008 0.225068485318836997 0.0697746050000000034 13 9 1.7565868 0 13 false 115 123.118677518751994 1.15479194764559989 106.614998 20.4625549999999983 10 76.9389438098874052 15.6608054352214001 4.91283460000000005 20.6360230000000016 12 120.178628832637997 18.4335073938157983 6.51957460000000033 19.5623509999999996 1.6010371000000001 0 1.0736713 0.173467640000000006 0.900203700000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.217613835844986 -63.5005769300207987 21.9907802188693005 -12.8230302607351998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409970293169152 2505409970293169152 1112415001 2015.5 25.9664015067831997 1.19421954097553007 -2.92346374756150995 0.446351245231445981 \N \N \N \N \N \N \N -0.0788559999999999955 \N \N \N \N \N \N \N \N \N 114 8 114 0 1.63572980000000001 134.212006 0 0 3 false 0.0865646699999999963 \N \N -0.0483539700000000031 13 8 3.25375499999999995 0 14 false 115 197.378945214565988 1.45451118088223996 135.701004 19.9501130000000018 13 143.138246379923999 18.0315766597756983 7.93819900000000001 19.9619999999999997 11 164.525294630513997 13.7737758300579998 11.9448209999999992 19.2213379999999994 1.5587454999999999 0 0.740661600000000031 0.0118865970000000005 0.728774999999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.564690860902004 -62.7391715244861032 22.9879036328046986 -12.7519756363382992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272013570930304 2481272013570930304 1086105403 2015.5 24.9384290802732984 0.297540995317630008 -3.32738757922489015 0.186957358975455012 0.993945204935763993 0.309416279780768022 3.21232369999999978 1.27693172037597003 0.573487738814656978 -13.6802979741838993 0.337627104858441995 -0.139883919999999995 0.393526819999999999 -0.340767260000000016 0.153740700000000008 -0.25613691999999999 0.19478527000000001 0.0645090400000000036 0.0749097100000000043 0.0667295900000000053 0.100838474999999997 149 0 145 4 3.87740760000000018 214.533005 0.826651477943625035 2.73589587430282011 31 false 0.341395769999999987 1.30797773115973004 0.0620417042705255981 -0.107476725999999995 17 9 0.520345700000000022 0 17 false 142 601.799290149671037 1.87305783908032009 321.291992 18.7397370000000016 14 182.43897217466801 7.80490510149332994 23.3749119999999984 19.698595000000001 15 660.842195479454972 8.41208010843132037 78.558716000000004 17.7116760000000006 1.40126649999999997 0 1.98691939999999989 0.958858499999999947 1.02806090000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.896619500696005 -63.5447571995139029 21.8569581175905014 -12.7495315174710999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271807412496512 2481271807412496512 135164118 2015.5 24.957674428065399 0.449392801005188025 -3.34008053137731009 0.302901719205851017 1.60045662291671009 0.480040795786094987 3.33400130000000017 1.13558899015171 0.897408838122948027 -12.6250697857954997 0.54790251423153602 -0.12950078000000001 0.384070279999999986 -0.269545099999999982 0.100436196000000005 -0.256848420000000022 0.131447960000000003 0.198091430000000013 0.0579402629999999988 0.0314941670000000035 0.0507122279999999981 136 0 136 0 2.30064579999999985 171.082001 0.803614019034804006 0.804985163791327007 31 false 0.140770050000000008 1.36470831763291001 0.0950536023372095945 -0.126244099999999998 16 9 0.801663800000000037 0 16 false 135 278.779844273924994 1.56712742194655008 177.891998 19.5752120000000005 12 65.748333006106094 5.46563908314839964 12.0293949999999992 20.8066770000000005 12 329.904598685734015 7.50828753010110006 43.9387299999999996 18.4659499999999994 1.41923080000000001 0 2.34072689999999994 1.2314643999999999 1.10926250000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.947713653882005 -63.5482471510327969 21.8704483517516017 -12.7684294509406993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271811707893632 2481271811707893632 430243583 2015.5 24.9540692315745005 1.53061960912027994 -3.3376911605902202 0.96965454212019897 \N \N \N \N \N \N \N -0.127719570000000004 \N \N \N \N \N \N \N \N \N 126 0 126 0 25.7344970000000011 1122.20996 7.65615226715700015 63.6914442159137977 3 false 0.0146166349999999994 \N \N -0.0796450100000000022 15 8 2.99372030000000011 0 15 false 129 282.34941214836698 2.82389632241870014 99.9858017 19.5613980000000005 10 378.210141669984012 10.8471024917582994 34.8673900000000003 18.9070549999999997 10 662.246407861803959 14.9345495623832001 44.3432460000000006 17.7093719999999983 3.68499640000000017 0 1.19768330000000001 -0.654342650000000026 1.85202599999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.938130453534995 -63.5475841707998015 21.8679255505984003 -12.7648785754704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272116650147328 2481272116650147328 409664424 2015.5 24.9455657884951982 0.417673581605268018 -3.31595360715870013 0.279965508870194002 -0.173004597847318004 0.436308536942642988 -0.396518949999999981 0.364842463777349024 0.881188211884344041 -3.40011732865030014 0.531337705023431028 -0.0684264700000000031 0.267476700000000012 -0.246551920000000008 0.143659010000000004 -0.219868900000000006 0.202826960000000001 0.0847296599999999983 0.0100941659999999999 0.0112121630000000007 0.124162529999999993 141 0 139 2 0.401118760000000019 139.987 0 0 31 false 0.151564300000000013 1.81893872379617005 0.0911591588682985066 -0.142440630000000013 16 9 0.7870838 0 16 false 139 275.859831440670973 1.11191867957387003 248.093994 19.5866450000000007 13 166.740016843646004 7.90045752555644043 21.1051080000000013 19.7962899999999991 12 181.705090105766004 5.3070980265901504 34.2381249999999966 19.1135030000000015 1.26312380000000002 0 0.682786939999999953 0.209644319999999995 0.473142620000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.900416656886989 -63.5313917820882992 21.8680800218618998 -12.7415426896998998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319159427363968 2481319159427363968 1592755359 2015.5 24.9319456998008988 0.0597116624958137013 -3.29492827306025982 0.0490870582679752004 4.61785240345495041 0.0672877368908631063 68.6284399999999977 -4.78920945775734008 0.133863192593830005 -13.3252071512072998 0.104118032947861996 0.164800000000000002 0.256788369999999988 -0.21684500000000001 0.0953555600000000059 -0.132369039999999993 0.135166559999999991 0.000246710349999999985 0.0335403459999999987 -0.0208703629999999994 0.292908200000000007 132 0 132 0 2.97367239999999988 179.690994 0.186767251056124989 2.01814511359884996 31 false 6.97703700000000016 1.3319436833709799 0.0163924722529407013 0.0947273450000000045 15 10 0.131151049999999991 0 15 false 132 7154.10954409149963 5.44174248011008999 1314.67004 16.0519770000000008 14 1485.16130761963996 11.1156607402675007 133.609800000000007 17.4219529999999985 13 8907.64961691043027 23.7613309591482995 374.880069999999989 14.8875119999999992 1.45270499999999991 0 2.53444100000000017 1.36997600000000008 1.16446500000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.853002944482 -63.5179695598040013 21.8630986002374001 -12.7169796078540998 100001 3478 3284.33008 3803.62012 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272189665015040 2481272189665015040 1640339661 2015.5 24.9717401336992992 0.0434662634138556006 -3.30965743925424993 0.0322577376652833023 0.505164976818094025 0.0475032990523618984 10.6343139999999998 6.86370200606437031 0.0960025517181972016 -4.13734872466648973 0.0695744917562582943 0.0308596229999999992 0.2509189 -0.250076679999999996 0.0483278970000000016 -0.190523969999999987 0.0196216370000000008 -0.182881860000000007 0.0933572349999999967 0.106312989999999996 0.186932640000000011 165 0 163 2 -1.62629069999999998 130.231003 0 0 31 true 11.9569559999999999 1.62441122827861006 0.0105723109390382999 -0.0407574470000000022 19 10 0.0956356000000000012 0 19 false 160 9688.92221408684054 5.99564795677610984 1615.98999 15.7226769999999991 18 5228.96581973814045 13.6732401173366007 382.423299999999983 16.0553500000000007 18 6530.84994198941968 24.6909389420122984 264.503899999999987 15.2244960000000003 1.21373829999999994 0 0.830853460000000044 0.332672120000000016 0.498181339999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.947740747604996 -63.5147397940464984 21.8953587891657016 -12.7453541449068997 100001 5756 5607.95996 5912.75 0.326200008 0.142900005 0.485100001 0.163800001 0.0850000009 0.247999996 200111 1.23213829999999991 1.16767500000000002 1.29805159999999997 1.50140110000000004 1.18875609999999998 1.81404600000000005 +1635721458409799680 Gaia DR2 2481272185369627008 2481272185369627008 1611103714 2015.5 24.9755020821237999 0.637391282198726983 -3.30294310573091021 0.598168800190053029 0.859047537221410029 0.736929903355242 1.16571129999999989 0.126187652176217996 1.49324090621404992 -10.6723032946008001 1.39969887475923005 0.281412839999999997 0.229036800000000013 -0.15300720000000001 0.0170031640000000012 -0.0537427659999999974 0.032512974 -0.113889130000000005 -0.020367136000000001 -0.0348783059999999978 0.352593839999999992 137 0 137 0 -0.858855660000000021 117.912003 0 0 31 false 0.0452761500000000011 1.36249590590767999 0.187514174439292997 0.0513315540000000015 17 10 1.47931959999999996 0 17 false 139 116.278895706108997 1.02801646974812999 113.110001 20.5246139999999997 11 60.095933025208403 10.2602333855708991 5.85716999999999999 20.9042759999999994 15 104.461580239444999 10.7168255338372003 9.74743699999999968 19.7145289999999989 1.41519679999999992 0 1.18974690000000005 0.379661560000000009 0.810085300000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.949083581042004 -63.507069805353197 21.9014814373816016 -12.7405039358284 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271085860918912 2481271085860918912 1287204042 2015.5 25.0120865177017997 0.685246536538319018 -3.33423867763251991 0.677807174548353042 0.0973616143333447953 0.753200925506051 0.129263800000000012 1.76177255719868997 1.61860562201013991 -4.89992440018606956 1.68178696928367999 0.269814370000000026 0.220185180000000008 -0.238713199999999987 -0.0350396340000000001 -0.0469257400000000005 -0.0531535819999999978 -0.324387250000000016 0.0651473300000000033 0.00765858259999999992 0.383652419999999994 129 0 129 0 3.14170769999999999 179.492996 2.15417142118199001 1.93026846340476999 31 false 0.0422569179999999975 1.6289672552983101 0.201045440955032989 0.0407404859999999994 15 9 1.71540190000000004 0 15 false 129 132.743207798391012 1.13834831951462001 116.610001 20.3808350000000011 11 61.2508881519836024 20.5899500613866984 2.97479529999999981 20.8836079999999988 12 175.670872817026009 10.3557785842195003 16.9635600000000011 19.1501710000000003 1.78481270000000003 0 1.73343660000000011 0.502773299999999979 1.23066330000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.052858678239005 -63.520158410071403 21.9244153865438989 -12.7830838335724 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364991022766208 2481364991022766208 623233339 2015.5 25.0169675990326006 0.309047767304179988 -3.31934619234694006 0.256490183218419987 0.00504692645367869029 0.343050949457126997 0.0147118860000000004 0.412275620266458975 0.698858718031588055 -1.02433472131730996 0.459041710764058974 0.174238320000000002 0.203110900000000011 -0.183496180000000009 0.166439859999999995 -0.119362146000000002 0.182876440000000001 0.243514979999999992 0.0571453719999999998 0.0536430850000000001 0.195163979999999987 165 0 162 3 1.35285199999999994 181.477997 0.403376197113928026 0.272671945472879984 31 false 0.186879490000000009 1.54383220778596009 0.0815238047325556048 -0.0285628300000000009 19 10 0.626960040000000052 0 19 false 163 328.761448155274024 1.41738769786468999 231.949005 19.3961639999999989 17 159.773483294340991 7.20822303036109968 22.1654470000000003 19.8426270000000002 17 231.91421883768399 9.39700653071493086 24.6795849999999994 18.8486019999999996 1.19140399999999991 0 0.994024299999999972 0.446462630000000027 0.547561650000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.048743510970013 -63.5045968481358969 21.9347024265365 -12.7710470749088003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271983506601344 2481271983506601344 564123120 2015.5 24.9911767162114984 0.105917568213561006 -3.31053467027146997 0.0801535699991297035 2.69260334913625998 0.117774468390521997 22.8623699999999985 35.7127222228226984 0.237526508487786003 8.2205223748638403 0.166804664376149991 0.0749482959999999976 0.234309820000000002 -0.226224150000000013 0.0587871039999999997 -0.169000480000000008 0.0456131769999999978 -0.0837557000000000024 0.0746599200000000046 0.0900620200000000065 0.184091599999999994 159 0 158 1 4.45663829999999983 244.039001 0.367919915173617995 2.67940392808643013 31 false 1.74453079999999994 1.37171853565317003 0.0244311549850040992 -0.0085431110000000008 18 10 0.217321010000000009 0 18 false 156 2194.33990089348981 3.59665099135997979 610.106018 17.3351059999999997 13 541.339745207174019 3.75068043802109008 144.331070000000011 18.5177140000000016 15 2510.13069437719014 11.1948507330546008 224.221900000000005 16.2626799999999996 1.39060969999999995 0 2.25503350000000014 1.18260769999999993 1.07242579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.988066151310989 -63.5074056375285991 21.9135116285108005 -12.7533425065326007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365746937141376 2481365746937141376 1192711544 2015.5 25.0025850290749005 0.754756289251712009 -3.3105835084964399 1.04633745256698996 -0.371587593309247011 0.884819042433380054 -0.419958859999999989 -0.349893242607307975 2.13195959942992985 -2.99911092597112017 2.87177858780052997 0.524003270000000021 -0.102318900000000004 -0.458818000000000004 -0.417592560000000002 -0.460688350000000024 -0.559244500000000033 -0.743419950000000052 0.376103159999999992 0.432219950000000019 0.712382559999999998 124 0 123 1 -1.42723770000000005 96.8189011 0 0 31 false 0.0428623929999999986 1.88558047280026009 0.227496485635404005 0.0901921100000000059 15 8 3.06292700000000018 0 15 false 122 110.572041999990006 0.901503316379071995 122.653 20.5792520000000003 14 66.221598301210804 8.5122988707687508 7.77951999999999977 20.7988900000000001 13 87.7873072403305059 8.52928360706524025 10.2924594999999997 19.9033410000000011 1.39283760000000001 0 0.895547870000000024 0.219636920000000013 0.67591095000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.011287320455011 -63.5026727054058995 21.9243435246024987 -12.7575978142716995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365850016232448 2481365850016232448 912762164 2015.5 25.0045827883811995 0.163883766067941999 -3.29509203136115003 0.124902440940843004 0.783537537905368953 0.183432046853189007 4.27154100000000003 16.6309177818868008 0.364904194609055987 -24.5881446615345993 0.238031649098392001 0.110169699999999995 0.237889139999999999 -0.237694309999999992 0.103923715999999999 -0.145845090000000011 0.10294085 0.0754230500000000054 0.0884383839999999949 0.0804641799999999963 0.178091969999999988 167 0 164 3 0.571048699999999965 168.707993 0.369815496723358006 0.896666892873442034 31 false 0.703923700000000041 1.5203369967935001 0.0387326233319955013 -0.0198700859999999986 19 10 0.329102249999999985 0 19 false 162 891.41233077742902 2.10547318817646012 423.378998 18.3131699999999995 17 352.002706699813984 8.89359300940049025 39.5793570000000017 18.9850230000000018 17 817.74340345789301 12.6220200063032006 64.7870499999999936 17.4803770000000007 1.31223899999999993 0 1.5046463000000001 0.671853999999999951 0.832792300000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.000780690838013 -63.4877737579227031 21.9321142079521998 -12.7439405228188001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319189491719680 2481319189491719680 536544095 2015.5 24.9574603217883997 0.194886132017678987 -3.28335176429821018 0.152592493763827997 0.376723494063760989 0.218481087407110003 1.7242843000000001 6.79456368391106036 0.440839371470421015 -6.00393647708320977 0.301092794916843987 0.110857873999999995 0.223592559999999996 -0.214870800000000001 0.0961638540000000069 -0.17182175999999999 0.106946066000000006 0.0787139159999999949 0.0570416899999999991 0.0498190859999999985 0.19671667000000001 168 0 168 0 0.213592530000000003 166.210999 0 0 31 false 0.465585350000000009 1.66170104940906005 0.0490848495180249006 -0.0248349289999999986 19 10 0.397420969999999985 0 19 false 166 596.804772226332034 1.4772066531844199 404.009003 18.7487850000000016 16 335.275063583280996 7.94693793925562009 42.1892130000000023 19.0378860000000003 16 383.452821105330997 10.1021525173058002 37.957535 18.3026400000000002 1.20429309999999989 0 0.735244750000000002 0.289100650000000015 0.446144099999999988 \N \N 0 \N \N \N NOT_AVAILABLE 150.894045252062995 -63.4968111917822 21.8917491234405013 -12.7156416837808006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481366090535752192 2481366090535752192 1031465998 2015.5 24.9746584055619003 1.04668441768351994 -3.28604031076570013 1.46865913246592994 \N \N \N \N \N \N \N 0.530922200000000011 \N \N \N \N \N \N \N \N \N 95 0 94 1 2.12607480000000004 119.671997 2.71333584994913002 1.72597696718856009 3 false 0.027325617 \N \N 0.20471223999999999 11 8 4.54495100000000019 0 12 false 98 89.0354421516044994 1.0102842978181199 88.129097 20.8144589999999994 8 56.9475722215969995 11.8086223326708009 4.82254170000000038 20.9627000000000017 12 124.614243686321998 9.5172750104095396 13.0934790000000003 19.5229999999999997 2.03920840000000014 0 1.43969919999999996 0.148241039999999991 1.29145810000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.931511021418999 -63.4920720275286001 21.9070851021805986 -12.7244871261179995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365953095451136 2481365953095451136 39784241 2015.5 25.0061044128004006 0.514931531610330007 -3.2835562972183201 0.465498778709916017 -0.450880493487686995 0.585445004909741051 -0.77015007000000002 2.51799301667302 1.19931876617476996 -4.2282439294597598 1.05958545143836003 0.223034490000000002 0.244270739999999986 -0.178703319999999999 -0.00775510719999999987 -0.0177979800000000014 -0.0264418159999999999 -0.0720475500000000019 0.0209249820000000017 0.0579038519999999987 0.193951679999999987 135 0 134 1 -1.48934520000000004 105.940002 0 0 31 false 0.0696014199999999972 1.69421119321140989 0.147889885025000001 -0.00228479829999999988 16 10 1.10333759999999992 0 17 false 133 156.121680339611999 1.08809515863655992 143.481995 20.2047080000000001 12 106.565632814363994 14.5761844896631008 7.31094169999999988 20.2823449999999994 12 107.580229164499997 8.51879842601480064 12.6285690000000006 19.6825890000000001 1.3716600000000001 0 0.599756240000000052 0.0776367200000000063 0.522119499999999959 \N \N 0 \N \N \N NOT_AVAILABLE 150.993033112374007 -63.4766645059427006 21.9379324721579998 -12.7337830279830992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364716144853888 2481364716144853888 407390480 2015.5 25.0458385399515002 0.467932962328143021 -3.33800340605588985 0.388456938839876975 1.12741054417424991 0.524459322108494996 2.14966249999999981 5.45757950906604972 1.04472415504936 -0.335643280958200008 0.69077343670393998 0.207929670000000011 0.240996660000000001 -0.176409569999999988 0.16256045999999999 -0.088423600000000005 0.160277560000000013 0.241409449999999998 0.0655671300000000012 0.0760112500000000024 0.202028569999999991 166 0 166 0 3.67493179999999997 235.496994 1.17255193075141007 1.09426854547502006 31 false 0.0802486300000000013 1.50525836798051005 0.123636714570082004 -0.0124011710000000008 19 10 0.936153349999999995 0 19 false 168 198.883064249587989 1.16861563597574003 170.186996 19.941872 14 101.172929288432002 8.50510935452141048 11.8955470000000005 20.3387279999999997 14 148.663437652891986 14.0540989810482007 10.5779420000000002 19.3314100000000018 1.25619729999999996 0 1.00731850000000001 0.396856299999999995 0.610462199999999955 \N \N 0 \N \N \N NOT_AVAILABLE 151.124953473874996 -63.5093987640307986 21.9550942807548992 -12.7990354380888007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364960958619136 2481364960958619136 1530503497 2015.5 25.0362711356245988 0.0857498007584893973 -3.3274186774353498 0.0667518585489897953 0.131469915779789004 0.0950742639963246955 1.38281290000000001 15.4796697530866005 0.186662894539235014 -4.93566675223093032 0.121197811782764994 0.146222839999999993 0.269944249999999997 -0.215827240000000004 0.130765359999999997 -0.0948796499999999959 0.110522490000000001 0.114302106000000001 0.109195314000000002 0.126386460000000006 0.172299919999999995 160 0 160 0 1.59400420000000009 184.044998 0.130256906961745994 0.362195071024877024 31 false 2.70571349999999988 1.68552238342714999 0.0216488260237359988 -0.00177031299999999992 18 10 0.171940239999999994 0 18 false 160 2692.16184655614006 3.05574457278384015 881.017029 17.1131129999999985 17 1512.66091543444008 10.3786225516388004 145.74776 17.4020350000000015 15 1751.53223175120002 5.85383247694767039 299.211200000000019 16.6533739999999995 1.21248029999999996 0 0.74866104 0.288921360000000016 0.459739689999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.095543599190989 -63.5038185464839984 21.9500045884797004 -12.7856702815911003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365781296753536 2481365781296753536 977499150 2015.5 25.0265930324221983 0.433387273034325005 -3.30324283040696987 0.377159624183416975 -0.604219087874980021 0.482903009137276018 -1.2512224999999999 -1.78302648683635989 0.946469062013459039 -3.11466428897371017 0.667743755691065033 0.254408199999999973 0.275033650000000018 -0.131724389999999997 0.178186399999999995 -0.0463350150000000002 0.176677899999999999 0.245268800000000009 0.0549147840000000012 0.0821438059999999998 0.234692630000000013 152 0 152 0 2.0390391000000001 184.031998 0.782665533019425985 0.538099276866434995 31 false 0.0989310899999999993 1.72718809537896001 0.121641123359573999 0.0111695279999999997 17 10 0.855948750000000036 0 17 false 151 212.109616248524986 1.14778572606947993 184.798996 19.8719649999999994 15 84.4888919990566052 9.56338542732354036 8.83462100000000028 20.5343899999999984 15 167.964006478443991 9.01007621110180068 18.6417959999999994 19.1988799999999991 1.19020020000000004 0 1.33551029999999993 0.66242409999999996 0.673086170000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.053122214902999 -63.4859463882493031 21.9499600266243 -12.7596352645646007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365094101985664 2481365094101985664 759848365 2015.5 25.0515877729452008 0.714866280460550008 -3.30478469616345016 0.645624870234501991 -0.197593009131999009 0.798346152299689971 -0.247502919999999987 6.37435578664226998 1.64185743658741989 -4.80747813246788969 1.27477062537989005 0.265248299999999992 0.212201859999999992 -0.155927960000000004 0.131356820000000013 -0.100139329999999999 0.158380259999999995 0.144222920000000004 0.0358658729999999995 0.0120965570000000008 0.303818550000000021 133 0 131 2 2.94680829999999983 177.966995 1.59623541980111994 0.969616906644808041 31 false 0.0400354939999999979 1.18816789506186993 0.203686523797966007 0.0577355960000000001 15 10 1.52216499999999999 0 15 false 131 117.619627344140994 1.03504949790709011 113.637001 20.5121670000000016 12 56.4334631657133983 9.56413269246182018 5.90053129999999992 20.9725460000000012 13 98.6543617393101044 11.0125624865081999 8.95834699999999984 19.7766279999999988 1.31855389999999995 0 1.19591709999999996 0.46037865 0.735538499999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.105279868599013 -63.4768514223002001 21.9731504365228005 -12.7702888646188999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364887943552768 2481364887943552768 1317972013 2015.5 25.0618639826703991 0.687516708062165027 -3.31198353469986984 0.763543861782072009 0.824069768344498965 0.800561212835357972 1.02936509999999992 12.4314503409768999 1.33703647080004995 -15.0164612079885007 1.69862586012079997 0.497089029999999987 0.501469429999999994 -0.0563898099999999985 -0.120743274999999997 0.255093540000000008 -0.133801979999999987 -0.191044149999999996 -0.152605820000000003 -0.0474140050000000021 0.400374530000000006 110 0 109 1 -1.14825210000000011 87.7067032 0 0 31 false 0.0541354750000000023 1.96514900621532007 0.195717532084516005 0.162269379999999991 13 8 1.62952610000000009 0 13 false 108 121.647654162110001 1.13618803028684989 107.066002 20.4756070000000001 8 64.9104024980310044 9.98779369802715067 6.49897300000000033 20.8206020000000009 9 102.616100037280006 9.76107286958984055 10.5127889999999997 19.7338810000000002 1.37714540000000008 0 1.08672140000000006 0.34499550000000001 0.741725900000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.132906699140989 -63.4790608971682033 21.9801981202517993 -12.7807688952615006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365094101985920 2481365094101985920 199810923 2015.5 25.0662155081666995 0.065889226178744903 -3.30550611030035979 0.0527852609944564968 0.239071465262416988 0.0767873375927854984 3.11342300000000005 -0.166193685213730014 0.133227020274392011 -4.53330811131348987 0.0991924717366464009 0.166909200000000008 0.368464650000000005 -0.138261269999999992 0.091928899999999994 -0.0331566699999999992 0.0541636240000000005 -0.0417849600000000029 0.0703367139999999946 0.139700380000000013 0.187119709999999995 157 0 156 1 -0.277487959999999978 145.576996 0 0 31 false 4.59823559999999976 1.62359513538189004 0.0175377153517296998 0.0617541259999999995 18 10 0.125030730000000007 0 18 false 154 4274.12521576140989 3.59918409744769008 1187.53003 16.6112479999999998 18 2275.79762192438011 12.0133496896051 189.439060000000012 16.9585529999999984 17 2869.85666201678987 17.2268154906766995 166.592399999999998 16.1172700000000013 1.20390820000000009 0 0.841283800000000026 0.347305299999999983 0.493978499999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.135618350649992 -63.4713561426033976 21.9867915267922989 -12.7763548826225009 100001 5732.5 5636.20996 5789 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364784864465024 2481364784864465024 590837350 2015.5 25.0757625895830003 0.804197943398601955 -3.33339925912344981 0.765187785559397038 0.295759206485496973 0.942346202611473949 0.313854100000000025 3.03739058982780996 1.74326215676727991 0.579115859253869991 1.40880589946889989 0.332437780000000016 0.347572619999999999 -0.0544579659999999965 0.128080300000000008 0.113597279999999995 0.0533170479999999988 0.268115820000000005 -0.0493402630000000023 0.11010984 0.168157520000000005 122 0 122 0 2.20454239999999979 153.266998 1.95228085193078993 1.0824690840681499 31 false 0.0328512269999999967 1.83277129752041001 0.263877054976008996 0.0528166099999999999 14 10 1.56583059999999996 0 15 false 121 109.768998420925001 1.66899520746103991 65.7695007 20.5871659999999999 12 89.229165119708199 10.4913651700525001 8.5050100000000004 20.4751200000000004 13 85.6253635378505038 8.9280678483120095 9.5905819999999995 19.930413999999999 1.59293170000000006 0 0.544706339999999956 -0.112045290000000006 0.656751630000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.181316300389 -63.4926300552577985 21.9853056882975011 -12.8057958306158 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364819224073088 2481364819224073088 1487714757 2015.5 25.0772484131905991 0.775425648431442016 -3.32328146618523013 0.74339277723011099 -0.820571435571732954 0.811293932239619986 -1.0114354000000001 4.12878728770180992 1.89315136492934011 -26.4531217446559985 1.61094429427255004 0.33413967 0.15731864000000001 -0.449682829999999978 -0.0663531349999999936 0.228029029999999994 0.0165373979999999983 -0.35838753000000001 0.230683919999999987 -0.0925815200000000005 0.247927299999999989 112 0 112 0 -0.166915850000000004 103.921997 0 0 31 false 0.0479633799999999999 1.79146213353997008 0.220154417118527013 0.051363062000000001 13 8 1.78886100000000003 0 13 false 110 125.456128734272994 1.12103477696986009 111.911003 20.4421369999999989 11 57.4678886164229965 9.16991616343753968 6.26700259999999965 20.9528260000000017 12 136.200329349187996 8.06293762060112051 16.8921470000000014 19.426476000000001 1.54371269999999994 0 1.5263500000000001 0.510688800000000054 1.01566120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.174766102814999 -63.4828310479145017 21.9905526608461983 -12.7969419705357002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364887943551744 2481364887943551744 832055665 2015.5 25.0762945767326002 0.155659231764270989 -3.31636182059158013 0.122193780689131004 3.11892440863576015 0.185602171286779999 16.804354 38.6740802516548996 0.315256042743400022 -19.7042545275545002 0.207570149208941013 0.21147357 0.377335250000000011 -0.0572814000000000031 0.157240359999999996 -0.0278665139999999985 0.0919833199999999934 0.227050129999999989 0.0232594890000000012 0.172598050000000003 0.158107770000000009 167 0 164 3 3.33595560000000013 225.373993 0.555909283932706 2.86004344359235985 31 false 0.792673500000000031 1.23672349643792989 0.0390385011414532967 0.0402837299999999968 19 10 0.281613700000000022 0 19 false 162 1164.87176208044002 2.17876898908959982 534.646973 18.0226700000000015 18 198.975573327363009 8.27415393930754917 24.0478459999999998 19.6043899999999987 19 1574.00848020374997 19.9782449882616007 78.7861249999999984 16.7694019999999995 1.52204230000000007 0 2.83498759999999983 1.58171839999999997 1.25326920000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.166295792316987 -63.476958738725699 21.9922668488081001 -12.7901600906710993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361864286571136 2481361864286571136 452263030 2015.5 25.0924977723742018 0.753738184456814952 -3.33211126920626999 0.581861928515347016 1.5849205565428901 0.891968639640830951 1.77687919999999999 -13.5152343464670999 1.36011726258702992 -26.5901934156683986 1.04701206955165005 0.220925900000000008 0.539598200000000028 -0.094107135999999994 0.133594199999999996 0.020354487000000001 0.0693387240000000044 0.176556500000000005 0.0479028520000000027 0.12848234 0.189428199999999991 123 0 121 2 2.59181619999999979 159.300003 1.98843589959223999 1.86199535794548998 31 false 0.0495891499999999985 1.48541064115048993 0.192032983490786013 -0.0208546800000000004 14 10 1.222634 0 15 false 120 154.445492390862995 1.23714899202058004 124.839996 20.2164269999999995 12 44.5261130786827977 8.22176772674418999 5.41563749999999988 21.229849999999999 14 202.534873568436012 9.67567886037297065 20.9323699999999988 18.9956700000000005 1.5996646000000001 0 2.2341804999999999 1.01342390000000004 1.22075650000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.214026843651993 -63.4844091922862006 22.0017146920352005 -12.8107713927069007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362242243695872 2481362242243695872 1239420988 2015.5 25.1032821927258993 1.24745350158778989 -3.32138271547380004 1.58999735875505999 0.991914109107310038 1.52766037864138005 0.649302799999999958 2.62807700761179008 2.52019691815657021 -6.22155248416414963 2.92282063792218993 0.483827679999999982 0.473204879999999994 -0.0798496000000000067 0.00141987680000000009 0.505932900000000019 -0.0473503320000000019 -0.0483275579999999996 -0.0938324559999999946 0.0152985559999999996 0.110732294999999994 56 0 55 1 -0.350461699999999987 45.9435997 0 0 31 false 0.0276801139999999987 1.32329199471849002 0.415661843781889973 0.0264705299999999991 7 6 2.60316850000000022 0 7 false 57 83.4624461038052061 1.3657714307106299 61.1100998 20.8846379999999989 5 51.9154282278874035 16.3228901587414015 3.18052899999999994 21.0631470000000007 5 59.105062031878802 8.34226990211332975 7.08500960000000024 20.3328589999999991 1.33018489999999989 0 0.730287550000000008 0.178508759999999989 0.551778800000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.225728991202999 -63.4701366043335966 22.0160390519068017 -12.8047788937752998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362242245235200 2481362242245235200 933932654 2015.5 25.1073185485889994 4.83058520935824998 -3.3176822921441298 13.7045221723594999 \N \N \N \N \N \N \N -0.824434039999999979 \N \N \N \N \N \N \N \N \N 50 0 47 3 -1.01420639999999995 32.8049011 0 0 3 false 0.0174552800000000001 \N \N 0.223146399999999995 6 4 1371.03970000000004 0 6 false 52 64.5897148894646023 2.26443936119247002 28.5235004 21.1629579999999997 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.230403988391004 -63.4650799732756994 22.0212808664517006 -12.8028286376533007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365270196342400 2481365270196342400 1457995391 2015.5 25.0802412811881013 1.17669560767406001 -3.3080671104247199 1.7541974821827 \N \N \N \N \N \N \N 0.760031499999999971 \N \N \N \N \N \N \N \N \N 105 0 104 1 1.58985259999999995 122.329002 2.02778185306276981 1.10866975388865008 3 false 0.0338252669999999991 \N \N 0.209357629999999989 12 7 4.40203569999999988 0 12 true 103 111.048770773067005 1.09229315991805009 101.666 20.5745809999999985 10 81.2435066768698988 10.7711003090819002 7.54273029999999967 20.5769160000000007 9 90.8279106702592003 11.2837332752561004 8.04945599999999928 19.8663710000000009 1.54951210000000006 0 0.710544599999999971 0.00233459469999999997 0.708210000000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.16646225501799 -63.4677760828767035 21.9991636625856017 -12.7839078330106002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365334620158208 2481365334620158208 380568821 2015.5 25.1141998993083995 0.116675378325156995 -3.29336586818998001 0.0991208496684083951 0.572313951097039975 0.13940695171412501 4.10534700000000008 11.8476925011750005 0.235120998773320988 -23.5277580676835001 0.190263729490423 0.235629979999999989 0.394832730000000021 -0.0632054060000000056 0.0622195200000000004 -0.0347023570000000031 0.0155663899999999994 -0.0226297830000000005 0.0155417449999999992 0.129350319999999991 0.238735749999999997 150 0 150 0 1.81635419999999992 177.419006 0.158949182259673 0.298923354113700024 31 false 1.4027187000000001 1.64515156642759997 0.0305307771098877988 0.0814665559999999955 17 10 0.218030749999999995 0 17 false 149 1497.7337336477799 2.4537422683844099 610.388 17.7497790000000002 17 808.504925482523049 13.9134669505617996 58.1095240000000004 18.0821819999999995 17 1006.33558502522999 10.8440942231192992 92.8003400000000056 17.2550619999999988 1.21172440000000003 0 0.827119799999999961 0.33240318000000002 0.494716639999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.221345618263001 -63.4401381721358035 22.0370374153101984 -12.7827690344672007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365884376097408 2481365884376097408 320942652 2015.5 25.0289377307000009 0.674174289105458957 -3.28726541960400986 0.718221354356504027 -0.454886363744957001 0.76782604072710503 -0.592434169999999982 -0.146907497739419995 1.50238966472521995 -1.35417909051297003 1.73930167274639991 0.379322859999999984 0.334503200000000001 -0.0033295454999999999 -0.00151019190000000001 0.0166848320000000001 -0.00602662660000000041 -0.1651783 -0.105466779999999996 -0.0446852670000000007 0.466118750000000026 127 0 126 1 0.474291699999999983 127.835999 0 0 31 false 0.042553630000000002 1.31619288007587998 0.19475942805334101 0.0958587899999999993 15 9 1.73728299999999991 0 15 false 127 111.844780628557004 1.03556217551031993 108.003998 20.5668259999999989 12 79.7088745332807065 7.05492784553280039 11.2983259999999994 20.5976220000000012 11 68.9288820350305969 7.76880660277616997 8.87251900000000049 20.1659159999999993 1.32896459999999994 0 0.43170546999999998 0.0307960510000000014 0.400909420000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.042847546386014 -63.470463912191903 21.9582438288774995 -12.7456538679362996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365923031293184 2481365923031293184 660458153 2015.5 25.0366439847182001 0.0280192065301900009 -3.28192888987722986 0.022702474046774699 2.4840787477273798 0.0319593363746527026 77.726230000000001 10.3660419102823003 0.0583533842305413025 -44.8656349474270968 0.0478228870837184017 0.0788762640000000015 0.361777420000000016 -0.102815889999999993 0.0219834700000000015 -0.122476466000000006 -0.0352483060000000001 -0.0962780000000000025 0.0428493360000000018 0.139429209999999998 0.152393730000000005 168 0 165 3 -2.24549630000000011 122.540001 0 0 31 false 31.0488549999999996 1.50189290651648011 0.00736699084995834971 0.00190546969999999993 19 10 0.0624930100000000016 0 19 false 166 24522.9190937001986 13.5738154942874996 1806.63 14.7144359999999992 18 9944.4570792254799 17.5340388119005013 567.151550000000043 15.3574350000000006 17 21042.9358393602997 33.7549899380686966 623.402199999999993 13.9541540000000008 1.26360950000000005 0 1.4032811999999999 0.642999650000000034 0.760281560000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.053457773994012 -63.4623890115447011 21.9675952262283012 -12.7435379386429997 100001 4865.56006 4672.5 4979.4502 \N \N \N \N \N \N 200111 0.595233299999999965 0.568315739999999958 0.645437660000000024 0.178895949999999998 0.173393500000000006 0.18439839999999999 +1635721458409799680 Gaia DR2 2481365162822914688 2481365162822914688 390939463 2015.5 25.0539343706473012 1.87030132645332992 -3.28999740706071986 2.07514574500893012 \N \N \N \N \N \N \N -0.265050769999999991 \N \N \N \N \N \N \N \N \N 60 0 59 1 0.583192939999999993 59.5755997 0.107214242686114999 0.00167520107119168002 3 false 0.0208047309999999999 \N \N -0.0613480200000000031 8 5 6.50913520000000023 0 8 false 62 72.3398968871298962 1.46946808503772997 49.2285995 21.0399199999999986 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.096105734855001 -63.4624514209159969 21.9809846261126012 -12.7574135596640996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365510714451968 2481365510714451968 487815313 2015.5 25.0903858165051012 0.0361780164347115032 -3.2827145579889101 0.0294282570113623999 1.00085174352055994 0.0415982849541709013 24.0599290000000003 13.3589396538173997 0.0724136924479173022 -14.2848631442917995 0.0586373478738689002 0.128219649999999991 0.376533449999999992 -0.157495980000000008 0.0632932400000000006 -0.0347295660000000034 0.0213846799999999997 -0.195639200000000013 0.078192874999999995 0.129027219999999998 0.184823719999999997 149 0 149 0 -1.97989750000000009 112.379997 0 0 31 false 19.1114789999999992 1.55915641373934011 0.00993307370305900918 0.0418738800000000022 17 9 0.0741081900000000043 0 17 false 149 15268.0199110424001 8.22511440484881007 1856.27002 15.2289089999999998 15 7345.98730096057989 16.9032171422737996 434.591060000000027 15.6862630000000003 15 11424.6407203205999 29.9318012597297987 381.689059999999984 14.6173129999999993 1.22940809999999989 0 1.06894969999999989 0.457354550000000026 0.611595149999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.163087286941987 -63.4405171683264015 22.0184168528586994 -12.7640896563836996 100001 5064.83008 5003.68994 5279.6499 0.485000014 0.258599997 0.656099975 0.238499999 0.140699998 0.319499999 200111 1.05176580000000008 0.967917999999999945 1.07762589999999991 0.655831599999999959 0.594109239999999983 0.717553899999999967 +1635721458409799680 Gaia DR2 2481365613793666944 2481365613793666944 413083634 2015.5 25.0931249807961017 0.632034178556761028 -3.28189187441402996 0.657145138732003975 2.29717736513517012 0.705324601207309998 3.25690800000000014 6.05979346015606968 1.37305433679474009 -10.5374625982842005 1.47114602037691 0.420296669999999983 0.357326750000000026 -0.219149900000000009 -0.107359239999999995 0.147745330000000008 -0.0837102499999999999 -0.354214670000000009 0.0133021389999999993 -0.0685449699999999967 0.415320069999999986 119 0 118 1 2.6895106000000002 157.613007 1.69113024057933004 1.63543372228339989 31 false 0.0592374430000000007 1.5049389380757201 0.184140250831170998 0.104368630000000004 14 9 1.5067273000000001 0 14 true 118 165.901933977167005 1.38921518208223005 119.420998 20.138736999999999 10 46.3418709851207993 12.8624572959157 3.60287859999999993 21.1864549999999987 13 242.397057961661005 11.2238533171731998 21.5965999999999987 18.8006020000000014 1.74041929999999989 0 2.38585279999999988 1.04771799999999993 1.33813479999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.167856838848991 -63.438617964629799 22.0213341022806013 -12.7643352460186996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360318098328448 2481360318098328448 1513288934 2015.5 25.1219225627596998 3.18739874382298982 -3.41268548162015994 2.94015024362487987 \N \N \N \N \N \N \N 0.189789180000000002 \N \N \N \N \N \N \N \N \N 97 0 96 1 30.3369800000000005 1416.27002 18.4528747677600009 87.5265627463429041 3 false 0.00261747000000000021 \N \N 0.120724960000000006 12 9 8.34580599999999961 0 12 false 103 114.855718564423995 1.41884483219700996 80.9502029 20.537984999999999 11 140.784386533722994 10.3831930135759993 13.5588719999999991 19.9800010000000015 10 375.114914068890982 12.5530852264718007 29.8822879999999991 18.326509999999999 4.49171639999999961 0 1.65349199999999996 -0.557983400000000018 2.21147539999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.350186637392 -63.544971177247902 21.9991785513977014 -12.8964971884047994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352458066688 2481360352458066688 1620471269 2015.5 25.1358134191380991 0.827104394521273045 -3.41318329288045996 1.20462875544902004 0.086083524555202795 0.82659921391640101 0.104141793999999996 -2.08661377232518985 2.16684615091705979 -1.75310703108585009 2.90922953472363011 0.685197830000000008 -0.0481965840000000006 -0.473340570000000016 -0.530522900000000019 -0.286460879999999973 -0.596937999999999969 -0.783491550000000037 0.208371090000000009 0.285795599999999983 0.766384599999999971 98 0 97 1 -0.326296499999999989 87.0006027 0 0 31 false 0.0566198099999999996 1.49514812673900011 0.234515687990369009 0.150803199999999998 11 8 3.19169880000000017 0 11 false 97 135.995319005546008 1.22514500250835989 111.002998 20.3545550000000013 11 80.2193881079484044 10.8744478669201001 7.37687000000000026 20.5906899999999986 11 108.515617658837996 10.6842153109289999 10.1566299999999998 19.6731900000000017 1.38780510000000001 0 0.917501450000000052 0.236135480000000009 0.681365969999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.378840094001987 -63.5395357266513017 22.0122086388725009 -12.9020826936717992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360558616499584 2481360558616499584 1357248025 2015.5 25.1229061704672993 0.23813563265314 -3.3962561785696801 0.215339328257317997 0.398490612532774013 0.269671878892539019 1.47768689999999991 1.81792868495940008 0.509848750365193948 -3.22048570492292985 0.383805387668171016 0.341445500000000013 0.298264099999999976 -0.145804299999999998 0.157341060000000005 0.00623385239999999993 0.160415780000000008 0.146587610000000007 0.0911698100000000039 0.079922900000000005 0.300731599999999988 122 0 121 1 1.89541099999999996 146.550995 0.608295107185257033 1.34490295608869004 31 false 0.424346830000000008 1.46038049722933994 0.0706241101368418056 0.122367729999999994 14 10 0.472339779999999987 0 14 false 121 620.856868598876986 1.64651617508155002 377.072998 18.7058870000000006 12 256.446967991211977 8.12279020025641074 31.5712909999999987 19.3288939999999982 12 567.700317483314052 8.18004853180310043 69.4006040000000013 17.8766210000000001 1.3274353000000001 0 1.45227240000000002 0.623006799999999972 0.829265600000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.336542024264986 -63.5296768401374976 22.0063413536048991 -12.8815930555047995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352459675264 2481360352459675264 1667845269 2015.5 25.1431767007732994 2.0377782031920102 -3.40878068635927001 1.37443777862273997 \N \N \N \N \N \N \N -0.151594089999999987 \N \N \N \N \N \N \N \N \N 80 0 80 0 0.194895600000000002 76.7334976 0 1.16031142870231006e-15 3 false 0.0317686240000000022 \N \N 0.0558662269999999975 10 7 5.85039569999999998 0 10 false 81 98.0146494775113979 1.30614364183737997 75.0412979 20.7101380000000006 7 68.9844141470008054 30.3373120816318007 2.27391310000000013 20.7545099999999998 9 141.650874870395995 13.4747419787848006 10.5123250000000006 19.3838709999999992 2.14901849999999994 0 1.37063979999999996 0.0443725599999999984 1.32626719999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.389575567695005 -63.5324278986707967 22.0208843676326005 -12.9007068756592993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352458067328 2481360352458067328 236369956 2015.5 25.1378701352705995 0.493132269028619008 -3.40784539463997982 0.376302136605054016 -0.287129119923568987 0.549073407047248052 -0.522933960000000031 1.66889831511743991 1.28932172804316991 -2.22409060095318978 0.649156844342246964 0.294984299999999977 -0.101015779999999999 -0.53050052999999997 0.0758242699999999992 -0.176600900000000005 -0.0591042599999999987 0.186019870000000004 0.41166678000000001 0.169353510000000013 0.178274270000000012 112 0 110 2 2.26866220000000007 140.615005 0.924234255282029959 0.947986358605659052 31 false 0.139741929999999986 1.83874549514291008 0.109939211541893997 0.0569416879999999972 13 8 1.18086479999999994 0 13 false 110 293.620034328737006 1.44170546988402992 203.662003 19.5189020000000006 11 206.141263197955993 12.1783858262232005 16.9268129999999992 19.5659750000000017 11 216.358199027522005 16.8342460996273005 12.8522649999999992 18.9239859999999993 1.43893270000000006 0 0.641988749999999997 0.0470733639999999995 0.594915399999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.377924067090987 -63.5338311988120026 22.0161889106916 -12.8978808719532996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352459671040 2481360352459671040 1575602994 2015.5 25.1397952162084017 12.2078442416436008 -3.39956673121663 4.06495134119180968 \N \N \N \N \N \N \N 0.846370940000000016 \N \N \N \N \N \N \N \N \N 62 0 62 0 2.31855399999999978 84.6414032 0 0 3 false 0.0167640559999999994 \N \N -0.044957045000000001 7 5 1108.92820000000006 0 7 false 62 71.0347239074257004 1.84002412273867999 38.6053009 21.0596889999999988 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.373940248733987 -63.5255200048449993 22.0211582418320013 -12.8908977054739005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360386819444736 2481360386819444736 1454384443 2015.5 25.1657933062372017 15.1530271657987008 -3.40303984587712005 8.79136722006122007 \N \N \N \N \N \N \N -0.490246799999999983 \N \N \N \N \N \N \N \N \N 43 0 43 0 -1.25663189999999991 27.5228004 0 0 3 false 0.0176787490000000005 \N \N -0.107441889999999998 5 5 156.55331000000001 0 5 false 44 78.5802136385077006 1.74699139626702005 44.9803009 20.9500829999999993 3 13.9887782239187004 1.79529006586026996 7.79193200000000008 22.4869379999999985 5 39.731332659628201 9.75700039178017065 4.0720850000000004 20.764088000000001 0.683634040000000054 0 1.72285080000000002 1.53685570000000005 0.185995099999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.429939514707996 -63.5176339829642984 22.044583257494299 -12.9037113934068994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348640082914304 2481348640082914304 1279458071 2015.5 25.1727476230988998 2.90670634834394015 -3.41037482813631021 2.10652672160524013 \N \N \N \N \N \N \N 0.116302035999999998 \N \N \N \N \N \N \N \N \N 115 0 114 1 58.5566600000000008 5265.29004 16.5060473944034989 212.266800808418992 3 false 0.00339595999999999995 \N \N 0.0149476690000000002 15 10 6.12996400000000019 0 15 false 127 182.112537380973009 2.27460622734573015 80.0633011 20.0375160000000001 10 207.452548609556004 6.8459197142599999 30.303094999999999 19.5590919999999997 12 451.895262854295993 10.3942041774039993 43.4756969999999967 18.1243249999999989 3.62055129999999981 0 1.43476680000000001 -0.478424069999999979 1.91319079999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.451028452059006 -63.5213176458704964 22.0484223207381014 -12.9130917355844996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360661695856128 2481360661695856128 600784486 2015.5 25.1380607959106008 1.06188565152437997 -3.38770048177531979 1.08050567724272994 1.37391973438112003 1.05653432341982989 1.30040240000000007 -1.06302205749169998 2.68493145000521993 -1.15286481630179005 2.56024692620332006 0.468879729999999995 0.0684907000000000016 -0.54772763999999996 -0.250663250000000004 0.0769945900000000016 -0.234547200000000011 -0.465736419999999984 0.281436740000000019 0.0488204839999999973 0.380981620000000021 84 0 84 0 0.129800830000000006 79.9688034 0.348389897882505017 0.0302726052762599986 31 false 0.0360258599999999998 2.12965594764646982 0.300166928949663014 0.178602549999999999 10 7 2.80721739999999986 0 10 false 83 98.4670457542324016 1.2055386663196701 81.6789017 20.7051400000000001 6 65.1735024224841055 3.04817486007353988 21.3811570000000017 20.8162100000000017 9 87.414979255335993 7.74813133404278975 11.2820719999999994 19.9079550000000012 1.54963999999999991 0 0.908254600000000023 0.111070630000000004 0.797184000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.359126641899991 -63.5155110666828975 22.0240044011586988 -12.8792311829816004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362001725526272 2481362001725526272 33482569 2015.5 25.1366830664467997 0.353034744634754982 -3.32526803085132983 0.312041025626649982 0.759256838219047991 0.421399212100059983 1.80175200000000002 1.86585081648015993 0.696255565770867002 -1.69426271274426998 0.53403298223756801 0.341129300000000024 0.414828360000000007 -0.0554516999999999996 0.162876190000000004 0.0738238400000000017 0.106901930000000006 0.194522260000000002 0.031124756 0.145030479999999989 0.233604699999999998 147 0 143 4 2.56569959999999986 184.354004 0.74332519848801204 0.820826843265014983 31 false 0.163977099999999987 1.28248392577633008 0.0936858099318439025 0.113481819999999997 17 9 0.633552969999999993 0 17 false 143 302.675349657954996 1.20001434504037996 252.225998 19.4859240000000007 14 94.1641821779417967 6.72473439939635043 14.0026620000000008 20.4166740000000004 13 359.282881449212027 8.35863022144643075 42.9834630000000004 18.3733299999999993 1.49813010000000002 0 2.0433444999999999 0.930749900000000019 1.11259459999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.297039094074989 -63.4595507331494986 22.0463455108545006 -12.8207054212972 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362383978260992 2481362383978260992 147034062 2015.5 25.1256344010867991 0.109048846457305004 -3.3041796668863701 0.0877185794136472047 -0.0761681907521171014 0.130963734048345992 -0.581597570000000008 0.377429550718204998 0.230561129599587994 -5.45433894257580043 0.162369655482458991 0.204739119999999997 0.31422159999999999 0.0412625000000000006 0.0779582999999999943 -0.0549008659999999996 0.0355519200000000007 0.0579809729999999982 -0.0706766300000000042 0.155846399999999996 0.173678369999999999 150 0 150 0 1.16848789999999991 165.095001 0.201132598635764992 0.597849955431473012 31 false 1.64089189999999996 1.72434454779748991 0.0279845975054668003 0.0292373369999999987 17 10 0.208463979999999993 0 17 false 149 1804.01445551665006 3.54379724110156014 509.062988 17.5477659999999993 15 1182.22151405385989 12.2176854505821009 96.7631300000000039 17.6696409999999986 15 967.814299021157012 13.0862442725614994 73.9566099999999977 17.2974400000000017 1.1918063000000001 0 0.372201920000000019 0.12187576 0.25032616000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.254709217207989 -63.4451127581852035 22.0438204772130995 -12.7970343088940002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362379682654720 2481362379682654720 613778630 2015.5 25.1276867089855003 0.481025858443392018 -3.30472644692730988 0.476717447627755975 0.564784017144880024 0.564849539242486043 0.999883999999999995 0.840123363624384001 1.01147644966464001 -1.73526609762508 0.799685585859019055 0.455047550000000023 0.306907150000000017 0.146849649999999998 0.188803140000000008 0.103559053999999998 0.132261590000000012 0.258261379999999985 -0.141921949999999991 0.140756560000000003 0.275861259999999997 123 0 123 0 -0.107378329999999994 115.698997 0 0 31 false 0.097059919999999994 1.82739946561365008 0.129211913157826014 0.119898279999999996 14 10 0.944108660000000044 0 14 false 122 195.37391918873999 1.27422483482321991 153.328003 19.9611990000000006 8 123.986197979077005 6.17195839546200009 20.0886299999999984 20.117954000000001 9 140.436055012355013 8.61353148420293024 16.3041209999999985 19.393222999999999 1.35341629999999991 0 0.724731450000000055 0.156755449999999991 0.567976000000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.259379443975007 -63.4447415757271003 22.0455659578340999 -12.7982991128193007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362383978260608 2481362383978260608 503386487 2015.5 25.1276883436890017 0.0696360988048263935 -3.30144787163386022 0.0581334485346090002 0.533145997957705009 0.0819568384361739066 6.50520470000000017 3.84314103128135987 0.135733988145367995 -12.8013669184318992 0.105506451514071994 0.253150800000000009 0.426884079999999999 -0.0731495250000000069 0.104736419999999997 0.00704517800000000003 0.0407152200000000034 0.0204140020000000005 0.0576181899999999997 0.169484479999999993 0.222704960000000007 148 0 147 1 2.65315250000000002 190.755997 0.197233811234272 1.36642918102906008 31 false 4.43049529999999958 1.54815920123955997 0.0175181976853080006 0.0944782049999999957 17 10 0.12801978 0 17 false 143 4753.46674376876035 3.91025419700741983 1215.64001 16.4958400000000012 16 2353.14870944518998 20.9878502498029995 112.119569999999996 16.9222639999999984 16 3503.78908374952016 21.1881060836664012 165.365839999999992 15.9005749999999999 1.23214029999999997 0 1.02168940000000008 0.426424030000000009 0.595265399999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.256280863701988 -63.4417700555470034 22.0468091495736012 -12.7952529093590002 100001 5267.20996 5094 5384.66992 0.303200006 0.241999999 0.503099978 0.157800004 0.108900003 0.235499993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362345322916992 2481362345322916992 126952047 2015.5 25.1492021062124991 0.0892905237200443958 -3.30314077158922981 0.088575107017870594 0.970992665556829948 0.108111197780317997 8.98142499999999977 -4.34195230879183036 0.212657911783107001 -22.781438650793401 0.164646652202515009 0.298131939999999984 0.137500349999999993 -0.0511201500000000031 0.248024119999999987 -0.333103450000000023 0.36541267999999999 0.45028317000000001 -0.125294299999999997 -0.193278969999999994 0.433976050000000002 130 0 127 3 0.913171650000000001 136.108994 0.204574388262974 0.999790355913539042 31 false 3.12148570000000003 1.4255043863661101 0.0231160130256371013 0.122141089999999994 15 9 0.213670849999999996 0 15 false 127 3232.23772589642022 3.91957389849831994 824.640015 16.9146080000000012 13 1174.36726513905001 8.89749940489651081 131.988460000000003 17.6768779999999985 14 3054.78056836001997 10.3245992238563993 295.874019999999973 16.0494689999999984 1.3084271999999999 0 1.62740900000000011 0.762270000000000003 0.865138999999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.301399834427997 -63.4342126569012024 22.0666366766789999 -12.8047575183347995 100001 4355.33008 4178.04004 4512.08008 \N \N \N \N \N \N 200111 0.755570100000000022 0.703986000000000001 0.821055349999999962 0.18506742000000001 0.142820179999999991 0.227314650000000007 +1635721458409799680 Gaia DR2 2481363822791793792 2481363822791793792 1339160141 2015.5 25.1590426260812983 1.77091194292310994 -3.30122602763323014 2.25389077886786016 \N \N \N \N \N \N \N 0.56024839999999998 \N \N \N \N \N \N \N \N \N 50 0 50 0 -1.07960860000000003 34.9490013 0 0 3 false 0.0215839900000000008 \N \N 0.263035030000000003 6 5 6.40739600000000031 0 6 false 51 75.7118420411302964 1.6383387572414001 46.2126007 20.9904559999999982 4 72.5298108617909065 22.0552259129778996 3.28855440000000021 20.7000959999999985 5 45.1985527284304993 8.22065099936937926 5.49817200000000028 20.6241100000000017 1.55495310000000009 1 0.0759868600000000033 -0.290359499999999993 0.366346359999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.319481545515004 -63.4283156831780985 22.0767245367450009 -12.8066055490665001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362036085263488 2481362036085263488 1352235618 2015.5 25.1608888023061006 0.345709123165902021 -3.32978009744758019 0.268052877506468001 0.392210161615561992 0.432969527403032017 0.905860899999999969 10.3766323496887001 0.607187530245049012 -7.69606692403676007 0.463590592097108012 0.159485060000000012 0.540146470000000045 0.0148603450000000005 0.165771229999999992 -0.161550100000000002 0.137928560000000006 0.229349150000000002 -0.00321582220000000019 0.102714814000000002 0.273090720000000009 139 0 138 1 2.71014799999999978 181.457001 0.959968551223889022 2.04645882231061016 31 false 0.216396379999999999 1.51504847692420008 0.0780148258106573983 0.0652474299999999952 16 10 0.559022369999999991 0 16 false 137 412.447476377447003 1.58810911748908001 259.709991 19.1499440000000014 14 178.161855830414993 8.87801116366705045 20.0677659999999989 19.7243519999999997 14 388.942586895394982 15.5724821048211997 24.9762740000000001 18.2872069999999987 1.37497380000000002 0 1.43714520000000001 0.574407600000000018 0.862737659999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.350295391461003 -63.453393792818197 22.0676682414556993 -12.8338223375236993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362070446621440 2481362070446621440 389582686 2015.5 25.1634480158804017 1.53837281406031989 -3.32023548650378997 2.57736122633572018 \N \N \N \N \N \N \N 0.586836759999999957 \N \N \N \N \N \N \N \N \N 60 0 60 0 0.849007599999999973 63.655899 1.92288291284281998 0.476596529096621979 3 false 0.0227598729999999999 \N \N 0.135736080000000009 7 6 6.6924330000000003 0 7 false 60 83.405767244897703 1.42586367008457993 58.4948997 20.8853760000000008 4 57.3054624468476987 18.4336577717618013 3.10874080000000008 20.9558980000000012 6 92.5226535661092981 10.2526836904724004 9.02423800000000043 19.8462999999999994 1.79637599999999997 0 1.10959819999999998 0.0705223100000000047 1.03907590000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.346412638964011 -63.4436667765931972 22.0737179775365 -12.8258956412390006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268852474972672 2481268852474972672 1344352109 2015.5 24.9146565701223004 5.23640038517657036 -3.42262030648491011 5.36833665358113965 \N \N \N \N \N \N \N 0.52821640000000003 \N \N \N \N \N \N \N \N \N 96 0 95 1 23.9544099999999993 942.510986 16.0921498365059996 48.4439543848754965 3 false 0.00312893279999999991 \N \N 0.0791464899999999999 11 7 19.6486449999999984 0 12 false 98 130.197792077143987 1.8246911442668301 71.353302 20.4018569999999997 7 174.726296731954989 13.5523276912998991 12.8927145000000003 19.7454929999999997 6 343.199084977583027 13.5544276414017997 25.3200719999999997 18.4230540000000005 3.977989 0 1.32243920000000004 -0.656364440000000049 1.9788036 \N \N 0 \N \N \N NOT_AVAILABLE 150.93773421668601 -63.6411837773242013 21.7982262993165001 -12.8292312953677001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268921194454528 2481268921194454528 4843001 2015.5 24.9006219784012011 0.824894351881771959 -3.41061833818970994 0.740071860158109995 -0.386872924112825978 0.862156697679206996 -0.448726919999999974 -0.421227364977190988 1.93919057814362006 -1.94683555972252997 1.93220950622311993 0.056904780000000002 0.148060109999999995 -0.372366760000000019 0.0674452400000000035 -0.0639969299999999935 0.0412546099999999971 -0.382487240000000006 0.149522469999999991 -0.0234397870000000001 0.210883199999999993 132 0 131 1 2.86521099999999995 176.341003 2.87554664116848002 2.96315737240710009 31 false 0.032074883999999998 1.57917241879718007 0.215740553505221005 0.0231675099999999988 15 9 1.88338910000000004 0 15 false 132 124.863458905062998 1.34969927124191003 92.5121002 20.4472769999999997 11 99.7345526733808043 12.3093753180358991 8.10232449999999993 20.3542750000000012 11 71.3669277484656988 11.9388795226441999 5.97769070000000013 20.1281779999999983 1.37030859999999999 0 0.226097099999999995 -0.0930023199999999994 0.319099430000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.897768691468002 -63.6361439509948994 21.7894324390697989 -12.8128974809482994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269681404116992 2481269681404116992 127075201 2015.5 24.8922750564118012 0.0389554625209966032 -3.40210723253095004 0.027768275011388701 0.552726378113664985 0.0428757792309119035 12.8913430000000009 0.0254560450680633987 0.0801459622132515009 -1.41004948710506994 0.0571936317137535996 0.0685393660000000043 0.350870369999999987 -0.178663220000000011 0.0469080799999999978 -0.0721878299999999945 0.00349167760000000009 -0.220942269999999996 0.0598055119999999982 0.124529360000000006 0.162768080000000009 139 0 138 1 -0.0535819459999999984 131.464996 0 0 31 false 22.1815469999999983 1.6189683503385901 0.00879142178888229001 -0.0161083960000000005 16 10 0.0805391500000000038 0 16 false 138 18226.7197008248004 11.1605940785139008 1633.13 15.0365939999999991 14 10295.6700791719995 30.3502234935712991 339.228819999999985 15.3197519999999994 14 11740.5050754912008 33.3920506591872979 351.595799999999997 14.5877029999999994 1.20900389999999991 0 0.73204899999999995 0.283157349999999974 0.448891639999999981 \N \N 0 \N \N \N NOT_AVAILABLE 150.872714569832993 -63.6318939577246994 21.7847237493710999 -12.8019074031074993 100001 6066.12012 5828.43994 6354.33008 0.330199987 0.197400004 0.463499993 0.172499999 0.109200001 0.229699999 200111 1.38056179999999995 1.25816560000000011 1.49545430000000001 2.32514639999999995 1.91892580000000001 2.7313670000000001 +1635721458409799680 Gaia DR2 2481269715763855232 2481269715763855232 813196668 2015.5 24.9042963805081996 0.0538392108236641978 -3.40028118714191985 0.0394310623386497014 0.617357968622800013 0.0575779649979773975 10.7221220000000006 12.6429256847424991 0.117187771895957998 -5.88866343210781018 0.0809047747257169991 0.0377150360000000004 0.260312019999999977 -0.293433930000000009 0.0833740099999999984 -0.128627259999999993 0.0674150399999999955 -0.128697709999999993 0.125731559999999992 0.103526755999999998 0.151249970000000011 156 0 155 1 2.32266430000000001 193.143005 0.143400284532062994 1.2286326297083201 31 true 8.03712299999999935 1.58553676814343003 0.0120371124504338005 -0.0072186730000000001 18 10 0.113352289999999994 0 18 false 155 8247.29154942137029 6.48564401548765002 1271.62 15.8975880000000007 15 4271.25227497408014 22.7137846763845985 188.046699999999987 16.2749999999999986 15 5728.73702791423966 21.3099140945202983 268.829650000000015 15.3667730000000002 1.21251799999999998 0 0.908226969999999967 0.377411839999999998 0.530815099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 150.895540262306014 -63.6252200945020974 21.7968493725009012 -12.8046510778730003 100001 5502.72998 5354.06006 5921.5 0.169499993 0.0874999985 0.291099995 0.0670000017 0.0295000002 0.143099993 200111 1.02836599999999989 0.888056599999999974 1.0862676 0.873580460000000003 0.697910249999999954 1.04925059999999992 +1635721458409799680 Gaia DR2 2481268852477286144 2481268852477286144 1023160334 2015.5 24.9194230890302997 0.775663111095270974 -3.41818111117301004 1.16540096666744009 2.38585383457101008 0.98785402618880902 2.41518860000000002 26.0151806711639999 2.04088895387546998 -5.54056592283199034 2.92495829982193989 0.38213813000000002 0.152614849999999996 -0.460877719999999991 -0.321935829999999978 -0.442209200000000024 -0.610019800000000001 -0.841790700000000003 0.429856269999999985 0.425282270000000018 0.721056040000000009 115 0 115 0 -0.447957959999999988 102.849998 0 0 31 false 0.0517440960000000033 \N \N 0.0755968840000000031 13 8 3.12271760000000009 0 13 false 116 138.421150629533997 1.35523113074988011 102.138 20.3353600000000014 7 49.6619511923048975 4.29717239937744999 11.5568904999999997 21.1113280000000003 10 179.740993530706987 5.38899391011796958 33.3533479999999969 19.1253010000000003 1.65728249999999999 0 1.98602680000000009 0.775968549999999979 1.21005819999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.943279397731004 -63.6351602818235023 21.8044443219515003 -12.8268675205285003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346351872 2481269986346351872 163061008 2015.5 24.884045915905201 0.636651593827772033 -3.38218306119747991 0.528391314123159983 -0.144686563677011992 0.717937423498092975 -0.20153088999999999 25.3387487811866983 1.44038826394781005 -7.28385699729563019 0.951471697808924044 0.139702920000000008 0.196958259999999996 -0.218230530000000006 0.194654880000000002 -0.225993109999999997 0.282227000000000006 0.320585759999999997 0.0126543709999999993 -0.0707339349999999978 0.262870300000000001 142 0 142 0 5.12383800000000011 239.552002 2.37023655916601017 4.0680051055881199 31 false 0.0546377150000000034 1.48910769364178996 0.150409506196319986 0.0741721699999999956 16 10 1.31077379999999999 0 16 false 139 180.843845596400001 1.16958576004917991 154.621994 20.0451070000000016 12 69.928119362325404 9.87538004638068934 7.08105600000000024 20.7397600000000004 14 185.728054250252001 5.87181349903432004 31.6304419999999986 19.0897250000000014 1.41368469999999991 0 1.650034 0.694652559999999974 0.955381400000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.837187682814005 -63.6172189617668025 21.7844577788427998 -12.7803577627921001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986349445504 2481269986349445504 1305264539 2015.5 24.8846395689662003 1.33036175830887005 -3.38162665244102012 0.893351354338628001 0.0799441438439535967 1.15868878347798998 0.0689953600000000056 34.6499189902647018 3.42251036584496005 15.2258276435037008 2.67044780583074992 -0.203324260000000007 -0.315171929999999989 -0.675816199999999978 0.381064999999999987 0.134283020000000003 0.390384229999999999 -0.249126459999999994 0.383642819999999996 -0.396996200000000021 -0.0834939259999999961 106 0 106 0 3.69509389999999982 162.229004 2.55277390954362993 1.55520678400135992 31 false 0.0290363619999999996 1.63418575236780006 0.303259376175318007 0.0949375300000000061 12 8 3.21688490000000016 0 12 false 105 102.241078559732998 1.08940706577966995 93.8501968 20.6643030000000003 4 24.4262761233547003 21.4708377216477011 1.13764890000000007 21.8817440000000012 6 149.509882336577988 10.1302977332980007 14.7586860000000009 19.3252449999999989 1.7012354999999999 0 2.55649950000000015 1.2174415999999999 1.33905790000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.837877198166012 -63.6164660298068014 21.7852334327420003 -12.7800601216820002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346352768 2481269986346352768 1558824202 2015.5 24.8793890941915983 0.192451726552113012 -3.3795897841055198 0.146815710964360996 0.980185533165524037 0.21754860298312001 4.50559330000000013 -4.46914508761492968 0.420482163460899006 -9.01577920202479 0.260844248829320002 0.130977910000000003 0.262432749999999992 -0.212323960000000006 0.165350749999999991 -0.163205039999999996 0.206797850000000005 0.242147129999999988 0.0436845240000000024 0.0210789439999999988 0.212088059999999995 141 0 141 0 14.8102140000000002 553.963013 1.04910462501919999 19.4534038953098012 31 false 0.640324699999999969 1.46826788617056003 0.0408630173666522031 0.0796579050000000011 16 10 0.379427730000000019 0 16 false 141 2276.47562024551007 4.68903443583154989 485.489014 17.2952079999999988 14 787.912492400096994 9.77298018322461992 80.6215200000000038 18.1101929999999989 16 2268.99046452695984 14.3905854281986993 157.671860000000009 16.3723400000000012 1.34282269999999992 0 1.73785400000000001 0.814985300000000024 0.922868699999999986 \N \N 0 \N \N \N NOT_AVAILABLE 150.825245535653011 -63.6168014133245023 21.7810132597330011 -12.7762284328745004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269780187918464 2481269780187918464 759712671 2015.5 24.8974200714859002 0.431015665409214987 -3.39149261224345011 0.343956778246313988 1.03521122129138998 0.467661429802937012 2.21359100000000009 11.2099874055925 0.942914053917695005 -10.0625097739867009 0.633907876345817023 0.129350080000000006 0.258632499999999987 -0.24474491000000001 0.17142542999999999 -0.0723893800000000032 0.213313269999999999 0.179281319999999994 0.0823840799999999984 0.0262485540000000003 0.184007929999999986 147 0 147 0 3.19907899999999978 202.177002 0.584072270418262041 0.338810509413644989 31 false 0.111973489999999995 1.26644915801200009 0.101813734628524999 0.0444837469999999971 17 10 0.848598359999999996 0 17 false 148 223.818685648291989 1.49493727213867 149.718002 19.8136249999999983 15 78.6963997255996048 10.6471218505169993 7.39133070000000014 20.6115020000000015 16 294.153725039023016 14.1966514211082 20.7199360000000006 18.590485000000001 1.6658579 0 2.02101700000000006 0.797876359999999951 1.22314070000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.873237055358999 -63.6201043631014969 21.7936443247603009 -12.7939464719936993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271468110511488 2481271468110511488 300862494 2015.5 24.8918283046606987 0.0298033426017741999 -3.37283351506001994 0.0239302465218719992 1.68235847525024007 0.0340360791798543991 49.4286799999999999 43.4642588700008972 0.0619667109330269 -3.1765381549525098 0.0540518826259277982 0.14164968 0.393031450000000004 -0.225198129999999996 0.0570909799999999995 -0.108662574999999997 0.104182120000000003 -0.0883785799999999983 0.0119703659999999996 -0.0545210839999999974 0.326988579999999973 142 54 141 1 1.29489480000000001 157.755997 0 0 31 true 159.138869999999997 1.61576188326513992 0.00725790884524649994 0.0796267199999999981 16 10 0.0572691259999999966 0 16 false 140 119156.035416433006 57.5357864160045978 2070.98999 12.9980755000000006 14 65219.7425520662 62.449447490956203 1044.36059999999998 13.3154400000000006 15 78708.4754608621006 81.8045175245255933 962.153140000000008 12.5218659999999993 1.207897 0 0.793574329999999994 0.3173647 0.47620963999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.844294251050002 -63.6054804435410972 21.7954057423111003 -12.7745462074824001 100001 6026.04004 5843.5 6565.33984 0.296000004 0.151999995 0.456099987 0.148000002 0.0649999976 0.225999996 200111 1.17598800000000003 0.990723970000000009 1.25060890000000002 1.64297120000000008 1.57888359999999994 1.70705869999999993 +1635721458409799680 Gaia DR2 2481271261952081536 2481271261952081536 1664435783 2015.5 24.9061211642361009 0.0500594959116801991 -3.37826748200901017 0.0375345459757311026 0.753044773614229945 0.0548328687603990977 13.7334560000000003 9.56582825601232933 0.106406385305977999 0.600072483894225961 0.0760219493773675037 0.0940357450000000039 0.317008100000000015 -0.27371435999999999 0.0730327800000000055 -0.0585819969999999968 0.056079722999999998 -0.116781769999999993 0.118212460000000005 0.0956634499999999971 0.156561900000000004 148 0 147 1 -1.32928200000000007 120.157997 0 0 31 true 9.98890800000000034 1.57950086330428996 0.0114773600088194996 0.0336176399999999972 17 10 0.103630945000000002 0 17 false 147 8313.30429547877975 6.34138604815292961 1310.95996 15.8889309999999995 14 4168.63119323023966 17.086800441127 243.967929999999996 16.301404999999999 13 6003.49714478853002 25.6562447989872986 233.997500000000002 15.3159089999999996 1.22359630000000008 0 0.985495569999999987 0.412473680000000009 0.573021899999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.878561245642004 -63.6044598822046012 21.8069366465879995 -12.7848733450002001 100001 5316.5 5258.97998 5361 0.149299994 0.0275999997 0.314099997 0.0885000005 0.0176999997 0.153999999 200111 0.91682224999999995 0.901663239999999977 0.936985700000000032 0.605015749999999963 0.509439949999999975 0.700591560000000002 +1635721458409799680 Gaia DR2 2481271227592343040 2481271227592343040 112652294 2015.5 24.9195692176567007 0.273886728784909994 -3.37719583107916987 0.203184659564915993 2.17387464043734013 0.296668562398215985 7.32762050000000009 -10.8312048973262005 0.608436650343163965 -31.1775046653288008 0.372692866381688026 0.071857913999999995 0.212215619999999994 -0.292318940000000027 0.14121628 -0.136614679999999988 0.158367680000000011 0.124713980000000002 0.119738310000000001 0.0705631399999999964 0.147843289999999988 159 0 157 2 2.68191500000000005 202.910004 0.888633496726261018 2.58505865493832987 31 false 0.276482369999999977 1.24241769372708011 0.0592874745772756992 0.00137994039999999999 18 10 0.546504560000000028 0 19 false 156 499.193395710474022 1.6841454229902999 296.40799 18.9426939999999995 14 91.1905925466970047 11.1528621087226991 8.17642999999999986 20.4515129999999985 16 686.40522706050001 6.94874648447718979 98.7811599999999999 17.6704700000000017 1.55770460000000011 0 2.78104400000000007 1.50881960000000004 1.27222440000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.904983259293999 -63.5978748291922003 21.8201326458259999 -12.7888440249820992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271566894324224 2481271566894324224 1212100246 2015.5 24.8907226183148005 0.230525122957605993 -3.35485061795793982 0.199201974482154986 1.2361708126878499 0.259508848833540973 4.76350159999999967 15.8437485605749 0.522425566950314946 -49.8450672054177986 0.354742158305580979 0.18105541 0.201674450000000005 -0.195176989999999995 0.218518199999999996 -0.216601399999999999 0.31562707000000001 0.367197359999999973 0.00320125179999999985 -0.0864645500000000011 0.298691749999999978 136 0 136 0 3.15951130000000013 188.235001 0.803216715382573998 2.92511885434293006 31 false 0.438327279999999986 1.5154565814438401 0.0551649432946708998 0.0982810400000000001 16 10 0.482483600000000012 0 16 false 135 748.003299916799961 1.86097037802655008 401.942993 18.5036069999999988 14 294.503010223193996 9.11313205786678004 32.3163339999999977 19.1786630000000002 13 689.672884447463957 8.75101840075843995 78.8105850000000032 17.6653120000000001 1.31573739999999995 0 1.5133513999999999 0.675056459999999969 0.838295000000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.825166153059996 -63.5895979073606981 21.8011760923050986 -12.7574309572363003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271502470249344 2481271502470249344 417655413 2015.5 24.9034374620379992 2.05290844084737989 -3.3575744715481699 1.50844263473005991 \N \N \N \N \N \N \N 0.0840669 \N \N \N \N \N \N \N \N \N 107 0 106 1 45.2929419999999965 3074.38989 11.0130352854296998 182.070469318802992 3 false 0.00773702400000000033 \N \N 0.0694239600000000068 15 9 4.01845300000000005 0 15 true 132 360.161391969336989 4.0659344002833997 88.5802002 19.2971229999999991 13 460.562990234325014 11.1944766041724009 41.1419870000000003 18.6931650000000005 11 949.731865650291979 8.90438549661175927 106.65889 17.3179170000000013 3.91573020000000005 0 1.37524800000000003 -0.603958129999999982 1.97920610000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.85365362101399 -63.5867768685082027 21.8122340421957013 -12.7646573178294993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271395095762048 2481271395095762048 1684136816 2015.5 24.9300099912099995 0.719589149789464977 -3.36602300710111013 0.683014179934951948 0.593055750960949979 0.787114744569586966 0.75345530000000005 -2.17432359709036005 1.72385171414587002 -2.11074425652870001 1.84054879123791992 0.123469784999999999 0.136895080000000002 -0.284745340000000013 0.0747300300000000028 -0.018909734000000001 0.056143110000000003 -0.33454296 0.0587157940000000017 -0.118485615000000002 0.293520630000000005 122 0 122 0 0.183052359999999997 119.146004 0 9.28992634585218961e-16 31 false 0.0415327060000000026 1.44775393845542011 0.208003697985180008 0.0269012130000000002 14 8 1.7897012000000001 0 14 false 123 105.830125218047002 0.98268362292914202 107.695 20.6268419999999999 12 67.3283935964936973 6.97459801700683002 9.6533730000000002 20.7808929999999989 11 89.2537277552102069 8.8137431989884405 10.1266540000000003 19.8853550000000006 1.4795609999999999 0 0.895538330000000049 0.15405083 0.741487499999999966 \N \N 0 \N \N \N NOT_AVAILABLE 150.915762026014988 -63.5833668879917013 21.8343001948941016 -12.7823190343166999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271399391034496 2481271399391034496 1425496068 2015.5 24.9204639244752997 0.527633363438318015 -3.3590660378913002 0.445171080896845983 0.655536012096985976 0.562419799612184024 1.16556360000000003 6.5803942563214699 1.23394320276101999 -7.13839614070537998 1.03571204860755994 0.0821521800000000052 0.139773439999999999 -0.322417940000000014 0.118813370000000001 -0.0719921139999999959 0.142867219999999989 -0.145323129999999995 0.10761751 -0.0511772740000000018 0.197732429999999987 131 0 130 1 -0.811949299999999985 111.975998 0 0 31 false 0.0782315660000000024 1.47309790537294005 0.147873404241906009 -0.00668032049999999974 15 9 1.13159199999999993 0 15 true 128 162.081845671505988 1.20420418303785004 134.597 20.1640300000000003 11 76.6258672864641994 14.0926500754220001 5.43729300000000038 20.6404500000000013 12 153.616603621829 10.2154945080296997 15.0376080000000005 19.2958239999999996 1.42053209999999996 0 1.34462550000000003 0.476419450000000022 0.868206000000000033 \N \N 0 \N \N \N NOT_AVAILABLE 150.889766970307988 -63.5810320702273017 21.827860254331199 -12.7723305895259003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271639909201920 2481271639909201920 570927719 2015.5 24.9301937023950018 2.79220180090791015 -3.3452658643366302 1.88686779571717 \N \N \N \N \N \N \N 0.0089104619999999992 \N \N \N \N \N \N \N \N \N 127 0 127 0 63.4874459999999985 6218.60986 15.6814799437496006 344.80778084658499 3 false 0.00383338700000000017 \N \N -0.014558026 17 9 5.67650129999999997 0 17 false 148 341.463705116683002 3.30397402356244996 103.348999 19.3550049999999985 7 504.716383404283988 20.3001706245761007 24.8626669999999983 18.5937699999999992 5 1133.13322460378004 7.19725607485958019 157.439619999999991 17.1262170000000005 4.79655550000000019 0 1.46755220000000008 -0.761236200000000029 2.2287884 \N \N 0 \N \N \N NOT_AVAILABLE 150.896631736898001 -63.5644352277018001 21.8423470595772997 -12.7631017104055005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635616731520 2481271635616731520 1103228071 2015.5 24.9306764785726003 2.11196928479788992 -3.34543239485127009 1.43092419634799994 \N \N \N \N \N \N \N -0.0130733110000000007 \N \N \N \N \N \N \N \N \N 122 0 121 1 42.1836399999999969 2669.53003 11.3344931476284003 145.179124487840994 3 false 0.00680221940000000011 \N \N -0.0499685439999999967 17 9 4.07496930000000024 0 17 false 147 298.666985684847987 6.56524392856556993 45.4920998 19.5003969999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.897771551289992 -63.5643850216310966 21.8427430308668988 -12.7634346833023997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318674098713856 2481318674098713856 954528136 2015.5 24.8765618836582014 0.945185033425278043 -3.3190197987188701 0.978271676479826047 0.863671909465090981 1.12117066155159995 0.770330399999999971 4.65317411552342008 2.06800110250043012 10.9742562377491009 2.49788145400113004 0.310947660000000015 0.345925240000000023 -0.178637560000000001 0.048762492999999997 0.199732149999999997 0.130242739999999996 -0.173510730000000002 -0.0319191630000000004 -0.265983819999999982 0.345937580000000022 80 0 80 0 1.46139259999999993 93.5849991 1.82270207027903997 0.850648286539415044 31 false 0.0364524540000000022 1.01383098559136009 0.293922225780720026 0.212690039999999997 9 7 2.37579349999999989 0 9 false 80 98.5150940301393945 1.0050738893684299 98.0177994 20.7046090000000014 4 38.5044683920858972 15.3485426356785002 2.50867269999999998 21.3876099999999987 6 120.628757217122995 19.9218126639517017 6.05510950000000037 19.5582920000000016 1.61531819999999993 0 1.82931709999999992 0.683000559999999979 1.14631649999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.762740606628 -63.5629149614252 21.8013012167539983 -12.7189123941315003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318884549457408 2481318884549457408 1665249225 2015.5 24.8762540368413987 0.142187857110028987 -3.30816653257689985 0.112626023836406006 0.674004221652731994 0.152875456461372988 4.40884539999999969 7.84059795515621971 0.32719232991963898 -1.01569332067508999 0.202973233043347995 0.149851650000000003 0.140158769999999988 -0.184305579999999997 0.215068829999999989 -0.110739279999999995 0.294390560000000023 0.229383780000000009 0.014362695 -0.0299857019999999995 0.225123020000000007 113 0 112 1 1.47792999999999997 129.350998 0.358203717503571994 1.42129202877030991 31 false 1.42193900000000006 1.58055236567890001 0.0329248581193768014 0.035818570000000001 13 9 0.297909529999999978 0 14 false 112 1649.2294633736401 2.72578562146309 605.046997 17.6451630000000002 14 736.391644218206011 15.7669440743311995 46.7047799999999995 18.1836170000000017 14 1352.17911669193995 22.3803981274713983 60.4180100000000024 16.9343339999999998 1.2663918999999999 0 1.24928280000000003 0.538454059999999957 0.710828800000000038 \N \N 0 \N \N \N NOT_AVAILABLE 150.751970657388995 -63.553173887756202 21.8051244918711014 -12.7087154135112002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318880254191616 2481318880254191616 379856335 2015.5 24.8776217428056015 0.667778632198747002 -3.30732521480019015 0.630088495507021951 0.178815754044455988 0.754550895241352992 0.236983030000000011 0.269555152004452014 1.59479355654152011 -5.47622610820252032 1.83675682948137009 0.104732240000000004 0.185265469999999988 -0.245955299999999988 0.112980479999999994 -0.120426530000000004 0.101213650000000002 -0.222045240000000005 -0.0176614169999999987 -0.185889560000000009 0.401305299999999976 106 0 104 2 -0.0550943539999999982 97.5651016 0 0 31 false 0.0580459050000000018 1.61239286011776994 0.198691275100607995 0.105725250000000007 12 8 1.80010779999999992 0 12 false 104 126.694233656573005 1.11126334901905 114.009003 20.4314730000000004 7 84.443120591582101 8.36482734303086062 10.0950220000000002 20.5349770000000014 7 81.9720763619829995 12.6472605330995993 6.48140949999999982 19.9777549999999984 1.31351829999999992 0 0.557222369999999967 0.103504180000000001 0.453718200000000016 \N \N 0 \N \N \N NOT_AVAILABLE 150.753972540894011 -63.5518407455992005 21.8067439587271004 -12.7084388938865001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669975807104 2481271669975807104 1039473270 2015.5 24.8988271644223005 0.839683683016328009 -3.34230316908872016 0.77767129987267003 1.31944643179285004 0.940265658286982053 1.40326989999999996 -12.2218608784673002 2.08524591355934996 -21.960950978533301 2.27542890022853017 0.127477380000000001 0.0909607500000000069 -0.175759660000000012 0.166070999999999996 -0.0661025100000000032 0.160617199999999988 -0.154773729999999998 -0.0779698000000000058 -0.251878529999999989 0.377946439999999995 101 0 100 1 3.92276550000000013 159.037003 2.62374498098985987 2.87082707663088987 31 false 0.0366709159999999978 1.08757034395186003 0.251241927357934991 0.0724713359999999973 12 8 2.25590560000000018 0 12 false 101 116.394036907409998 1.08679256414129011 107.098999 20.5235389999999995 9 52.3290942957400986 12.7745225661183994 4.09636400000000034 21.0545299999999997 12 166.272856237874009 5.73797591274138963 28.9776150000000001 19.2098669999999991 1.87811979999999989 0 1.84466170000000007 0.530990599999999979 1.31367110000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.829930495066009 -63.5748193812601983 21.8136421739860005 -12.7487667926460997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318609671550592 2481318609671550592 1603422949 2015.5 24.9027058063274005 2.01566338708378012 -3.33276839912642986 1.47432672344796001 \N \N \N \N \N \N \N 0.088427439999999996 \N \N \N \N \N \N \N \N \N 109 0 106 3 50.7240070000000003 3889.97998 10.7641011531572008 323.642135784663992 3 false 0.0080383859999999998 \N \N 0.0622709239999999983 15 9 3.97033980000000009 0 15 false 128 350.828913246741024 3.74701087238425989 93.6289978 19.3256259999999997 11 502.019382048324985 14.0237608112746006 35.7977699999999999 18.5995859999999986 12 1034.20091292765005 8.16864172517123066 126.606223999999997 17.2254089999999991 4.37883040000000001 0 1.37417790000000006 -0.72603989999999996 2.1002177999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.828901375702003 -63.5645385795438003 21.8209465847862987 -12.7413406856246993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669973543168 2481271669973543168 522158079 2015.5 24.9102374437332017 2.21976534775645007 -3.34001047034554022 1.67966083300760993 \N \N \N \N \N \N \N 0.0862645699999999988 \N \N \N \N \N \N \N \N \N 122 0 121 1 37.594337000000003 2142.97998 12.7515712657462004 207.405077781073999 3 false 0.00565486630000000025 \N \N 0.0658863259999999951 15 9 4.44426770000000015 0 15 false 131 218.931468355930008 2.3709647275800898 92.3386002 19.8375950000000003 15 361.200890972188972 11.1293095100818995 32.4549260000000004 18.9570159999999994 13 711.878064663815053 7.49316050291518021 95.0037159999999972 17.6309049999999985 4.90143780000000007 0 1.32611079999999992 -0.880579000000000001 2.20668979999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.851039171076991 -63.5679826511133967 21.8253621490879013 -12.7508503073099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271704333282560 2481271704333282560 644772123 2015.5 24.9124653699850001 0.670529279862627003 -3.33414150072109994 0.623036120010397987 1.54909296088616011 0.769399900652262048 2.01337810000000017 4.27231988360743031 1.58022898370341003 1.25606125766285004 1.51831075209620003 0.167862879999999992 0.176286699999999991 -0.162104920000000013 0.163559499999999997 -0.188591439999999999 0.235502600000000006 0.0687723699999999993 -0.0574842299999999973 -0.175690409999999991 0.384854799999999997 112 0 112 0 3.28791050000000018 161.785004 1.61636855208897989 1.28940545564197007 31 false 0.0522705539999999969 1.12117115266088008 0.199185059814394994 0.0967233900000000063 13 9 1.60569739999999994 0 13 false 108 133.737542740744999 1.05576754816325002 126.672997 20.3727319999999992 9 30.9498591383479997 10.4574667858863997 2.95959420000000017 21.6247399999999992 11 154.189556179148013 9.78117647271574064 15.7639069999999997 19.2917820000000013 1.38434889999999999 0 2.3329582000000002 1.25200840000000002 1.08094979999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.850076243061011 -63.5617210320096007 21.8297065038161016 -12.7462202652403001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271708628678400 2481271708628678400 511308596 2015.5 24.9206192593724012 4.05677508348223004 -3.33481225769001988 2.2762174312600898 \N \N \N \N \N \N \N -0.351015999999999995 \N \N \N \N \N \N \N \N \N 69 0 69 0 28.6452850000000012 1238.09998 10.5590031969392992 88.7549343965990971 3 false 0.00821789300000000042 \N \N 0.0816956900000000014 9 6 9.40446700000000035 0 9 true 79 246.765292095509011 2.64039648813644012 93.4577026 19.707654999999999 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.867317289824996 -63.5589318251484983 21.8372060947443991 -12.7498542289896992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318708457633664 2481318708457633664 1638429914 2015.5 24.899263282558401 0.837757700743471001 -3.31371140950581999 0.767406630252514987 1.95522967147390991 0.950123106073127999 2.05786999999999987 9.77545803138835012 1.96526788195508995 -11.0615225603556002 2.26950847320087012 0.0909147299999999992 0.208527059999999986 -0.227007359999999991 0.145251600000000008 -0.101530259999999997 0.182074130000000001 -0.111662979999999995 -0.0642947299999999944 -0.259625459999999975 0.379200580000000009 105 0 105 0 2.12261100000000003 132.317001 1.71808471338637991 0.906478797916328016 31 false 0.0368899219999999986 1.80892914820684991 0.245080542508606003 0.101728869999999999 12 8 2.20680759999999987 0 12 false 104 101.442588284576004 1.13842965449987998 89.1074982 20.6728149999999999 5 39.3152371135309977 13.4158636596565994 2.93050360000000021 21.3649859999999983 7 141.693507398588991 10.2289836570726003 13.8521590000000003 19.3835450000000016 1.78434669999999995 0 1.98144150000000008 0.692171100000000039 1.28927039999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.804043828320005 -63.5486499578954991 21.8248998558829008 -12.7223641018149003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319292570930432 2481319292570930432 886977732 2015.5 24.8925310088897014 0.284770618611907 -3.29897556016873983 0.219761737460525991 0.834526027612143007 0.319939253989775019 2.60838899999999985 4.95584675905150984 0.574994222998528981 -15.0551193217561998 0.466745942204363995 -0.0265151129999999999 0.383022460000000009 -0.278273300000000001 0.139792109999999997 -0.249721069999999989 0.24448895000000001 0.0553067620000000024 -0.0114570379999999993 -0.090527880000000005 0.264724640000000011 115 0 113 2 -0.126275749999999992 105.497002 0 0 31 false 0.376962779999999997 1.29588098356029002 0.0703788317902209054 0.0187514550000000002 13 9 0.537714200000000031 0 13 false 111 474.322874043010017 1.58550643373555999 299.161987 18.9981800000000014 12 207.707524606080995 29.6480412798946986 7.00577550000000038 19.5577579999999998 13 465.774614556696974 25.1912432540745996 18.4895439999999986 18.0914800000000007 1.41988120000000007 0 1.46627810000000003 0.559577940000000051 0.906700130000000049 \N \N 0 \N \N \N NOT_AVAILABLE 150.776550809469001 -63.5380533906391989 21.824086039636299 -12.7061873349429995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319361290410752 2481319361290410752 1130570689 2015.5 24.8939192278039982 0.156171645670520998 -3.2852566889821202 0.117042540409813003 0.256348976434636 0.17028334529977901 1.50542599999999993 4.27359469522805036 0.322266550855241973 -2.80641558474074992 0.250821137820336992 -0.049729317000000002 0.355086950000000012 -0.280800969999999983 0.109820710000000002 -0.202166719999999994 0.17081977000000001 0.0529035549999999979 0.0288790839999999993 -0.0515193450000000011 0.143605840000000012 103 0 101 2 1.39481739999999999 115.896004 0.281372346729388989 0.798419100215651989 31 true 1.36158470000000009 1.59978795781023009 0.0370652615760296983 -0.0058666415999999999 12 9 0.293801670000000015 0 12 false 101 1465.45975098621989 3.03022608007582983 483.614014 17.7734319999999997 9 745.268385146943956 16.2463611666556993 45.8729439999999968 18.1706070000000004 10 1072.08336949274008 9.7949325885384404 109.452860000000001 17.1863479999999988 1.240124 0 0.984258650000000013 0.397174839999999973 0.587083800000000045 \N \N 0 \N \N \N NOT_AVAILABLE 150.766563968845986 -63.5250029058883001 21.8306074338338014 -12.6939539719609993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319292570932608 2481319292570932608 593428409 2015.5 24.9005079879918014 0.539243038048246026 -3.29027517596130981 0.394554145532011014 2.68576599210644007 0.591706492252791039 4.5390170000000003 9.51303900489739007 1.10305815892379999 1.95628344554168998 0.694732632652231952 -0.0470500630000000031 0.358055599999999974 -0.265133320000000006 0.140379890000000007 -0.254546879999999975 0.227517599999999987 0.303515550000000023 0.0161156149999999998 -0.0317165030000000001 0.138591199999999998 115 0 115 0 7.46785500000000013 260.917999 2.03589012715361983 7.02438196908274026 31 false 0.109153819999999999 1.49279932350201006 0.118721479147290004 -0.0267459710000000003 13 9 0.991274100000000047 0 13 false 114 321.645116298116022 2.36207369886946994 136.171005 19.4199240000000017 12 94.9501525181530042 11.6947964432625007 8.11900900000000014 20.4076479999999982 11 481.358084508401021 16.4941151651042013 29.1836260000000003 18.0557499999999997 1.79175189999999995 0 2.35189819999999994 0.987724299999999999 1.36417389999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.784666867752009 -63.5268268958929028 21.8349694753406993 -12.7010494679431005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268680678620416 2481268680678620416 460917855 2015.5 24.9400460470201004 1.25650954730544995 -3.42444584207306013 0.883204680537100995 1.61800949975059005 1.04870227884788991 1.54286830000000008 1.34450632245639001 3.33811693829282996 -15.9372536353918992 2.26284132848079 -0.252762649999999978 -0.242209750000000001 -0.740757800000000022 0.385404000000000024 0.280124719999999994 0.411367539999999976 -0.386308280000000004 0.496491520000000019 -0.296851199999999982 -0.305768969999999973 106 0 105 1 1.24468299999999998 117.910004 0.931365780147373035 0.239398460469588986 31 false 0.0324866060000000012 1.31675666171466998 0.272669355944445024 0.00713243749999999989 12 8 3.22960970000000014 0 12 false 103 101.663093616148998 1.19561378749331992 85.0299988 20.670458 6 40.2225758556344033 14.6691017162448993 2.74199320000000002 21.3402139999999996 9 136.875764950567998 9.85155038776841963 13.8938299999999995 19.4211039999999997 1.74201209999999995 0 1.91910929999999991 0.66975594000000005 1.24935339999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.991278330773014 -63.632221641388 21.821682873980901 -12.8403037526998993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270364303467648 2481270364303467648 1365581430 2015.5 24.9318863164822986 0.269672214009007982 -3.40608315781708981 0.197568247003197001 -0.0203225301483665986 0.29166330249410799 -0.0696780500000000053 3.67544155703757003 0.603927560880029968 -12.6691544022590001 0.381912530893181001 0.042746621999999998 0.204249249999999993 -0.299782570000000026 0.120646970000000006 -0.159268500000000007 0.14261277 0.0636610900000000035 0.103400469999999994 0.0461483859999999996 0.144875530000000002 167 0 167 0 3.37164000000000019 229.740997 0.821977585986550019 2.04663910293212004 31 false 0.267776669999999994 1.62252242415556003 0.0588363748853200988 -0.0232840630000000007 19 10 0.542557540000000005 0 19 false 166 499.246379865366976 1.61949005651648004 308.273987 18.9425799999999995 17 215.238407501989997 10.1982445663121997 21.105436000000001 19.519089000000001 17 434.014053645175977 11.4709563490840996 37.8359069999999988 18.1681610000000013 1.30046499999999998 0 1.3509274 0.576509500000000008 0.774417899999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.957305519431998 -63.6189639167627021 21.8208885895256017 -12.8202305538959997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270398663208576 2481270398663208576 456381082 2015.5 24.940565063212901 0.384872137954786975 -3.39632506451782001 0.297460934678889011 0.527378456744794 0.416802081559716986 1.26529699999999989 3.56364925339242999 0.872780781213195023 -2.81158704114458002 0.565995267972643989 0.0864997660000000057 0.179084379999999987 -0.319674669999999994 0.145982269999999997 -0.143824380000000002 0.183630529999999986 0.115465230000000002 0.123375170000000006 0.0195239279999999994 0.177385209999999988 160 0 159 1 1.12462839999999997 173.869003 0 0 31 false 0.134300520000000007 1.63238779433570991 0.0885156459278741981 -0.00685270400000000026 19 10 0.787247699999999995 0 19 false 161 264.395039023004017 1.4916049396865001 177.255005 19.6327320000000007 15 189.180901334113997 14.7811304277744995 12.7988119999999999 19.6591950000000004 14 159.759563520247013 8.02450619966480083 19.9089579999999984 19.2532519999999998 1.31976939999999998 0 0.405942919999999985 0.0264625549999999987 0.379480360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.965806387791986 -63.6064738438424015 21.8328450888128991 -12.8143693581878999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267271927009280 2481267271927009280 1031518137 2015.5 24.9911412868477001 1.67258894244385004 -3.41948670257185006 1.03288647918789001 \N \N \N \N \N \N \N -0.195582420000000007 \N \N \N \N \N \N \N \N \N 76 0 76 0 0.768430100000000005 79.8331985 0 0 3 false 0.0420099199999999992 \N \N 0.0922081899999999954 9 6 4.32843399999999967 0 9 false 76 106.955873408288994 1.27822758610844001 83.6751022 20.615355000000001 6 65.7998494140192065 25.3373195571621004 2.59695389999999993 20.8058259999999997 5 95.4632464640799014 20.758545913803399 4.59874440000000018 19.8123299999999993 1.50775349999999997 0 0.993495939999999966 0.190471649999999992 0.803024300000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.090759090223003 -63.606296016284702 21.8721681025793018 -12.8545611268343993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267168847794816 2481267168847794816 160511904 2015.5 24.9784727484790992 0.169696266530431988 -3.41926181909129001 0.120563008240719 2.59395674707716006 0.178220112045104989 14.5547920000000008 20.9299623615249004 0.381297030213157973 3.95820838106951989 0.232690453683900011 0.00774321299999999966 0.171138719999999994 -0.368550239999999973 0.131993620000000006 -0.139355079999999992 0.153181960000000006 0.0106751229999999999 0.157015189999999999 0.0597907339999999982 0.11362891 157 0 156 1 1.51427010000000006 178.128006 0.221230435721692986 0.311207287883869976 31 false 0.770900299999999983 1.86964204476476992 0.0379090938933430988 -0.0482662300000000002 18 9 0.34628819999999999 0 18 false 156 951.875554813659051 2.28484764293150011 416.604004 18.2419149999999988 15 772.510974369699966 8.47761905022820983 91.123580000000004 18.1316260000000007 15 368.626835732328004 11.0833040091167998 33.2596500000000006 18.3454529999999991 1.19883080000000009 0 -0.213827130000000004 -0.110288620000000004 -0.10353851 \N \N 0 \N \N \N NOT_AVAILABLE 151.064734675642995 -63.6114105294874008 21.8602020491636004 -12.8496754764561008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267306286754176 2481267306286754176 43365274 2015.5 25.0085169163759993 0.347057944960614984 -3.40279519383113982 0.273489029320066024 -0.254231403527228006 0.372804474720297985 -0.681942999999999966 -0.786287860656339044 0.792510326729999992 -2.7153644499655698 0.491316879192240985 0.0784845500000000001 0.192824469999999998 -0.285231300000000021 0.149878549999999999 -0.0691483700000000007 0.138570560000000009 0.240928279999999995 0.121431336000000001 0.084734894000000005 0.0666348560000000062 151 0 150 1 0.867137000000000047 159.561996 0.0579133665591428023 0.00467392742766475997 31 false 0.16597793999999999 1.58374989612058004 0.0863612220134751946 -0.0688795299999999944 17 9 0.706813040000000004 0 17 false 150 304.394045997031014 1.50859327272832 201.772995 19.479773999999999 15 140.826369462471007 10.5093535937668996 13.4000979999999998 19.9796799999999983 14 243.994558412916007 7.31535757289857003 33.3537450000000035 18.7934699999999992 1.26421960000000011 0 1.18620869999999989 0.499904630000000016 0.686304099999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.110341759758995 -63.5838547706541988 21.8950281324922997 -12.8454662479707995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270536102166144 2481270536102166144 1196085124 2015.5 24.9709437475927984 2.29253154783233004 -3.38098675515906022 1.24799446513970991 \N \N \N \N \N \N \N -0.559940499999999952 \N \N \N \N \N \N \N \N \N 67 0 67 0 -2.65097929999999993 36.4473991 0 0 3 false 0.0303648730000000006 \N \N -0.109546099999999993 8 6 6.27792800000000017 0 8 false 66 89.4429869807919005 1.00474580440437999 89.0205002 20.8094999999999999 7 68.2819868946976953 13.5478946698575999 5.04004429999999992 20.7656230000000015 7 68.6403091720096938 9.77105050816687992 7.02486470000000018 20.1704709999999992 1.53083320000000001 0 0.595151899999999956 -0.0438766479999999973 0.639028550000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.013245695134003 -63.5798323856929031 21.8675575340638986 -12.8113344818419002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271433750772352 2481271433750772352 948314090 2015.5 24.9341630275398991 3.53572935481115014 -3.34928421747128979 3.55710767243773995 \N \N \N \N \N \N \N 0.355642899999999984 \N \N \N \N \N \N \N \N \N 63 0 63 0 22.5710559999999987 795.078003 15.0823054535942003 67.2297720174012028 3 false 0.00403161100000000005 \N \N 0.285578600000000016 8 6 10.0056879999999992 0 9 true 72 132.204961950441003 1.96777813118948997 67.1848984 20.3852459999999986 7 193.781227574674006 11.7550170964833995 16.4849800000000002 19.633108 6 402.306206295656978 19.7847501840373994 20.3341560000000001 18.2505279999999992 4.50881299999999996 0 1.38257980000000003 -0.752138140000000011 2.13471799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.908491637363994 -63.5664285582584014 21.8445980929000996 -12.7683006762653992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635613958528 2481271635613958528 1116791361 2015.5 24.9320630016986016 4.17292862093545036 -3.3453519705108401 2.5100336636420999 \N \N \N \N \N \N \N -0.459999979999999975 \N \N \N \N \N \N \N \N \N 79 0 79 0 33.1023830000000032 1643.66003 12.6678509616503003 124.230195261966003 3 false 0.00579784070000000009 \N \N -0.112385239999999997 11 7 10.9059930000000005 0 13 true 99 247.670836597402001 2.95201658367630015 83.8989029 19.703678 11 348.670159490633012 11.1876174542320008 31.1657200000000003 18.9953520000000005 11 769.31061005054903 20.038878453282301 38.390900000000002 17.5466650000000008 4.51397850000000034 0 1.44868660000000005 -0.708326340000000054 2.15701300000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.900520349420987 -63.563733264155303 21.8440921246059006 -12.7638718913306999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271742988417792 2481271742988417792 1003672529 2015.5 24.9628532836943009 0.0672508860460959979 -3.35423246595069013 0.0483428551844814966 0.682113720086107045 0.0692017570787812064 9.85688400000000087 9.9828008779685895 0.148623584232461997 -0.626597493917571025 0.103061007965410997 -0.0411339179999999985 0.190386699999999992 -0.389855620000000014 0.119829424000000004 -0.159266440000000009 0.121707190000000007 -0.194216849999999996 0.159266400000000002 0.061040709999999998 0.129211049999999994 149 0 148 1 1.91639289999999995 177.149002 0 0 31 true 5.57145699999999966 1.58017319684842006 0.0142797705981393998 -0.0465793129999999972 17 9 0.14199908 0 17 false 147 4874.05894916799025 4.19768848487024027 1161.13 16.4686400000000006 15 2259.16329888858991 15.5662911688074992 145.131760000000014 16.9665180000000007 15 3764.8598440125902 15.6306025738520997 240.86466999999999 15.8225479999999994 1.23593569999999997 0 1.1439705 0.49787903 0.646091459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.971566267830013 -63.5589316234600972 21.8700079154923017 -12.7834900575573993 100001 4974.33008 4953.5 5041.83008 0.409000009 0.300000012 0.486999989 0.202000007 0.155300006 0.238999993 200111 0.912593100000000046 0.888322350000000038 0.920285699999999984 0.459397580000000028 0.360887400000000025 0.557907759999999975 +1635721458409799680 Gaia DR2 2481271742988417408 2481271742988417408 1092251955 2015.5 24.9660681526891999 0.0431147374036614031 -3.35135769190730004 0.0310816879471397002 0.557031702301789999 0.0437330132526072973 12.7370990000000006 -1.48696128864205002 0.0954603970773733046 -7.24224786006448973 0.0664183867251511018 -0.0548211600000000007 0.215715199999999996 -0.367245470000000018 0.105294639999999995 -0.118185650000000003 0.0901465040000000023 -0.165732230000000008 0.159692240000000013 0.0891737699999999994 0.0483508399999999991 140 0 140 0 0.851990200000000031 148.776993 0 0 31 true 15.7155930000000001 1.60884715765880992 0.0100441863579835006 -0.0599028649999999996 16 9 0.0961533900000000052 0 17 false 140 12864.4662528140998 7.18883087461145021 1789.51001 15.4148859999999992 14 6894.53656960085027 22.2128679006302008 310.384799999999984 15.7551249999999996 13 8699.41108260291003 24.9167382800633987 349.139250000000004 14.9131959999999992 1.21217219999999992 0 0.841929440000000029 0.340238570000000018 0.501690859999999961 \N \N 0 \N \N \N NOT_AVAILABLE 150.975404161368999 -63.5549764339681005 21.8741556258377017 -12.7820057961877005 100001 5785.5 5760 5815 0.455000013 0.296000004 0.598999977 0.224999994 0.150399998 0.294 200111 1.27330530000000008 1.2604188999999999 1.28460430000000003 1.63652789999999992 1.34813950000000005 1.92491630000000002 +1635721458409799680 Gaia DR2 2481271742988417280 2481271742988417280 842677542 2015.5 24.9675474525012007 0.0428350482533403007 -3.3509323976691201 0.0295035930695112004 1.06974215695786001 0.0423353445275677018 25.2683 11.0457185299848994 0.0993120478103777932 10.2741830214888008 0.0642716344835927988 -0.076879740000000002 0.114510009999999995 -0.453657120000000025 0.0981643650000000034 -0.152969300000000002 0.0734870999999999996 -0.225029699999999999 0.229283259999999989 0.109856720000000005 0.0360574459999999999 149 0 144 5 -1.66026399999999996 112.535004 0 0 31 true 17.5377539999999996 1.58872796497145008 0.00945702531821055944 -0.074921354999999995 17 9 0.101392609999999994 0 17 false 143 14249.3222025897994 7.99883490900737026 1781.42004 15.3038799999999995 15 7394.00068800774989 23.9833424042742998 308.297329999999988 15.6791900000000002 13 10006.7038325100002 35.7621848471332981 279.812439999999981 14.7611919999999994 1.22116019999999992 0 0.917997359999999984 0.375309940000000009 0.542687400000000042 \N \N 0 \N \N \N NOT_AVAILABLE 150.97801452553901 -63.5539713074453019 21.8757238515686012 -12.7821567091899997 100001 5439.37988 5377.7998 5641.0498 0.0874999985 0.0250000004 0.210299999 0.0377000012 0.00970000029 0.0860999972 200111 0.801073849999999976 0.744821199999999961 0.819525799999999971 0.506102500000000011 0.460891280000000014 0.551313759999999986 +1635721458409799680 Gaia DR2 2481271773055107840 2481271773055107840 802438498 2015.5 24.9677602112633998 1.94769168556405003 -3.34574097276126015 1.13717890915573006 \N \N \N \N \N \N \N -0.547463060000000001 \N \N \N \N \N \N \N \N \N 65 0 64 1 0.788849499999999981 67.260498 1.19570539903819006 0.310228462673858008 3 false 0.0402680300000000033 \N \N -0.0605250800000000019 8 6 4.9168390000000004 0 9 false 66 110.290366853758002 1.54977355275622997 71.1654968 20.5820219999999985 6 53.9409024344555021 12.5710116782029999 4.29089600000000004 21.0215929999999993 8 118.507635332486004 11.9053119885065009 9.95418199999999942 19.5775550000000003 1.56358660000000005 0 1.44403839999999994 0.439571380000000012 1.004467 \N \N 0 \N \N \N NOT_AVAILABLE 150.973562041435002 -63.5491688795815008 21.8778945655821992 -12.7774117571538994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271773052756608 2481271773052756608 769119827 2015.5 24.9697798709729 0.431144884502226988 -3.34585983607477022 0.300430391501427974 0.673968114918522043 0.454605524451644982 1.48253389999999996 -0.451579274720932011 1.00204177150170004 -9.56996536038436929 0.559009150005960964 0.0245861580000000003 0.104336849999999995 -0.246766879999999994 0.135645550000000004 -0.133781729999999988 0.174133850000000007 0.118249060000000003 0.0489529299999999987 0.0470100400000000029 0.0922764400000000012 149 0 146 3 3.92938799999999988 216.925003 1.53577072469651998 3.82795877320325006 31 false 0.122759660000000007 1.51275371376843992 0.0935947557267066965 -0.0997736399999999968 17 9 0.890009399999999951 0 17 false 144 310.699966011875006 1.47260819747570992 210.985992 19.4575120000000013 14 138.786804657557013 9.34131159725606075 14.8573140000000006 19.9955180000000006 14 286.766132645311018 11.5359583732592004 24.8584579999999988 18.6181009999999993 1.36965880000000007 0 1.3774166000000001 0.538005799999999978 0.839410800000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.97778350362799 -63.548431724048001 21.8797703948686006 -12.7782677067734003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270329946112512 2481270329946112512 1508378196 2015.5 24.9866206052551014 0.666943017993232967 -3.38959617127905988 0.615169933340807051 1.12739888754341999 0.733353792764319001 1.5373192 -7.2254840425744602 1.51900368306272004 -5.59074239781161975 1.64720736622923991 0.0766207799999999994 0.227750809999999998 -0.277769770000000027 0.0555206840000000007 -0.0752307549999999964 0.0229150540000000007 -0.362564900000000023 0.0585821399999999978 -0.0639731600000000011 0.281435849999999987 126 0 126 0 -0.727293850000000019 109.410004 0 0 31 false 0.0481584499999999985 1.04246429219203995 0.185232072289420013 -0.00444245429999999986 15 8 1.58852909999999992 0 15 false 126 119.186589739709007 0.964623875593412006 123.557999 20.4977969999999985 13 30.0250676775767005 7.08907192752718007 4.23540160000000032 21.6576790000000017 11 170.673597013624999 13.0034236607612996 13.1252809999999993 19.1815029999999993 1.68390309999999999 0 2.47617529999999997 1.15988160000000007 1.3162936999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.053291886513989 -63.5810739031068977 21.8792043615978002 -12.8251206038949004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270329943870976 2481270329943870976 408274863 2015.5 24.9911096256036984 0.848505645571070999 -3.38472941936823002 0.82083760121939997 -0.48357958879691898 0.934481320734513954 -0.517484500000000014 4.73381725014137 1.99863606434975005 -6.8983869478812796 2.31928421027815013 0.122201679999999993 0.194865470000000013 -0.220417749999999996 0.0676002950000000047 -0.0610077750000000002 0.0585707000000000033 -0.210663700000000009 0.0202001950000000007 -0.0953560299999999944 0.272055199999999997 103 0 102 1 1.47613280000000002 118.283997 1.0658048117821799 0.297472781113064022 31 false 0.0322665420000000022 1.40699731907564995 0.234969963760052997 0.0349404199999999998 13 8 2.17245359999999987 0 13 false 101 95.5395995542947958 1.11680726383293005 85.5470963 20.7379069999999999 10 73.8266910332157948 10.6114485054536996 6.95726780000000034 20.6808550000000011 10 74.172535781573103 7.11789711350833976 10.4205679999999994 20.0863109999999985 1.5490877999999999 0 0.594543460000000024 -0.0570526120000000025 0.651596069999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.057833627894013 -63.5747745497292982 21.8853200275706001 -12.8222557565666992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267718603617024 2481267718603617024 973461824 2015.5 25.0214397926467988 0.299950932076734011 -3.39042389411314993 0.231026823137362003 0.146140713142258988 0.318033766128998974 0.459513200000000011 9.61687671064814964 0.66744726683710498 -10.1494185232480003 0.407151196982916019 0.108766294999999999 0.20498203000000001 -0.318847629999999993 0.178799929999999996 -0.0341922119999999996 0.207912189999999997 0.147504500000000011 0.165511059999999988 0.0829473899999999958 0.140287440000000013 143 0 142 1 1.39595150000000001 160.688004 0.618562653084898995 0.923962007423601017 31 false 0.251770380000000016 1.5603833109382601 0.0773661042458820003 -0.0146928879999999994 16 9 0.601560059999999952 0 16 false 139 421.934725017790015 1.66109391286389996 254.009995 19.1252519999999997 15 231.107125664201988 7.61916821682229006 30.3323299999999989 19.4418539999999993 15 284.539867192203019 10.9999249947475004 25.8674369999999989 18.6265619999999998 1.22210130000000006 0 0.815292360000000049 0.316602700000000015 0.498689649999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.124927533712992 -63.5672014996431969 21.9120129571226983 -12.8387408534432996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270742260599296 2481270742260599296 905106508 2015.5 25.0092768202551987 0.181039385980624995 -3.37179499745601996 0.17640027556766999 1.07859891481254011 0.212153174548951995 5.08405729999999956 -4.63637396149735004 0.400666386794938989 -6.09287544286407012 0.285380455163808 0.105911660000000005 0.280929030000000024 -0.18030038000000001 0.246119169999999998 -0.409854050000000025 0.497375940000000016 0.564361800000000025 -0.140047150000000009 -0.237573470000000009 0.430429070000000025 122 0 121 1 -0.365393550000000011 109.878998 0 0 31 false 0.936830999999999969 1.34469143673220004 0.0442557207681249024 0.0108705969999999992 14 8 0.396254659999999981 0 14 false 119 1063.47615259848999 2.46747514050165018 430.997986 18.1215459999999986 12 333.283051953406016 13.4023526079923005 24.8675040000000003 19.0443549999999995 12 1117.76513294299002 11.4282184428502998 97.807469999999995 17.1410429999999998 1.3644388999999999 0 1.90331270000000008 0.922809600000000008 0.980503099999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.082579658147012 -63.5554138203516032 21.9075057684504984 -12.8169430151077997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270776620337920 2481270776620337920 700768169 2015.5 25.0200142144548003 8.03869834619485957 -3.36905331287917997 2.56224094423289017 \N \N \N \N \N \N \N 0.805953499999999989 \N \N \N \N \N \N \N \N \N 77 0 77 0 1.31689699999999998 88.2214966 0.703062033579093026 0.0950849129098412932 3 false 0.0273869620000000008 \N \N -0.0588377939999999988 9 6 32.3473550000000003 0 9 false 78 92.1118004013425065 1.27612947343905003 72.180603 20.7775779999999983 7 70.0664829573926937 15.6639435313808999 4.47310639999999982 20.7376119999999986 7 54.3287588565644981 7.57994943946864996 7.16743039999999976 20.4243449999999989 1.35048100000000004 0 0.313266749999999983 -0.039966583 0.353233340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.101822064613003 -63.5484166981758989 21.9187592341490998 -12.8183580562954003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270914059292416 2481270914059292416 278635118 2015.5 24.9830804702104992 1.06184771080829998 -3.36374305376773997 0.467107803689233991 0.914565760261298988 0.783835911311271949 1.16678210000000004 -4.6278431334940402 2.81950781641493009 5.93793853208381961 0.810593499658667005 -0.276187100000000019 -0.374456730000000015 -0.76954705000000001 0.282440840000000026 0.0949307000000000067 0.39950724999999998 0.0722409340000000066 0.486248520000000017 -0.0939425900000000064 -0.167570109999999994 138 0 134 4 1.54313220000000006 154.654007 1.76636689607905994 2.44456640509549006 31 false 0.0596350400000000003 1.4763468193370699 0.143379944214159005 -0.136799250000000011 16 8 2.63539389999999996 0 16 false 132 169.526306676810009 1.45500631338363995 116.512001 20.1152729999999984 10 61.942666773080802 9.5482692854391793 6.48731900000000028 20.8714140000000015 11 207.010369464338993 5.83829169652693025 35.4573499999999981 18.97194 1.5864973 0 1.89947510000000008 0.756141660000000049 1.14333339999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.021691317527001 -63.5590958578574998 21.8856405200844009 -12.7997930344830007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270742260600064 2481270742260600064 989898870 2015.5 24.9997304247663017 0.362496504735547009 -3.36515869581646987 0.239106765071078003 -0.0357616750159285013 0.384402091658588019 -0.0930319500000000021 -0.247900976274097989 0.708934385324930028 -1.90337067645701996 0.420977760545322988 -0.0617009099999999977 0.377064400000000022 -0.31831777 0.168706400000000006 -0.19725203999999999 0.189525830000000006 0.0893977360000000054 0.109472274999999994 0.10127912 0.124994464 141 0 138 3 2.46937780000000018 176.669998 1.04321987248768 2.60897018855694007 31 false 0.222116229999999998 1.71777407594590992 0.0787378217122935015 -0.0799487100000000062 16 9 0.640524149999999959 0 16 false 139 459.004231320291979 1.67167313566699005 274.578003 19.0338250000000002 15 244.926496414810003 14.7565417812015003 16.5978239999999992 19.3787999999999982 13 345.064597886060994 11.2942728572761997 30.5521759999999993 18.4171699999999987 1.28537180000000006 0 0.961629869999999998 0.344974520000000007 0.616655350000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.056898966359995 -63.5533993142774989 21.9009410412329011 -12.8072536848096998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270845339816192 2481270845339816192 1291352421 2015.5 25.0109904738480004 0.641462370165781004 -3.36276823641974998 0.62782534793953404 0.561689044396564974 0.690809707099570014 0.813087939999999953 -1.04168016037540001 1.53144553142590989 -5.19095775179575991 1.49240023704714009 0.215566919999999995 0.157336940000000008 -0.184141040000000006 0.0439085899999999973 0.0428021849999999995 0.047376322999999998 -0.291556539999999975 0.0279611680000000015 -0.0386023450000000032 0.277885349999999975 109 0 108 1 -0.964797800000000039 89.1569977 0 0 31 false 0.0545468259999999996 1.55418023463299004 0.193814995778961996 -0.0140081170000000005 13 9 1.503112 0 13 false 109 133.89332292011099 1.01741335218713003 131.602005 20.3714680000000001 11 78.3839364582874936 10.406699140213 7.53206539999999958 20.6158199999999994 10 93.3821966498534977 9.60230528098207969 9.72497700000000087 19.8362599999999993 1.28285809999999989 0 0.779560099999999978 0.244352340000000001 0.535207749999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.077540513879995 -63.5465047594203014 21.912558134188501 -12.8091881495259994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267344941908224 2481267344941908224 1515021112 2015.5 25.0441399238783013 0.23229491553107201 -3.42193610514818003 0.173794127770410006 3.7130716668053898 0.258791941313272988 14.3477099999999993 44.211899206919 0.495862693312572989 -18.0271256670124984 0.286051975719425977 0.157427199999999989 0.285164499999999987 -0.292058529999999983 0.205524060000000008 0.0357817900000000008 0.2072436 0.234693349999999995 0.174375560000000013 0.131239309999999998 0.13193648999999999 151 0 150 1 0.265678440000000016 148.891998 0 0 31 false 0.430813369999999973 1.24156455152140999 0.0568557032362256021 -0.00691565730000000007 17 9 0.446910829999999981 0 18 false 151 585.704317266073986 1.59559360983353993 367.075989 18.7691690000000015 13 112.061049298794998 14.9415993182023001 7.49993659999999984 20.2277500000000003 13 790.916249006667954 10.3436029319582001 76.4642900000000054 17.5165940000000013 1.54169479999999992 0 2.71115679999999992 1.45858189999999999 1.25257489999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.200963777408987 -63.5862177283800989 21.9216601316003015 -12.8763976857837008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267344941908096 2481267344941908096 1622443227 2015.5 25.0448486761329008 0.284616400690169025 -3.41902492755854981 0.208707521429248005 -2.2030735476853498 0.315761922022138986 -6.97700829999999961 12.2407594960842001 0.61771049212282203 -2.76360655062243987 0.346051100506240994 0.134876670000000004 0.248096559999999994 -0.317431999999999992 0.193957240000000003 0.0027392362 0.196124610000000005 0.211761670000000013 0.188995020000000014 0.13092434 0.127569629999999989 151 0 150 1 5.33638950000000012 255.209 1.06352977643150992 4.34122480248650966 31 false 0.288661959999999995 1.53396543013888009 0.0673650799601331063 -0.00335752900000000016 17 9 0.556540130000000022 0 17 false 150 629.232852546675986 2.83465735810551989 221.977997 18.6913379999999982 14 249.667358625826012 9.27393855386898913 26.9213939999999994 19.3579849999999993 14 619.915383709352 8.23895770195194999 75.2419699999999949 17.781089999999999 1.38197290000000006 0 1.57689480000000004 0.666646960000000011 0.910247800000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.199642214718011 -63.5832800699840988 21.9234383946764986 -12.8739542684610999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267409365965056 2481267409365965056 1378736416 2015.5 25.0361352787995983 0.309590122553146996 -3.41517702594273009 0.238574292272747013 0.698471981274605969 0.346702880667379976 2.01461269999999981 -2.5427187739238799 0.658432811092110049 -2.20762483255668984 0.396469249275779978 0.181765989999999988 0.29260427 -0.275078920000000005 0.201815749999999988 0.0463672129999999974 0.212125399999999992 0.211497810000000008 0.167288120000000012 0.117293389999999997 0.15352091000000001 150 0 149 1 0.609627249999999954 153.897995 0 0 31 false 0.234789419999999999 1.74919901496241992 0.077569716066719599 -0.00769343599999999968 17 9 0.592615699999999967 0 17 false 147 386.963892768305982 1.37698128811066001 281.02301 19.2191890000000001 17 175.032138910122001 8.63318536239579082 20.2743399999999987 19.7435930000000006 16 305.804005708563977 9.07823984930745986 33.6853869999999986 18.5483110000000018 1.2425866000000001 0 1.19528199999999996 0.524404500000000051 0.670877460000000037 \N \N 0 \N \N \N NOT_AVAILABLE 151.178268007738012 -63.5834630971107018 21.9166075080336995 -12.8671635331392 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267546805062144 2481267546805062144 926569906 2015.5 25.0623241134393986 2.60602947626449 -3.39622124838893003 2.03363823154211998 \N \N \N \N \N \N \N -0.396664100000000019 \N \N \N \N \N \N \N \N \N 56 0 56 0 -0.671661559999999991 43.9067993 0 7.03542143992788015e-16 3 false 0.0283106750000000004 \N \N 0.115713015000000002 7 6 8.15549399999999913 0 7 false 58 88.7108348350844977 1.40925414499775004 62.9487991 20.8184240000000003 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.213530051616004 -63.5552424807297029 21.9487110142421997 -12.8592136451326002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481267478085444864 2481267478085444864 316512409 2015.5 25.0721790959092985 0.174426897362189998 -3.40643933948040001 0.136282663067287008 0.075523131261920104 0.200858495148550004 0.376001699999999994 0.635962750650927999 0.368931410297750006 -4.07855668152509043 0.236838316709010011 0.220394759999999995 0.321640519999999985 -0.196662100000000006 0.151140419999999998 -0.0176925060000000002 0.119088285000000002 0.164321329999999988 0.107508279999999998 0.135496869999999991 0.187008430000000003 160 0 157 3 1.42651630000000007 177.513 0.358124492626258006 0.780686742369971043 31 false 0.666956100000000052 1.68894023674545002 0.0462418673858433979 0.0228709409999999988 18 10 0.332064540000000019 0 18 false 156 897.971832672979986 2.10326097819294011 426.942993 18.3052080000000004 18 588.459831182632001 9.47873825681235083 62.0820849999999993 18.4270950000000013 17 482.794253902791979 6.09836246488306966 79.1678540000000055 18.0525149999999996 1.19297080000000011 0 0.374580379999999991 0.121887209999999996 0.252693180000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.243250417913998 -63.560345499759201 21.9542137345166992 -12.8723441279456008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266756530940032 2481266756530940032 1174799659 2015.5 25.0990377954270016 0.825160847538683018 -3.40470162200508009 0.419335840921452985 1.09448756361339994 0.96577880231711799 1.13326940000000009 4.30246749464008005 1.10664862536271991 -42.2016873709031017 0.759689694403586024 -0.154384870000000007 0.737207350000000039 -0.159095800000000009 0.201537460000000002 -0.285795899999999992 0.0669005000000000016 -0.0810866699999999996 0.0833820400000000045 0.219921220000000001 0.18500374 124 0 122 2 14.0359510000000007 488.097992 2.76895464424387017 16.7234654701963983 31 false 0.0829228399999999977 1.57969195450010003 0.156079293112621004 -0.031568236999999999 14 9 1.0332977000000001 0 14 true 122 435.658376813390021 2.7112807634128 160.684006 19.0904999999999987 11 193.486385779713004 13.4027607537347002 14.4363080000000004 19.6347619999999985 10 490.695372332887985 5.1805360030434997 94.7190300000000036 18.0348900000000008 1.57045469999999998 0 1.59987260000000009 0.544261930000000005 1.0556106999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.296144348701006 -63.5474246186617009 21.9804284593961015 -12.8806375245043991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481266692106892928 2481266692106892928 1189080254 2015.5 25.1068896005989011 0.0420855294185739984 -3.4101111246505198 0.0354531786773525023 3.53143274813891983 0.0481055401666097976 73.4100999999999999 55.1183275017157968 0.0801437399101379983 -23.1564975637412012 0.0677377081840555006 0.307372179999999995 0.475383339999999988 -0.20946532000000001 0.0465408449999999974 0.175843820000000012 0.0903892200000000062 -0.165881589999999995 0.104825219999999997 0.00108293699999999996 0.251557499999999989 132 124 127 5 3.54906150000000009 185.376999 0 0 31 true 297.937470000000019 1.59222090871062005 0.0115141147586945002 0.121268509999999996 15 9 0.0527632599999999993 0 15 false 125 210694.656680143991 60.528544259955801 3480.90991 12.3792310000000008 15 110555.999134489 140.545801912478993 786.619000000000028 12.7424330000000001 15 143332.494105224003 167.407883637341996 856.187260000000038 11.8710579999999997 1.20500680000000004 0 0.871374129999999969 0.363201139999999978 0.508172999999999986 17.8713945884583012 2.59440740638917999 3 5500 3.5 0 NOT_AVAILABLE 151.317228061777001 -63.5490035891169995 21.985849297963199 -12.8885603675407996 100001 5483.75 5303 5658 0.118000001 0.0142999999 0.201299995 0.0590000004 0.00469999993 0.101999998 200111 0.915861600000000053 0.860318499999999986 0.97935899999999998 0.683384299999999945 0.670197900000000013 0.696570699999999987 +1635721458409799680 Gaia DR2 2481360524256759296 2481360524256759296 1408957806 2015.5 25.1133603695586984 0.561490209318668998 -3.40504935454571989 0.546665751525207022 -1.09747737886126995 0.645018771512641975 -1.70146580000000003 2.1958846282820299 1.3073040329263601 -4.14253405963842969 1.11295077389703989 0.401049319999999987 0.191707130000000003 -0.0624818129999999972 0.0675105149999999932 -0.0230508580000000005 0.095245979999999994 -0.0297971300000000015 -0.0488552670000000008 -0.0121654720000000001 0.400369350000000013 116 0 115 1 -0.415926399999999974 103.305 0 0 31 false 0.0720831450000000012 1.5677999742845401 0.176809229745442997 0.0814253759999999938 13 10 1.27109249999999996 0 13 false 115 161.065610790725003 1.10699951570996991 145.496994 20.1708579999999991 11 110.212574631069998 10.3161334189104998 10.6835159999999991 20.2458099999999988 12 114.108540294231005 9.06538195266574043 12.5872840000000004 19.6186240000000005 1.39273129999999989 0 0.627185800000000016 0.0749511699999999975 0.552234650000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.325543733057003 -63.541680966891299 21.9939252393790987 -12.8862434690488996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360524256760448 2481360524256760448 1598412967 2015.5 25.1143759195684986 0.595136099358424042 -3.3997020566506202 0.549981680685368013 -0.00987142564382409958 0.681663738021483945 -0.0144813709999999998 13.9067566947425991 1.35082735797009001 -13.0148492859109997 0.960243555509951996 0.285431299999999999 0.259467779999999981 -0.203948419999999991 0.183367239999999987 0.0236706120000000006 0.074903300000000006 0.371749370000000023 0.0907337099999999952 0.130270319999999995 0.114336720000000003 125 0 122 3 3.52569460000000001 178.757996 2.09100802305990019 4.79777792949897997 31 false 0.0634034650000000061 1.30071974509116006 0.157990942728327005 0.0476175399999999999 15 10 1.19993630000000007 0 16 false 129 193.744925578523009 1.75647221474493009 110.303001 19.9702899999999985 12 69.5544452101347019 6.92956554427478011 10.0373459999999994 20.7455770000000008 11 245.831598010456986 8.04046764469267039 30.5742909999999988 18.7853260000000013 1.6278416 0 1.96025089999999991 0.775287599999999966 1.18496320000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.322516772216005 -63.5364081967709993 21.9969183166125006 -12.8816491030853992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361623769881472 2481361623769881472 30899587 2015.5 25.064688863496901 13.0962999236013005 -3.37198427370107989 5.72437399416030956 \N \N \N \N \N \N \N 0.57389884999999996 \N \N \N \N \N \N \N \N \N 40 0 40 0 1.6255767000000001 49.5924988 4.26658002506481981 1.22551598402119999 3 false 0.0119392509999999997 \N \N -0.143453460000000005 5 4 42785.8949999999968 0 5 false 43 72.1049020861010064 3.12326556654896015 23.0863991 21.0434529999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.195359354207 -63.5322757749693992 21.9601482634455003 -12.8375650579313003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270883994957952 2481270883994957952 930752502 2015.5 25.0296201364503013 0.136721993543919007 -3.3532239863285902 0.105348228905592006 1.08999533510380009 0.15131434701638799 7.20351599999999959 -14.6765669917486008 0.295992830130710982 -11.1228374721729004 0.18422401522135301 0.161029320000000004 0.280015650000000005 -0.227607730000000008 0.156744390000000011 -0.0727793649999999986 0.135729249999999996 0.184002379999999993 0.120399240000000005 0.12811307999999999 0.167529260000000013 162 0 161 1 1.67664769999999996 186.776001 0.169257799696049011 0.257125455471340025 31 false 1.07262799999999991 1.44427625182251007 0.0338505051277609992 0.000994690199999999965 18 10 0.267697450000000003 0 18 false 159 1185.16575576341006 1.83090694770462004 647.310974 18.0039179999999988 17 359.143260451140009 8.95916592555009039 40.0866850000000028 18.9632189999999987 17 1236.86032856411998 9.38268157784898982 131.823759999999993 17.0311179999999993 1.34665009999999996 0 1.9321003000000001 0.959300999999999959 0.972799300000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.106391088561992 -63.5300216094110013 21.9338975556865989 -12.807194458883 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270879699338752 2481270879699338752 759444194 2015.5 25.0244819565414005 0.0467951147337367021 -3.34415446268386995 0.0464094202997661978 3.78930283573644999 0.0574305087776992018 65.9806600000000003 -16.2073754228301006 0.113582037079466999 -34.1295774354431032 0.115217098464409001 0.224969310000000006 0.22838043999999999 -0.0196215700000000014 0.161703409999999992 -0.271090800000000021 0.324107440000000024 0.374311950000000004 -0.220907269999999989 -0.298609320000000011 0.459714230000000001 122 122 118 4 11.0274789999999996 371.588989 0 0.391663547818827007 31 true 220.064069999999987 1.6570887336756901 0.0147437008317672005 0.101866250000000005 14 9 0.0820497939999999953 0 14 true 120 2233365.98963906011 1085.05772552792996 2058.29004 9.81596599999999953 13 1331015.89284140989 2045.94221344912989 650.563800000000015 10.0409299999999995 13 1301928.66610597004 1880.37837400792 692.375900000000001 9.47545200000000065 1.17891309999999994 0 0.565477400000000019 0.224964140000000007 0.34051323 \N \N 0 \N \N \N NOT_AVAILABLE 151.087391337399993 -63.5239526463507005 21.9324475990941998 -12.7968712848390993 100001 6625.58984 6528.2998 6735.4502 1.05669999 0.798200011 1.18560004 0.497299999 0.393000007 0.586099982 200111 1.86145519999999998 1.80122699999999991 1.91735049999999996 6.01586529999999975 5.8947061999999999 6.1370243999999996 +1635721458409799680 Gaia DR2 2481361353185524352 2481361353185524352 1108838203 2015.5 25.0908722902447998 0.667455197932864008 -3.38338583315182984 0.530239909720847002 2.22711614854104001 0.75760840603274604 2.93966649999999996 49.7111446656493996 1.43544380214926992 -14.1361835858845009 0.911273174059587965 0.225422320000000009 0.292935100000000004 -0.22987995 0.171914600000000001 0.0214023300000000007 0.155951990000000013 0.181207580000000007 0.132927800000000013 0.123177400000000006 0.174491480000000004 151 0 147 4 6.41514800000000029 278.820007 2.84206518272464015 37.975630572215799 31 false 0.0474385599999999977 1.02813969754603995 0.169428671431416988 0.0223067480000000012 17 10 1.28495659999999989 0 17 false 145 191.356168083834007 1.38297183486961006 138.365997 19.9837589999999992 12 38.3890440061121012 6.14909135034393017 6.24304340000000035 21.3908699999999996 14 268.302177386664994 9.05584842333048989 29.6275019999999998 18.6903599999999983 1.60272459999999994 0 2.70050999999999997 1.40711019999999998 1.29339979999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.259320746608012 -63.5315631631493005 21.9807383688659002 -12.8578183800185997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361417609962624 2481361417609962624 835310826 2015.5 25.073025338515599 12.3576411279995 -3.37852557902039008 4.90118848374796023 \N \N \N \N \N \N \N 0.849635200000000035 \N \N \N \N \N \N \N \N \N 50 0 49 1 -1.17538980000000004 33.3124008 0 0 3 false 0.0238761439999999985 \N \N 0.27434873999999998 6 5 183.37897000000001 0 6 false 51 75.7806836369677939 1.14788416175990005 66.0177002 20.9894700000000007 6 66.558379615962707 6.44069826814204038 10.3340320000000006 20.7933799999999991 6 60.6579413099795985 10.0880959169983004 6.01282359999999994 20.3047000000000004 1.67874340000000011 0 0.4886799 -0.196088790000000013 0.684768700000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.218483833958004 -63.5346905274493992 21.9656002047565018 -12.8467187096541995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360592976239360 2481360592976239360 73659641 2015.5 25.1051005400508984 0.218340722049179009 -3.39011888613269008 0.192413066808080013 0.96886223869905197 0.244790594357050001 3.95792270000000013 9.70830425870794933 0.481637393741378983 2.82869441242274 0.344058646879424002 0.320280520000000013 0.286141069999999997 -0.27290072999999998 0.0965821899999999983 0.102483530000000003 0.0472833069999999966 0.0613152530000000001 0.173595959999999994 0.151353939999999992 0.190491400000000005 118 0 117 1 1.03247789999999995 127.445999 0 0 31 false 0.522855500000000029 1.5516889371109599 0.0575790661656370995 0.0682992899999999986 14 10 0.436788979999999993 0 14 false 117 655.562472635322024 1.87362385510115992 349.890015 18.6468300000000013 13 313.290976659387013 13.3906390630301999 23.3962670000000017 19.1115190000000013 11 505.36675316203798 13.4944234703764998 37.4500430000000009 18.0029029999999999 1.24878679999999997 0 1.10861589999999999 0.464689249999999998 0.643926600000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.294586822392006 -63.5316511494321006 21.9917245428081998 -12.8693230214599001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361451969702016 2481361451969702016 885269041 2015.5 25.0921690359975997 0.300114907994631974 -3.37384102659533003 0.252037968156545 2.26505160645904979 0.351191440754137996 6.44962069999999965 20.5160362052084011 0.665015826328897997 6.16782415417462015 0.454387920759773023 0.251578120000000016 0.288341879999999995 -0.0962894599999999934 0.107841425000000005 0.0443950929999999966 0.0470024159999999983 0.167272090000000012 0.00267421000000000022 0.153919919999999988 0.127796319999999991 137 0 134 3 2.60107160000000004 174.634995 0.842860355936634997 1.55421303348780993 31 false 0.228222919999999996 1.41459219880451004 0.0826694599689627024 -0.00464830899999999977 16 10 0.588727059999999969 0 16 false 133 424.722489278895978 1.65087649162323991 257.270996 19.1181030000000014 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.252894962768011 -63.5223667569034021 21.9855896064245009 -12.8494273590597992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361387545902336 2481361387545902336 57353775 2015.5 25.1032173053081991 3.32255994414374012 -3.3767201295537399 3.24419151096132996 \N \N \N \N \N \N \N 0.246320189999999994 \N \N \N \N \N \N \N \N \N 105 0 103 2 33.4539339999999967 1704.18005 19.2027398064103991 164.475416810196009 3 false 0.0024143131 \N \N 0.104136350000000003 14 9 8.36100099999999991 0 14 true 120 142.476936837135014 2.22277565975461 64.0987015 20.3040050000000001 12 163.046282781270008 8.78226920758586083 18.5653930000000003 19.8206099999999985 10 440.26626236560702 5.3309495998496601 82.5868399999999951 18.1526320000000005 4.23445750000000043 0 1.66797829999999991 -0.483394619999999997 2.15137299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.278040212451998 -63.5203087324892977 21.9950105603822017 -12.8561777519734992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361383250224896 2481361383250224896 671836782 2015.5 25.1037549039952985 0.123128432937297999 -3.37440260792326985 0.0980576897865715058 0.474990172914889985 0.142038100616515006 3.34410400000000019 7.1676220439303 0.261641940280411989 -7.35487494738497993 0.180464210311729989 0.209142610000000007 0.316149120000000006 -0.20062257 0.107762629999999998 -0.0412442349999999971 0.080737299999999998 0.0461555719999999989 0.10403801 0.124531760000000005 0.205496420000000013 151 0 150 1 1.49777019999999994 171.285004 0 0 31 true 1.35908030000000002 1.54732783735141011 0.0324730589915544002 0.0373598100000000002 17 10 0.238371639999999996 0 17 false 147 1428.69275381478997 2.08451773901188009 685.382996 17.8010179999999991 14 706.475627690572992 11.4785027379137006 61.5477139999999991 18.2286450000000002 15 1084.84104388489004 10.5863160475959006 102.475784000000004 17.1735040000000012 1.25381520000000002 0 1.0551413999999999 0.427627560000000018 0.627513899999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.276930614753013 -63.5179819060502027 21.9964003305649989 -12.8542224860859999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361731143212928 2481361731143212928 661359675 2015.5 25.0707199893404002 0.033892463289234398 -3.35612951358982992 0.0254521449742228997 1.20667390986884993 0.0377819053169463973 31.9378799999999998 19.1957619387899001 0.0709338909183615945 -3.50820259369332987 0.0499488462952056012 0.126819600000000005 0.33159843 -0.276288240000000018 0.0684190499999999951 -0.0353208740000000021 0.0376775040000000006 -0.156433340000000004 0.144825860000000001 0.130928309999999992 0.17172772 159 0 158 1 -1.97388330000000001 120.433998 0 0 31 false 25.9700869999999995 1.55498167987548008 0.00917468873993917966 0.025417116 18 10 0.0736354139999999963 0 18 false 157 20331.7343127171007 7.49364459927825965 2713.19995 14.9179300000000001 16 9452.13782844554044 19.9565235503170015 473.636500000000012 15.4125630000000005 14 15612.8603772390998 30.0425880829418013 519.690900000000056 14.2782134999999997 1.23280180000000006 0 1.13434980000000007 0.494633670000000025 0.639716150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.192589276498012 -63.5153613583091996 21.9718950923797003 -12.8250574505137998 100001 5011.93994 4925 5117.5 0.559199989 0.453500003 0.642099977 0.270999998 0.222900003 0.317099988 200111 1.0336303 0.991428140000000013 1.07044530000000004 0.607363340000000029 0.563510359999999988 0.65121629999999997 +1635721458409799680 Gaia DR2 2481361731143212800 2481361731143212800 356216877 2015.5 25.0779593361948017 0.43037472900033702 -3.35116356357164991 0.398133273419330025 0.13517299423059001 0.519434129691702995 0.26023126000000002 12.0803364848261001 0.914253685345178035 -5.64813455795018005 0.646138296423769964 0.383867559999999997 0.248139069999999989 -0.152574669999999996 0.143927990000000006 -0.0593881269999999989 0.0643946100000000049 0.152987630000000013 0.159829749999999993 0.208094050000000003 0.294686170000000025 141 0 138 3 1.89922790000000008 165.669006 0.568484555621410981 0.301064703960350011 31 false 0.112396270000000006 1.63248650261372008 0.126442399525901999 0.0856130300000000066 16 9 0.836824829999999964 0 16 true 136 230.524414692958004 1.2615592027865401 182.729996 19.7815739999999991 13 71.9936340309402993 8.89067185116861936 8.09765900000000016 20.7081529999999994 14 264.602574197345973 8.86574222229864972 29.8455070000000013 18.7054350000000014 1.46013259999999989 0 2.00271800000000022 0.926578499999999972 1.07613950000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.202577105990997 -63.5078085610908971 21.9806642657188007 -12.8231133579570002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361726847614080 2481361726847614080 206248278 2015.5 25.0754191687540988 2.69164356491639989 -3.34600514533310012 1.90244336759277011 \N \N \N \N \N \N \N 0.0826187399999999961 \N \N \N \N \N \N \N \N \N 114 0 114 0 61.0638000000000005 5771.7002 14.9543319128651007 373.143830930624006 3 false 0.00433029330000000035 \N \N 0.0377760529999999969 17 9 5.14200500000000016 0 17 false 148 391.268460977606992 4.64023016225850959 84.3209 19.207177999999999 16 491.65649961605601 9.3253856017233705 52.7223779999999991 18.6222339999999988 16 1116.79063712363995 15.9484662316809995 70.0249560000000031 17.1419899999999998 4.11085299999999965 0 1.48024369999999994 -0.584943800000000014 2.06518749999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.192542324009992 -63.5042029879418024 21.9802023790660002 -12.8173830106963003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361761207351680 2481361761207351680 194952424 2015.5 25.0871099571659002 0.689136533046064037 -3.3474419144282499 0.765625511822893956 -1.30738936956132989 0.770319460202952055 -1.69720409999999999 -0.222813994802911003 1.50987980123307008 -2.5147795086384801 1.80933071831892001 0.45761126000000002 0.355466569999999982 -0.207829650000000005 -0.139262379999999991 0.162249150000000009 -0.142128749999999998 -0.269432430000000001 -0.0175198399999999983 -0.0120026960000000002 0.376743800000000018 114 0 114 0 -0.113575179999999998 106.672997 0 0 31 false 0.046940825999999998 1.58395136851262008 0.225068485318836997 0.0697746050000000034 13 9 1.7565868 0 13 false 115 123.118677518751994 1.15479194764559989 106.614998 20.4625549999999983 10 76.9389438098874052 15.6608054352214001 4.91283460000000005 20.6360230000000016 12 120.178628832637997 18.4335073938157983 6.51957460000000033 19.5623509999999996 1.6010371000000001 0 1.0736713 0.173467640000000006 0.900203700000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.217613835844986 -63.5005769300207987 21.9907802188693005 -12.8230302607351998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272013570930304 2481272013570930304 1086105403 2015.5 24.9384290802732984 0.297540995317630008 -3.32738757922489015 0.186957358975455012 0.993945204935763993 0.309416279780768022 3.21232369999999978 1.27693172037597003 0.573487738814656978 -13.6802979741838993 0.337627104858441995 -0.139883919999999995 0.393526819999999999 -0.340767260000000016 0.153740700000000008 -0.25613691999999999 0.19478527000000001 0.0645090400000000036 0.0749097100000000043 0.0667295900000000053 0.100838474999999997 149 0 145 4 3.87740760000000018 214.533005 0.826651477943625035 2.73589587430282011 31 false 0.341395769999999987 1.30797773115973004 0.0620417042705255981 -0.107476725999999995 17 9 0.520345700000000022 0 17 false 142 601.799290149671037 1.87305783908032009 321.291992 18.7397370000000016 14 182.43897217466801 7.80490510149332994 23.3749119999999984 19.698595000000001 15 660.842195479454972 8.41208010843132037 78.558716000000004 17.7116760000000006 1.40126649999999997 0 1.98691939999999989 0.958858499999999947 1.02806090000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.896619500696005 -63.5447571995139029 21.8569581175905014 -12.7495315174710999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271807412496512 2481271807412496512 135164118 2015.5 24.957674428065399 0.449392801005188025 -3.34008053137731009 0.302901719205851017 1.60045662291671009 0.480040795786094987 3.33400130000000017 1.13558899015171 0.897408838122948027 -12.6250697857954997 0.54790251423153602 -0.12950078000000001 0.384070279999999986 -0.269545099999999982 0.100436196000000005 -0.256848420000000022 0.131447960000000003 0.198091430000000013 0.0579402629999999988 0.0314941670000000035 0.0507122279999999981 136 0 136 0 2.30064579999999985 171.082001 0.803614019034804006 0.804985163791327007 31 false 0.140770050000000008 1.36470831763291001 0.0950536023372095945 -0.126244099999999998 16 9 0.801663800000000037 0 16 false 135 278.779844273924994 1.56712742194655008 177.891998 19.5752120000000005 12 65.748333006106094 5.46563908314839964 12.0293949999999992 20.8066770000000005 12 329.904598685734015 7.50828753010110006 43.9387299999999996 18.4659499999999994 1.41923080000000001 0 2.34072689999999994 1.2314643999999999 1.10926250000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.947713653882005 -63.5482471510327969 21.8704483517516017 -12.7684294509406993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271811707893632 2481271811707893632 430243583 2015.5 24.9540692315745005 1.53061960912027994 -3.3376911605902202 0.96965454212019897 \N \N \N \N \N \N \N -0.127719570000000004 \N \N \N \N \N \N \N \N \N 126 0 126 0 25.7344970000000011 1122.20996 7.65615226715700015 63.6914442159137977 3 false 0.0146166349999999994 \N \N -0.0796450100000000022 15 8 2.99372030000000011 0 15 false 129 282.34941214836698 2.82389632241870014 99.9858017 19.5613980000000005 10 378.210141669984012 10.8471024917582994 34.8673900000000003 18.9070549999999997 10 662.246407861803959 14.9345495623832001 44.3432460000000006 17.7093719999999983 3.68499640000000017 0 1.19768330000000001 -0.654342650000000026 1.85202599999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.938130453534995 -63.5475841707998015 21.8679255505984003 -12.7648785754704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272116650147328 2481272116650147328 409664424 2015.5 24.9455657884951982 0.417673581605268018 -3.31595360715870013 0.279965508870194002 -0.173004597847318004 0.436308536942642988 -0.396518949999999981 0.364842463777349024 0.881188211884344041 -3.40011732865030014 0.531337705023431028 -0.0684264700000000031 0.267476700000000012 -0.246551920000000008 0.143659010000000004 -0.219868900000000006 0.202826960000000001 0.0847296599999999983 0.0100941659999999999 0.0112121630000000007 0.124162529999999993 141 0 139 2 0.401118760000000019 139.987 0 0 31 false 0.151564300000000013 1.81893872379617005 0.0911591588682985066 -0.142440630000000013 16 9 0.7870838 0 16 false 139 275.859831440670973 1.11191867957387003 248.093994 19.5866450000000007 13 166.740016843646004 7.90045752555644043 21.1051080000000013 19.7962899999999991 12 181.705090105766004 5.3070980265901504 34.2381249999999966 19.1135030000000015 1.26312380000000002 0 0.682786939999999953 0.209644319999999995 0.473142620000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.900416656886989 -63.5313917820882992 21.8680800218618998 -12.7415426896998998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319159427363968 2481319159427363968 1592755359 2015.5 24.9319456998008988 0.0597116624958137013 -3.29492827306025982 0.0490870582679752004 4.61785240345495041 0.0672877368908631063 68.6284399999999977 -4.78920945775734008 0.133863192593830005 -13.3252071512072998 0.104118032947861996 0.164800000000000002 0.256788369999999988 -0.21684500000000001 0.0953555600000000059 -0.132369039999999993 0.135166559999999991 0.000246710349999999985 0.0335403459999999987 -0.0208703629999999994 0.292908200000000007 132 0 132 0 2.97367239999999988 179.690994 0.186767251056124989 2.01814511359884996 31 false 6.97703700000000016 1.3319436833709799 0.0163924722529407013 0.0947273450000000045 15 10 0.131151049999999991 0 15 false 132 7154.10954409149963 5.44174248011008999 1314.67004 16.0519770000000008 14 1485.16130761963996 11.1156607402675007 133.609800000000007 17.4219529999999985 13 8907.64961691043027 23.7613309591482995 374.880069999999989 14.8875119999999992 1.45270499999999991 0 2.53444100000000017 1.36997600000000008 1.16446500000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.853002944482 -63.5179695598040013 21.8630986002374001 -12.7169796078540998 100001 3478 3284.33008 3803.62012 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272189665015040 2481272189665015040 1640339661 2015.5 24.9717401336992992 0.0434662634138556006 -3.30965743925424993 0.0322577376652833023 0.505164976818094025 0.0475032990523618984 10.6343139999999998 6.86370200606437031 0.0960025517181972016 -4.13734872466648973 0.0695744917562582943 0.0308596229999999992 0.2509189 -0.250076679999999996 0.0483278970000000016 -0.190523969999999987 0.0196216370000000008 -0.182881860000000007 0.0933572349999999967 0.106312989999999996 0.186932640000000011 165 0 163 2 -1.62629069999999998 130.231003 0 0 31 true 11.9569559999999999 1.62441122827861006 0.0105723109390382999 -0.0407574470000000022 19 10 0.0956356000000000012 0 19 false 160 9688.92221408684054 5.99564795677610984 1615.98999 15.7226769999999991 18 5228.96581973814045 13.6732401173366007 382.423299999999983 16.0553500000000007 18 6530.84994198941968 24.6909389420122984 264.503899999999987 15.2244960000000003 1.21373829999999994 0 0.830853460000000044 0.332672120000000016 0.498181339999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.947740747604996 -63.5147397940464984 21.8953587891657016 -12.7453541449068997 100001 5756 5607.95996 5912.75 0.326200008 0.142900005 0.485100001 0.163800001 0.0850000009 0.247999996 200111 1.23213829999999991 1.16767500000000002 1.29805159999999997 1.50140110000000004 1.18875609999999998 1.81404600000000005 +1635721458409799680 Gaia DR2 2481272185369627008 2481272185369627008 1611103714 2015.5 24.9755020821237999 0.637391282198726983 -3.30294310573091021 0.598168800190053029 0.859047537221410029 0.736929903355242 1.16571129999999989 0.126187652176217996 1.49324090621404992 -10.6723032946008001 1.39969887475923005 0.281412839999999997 0.229036800000000013 -0.15300720000000001 0.0170031640000000012 -0.0537427659999999974 0.032512974 -0.113889130000000005 -0.020367136000000001 -0.0348783059999999978 0.352593839999999992 137 0 137 0 -0.858855660000000021 117.912003 0 0 31 false 0.0452761500000000011 1.36249590590767999 0.187514174439292997 0.0513315540000000015 17 10 1.47931959999999996 0 17 false 139 116.278895706108997 1.02801646974812999 113.110001 20.5246139999999997 11 60.095933025208403 10.2602333855708991 5.85716999999999999 20.9042759999999994 15 104.461580239444999 10.7168255338372003 9.74743699999999968 19.7145289999999989 1.41519679999999992 0 1.18974690000000005 0.379661560000000009 0.810085300000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.949083581042004 -63.507069805353197 21.9014814373816016 -12.7405039358284 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271085860918912 2481271085860918912 1287204042 2015.5 25.0120865177017997 0.685246536538319018 -3.33423867763251991 0.677807174548353042 0.0973616143333447953 0.753200925506051 0.129263800000000012 1.76177255719868997 1.61860562201013991 -4.89992440018606956 1.68178696928367999 0.269814370000000026 0.220185180000000008 -0.238713199999999987 -0.0350396340000000001 -0.0469257400000000005 -0.0531535819999999978 -0.324387250000000016 0.0651473300000000033 0.00765858259999999992 0.383652419999999994 129 0 129 0 3.14170769999999999 179.492996 2.15417142118199001 1.93026846340476999 31 false 0.0422569179999999975 1.6289672552983101 0.201045440955032989 0.0407404859999999994 15 9 1.71540190000000004 0 15 false 129 132.743207798391012 1.13834831951462001 116.610001 20.3808350000000011 11 61.2508881519836024 20.5899500613866984 2.97479529999999981 20.8836079999999988 12 175.670872817026009 10.3557785842195003 16.9635600000000011 19.1501710000000003 1.78481270000000003 0 1.73343660000000011 0.502773299999999979 1.23066330000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.052858678239005 -63.520158410071403 21.9244153865438989 -12.7830838335724 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364991022766208 2481364991022766208 623233339 2015.5 25.0169675990326006 0.309047767304179988 -3.31934619234694006 0.256490183218419987 0.00504692645367869029 0.343050949457126997 0.0147118860000000004 0.412275620266458975 0.698858718031588055 -1.02433472131730996 0.459041710764058974 0.174238320000000002 0.203110900000000011 -0.183496180000000009 0.166439859999999995 -0.119362146000000002 0.182876440000000001 0.243514979999999992 0.0571453719999999998 0.0536430850000000001 0.195163979999999987 165 0 162 3 1.35285199999999994 181.477997 0.403376197113928026 0.272671945472879984 31 false 0.186879490000000009 1.54383220778596009 0.0815238047325556048 -0.0285628300000000009 19 10 0.626960040000000052 0 19 false 163 328.761448155274024 1.41738769786468999 231.949005 19.3961639999999989 17 159.773483294340991 7.20822303036109968 22.1654470000000003 19.8426270000000002 17 231.91421883768399 9.39700653071493086 24.6795849999999994 18.8486019999999996 1.19140399999999991 0 0.994024299999999972 0.446462630000000027 0.547561650000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.048743510970013 -63.5045968481358969 21.9347024265365 -12.7710470749088003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271983506601344 2481271983506601344 564123120 2015.5 24.9911767162114984 0.105917568213561006 -3.31053467027146997 0.0801535699991297035 2.69260334913625998 0.117774468390521997 22.8623699999999985 35.7127222228226984 0.237526508487786003 8.2205223748638403 0.166804664376149991 0.0749482959999999976 0.234309820000000002 -0.226224150000000013 0.0587871039999999997 -0.169000480000000008 0.0456131769999999978 -0.0837557000000000024 0.0746599200000000046 0.0900620200000000065 0.184091599999999994 159 0 158 1 4.45663829999999983 244.039001 0.367919915173617995 2.67940392808643013 31 false 1.74453079999999994 1.37171853565317003 0.0244311549850040992 -0.0085431110000000008 18 10 0.217321010000000009 0 18 false 156 2194.33990089348981 3.59665099135997979 610.106018 17.3351059999999997 13 541.339745207174019 3.75068043802109008 144.331070000000011 18.5177140000000016 15 2510.13069437719014 11.1948507330546008 224.221900000000005 16.2626799999999996 1.39060969999999995 0 2.25503350000000014 1.18260769999999993 1.07242579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.988066151310989 -63.5074056375285991 21.9135116285108005 -12.7533425065326007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365746937141376 2481365746937141376 1192711544 2015.5 25.0025850290749005 0.754756289251712009 -3.3105835084964399 1.04633745256698996 -0.371587593309247011 0.884819042433380054 -0.419958859999999989 -0.349893242607307975 2.13195959942992985 -2.99911092597112017 2.87177858780052997 0.524003270000000021 -0.102318900000000004 -0.458818000000000004 -0.417592560000000002 -0.460688350000000024 -0.559244500000000033 -0.743419950000000052 0.376103159999999992 0.432219950000000019 0.712382559999999998 124 0 123 1 -1.42723770000000005 96.8189011 0 0 31 false 0.0428623929999999986 1.88558047280026009 0.227496485635404005 0.0901921100000000059 15 8 3.06292700000000018 0 15 false 122 110.572041999990006 0.901503316379071995 122.653 20.5792520000000003 14 66.221598301210804 8.5122988707687508 7.77951999999999977 20.7988900000000001 13 87.7873072403305059 8.52928360706524025 10.2924594999999997 19.9033410000000011 1.39283760000000001 0 0.895547870000000024 0.219636920000000013 0.67591095000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.011287320455011 -63.5026727054058995 21.9243435246024987 -12.7575978142716995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365850016232448 2481365850016232448 912762164 2015.5 25.0045827883811995 0.163883766067941999 -3.29509203136115003 0.124902440940843004 0.783537537905368953 0.183432046853189007 4.27154100000000003 16.6309177818868008 0.364904194609055987 -24.5881446615345993 0.238031649098392001 0.110169699999999995 0.237889139999999999 -0.237694309999999992 0.103923715999999999 -0.145845090000000011 0.10294085 0.0754230500000000054 0.0884383839999999949 0.0804641799999999963 0.178091969999999988 167 0 164 3 0.571048699999999965 168.707993 0.369815496723358006 0.896666892873442034 31 false 0.703923700000000041 1.5203369967935001 0.0387326233319955013 -0.0198700859999999986 19 10 0.329102249999999985 0 19 false 162 891.41233077742902 2.10547318817646012 423.378998 18.3131699999999995 17 352.002706699813984 8.89359300940049025 39.5793570000000017 18.9850230000000018 17 817.74340345789301 12.6220200063032006 64.7870499999999936 17.4803770000000007 1.31223899999999993 0 1.5046463000000001 0.671853999999999951 0.832792300000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.000780690838013 -63.4877737579227031 21.9321142079521998 -12.7439405228188001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319189491719680 2481319189491719680 536544095 2015.5 24.9574603217883997 0.194886132017678987 -3.28335176429821018 0.152592493763827997 0.376723494063760989 0.218481087407110003 1.7242843000000001 6.79456368391106036 0.440839371470421015 -6.00393647708320977 0.301092794916843987 0.110857873999999995 0.223592559999999996 -0.214870800000000001 0.0961638540000000069 -0.17182175999999999 0.106946066000000006 0.0787139159999999949 0.0570416899999999991 0.0498190859999999985 0.19671667000000001 168 0 168 0 0.213592530000000003 166.210999 0 0 31 false 0.465585350000000009 1.66170104940906005 0.0490848495180249006 -0.0248349289999999986 19 10 0.397420969999999985 0 19 false 166 596.804772226332034 1.4772066531844199 404.009003 18.7487850000000016 16 335.275063583280996 7.94693793925562009 42.1892130000000023 19.0378860000000003 16 383.452821105330997 10.1021525173058002 37.957535 18.3026400000000002 1.20429309999999989 0 0.735244750000000002 0.289100650000000015 0.446144099999999988 \N \N 0 \N \N \N NOT_AVAILABLE 150.894045252062995 -63.4968111917822 21.8917491234405013 -12.7156416837808006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481366090535752192 2481366090535752192 1031465998 2015.5 24.9746584055619003 1.04668441768351994 -3.28604031076570013 1.46865913246592994 \N \N \N \N \N \N \N 0.530922200000000011 \N \N \N \N \N \N \N \N \N 95 0 94 1 2.12607480000000004 119.671997 2.71333584994913002 1.72597696718856009 3 false 0.027325617 \N \N 0.20471223999999999 11 8 4.54495100000000019 0 12 false 98 89.0354421516044994 1.0102842978181199 88.129097 20.8144589999999994 8 56.9475722215969995 11.8086223326708009 4.82254170000000038 20.9627000000000017 12 124.614243686321998 9.5172750104095396 13.0934790000000003 19.5229999999999997 2.03920840000000014 0 1.43969919999999996 0.148241039999999991 1.29145810000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.931511021418999 -63.4920720275286001 21.9070851021805986 -12.7244871261179995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365953095451136 2481365953095451136 39784241 2015.5 25.0061044128004006 0.514931531610330007 -3.2835562972183201 0.465498778709916017 -0.450880493487686995 0.585445004909741051 -0.77015007000000002 2.51799301667302 1.19931876617476996 -4.2282439294597598 1.05958545143836003 0.223034490000000002 0.244270739999999986 -0.178703319999999999 -0.00775510719999999987 -0.0177979800000000014 -0.0264418159999999999 -0.0720475500000000019 0.0209249820000000017 0.0579038519999999987 0.193951679999999987 135 0 134 1 -1.48934520000000004 105.940002 0 0 31 false 0.0696014199999999972 1.69421119321140989 0.147889885025000001 -0.00228479829999999988 16 10 1.10333759999999992 0 17 false 133 156.121680339611999 1.08809515863655992 143.481995 20.2047080000000001 12 106.565632814363994 14.5761844896631008 7.31094169999999988 20.2823449999999994 12 107.580229164499997 8.51879842601480064 12.6285690000000006 19.6825890000000001 1.3716600000000001 0 0.599756240000000052 0.0776367200000000063 0.522119499999999959 \N \N 0 \N \N \N NOT_AVAILABLE 150.993033112374007 -63.4766645059427006 21.9379324721579998 -12.7337830279830992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364716144853888 2481364716144853888 407390480 2015.5 25.0458385399515002 0.467932962328143021 -3.33800340605588985 0.388456938839876975 1.12741054417424991 0.524459322108494996 2.14966249999999981 5.45757950906604972 1.04472415504936 -0.335643280958200008 0.69077343670393998 0.207929670000000011 0.240996660000000001 -0.176409569999999988 0.16256045999999999 -0.088423600000000005 0.160277560000000013 0.241409449999999998 0.0655671300000000012 0.0760112500000000024 0.202028569999999991 166 0 166 0 3.67493179999999997 235.496994 1.17255193075141007 1.09426854547502006 31 false 0.0802486300000000013 1.50525836798051005 0.123636714570082004 -0.0124011710000000008 19 10 0.936153349999999995 0 19 false 168 198.883064249587989 1.16861563597574003 170.186996 19.941872 14 101.172929288432002 8.50510935452141048 11.8955470000000005 20.3387279999999997 14 148.663437652891986 14.0540989810482007 10.5779420000000002 19.3314100000000018 1.25619729999999996 0 1.00731850000000001 0.396856299999999995 0.610462199999999955 \N \N 0 \N \N \N NOT_AVAILABLE 151.124953473874996 -63.5093987640307986 21.9550942807548992 -12.7990354380888007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413956022827392 2505413956022827392 88890019 2015.5 25.9877712552498004 3.46996030547993994 -2.82950836717538978 3.19610960792791987 \N \N \N \N \N \N \N 0.240562920000000013 \N \N \N \N \N \N \N \N \N 91 0 91 0 38.9781720000000007 2273.09009 19.9578043511891003 143.058462114821992 3 false 0.00227001679999999997 \N \N 0.117629214999999995 13 10 7.53765869999999971 0 13 true 109 157.424049884014011 2.21686150122393988 71.0121002 20.1956880000000005 10 161.744378826997007 7.12286509485030006 22.70777 19.8293150000000011 12 477.248929765797982 9.4241119959937798 50.6412619999999976 18.0650580000000005 4.05905770000000032 0 1.76425739999999998 -0.366373059999999973 2.13063050000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.516293822510988 -62.6454156989901989 23.0435668626508985 -12.6723843661538993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364960958619136 2481364960958619136 1530503497 2015.5 25.0362711356245988 0.0857498007584893973 -3.3274186774353498 0.0667518585489897953 0.131469915779789004 0.0950742639963246955 1.38281290000000001 15.4796697530866005 0.186662894539235014 -4.93566675223093032 0.121197811782764994 0.146222839999999993 0.269944249999999997 -0.215827240000000004 0.130765359999999997 -0.0948796499999999959 0.110522490000000001 0.114302106000000001 0.109195314000000002 0.126386460000000006 0.172299919999999995 160 0 160 0 1.59400420000000009 184.044998 0.130256906961745994 0.362195071024877024 31 false 2.70571349999999988 1.68552238342714999 0.0216488260237359988 -0.00177031299999999992 18 10 0.171940239999999994 0 18 false 160 2692.16184655614006 3.05574457278384015 881.017029 17.1131129999999985 17 1512.66091543444008 10.3786225516388004 145.74776 17.4020350000000015 15 1751.53223175120002 5.85383247694767039 299.211200000000019 16.6533739999999995 1.21248029999999996 0 0.74866104 0.288921360000000016 0.459739689999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.095543599190989 -63.5038185464839984 21.9500045884797004 -12.7856702815911003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365781296753536 2481365781296753536 977499150 2015.5 25.0265930324221983 0.433387273034325005 -3.30324283040696987 0.377159624183416975 -0.604219087874980021 0.482903009137276018 -1.2512224999999999 -1.78302648683635989 0.946469062013459039 -3.11466428897371017 0.667743755691065033 0.254408199999999973 0.275033650000000018 -0.131724389999999997 0.178186399999999995 -0.0463350150000000002 0.176677899999999999 0.245268800000000009 0.0549147840000000012 0.0821438059999999998 0.234692630000000013 152 0 152 0 2.0390391000000001 184.031998 0.782665533019425985 0.538099276866434995 31 false 0.0989310899999999993 1.72718809537896001 0.121641123359573999 0.0111695279999999997 17 10 0.855948750000000036 0 17 false 151 212.109616248524986 1.14778572606947993 184.798996 19.8719649999999994 15 84.4888919990566052 9.56338542732354036 8.83462100000000028 20.5343899999999984 15 167.964006478443991 9.01007621110180068 18.6417959999999994 19.1988799999999991 1.19020020000000004 0 1.33551029999999993 0.66242409999999996 0.673086170000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.053122214902999 -63.4859463882493031 21.9499600266243 -12.7596352645646007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365094101985664 2481365094101985664 759848365 2015.5 25.0515877729452008 0.714866280460550008 -3.30478469616345016 0.645624870234501991 -0.197593009131999009 0.798346152299689971 -0.247502919999999987 6.37435578664226998 1.64185743658741989 -4.80747813246788969 1.27477062537989005 0.265248299999999992 0.212201859999999992 -0.155927960000000004 0.131356820000000013 -0.100139329999999999 0.158380259999999995 0.144222920000000004 0.0358658729999999995 0.0120965570000000008 0.303818550000000021 133 0 131 2 2.94680829999999983 177.966995 1.59623541980111994 0.969616906644808041 31 false 0.0400354939999999979 1.18816789506186993 0.203686523797966007 0.0577355960000000001 15 10 1.52216499999999999 0 15 false 131 117.619627344140994 1.03504949790709011 113.637001 20.5121670000000016 12 56.4334631657133983 9.56413269246182018 5.90053129999999992 20.9725460000000012 13 98.6543617393101044 11.0125624865081999 8.95834699999999984 19.7766279999999988 1.31855389999999995 0 1.19591709999999996 0.46037865 0.735538499999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.105279868599013 -63.4768514223002001 21.9731504365228005 -12.7702888646188999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364887943552768 2481364887943552768 1317972013 2015.5 25.0618639826703991 0.687516708062165027 -3.31198353469986984 0.763543861782072009 0.824069768344498965 0.800561212835357972 1.02936509999999992 12.4314503409768999 1.33703647080004995 -15.0164612079885007 1.69862586012079997 0.497089029999999987 0.501469429999999994 -0.0563898099999999985 -0.120743274999999997 0.255093540000000008 -0.133801979999999987 -0.191044149999999996 -0.152605820000000003 -0.0474140050000000021 0.400374530000000006 110 0 109 1 -1.14825210000000011 87.7067032 0 0 31 false 0.0541354750000000023 1.96514900621532007 0.195717532084516005 0.162269379999999991 13 8 1.62952610000000009 0 13 false 108 121.647654162110001 1.13618803028684989 107.066002 20.4756070000000001 8 64.9104024980310044 9.98779369802715067 6.49897300000000033 20.8206020000000009 9 102.616100037280006 9.76107286958984055 10.5127889999999997 19.7338810000000002 1.37714540000000008 0 1.08672140000000006 0.34499550000000001 0.741725900000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.132906699140989 -63.4790608971682033 21.9801981202517993 -12.7807688952615006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365094101985920 2481365094101985920 199810923 2015.5 25.0662155081666995 0.065889226178744903 -3.30550611030035979 0.0527852609944564968 0.239071465262416988 0.0767873375927854984 3.11342300000000005 -0.166193685213730014 0.133227020274392011 -4.53330811131348987 0.0991924717366464009 0.166909200000000008 0.368464650000000005 -0.138261269999999992 0.091928899999999994 -0.0331566699999999992 0.0541636240000000005 -0.0417849600000000029 0.0703367139999999946 0.139700380000000013 0.187119709999999995 157 0 156 1 -0.277487959999999978 145.576996 0 0 31 false 4.59823559999999976 1.62359513538189004 0.0175377153517296998 0.0617541259999999995 18 10 0.125030730000000007 0 18 false 154 4274.12521576140989 3.59918409744769008 1187.53003 16.6112479999999998 18 2275.79762192438011 12.0133496896051 189.439060000000012 16.9585529999999984 17 2869.85666201678987 17.2268154906766995 166.592399999999998 16.1172700000000013 1.20390820000000009 0 0.841283800000000026 0.347305299999999983 0.493978499999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.135618350649992 -63.4713561426033976 21.9867915267922989 -12.7763548826225009 100001 5732.5 5636.20996 5789 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364784864465024 2481364784864465024 590837350 2015.5 25.0757625895830003 0.804197943398601955 -3.33339925912344981 0.765187785559397038 0.295759206485496973 0.942346202611473949 0.313854100000000025 3.03739058982780996 1.74326215676727991 0.579115859253869991 1.40880589946889989 0.332437780000000016 0.347572619999999999 -0.0544579659999999965 0.128080300000000008 0.113597279999999995 0.0533170479999999988 0.268115820000000005 -0.0493402630000000023 0.11010984 0.168157520000000005 122 0 122 0 2.20454239999999979 153.266998 1.95228085193078993 1.0824690840681499 31 false 0.0328512269999999967 1.83277129752041001 0.263877054976008996 0.0528166099999999999 14 10 1.56583059999999996 0 15 false 121 109.768998420925001 1.66899520746103991 65.7695007 20.5871659999999999 12 89.229165119708199 10.4913651700525001 8.5050100000000004 20.4751200000000004 13 85.6253635378505038 8.9280678483120095 9.5905819999999995 19.930413999999999 1.59293170000000006 0 0.544706339999999956 -0.112045290000000006 0.656751630000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.181316300389 -63.4926300552577985 21.9853056882975011 -12.8057958306158 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364819224073088 2481364819224073088 1487714757 2015.5 25.0772484131905991 0.775425648431442016 -3.32328146618523013 0.74339277723011099 -0.820571435571732954 0.811293932239619986 -1.0114354000000001 4.12878728770180992 1.89315136492934011 -26.4531217446559985 1.61094429427255004 0.33413967 0.15731864000000001 -0.449682829999999978 -0.0663531349999999936 0.228029029999999994 0.0165373979999999983 -0.35838753000000001 0.230683919999999987 -0.0925815200000000005 0.247927299999999989 112 0 112 0 -0.166915850000000004 103.921997 0 0 31 false 0.0479633799999999999 1.79146213353997008 0.220154417118527013 0.051363062000000001 13 8 1.78886100000000003 0 13 false 110 125.456128734272994 1.12103477696986009 111.911003 20.4421369999999989 11 57.4678886164229965 9.16991616343753968 6.26700259999999965 20.9528260000000017 12 136.200329349187996 8.06293762060112051 16.8921470000000014 19.426476000000001 1.54371269999999994 0 1.5263500000000001 0.510688800000000054 1.01566120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.174766102814999 -63.4828310479145017 21.9905526608461983 -12.7969419705357002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481364887943551744 2481364887943551744 832055665 2015.5 25.0762945767326002 0.155659231764270989 -3.31636182059158013 0.122193780689131004 3.11892440863576015 0.185602171286779999 16.804354 38.6740802516548996 0.315256042743400022 -19.7042545275545002 0.207570149208941013 0.21147357 0.377335250000000011 -0.0572814000000000031 0.157240359999999996 -0.0278665139999999985 0.0919833199999999934 0.227050129999999989 0.0232594890000000012 0.172598050000000003 0.158107770000000009 167 0 164 3 3.33595560000000013 225.373993 0.555909283932706 2.86004344359235985 31 false 0.792673500000000031 1.23672349643792989 0.0390385011414532967 0.0402837299999999968 19 10 0.281613700000000022 0 19 false 162 1164.87176208044002 2.17876898908959982 534.646973 18.0226700000000015 18 198.975573327363009 8.27415393930754917 24.0478459999999998 19.6043899999999987 19 1574.00848020374997 19.9782449882616007 78.7861249999999984 16.7694019999999995 1.52204230000000007 0 2.83498759999999983 1.58171839999999997 1.25326920000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.166295792316987 -63.476958738725699 21.9922668488081001 -12.7901600906710993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361864286571136 2481361864286571136 452263030 2015.5 25.0924977723742018 0.753738184456814952 -3.33211126920626999 0.581861928515347016 1.5849205565428901 0.891968639640830951 1.77687919999999999 -13.5152343464670999 1.36011726258702992 -26.5901934156683986 1.04701206955165005 0.220925900000000008 0.539598200000000028 -0.094107135999999994 0.133594199999999996 0.020354487000000001 0.0693387240000000044 0.176556500000000005 0.0479028520000000027 0.12848234 0.189428199999999991 123 0 121 2 2.59181619999999979 159.300003 1.98843589959223999 1.86199535794548998 31 false 0.0495891499999999985 1.48541064115048993 0.192032983490786013 -0.0208546800000000004 14 10 1.222634 0 15 false 120 154.445492390862995 1.23714899202058004 124.839996 20.2164269999999995 12 44.5261130786827977 8.22176772674418999 5.41563749999999988 21.229849999999999 14 202.534873568436012 9.67567886037297065 20.9323699999999988 18.9956700000000005 1.5996646000000001 0 2.2341804999999999 1.01342390000000004 1.22075650000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.214026843651993 -63.4844091922862006 22.0017146920352005 -12.8107713927069007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362242243695872 2481362242243695872 1239420988 2015.5 25.1032821927258993 1.24745350158778989 -3.32138271547380004 1.58999735875505999 0.991914109107310038 1.52766037864138005 0.649302799999999958 2.62807700761179008 2.52019691815657021 -6.22155248416414963 2.92282063792218993 0.483827679999999982 0.473204879999999994 -0.0798496000000000067 0.00141987680000000009 0.505932900000000019 -0.0473503320000000019 -0.0483275579999999996 -0.0938324559999999946 0.0152985559999999996 0.110732294999999994 56 0 55 1 -0.350461699999999987 45.9435997 0 0 31 false 0.0276801139999999987 1.32329199471849002 0.415661843781889973 0.0264705299999999991 7 6 2.60316850000000022 0 7 false 57 83.4624461038052061 1.3657714307106299 61.1100998 20.8846379999999989 5 51.9154282278874035 16.3228901587414015 3.18052899999999994 21.0631470000000007 5 59.105062031878802 8.34226990211332975 7.08500960000000024 20.3328589999999991 1.33018489999999989 0 0.730287550000000008 0.178508759999999989 0.551778800000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.225728991202999 -63.4701366043335966 22.0160390519068017 -12.8047788937752998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362242245235200 2481362242245235200 933932654 2015.5 25.1073185485889994 4.83058520935824998 -3.3176822921441298 13.7045221723594999 \N \N \N \N \N \N \N -0.824434039999999979 \N \N \N \N \N \N \N \N \N 50 0 47 3 -1.01420639999999995 32.8049011 0 0 3 false 0.0174552800000000001 \N \N 0.223146399999999995 6 4 1371.03970000000004 0 6 false 52 64.5897148894646023 2.26443936119247002 28.5235004 21.1629579999999997 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.230403988391004 -63.4650799732756994 22.0212808664517006 -12.8028286376533007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365270196342400 2481365270196342400 1457995391 2015.5 25.0802412811881013 1.17669560767406001 -3.3080671104247199 1.7541974821827 \N \N \N \N \N \N \N 0.760031499999999971 \N \N \N \N \N \N \N \N \N 105 0 104 1 1.58985259999999995 122.329002 2.02778185306276981 1.10866975388865008 3 false 0.0338252669999999991 \N \N 0.209357629999999989 12 7 4.40203569999999988 0 12 true 103 111.048770773067005 1.09229315991805009 101.666 20.5745809999999985 10 81.2435066768698988 10.7711003090819002 7.54273029999999967 20.5769160000000007 9 90.8279106702592003 11.2837332752561004 8.04945599999999928 19.8663710000000009 1.54951210000000006 0 0.710544599999999971 0.00233459469999999997 0.708210000000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.16646225501799 -63.4677760828767035 21.9991636625856017 -12.7839078330106002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365334620158208 2481365334620158208 380568821 2015.5 25.1141998993083995 0.116675378325156995 -3.29336586818998001 0.0991208496684083951 0.572313951097039975 0.13940695171412501 4.10534700000000008 11.8476925011750005 0.235120998773320988 -23.5277580676835001 0.190263729490423 0.235629979999999989 0.394832730000000021 -0.0632054060000000056 0.0622195200000000004 -0.0347023570000000031 0.0155663899999999994 -0.0226297830000000005 0.0155417449999999992 0.129350319999999991 0.238735749999999997 150 0 150 0 1.81635419999999992 177.419006 0.158949182259673 0.298923354113700024 31 false 1.4027187000000001 1.64515156642759997 0.0305307771098877988 0.0814665559999999955 17 10 0.218030749999999995 0 17 false 149 1497.7337336477799 2.4537422683844099 610.388 17.7497790000000002 17 808.504925482523049 13.9134669505617996 58.1095240000000004 18.0821819999999995 17 1006.33558502522999 10.8440942231192992 92.8003400000000056 17.2550619999999988 1.21172440000000003 0 0.827119799999999961 0.33240318000000002 0.494716639999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.221345618263001 -63.4401381721358035 22.0370374153101984 -12.7827690344672007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365884376097408 2481365884376097408 320942652 2015.5 25.0289377307000009 0.674174289105458957 -3.28726541960400986 0.718221354356504027 -0.454886363744957001 0.76782604072710503 -0.592434169999999982 -0.146907497739419995 1.50238966472521995 -1.35417909051297003 1.73930167274639991 0.379322859999999984 0.334503200000000001 -0.0033295454999999999 -0.00151019190000000001 0.0166848320000000001 -0.00602662660000000041 -0.1651783 -0.105466779999999996 -0.0446852670000000007 0.466118750000000026 127 0 126 1 0.474291699999999983 127.835999 0 0 31 false 0.042553630000000002 1.31619288007587998 0.19475942805334101 0.0958587899999999993 15 9 1.73728299999999991 0 15 false 127 111.844780628557004 1.03556217551031993 108.003998 20.5668259999999989 12 79.7088745332807065 7.05492784553280039 11.2983259999999994 20.5976220000000012 11 68.9288820350305969 7.76880660277616997 8.87251900000000049 20.1659159999999993 1.32896459999999994 0 0.43170546999999998 0.0307960510000000014 0.400909420000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.042847546386014 -63.470463912191903 21.9582438288774995 -12.7456538679362996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481365510714451968 2481365510714451968 487815313 2015.5 25.0903858165051012 0.0361780164347115032 -3.2827145579889101 0.0294282570113623999 1.00085174352055994 0.0415982849541709013 24.0599290000000003 13.3589396538173997 0.0724136924479173022 -14.2848631442917995 0.0586373478738689002 0.128219649999999991 0.376533449999999992 -0.157495980000000008 0.0632932400000000006 -0.0347295660000000034 0.0213846799999999997 -0.195639200000000013 0.078192874999999995 0.129027219999999998 0.184823719999999997 149 0 149 0 -1.97989750000000009 112.379997 0 0 31 false 19.1114789999999992 1.55915641373934011 0.00993307370305900918 0.0418738800000000022 17 9 0.0741081900000000043 0 17 false 149 15268.0199110424001 8.22511440484881007 1856.27002 15.2289089999999998 15 7345.98730096057989 16.9032171422737996 434.591060000000027 15.6862630000000003 15 11424.6407203205999 29.9318012597297987 381.689059999999984 14.6173129999999993 1.22940809999999989 0 1.06894969999999989 0.457354550000000026 0.611595149999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.163087286941987 -63.4405171683264015 22.0184168528586994 -12.7640896563836996 100001 5064.83008 5003.68994 5279.6499 0.485000014 0.258599997 0.656099975 0.238499999 0.140699998 0.319499999 200111 1.05176580000000008 0.967917999999999945 1.07762589999999991 0.655831599999999959 0.594109239999999983 0.717553899999999967 +1635721458409799680 Gaia DR2 2481360318098328448 2481360318098328448 1513288934 2015.5 25.1219225627596998 3.18739874382298982 -3.41268548162015994 2.94015024362487987 \N \N \N \N \N \N \N 0.189789180000000002 \N \N \N \N \N \N \N \N \N 97 0 96 1 30.3369800000000005 1416.27002 18.4528747677600009 87.5265627463429041 3 false 0.00261747000000000021 \N \N 0.120724960000000006 12 9 8.34580599999999961 0 12 false 103 114.855718564423995 1.41884483219700996 80.9502029 20.537984999999999 11 140.784386533722994 10.3831930135759993 13.5588719999999991 19.9800010000000015 10 375.114914068890982 12.5530852264718007 29.8822879999999991 18.326509999999999 4.49171639999999961 0 1.65349199999999996 -0.557983400000000018 2.21147539999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.350186637392 -63.544971177247902 21.9991785513977014 -12.8964971884047994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352458066688 2481360352458066688 1620471269 2015.5 25.1358134191380991 0.827104394521273045 -3.41318329288045996 1.20462875544902004 0.086083524555202795 0.82659921391640101 0.104141793999999996 -2.08661377232518985 2.16684615091705979 -1.75310703108585009 2.90922953472363011 0.685197830000000008 -0.0481965840000000006 -0.473340570000000016 -0.530522900000000019 -0.286460879999999973 -0.596937999999999969 -0.783491550000000037 0.208371090000000009 0.285795599999999983 0.766384599999999971 98 0 97 1 -0.326296499999999989 87.0006027 0 0 31 false 0.0566198099999999996 1.49514812673900011 0.234515687990369009 0.150803199999999998 11 8 3.19169880000000017 0 11 false 97 135.995319005546008 1.22514500250835989 111.002998 20.3545550000000013 11 80.2193881079484044 10.8744478669201001 7.37687000000000026 20.5906899999999986 11 108.515617658837996 10.6842153109289999 10.1566299999999998 19.6731900000000017 1.38780510000000001 0 0.917501450000000052 0.236135480000000009 0.681365969999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.378840094001987 -63.5395357266513017 22.0122086388725009 -12.9020826936717992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360558616499584 2481360558616499584 1357248025 2015.5 25.1229061704672993 0.23813563265314 -3.3962561785696801 0.215339328257317997 0.398490612532774013 0.269671878892539019 1.47768689999999991 1.81792868495940008 0.509848750365193948 -3.22048570492292985 0.383805387668171016 0.341445500000000013 0.298264099999999976 -0.145804299999999998 0.157341060000000005 0.00623385239999999993 0.160415780000000008 0.146587610000000007 0.0911698100000000039 0.079922900000000005 0.300731599999999988 122 0 121 1 1.89541099999999996 146.550995 0.608295107185257033 1.34490295608869004 31 false 0.424346830000000008 1.46038049722933994 0.0706241101368418056 0.122367729999999994 14 10 0.472339779999999987 0 14 false 121 620.856868598876986 1.64651617508155002 377.072998 18.7058870000000006 12 256.446967991211977 8.12279020025641074 31.5712909999999987 19.3288939999999982 12 567.700317483314052 8.18004853180310043 69.4006040000000013 17.8766210000000001 1.3274353000000001 0 1.45227240000000002 0.623006799999999972 0.829265600000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.336542024264986 -63.5296768401374976 22.0063413536048991 -12.8815930555047995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352459675264 2481360352459675264 1667845269 2015.5 25.1431767007732994 2.0377782031920102 -3.40878068635927001 1.37443777862273997 \N \N \N \N \N \N \N -0.151594089999999987 \N \N \N \N \N \N \N \N \N 80 0 80 0 0.194895600000000002 76.7334976 0 1.16031142870231006e-15 3 false 0.0317686240000000022 \N \N 0.0558662269999999975 10 7 5.85039569999999998 0 10 false 81 98.0146494775113979 1.30614364183737997 75.0412979 20.7101380000000006 7 68.9844141470008054 30.3373120816318007 2.27391310000000013 20.7545099999999998 9 141.650874870395995 13.4747419787848006 10.5123250000000006 19.3838709999999992 2.14901849999999994 0 1.37063979999999996 0.0443725599999999984 1.32626719999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.389575567695005 -63.5324278986707967 22.0208843676326005 -12.9007068756592993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352458067328 2481360352458067328 236369956 2015.5 25.1378701352705995 0.493132269028619008 -3.40784539463997982 0.376302136605054016 -0.287129119923568987 0.549073407047248052 -0.522933960000000031 1.66889831511743991 1.28932172804316991 -2.22409060095318978 0.649156844342246964 0.294984299999999977 -0.101015779999999999 -0.53050052999999997 0.0758242699999999992 -0.176600900000000005 -0.0591042599999999987 0.186019870000000004 0.41166678000000001 0.169353510000000013 0.178274270000000012 112 0 110 2 2.26866220000000007 140.615005 0.924234255282029959 0.947986358605659052 31 false 0.139741929999999986 1.83874549514291008 0.109939211541893997 0.0569416879999999972 13 8 1.18086479999999994 0 13 false 110 293.620034328737006 1.44170546988402992 203.662003 19.5189020000000006 11 206.141263197955993 12.1783858262232005 16.9268129999999992 19.5659750000000017 11 216.358199027522005 16.8342460996273005 12.8522649999999992 18.9239859999999993 1.43893270000000006 0 0.641988749999999997 0.0470733639999999995 0.594915399999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.377924067090987 -63.5338311988120026 22.0161889106916 -12.8978808719532996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360352459671040 2481360352459671040 1575602994 2015.5 25.1397952162084017 12.2078442416436008 -3.39956673121663 4.06495134119180968 \N \N \N \N \N \N \N 0.846370940000000016 \N \N \N \N \N \N \N \N \N 62 0 62 0 2.31855399999999978 84.6414032 0 0 3 false 0.0167640559999999994 \N \N -0.044957045000000001 7 5 1108.92820000000006 0 7 false 62 71.0347239074257004 1.84002412273867999 38.6053009 21.0596889999999988 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.373940248733987 -63.5255200048449993 22.0211582418320013 -12.8908977054739005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348463988589440 2481348463988589440 31422633 2015.5 25.1722167596085988 2.23956285561086021 -3.43186010514143014 1.49204428346391005 \N \N \N \N \N \N \N 0.033633620000000003 \N \N \N \N \N \N \N \N \N 111 0 110 1 36.3888900000000035 2002.93005 11.6512826659003998 126.806122320498005 3 false 0.00687314999999999975 \N \N -0.0532359849999999996 15 10 4.61291030000000024 0 15 true 132 268.70675357708501 4.62340435275111972 58.1188011 19.6151699999999991 13 308.112454826492979 17.6802452984222001 17.4269329999999982 19.1296159999999986 14 608.355784892639008 7.79655403855015994 78.0288000000000039 17.8015250000000016 3.41066309999999984 0 1.32809069999999996 -0.485553740000000011 1.81364440000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.47047903877899 -63.5409833628057967 22.0397751429999005 -12.9328620184952996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360386819444736 2481360386819444736 1454384443 2015.5 25.1657933062372017 15.1530271657987008 -3.40303984587712005 8.79136722006122007 \N \N \N \N \N \N \N -0.490246799999999983 \N \N \N \N \N \N \N \N \N 43 0 43 0 -1.25663189999999991 27.5228004 0 0 3 false 0.0176787490000000005 \N \N -0.107441889999999998 5 5 156.55331000000001 0 5 false 44 78.5802136385077006 1.74699139626702005 44.9803009 20.9500829999999993 3 13.9887782239187004 1.79529006586026996 7.79193200000000008 22.4869379999999985 5 39.731332659628201 9.75700039178017065 4.0720850000000004 20.764088000000001 0.683634040000000054 0 1.72285080000000002 1.53685570000000005 0.185995099999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.429939514707996 -63.5176339829642984 22.044583257494299 -12.9037113934068994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481348640082914304 2481348640082914304 1279458071 2015.5 25.1727476230988998 2.90670634834394015 -3.41037482813631021 2.10652672160524013 \N \N \N \N \N \N \N 0.116302035999999998 \N \N \N \N \N \N \N \N \N 115 0 114 1 58.5566600000000008 5265.29004 16.5060473944034989 212.266800808418992 3 false 0.00339595999999999995 \N \N 0.0149476690000000002 15 10 6.12996400000000019 0 15 false 127 182.112537380973009 2.27460622734573015 80.0633011 20.0375160000000001 10 207.452548609556004 6.8459197142599999 30.303094999999999 19.5590919999999997 12 451.895262854295993 10.3942041774039993 43.4756969999999967 18.1243249999999989 3.62055129999999981 0 1.43476680000000001 -0.478424069999999979 1.91319079999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.451028452059006 -63.5213176458704964 22.0484223207381014 -12.9130917355844996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360661695856128 2481360661695856128 600784486 2015.5 25.1380607959106008 1.06188565152437997 -3.38770048177531979 1.08050567724272994 1.37391973438112003 1.05653432341982989 1.30040240000000007 -1.06302205749169998 2.68493145000521993 -1.15286481630179005 2.56024692620332006 0.468879729999999995 0.0684907000000000016 -0.54772763999999996 -0.250663250000000004 0.0769945900000000016 -0.234547200000000011 -0.465736419999999984 0.281436740000000019 0.0488204839999999973 0.380981620000000021 84 0 84 0 0.129800830000000006 79.9688034 0.348389897882505017 0.0302726052762599986 31 false 0.0360258599999999998 2.12965594764646982 0.300166928949663014 0.178602549999999999 10 7 2.80721739999999986 0 10 false 83 98.4670457542324016 1.2055386663196701 81.6789017 20.7051400000000001 6 65.1735024224841055 3.04817486007353988 21.3811570000000017 20.8162100000000017 9 87.414979255335993 7.74813133404278975 11.2820719999999994 19.9079550000000012 1.54963999999999991 0 0.908254600000000023 0.111070630000000004 0.797184000000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.359126641899991 -63.5155110666828975 22.0240044011586988 -12.8792311829816004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481360661697319552 2481360661697319552 1608714505 2015.5 25.1427144971363994 1.27666020819482995 -3.38875490512534983 1.59329020026352008 \N \N \N \N \N \N \N 0.40340123 \N \N \N \N \N \N \N \N \N 65 0 65 0 -1.32817669999999999 46.0339012 0 0 3 false 0.0245890129999999998 \N \N 0.246981019999999996 8 6 5.65330099999999991 0 8 false 66 77.0759112919893994 1.22534529618988008 62.9014015 20.971070000000001 5 43.6008925147827995 9.94734478926467958 4.3831686999999997 21.2526499999999992 7 129.866570996553008 14.6821148863181996 8.8452219999999997 19.4781760000000013 2.25060530000000014 0 1.77447320000000008 0.281579970000000013 1.49289319999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.369562127756012 -63.5144938058967981 22.0280332926636007 -12.8819270591635 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481361211451511680 2481361211451511680 1242272167 2015.5 25.175001721628 0.0342482502622884002 -3.35252581354114998 0.0290781816736274991 2.46528977335020016 0.0400572987348869966 61.5440830000000005 -11.3089976156503003 0.0667156639918668054 -8.5776965973432695 0.0635209258130776944 0.175459379999999998 0.454409600000000025 -0.109075284999999994 0.0329076160000000006 -0.0597544399999999989 0.0208953490000000006 -0.170971070000000003 0.0118230379999999993 0.022726296 0.30801820000000002 150 150 150 0 3.47352859999999986 211.701004 0 0 31 true 412.008359999999982 1.6245232987556999 0.0099126650469327799 0.102699040000000005 17 10 0.0477928670000000028 0 17 true 142 339623.273276960012 68.4046944311027971 4964.91016 11.8608720000000005 17 185133.757467774005 333.372456041564021 555.336099999999988 12.1826740000000004 15 221853.424780261994 120.023462755099004 1848.41709999999989 11.3967539999999996 1.19834890000000005 0 0.785920139999999989 0.321802140000000014 0.464117999999999975 -7.80663252477719993 1.90768075658541991 4 6000 3.5 0 NOT_AVAILABLE 151.400459556487988 -63.4680047953727993 22.0724829644709004 -12.8601629917771998 100001 5869 5781.6499 6037.7002 0.439700007 0.223700002 0.605099976 0.212799996 0.102600001 0.300999999 200111 1.43315940000000008 1.3541901999999999 1.47679129999999992 2.1955334999999998 2.1434015999999998 2.24766539999999981 +1635721458409799680 Gaia DR2 2481362207885516288 2481362207885516288 418582885 2015.5 25.1199843455130001 4.18571049132182971 -3.3243314077062398 2.21612517453197011 \N \N \N \N \N \N \N 0.556478260000000002 \N \N \N \N \N \N \N \N \N 59 0 58 1 2.62307019999999991 83.9438019 4.15559188892296039 2.53303661542146008 3 false 0.0163341759999999989 \N \N 0.150430299999999989 8 7 6.22422599999999981 0 8 false 61 86.0341142137972952 1.3826966721429399 62.2220001 20.8516879999999993 4 14.2931898771683006 8.12795921642637964 1.75852129999999995 22.4635660000000001 5 119.677987572592997 12.3619837437593993 9.6811310000000006 19.5668849999999992 1.55718669999999992 0 2.89668079999999994 1.61187740000000002 1.28480339999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.262346742266999 -63.4657588090213025 22.0308124483293994 -12.8136780017772001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362001725526272 2481362001725526272 33482569 2015.5 25.1366830664467997 0.353034744634754982 -3.32526803085132983 0.312041025626649982 0.759256838219047991 0.421399212100059983 1.80175200000000002 1.86585081648015993 0.696255565770867002 -1.69426271274426998 0.53403298223756801 0.341129300000000024 0.414828360000000007 -0.0554516999999999996 0.162876190000000004 0.0738238400000000017 0.106901930000000006 0.194522260000000002 0.031124756 0.145030479999999989 0.233604699999999998 147 0 143 4 2.56569959999999986 184.354004 0.74332519848801204 0.820826843265014983 31 false 0.163977099999999987 1.28248392577633008 0.0936858099318439025 0.113481819999999997 17 9 0.633552969999999993 0 17 false 143 302.675349657954996 1.20001434504037996 252.225998 19.4859240000000007 14 94.1641821779417967 6.72473439939635043 14.0026620000000008 20.4166740000000004 13 359.282881449212027 8.35863022144643075 42.9834630000000004 18.3733299999999993 1.49813010000000002 0 2.0433444999999999 0.930749900000000019 1.11259459999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.297039094074989 -63.4595507331494986 22.0463455108545006 -12.8207054212972 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362383978260992 2481362383978260992 147034062 2015.5 25.1256344010867991 0.109048846457305004 -3.3041796668863701 0.0877185794136472047 -0.0761681907521171014 0.130963734048345992 -0.581597570000000008 0.377429550718204998 0.230561129599587994 -5.45433894257580043 0.162369655482458991 0.204739119999999997 0.31422159999999999 0.0412625000000000006 0.0779582999999999943 -0.0549008659999999996 0.0355519200000000007 0.0579809729999999982 -0.0706766300000000042 0.155846399999999996 0.173678369999999999 150 0 150 0 1.16848789999999991 165.095001 0.201132598635764992 0.597849955431473012 31 false 1.64089189999999996 1.72434454779748991 0.0279845975054668003 0.0292373369999999987 17 10 0.208463979999999993 0 17 false 149 1804.01445551665006 3.54379724110156014 509.062988 17.5477659999999993 15 1182.22151405385989 12.2176854505821009 96.7631300000000039 17.6696409999999986 15 967.814299021157012 13.0862442725614994 73.9566099999999977 17.2974400000000017 1.1918063000000001 0 0.372201920000000019 0.12187576 0.25032616000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.254709217207989 -63.4451127581852035 22.0438204772130995 -12.7970343088940002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362379682654720 2481362379682654720 613778630 2015.5 25.1276867089855003 0.481025858443392018 -3.30472644692730988 0.476717447627755975 0.564784017144880024 0.564849539242486043 0.999883999999999995 0.840123363624384001 1.01147644966464001 -1.73526609762508 0.799685585859019055 0.455047550000000023 0.306907150000000017 0.146849649999999998 0.188803140000000008 0.103559053999999998 0.132261590000000012 0.258261379999999985 -0.141921949999999991 0.140756560000000003 0.275861259999999997 123 0 123 0 -0.107378329999999994 115.698997 0 0 31 false 0.097059919999999994 1.82739946561365008 0.129211913157826014 0.119898279999999996 14 10 0.944108660000000044 0 14 false 122 195.37391918873999 1.27422483482321991 153.328003 19.9611990000000006 8 123.986197979077005 6.17195839546200009 20.0886299999999984 20.117954000000001 9 140.436055012355013 8.61353148420293024 16.3041209999999985 19.393222999999999 1.35341629999999991 0 0.724731450000000055 0.156755449999999991 0.567976000000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.259379443975007 -63.4447415757271003 22.0455659578340999 -12.7982991128193007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362383978260608 2481362383978260608 503386487 2015.5 25.1276883436890017 0.0696360988048263935 -3.30144787163386022 0.0581334485346090002 0.533145997957705009 0.0819568384361739066 6.50520470000000017 3.84314103128135987 0.135733988145367995 -12.8013669184318992 0.105506451514071994 0.253150800000000009 0.426884079999999999 -0.0731495250000000069 0.104736419999999997 0.00704517800000000003 0.0407152200000000034 0.0204140020000000005 0.0576181899999999997 0.169484479999999993 0.222704960000000007 148 0 147 1 2.65315250000000002 190.755997 0.197233811234272 1.36642918102906008 31 false 4.43049529999999958 1.54815920123955997 0.0175181976853080006 0.0944782049999999957 17 10 0.12801978 0 17 false 143 4753.46674376876035 3.91025419700741983 1215.64001 16.4958400000000012 16 2353.14870944518998 20.9878502498029995 112.119569999999996 16.9222639999999984 16 3503.78908374952016 21.1881060836664012 165.365839999999992 15.9005749999999999 1.23214029999999997 0 1.02168940000000008 0.426424030000000009 0.595265399999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.256280863701988 -63.4417700555470034 22.0468091495736012 -12.7952529093590002 100001 5267.20996 5094 5384.66992 0.303200006 0.241999999 0.503099978 0.157800004 0.108900003 0.235499993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362345322916992 2481362345322916992 126952047 2015.5 25.1492021062124991 0.0892905237200443958 -3.30314077158922981 0.088575107017870594 0.970992665556829948 0.108111197780317997 8.98142499999999977 -4.34195230879183036 0.212657911783107001 -22.781438650793401 0.164646652202515009 0.298131939999999984 0.137500349999999993 -0.0511201500000000031 0.248024119999999987 -0.333103450000000023 0.36541267999999999 0.45028317000000001 -0.125294299999999997 -0.193278969999999994 0.433976050000000002 130 0 127 3 0.913171650000000001 136.108994 0.204574388262974 0.999790355913539042 31 false 3.12148570000000003 1.4255043863661101 0.0231160130256371013 0.122141089999999994 15 9 0.213670849999999996 0 15 false 127 3232.23772589642022 3.91957389849831994 824.640015 16.9146080000000012 13 1174.36726513905001 8.89749940489651081 131.988460000000003 17.6768779999999985 14 3054.78056836001997 10.3245992238563993 295.874019999999973 16.0494689999999984 1.3084271999999999 0 1.62740900000000011 0.762270000000000003 0.865138999999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.301399834427997 -63.4342126569012024 22.0666366766789999 -12.8047575183347995 100001 4355.33008 4178.04004 4512.08008 \N \N \N \N \N \N 200111 0.755570100000000022 0.703986000000000001 0.821055349999999962 0.18506742000000001 0.142820179999999991 0.227314650000000007 +1635721458409799680 Gaia DR2 2481363822791793792 2481363822791793792 1339160141 2015.5 25.1590426260812983 1.77091194292310994 -3.30122602763323014 2.25389077886786016 \N \N \N \N \N \N \N 0.56024839999999998 \N \N \N \N \N \N \N \N \N 50 0 50 0 -1.07960860000000003 34.9490013 0 0 3 false 0.0215839900000000008 \N \N 0.263035030000000003 6 5 6.40739600000000031 0 6 false 51 75.7118420411302964 1.6383387572414001 46.2126007 20.9904559999999982 4 72.5298108617909065 22.0552259129778996 3.28855440000000021 20.7000959999999985 5 45.1985527284304993 8.22065099936937926 5.49817200000000028 20.6241100000000017 1.55495310000000009 1 0.0759868600000000033 -0.290359499999999993 0.366346359999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.319481545515004 -63.4283156831780985 22.0767245367450009 -12.8066055490665001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362036085263488 2481362036085263488 1352235618 2015.5 25.1608888023061006 0.345709123165902021 -3.32978009744758019 0.268052877506468001 0.392210161615561992 0.432969527403032017 0.905860899999999969 10.3766323496887001 0.607187530245049012 -7.69606692403676007 0.463590592097108012 0.159485060000000012 0.540146470000000045 0.0148603450000000005 0.165771229999999992 -0.161550100000000002 0.137928560000000006 0.229349150000000002 -0.00321582220000000019 0.102714814000000002 0.273090720000000009 139 0 138 1 2.71014799999999978 181.457001 0.959968551223889022 2.04645882231061016 31 false 0.216396379999999999 1.51504847692420008 0.0780148258106573983 0.0652474299999999952 16 10 0.559022369999999991 0 16 false 137 412.447476377447003 1.58810911748908001 259.709991 19.1499440000000014 14 178.161855830414993 8.87801116366705045 20.0677659999999989 19.7243519999999997 14 388.942586895394982 15.5724821048211997 24.9762740000000001 18.2872069999999987 1.37497380000000002 0 1.43714520000000001 0.574407600000000018 0.862737659999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.350295391461003 -63.453393792818197 22.0676682414556993 -12.8338223375236993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481362070446621440 2481362070446621440 389582686 2015.5 25.1634480158804017 1.53837281406031989 -3.32023548650378997 2.57736122633572018 \N \N \N \N \N \N \N 0.586836759999999957 \N \N \N \N \N \N \N \N \N 60 0 60 0 0.849007599999999973 63.655899 1.92288291284281998 0.476596529096621979 3 false 0.0227598729999999999 \N \N 0.135736080000000009 7 6 6.6924330000000003 0 7 false 60 83.405767244897703 1.42586367008457993 58.4948997 20.8853760000000008 4 57.3054624468476987 18.4336577717618013 3.10874080000000008 20.9558980000000012 6 92.5226535661092981 10.2526836904724004 9.02423800000000043 19.8462999999999994 1.79637599999999997 0 1.10959819999999998 0.0705223100000000047 1.03907590000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.346412638964011 -63.4436667765931972 22.0737179775365 -12.8258956412390006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481311595989508992 2481311595989508992 744998550 2015.5 24.6814698920785993 1.70585214004409003 -3.40563362348333021 1.26728021181512007 0.848775229240512963 2.01520161232597017 0.421186269999999974 -3.60347974487886979 4.13501265684919961 -0.130473566831685012 2.27079598816782013 0.220847550000000004 0.112864375000000003 -0.449746460000000015 0.000687765700000000034 -0.285015550000000006 -0.140436900000000003 -0.0321993159999999987 0.378941950000000027 0.258931640000000018 0.296210399999999985 81 0 80 1 3.58721300000000021 127.121002 4.03358486250754034 2.28490044051376984 31 false 0.016018437 1.19297441933000004 0.414966397963330014 0.172500789999999987 10 8 3.81934020000000007 0 10 false 80 110.485760427394993 1.72521185803998001 64.0418015 20.5801000000000016 9 79.0496265633180002 8.33752512623675912 9.48118599999999923 20.6066380000000002 8 78.905354472659198 13.2725215955690992 5.94501599999999986 20.0191540000000003 1.4296411 0 0.587484360000000039 0.0265388489999999998 0.560945499999999986 \N \N 0 \N \N \N NOT_AVAILABLE 150.444205002693991 -63.7223909504962975 21.5829559688319002 -12.7272634637329993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481311428486215808 2481311428486215808 220745998 2015.5 24.6982814460153008 0.65510146021495097 -3.40865654184156019 0.436097119886108997 2.41254446865180983 0.675980160106619987 3.56895760000000006 12.3790850718818 1.72223606369507998 -13.3626057250546992 0.850612559834211024 0.100304075000000006 -0.0799243750000000058 -0.500986750000000036 0.0669510700000000014 -0.235414160000000011 0.0337533839999999974 0.116093799999999997 0.281205859999999974 0.0595163000000000011 0.112589209999999995 119 0 118 1 1.89980189999999993 143.251999 1.32275230061765003 1.20371730206702998 31 false 0.0774236199999999986 1.27610984846292008 0.135970603618851993 0.038331839999999999 14 9 1.55809829999999994 0 14 true 119 237.337926094790987 1.45673224041514993 162.925003 19.7499490000000009 13 62.6582107035997993 12.0733039175041998 5.18981460000000006 20.858944000000001 13 313.571640968974975 15.7207398941267993 19.9463669999999986 18.5210779999999993 1.5852075000000001 0 2.33786579999999988 1.10899539999999996 1.22887039999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.481553785821006 -63.718229349109599 21.5977879499796011 -12.7362892812118993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481311733428603520 2481311733428603520 17990439 2015.5 24.6973133173031982 11.3295867214365007 -3.39242100684553982 5.20032177151549035 \N \N \N \N \N \N \N -0.759648140000000027 \N \N \N \N \N \N \N \N \N 38 0 38 0 -2.2973501999999999 17.1982994 0 0 3 false 0.0149623280000000004 \N \N 0.0455381350000000004 5 3 124210.490000000005 0 5 false 40 70.5605256730291046 1.49021320785028011 47.3493004 21.0669609999999992 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.464454017621989 -63.7038359742646989 21.603034419327301 -12.7208511014449002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481311802147947776 2481311802147947776 1031354140 2015.5 24.6919499103488 0.598009646123226046 -3.37598768020956008 0.387870570622374011 1.65282391914361004 0.611082258419281987 2.70474859999999984 -4.50135026382705039 1.57497383581637007 -10.4604500094160997 0.674586379799605007 0.125465999999999994 -0.119789160000000006 -0.547574640000000001 0.109536369999999994 -0.185967899999999992 0.0531904549999999976 0.253665030000000014 0.350894700000000004 0.0792574899999999999 0.0882913099999999978 125 0 125 0 2.68056099999999997 165.673996 0 0 31 false 0.0970734500000000056 1.28702437117920998 0.112728448444236004 0.0489230829999999992 15 9 1.43301089999999998 0 15 false 123 247.417717695340997 1.73178004280173004 142.869003 19.7047880000000006 11 72.0644509413383929 7.47228050360489959 9.64423749999999913 20.7070849999999993 8 288.705540366870991 18.4329667163863995 15.6624564999999993 18.6107830000000014 1.45814130000000008 0 2.09630200000000011 1.00229640000000009 1.09400560000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.438166781820996 -63.6910672476885011 21.6041776087940995 -12.7036035938055996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481314791445189504 2481314791445189504 1654409990 2015.5 24.6932029840303002 1.79675575149771993 -3.35876017397899007 1.4453264530538501 \N \N \N \N \N \N \N 0.126254559999999988 \N \N \N \N \N \N \N \N \N 77 0 76 1 4.67504000000000008 141.492004 5.00389063400916978 3.88373380730148998 3 false 0.014115219 \N \N 0.0625628460000000053 9 8 4.72044599999999992 0 9 false 75 120.328959361637004 1.76122602194007993 68.3210983 20.4874399999999994 5 65.233314107666601 6.44200804875189981 10.126239 20.815214000000001 7 240.679514410808991 109.538831962325006 2.1972071999999998 18.8083230000000015 2.54230430000000007 0 2.00689129999999993 0.327774049999999983 1.67911720000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.424741834113007 -63.6748521934041989 21.6119107337161012 -12.6880652864437007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481311772083599104 2481311772083599104 1344463144 2015.5 24.7068748112648002 0.0522380103741792029 -3.38355622782414001 0.0382457991685895005 1.25609909648609008 0.0571137681537869993 21.9929300000000012 -14.5399107717384002 0.128115859928120995 -16.8965912888406997 0.0767937126494950967 0.180504739999999997 0.132467479999999999 -0.300796960000000002 0.0624755899999999975 -0.152926000000000006 0.0827651300000000062 0.0504359799999999983 0.0934390350000000036 0.0374279770000000012 0.24171606000000001 130 0 129 1 -0.565892999999999979 114.666 0 1.80478035361191014e-15 31 true 12.2962000000000007 1.54492032882967001 0.0122806411836434998 0.0443048139999999979 15 9 0.124289590000000005 0 15 false 127 10735.0950758879007 8.72979287166860018 1229.70996 15.6113510000000009 13 4783.05907804367962 14.0997653337915008 339.22969999999998 16.1521240000000006 10 8528.10623247674084 17.9105851310953987 476.148959999999988 14.9347890000000003 1.2399671000000001 0 1.21733570000000002 0.54077339999999996 0.67656229999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.475833159589996 -63.6918249856967975 21.6154897704332001 -12.7161531238422008 100001 5026.47021 4878.22021 5175.25 0.250999987 0.134000003 0.332399994 0.121699996 0.0759000033 0.179100007 200111 0.71625760000000005 0.675667000000000018 0.760453460000000026 0.295043080000000013 0.266088129999999978 0.323998029999999992 +1635721458409799680 Gaia DR2 2481316612511480960 2481316612511480960 74975513 2015.5 24.7432037291099007 1.02628707801173991 -3.39659979060773987 0.592169071750415998 3.60986527093646981 0.860756798132802037 4.19382699999999975 16.0825203579872991 2.83883781517226019 -5.6584460784064099 1.16696797723118006 -0.120302013999999999 -0.143926930000000008 -0.626462599999999981 0.247261900000000007 -0.0460088769999999966 0.237320320000000001 0.258107780000000009 0.27592620000000001 -0.116195740000000006 -0.171583519999999989 118 0 114 4 1.49926730000000008 131.910004 1.51413088872727997 1.0038963026402099 31 false 0.0438707620000000006 1.30402634958163 0.198035005757704996 -0.044992169999999998 14 9 2.59450080000000005 0 14 false 117 150.005125446102994 1.87870373404753011 79.8450012 20.2481000000000009 11 46.5761045591098011 12.6562021581622997 3.68010120000000018 21.1809800000000017 14 227.671766868157988 9.97576670164779955 22.8224829999999983 18.8686469999999993 1.82825670000000007 0 2.31233399999999989 0.932880400000000054 1.3794537 \N \N 0 \N \N \N NOT_AVAILABLE 150.562505938349005 -63.6887318507979998 21.645070917411001 -12.7417020612362997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481311561629775104 2481311561629775104 1310975016 2015.5 24.7262432322002006 0.148758842724883988 -3.38777765050507007 0.107223315073069994 0.570971027264022046 0.152404579923008987 3.74641659999999987 0.486830238204409016 0.384601281666015982 -10.18688086529 0.230975500572603992 0.0580919800000000014 0.165947750000000005 -0.27892473000000001 0.115184289999999995 -0.00942964699999999933 0.120775566000000001 0.192496730000000005 -0.00691892249999999983 -0.0510398040000000011 0.00115100740000000003 119 0 118 1 2.14251520000000006 147.567993 0.358058004186073975 1.38269846011325992 31 true 1.25534279999999998 1.51143266870655002 0.0337805506980495968 -0.0110204269999999993 14 9 0.344521369999999993 0 14 false 116 1766.93131322302997 3.08167515416222981 573.367004 17.5703159999999983 12 834.581948175272032 40.9703837073330988 20.3703700000000012 18.0477160000000012 11 1487.48873201739002 26.3677576344297009 56.4131659999999968 16.8307859999999998 1.31418279999999998 0 1.21693040000000008 0.477399830000000025 0.739530559999999948 \N \N 0 \N \N \N NOT_AVAILABLE 150.519498850039014 -63.6876933692484002 21.632297814852901 -12.7272363425462007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317437145039488 2481317437145039488 1346972425 2015.5 24.7296330996887015 0.219626212827501999 -3.37820022298009004 0.142220052756946991 0.359815025510143993 0.198579621525605987 1.81194340000000009 1.17230484791913003 0.596350772240280991 -3.36886487185517014 0.301363489792727979 -0.0785713900000000048 -0.0138845949999999996 -0.488989320000000005 0.223060000000000008 0.0102002499999999992 0.23348424000000001 0.176497979999999999 0.140754309999999994 -0.105174795000000001 -0.13256003999999999 112 0 111 1 1.35846149999999999 126.285004 0.343999574613180981 0.709249924724711045 31 false 0.765794929999999985 1.59197285031263003 0.0451491690460257972 -0.055865917000000001 13 9 0.542042299999999977 0 13 false 111 1094.43845916625992 2.5465740216784698 429.769012 18.0903869999999998 12 470.912802302548016 26.2553895897215988 17.9358520000000006 18.6690369999999994 12 969.064516004778056 24.8987853641969004 38.9201499999999996 17.2960379999999994 1.31572249999999991 0 1.37299919999999998 0.578649500000000039 0.794349700000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.517531803125991 -63.6775732018529013 21.6391569720202988 -12.7195935377752001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317643303470592 2481317643303470592 818099912 2015.5 24.7214982366802012 0.417596739604959022 -3.37506219181095002 0.273574767285484022 3.02891337805478011 0.390503102003185998 7.75643870000000035 1.53671451552751992 1.12736640468879989 -18.3683945211385016 0.480322849399339002 -0.0156471879999999994 0.049374104000000002 -0.51000319999999999 0.252269059999999989 0.165698330000000005 0.233928670000000005 0.348682500000000006 0.16860892999999999 0.023544981999999999 -0.147218529999999986 112 0 112 0 2.68211399999999989 150.389008 0.961369078817797984 1.77325650343939989 31 false 0.228833750000000002 1.31449107401165 0.0773045594748743015 -0.0343423500000000007 13 8 1.02064449999999995 0 13 false 112 505.076159075301973 2.07089920324892995 243.891998 18.9299740000000014 12 90.0326859179337049 8.28490465440131985 10.8670760000000008 20.4653869999999998 12 703.795661489206964 13.6166254794260002 51.6864970000000028 17.6433029999999995 1.57170030000000005 0 2.82208440000000005 1.5354137000000001 1.28667069999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.497929599771993 -63.6780664113965003 21.6326156819441984 -12.7136708199584003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317681958597504 2481317681958597504 381166812 2015.5 24.722392505519899 0.0390453390673562023 -3.35659940862921014 0.0270428572412449997 0.877214479163192951 0.0399169115568508981 21.9760109999999997 1.07237516383340004 0.0971552586109366012 -9.17238386884515933 0.0570823677367000987 0.106373010000000004 0.0342580860000000001 -0.435980599999999996 0.0771481400000000039 -0.121907100000000004 0.124809206000000006 -0.0688490699999999983 0.183134099999999994 0.00316589840000000003 0.217608880000000005 121 0 120 1 -1.7699043000000001 89.626503 0 0 31 true 37.567225999999998 1.61330344931195002 0.00925374717038593073 0.007656782 14 9 0.100483484999999997 0 14 false 120 30680.5859068499012 12.2527703844006997 2503.96997 14.4712069999999997 11 16749.2739964356988 24.5417146559288 682.481800000000021 14.7913979999999992 9 20339.6229323020016 53.8618241255811014 377.625949999999989 13.9910630000000005 1.20887180000000005 0 0.80033493 0.320191380000000025 0.480143549999999975 \N \N 0 \N \N \N NOT_AVAILABLE 150.482594152557994 -63.6608790943488998 21.6404757886272989 -12.6968518272771007 100001 5829 5785 5983 0.0780000016 0.0125000002 0.265599996 0.0520000011 0.00789999962 0.163100004 200111 1.22854329999999989 1.1661128999999999 1.2473027000000001 1.56982730000000004 1.40684410000000004 1.73281050000000003 +1635721458409799680 Gaia DR2 2481314864460051200 2481314864460051200 1617715044 2015.5 24.6757779847724983 0.0282279424113325017 -3.34505253828359006 0.0198110921306547984 2.2648314268012899 0.0304747191696643008 74.3183700000000016 -1.76812541818209001 0.0669650859062814047 -19.1800407252628986 0.0433486065753801997 0.142556070000000007 0.172080889999999986 -0.363503779999999999 -0.0706188199999999988 -0.166200669999999995 -0.132932560000000005 -0.350352439999999987 0.200785010000000014 0.200793100000000002 0.245931210000000011 149 0 149 0 -3.42943670000000012 92.7909012 0 0 31 true 76.8685399999999959 1.58456043797816992 0.00596780495407442033 -0.0242631209999999986 17 9 0.0739051550000000002 0 17 false 148 62124.466731824803 21.0803178918324008 2947.04004 13.705209 17 30424.3212578981002 62.8551513827109005 484.038639999999987 14.1433359999999997 17 45131.9374310860003 57.4312077786159989 785.843439999999987 13.1257105000000003 1.2162077 0 1.01762580000000002 0.438127519999999993 0.579498300000000022 \N \N 0 \N \N \N NOT_AVAILABLE 150.376279836170994 -63.6695104715903 21.6005545032918995 -12.6688887305509006 100001 5231.56982 5100 5346 0.0817999989 0 0.225999996 0.0359999985 0.00289999996 0.107100002 200111 0.865948099999999998 0.829273939999999987 0.911203899999999956 0.506065300000000051 0.489604649999999975 0.522525970000000006 +1635721458409799680 Gaia DR2 2481320735679932288 2481320735679932288 339077624 2015.5 24.6954075081670013 0.21065231436045101 -3.34068038172982007 0.119926501836527005 4.74234712469432029 0.196727395875023997 24.106186000000001 77.7884869502317997 0.559617458832542991 -9.40038556205296061 0.219237008024985996 -0.00461347100000000006 -0.0847645499999999941 -0.603807030000000022 0.137734620000000002 -0.00814645200000000021 0.0774613539999999962 0.152052939999999998 0.366884739999999987 0.108259745000000004 -0.0749030559999999956 128 0 128 0 4.25686449999999983 201.647003 0.592018011960210977 3.19277310384086022 31 false 0.882407300000000006 1.18697051387951991 0.0349093874928297979 -0.0348119849999999967 15 9 0.515058339999999948 0 15 false 126 1560.5871177824099 2.76896076714356987 563.599976 17.7051450000000017 13 255.586270682602986 6.77151519520009959 37.7443239999999989 19.3325439999999986 14 2212.22320801942988 15.7854386507779996 140.143280000000004 16.3998470000000012 1.58133400000000002 0 2.93269730000000006 1.62739940000000005 1.30529790000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.412493249479013 -63.6574683064146001 21.6208708368870006 -12.6720869543707995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481320976200003712 2481320976200003712 258317695 2015.5 24.6864047396178989 0.931192398276738054 -3.31784449165101014 0.778809265759984992 -0.381182800436823011 1.10308845075649997 -0.345559600000000022 7.50625584993639983 2.23462289774859002 -27.9181416869938985 1.70498761569533008 0.0952666499999999944 0.12917482999999999 -0.0850280199999999958 -0.0482849630000000002 -0.18717085 -0.0758439449999999959 -0.0507015999999999994 -0.00363434269999999985 0.163594109999999987 0.107404865000000002 122 0 121 1 1.93951629999999997 147.337006 2.68970552117737016 2.13155409435101006 31 false 0.0243063459999999995 1.09035491938338991 0.251798752726070996 -0.016378216000000001 14 10 1.97578900000000002 0 14 false 121 113.962970221313995 1.17872168198830996 96.6835022 20.5464550000000017 9 32.3466621198587987 5.77903273401584983 5.59724500000000003 21.5768149999999999 10 145.002859373543004 5.82727061669933999 24.8834949999999999 19.3584789999999991 1.556203 0 2.21833599999999986 1.03035929999999998 1.18797679999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.372885082772001 -63.6403461991795965 21.6209841001471013 -12.6475463317852999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317780744447232 2481317780744447232 473394669 2015.5 24.7441878654284011 1.76254896612800005 -3.34939220750713007 0.976949907283172991 \N \N \N \N \N \N \N -0.474061369999999982 \N \N \N \N \N \N \N \N \N 90 0 89 1 -0.524155700000000002 76.7582016 0 0 3 false 0.0337470799999999987 \N \N 0.0490713980000000022 11 7 4.47579200000000021 0 11 false 89 94.8248371755148014 1.29925866631121001 72.9838028 20.746061000000001 7 100.157586391636002 24.2383884580459998 4.13218830000000015 20.3496780000000008 8 125.703779952987006 5.68066617412022978 22.1283509999999985 19.5135499999999986 2.3818798000000001 0 0.836128230000000028 -0.396383299999999994 1.23251149999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.520551616885001 -63.645336289393299 21.6639294510701994 -12.6982150619773009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481320873118890112 2481320873118890112 1319209458 2015.5 24.7007526417116985 0.199296128938750011 -3.32285696200914993 0.154535003982959995 0.811377648641355975 0.233546397584499993 3.47416040000000015 68.6196113356090933 0.449903457497844994 -28.839014515060299 0.284663182304931983 0.141340789999999994 0.175327640000000007 -0.165777640000000004 0.0667970999999999981 -0.161107470000000003 0.0354306399999999994 0.0317368250000000032 0.0800743399999999939 0.167436479999999999 0.170206229999999986 133 0 133 0 -0.202989699999999995 124.125 0 0 31 false 0.555981999999999976 1.37799207866718998 0.0459729600831468993 0.0247307769999999989 16 10 0.401768499999999973 0 16 false 131 775.988679087510036 1.91706460477493001 404.779999 18.4637279999999997 12 212.668755250896993 10.9373029589491999 19.4443510000000011 19.5321299999999987 13 838.170605805531977 8.65990198316612947 96.787540000000007 17.4535879999999999 1.35419420000000001 0 2.07854079999999986 1.06840130000000011 1.01013949999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.406933809690997 -63.639027629652098 21.6327174404511986 -12.6575077791883004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481320907478631424 2481320907478631424 1028865088 2015.5 24.7250926750045004 0.446522598086521005 -3.30978298990179987 0.390456984467327017 0.458968607025393993 0.543090226271675025 0.845105650000000042 2.65681012788839022 1.02256745173344998 1.07304844552874989 0.695165187343646962 0.156937610000000005 0.129368110000000008 -0.298003799999999985 0.103398619999999997 -0.306511729999999982 0.0693600099999999997 0.143105700000000002 0.18662548000000001 0.0882651400000000058 0.248360799999999993 121 0 120 1 -0.0937560800000000055 112.924004 0 0 31 false 0.120347919999999997 1.5894259046294601 0.110161608510305001 0.110789604 14 8 0.930695649999999985 0 14 false 117 233.014256707333004 1.59279214215684006 146.292999 19.7699089999999984 9 103.685070481243002 6.84631208541321978 15.14466 20.3120979999999989 9 190.350577416822006 5.37485327013231995 35.4150279999999995 19.0630339999999983 1.26187840000000007 0 1.2490635000000001 0.542188639999999999 0.706874850000000055 \N \N 0 \N \N \N NOT_AVAILABLE 150.444676842157008 -63.617111707280003 21.6608134121119988 -12.6543625329306 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321285435754368 2481321285435754368 605788396 2015.5 24.7336659823026004 0.694284295021165954 -3.30498956629286988 0.795233670795915004 0.221905674744098003 0.833664052003345035 0.266181170000000022 1.98310368126692005 1.71620423758372009 -5.32850383267668004 2.2633885718124902 0.197111960000000003 0.212759780000000009 -0.288159700000000019 -0.0870966600000000063 -0.298490050000000007 -0.256018799999999991 -0.541426300000000027 0.169188929999999987 0.150677299999999986 0.534885500000000014 108 0 108 0 1.20666329999999999 120.566002 1.28348193161998991 0.71032469835769696 31 false 0.0495305430000000033 1.34796939213336997 0.216951592915402003 0.120255663999999998 13 9 2.25891829999999993 0 13 false 109 144.030598077055998 1.68005127772755003 85.7298965 20.292228999999999 9 59.9684636609000989 6.40222105222872973 9.36682200000000087 20.9065800000000017 10 140.290383106761993 15.0715802581622 9.3082729999999998 19.3943499999999993 1.39039099999999993 0 1.5122298999999999 0.614351300000000045 0.89787865 \N \N 0 \N \N \N NOT_AVAILABLE 150.457783083730988 -63.6092183186244995 21.6707810880093987 -12.6530791878489008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321147996802816 2481321147996802816 104413853 2015.5 24.6890665760973995 0.150189479689118 -3.29645221615405015 0.111195187590990993 0.442616244373107981 0.171199802167556009 2.58537820000000007 4.47554190618100023 0.335784263225712976 1.58019452330113008 0.208355858076403999 0.0859328659999999966 0.214373509999999989 -0.302008539999999992 0.0808630000000000043 -0.158723379999999997 0.0439749899999999985 0.0331048259999999969 0.16605143 0.135889380000000004 0.146081519999999992 157 9 156 1 -0.892953160000000024 135.386993 0 0 31 true 1.01226480000000008 1.54651384744800002 0.0339094433695363018 0.0197183639999999986 18 10 0.290808349999999993 0 18 false 153 1217.74905306029996 2.34975141208914984 518.245972 17.9744719999999987 16 487.081034333587013 9.16646568702081943 53.137279999999997 18.6323849999999993 16 1096.78318689711 11.4911364905537994 95.4460140000000052 17.1616169999999997 1.30064920000000006 0 1.47076800000000008 0.657913199999999976 0.812854769999999949 \N \N 0 \N \N \N NOT_AVAILABLE 150.358558500697001 -63.6197501133497028 21.6316340840453982 -12.6286598654599995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481322389242506368 2481322389242506368 1000009137 2015.5 24.6841811475810999 2.53283281016449013 -3.26408308392963997 1.82966100723565006 \N \N \N \N \N \N \N -0.16064094000000001 \N \N \N \N \N \N \N \N \N 71 0 71 0 -0.945543050000000052 55.1282997 0 0 3 false 0.0287251700000000013 \N \N 0.211732399999999987 9 6 7.40882299999999994 0 9 false 71 90.8190345607258962 1.90685986805993002 47.6274986 20.7929229999999983 9 94.4565167664984955 25.3702418238525986 3.72312239999999983 20.4133099999999992 9 77.9934855175427941 11.1645402968180996 6.9858216999999998 20.0317749999999997 1.89883099999999994 0 0.381534580000000012 -0.379613880000000015 0.761148449999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.318674393565004 -63.592232988337301 21.6392761434760992 -12.5967861530734009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321491596844416 2481321491596844416 1576406632 2015.5 24.7137002424611012 3.59916324460305992 -3.29243469429161006 1.37969667843252997 \N \N \N \N \N \N \N -0.248989220000000011 \N \N \N \N \N \N \N \N \N 70 0 70 0 1.04339329999999997 76.8889999 1.13061127274150008 0.155587476491861998 3 false 0.0227993699999999994 \N \N -0.0479890560000000022 9 7 9.83726300000000009 0 9 false 71 85.8720587652855016 1.56941030373797008 54.7160988 20.8537369999999989 5 41.8560071370186009 10.1626863185858003 4.11859660000000005 21.2969930000000005 5 49.4889876722819011 12.7107823857891002 3.89346499999999995 20.5256480000000003 1.06373359999999995 0 0.771345139999999985 0.443256380000000005 0.328088759999999979 \N \N 0 \N \N \N NOT_AVAILABLE 150.405290970783994 -63.6059812390656987 21.6565697329691993 -12.6340358359004998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321491594309120 2481321491594309120 234096626 2015.5 24.7221428056346006 0.719561692670146025 -3.28696506376478981 0.741860577186235992 -0.0497173922861084 0.859023170604791053 -0.0578766600000000034 0.273934473215979024 1.7194569934839099 0.249411904549658003 1.55604154359792002 0.288289640000000014 0.0914551200000000009 -0.227123949999999991 0.117623069999999996 -0.291691780000000012 0.138775599999999999 0.118426290000000003 0.0969317400000000023 -0.0273684299999999991 0.416469299999999987 111 0 111 0 -0.403375800000000007 99.5936966 0 0 31 false 0.0453302800000000006 1.38463492515900999 0.203678458102416998 0.156811179999999994 13 10 1.72164889999999993 0 13 false 112 127.515214629539997 1.1856277716749799 107.551003 20.4244610000000009 10 107.071432474234001 19.1831472744498015 5.58153629999999978 20.2772049999999986 11 114.507312674329 20.7959567716665994 5.50622939999999961 19.6148379999999989 1.73766519999999991 0 0.662366870000000052 -0.147256849999999995 0.809623699999999946 \N \N 0 \N \N \N NOT_AVAILABLE 150.417509902159992 -63.5975286931243033 21.6666691043534989 -12.632076118354 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321495889555456 2481321495889555456 1558348540 2015.5 24.7255504403743984 0.157073052877163 -3.29277894594391984 0.121676462473607999 0.324552568456452972 0.180084910089878009 1.80221959999999992 -0.479436198391004986 0.346841191736151022 -0.986363715586173972 0.222047809672128005 0.13588749 0.234439940000000013 -0.257899429999999985 0.103083980000000006 -0.123779210000000001 0.0755702099999999988 0.0825661639999999974 0.139410439999999997 0.128815070000000004 0.172528669999999995 146 0 145 1 1.18926449999999995 160.128006 0 0 31 false 0.867180649999999997 1.56209697520400992 0.0361374277455795007 0.0331803499999999973 17 10 0.313315420000000011 0 17 false 144 1085.52287246372998 2.01693098768547996 538.205017 18.0992679999999986 11 535.719232431277987 18.3572037773507013 29.183052 18.529045 11 834.139175462247977 12.5590716356631997 66.417270000000002 17.4588239999999999 1.26193420000000001 0 1.07022100000000009 0.429777149999999997 0.640443800000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.42986387581999 -63.6014274978462026 21.6677015335937 -12.6387364525812007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321525953926272 2481321525953926272 209488628 2015.5 24.7303636897194998 0.0817170919916684058 -3.29179994698279987 0.0664688412697485992 3.46288986445797997 0.0947338479554199059 36.553882999999999 21.0919012502217988 0.181594924686455994 -1.63810114063994994 0.124971403288441002 0.160294849999999989 0.23741103999999999 -0.237600250000000013 0.113421954000000005 -0.179838169999999992 0.122531929999999997 0.126848459999999996 0.0935711699999999952 0.0501922259999999995 0.242354449999999999 139 0 139 0 1.49797050000000009 159.300003 0.168891524398664006 0.759107446887173021 31 false 3.49982049999999978 1.34424661492293995 0.0190104506996583988 0.0897877299999999962 16 10 0.16953412000000001 0 16 false 137 3651.39699009258993 4.02115605598238002 908.046997 16.7822190000000013 13 925.223764343230982 7.84227402612576974 117.979010000000002 17.935772 14 4182.41996360893972 11.7329001659183003 356.469420000000014 15.7083510000000004 1.39881910000000009 0 2.22742079999999998 1.15355300000000005 1.07386779999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.438806551618001 -63.5985571322351007 21.6726476441258988 -12.6396063241431005 100001 3530 3484.33008 4054.23999 0.26879999 0.0908999965 0.406399995 0.140499994 0.0802000016 0.244299993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321594673408000 2481321594673408000 401462640 2015.5 24.7235344070703995 0.779138766819151951 -3.27085168694650008 0.643569700335633987 0.235643197515819997 0.950714974902513998 0.247858930000000005 -3.26520962834567996 1.59869354549838993 -11.1915588845534995 1.16504391769018989 -0.0210755359999999989 0.37785137000000002 -0.194789860000000009 0.0613808669999999987 -0.323393849999999983 0.00764021799999999984 0.19369038999999999 0.124028079999999999 0.0768702599999999958 0.144116490000000014 120 0 120 0 2.30297259999999993 152.774002 2.0580825337473998 1.69283040552394004 31 false 0.0417324099999999976 1.10935284845575 0.174767535802361013 0.00319839250000000016 14 10 1.42782249999999999 0 15 false 122 150.553633664963996 1.4666207773245401 102.653 20.2441369999999985 11 56.9319296331546028 11.1248729840745995 5.11753500000000017 20.963000000000001 12 171.858227594858988 12.3678354811831994 13.8955780000000004 19.1739940000000004 1.51965879999999998 0 1.78900529999999991 0.71886253 1.07014269999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.405455362222995 -63.5822701711351996 21.6741057788767009 -12.6176224352788005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321598968770304 2481321598968770304 1037435156 2015.5 24.7215968352419999 0.180694925186085986 -3.26966792910797999 0.141949717185023999 1.04954629163899993 0.207667850441535989 5.05396599999999996 4.38358781806863984 0.401536873772692982 4.88317000579452998 0.263811055649204984 0.135039939999999997 0.229913499999999993 -0.271061779999999974 0.0855561100000000047 -0.126853930000000004 0.0449166859999999973 0.0470607879999999992 0.157072159999999988 0.143228440000000012 0.168197070000000004 148 0 147 1 0.594841199999999959 151.565002 0 1.68651817232593998e-15 31 false 0.628624599999999978 1.3590872633659099 0.0418769823737722979 0.0341551999999999967 17 10 0.362433400000000017 0 17 false 146 826.872739895198947 2.02766400793424983 407.79599 18.3947700000000012 13 237.934825691147012 5.42427444521374991 43.8648219999999966 19.4102439999999987 15 881.843055700141008 14.2357028968429002 61.9458729999999989 17.3984409999999983 1.35423239999999989 0 2.01180270000000005 1.01547429999999994 0.996328349999999974 \N \N 0 \N \N \N NOT_AVAILABLE 150.400398040948005 -63.5819866060873977 21.6727135217632991 -12.6158065740624998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321594673525376 2481321594673525376 135219791 2015.5 24.7203350674959985 0.861779068806680981 -3.26741413666392022 1.06666331403221992 3.03694631649885993 0.971819281434310955 3.12501139999999999 1.7259332327788599 2.26007902159678009 -0.240846366818494001 3.33618694880675015 0.366164449999999975 0.000495812329999999971 -0.393368900000000021 -0.260791180000000011 -0.264399200000000001 -0.341435900000000014 -0.590022000000000046 0.246182580000000012 0.244914729999999997 0.486946370000000017 110 0 109 1 0.567176000000000013 111.695999 0 0 31 false 0.0301277260000000005 1.20676346711411009 0.265739080867380018 0.0903075700000000037 13 9 3.22852499999999987 0 13 false 110 98.6687159454642 1.00494172058472997 98.1835022 20.7029169999999993 7 50.523187329131602 7.9729875020505796 6.3367950000000004 21.0926599999999986 8 79.5430403171451985 20.6095729921166999 3.85951900000000014 20.0104140000000008 1.31821140000000003 0 1.08224680000000006 0.389743799999999974 0.69250299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.395734445817993 -63.5804500606108007 21.6723695232649014 -12.6132465405261005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316578151575808 2481316578151575808 1252302341 2015.5 24.7725978107220008 0.81855006985618195 -3.3909806508185798 0.487224572216101992 0.740240749533532028 0.674418133428359989 1.09759910000000005 -0.393717503506731015 2.1391460852543398 -3.11808401751699016 0.999628485471318995 -0.176546019999999998 -0.131012750000000011 -0.625144999999999951 0.292018060000000024 -0.00998920950000000037 0.393285600000000013 0.115716600000000003 0.247760310000000011 -0.199197679999999988 -0.0841124649999999974 124 0 123 1 0.0500878650000000022 118.102997 0 0 31 false 0.0645200999999999969 1.50606072463091989 0.180555729498062006 -0.0373010640000000018 14 9 1.96707260000000006 0 14 false 121 169.454613186405993 1.26696177899286999 133.748993 20.1157320000000013 10 87.8901845147272951 10.9261525794453007 8.04401999999999973 20.491537000000001 11 124.712385035409 13.1300040516557992 9.49827499999999958 19.5221459999999993 1.25462840000000009 0 0.969390870000000016 0.375804899999999997 0.593585970000000018 \N \N 0 \N \N \N NOT_AVAILABLE 150.61750650918799 -63.6714730025671969 21.6751491062051009 -12.7473491557387 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316681230795264 2481316681230795264 90199846 2015.5 24.7855167280640991 0.281213714927851022 -3.37848477377078016 0.171025290284924997 1.57349478838713996 0.240880696958995999 6.53225760000000033 0.593212310626309969 0.729483953289377984 4.65297642006380041 0.333754364246299007 -0.131258230000000004 -0.0647291200000000011 -0.561031999999999975 0.260041829999999974 -0.00373093570000000013 0.366897399999999985 0.147062179999999987 0.194270100000000001 -0.140587089999999998 -0.0467932520000000005 123 0 123 0 1.86087580000000008 148.181 0.380324395010038008 0.545369564655537986 31 false 0.505569640000000042 1.15947043977847009 0.0610243185051762005 -0.0400189530000000029 14 9 0.668317500000000009 0 14 false 120 746.584710694521959 2.24996989264385006 331.820007 18.505669000000001 14 233.268205370553005 12.9455724201087001 18.0191499999999998 19.431750000000001 14 793.720786411000972 8.40318220811306027 94.4547900000000027 17.5127500000000005 1.37558270000000005 0 1.91899869999999995 0.926080699999999979 0.992917999999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.632292825711005 -63.6547568124496976 21.6921751805288991 -12.7405166730064003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316440712622720 2481316440712622720 208571942 2015.5 24.8149575687214003 0.808461808918089053 -3.39044151981629005 0.384237828244696988 4.29232341014374974 0.594831785360925958 7.2160289999999998 7.66049486336202978 2.12193931820026993 13.2009072289593004 0.665562953118077005 -0.273082939999999996 -0.290736300000000003 -0.755856900000000054 0.290417079999999994 0.0447741929999999969 0.433418870000000012 0.141066090000000005 0.416671840000000016 -0.138674829999999999 -0.133440029999999987 112 0 111 1 4.72599030000000031 189.791 1.67152031570505 4.07166921111357016 31 false 0.116899539999999996 1.02474541393060004 0.127426155478432002 -0.0590809959999999967 13 8 1.98212919999999992 0 13 false 112 317.114795935942027 2.04247756313997986 155.259995 19.4353240000000014 11 97.070311871250297 16.9050727780160983 5.74208159999999967 20.3836730000000017 11 477.641798011128003 26.4106843609071014 18.0851730000000011 18.0641649999999991 1.81231570000000008 0 2.31950760000000011 0.948348999999999998 1.37115860000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.703726171791004 -63.6534413310850979 21.7156281036097987 -12.7625044797298006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316715590532480 2481316715590532480 1405590284 2015.5 24.8008427770804012 0.469499263834744995 -3.38208835139693997 0.274806752862489012 3.07848481909864002 0.38587277698391198 7.97797870000000042 25.8985631553305993 1.22267591462652003 -70.7106835644669047 0.469081015120791978 -0.122257669999999999 -0.137179579999999995 -0.68518937000000002 0.252264770000000027 0.00192357339999999996 0.36224866 0.304860200000000026 0.360896739999999994 -0.081706479999999998 -0.0348577539999999977 124 0 124 0 1.41282259999999993 141.404999 0.306462253383260996 0.161865824882351989 31 false 0.226294279999999987 1.36006221931611004 0.083075632822874404 0.0598436739999999995 14 9 1.1334858000000001 0 14 false 120 371.041054948772 1.73067272175447995 214.391006 19.2648100000000007 12 92.353960320281999 11.3593822207981994 8.1301919999999992 20.4377500000000012 12 512.304867737601967 9.49623915981976019 53.9481850000000023 17.9880980000000008 1.62962779999999996 0 2.44965169999999999 1.17293929999999991 1.27671240000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.667029656951001 -63.6516917825636028 21.7053785031773003 -12.7495285390379998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316891684615680 2481316891684615680 837204945 2015.5 24.8139407785148016 3.87007281100355982 -3.38323595137008981 2.40918680953534992 \N \N \N \N \N \N \N 0.0101255379999999999 \N \N \N \N \N \N \N \N \N 93 0 90 3 67.3632199999999983 7448.62988 17.2369753141913016 439.681009738079013 3 false 0.00319898240000000009 \N \N 0.00363849999999999981 15 9 8.12928699999999971 0 15 false 129 475.996997320508001 7.35249885744441034 64.739502 18.9943540000000013 7 684.194921249842992 19.3531542037342987 35.3531499999999994 18.2634399999999992 8 1559.88648832467993 32.5261142663943019 47.9579730000000026 16.7791880000000013 4.71448659999999986 0 1.48425099999999999 -0.73091507 2.21516599999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.694902887882989 -63.6473083132532977 21.7173963032443993 -12.7554350783030994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316818669746048 2481316818669746048 1533599316 2015.5 24.8269714379382016 0.217589959436954 -3.38541066699787985 0.133618796735090001 0.639276863984065025 0.197994132487854996 3.22876669999999999 8.46075179037432967 0.552801931935729018 2.36716193682193987 0.250759427576855987 -0.0446953480000000028 -0.0204264540000000001 -0.603055950000000007 0.208491120000000002 -0.0387731939999999969 0.239964320000000009 0.208445059999999988 0.292945920000000026 -0.0480916050000000025 -0.0351495149999999992 120 0 118 2 2.7742922000000001 159.209 0.529344788660178978 2.39973214599740015 31 false 0.884033439999999948 1.5017201517757599 0.0404542884207571979 0.0266148470000000005 14 9 0.510428850000000045 0 14 false 116 1311.47792217857 3.64863303116448989 359.444 17.8939629999999994 9 506.602136097775997 10.1519214502278992 49.9020920000000032 18.5897199999999998 11 1152.89011347207997 10.1415414953014995 113.679969999999997 17.10745 1.26536050000000011 0 1.48226930000000001 0.695756900000000011 0.7865124 \N \N 0 \N \N \N NOT_AVAILABLE 150.723591592746999 -63.6438817406567026 21.7289607111530998 -12.7622705016741005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316891684096768 2481316891684096768 1486037334 2015.5 24.8207961894911016 0.638258101280499979 -3.37811718114107018 0.527356398186474951 1.88921154514058998 0.705967712285896054 2.67605950000000004 16.1963419644155984 1.42955836603478992 -19.2712021054834999 0.982275824699554989 0.0957712700000000056 0.238839460000000003 -0.247567029999999993 0.157692639999999995 -0.183403179999999999 0.220188720000000004 0.306000439999999985 0.0389914999999999984 -0.0456754830000000028 0.193552030000000014 125 0 125 0 4.83862099999999984 210.679001 2.05512585353673005 2.95454469144894016 31 false 0.0594563499999999981 1.28179701450272998 0.162235786273926014 0.0712939050000000046 14 10 1.28948119999999999 0 14 false 123 171.201534859871998 1.35900982288967009 125.974998 20.1045969999999983 8 47.7887026509381982 9.78578132259207045 4.88348340000000025 21.1530740000000002 8 230.567871994164989 15.5277563383147008 14.8487570000000009 18.8549229999999994 1.6258999999999999 0 2.29815099999999983 1.0484772 1.24967380000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.704136096907007 -63.6398094967444976 21.725857249210101 -12.7532132313831994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316887389388288 2481316887389388288 819344860 2015.5 24.8261012889058001 0.594004432350735967 -3.37832555936231982 0.592298517008171044 4.62031238352967044 0.855316527555567974 5.40187449999999991 -26.1155616395911991 1.20374472196036009 -41.2068723005534991 0.957703812943748956 0.155844289999999996 0.351833430000000003 -0.144219669999999994 0.157742460000000001 -0.430269330000000005 0.222011550000000002 0.372062979999999988 0.00905082200000000003 -0.0926224400000000003 0.388876170000000021 88 0 86 2 2.34404749999999984 113.808998 1.38521540163186008 1.51039509796262994 31 false 0.104446754000000003 1.32248802913474006 0.175130141133719996 0.239549829999999991 10 7 1.16477800000000009 0 10 false 86 241.970264596750013 1.91562282830779007 126.314003 19.7289600000000007 6 33.7045666517306017 9.81130312791601078 3.43527940000000021 21.5321660000000001 8 369.027046282184983 21.630671385221099 17.0603599999999993 18.3442749999999997 1.66438470000000005 0 3.18789100000000003 1.80320550000000002 1.38468550000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.715179736149992 -63.6377986266046989 21.730822333938999 -12.7553671208219992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316853029487360 2481316853029487360 1062226219 2015.5 24.8314482422407004 0.766780653004551005 -3.37797696761635979 0.633064203644165047 2.33646647617407988 0.871644397952218042 2.68052720000000022 5.03196396005736979 1.75494336836269005 -2.39257089575119997 1.88052315662551006 -0.0235864609999999995 0.269426580000000027 -0.0709190700000000007 0.110000180000000003 -0.233142270000000013 0.158953759999999999 -0.0448261800000000002 -0.192023899999999997 -0.238508159999999997 0.362903450000000016 85 0 85 0 0.275886420000000021 82.8563995 0 1.12346670994454001e-15 31 false 0.055214733000000002 1.17693820357133005 0.248132287911958987 0.022863640000000001 10 9 1.87221170000000003 0 10 false 85 132.822643314900006 1.58370527898204005 83.8683014 20.3801859999999984 7 84.0213118447687037 15.9397499592957992 5.27118100000000034 20.5404149999999994 7 81.6419527596948029 13.8056588281763997 5.91365859999999977 19.9821360000000006 1.24725160000000002 0 0.558279039999999949 0.160228730000000014 0.398050300000000024 \N \N 0 \N \N \N NOT_AVAILABLE 150.725786002451997 -63.635263007461397 21.736038660122901 -12.7570189963795002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481316887389388544 2481316887389388544 834941183 2015.5 24.8168450204574 1.63382093576774001 -3.36998567955069017 0.862228692906158001 \N \N \N \N \N \N \N -0.415654120000000016 \N \N \N \N \N \N \N \N \N 67 0 67 0 0.316881780000000002 64.9061966 0 0 3 false 0.039094493000000001 \N \N -0.1046121 8 7 4.35105849999999972 0 8 false 69 107.109869371000002 1.99990582827557994 53.5574989 20.6137920000000001 3 18.7594574803178986 0.849573775271744047 22.0810220000000008 22.1683370000000011 5 202.566665139594988 8.59449878272062051 23.5693400000000004 18.9954999999999998 2.06634660000000014 0 3.17283630000000016 1.55454439999999994 1.61829190000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.688450850056995 -63.6340505395492002 21.7251865598738014 -12.7441992944145994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317024828315136 2481317024828315136 1316480104 2015.5 24.8329424045912006 1.19151204455055004 -3.36039105050120002 1.78589952796965989 \N \N \N \N \N \N \N 0.521447540000000043 \N \N \N \N \N \N \N \N \N 70 0 70 0 1.21161370000000002 79.0542984 0.936016307982110995 0.16584178019034701 3 false 0.0297884269999999993 \N \N 0.180797010000000008 8 6 5.59413240000000034 0 8 false 70 97.0430716627532064 1.90570447594859993 50.9224014 20.720955 4 43.1758110439040976 1.86323284035857006 23.1725250000000003 21.2632869999999983 5 77.5311595331862975 17.578429133216801 4.41058540000000043 20.0382290000000012 1.24384939999999999 0 1.22505759999999997 0.542331699999999972 0.682725899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.712386100921009 -63.6186480146061015 21.7441328431067014 -12.7412340616366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317304001475200 2481317304001475200 527468124 2015.5 24.8185683906882986 0.0753369397036937061 -3.34838302023154011 0.0611837600324525999 1.62278615170313989 0.0841577685061407066 19.2826650000000015 -5.88208026959441987 0.170660928783752996 -16.6985685292832002 0.117888092966458996 0.121322349999999995 0.242461070000000001 -0.23917063999999999 0.127425310000000014 -0.13890712999999999 0.152970539999999988 0.235631699999999999 0.0506177169999999996 -0.00658174650000000003 0.169961589999999996 132 0 130 2 1.2392455 144.899002 0 0 31 false 4.42791400000000035 1.43973327932461004 0.0189928598745466998 0.0605777580000000024 15 10 0.158944190000000013 0 15 false 127 3917.66247708983019 3.82736578413335993 1023.59003 16.7058 14 1344.61707059905007 17.5484323201758983 76.6231999999999971 17.5298920000000003 13 3835.78965212997991 40.8141689574639983 93.9818099999999959 15.8022829999999992 1.32232079999999996 0 1.7276087 0.824092860000000038 0.90351579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.671790354361008 -63.6136826569179021 21.7350228699451016 -12.7247677990652992 100001 4106.54004 3935.09009 4556.5 0.197999999 0.102200001 0.449099988 0.0909999982 0.0603 0.206400007 200111 0.598494199999999976 0.486125699999999994 0.651780400000000038 0.0917735199999999973 0.0818736550000000035 0.101673379999999994 +1635721458409799680 Gaia DR2 2481317230986616192 2481317230986616192 1623356892 2015.5 24.835901929165999 12.0730867067674001 -3.35066092182723985 8.25207333531086995 \N \N \N \N \N \N \N 0.637164900000000034 \N \N \N \N \N \N \N \N \N 36 0 36 0 30.3484520000000018 1401.41003 18.3488861631893982 171.790680996316013 3 false 0.00286461719999999993 \N \N 0.093419840000000004 7 6 27.5026510000000002 0 7 true 62 263.542041742511003 4.20647335690023993 62.6515007 19.6362419999999993 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.709335991153011 -63.6085699839577998 21.7506387281102995 -12.7332882949988004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481268921194454528 2481268921194454528 4843001 2015.5 24.9006219784012011 0.824894351881771959 -3.41061833818970994 0.740071860158109995 -0.386872924112825978 0.862156697679206996 -0.448726919999999974 -0.421227364977190988 1.93919057814362006 -1.94683555972252997 1.93220950622311993 0.056904780000000002 0.148060109999999995 -0.372366760000000019 0.0674452400000000035 -0.0639969299999999935 0.0412546099999999971 -0.382487240000000006 0.149522469999999991 -0.0234397870000000001 0.210883199999999993 132 0 131 1 2.86521099999999995 176.341003 2.87554664116848002 2.96315737240710009 31 false 0.032074883999999998 1.57917241879718007 0.215740553505221005 0.0231675099999999988 15 9 1.88338910000000004 0 15 false 132 124.863458905062998 1.34969927124191003 92.5121002 20.4472769999999997 11 99.7345526733808043 12.3093753180358991 8.10232449999999993 20.3542750000000012 11 71.3669277484656988 11.9388795226441999 5.97769070000000013 20.1281779999999983 1.37030859999999999 0 0.226097099999999995 -0.0930023199999999994 0.319099430000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.897768691468002 -63.6361439509948994 21.7894324390697989 -12.8128974809482994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269681404116992 2481269681404116992 127075201 2015.5 24.8922750564118012 0.0389554625209966032 -3.40210723253095004 0.027768275011388701 0.552726378113664985 0.0428757792309119035 12.8913430000000009 0.0254560450680633987 0.0801459622132515009 -1.41004948710506994 0.0571936317137535996 0.0685393660000000043 0.350870369999999987 -0.178663220000000011 0.0469080799999999978 -0.0721878299999999945 0.00349167760000000009 -0.220942269999999996 0.0598055119999999982 0.124529360000000006 0.162768080000000009 139 0 138 1 -0.0535819459999999984 131.464996 0 0 31 false 22.1815469999999983 1.6189683503385901 0.00879142178888229001 -0.0161083960000000005 16 10 0.0805391500000000038 0 16 false 138 18226.7197008248004 11.1605940785139008 1633.13 15.0365939999999991 14 10295.6700791719995 30.3502234935712991 339.228819999999985 15.3197519999999994 14 11740.5050754912008 33.3920506591872979 351.595799999999997 14.5877029999999994 1.20900389999999991 0 0.73204899999999995 0.283157349999999974 0.448891639999999981 \N \N 0 \N \N \N NOT_AVAILABLE 150.872714569832993 -63.6318939577246994 21.7847237493710999 -12.8019074031074993 100001 6066.12012 5828.43994 6354.33008 0.330199987 0.197400004 0.463499993 0.172499999 0.109200001 0.229699999 200111 1.38056179999999995 1.25816560000000011 1.49545430000000001 2.32514639999999995 1.91892580000000001 2.7313670000000001 +1635721458409799680 Gaia DR2 2481269715763855232 2481269715763855232 813196668 2015.5 24.9042963805081996 0.0538392108236641978 -3.40028118714191985 0.0394310623386497014 0.617357968622800013 0.0575779649979773975 10.7221220000000006 12.6429256847424991 0.117187771895957998 -5.88866343210781018 0.0809047747257169991 0.0377150360000000004 0.260312019999999977 -0.293433930000000009 0.0833740099999999984 -0.128627259999999993 0.0674150399999999955 -0.128697709999999993 0.125731559999999992 0.103526755999999998 0.151249970000000011 156 0 155 1 2.32266430000000001 193.143005 0.143400284532062994 1.2286326297083201 31 true 8.03712299999999935 1.58553676814343003 0.0120371124504338005 -0.0072186730000000001 18 10 0.113352289999999994 0 18 false 155 8247.29154942137029 6.48564401548765002 1271.62 15.8975880000000007 15 4271.25227497408014 22.7137846763845985 188.046699999999987 16.2749999999999986 15 5728.73702791423966 21.3099140945202983 268.829650000000015 15.3667730000000002 1.21251799999999998 0 0.908226969999999967 0.377411839999999998 0.530815099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 150.895540262306014 -63.6252200945020974 21.7968493725009012 -12.8046510778730003 100001 5502.72998 5354.06006 5921.5 0.169499993 0.0874999985 0.291099995 0.0670000017 0.0295000002 0.143099993 200111 1.02836599999999989 0.888056599999999974 1.0862676 0.873580460000000003 0.697910249999999954 1.04925059999999992 +1635721458409799680 Gaia DR2 2481316853029485184 2481316853029485184 491050435 2015.5 24.8405988389290009 0.45660154331163999 -3.38311243987309984 0.364444587702098977 0.841718161576146984 0.506725992272043957 1.66109130000000005 5.67386074398239959 1.11634886215574003 -4.99267312436770982 0.686810032286175987 0.094599859999999994 0.0962036899999999945 -0.0753218199999999977 0.153700140000000013 -0.205043959999999997 0.223169900000000004 0.335272369999999986 -0.120486919999999997 -0.0668083950000000065 0.152274330000000013 125 0 122 3 1.0536759 133.141998 0.400725945000882988 0.141500200720350994 31 false 0.116792030000000005 1.5260760721100699 0.115938315150068999 -0.00293342560000000013 14 10 0.991912600000000033 0 14 false 122 228.199672275859996 1.82393122662222007 125.113998 19.7925779999999989 9 89.7291220588770955 11.4060310561260003 7.8668136999999998 20.4690550000000009 10 224.938775478884992 6.66768589909290021 33.7356600000000029 18.8817599999999999 1.37891469999999994 0 1.58729549999999997 0.676477430000000046 0.910818099999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.749302171951001 -63.6361343837131983 21.7427905687272016 -12.7651707665774996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269848907394816 2481269848907394816 966118541 2015.5 24.8622190349785015 0.246045649923306992 -3.39548663147236995 0.204124932293594991 0.258929851417320001 0.271969610170500975 0.952054399999999967 7.12692734321760035 0.564291385673172052 -4.85207995843271966 0.414422971789370986 0.11296407 0.190351670000000001 -0.264954750000000017 0.158793800000000013 -0.190276610000000013 0.234884409999999988 0.180802729999999995 0.0392470619999999992 -0.0809805239999999982 0.250737639999999984 134 0 134 0 -0.343277749999999993 122.917999 0 0 31 false 0.370235060000000005 1.55164573647064996 0.0617018519043064997 0.0969572800000000068 15 10 0.518062499999999981 0 15 false 134 505.561196075126986 2.15091563443144018 235.044998 18.9289319999999996 13 290.697640076706023 6.58611153227310986 44.1379779999999968 19.1927850000000007 14 324.838744043186011 9.87576876779331947 32.8924999999999983 18.4827499999999993 1.21753099999999992 0 0.710035300000000036 0.263853070000000023 0.446182250000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.805095094778011 -63.6383970784291009 21.758653303098999 -12.7846540054339997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269956282023680 2481269956282023680 813315923 2015.5 24.8716577874911984 0.142181934393206005 -3.38741681532557015 0.101186514292449001 1.53629131403187991 0.159400296485003007 9.63794500000000021 24.6828832619438998 0.279996987873920022 -14.0428228804995996 0.185837238915944003 -0.0538405330000000029 0.420437249999999985 -0.266131700000000027 0.124234620000000004 -0.283644830000000014 0.218656689999999987 0.226154460000000002 0.0064569060000000001 -0.0360497200000000004 0.189371659999999997 129 0 129 0 0.0914832000000000006 124.776001 0 0 31 false 1.53028739999999996 1.42974063793382999 0.0292899048374785989 0.0240192280000000001 15 10 0.256282569999999987 0 15 false 129 1564.29388155145989 2.65947017370609018 588.197998 17.7025700000000015 13 497.183313997931009 21.0879350283953002 23.5766719999999985 18.6100959999999986 14 1633.77310717088994 9.12800079857711921 178.984769999999997 16.728940999999999 1.36224820000000002 0 1.88115499999999991 0.907526000000000055 0.973628999999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.816803829142998 -63.6271339088945993 21.7706913237655009 -12.7806439894639006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346351872 2481269986346351872 163061008 2015.5 24.884045915905201 0.636651593827772033 -3.38218306119747991 0.528391314123159983 -0.144686563677011992 0.717937423498092975 -0.20153088999999999 25.3387487811866983 1.44038826394781005 -7.28385699729563019 0.951471697808924044 0.139702920000000008 0.196958259999999996 -0.218230530000000006 0.194654880000000002 -0.225993109999999997 0.282227000000000006 0.320585759999999997 0.0126543709999999993 -0.0707339349999999978 0.262870300000000001 142 0 142 0 5.12383800000000011 239.552002 2.37023655916601017 4.0680051055881199 31 false 0.0546377150000000034 1.48910769364178996 0.150409506196319986 0.0741721699999999956 16 10 1.31077379999999999 0 16 false 139 180.843845596400001 1.16958576004917991 154.621994 20.0451070000000016 12 69.928119362325404 9.87538004638068934 7.08105600000000024 20.7397600000000004 14 185.728054250252001 5.87181349903432004 31.6304419999999986 19.0897250000000014 1.41368469999999991 0 1.650034 0.694652559999999974 0.955381400000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.837187682814005 -63.6172189617668025 21.7844577788427998 -12.7803577627921001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986349445504 2481269986349445504 1305264539 2015.5 24.8846395689662003 1.33036175830887005 -3.38162665244102012 0.893351354338628001 0.0799441438439535967 1.15868878347798998 0.0689953600000000056 34.6499189902647018 3.42251036584496005 15.2258276435037008 2.67044780583074992 -0.203324260000000007 -0.315171929999999989 -0.675816199999999978 0.381064999999999987 0.134283020000000003 0.390384229999999999 -0.249126459999999994 0.383642819999999996 -0.396996200000000021 -0.0834939259999999961 106 0 106 0 3.69509389999999982 162.229004 2.55277390954362993 1.55520678400135992 31 false 0.0290363619999999996 1.63418575236780006 0.303259376175318007 0.0949375300000000061 12 8 3.21688490000000016 0 12 false 105 102.241078559732998 1.08940706577966995 93.8501968 20.6643030000000003 4 24.4262761233547003 21.4708377216477011 1.13764890000000007 21.8817440000000012 6 149.509882336577988 10.1302977332980007 14.7586860000000009 19.3252449999999989 1.7012354999999999 0 2.55649950000000015 1.2174415999999999 1.33905790000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.837877198166012 -63.6164660298068014 21.7852334327420003 -12.7800601216820002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269986346352768 2481269986346352768 1558824202 2015.5 24.8793890941915983 0.192451726552113012 -3.3795897841055198 0.146815710964360996 0.980185533165524037 0.21754860298312001 4.50559330000000013 -4.46914508761492968 0.420482163460899006 -9.01577920202479 0.260844248829320002 0.130977910000000003 0.262432749999999992 -0.212323960000000006 0.165350749999999991 -0.163205039999999996 0.206797850000000005 0.242147129999999988 0.0436845240000000024 0.0210789439999999988 0.212088059999999995 141 0 141 0 14.8102140000000002 553.963013 1.04910462501919999 19.4534038953098012 31 false 0.640324699999999969 1.46826788617056003 0.0408630173666522031 0.0796579050000000011 16 10 0.379427730000000019 0 16 false 141 2276.47562024551007 4.68903443583154989 485.489014 17.2952079999999988 14 787.912492400096994 9.77298018322461992 80.6215200000000038 18.1101929999999989 16 2268.99046452695984 14.3905854281986993 157.671860000000009 16.3723400000000012 1.34282269999999992 0 1.73785400000000001 0.814985300000000024 0.922868699999999986 \N \N 0 \N \N \N NOT_AVAILABLE 150.825245535653011 -63.6168014133245023 21.7810132597330011 -12.7762284328745004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270020706093312 2481270020706093312 701818351 2015.5 24.8586277498385009 0.260135395245950973 -3.37182347356626 0.22064301677571399 0.0219670941456108007 0.290293028613453019 0.0756721350000000015 7.3704208588127802 0.598497538454436984 -16.1769401370095984 0.427693450181593993 0.10663765 0.208968459999999995 -0.215303820000000007 0.149468020000000007 -0.185508129999999993 0.197803079999999992 0.307565839999999979 0.0127439230000000008 -0.0572068170000000001 0.175549540000000004 132 0 131 1 1.63620089999999996 153.039001 0.638862687778878002 1.20868674393580999 31 false 0.324002410000000018 1.62484908365482994 0.0635931759797758039 0.0620636099999999982 15 10 0.539505659999999998 0 15 false 130 521.256661906715976 1.59611305442290008 326.57901 18.8957370000000004 12 239.921137522857009 10.3541775274049002 23.1714340000000014 19.401216999999999 15 419.810520369444021 7.27413672514706988 57.7127600000000029 18.2042870000000008 1.26565609999999995 0 1.19692989999999999 0.505479800000000035 0.691450099999999956 \N \N 0 \N \N \N NOT_AVAILABLE 150.775564263167013 -63.6183787649584005 21.7642176438147992 -12.7613441581145999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317029123587328 2481317029123587328 492549301 2015.5 24.8409853437489012 0.0475554334914810029 -3.35802344577612022 0.0343482702072085977 1.32480437579375998 0.0543051048645937021 24.3955759999999984 12.0643108531599008 0.0935537185651006964 -9.92032704203474935 0.0716602129583392977 0.00838218699999999928 0.435939819999999978 -0.199565980000000004 0.0858693499999999971 -0.221744550000000012 0.125045569999999995 -0.00657004800000000021 0.00204602749999999991 -0.00268672800000000021 0.249721799999999994 134 0 129 5 -0.257566499999999976 119.336998 0 0 31 true 16.1462749999999993 1.54738033972615008 0.0108620191189507005 0.0204646360000000013 15 10 0.0928724199999999972 0 15 false 128 13118.0058356528007 8.20561866382447924 1598.66003 15.3936960000000003 13 6073.70510667077997 26.3172983354286991 230.787569999999988 15.892754 12 10190.2071343987991 16.558053715811301 615.423000000000002 14.7414629999999995 1.23981600000000003 0 1.15129090000000001 0.499057770000000012 0.65223310000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.726605155725991 -63.6131575109627008 21.7526785226637998 -12.7420061449035007 100001 4968 4879.37988 5154.66992 0.140000001 0.0529999994 0.3301 0.0803000033 0.0278999992 0.160999998 200111 0.773367460000000007 0.718369539999999973 0.80171619999999999 0.328241019999999994 0.29901293000000001 0.357469099999999984 +1635721458409799680 Gaia DR2 2481317059187924864 2481317059187924864 556756372 2015.5 24.8602427386054998 0.587474280854078046 -3.34856160903026012 0.450299618519089007 1.04440363028856997 0.664468958692482015 1.57178689999999999 -13.0663975844431999 1.28498983235674991 -5.8773993325879097 0.810747101608205956 0.125802649999999988 0.264364539999999981 -0.216055629999999999 0.155495319999999992 -0.172503039999999996 0.192981199999999992 0.224950280000000002 0.0475343000000000016 0.0225872499999999997 0.213088699999999992 137 0 137 0 29.9490680000000005 1458.19995 3.58966115149353016 76.3500155211388005 31 false 0.0686550100000000024 1.16489899714269995 0.119735341223130995 0.0832993100000000014 16 10 1.15346569999999993 0 16 false 138 836.776415363568049 3.98198360425734998 210.141006 18.3818419999999989 14 212.551002671654999 11.8382976262998998 17.9545250000000003 19.5327300000000008 14 1089.21944842869993 7.46021838125740011 146.003700000000009 17.1691320000000012 1.55569679999999999 0 2.36359789999999981 1.15088839999999992 1.21270940000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.757078526598008 -63.5965569782735969 21.7745788727949012 -12.7403301589158993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318467937195392 2481318467937195392 236110525 2015.5 24.8742753745531999 0.173320912885452011 -3.3578294264948898 0.141371666702509002 2.62576768352626999 0.193349460996637995 13.5804240000000007 6.90772239261460008 0.385619804414113976 -13.3405233271514998 0.264595396310460973 0.135911300000000013 0.235945330000000009 -0.226343960000000011 0.175043210000000005 -0.166085779999999988 0.246313599999999994 0.237952140000000006 0.0338063050000000018 -0.0405011899999999994 0.243994469999999991 141 0 140 1 1.17178629999999995 154.453995 0.113649577395363993 0.0747887102199832066 31 false 0.74460459999999995 1.36790308827439011 0.0420824990656087014 0.0789479540000000007 16 10 0.352810100000000015 0 16 false 140 850.769536483206025 1.85676433127771001 458.200012 18.3638359999999992 14 177.064462503441007 10.5271987137305008 16.8197140000000012 19.7310599999999994 14 1083.13372281967008 9.93004933947990054 109.076369999999997 17.1752150000000015 1.48124499999999992 0 2.5558453000000001 1.36722370000000004 1.1886215 \N \N 0 \N \N \N NOT_AVAILABLE 150.794399502456002 -63.599150041298401 21.7844061919301986 -12.7541236134543006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481269780187918464 2481269780187918464 759712671 2015.5 24.8974200714859002 0.431015665409214987 -3.39149261224345011 0.343956778246313988 1.03521122129138998 0.467661429802937012 2.21359100000000009 11.2099874055925 0.942914053917695005 -10.0625097739867009 0.633907876345817023 0.129350080000000006 0.258632499999999987 -0.24474491000000001 0.17142542999999999 -0.0723893800000000032 0.213313269999999999 0.179281319999999994 0.0823840799999999984 0.0262485540000000003 0.184007929999999986 147 0 147 0 3.19907899999999978 202.177002 0.584072270418262041 0.338810509413644989 31 false 0.111973489999999995 1.26644915801200009 0.101813734628524999 0.0444837469999999971 17 10 0.848598359999999996 0 17 false 148 223.818685648291989 1.49493727213867 149.718002 19.8136249999999983 15 78.6963997255996048 10.6471218505169993 7.39133070000000014 20.6115020000000015 16 294.153725039023016 14.1966514211082 20.7199360000000006 18.590485000000001 1.6658579 0 2.02101700000000006 0.797876359999999951 1.22314070000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.873237055358999 -63.6201043631014969 21.7936443247603009 -12.7939464719936993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271468110511488 2481271468110511488 300862494 2015.5 24.8918283046606987 0.0298033426017741999 -3.37283351506001994 0.0239302465218719992 1.68235847525024007 0.0340360791798543991 49.4286799999999999 43.4642588700008972 0.0619667109330269 -3.1765381549525098 0.0540518826259277982 0.14164968 0.393031450000000004 -0.225198129999999996 0.0570909799999999995 -0.108662574999999997 0.104182120000000003 -0.0883785799999999983 0.0119703659999999996 -0.0545210839999999974 0.326988579999999973 142 54 141 1 1.29489480000000001 157.755997 0 0 31 true 159.138869999999997 1.61576188326513992 0.00725790884524649994 0.0796267199999999981 16 10 0.0572691259999999966 0 16 false 140 119156.035416433006 57.5357864160045978 2070.98999 12.9980755000000006 14 65219.7425520662 62.449447490956203 1044.36059999999998 13.3154400000000006 15 78708.4754608621006 81.8045175245255933 962.153140000000008 12.5218659999999993 1.207897 0 0.793574329999999994 0.3173647 0.47620963999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.844294251050002 -63.6054804435410972 21.7954057423111003 -12.7745462074824001 100001 6026.04004 5843.5 6565.33984 0.296000004 0.151999995 0.456099987 0.148000002 0.0649999976 0.225999996 200111 1.17598800000000003 0.990723970000000009 1.25060890000000002 1.64297120000000008 1.57888359999999994 1.70705869999999993 +1635721458409799680 Gaia DR2 2481271261952081536 2481271261952081536 1664435783 2015.5 24.9061211642361009 0.0500594959116801991 -3.37826748200901017 0.0375345459757311026 0.753044773614229945 0.0548328687603990977 13.7334560000000003 9.56582825601232933 0.106406385305977999 0.600072483894225961 0.0760219493773675037 0.0940357450000000039 0.317008100000000015 -0.27371435999999999 0.0730327800000000055 -0.0585819969999999968 0.056079722999999998 -0.116781769999999993 0.118212460000000005 0.0956634499999999971 0.156561900000000004 148 0 147 1 -1.32928200000000007 120.157997 0 0 31 true 9.98890800000000034 1.57950086330428996 0.0114773600088194996 0.0336176399999999972 17 10 0.103630945000000002 0 17 false 147 8313.30429547877975 6.34138604815292961 1310.95996 15.8889309999999995 14 4168.63119323023966 17.086800441127 243.967929999999996 16.301404999999999 13 6003.49714478853002 25.6562447989872986 233.997500000000002 15.3159089999999996 1.22359630000000008 0 0.985495569999999987 0.412473680000000009 0.573021899999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.878561245642004 -63.6044598822046012 21.8069366465879995 -12.7848733450002001 100001 5316.5 5258.97998 5361 0.149299994 0.0275999997 0.314099997 0.0885000005 0.0176999997 0.153999999 200111 0.91682224999999995 0.901663239999999977 0.936985700000000032 0.605015749999999963 0.509439949999999975 0.700591560000000002 +1635721458409799680 Gaia DR2 2481271227592343040 2481271227592343040 112652294 2015.5 24.9195692176567007 0.273886728784909994 -3.37719583107916987 0.203184659564915993 2.17387464043734013 0.296668562398215985 7.32762050000000009 -10.8312048973262005 0.608436650343163965 -31.1775046653288008 0.372692866381688026 0.071857913999999995 0.212215619999999994 -0.292318940000000027 0.14121628 -0.136614679999999988 0.158367680000000011 0.124713980000000002 0.119738310000000001 0.0705631399999999964 0.147843289999999988 159 0 157 2 2.68191500000000005 202.910004 0.888633496726261018 2.58505865493832987 31 false 0.276482369999999977 1.24241769372708011 0.0592874745772756992 0.00137994039999999999 18 10 0.546504560000000028 0 19 false 156 499.193395710474022 1.6841454229902999 296.40799 18.9426939999999995 14 91.1905925466970047 11.1528621087226991 8.17642999999999986 20.4515129999999985 16 686.40522706050001 6.94874648447718979 98.7811599999999999 17.6704700000000017 1.55770460000000011 0 2.78104400000000007 1.50881960000000004 1.27222440000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.904983259293999 -63.5978748291922003 21.8201326458259999 -12.7888440249820992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271566894324224 2481271566894324224 1212100246 2015.5 24.8907226183148005 0.230525122957605993 -3.35485061795793982 0.199201974482154986 1.2361708126878499 0.259508848833540973 4.76350159999999967 15.8437485605749 0.522425566950314946 -49.8450672054177986 0.354742158305580979 0.18105541 0.201674450000000005 -0.195176989999999995 0.218518199999999996 -0.216601399999999999 0.31562707000000001 0.367197359999999973 0.00320125179999999985 -0.0864645500000000011 0.298691749999999978 136 0 136 0 3.15951130000000013 188.235001 0.803216715382573998 2.92511885434293006 31 false 0.438327279999999986 1.5154565814438401 0.0551649432946708998 0.0982810400000000001 16 10 0.482483600000000012 0 16 false 135 748.003299916799961 1.86097037802655008 401.942993 18.5036069999999988 14 294.503010223193996 9.11313205786678004 32.3163339999999977 19.1786630000000002 13 689.672884447463957 8.75101840075843995 78.8105850000000032 17.6653120000000001 1.31573739999999995 0 1.5133513999999999 0.675056459999999969 0.838295000000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.825166153059996 -63.5895979073606981 21.8011760923050986 -12.7574309572363003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271502470249344 2481271502470249344 417655413 2015.5 24.9034374620379992 2.05290844084737989 -3.3575744715481699 1.50844263473005991 \N \N \N \N \N \N \N 0.0840669 \N \N \N \N \N \N \N \N \N 107 0 106 1 45.2929419999999965 3074.38989 11.0130352854296998 182.070469318802992 3 false 0.00773702400000000033 \N \N 0.0694239600000000068 15 9 4.01845300000000005 0 15 true 132 360.161391969336989 4.0659344002833997 88.5802002 19.2971229999999991 13 460.562990234325014 11.1944766041724009 41.1419870000000003 18.6931650000000005 11 949.731865650291979 8.90438549661175927 106.65889 17.3179170000000013 3.91573020000000005 0 1.37524800000000003 -0.603958129999999982 1.97920610000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.85365362101399 -63.5867768685082027 21.8122340421957013 -12.7646573178294993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271395095762048 2481271395095762048 1684136816 2015.5 24.9300099912099995 0.719589149789464977 -3.36602300710111013 0.683014179934951948 0.593055750960949979 0.787114744569586966 0.75345530000000005 -2.17432359709036005 1.72385171414587002 -2.11074425652870001 1.84054879123791992 0.123469784999999999 0.136895080000000002 -0.284745340000000013 0.0747300300000000028 -0.018909734000000001 0.056143110000000003 -0.33454296 0.0587157940000000017 -0.118485615000000002 0.293520630000000005 122 0 122 0 0.183052359999999997 119.146004 0 9.28992634585218961e-16 31 false 0.0415327060000000026 1.44775393845542011 0.208003697985180008 0.0269012130000000002 14 8 1.7897012000000001 0 14 false 123 105.830125218047002 0.98268362292914202 107.695 20.6268419999999999 12 67.3283935964936973 6.97459801700683002 9.6533730000000002 20.7808929999999989 11 89.2537277552102069 8.8137431989884405 10.1266540000000003 19.8853550000000006 1.4795609999999999 0 0.895538330000000049 0.15405083 0.741487499999999966 \N \N 0 \N \N \N NOT_AVAILABLE 150.915762026014988 -63.5833668879917013 21.8343001948941016 -12.7823190343166999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271399391034496 2481271399391034496 1425496068 2015.5 24.9204639244752997 0.527633363438318015 -3.3590660378913002 0.445171080896845983 0.655536012096985976 0.562419799612184024 1.16556360000000003 6.5803942563214699 1.23394320276101999 -7.13839614070537998 1.03571204860755994 0.0821521800000000052 0.139773439999999999 -0.322417940000000014 0.118813370000000001 -0.0719921139999999959 0.142867219999999989 -0.145323129999999995 0.10761751 -0.0511772740000000018 0.197732429999999987 131 0 130 1 -0.811949299999999985 111.975998 0 0 31 false 0.0782315660000000024 1.47309790537294005 0.147873404241906009 -0.00668032049999999974 15 9 1.13159199999999993 0 15 true 128 162.081845671505988 1.20420418303785004 134.597 20.1640300000000003 11 76.6258672864641994 14.0926500754220001 5.43729300000000038 20.6404500000000013 12 153.616603621829 10.2154945080296997 15.0376080000000005 19.2958239999999996 1.42053209999999996 0 1.34462550000000003 0.476419450000000022 0.868206000000000033 \N \N 0 \N \N \N NOT_AVAILABLE 150.889766970307988 -63.5810320702273017 21.827860254331199 -12.7723305895259003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271639909201920 2481271639909201920 570927719 2015.5 24.9301937023950018 2.79220180090791015 -3.3452658643366302 1.88686779571717 \N \N \N \N \N \N \N 0.0089104619999999992 \N \N \N \N \N \N \N \N \N 127 0 127 0 63.4874459999999985 6218.60986 15.6814799437496006 344.80778084658499 3 false 0.00383338700000000017 \N \N -0.014558026 17 9 5.67650129999999997 0 17 false 148 341.463705116683002 3.30397402356244996 103.348999 19.3550049999999985 7 504.716383404283988 20.3001706245761007 24.8626669999999983 18.5937699999999992 5 1133.13322460378004 7.19725607485958019 157.439619999999991 17.1262170000000005 4.79655550000000019 0 1.46755220000000008 -0.761236200000000029 2.2287884 \N \N 0 \N \N \N NOT_AVAILABLE 150.896631736898001 -63.5644352277018001 21.8423470595772997 -12.7631017104055005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635616731520 2481271635616731520 1103228071 2015.5 24.9306764785726003 2.11196928479788992 -3.34543239485127009 1.43092419634799994 \N \N \N \N \N \N \N -0.0130733110000000007 \N \N \N \N \N \N \N \N \N 122 0 121 1 42.1836399999999969 2669.53003 11.3344931476284003 145.179124487840994 3 false 0.00680221940000000011 \N \N -0.0499685439999999967 17 9 4.07496930000000024 0 17 false 147 298.666985684847987 6.56524392856556993 45.4920998 19.5003969999999995 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.897771551289992 -63.5643850216310966 21.8427430308668988 -12.7634346833023997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318021260603392 2481318021260603392 1137564438 2015.5 24.7919433548956007 0.699063294213486008 -3.33187383181705998 0.595455387855165053 -0.182668628924431004 0.779785895561240006 -0.234254849999999987 7.96163499410862041 1.58191795347256003 -6.89688343539655957 1.1913930165539699 0.116904350000000004 0.231980219999999987 -0.22602193000000001 0.135491179999999989 -0.151081230000000011 0.181912970000000007 0.225411670000000008 0.0331439040000000018 -0.0427223480000000003 0.196749900000000005 120 0 120 0 3.66052150000000021 179.029999 2.03431213956565982 1.94862979882897003 31 false 0.0474849400000000033 1.43250344462143997 0.177243424487667001 0.0791533199999999992 14 10 1.43121910000000008 0 14 false 120 140.784580224420012 1.09120639197991998 129.016998 20.3169779999999989 10 55.0269867342396992 9.62309462168147078 5.71822169999999996 20.9999490000000009 11 165.901339498075998 10.6962462536867005 15.5102399999999996 19.2122959999999985 1.56926509999999997 0 1.78765299999999994 0.682970049999999995 1.10468290000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.601969882140992 -63.6096749985162973 21.7159749667850015 -12.6995926926958997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321216716276096 2481321216716276096 1414139851 2015.5 24.7495147271927998 0.61224575485462196 -3.31297866940556007 0.511711414094910055 0.346240349291721983 0.758706114853337055 0.456356350000000022 2.07111774630537004 1.28415286160638997 -1.42172952604599989 0.89628366739361498 0.0119695649999999997 0.313553839999999973 -0.262338130000000003 0.110772380000000004 -0.388845119999999989 0.122747055999999993 0.196532070000000003 0.106261359999999999 0.0222845709999999995 0.249102960000000012 131 0 131 0 -0.214942169999999988 121.964996 0 0 31 false 0.0655086859999999965 1.73379208244770999 0.138918855654960011 0.0476072879999999976 15 10 1.16920690000000005 0 15 false 131 169.25760239417599 1.32369060461595001 127.867996 20.1169949999999993 11 75.0097786113263965 8.25837394041614914 9.08287499999999959 20.6635929999999988 12 125.575343427722004 10.6517678752052003 11.7891549999999992 19.5146599999999992 1.18508780000000002 0 1.14893339999999999 0.546598429999999968 0.602334999999999954 \N \N 0 \N \N \N NOT_AVAILABLE 150.497624185113011 -63.6099738396821976 21.6828132965164997 -12.6663589191244998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318231714411008 2481318231714411008 394383111 2015.5 24.7681418469739008 0.341010500379972992 -3.31768141770140002 0.292237060803626991 0.498586366615318022 0.380008956093816019 1.31203840000000005 1.01523956830844009 0.781499857413537002 -4.26709031827946994 0.580127918714561042 0.129454430000000009 0.208210599999999996 -0.226846469999999995 0.144826729999999987 -0.158687930000000005 0.194162599999999991 0.242792339999999995 0.032465639999999997 -0.0491489999999999982 0.206928040000000008 126 0 124 2 0.194385869999999988 121.347 0 0 31 false 0.194289299999999998 1.65906406947115004 0.0844895722264021043 0.0571604149999999991 15 10 0.708978600000000014 0 16 false 123 317.31585070248201 1.6775929264279601 189.149002 19.4346369999999986 12 178.702077018923006 11.0748988740713994 16.1357749999999989 19.7210639999999984 12 239.006151088174988 14.0483834261977005 17.0130710000000001 18.8158969999999997 1.31637990000000005 0 0.905166600000000043 0.286426540000000007 0.618740100000000015 \N \N 0 \N \N \N NOT_AVAILABLE 150.540095487387987 -63.6065799882304006 21.6987345173949997 -12.6776122818455992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318296138515072 2481318296138515072 1672536780 2015.5 24.7593800331234988 0.231172867632470996 -3.31131861226891022 0.191920654433954008 2.09416229601482007 0.252182937746913027 8.30413899999999927 26.3652616881586006 0.520536462575530989 2.09096008952039014 0.388201608405944976 0.107114694999999996 0.255610300000000012 -0.218792330000000007 0.150320160000000008 -0.101952210000000001 0.208983210000000003 0.234009030000000007 0.0103297939999999998 -0.06178757 0.174318250000000008 134 0 134 0 1.1367385000000001 147.404007 0.247078339018043991 0.197917170209148008 31 false 0.402667050000000026 1.31345307196290007 0.0577099587554697965 0.0225530269999999998 16 10 0.471014019999999978 0 16 false 134 558.749277943084962 1.76089387673996001 317.309998 18.8203239999999994 12 153.362502202232008 15.0010637039922994 10.2234420000000004 19.8870900000000006 14 715.267509055721007 17.4354607726430011 41.0237240000000014 17.62575 1.55459710000000007 0 2.26134099999999982 1.06676670000000007 1.19457440000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.516264461140992 -63.6043973791112975 21.6928204327489986 -12.6684632330350997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318403513102464 2481318403513102464 241937671 2015.5 24.7701895892603012 0.113906948371192002 -3.30310054631977001 0.0932813668550993014 0.187299254959607003 0.124682516998149001 1.50220939999999992 -1.70847589138681011 0.258693297739604977 -1.61609992929082003 0.189604450206190989 0.113160360000000002 0.248930700000000005 -0.220883849999999993 0.133011679999999993 -0.0862797049999999982 0.179380459999999992 0.203788579999999997 0.0154764800000000008 -0.0456579479999999968 0.164496150000000008 132 0 132 0 1.57524339999999996 153.039993 0 1.78333665740568982e-15 31 false 1.71450089999999999 1.60543057232246 0.0280925427950836012 0.026134692000000001 15 10 0.236453400000000008 0 15 false 131 1740.51117990558009 2.9852317296542199 583.041016 17.5866739999999986 13 863.449497689966961 10.0232347358188996 86.1448000000000036 18.0107959999999991 12 1223.50588397346996 5.50400218165837973 222.293849999999992 17.0429040000000001 1.19904729999999993 0 0.967891700000000021 0.424121860000000017 0.543769839999999949 \N \N 0 \N \N \N NOT_AVAILABLE 150.530737226045005 -63.5924567283903031 21.7062135751459984 -12.6648241519913007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318403513102592 2481318403513102592 808737946 2015.5 24.7743117091673994 0.115445352607645005 -3.3044535862155402 0.0923569851173572931 -0.0254200165658893008 0.125682151445927009 -0.202256380000000013 1.75098657068280006 0.25941391869208702 -4.79924871706548029 0.176314873216235013 0.100785330000000006 0.268504650000000011 -0.214057250000000004 0.150500579999999995 -0.0946513300000000057 0.196952490000000008 0.292098020000000014 0.00774599659999999999 -0.030251858999999999 0.142080380000000006 141 0 141 0 2.04302299999999981 171.772995 0.29362605161681099 1.35951528027169011 31 false 1.66361829999999999 1.5865637531644301 0.0276783764253023014 0.0128422420000000002 16 10 0.235842319999999994 0 16 false 140 1985.31923864605005 2.92912951848810987 677.784973 17.4437899999999999 13 987.799757157897943 13.5200537305540003 73.0618199999999973 17.8647160000000014 13 1463.2334847489999 16.4579167305504015 88.9075799999999958 16.8486370000000001 1.23457879999999998 0 1.01607899999999995 0.420925139999999975 0.595153799999999955 \N \N 0 \N \N \N NOT_AVAILABLE 150.54042044126399 -63.5919890711514029 21.7096184817134983 -12.6676044711198994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318124339819136 2481318124339819136 462233197 2015.5 24.7968687977664004 0.104402140333669 -3.32972010754426995 0.0833218174841807019 0.531171617186648959 0.113707968944596005 4.67136670000000009 12.1088837155968001 0.233865660729841995 -7.35363585094401984 0.158876393485151007 0.0955236400000000069 0.271016900000000005 -0.216149989999999986 0.150999140000000004 -0.10303764 0.202224120000000007 0.294499100000000014 0.00644038660000000041 -0.0352720099999999995 0.145634550000000002 142 0 142 0 -0.17940296 133.395996 0 0 31 false 2.05484100000000014 1.59410040109623008 0.0254369353446231017 0.0116430300000000004 16 10 0.213608880000000001 0 16 false 142 2037.82005468106991 2.72442297292586 747.981995 17.4154510000000009 13 858.253070856505019 8.50801887983607941 100.875786000000005 18.0173500000000004 16 1727.71374165946008 9.8282261702378193 175.790999999999997 16.6682400000000008 1.26898679999999997 0 1.34910960000000002 0.60189820000000005 0.747211460000000049 \N \N 0 \N \N \N NOT_AVAILABLE 150.610032814129994 -63.6056786400457028 21.7214745798404998 -12.6994121013972006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318055620343168 2481318055620343168 1130938648 2015.5 24.8052547493964006 0.248476898933828988 -3.32777867133181982 0.200002935900772005 1.58854646484137008 0.266823832359353974 5.95354030000000023 10.5112128498842008 0.526382943115396018 -4.8565000568531298 0.343116275792219982 0.177396849999999995 0.35135793999999998 -0.164512009999999986 0.222765550000000007 -0.0247824380000000004 0.275917000000000023 0.400022800000000012 0.0120731290000000002 0.0198917350000000007 0.197844619999999999 136 0 136 0 12.2098460000000006 443.175995 1.29332189011450005 16.9258672801766998 31 false 0.400219920000000007 1.32221788087657011 0.0548337941974332971 0.0451770719999999987 16 10 0.475625779999999998 0 16 false 134 1422.79050791602003 4.24192283903218037 335.411987 17.8055130000000013 14 393.391935345958984 10.0494992545244006 39.1454280000000026 18.8643250000000009 15 1747.86172125501002 11.7490342614302996 148.766420000000011 16.6556530000000009 1.50496760000000007 0 2.20867160000000018 1.05881120000000006 1.14986039999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.625363240259986 -63.6004439180554968 21.730183447321199 -12.7007073452744006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318089982215424 2481318089982215424 727919179 2015.5 24.8140069574506015 0.964133193897974028 -3.31803304198938021 0.964279607173596953 1.12137489066487994 1.1953267120820199 0.938132500000000036 6.88067646855489023 2.54608892037455004 -13.5697970151415994 3.54369751254247012 0.185001500000000013 0.0955200300000000058 -0.068114770000000005 0.211212139999999993 -0.24642095 0.325601550000000017 0.275736660000000022 -0.272033299999999978 -0.463388499999999981 0.504019740000000049 106 0 106 0 2.39334179999999996 138.154007 2.93831532837067 1.8793672018257801 31 false 0.0246910169999999991 1.40139061640317997 0.276114886094943002 0.112232189999999996 12 8 3.4325793 0 12 false 106 96.8867350921427004 1.19579449601182009 81.0229034 20.7227059999999987 8 56.6657809160098012 10.2707289967432995 5.51721099999999964 20.9680859999999996 9 151.101246314046989 11.3643115289718004 13.2961200000000002 19.3137499999999989 2.14443200000000012 0 1.65433690000000011 0.245380399999999999 1.40895649999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.634163623775009 -63.587953778915697 21.7422013938473988 -12.6948876931977992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318162994934144 2481318162994934144 1182341877 2015.5 24.8099849168103006 0.0389071671443450007 -3.31480784457342992 0.0306685754058221016 4.17328674100517016 0.0425053450648468986 98.1826300000000032 -18.6624847993496985 0.0791049806452706061 -53.836040440470498 0.0682581855358709022 0.140962229999999994 0.433573299999999995 -0.165907620000000006 0.121629849999999998 0.0519133400000000023 0.235442769999999996 0.151338849999999997 -0.053994720000000003 -0.158612609999999987 0.203370600000000012 156 156 150 6 7.35712999999999973 308.731995 0 0 31 true 373.323899999999981 1.61568769362390996 0.00962878361564764064 -0.0299307670000000005 18 10 0.052434902999999998 0 18 false 129 640067.933982106973 408.676752978363993 1566.19995 11.1728009999999998 14 345474.839183354983 814.181730444204049 424.321529999999996 11.5053470000000004 15 417670.671123794978 558.473416728162988 747.879199999999969 10.709835 1.19228829999999997 0 0.795512200000000003 0.332546229999999998 0.462965970000000004 7.26590392795576001 1.15837589963608001 3 6000 4.5 0 NOT_AVAILABLE 150.622944227851008 -63.5866822197768968 21.7396013262022016 -12.6904054402781004 100001 5778.75 5685.5 5951.0498 0.188999996 0.0175000001 0.279100001 0.107000001 0.0399999991 0.173999995 200111 1.20186149999999992 1.1332743999999999 1.24160920000000008 1.45124000000000009 1.42999089999999995 1.47248899999999994 +1635721458409799680 Gaia DR2 2481319636168458880 2481319636168458880 1404502745 2015.5 24.814600986092799 0.554130105403467965 -3.29994114405524996 0.460740892776128008 2.18049897274301996 0.597382697484980962 3.65008739999999987 41.414100967536001 1.28305319233688997 3.0305685279116501 0.829376932983937998 0.149959389999999998 0.173753190000000002 -0.265827539999999973 0.21484571999999999 -0.128601070000000012 0.300983520000000004 0.349031150000000012 0.0549067670000000022 -0.067891129999999994 0.22476792000000001 150 0 150 0 2.89467860000000021 199.266998 0.672644850370740954 0.314215439651201023 31 false 0.0690765750000000012 1.33933806262734989 0.136159318289395009 0.0279582249999999997 17 10 1.1633 0 17 false 148 163.033437465361999 1.13207193588390997 144.013 20.1576750000000011 9 31.2707579357293994 7.02773513364839975 4.4496209999999996 21.6135429999999999 15 239.785325597541004 9.42016917460339975 25.454460000000001 18.8123630000000013 1.66257969999999999 0 2.80118 1.45586780000000005 1.3453120999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.618530425178989 -63.5712420537591001 21.7496292373987004 -12.6782998450734006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319640463683456 2481319640463683456 1599826142 2015.5 24.8130574204907006 3.41062481423052999 -3.29832510352684993 2.43505418255324013 \N \N \N \N \N \N \N 0.0815119740000000009 \N \N \N \N \N \N \N \N \N 98 0 98 0 31.6993709999999993 1536.91003 16.2546299944992008 93.4606573074283062 3 false 0.00338854000000000022 \N \N -0.0110372439999999999 14 10 5.85105369999999958 0 15 false 121 164.565223771979987 1.61472403369743001 101.915001 20.1475200000000001 11 198.233998668454007 20.1311460989692002 9.84712900000000069 19.6084420000000001 12 521.157386815591963 6.44481534978728998 80.8645900000000069 17.9694980000000015 4.37146659999999976 0 1.63894460000000008 -0.539077759999999961 2.17802240000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.613875326374995 -63.5704093828451988 21.7487748654408009 -12.6762282525503007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481321354155235200 2481321354155235200 1074304025 2015.5 24.7671366765515018 0.612180577505045953 -3.28854378088756993 0.588690244615346026 0.967281012938934981 0.680722124763541991 1.42096299999999998 0.00404412185912582031 1.47821774546815998 -4.80938442221710005 1.72906546052905008 0.160812149999999987 0.164924409999999994 -0.242630060000000009 0.120967320000000003 -0.0139116599999999993 0.145858989999999994 -0.0905496199999999973 -0.00166511239999999998 -0.220635940000000003 0.300940329999999978 112 0 111 1 1.46434700000000007 128.024994 0.748104886950973991 0.260037104256981011 31 false 0.0594504849999999974 1.63380426761605002 0.172119705881253998 0.0677673699999999934 13 9 1.63112429999999997 0 13 false 108 140.713975562206997 1.2618830172467701 111.511002 20.3175220000000003 9 99.6935458199897937 15.6209735854318001 6.3820313999999998 20.3547210000000014 8 82.0470708712940962 12.2364526246321006 6.70513530000000024 19.9767629999999983 1.29156049999999989 0 0.377958300000000025 0.0371990199999999993 0.340759279999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.510986914378009 -63.5804568335730025 21.7088345604547008 -12.6501732419187007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413960317670400 2505413960317670400 77786592 2015.5 25.9895799560883987 3.3888060584510602 -2.82701851788283021 2.58424339207586984 \N \N \N \N \N \N \N 0.0737629800000000058 \N \N \N \N \N \N \N \N \N 94 0 94 0 32.6913699999999992 1620.97998 18.0279129136302991 105.815847194461 3 false 0.0027649052999999999 \N \N 0.0169204230000000004 12 9 7.1030369999999996 0 12 false 106 141.941828635149989 1.88232791096126006 75.4076004 20.30809 10 179.493609909929006 9.48289384476881914 18.9281460000000017 19.7162669999999984 9 432.554929152445993 9.59632410539656 45.0750659999999996 18.1718159999999997 4.31196740000000034 0 1.5444507999999999 -0.591823600000000005 2.13627430000000018 \N \N 0 \N \N \N NOT_AVAILABLE 152.517440491853989 -62.6423849990554018 23.0462248954035012 -12.6707297915171004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481322870279089792 2481322870279089792 1006593715 2015.5 24.7875879357948001 0.626481750353978017 -3.27044810887253012 0.587607043077458036 0.616401448794110962 0.696711561580965033 0.884729740000000042 -0.440332251038889011 1.48637862543448995 -1.9257838692145699 1.35919568967085991 0.205390039999999996 0.162250790000000006 -0.204647479999999993 0.181228179999999989 -0.124254089999999998 0.266469120000000004 0.150646780000000008 -0.00308201319999999983 -0.170689719999999989 0.348006370000000009 129 0 127 2 1.93691370000000007 154.044998 1.37332489931112001 1.00488172505530993 31 false 0.0539715360000000005 1.71073208070927008 0.169727007879069997 0.0826075599999999965 15 10 1.46494049999999998 0 16 false 128 148.114965815358005 1.56418753610985006 94.6912994 20.2618679999999998 10 102.166893970941999 9.24075873265300984 11.0561150000000001 20.3281139999999994 10 109.782585180858007 20.2444705356062009 5.4228430000000003 19.6605850000000011 1.43097950000000007 0 0.667528149999999987 0.0662460299999999974 0.601282100000000042 \N \N 0 \N \N \N NOT_AVAILABLE 150.53597851767401 -63.5555453735813032 21.7351381249412015 -12.6409201534490006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319842326745856 2481319842326745856 409199703 2015.5 24.8089756067054985 0.472913955804009023 -3.2929109490686499 0.395518670136346007 1.13903376794286992 0.523382544676374017 2.17629299999999981 11.7890888589976992 1.07325369174686003 -40.1525231356033032 0.707527579061790979 0.146834209999999993 0.198223220000000006 -0.234179479999999995 0.200237269999999995 -0.176356060000000009 0.281739469999999992 0.33986630000000001 0.0344314350000000033 -0.0586247699999999997 0.242306779999999999 149 0 149 0 0.438805129999999988 150.886993 0 0 31 false 0.0937436600000000064 1.4574542688532699 0.115021845221008001 0.0380070949999999977 17 10 0.974900070000000007 0 17 false 146 192.649070373152 1.15589784818450991 166.666 19.9764480000000013 12 67.5687983837734976 8.27684436542564939 8.1635939999999998 20.7770229999999998 13 177.980193442998996 6.25827617323910967 28.4391730000000003 19.1359899999999996 1.27459220000000006 0 1.64103320000000008 0.800575260000000011 0.84045789999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.600505835202 -63.567168396412697 21.7469482794412983 -12.6696904107440993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319876688603648 2481319876688603648 1135914691 2015.5 24.810262613228101 1.44405175986991008 -3.28451108749682996 2.27456491850167986 \N \N \N \N \N \N \N 0.573907700000000021 \N \N \N \N \N \N \N \N \N 54 0 53 1 1.24217899999999992 60.4477005 2.66961151544390995 1.10103264297820003 3 false 0.0234706089999999999 \N \N 0.373462079999999974 7 6 10.3000430000000005 0 7 false 53 78.2382287082359937 1.23251681764938992 63.4784012 20.9548190000000005 7 66.0739858318554951 13.2191852499320994 4.99833999999999978 20.8013109999999983 7 131.463412095075995 9.77911533432521018 13.4432829999999992 19.4649089999999987 2.52481940000000016 0 1.33640289999999995 -0.153507229999999995 1.4899100999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.595323585284007 -63.5589900450230019 21.7513577934780002 -12.6623624082060005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319945405964800 2481319945405964800 305675156 2015.5 24.8050893450011998 0.262510977806690027 -3.27740210800001996 0.201244723101844991 1.5191146068455299 0.280013358774910015 5.42515039999999971 7.71164449613957981 0.62234978297628496 -16.7948902608987005 0.365532432339327973 0.109939229999999999 0.115161180000000002 -0.197032149999999989 0.211173059999999996 -0.127263550000000003 0.305634860000000008 0.293732429999999989 -0.0269297470000000004 -0.0733843700000000043 0.194705319999999987 132 0 130 2 2.40588120000000005 166.222 0 0 31 false 0.364734649999999994 1.46313239021005992 0.061978533648855097 -0.0512469820000000034 15 9 0.55901080000000003 0 15 false 130 500.191002954216003 1.7034289338995301 293.638 18.9405269999999994 13 119.100674396208007 8.66788564785965043 13.7404530000000005 20.1616019999999985 12 623.989657683480004 16.8498467570283985 37.0323640000000012 17.7739769999999986 1.48561309999999991 0 2.38762469999999993 1.22107499999999991 1.16654970000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.578159441825989 -63.5546551177074974 21.7491364698963991 -12.6538468170159994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319876686627584 2481319876686627584 308697946 2015.5 24.8254615376992014 1.64724090625903008 -3.28602520696933009 2.7538079516976901 \N \N \N \N \N \N \N 0.608508200000000055 \N \N \N \N \N \N \N \N \N 41 0 41 0 2.51292800000000005 60.858799 3.1181441764073301 1.47083568198947989 3 false 0.025676141999999999 \N \N 0.379989980000000005 5 4 8071.4380000000001 0 5 false 43 81.4505733237902945 2.89581269034647004 28.1270008 20.91113 3 36.3182149810184001 0.784273158844693952 46.3081200000000024 21.4510770000000015 4 130.41814117611699 7.30384310145516036 17.8560979999999994 19.4735760000000013 2.04708619999999986 0 1.97750089999999989 0.539945600000000026 1.43755530000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.627747360489991 -63.5540846485002007 21.7652319231697007 -12.6693841017021995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319773607271296 2481319773607271296 1405531836 2015.5 24.8309886369141992 0.821165058313608975 -3.28452399832815001 0.738447260463799049 -1.32389632041702998 1.05484572233351992 -1.25506150000000005 1.10023527673364008 1.94022813083483991 0.124332679323052003 2.49295840506926991 -0.000755570799999999952 0.31584321999999998 -0.198882799999999998 0.118068099999999995 -0.318794369999999994 0.318412799999999996 0.128541340000000004 -0.281748319999999997 -0.437152980000000024 0.542661199999999955 96 0 95 1 0.100694179999999994 90.685997 0 0 31 false 0.0474752969999999996 1.62055619843703003 0.232059774493580007 0.060692030000000001 11 7 2.48821469999999989 0 11 false 94 114.757676328917995 1.07077333996718993 107.172997 20.5389119999999998 9 87.0727723528770952 6.18003576905111984 14.0893639999999998 20.5016819999999989 8 94.6426726795589985 16.0222229665878011 5.90696300000000019 19.8217029999999994 1.58347100000000007 0 0.679979299999999953 -0.0372295379999999995 0.717208859999999948 \N \N 0 \N \N \N NOT_AVAILABLE 150.637626164212008 -63.5504317624343997 21.7710555701322015 -12.6700312222898006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319945405967104 2481319945405967104 373606476 2015.5 24.8069776546243013 0.409420985678127014 -3.26922660006208998 0.212088253654145992 -0.118840989458231003 0.303931341463594018 -0.391012599999999988 0.884772753200147033 1.05710682064629991 -15.0023918855840996 0.354033417991286015 -0.273823680000000014 -0.20594346999999999 -0.75419360000000002 0.299968869999999999 0.0855000000000000066 0.483845899999999995 0.18046123 0.398223879999999975 -0.136792419999999998 -0.104119030000000001 132 0 130 2 4.12368350000000028 201.276993 1.03751509328818003 6.29524292285718001 31 false 0.375579830000000003 1.6863745134413699 0.0616794174918183016 -0.0531175139999999976 15 8 0.992701049999999974 0 15 false 126 779.56652601828398 2.0947493428373698 372.153015 18.4587329999999987 14 390.835070625209994 9.81872075094156038 39.8050899999999999 18.8714049999999993 12 566.655938619256972 10.0578995528484008 56.3393900000000016 17.878622 1.22823510000000002 0 0.99278259999999996 0.412672040000000018 0.580110550000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.574421099516996 -63.546431949262697 21.7540321259176999 -12.6469493472235008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481317265346486144 2481317265346486144 1122492693 2015.5 24.8458739389682002 0.656369394201245959 -3.34190542855857009 0.911317427109852973 -2.49778648293243011 0.792602695082819997 -3.15137270000000003 -2.48413809420976994 1.9997469963158101 -3.80618697837644016 2.65308865330045007 0.377508879999999991 -0.0684086599999999961 -0.474634349999999983 -0.261262480000000019 -0.468025030000000009 -0.501166 -0.720985300000000051 0.403342499999999993 0.353056460000000016 0.724180099999999993 103 0 103 0 0.349037529999999985 102.280998 0.654508556937081987 0.198660548117065988 31 false 0.0700662799999999947 1.48256216530815998 0.212407198109052009 0.206143400000000004 12 8 2.81790610000000008 0 12 false 103 154.970407672828998 1.65755794357427999 93.4932022 20.2127440000000007 7 154.371606901988997 37.3416484464803986 4.13403299999999962 19.8799700000000001 9 101.095969132231005 10.1647970039428994 9.94569500000000062 19.7500859999999996 1.64849270000000003 0 0.129884720000000009 -0.332773199999999991 0.462657929999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.721518506855006 -63.5964693813540975 21.7634418861683017 -12.7288384833936998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318742815236608 2481318742815236608 346922192 2015.5 24.8407040533197012 0.724318964216233985 -3.33084581274860003 0.806433461546041008 -1.28979727891709994 0.881872445862151966 -1.4625667 1.51640692546592004 1.94098097006966008 -3.90030277643755019 2.55969292590294017 0.38897756 0.126077099999999998 -0.082653396000000004 0.121453054000000005 0.044184453999999998 0.138712029999999986 -0.088833750000000003 -0.191949069999999999 -0.391940359999999988 0.59769899999999998 97 0 97 0 0.499180699999999977 98.2406006 0 0 31 false 0.0505708870000000019 1.55643317132084991 0.233498297026700996 0.273340939999999977 11 7 2.55548950000000019 0 11 false 94 113.046745583732005 1.22904977790025005 91.9789963 20.5552199999999985 7 72.7461122776860947 13.0554944430215993 5.57206869999999999 20.6968630000000005 7 77.7466021679713037 3.58543263829706982 21.6840229999999998 20.0352169999999994 1.33124329999999991 0 0.661645900000000009 0.141643519999999995 0.520002370000000047 \N \N 0 \N \N \N NOT_AVAILABLE 150.700631010273014 -63.5885540394291979 21.7627221145193985 -12.7166540938068007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318536656676608 2481318536656676608 1264058847 2015.5 24.8716783739763017 0.292245988087220021 -3.3410093414467199 0.235607566240364996 0.823414114697199051 0.324705443626756018 2.53588030000000009 6.03406115106471042 0.660721881264147992 -3.80129960403063993 0.433964229907393972 0.125872050000000013 0.201756149999999995 -0.241425620000000007 0.181821869999999997 -0.191415639999999998 0.258786079999999974 0.265414539999999977 0.0344334840000000003 -0.0502366900000000005 0.238639010000000013 141 0 141 0 3.00117659999999997 190.906998 0.916968542651437013 2.36240704982873018 31 false 0.263408240000000016 1.56581526988604991 0.0684812996287007952 0.0696499299999999988 16 10 0.599756100000000014 0 16 false 137 483.471041706779999 1.44510111194272994 334.55899 18.9774400000000014 12 197.124621893853003 7.2564969730858504 27.1652580000000015 19.6145360000000011 12 392.292296990552018 10.9189403501973992 35.9276899999999983 18.2778950000000009 1.21913589999999994 0 1.33664129999999992 0.637096400000000007 0.699544900000000025 \N \N 0 \N \N \N NOT_AVAILABLE 150.773348539952991 -63.5849381424921987 21.7883173819466016 -12.7375379611941995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318674098713856 2481318674098713856 954528136 2015.5 24.8765618836582014 0.945185033425278043 -3.3190197987188701 0.978271676479826047 0.863671909465090981 1.12117066155159995 0.770330399999999971 4.65317411552342008 2.06800110250043012 10.9742562377491009 2.49788145400113004 0.310947660000000015 0.345925240000000023 -0.178637560000000001 0.048762492999999997 0.199732149999999997 0.130242739999999996 -0.173510730000000002 -0.0319191630000000004 -0.265983819999999982 0.345937580000000022 80 0 80 0 1.46139259999999993 93.5849991 1.82270207027903997 0.850648286539415044 31 false 0.0364524540000000022 1.01383098559136009 0.293922225780720026 0.212690039999999997 9 7 2.37579349999999989 0 9 false 80 98.5150940301393945 1.0050738893684299 98.0177994 20.7046090000000014 4 38.5044683920858972 15.3485426356785002 2.50867269999999998 21.3876099999999987 6 120.628757217122995 19.9218126639517017 6.05510950000000037 19.5582920000000016 1.61531819999999993 0 1.82931709999999992 0.683000559999999979 1.14631649999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.762740606628 -63.5629149614252 21.8013012167539983 -12.7189123941315003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318884549457408 2481318884549457408 1665249225 2015.5 24.8762540368413987 0.142187857110028987 -3.30816653257689985 0.112626023836406006 0.674004221652731994 0.152875456461372988 4.40884539999999969 7.84059795515621971 0.32719232991963898 -1.01569332067508999 0.202973233043347995 0.149851650000000003 0.140158769999999988 -0.184305579999999997 0.215068829999999989 -0.110739279999999995 0.294390560000000023 0.229383780000000009 0.014362695 -0.0299857019999999995 0.225123020000000007 113 0 112 1 1.47792999999999997 129.350998 0.358203717503571994 1.42129202877030991 31 false 1.42193900000000006 1.58055236567890001 0.0329248581193768014 0.035818570000000001 13 9 0.297909529999999978 0 14 false 112 1649.2294633736401 2.72578562146309 605.046997 17.6451630000000002 14 736.391644218206011 15.7669440743311995 46.7047799999999995 18.1836170000000017 14 1352.17911669193995 22.3803981274713983 60.4180100000000024 16.9343339999999998 1.2663918999999999 0 1.24928280000000003 0.538454059999999957 0.710828800000000038 \N \N 0 \N \N \N NOT_AVAILABLE 150.751970657388995 -63.553173887756202 21.8051244918711014 -12.7087154135112002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318884549457280 2481318884549457280 747212953 2015.5 24.8749771576266987 0.134389723924742993 -3.30558780750823011 0.103735866484583994 1.03385781332031002 0.145321972264881999 7.11425700000000028 20.0078416627415017 0.302163186817268004 -12.3008247835948996 0.193023656508127001 0.0838893200000000033 0.190048870000000009 -0.304941799999999985 0.182129170000000007 -0.144602100000000011 0.25696380000000002 0.187897800000000004 0.0832262899999999944 -0.032895795999999998 0.194709660000000007 133 0 130 3 2.55822400000000005 169.151993 0.369197169821861015 1.79325705904751009 31 false 1.44328569999999989 1.39347687863061998 0.0315842503608647976 0.0463442540000000014 15 9 0.276589799999999997 0 15 false 129 1699.75012000946003 2.26271618090592019 751.198975 17.6124040000000015 12 520.541867889946957 12.6300261821911004 41.2146299999999997 18.5602499999999999 10 1754.26753424592994 14.7828887716700006 118.668790000000001 16.6516799999999989 1.3383198999999999 0 1.90856929999999991 0.947845460000000029 0.960723899999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.746959244012004 -63.5513592139296009 21.8048883443393997 -12.7058480539119003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318880254191616 2481318880254191616 379856335 2015.5 24.8776217428056015 0.667778632198747002 -3.30732521480019015 0.630088495507021951 0.178815754044455988 0.754550895241352992 0.236983030000000011 0.269555152004452014 1.59479355654152011 -5.47622610820252032 1.83675682948137009 0.104732240000000004 0.185265469999999988 -0.245955299999999988 0.112980479999999994 -0.120426530000000004 0.101213650000000002 -0.222045240000000005 -0.0176614169999999987 -0.185889560000000009 0.401305299999999976 106 0 104 2 -0.0550943539999999982 97.5651016 0 0 31 false 0.0580459050000000018 1.61239286011776994 0.198691275100607995 0.105725250000000007 12 8 1.80010779999999992 0 12 false 104 126.694233656573005 1.11126334901905 114.009003 20.4314730000000004 7 84.443120591582101 8.36482734303086062 10.0950220000000002 20.5349770000000014 7 81.9720763619829995 12.6472605330995993 6.48140949999999982 19.9777549999999984 1.31351829999999992 0 0.557222369999999967 0.103504180000000001 0.453718200000000016 \N \N 0 \N \N \N NOT_AVAILABLE 150.753972540894011 -63.5518407455992005 21.8067439587271004 -12.7084388938865001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669975807104 2481271669975807104 1039473270 2015.5 24.8988271644223005 0.839683683016328009 -3.34230316908872016 0.77767129987267003 1.31944643179285004 0.940265658286982053 1.40326989999999996 -12.2218608784673002 2.08524591355934996 -21.960950978533301 2.27542890022853017 0.127477380000000001 0.0909607500000000069 -0.175759660000000012 0.166070999999999996 -0.0661025100000000032 0.160617199999999988 -0.154773729999999998 -0.0779698000000000058 -0.251878529999999989 0.377946439999999995 101 0 100 1 3.92276550000000013 159.037003 2.62374498098985987 2.87082707663088987 31 false 0.0366709159999999978 1.08757034395186003 0.251241927357934991 0.0724713359999999973 12 8 2.25590560000000018 0 12 false 101 116.394036907409998 1.08679256414129011 107.098999 20.5235389999999995 9 52.3290942957400986 12.7745225661183994 4.09636400000000034 21.0545299999999997 12 166.272856237874009 5.73797591274138963 28.9776150000000001 19.2098669999999991 1.87811979999999989 0 1.84466170000000007 0.530990599999999979 1.31367110000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.829930495066009 -63.5748193812601983 21.8136421739860005 -12.7487667926460997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318609671550592 2481318609671550592 1603422949 2015.5 24.9027058063274005 2.01566338708378012 -3.33276839912642986 1.47432672344796001 \N \N \N \N \N \N \N 0.088427439999999996 \N \N \N \N \N \N \N \N \N 109 0 106 3 50.7240070000000003 3889.97998 10.7641011531572008 323.642135784663992 3 false 0.0080383859999999998 \N \N 0.0622709239999999983 15 9 3.97033980000000009 0 15 false 128 350.828913246741024 3.74701087238425989 93.6289978 19.3256259999999997 11 502.019382048324985 14.0237608112746006 35.7977699999999999 18.5995859999999986 12 1034.20091292765005 8.16864172517123066 126.606223999999997 17.2254089999999991 4.37883040000000001 0 1.37417790000000006 -0.72603989999999996 2.1002177999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.828901375702003 -63.5645385795438003 21.8209465847862987 -12.7413406856246993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271669973543168 2481271669973543168 522158079 2015.5 24.9102374437332017 2.21976534775645007 -3.34001047034554022 1.67966083300760993 \N \N \N \N \N \N \N 0.0862645699999999988 \N \N \N \N \N \N \N \N \N 122 0 121 1 37.594337000000003 2142.97998 12.7515712657462004 207.405077781073999 3 false 0.00565486630000000025 \N \N 0.0658863259999999951 15 9 4.44426770000000015 0 15 false 131 218.931468355930008 2.3709647275800898 92.3386002 19.8375950000000003 15 361.200890972188972 11.1293095100818995 32.4549260000000004 18.9570159999999994 13 711.878064663815053 7.49316050291518021 95.0037159999999972 17.6309049999999985 4.90143780000000007 0 1.32611079999999992 -0.880579000000000001 2.20668979999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.851039171076991 -63.5679826511133967 21.8253621490879013 -12.7508503073099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271704333282560 2481271704333282560 644772123 2015.5 24.9124653699850001 0.670529279862627003 -3.33414150072109994 0.623036120010397987 1.54909296088616011 0.769399900652262048 2.01337810000000017 4.27231988360743031 1.58022898370341003 1.25606125766285004 1.51831075209620003 0.167862879999999992 0.176286699999999991 -0.162104920000000013 0.163559499999999997 -0.188591439999999999 0.235502600000000006 0.0687723699999999993 -0.0574842299999999973 -0.175690409999999991 0.384854799999999997 112 0 112 0 3.28791050000000018 161.785004 1.61636855208897989 1.28940545564197007 31 false 0.0522705539999999969 1.12117115266088008 0.199185059814394994 0.0967233900000000063 13 9 1.60569739999999994 0 13 false 108 133.737542740744999 1.05576754816325002 126.672997 20.3727319999999992 9 30.9498591383479997 10.4574667858863997 2.95959420000000017 21.6247399999999992 11 154.189556179148013 9.78117647271574064 15.7639069999999997 19.2917820000000013 1.38434889999999999 0 2.3329582000000002 1.25200840000000002 1.08094979999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.850076243061011 -63.5617210320096007 21.8297065038161016 -12.7462202652403001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271708628678400 2481271708628678400 511308596 2015.5 24.9206192593724012 4.05677508348223004 -3.33481225769001988 2.2762174312600898 \N \N \N \N \N \N \N -0.351015999999999995 \N \N \N \N \N \N \N \N \N 69 0 69 0 28.6452850000000012 1238.09998 10.5590031969392992 88.7549343965990971 3 false 0.00821789300000000042 \N \N 0.0816956900000000014 9 6 9.40446700000000035 0 9 true 79 246.765292095509011 2.64039648813644012 93.4577026 19.707654999999999 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.867317289824996 -63.5589318251484983 21.8372060947443991 -12.7498542289896992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481318708457633664 2481318708457633664 1638429914 2015.5 24.899263282558401 0.837757700743471001 -3.31371140950581999 0.767406630252514987 1.95522967147390991 0.950123106073127999 2.05786999999999987 9.77545803138835012 1.96526788195508995 -11.0615225603556002 2.26950847320087012 0.0909147299999999992 0.208527059999999986 -0.227007359999999991 0.145251600000000008 -0.101530259999999997 0.182074130000000001 -0.111662979999999995 -0.0642947299999999944 -0.259625459999999975 0.379200580000000009 105 0 105 0 2.12261100000000003 132.317001 1.71808471338637991 0.906478797916328016 31 false 0.0368899219999999986 1.80892914820684991 0.245080542508606003 0.101728869999999999 12 8 2.20680759999999987 0 12 false 104 101.442588284576004 1.13842965449987998 89.1074982 20.6728149999999999 5 39.3152371135309977 13.4158636596565994 2.93050360000000021 21.3649859999999983 7 141.693507398588991 10.2289836570726003 13.8521590000000003 19.3835450000000016 1.78434669999999995 0 1.98144150000000008 0.692171100000000039 1.28927039999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.804043828320005 -63.5486499578954991 21.8248998558829008 -12.7223641018149003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319292570930432 2481319292570930432 886977732 2015.5 24.8925310088897014 0.284770618611907 -3.29897556016873983 0.219761737460525991 0.834526027612143007 0.319939253989775019 2.60838899999999985 4.95584675905150984 0.574994222998528981 -15.0551193217561998 0.466745942204363995 -0.0265151129999999999 0.383022460000000009 -0.278273300000000001 0.139792109999999997 -0.249721069999999989 0.24448895000000001 0.0553067620000000024 -0.0114570379999999993 -0.090527880000000005 0.264724640000000011 115 0 113 2 -0.126275749999999992 105.497002 0 0 31 false 0.376962779999999997 1.29588098356029002 0.0703788317902209054 0.0187514550000000002 13 9 0.537714200000000031 0 13 false 111 474.322874043010017 1.58550643373555999 299.161987 18.9981800000000014 12 207.707524606080995 29.6480412798946986 7.00577550000000038 19.5577579999999998 13 465.774614556696974 25.1912432540745996 18.4895439999999986 18.0914800000000007 1.41988120000000007 0 1.46627810000000003 0.559577940000000051 0.906700130000000049 \N \N 0 \N \N \N NOT_AVAILABLE 150.776550809469001 -63.5380533906391989 21.824086039636299 -12.7061873349429995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319704889973120 2481319704889973120 468874710 2015.5 24.8488468283157005 1.91622857378888001 -3.29467164876770013 1.03264173167342999 \N \N \N \N \N \N \N -0.54139729999999997 \N \N \N \N \N \N \N \N \N 90 0 90 0 1.64463650000000006 107.515999 0.509555407864326959 0.0714029987312734954 3 false 0.0355813499999999977 \N \N -0.000197739469999999991 10 7 4.48557800000000029 0 10 false 90 97.095601368082896 1.14065164822795007 85.1229019 20.7203669999999995 6 60.6002671745255981 11.7501722033587992 5.15739400000000003 20.8952029999999986 7 89.1976105606406975 13.8408100551142006 6.44453669999999956 19.8860379999999992 1.54278739999999992 0 1.00916479999999997 0.174835199999999996 0.834329600000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.683499604849004 -63.5522702875934016 21.7841845715092006 -12.6860553224172001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319704887792128 2481319704887792128 1495223392 2015.5 24.851112797794201 0.590377475406816954 -3.29380597635375993 0.504072409837956981 1.14793603156229995 0.655380374128873955 1.75155689999999997 29.9436386583850016 1.34632092869410003 -4.52379353046211019 1.01579647761022995 0.14585403999999999 0.186858360000000001 -0.227775509999999987 0.178823289999999996 -0.15066771000000001 0.257269000000000025 0.163195200000000012 0.0282425770000000013 -0.0832200649999999958 0.269728499999999982 121 0 120 1 2.84928630000000016 163.007004 1.54129353734982 1.39290999452574993 31 false 0.0690958599999999951 1.42631544587560999 0.150773698398872003 0.0560201999999999992 14 9 1.23954180000000003 0 14 false 122 166.606362193974007 1.29876408972285007 128.281006 20.1341360000000016 10 36.1001208507478992 8.62089658400523007 4.18751340000000027 21.4576169999999991 11 223.063628956635995 7.95330311541458013 28.0466650000000008 18.8908479999999983 1.55554529999999991 0 2.56676860000000007 1.3234805999999999 1.24328799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.687313591032989 -63.5505436229485028 21.7866671550024016 -12.6860880543927994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481320014125445632 2481320014125445632 1425788166 2015.5 24.8431141665990012 0.580637460753262946 -3.26166902815025983 0.558151489477943019 0.0595875281849378019 0.661785012397961947 0.0900406200000000018 1.80298331655352007 1.41493700829457003 -1.22369832767612996 1.11386078976368008 0.22455949 0.0948686499999999988 -0.114850149999999998 0.270611380000000012 -0.282873660000000027 0.417734649999999985 0.436041950000000011 -0.120084220000000005 -0.25089752999999998 0.397097050000000007 121 0 120 1 2.53307530000000014 157.029999 1.7374105794927801 2.06619671742138999 31 false 0.0720025200000000004 1.45048971492244005 0.164604182706892005 0.0548714599999999969 14 8 1.37979980000000002 0 14 false 120 187.356096058822999 1.45833681214671995 128.472 20.0066969999999991 12 111.831054703747 7.69101706835651999 14.5404769999999992 20.2299819999999997 10 121.878370714580996 8.43464152498597031 14.4497389999999992 19.5471040000000009 1.2474076999999999 0 0.682878500000000055 0.223285679999999986 0.459592820000000013 \N \N 0 \N \N \N NOT_AVAILABLE 150.641090943087988 -63.5246148093053975 21.7912492998577996 -12.6532769836166992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319361290410752 2481319361290410752 1130570689 2015.5 24.8939192278039982 0.156171645670520998 -3.2852566889821202 0.117042540409813003 0.256348976434636 0.17028334529977901 1.50542599999999993 4.27359469522805036 0.322266550855241973 -2.80641558474074992 0.250821137820336992 -0.049729317000000002 0.355086950000000012 -0.280800969999999983 0.109820710000000002 -0.202166719999999994 0.17081977000000001 0.0529035549999999979 0.0288790839999999993 -0.0515193450000000011 0.143605840000000012 103 0 101 2 1.39481739999999999 115.896004 0.281372346729388989 0.798419100215651989 31 true 1.36158470000000009 1.59978795781023009 0.0370652615760296983 -0.0058666415999999999 12 9 0.293801670000000015 0 12 false 101 1465.45975098621989 3.03022608007582983 483.614014 17.7734319999999997 9 745.268385146943956 16.2463611666556993 45.8729439999999968 18.1706070000000004 10 1072.08336949274008 9.7949325885384404 109.452860000000001 17.1863479999999988 1.240124 0 0.984258650000000013 0.397174839999999973 0.587083800000000045 \N \N 0 \N \N \N NOT_AVAILABLE 150.766563968845986 -63.5250029058883001 21.8306074338338014 -12.6939539719609993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319292570932608 2481319292570932608 593428409 2015.5 24.9005079879918014 0.539243038048246026 -3.29027517596130981 0.394554145532011014 2.68576599210644007 0.591706492252791039 4.5390170000000003 9.51303900489739007 1.10305815892379999 1.95628344554168998 0.694732632652231952 -0.0470500630000000031 0.358055599999999974 -0.265133320000000006 0.140379890000000007 -0.254546879999999975 0.227517599999999987 0.303515550000000023 0.0161156149999999998 -0.0317165030000000001 0.138591199999999998 115 0 115 0 7.46785500000000013 260.917999 2.03589012715361983 7.02438196908274026 31 false 0.109153819999999999 1.49279932350201006 0.118721479147290004 -0.0267459710000000003 13 9 0.991274100000000047 0 13 false 114 321.645116298116022 2.36207369886946994 136.171005 19.4199240000000017 12 94.9501525181530042 11.6947964432625007 8.11900900000000014 20.4076479999999982 11 481.358084508401021 16.4941151651042013 29.1836260000000003 18.0557499999999997 1.79175189999999995 0 2.35189819999999994 0.987724299999999999 1.36417389999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.784666867752009 -63.5268268958929028 21.8349694753406993 -12.7010494679431005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319395650151552 2481319395650151552 1535633210 2015.5 24.8857116236532008 0.349810889990162022 -3.27631520669303011 0.287741561107392019 0.528032533871172993 0.383104446693689982 1.3782991 -2.48801310661009989 0.808009177810090962 -6.80939546013672015 0.541865521281191032 0.126742770000000005 0.149959790000000009 -0.256457780000000024 0.196864430000000007 -0.173890829999999996 0.280784959999999972 0.249574899999999988 0.0421904400000000027 -0.0742303099999999938 0.235499740000000013 132 0 132 0 4.31251340000000027 207.947006 1.16412072362187002 2.70247357849991987 31 false 0.19098227000000001 1.5032072522650699 0.0862914443589878066 0.0489590300000000006 15 9 0.734329099999999957 0 15 false 130 376.723446365098027 1.40105773318093996 268.88501 19.2483080000000015 12 163.486346931186006 10.8766099964713998 15.0310020000000009 19.8176839999999999 11 328.177811458094027 11.9983922698959997 27.3518159999999995 18.4716470000000008 1.30510630000000005 0 1.34603690000000009 0.569375999999999993 0.776660899999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.741507088231003 -63.5202813955601968 21.8261936993900996 -12.682615848447 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319395650150784 2481319395650150784 1180605640 2015.5 24.9033350113090997 0.736145145080211005 -3.2774400963049799 0.760166875439092005 -0.766320575098010992 0.867445444312237024 -0.883422200000000046 -2.12218224867197991 1.88299344814855996 -4.4032493514126001 1.81359290144363006 0.313424230000000026 -0.0403390699999999977 -0.338537220000000028 -0.0216823600000000012 -0.306666249999999974 -0.0616730700000000034 -0.262021569999999981 0.204795320000000003 0.0847336499999999937 0.482382660000000019 105 0 104 1 2.7903604999999998 142.830002 0 1.00992146843551999e-15 31 false 0.0488367499999999982 1.74719395271135003 0.205429299773058988 0.152982609999999991 12 8 1.9895134000000001 0 12 false 102 117.990762659110004 1.21898229037552008 96.7945023 20.5087450000000011 7 61.4794776377001 5.60513219619762992 10.9684259999999991 20.879562 7 97.0330103264513042 8.75760896089404994 11.0798520000000007 19.7946199999999983 1.34343140000000005 0 1.08494190000000001 0.370817180000000024 0.714124699999999946 \N \N 0 \N \N \N NOT_AVAILABLE 150.778434025579998 -63.5139823739599976 21.8425233155929988 -12.6901682641186007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271807412496512 2481271807412496512 135164118 2015.5 24.957674428065399 0.449392801005188025 -3.34008053137731009 0.302901719205851017 1.60045662291671009 0.480040795786094987 3.33400130000000017 1.13558899015171 0.897408838122948027 -12.6250697857954997 0.54790251423153602 -0.12950078000000001 0.384070279999999986 -0.269545099999999982 0.100436196000000005 -0.256848420000000022 0.131447960000000003 0.198091430000000013 0.0579402629999999988 0.0314941670000000035 0.0507122279999999981 136 0 136 0 2.30064579999999985 171.082001 0.803614019034804006 0.804985163791327007 31 false 0.140770050000000008 1.36470831763291001 0.0950536023372095945 -0.126244099999999998 16 9 0.801663800000000037 0 16 false 135 278.779844273924994 1.56712742194655008 177.891998 19.5752120000000005 12 65.748333006106094 5.46563908314839964 12.0293949999999992 20.8066770000000005 12 329.904598685734015 7.50828753010110006 43.9387299999999996 18.4659499999999994 1.41923080000000001 0 2.34072689999999994 1.2314643999999999 1.10926250000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.947713653882005 -63.5482471510327969 21.8704483517516017 -12.7684294509406993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319434305270784 2481319434305270784 1211387065 2015.5 24.9256199059257 0.0292034987168936985 -3.27553585090818 0.0233248707547316012 0.818183840800508988 0.033037567514433902 24.7652569999999983 9.03399760842363975 0.062197614247079501 -9.59179749429963024 0.0511676101154567992 0.12507473999999999 0.341074969999999977 -0.222041309999999992 0.0823460800000000021 -0.124267199999999994 0.123510405000000004 -0.0668545960000000022 0.0206830739999999992 -0.0350472400000000003 0.296569320000000025 139 0 139 0 -3.47785160000000015 84.2577972 0 0 31 false 47.9618030000000033 1.60822397102667991 0.00774431219121944972 0.0611389580000000002 16 10 0.0690124899999999958 0 16 false 139 35908.6817547472965 14.8989561126791994 2410.1499 14.3003669999999996 16 19051.4087611202012 39.3272506201255965 484.432770000000005 14.6515699999999995 14 24361.4130788543007 65.0936747242044049 374.251620000000003 13.7951639999999998 1.2089783999999999 1 0.856406200000000006 0.351202960000000008 0.505203249999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.821995726247991 -63.5029804411511023 21.8644343401041006 -12.6966264160784004 100002 5743 5592 5789 0.650699973 0.371699989 0.805999994 0.326700002 0.199200004 0.395099998 200111 1.47180599999999995 1.44850870000000009 1.55236519999999989 2.12300559999999994 1.9196358 2.32637550000000015 +1635721458409799680 Gaia DR2 2481320254643613440 2481320254643613440 892597871 2015.5 24.8952722907581006 0.134320687363032987 -3.26466742929460008 0.117855872765789002 1.3405863149994599 0.154213072410624014 8.69307799999999986 9.82281661827146912 0.305811337314210008 -11.2302304445702994 0.249660537964525003 0.214494849999999987 0.243121000000000004 -0.148609970000000008 0.126347719999999997 -0.164930450000000006 0.185412749999999987 0.108588069999999995 -0.018880787999999999 -0.0622360799999999992 0.34593560000000001 128 0 128 0 0.230720979999999992 125.975998 0 0 31 false 1.22311799999999993 1.4319579036852399 0.0365032746930454982 0.110322320000000001 15 10 0.29348249999999998 0 15 false 125 1175.89591408824003 2.46070956869820012 477.868988 18.0124439999999986 13 357.707099456578021 5.70889156851005986 62.6578900000000019 18.9675699999999985 14 1237.91819568924006 9.00576182887601995 137.458470000000005 17.030190000000001 1.3569443000000001 0 1.93737979999999999 0.955125800000000025 0.98225399999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.750106627077997 -63.505718783412199 21.8396992082772989 -12.6753242181582007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319498729485440 2481319498729485440 32066026 2015.5 24.9059334132796018 1.83951459850685994 -3.2638342014720898 0.89328273238217204 \N \N \N \N \N \N \N -0.403632250000000026 \N \N \N \N \N \N \N \N \N 78 0 78 0 2.2403795999999998 102.714996 1.10843775182318005 0.345639589429303007 3 false 0.0412160160000000012 \N \N -0.00398694630000000043 9 6 5.70489200000000007 0 10 false 79 103.909475669019002 1.30133262162045993 79.8485031 20.6467290000000006 6 42.7377459844121006 14.9803123351262997 2.8529274 21.2743590000000005 9 134.712617373954998 13.7862265071072994 9.77153700000000036 19.4383979999999994 1.70774000000000004 0 1.83596040000000005 0.627630229999999956 1.20833020000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.771022633647988 -63.5005317327409031 21.8501513779370988 -12.6784863009669007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270364303467648 2481270364303467648 1365581430 2015.5 24.9318863164822986 0.269672214009007982 -3.40608315781708981 0.197568247003197001 -0.0203225301483665986 0.29166330249410799 -0.0696780500000000053 3.67544155703757003 0.603927560880029968 -12.6691544022590001 0.381912530893181001 0.042746621999999998 0.204249249999999993 -0.299782570000000026 0.120646970000000006 -0.159268500000000007 0.14261277 0.0636610900000000035 0.103400469999999994 0.0461483859999999996 0.144875530000000002 167 0 167 0 3.37164000000000019 229.740997 0.821977585986550019 2.04663910293212004 31 false 0.267776669999999994 1.62252242415556003 0.0588363748853200988 -0.0232840630000000007 19 10 0.542557540000000005 0 19 false 166 499.246379865366976 1.61949005651648004 308.273987 18.9425799999999995 17 215.238407501989997 10.1982445663121997 21.105436000000001 19.519089000000001 17 434.014053645175977 11.4709563490840996 37.8359069999999988 18.1681610000000013 1.30046499999999998 0 1.3509274 0.576509500000000008 0.774417899999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.957305519431998 -63.6189639167627021 21.8208885895256017 -12.8202305538959997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270398663208576 2481270398663208576 456381082 2015.5 24.940565063212901 0.384872137954786975 -3.39632506451782001 0.297460934678889011 0.527378456744794 0.416802081559716986 1.26529699999999989 3.56364925339242999 0.872780781213195023 -2.81158704114458002 0.565995267972643989 0.0864997660000000057 0.179084379999999987 -0.319674669999999994 0.145982269999999997 -0.143824380000000002 0.183630529999999986 0.115465230000000002 0.123375170000000006 0.0195239279999999994 0.177385209999999988 160 0 159 1 1.12462839999999997 173.869003 0 0 31 false 0.134300520000000007 1.63238779433570991 0.0885156459278741981 -0.00685270400000000026 19 10 0.787247699999999995 0 19 false 161 264.395039023004017 1.4916049396865001 177.255005 19.6327320000000007 15 189.180901334113997 14.7811304277744995 12.7988119999999999 19.6591950000000004 14 159.759563520247013 8.02450619966480083 19.9089579999999984 19.2532519999999998 1.31976939999999998 0 0.405942919999999985 0.0264625549999999987 0.379480360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 150.965806387791986 -63.6064738438424015 21.8328450888128991 -12.8143693581878999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481270536102166144 2481270536102166144 1196085124 2015.5 24.9709437475927984 2.29253154783233004 -3.38098675515906022 1.24799446513970991 \N \N \N \N \N \N \N -0.559940499999999952 \N \N \N \N \N \N \N \N \N 67 0 67 0 -2.65097929999999993 36.4473991 0 0 3 false 0.0303648730000000006 \N \N -0.109546099999999993 8 6 6.27792800000000017 0 8 false 66 89.4429869807919005 1.00474580440437999 89.0205002 20.8094999999999999 7 68.2819868946976953 13.5478946698575999 5.04004429999999992 20.7656230000000015 7 68.6403091720096938 9.77105050816687992 7.02486470000000018 20.1704709999999992 1.53083320000000001 0 0.595151899999999956 -0.0438766479999999973 0.639028550000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.013245695134003 -63.5798323856929031 21.8675575340638986 -12.8113344818419002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271433750772352 2481271433750772352 948314090 2015.5 24.9341630275398991 3.53572935481115014 -3.34928421747128979 3.55710767243773995 \N \N \N \N \N \N \N 0.355642899999999984 \N \N \N \N \N \N \N \N \N 63 0 63 0 22.5710559999999987 795.078003 15.0823054535942003 67.2297720174012028 3 false 0.00403161100000000005 \N \N 0.285578600000000016 8 6 10.0056879999999992 0 9 true 72 132.204961950441003 1.96777813118948997 67.1848984 20.3852459999999986 7 193.781227574674006 11.7550170964833995 16.4849800000000002 19.633108 6 402.306206295656978 19.7847501840373994 20.3341560000000001 18.2505279999999992 4.50881299999999996 0 1.38257980000000003 -0.752138140000000011 2.13471799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.908491637363994 -63.5664285582584014 21.8445980929000996 -12.7683006762653992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271635613958528 2481271635613958528 1116791361 2015.5 24.9320630016986016 4.17292862093545036 -3.3453519705108401 2.5100336636420999 \N \N \N \N \N \N \N -0.459999979999999975 \N \N \N \N \N \N \N \N \N 79 0 79 0 33.1023830000000032 1643.66003 12.6678509616503003 124.230195261966003 3 false 0.00579784070000000009 \N \N -0.112385239999999997 11 7 10.9059930000000005 0 13 true 99 247.670836597402001 2.95201658367630015 83.8989029 19.703678 11 348.670159490633012 11.1876174542320008 31.1657200000000003 18.9953520000000005 11 769.31061005054903 20.038878453282301 38.390900000000002 17.5466650000000008 4.51397850000000034 0 1.44868660000000005 -0.708326340000000054 2.15701300000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.900520349420987 -63.563733264155303 21.8440921246059006 -12.7638718913306999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271742988417792 2481271742988417792 1003672529 2015.5 24.9628532836943009 0.0672508860460959979 -3.35423246595069013 0.0483428551844814966 0.682113720086107045 0.0692017570787812064 9.85688400000000087 9.9828008779685895 0.148623584232461997 -0.626597493917571025 0.103061007965410997 -0.0411339179999999985 0.190386699999999992 -0.389855620000000014 0.119829424000000004 -0.159266440000000009 0.121707190000000007 -0.194216849999999996 0.159266400000000002 0.061040709999999998 0.129211049999999994 149 0 148 1 1.91639289999999995 177.149002 0 0 31 true 5.57145699999999966 1.58017319684842006 0.0142797705981393998 -0.0465793129999999972 17 9 0.14199908 0 17 false 147 4874.05894916799025 4.19768848487024027 1161.13 16.4686400000000006 15 2259.16329888858991 15.5662911688074992 145.131760000000014 16.9665180000000007 15 3764.8598440125902 15.6306025738520997 240.86466999999999 15.8225479999999994 1.23593569999999997 0 1.1439705 0.49787903 0.646091459999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.971566267830013 -63.5589316234600972 21.8700079154923017 -12.7834900575573993 100001 4974.33008 4953.5 5041.83008 0.409000009 0.300000012 0.486999989 0.202000007 0.155300006 0.238999993 200111 0.912593100000000046 0.888322350000000038 0.920285699999999984 0.459397580000000028 0.360887400000000025 0.557907759999999975 +1635721458409799680 Gaia DR2 2481271742988417408 2481271742988417408 1092251955 2015.5 24.9660681526891999 0.0431147374036614031 -3.35135769190730004 0.0310816879471397002 0.557031702301789999 0.0437330132526072973 12.7370990000000006 -1.48696128864205002 0.0954603970773733046 -7.24224786006448973 0.0664183867251511018 -0.0548211600000000007 0.215715199999999996 -0.367245470000000018 0.105294639999999995 -0.118185650000000003 0.0901465040000000023 -0.165732230000000008 0.159692240000000013 0.0891737699999999994 0.0483508399999999991 140 0 140 0 0.851990200000000031 148.776993 0 0 31 true 15.7155930000000001 1.60884715765880992 0.0100441863579835006 -0.0599028649999999996 16 9 0.0961533900000000052 0 17 false 140 12864.4662528140998 7.18883087461145021 1789.51001 15.4148859999999992 14 6894.53656960085027 22.2128679006302008 310.384799999999984 15.7551249999999996 13 8699.41108260291003 24.9167382800633987 349.139250000000004 14.9131959999999992 1.21217219999999992 0 0.841929440000000029 0.340238570000000018 0.501690859999999961 \N \N 0 \N \N \N NOT_AVAILABLE 150.975404161368999 -63.5549764339681005 21.8741556258377017 -12.7820057961877005 100001 5785.5 5760 5815 0.455000013 0.296000004 0.598999977 0.224999994 0.150399998 0.294 200111 1.27330530000000008 1.2604188999999999 1.28460430000000003 1.63652789999999992 1.34813950000000005 1.92491630000000002 +1635721458409799680 Gaia DR2 2481271742988417280 2481271742988417280 842677542 2015.5 24.9675474525012007 0.0428350482533403007 -3.3509323976691201 0.0295035930695112004 1.06974215695786001 0.0423353445275677018 25.2683 11.0457185299848994 0.0993120478103777932 10.2741830214888008 0.0642716344835927988 -0.076879740000000002 0.114510009999999995 -0.453657120000000025 0.0981643650000000034 -0.152969300000000002 0.0734870999999999996 -0.225029699999999999 0.229283259999999989 0.109856720000000005 0.0360574459999999999 149 0 144 5 -1.66026399999999996 112.535004 0 0 31 true 17.5377539999999996 1.58872796497145008 0.00945702531821055944 -0.074921354999999995 17 9 0.101392609999999994 0 17 false 143 14249.3222025897994 7.99883490900737026 1781.42004 15.3038799999999995 15 7394.00068800774989 23.9833424042742998 308.297329999999988 15.6791900000000002 13 10006.7038325100002 35.7621848471332981 279.812439999999981 14.7611919999999994 1.22116019999999992 0 0.917997359999999984 0.375309940000000009 0.542687400000000042 \N \N 0 \N \N \N NOT_AVAILABLE 150.97801452553901 -63.5539713074453019 21.8757238515686012 -12.7821567091899997 100001 5439.37988 5377.7998 5641.0498 0.0874999985 0.0250000004 0.210299999 0.0377000012 0.00970000029 0.0860999972 200111 0.801073849999999976 0.744821199999999961 0.819525799999999971 0.506102500000000011 0.460891280000000014 0.551313759999999986 +1635721458409799680 Gaia DR2 2481271773055107840 2481271773055107840 802438498 2015.5 24.9677602112633998 1.94769168556405003 -3.34574097276126015 1.13717890915573006 \N \N \N \N \N \N \N -0.547463060000000001 \N \N \N \N \N \N \N \N \N 65 0 64 1 0.788849499999999981 67.260498 1.19570539903819006 0.310228462673858008 3 false 0.0402680300000000033 \N \N -0.0605250800000000019 8 6 4.9168390000000004 0 9 false 66 110.290366853758002 1.54977355275622997 71.1654968 20.5820219999999985 6 53.9409024344555021 12.5710116782029999 4.29089600000000004 21.0215929999999993 8 118.507635332486004 11.9053119885065009 9.95418199999999942 19.5775550000000003 1.56358660000000005 0 1.44403839999999994 0.439571380000000012 1.004467 \N \N 0 \N \N \N NOT_AVAILABLE 150.973562041435002 -63.5491688795815008 21.8778945655821992 -12.7774117571538994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481271773052756608 2481271773052756608 769119827 2015.5 24.9697798709729 0.431144884502226988 -3.34585983607477022 0.300430391501427974 0.673968114918522043 0.454605524451644982 1.48253389999999996 -0.451579274720932011 1.00204177150170004 -9.56996536038436929 0.559009150005960964 0.0245861580000000003 0.104336849999999995 -0.246766879999999994 0.135645550000000004 -0.133781729999999988 0.174133850000000007 0.118249060000000003 0.0489529299999999987 0.0470100400000000029 0.0922764400000000012 149 0 146 3 3.92938799999999988 216.925003 1.53577072469651998 3.82795877320325006 31 false 0.122759660000000007 1.51275371376843992 0.0935947557267066965 -0.0997736399999999968 17 9 0.890009399999999951 0 17 false 144 310.699966011875006 1.47260819747570992 210.985992 19.4575120000000013 14 138.786804657557013 9.34131159725606075 14.8573140000000006 19.9955180000000006 14 286.766132645311018 11.5359583732592004 24.8584579999999988 18.6181009999999993 1.36965880000000007 0 1.3774166000000001 0.538005799999999978 0.839410800000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.97778350362799 -63.548431724048001 21.8797703948686006 -12.7782677067734003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272013570930304 2481272013570930304 1086105403 2015.5 24.9384290802732984 0.297540995317630008 -3.32738757922489015 0.186957358975455012 0.993945204935763993 0.309416279780768022 3.21232369999999978 1.27693172037597003 0.573487738814656978 -13.6802979741838993 0.337627104858441995 -0.139883919999999995 0.393526819999999999 -0.340767260000000016 0.153740700000000008 -0.25613691999999999 0.19478527000000001 0.0645090400000000036 0.0749097100000000043 0.0667295900000000053 0.100838474999999997 149 0 145 4 3.87740760000000018 214.533005 0.826651477943625035 2.73589587430282011 31 false 0.341395769999999987 1.30797773115973004 0.0620417042705255981 -0.107476725999999995 17 9 0.520345700000000022 0 17 false 142 601.799290149671037 1.87305783908032009 321.291992 18.7397370000000016 14 182.43897217466801 7.80490510149332994 23.3749119999999984 19.698595000000001 15 660.842195479454972 8.41208010843132037 78.558716000000004 17.7116760000000006 1.40126649999999997 0 1.98691939999999989 0.958858499999999947 1.02806090000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.896619500696005 -63.5447571995139029 21.8569581175905014 -12.7495315174710999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272116650147328 2481272116650147328 409664424 2015.5 24.9455657884951982 0.417673581605268018 -3.31595360715870013 0.279965508870194002 -0.173004597847318004 0.436308536942642988 -0.396518949999999981 0.364842463777349024 0.881188211884344041 -3.40011732865030014 0.531337705023431028 -0.0684264700000000031 0.267476700000000012 -0.246551920000000008 0.143659010000000004 -0.219868900000000006 0.202826960000000001 0.0847296599999999983 0.0100941659999999999 0.0112121630000000007 0.124162529999999993 141 0 139 2 0.401118760000000019 139.987 0 0 31 false 0.151564300000000013 1.81893872379617005 0.0911591588682985066 -0.142440630000000013 16 9 0.7870838 0 16 false 139 275.859831440670973 1.11191867957387003 248.093994 19.5866450000000007 13 166.740016843646004 7.90045752555644043 21.1051080000000013 19.7962899999999991 12 181.705090105766004 5.3070980265901504 34.2381249999999966 19.1135030000000015 1.26312380000000002 0 0.682786939999999953 0.209644319999999995 0.473142620000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.900416656886989 -63.5313917820882992 21.8680800218618998 -12.7415426896998998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319159427363968 2481319159427363968 1592755359 2015.5 24.9319456998008988 0.0597116624958137013 -3.29492827306025982 0.0490870582679752004 4.61785240345495041 0.0672877368908631063 68.6284399999999977 -4.78920945775734008 0.133863192593830005 -13.3252071512072998 0.104118032947861996 0.164800000000000002 0.256788369999999988 -0.21684500000000001 0.0953555600000000059 -0.132369039999999993 0.135166559999999991 0.000246710349999999985 0.0335403459999999987 -0.0208703629999999994 0.292908200000000007 132 0 132 0 2.97367239999999988 179.690994 0.186767251056124989 2.01814511359884996 31 false 6.97703700000000016 1.3319436833709799 0.0163924722529407013 0.0947273450000000045 15 10 0.131151049999999991 0 15 false 132 7154.10954409149963 5.44174248011008999 1314.67004 16.0519770000000008 14 1485.16130761963996 11.1156607402675007 133.609800000000007 17.4219529999999985 13 8907.64961691043027 23.7613309591482995 374.880069999999989 14.8875119999999992 1.45270499999999991 0 2.53444100000000017 1.36997600000000008 1.16446500000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.853002944482 -63.5179695598040013 21.8630986002374001 -12.7169796078540998 100001 3478 3284.33008 3803.62012 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481272189665015040 2481272189665015040 1640339661 2015.5 24.9717401336992992 0.0434662634138556006 -3.30965743925424993 0.0322577376652833023 0.505164976818094025 0.0475032990523618984 10.6343139999999998 6.86370200606437031 0.0960025517181972016 -4.13734872466648973 0.0695744917562582943 0.0308596229999999992 0.2509189 -0.250076679999999996 0.0483278970000000016 -0.190523969999999987 0.0196216370000000008 -0.182881860000000007 0.0933572349999999967 0.106312989999999996 0.186932640000000011 165 0 163 2 -1.62629069999999998 130.231003 0 0 31 true 11.9569559999999999 1.62441122827861006 0.0105723109390382999 -0.0407574470000000022 19 10 0.0956356000000000012 0 19 false 160 9688.92221408684054 5.99564795677610984 1615.98999 15.7226769999999991 18 5228.96581973814045 13.6732401173366007 382.423299999999983 16.0553500000000007 18 6530.84994198941968 24.6909389420122984 264.503899999999987 15.2244960000000003 1.21373829999999994 0 0.830853460000000044 0.332672120000000016 0.498181339999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.947740747604996 -63.5147397940464984 21.8953587891657016 -12.7453541449068997 100001 5756 5607.95996 5912.75 0.326200008 0.142900005 0.485100001 0.163800001 0.0850000009 0.247999996 200111 1.23213829999999991 1.16767500000000002 1.29805159999999997 1.50140110000000004 1.18875609999999998 1.81404600000000005 +1635721458409799680 Gaia DR2 2481319258214110976 2481319258214110976 1692507467 2015.5 24.9377409607219001 0.695801510776348997 -3.28042731669569987 0.685979451259815964 1.59687600258072004 0.827057923574531006 1.93079099999999992 12.5748449553287003 1.76389738695431997 -3.86987271704425018 2.03878148370798984 0.271833270000000016 0.23210320000000001 -0.103203959999999997 0.0631547499999999956 -0.141366750000000013 0.109405009999999997 -0.0519769939999999986 -0.154209399999999996 -0.229563800000000012 0.550053000000000014 103 0 102 1 1.87442369999999991 124.730003 1.77066391935695 1.57408159986105001 31 false 0.0511684830000000007 1.48575067178993003 0.21889894819970801 0.198851820000000012 12 9 2.09221339999999989 0 12 false 100 122.587766313078006 1.14623396425256008 106.947998 20.4672470000000004 9 27.652433974224099 5.60013163166359984 4.93781849999999967 21.7470549999999996 9 160.500933598702005 8.07272738474594043 19.8818720000000013 19.2482259999999989 1.53484620000000005 0 2.49882900000000019 1.27980800000000006 1.21902080000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.851219788436993 -63.5023772625890004 21.874105945786301 -12.7056457222453005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481319189491719680 2481319189491719680 536544095 2015.5 24.9574603217883997 0.194886132017678987 -3.28335176429821018 0.152592493763827997 0.376723494063760989 0.218481087407110003 1.7242843000000001 6.79456368391106036 0.440839371470421015 -6.00393647708320977 0.301092794916843987 0.110857873999999995 0.223592559999999996 -0.214870800000000001 0.0961638540000000069 -0.17182175999999999 0.106946066000000006 0.0787139159999999949 0.0570416899999999991 0.0498190859999999985 0.19671667000000001 168 0 168 0 0.213592530000000003 166.210999 0 0 31 false 0.465585350000000009 1.66170104940906005 0.0490848495180249006 -0.0248349289999999986 19 10 0.397420969999999985 0 19 false 166 596.804772226332034 1.4772066531844199 404.009003 18.7487850000000016 16 335.275063583280996 7.94693793925562009 42.1892130000000023 19.0378860000000003 16 383.452821105330997 10.1021525173058002 37.957535 18.3026400000000002 1.20429309999999989 0 0.735244750000000002 0.289100650000000015 0.446144099999999988 \N \N 0 \N \N \N NOT_AVAILABLE 150.894045252062995 -63.4968111917822 21.8917491234405013 -12.7156416837808006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481413030232595584 2481413030232595584 953505182 2015.5 24.9635071946112994 0.0433983918089455994 -3.27126074530257016 0.0341777642917584987 0.373823309367971979 0.0496989853601495016 7.52174950000000031 0.455044177505754988 0.0924472106538736932 -5.4435507319094798 0.0730514873801449971 0.0583436499999999969 0.312668349999999984 -0.165249170000000001 0.0428213849999999965 -0.202912779999999987 0.00326781369999999986 -0.161077770000000009 0.0586696749999999975 0.111937750000000003 0.22459960000000001 176 0 174 2 1.50609419999999994 197.488007 0.0743937835844044049 0.387933839202186992 31 false 10.1222019999999997 1.61162601210299994 0.0107219768904691995 -0.00242230229999999998 20 10 0.0924777700000000008 0 20 false 174 8831.13216290248965 5.29292697154278979 1668.47998 15.8233250000000005 17 4896.74493058857024 13.5398787909168004 361.653529999999989 16.1266199999999991 16 5786.03658058832025 21.5718605774466994 268.221499999999992 15.3559675000000002 1.20967289999999994 0 0.770651799999999998 0.303294180000000024 0.467357640000000019 \N \N 0 \N \N \N NOT_AVAILABLE 150.895009312210988 -63.4833036849447012 21.9020815219682987 -12.706639003926 100001 6139.6001 5373.5498 6871.62988 \N \N \N \N \N \N 200111 1.3855712 1.10609040000000003 1.80878800000000006 2.45761679999999982 1.7390213000000001 3.17621229999999999 +1635721458409799680 Gaia DR2 2481393097289153152 2481393097289153152 1122370556 2015.5 25.7505720301657988 0.198506718732306991 -2.94373447675557021 0.118461681067265998 2.03883760120372015 0.195802814820267013 10.4127080000000003 5.4650878657416504 0.443298608401906991 -33.4233697670630008 0.234604444677278007 -0.138943779999999989 0.0913758399999999998 -0.219647150000000013 0.0911128799999999933 -0.289194820000000019 0.0904348049999999931 -0.120731909999999998 0.0466764939999999989 0.14094161999999999 0.0431698999999999972 132 0 132 0 -1.37460000000000004 105.737 0 8.91668328702847079e-16 31 false 0.836492699999999978 1.31293716852433007 0.0408367890811658016 -0.153672000000000003 15 9 0.394821880000000014 0 15 false 132 1071.40252377651996 2.11908477904893999 505.596985 18.1134829999999987 13 297.996313723059018 21.8799450121019987 13.6196099999999998 19.1658609999999996 14 1226.16717060504993 12.2330795892398996 100.233729999999994 17.0405459999999991 1.42258719999999994 0 2.12531470000000011 1.05237770000000008 1.07293700000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.160228821023992 -62.8517807757571987 22.7747220368733991 -12.6917357726389 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481392856770763264 2481392856770763264 4857236 2015.5 25.7881168297403001 0.216750531084805992 -2.94966604736214011 0.136790816093329992 0.535942031969104948 0.218474146849357009 2.45311430000000019 4.71388779477638042 0.54826992931568197 -0.201999262290153997 0.254871902374122994 0.0261131920000000003 -0.153847889999999987 -0.287647839999999988 0.0946788300000000055 -0.150625039999999988 0.137973829999999992 0.0384064199999999967 0.108864866000000005 0.134318660000000006 0.0169336609999999992 138 0 138 0 -0.357219459999999989 126.612 0 0 31 false 0.596896300000000046 1.44659268401200003 0.0447466138702959024 -0.098033389999999998 16 9 0.488855360000000017 0 16 false 136 840.779834747717018 1.96522452433150008 427.82901 18.3766600000000011 13 327.926565988594973 9.1997862975778002 35.6450200000000024 19.061947 14 777.237723209348019 9.56664889017280018 81.2445139999999952 17.5355360000000005 1.31445150000000011 0 1.52641099999999996 0.685287500000000049 0.841123599999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.239841576074014 -62.8407835512991966 22.8082399016972985 -12.7110213515402997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393135944143616 2481393135944143616 432205661 2015.5 25.7661144790691985 0.0339471394468449025 -2.931838860504 0.0258059045850133999 0.914669521492863957 0.0363187699653979984 25.1844840000000012 12.0267907155747 0.0797525912948227056 -22.6536920013800014 0.0580595913229483007 0.043220095 0.100129019999999999 -0.0806835139999999978 -0.0288525300000000012 -0.192082179999999991 -0.0764963099999999979 -0.347566339999999974 0.0128677840000000002 0.213505119999999993 0.155203029999999992 130 0 130 0 -2.28436949999999994 91.7048035 0 8.98773367955635009e-16 31 false 30.3488100000000003 1.62133345967301001 0.00855010057807266931 -0.0931842850000000056 15 9 0.0824018700000000021 0 15 false 130 24846.3847904602007 9.11560112167794045 2725.69995 14.7002079999999999 12 13909.5184206618997 37.4152727151790998 371.760440000000017 14.9931079999999994 14 16207.1901742023001 59.1038504947571965 274.215480000000014 14.2376509999999996 1.21211639999999998 0 0.755456899999999987 0.292900099999999997 0.462556840000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.179501367955993 -62.8343148257304023 22.7939987148128012 -12.6863712638727009 100001 6861.33008 5890.5 8447 0.0340000018 0.0170000009 0.0623999983 0.0179999992 0.0092000002 0.0357999988 200111 0.759056900000000034 0.500825500000000035 1.0298811000000001 1.15047600000000005 1.04428940000000003 1.25666260000000007 +1635721458409799680 Gaia DR2 2481392929785713664 2481392929785713664 796671296 2015.5 25.7823880681973989 3.22981164265116982 -2.93702366312753016 2.13689283896462978 \N \N \N \N \N \N \N 0.0100939510000000003 \N \N \N \N \N \N \N \N \N 114 0 113 1 37.1071999999999989 2081.57007 17.8745699979244996 124.879460725038001 3 false 0.002850324 \N \N -0.0779843600000000026 16 9 6.57223459999999982 0 16 false 134 187.047821884574006 2.87828118868567984 64.9859009 20.0084839999999993 10 304.22513022742902 29.8104902688343998 10.2053039999999999 19.1433999999999997 9 533.954659144147968 14.3195607554429998 37.2884799999999998 17.9431599999999989 4.48109900000000039 0 1.20024109999999995 -0.865083700000000011 2.06532479999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.216488340284997 -62.8319013414508021 22.8075429816402 -12.6971613425901992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393647044745984 2481393647044745984 1241799717 2015.5 25.8438418078749983 0.0803033767861097009 -2.94461336818724018 0.0541744138097487032 2.01607629977760006 0.0849969338373025018 23.7194000000000003 -12.3903220372315008 0.189233625675868988 -33.0665920441811991 0.101592582454434005 0.0113692570000000007 0.0348590280000000002 -0.237909910000000002 0.105678690000000006 0.0600478700000000032 0.129791319999999988 -0.0956643900000000019 0.0693383300000000036 0.120786199999999996 -0.00402407260000000027 118 0 118 0 0.968449099999999952 127.469002 0 0 31 true 5.18604660000000006 1.4143654717407701 0.0182075504569535994 -0.0794417399999999968 14 8 0.173877570000000009 0 14 false 117 4819.77659878432041 4.44807993718717043 1083.56006 16.4807990000000011 12 1608.30527481166996 12.0085171651136005 133.930370000000011 17.3354660000000003 14 4761.97043411417962 19.884351725618 239.483300000000014 15.5674530000000004 1.32169519999999996 0 1.76801300000000006 0.854667660000000051 0.913345340000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.344617779856009 -62.8119224810953014 22.8632096216067993 -12.7267501769134004 100001 3980 3865.25 4540.72998 0.2227 0 0.488999993 0.130500004 0 0.254599988 200111 0.591460940000000046 0.454403600000000019 0.627100300000000055 0.0790822649999999988 0.0721518250000000028 0.0860127059999999943 +1635721458409799680 Gaia DR2 2481394471678467456 2481394471678467456 516298055 2015.5 25.8094872007691016 0.174963972246795996 -2.91906742928953999 0.115767078903700998 0.534348412436527975 0.179860962651446993 2.97089720000000002 -1.27055275472614992 0.430956984314593006 -16.3436275386395984 0.202570560202350008 0.0357238579999999972 -0.0916303299999999959 -0.284855699999999989 0.144058140000000001 0.0158091399999999993 0.198444950000000009 0.0751161350000000005 0.123545760000000004 0.13624639999999999 0.0040845100000000004 113 0 111 2 1.03573019999999993 121.077003 0.0997808884857572936 0.0793919016706032959 31 false 1.09569310000000009 1.48786858463111993 0.0378518798211264981 -0.076874479999999995 13 8 0.386091000000000018 0 13 false 110 1328.07611246648003 2.78068329022759997 477.608002 17.8803079999999994 12 524.080183664895003 17.6653933538637986 29.6670550000000013 18.5528949999999995 10 1140.18726195511999 16.9325938395152988 67.3368399999999951 17.1194799999999994 1.25314159999999997 0 1.43341450000000004 0.672586440000000008 0.760827999999999949 \N \N 0 \N \N \N NOT_AVAILABLE 152.252656569278003 -62.8039391386613985 22.8401048625207999 -12.6903942693015992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394471678467200 2481394471678467200 1487205623 2015.5 25.817890352509 0.867637855296562011 -2.9238133817618599 0.349074097270582973 1.77643337438260995 0.722458224450502007 2.45887350000000016 -0.472300463012112981 2.43936293931102988 -11.7777816244245006 0.575372205386425972 -0.195652560000000003 -0.660958350000000028 -0.770736100000000035 0.269820959999999999 0.14730261 0.375927869999999997 0.133867999999999987 0.609646800000000044 -0.0859609499999999943 -0.176631100000000013 110 0 110 0 -0.787100699999999986 93.3840027 0 0 31 false 0.13158845999999999 1.21850776527973004 0.106933214638428004 -0.143717449999999997 13 7 2.27531619999999979 0 13 false 111 276.529032082047991 1.99723853748674007 138.455994 19.5840129999999988 9 103.370094979656002 32.8947993906794025 3.14244479999999982 20.3154010000000014 10 347.67600869836798 12.2789255154214008 28.3148559999999989 18.4089829999999992 1.63109850000000001 0 1.90641780000000005 0.731388099999999985 1.1750297999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.273710141522002 -62.8045455058709976 22.8463212165780014 -12.6978893715404997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481406501882359168 2481406501882359168 577716310 2015.5 25.7474684207128988 0.0394030581201509009 -2.89555353409810001 0.0252641860568499008 0.810103453419373953 0.0379369355017407997 21.3539500000000011 -2.85072590715688001 0.0908252769771390051 -20.3275067739632007 0.0549180282807738007 -0.121824219999999997 0.0114591320000000003 -0.264695000000000014 0.0842634139999999948 -0.1545464 0.0711095600000000022 -0.296972930000000024 0.0796247100000000013 0.137833060000000007 0.0204944950000000015 140 0 140 0 1.02322770000000007 151.798996 0 0 31 true 26.5894450000000013 1.61993167135432992 0.00928713838572971934 -0.157276899999999997 16 8 0.0926928800000000053 0 16 false 138 21933.4884665214995 8.46580272634441044 2590.83008 14.8355960000000007 14 12094.6992855198005 23.7419446138280001 509.423279999999977 15.1448999999999998 13 14442.4429027034003 24.8792048132834012 580.502560000000017 14.362819 1.20989159999999996 0 0.782081600000000043 0.309304240000000008 0.472777369999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.108238950871993 -62.8097398339196999 22.7899015842983985 -12.6457828093203997 100001 5877 5727.41992 6364 0.0604999997 0.0113000004 0.160400003 0.0405000001 0.00789999962 0.0816000029 200111 1.10511219999999999 0.942447999999999952 1.1635892000000001 1.31259349999999997 1.17096399999999989 1.45422289999999998 +1635721458409799680 Gaia DR2 2481406531946882944 2481406531946882944 1235113251 2015.5 25.7520947019325988 0.793849748241585051 -2.88796140219915998 0.506901395757424988 -0.843158889708350956 0.755331625997634037 -1.11627640000000006 3.14078219512752987 2.14177442145508001 0.180162129533588011 1.18004961120985996 -0.0103648390000000007 -0.356208699999999989 -0.39821455 0.131445900000000004 -0.098169720000000002 0.165880140000000009 -0.220901950000000014 0.16191897999999999 -0.0042047244000000001 0.0260110420000000016 112 0 110 2 0.982651229999999987 119.167 1.21326804760844009 0.725516318176687047 31 false 0.0590662139999999988 1.55240910449928005 0.193056076112868014 -0.128065800000000007 13 8 1.91192000000000006 0 13 false 111 179.036637594176995 2.22271645261091999 80.5485992 20.0560110000000016 5 93.6330500149533975 1.50012899905974995 62.4166639999999973 20.4228149999999999 10 139.294103416644987 11.6233066003171999 11.9840350000000004 19.4020879999999991 1.30100269999999996 0 1.02072720000000006 0.366804120000000011 0.653923029999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.110127991549007 -62.8008943181023014 22.7971629959417008 -12.6404175103465999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394677840028160 2481394677840028160 1185064890 2015.5 25.7566890294138986 1.12419147881358006 -2.91242778797237989 0.779409801338629027 -1.55887782002548003 1.14390156058508996 -1.36277270000000006 2.39211627594989995 3.48459255849998994 -0.97274667172404905 2.72580191953036 0.0822537539999999984 -0.506620599999999977 -0.201492969999999993 0.000447982780000000008 -0.199456770000000005 0.0291309319999999983 -0.46438790000000002 -0.0548903499999999975 0.0523510699999999995 0.0325918420000000028 93 0 92 1 0.140643939999999995 88.1940002 0 1.07732211571787006e-15 31 false 0.0362961399999999976 1.2952686888360001 0.264422892580058022 -0.122718060000000004 11 7 3.06402300000000016 0 11 false 92 121.135245830442003 1.33775805924912006 90.5509033 20.4801900000000003 7 40.6712588629166021 9.29829108968299067 4.37405729999999959 21.328168999999999 7 152.144550613322991 9.84887796476333044 15.4479070000000007 19.3062779999999989 1.5917399000000001 0 2.02189059999999987 0.847978600000000027 1.17391200000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.142446179665001 -62.8209340436448969 22.7923299933605001 -12.6648596993565992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394677837134464 2481394677837134464 1180622338 2015.5 25.7647089560293985 0.102046882778893996 -2.91093052416482978 0.0644500248838761058 1.06912498606447004 0.0972380286255044024 10.9949259999999995 15.0429089904035997 0.250880359377363027 -5.29488343244087023 0.132950984449285992 -0.0804352499999999998 -0.109943260000000001 -0.30481488000000001 0.0940867600000000054 -0.0972620299999999993 0.123510405000000004 -0.161135210000000001 0.106943090000000005 0.123843536000000004 -0.0240561219999999992 120 0 120 0 1.4749623999999999 138.095993 0.130703456325368006 0.395044602513557996 31 true 3.27660200000000001 1.52667042531255004 0.0234680388859150983 -0.144814240000000011 14 8 0.229544920000000013 0 14 false 118 3354.24096417810006 3.37866175976215999 992.771973 16.8743799999999986 13 1340.78216748245995 13.9268679182693997 96.2730559999999969 17.5329930000000012 13 2891.95369596130013 11.5130084104342991 251.190100000000001 16.108941999999999 1.26190570000000002 0 1.42405129999999991 0.65861320000000001 0.76543810000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.156808378566012 -62.8161017635202015 22.8005293851296003 -12.6664079709580992 100001 4710.5 4410.5 4899.83008 0.236000001 0.023 0.442699999 0.123000003 0.0198999997 0.231099993 200111 0.557888029999999979 0.515606499999999968 0.636363699999999977 0.138056490000000004 0.112173780000000001 0.163939200000000007 +1635721458409799680 Gaia DR2 2481394716492108032 2481394716492108032 1069255886 2015.5 25.7715672437285015 4.15131489116548025 -2.89757235898427012 2.49566063756206002 \N \N \N \N \N \N \N -0.208463919999999997 \N \N \N \N \N \N \N \N \N 71 0 71 0 34.6006739999999979 1789.79004 16.2576820484435984 135.311504499217989 3 false 0.00351827729999999988 \N \N -0.243494440000000006 12 8 8.87185500000000005 0 13 false 105 229.169794548034986 4.67425691346216965 49.0280991 19.7879709999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.157585602940998 -62.8010941055811998 22.8120859955775011 -12.6564975094928993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394609119750656 2481394609119750656 1273533581 2015.5 25.779894465050301 1.93143721359859 -2.91802951574975999 1.82352347747832999 \N \N \N \N \N \N \N 0.465021970000000007 \N \N \N \N \N \N \N \N \N 84 0 84 0 1.49482629999999994 98.5441971 2.79961925608950013 0.923663704363862026 3 false 0.0165729499999999995 \N \N -0.0459224130000000022 10 6 5.75669699999999995 0 10 false 86 86.2372936349154031 1.19334782850251009 72.2649994 20.8491290000000014 2 39.4421923903245002 40.5099916156450988 0.973641100000000037 21.3614859999999993 7 129.614921102165994 10.8018676590733005 11.9993069999999999 19.480281999999999 1.96037130000000004 0 1.8812046 0.512357700000000027 1.36884690000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.193458935091002 -62.8158904699906984 22.8123167948239001 -12.6785793736037 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394437318728960 2481394437318728960 599902119 2015.5 25.7974685418367997 0.686814862289716999 -2.91903019829616994 0.420306932933545985 -0.0359573806686087002 0.659652502746342018 -0.0545095800000000019 7.15191890565032029 1.82304038542322 -11.0628947729742997 0.869726784153263988 0.0245927610000000012 -0.377761569999999991 -0.449583440000000001 0.0808952899999999947 -0.116305779999999997 0.141309810000000008 -0.141286880000000004 0.251832959999999995 0.100106790000000001 0.0185035280000000017 120 0 120 0 -0.535006169999999948 106.441002 0 0 31 false 0.0758171700000000032 1.56517476031994995 0.135652404305301011 -0.136017410000000005 14 8 1.63825799999999999 0 14 false 120 206.827470179657013 1.6796712765394699 123.136002 19.8993450000000003 12 134.250771183051995 25.8705359124074015 5.18933100000000014 20.0315970000000014 13 145.114111311422988 7.13522323443983009 20.3377109999999988 19.3576450000000015 1.3507146000000001 0 0.673952100000000054 0.132251740000000007 0.541700359999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.228986766247999 -62.8091417475979981 22.8286742683166004 -12.6859535566161004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395231887693568 2481395231887693568 704718838 2015.5 25.7989997875561983 0.782438440092042997 -2.87602722607500016 0.462283769868629013 2.20943103437100019 0.764280619645836046 2.89086370000000015 12.3729167382654008 1.99565741552590992 -10.8066396715867992 0.798915334682380962 0.00546922200000000015 -0.271634819999999999 -0.412582579999999977 0.112667285000000006 -0.0716877600000000031 0.175486219999999998 0.116106293999999999 0.244725570000000003 0.163029570000000013 -0.0245717839999999993 120 0 120 0 5.77761649999999971 225.712997 2.36143449892372992 4.19238308563103956 31 false 0.0594977069999999969 1.25298725442734993 0.148834306225182011 -0.110312779999999999 14 8 1.79134440000000006 0 14 false 120 235.021679036014007 1.61146463505439996 145.843994 19.7605949999999986 10 60.5388769667828015 24.8608145318780984 2.43511249999999979 20.8963029999999996 12 309.872754107357025 9.08401972169355076 34.1118549999999985 18.5339619999999989 1.57607439999999999 0 2.3623409999999998 1.1357079000000001 1.22663309999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.191011833789986 -62.7697708268774974 22.8463108664638987 -12.6465137291736003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394883995331840 2481394883995331840 220015422 2015.5 25.8358179529495011 0.98886790704956995 -2.9064578643589698 1.00097709646133004 -1.52137444478726991 1.07923083306186007 -1.4096841 1.87546344042563007 2.63408386948196993 -2.10625857770960012 2.16831521745482991 0.132421790000000011 -0.229856900000000003 -0.445783529999999983 -0.0550388100000000005 0.259972329999999974 0.0173961390000000014 -0.649347400000000019 0.228554380000000001 -0.125189159999999994 0.125058799999999998 85 0 85 0 0.835854230000000031 90.3207016 1.4260094625961901 0.543139357067963013 31 false 0.0394680700000000009 1.53521756476109994 0.260610954799811001 -0.0219922180000000009 10 6 2.39648530000000015 0 10 false 84 145.007169354658004 1.72280144159523996 84.1694031 20.2848909999999982 7 140.262621987903003 40.9961226057313013 3.42136299999999993 19.9840340000000012 7 139.527345255227999 25.4215813180020014 5.48853900000000028 19.4002720000000011 1.92949060000000006 0 0.58376119999999998 -0.300857539999999979 0.884618759999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.292356127310995 -62.781112538428701 22.8699226841877987 -12.6883161756624006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394132376555904 2481394132376555904 1094580144 2015.5 25.8415622756553987 1.03125269049752011 -2.91106394965269999 0.613390389314972029 0.329026331310817988 1.03465171222746011 0.318006840000000013 -0.947580182331818954 2.70937316959998986 -16.3237382769023007 1.08297265975308998 -0.00755776229999999966 -0.267163629999999985 -0.411428499999999975 0.121098176000000002 0.0187023950000000001 0.181860949999999993 0.0997544749999999952 0.217023340000000009 0.137404069999999989 -0.061571202999999998 110 0 109 1 4.19029469999999993 175.947006 2.37286130925645988 2.56541917780644013 31 false 0.0368227029999999983 1.13532823595105992 0.201352374208686014 -0.09913719 13 8 2.42722600000000011 0 14 false 106 155.017403339877006 2.10354231809238001 73.6934967 20.212413999999999 6 41.4300941714221977 10.2260017038176994 4.05144600000000032 21.3080980000000011 8 200.264834373231992 14.1650091136338006 14.1379959999999993 19.0079080000000005 1.55914700000000006 0 2.30019000000000018 1.0956840000000001 1.20450590000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.308039111253009 -62.782748243226898 22.8736603470699009 -12.6947062062418006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481406841184540288 2481406841184540288 1518774859 2015.5 25.7570890446584002 0.443399187364059977 -2.86121225527213996 0.251825081126106021 1.4282488392783399 0.424956180017986018 3.36093200000000003 -13.2073538244121007 1.28808287899739993 -57.9340200204780018 0.533113612106824952 -0.109068949999999998 -0.29865170000000002 -0.207029729999999995 -0.00091122169999999995 -0.0623136050000000011 0.0264146120000000005 0.0771065499999999959 -0.00560961000000000012 0.190859959999999995 -0.259834999999999983 118 0 118 0 1.24022579999999993 131.947998 0.512730108581088029 0.397676046634790004 31 false 0.190385119999999991 1.03143777150004001 0.0952178415849238013 -0.20245711999999999 14 8 1.14171599999999995 0 14 false 117 370.770629069616007 1.65969703103014998 223.397003 19.2656020000000012 10 183.918256814851986 65.1001890407704025 2.82515699999999992 19.6898270000000011 11 544.337664066547973 12.0356100139338 45.2272600000000011 17.9222490000000008 1.96416830000000009 0 1.76757809999999993 0.424224849999999987 1.34335329999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.094546822045999 -62.774633494850903 22.8119820611395987 -12.6173677747447002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481406944263758080 2481406944263758080 1038615330 2015.5 25.7545579400355003 0.345337946715825017 -2.85210343774443986 0.138445048756174999 0.575865789240115 0.253944757761876028 2.26768139999999985 3.95436071213915019 0.952319075356195976 -10.788325050649 0.291323017258999006 -0.296148929999999977 -0.557298799999999983 -0.748938560000000031 0.280709099999999989 0.0945646299999999967 0.329988269999999972 -0.212344349999999987 0.515498340000000055 -0.0936419099999999949 -0.268466399999999994 121 0 119 2 0.895531359999999999 127.345001 0.245880444374872997 0.314302344666642974 31 false 0.708681499999999964 1.6421479007253299 0.0516487867569477982 -0.220563370000000009 14 7 0.889770150000000037 0 14 false 118 916.054916675512004 2.16278607070031992 423.553009 18.2835619999999999 11 504.261406849902016 10.8374092460654996 46.5296999999999983 18.5947500000000012 10 661.309534472787959 11.3106043595669004 58.4680979999999977 17.7109090000000009 1.27238110000000004 0 0.883840559999999997 0.31118773999999999 0.572652799999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.080926969529997 -62.7675252742075003 22.8129991790586999 -12.6079669272693007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481406944263758848 2481406944263758848 1125922669 2015.5 25.7578164841383987 1.9799539101902901 -2.8489795882259199 1.01841524008621009 \N \N \N \N \N \N \N -0.0973240499999999953 \N \N \N \N \N \N \N \N \N 91 0 91 0 1.3208584000000001 103.754997 0 0 3 false 0.0303584749999999993 \N \N -0.155886780000000003 11 6 5.32086199999999998 0 11 false 90 106.040826508498 1.38772334704582989 76.4134979 20.624683000000001 6 38.2627180907470006 12.0258612596738992 3.18170289999999989 21.3944499999999991 6 130.541643054420007 13.5860622120148999 9.60849800000000087 19.4725479999999997 1.59188079999999998 0 1.92190170000000005 0.769765849999999974 1.15213579999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.084370782451998 -62.7632983980039967 22.8172763730777994 -12.6062559541271 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481408078137176320 2481408078137176320 953930088 2015.5 25.7606216192055015 2.12026589024512013 -2.82749153108124984 1.1758065766980399 \N \N \N \N \N \N \N -0.288702669999999995 \N \N \N \N \N \N \N \N \N 82 0 82 0 1.59855100000000006 97.8058014 1.19912538191704998 0.264733436431686009 3 false 0.0261357819999999998 \N \N -0.11887897 10 7 5.57955169999999967 0 10 false 83 92.0067543568780053 1.20906054314667011 76.097702 20.7788159999999991 3 30.2934310041339998 24.0943109745617008 1.25728559999999989 21.6480180000000004 7 148.417489735284988 9.63804733281875947 15.3991240000000005 19.3332079999999991 1.94236739999999997 0 2.31480979999999992 0.869201659999999987 1.44560810000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.069515425652014 -62.7427234141691983 22.8280292549998016 -12.5872964970672001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407287860881792 2481407287860881792 1242781205 2015.5 25.7856011803405991 0.141276241028576999 -2.8399922065385601 0.0743034707114629961 0.449930227115260983 0.117710483600502 3.82234620000000014 26.4466499672242001 0.393640809372345024 -14.7227596992564003 0.125573146157226007 -0.343538300000000019 -0.481761459999999975 -0.811455200000000043 0.31623119999999999 0.407239699999999982 0.487202880000000005 -0.30805722000000002 0.659746300000000008 -0.133179600000000009 -0.248462319999999987 105 0 104 1 -0.560310500000000045 90.6929016 0 0 31 true 4.6648417000000002 1.64917132835007996 0.0239498480394049994 -0.0610653570000000007 12 8 0.379317970000000004 0 13 false 103 4341.28523914020025 5.15115021398518991 842.780029 16.5943199999999997 12 2490.50690263388015 23.4419740759465007 106.241349999999997 16.8606680000000004 13 2908.64882913578003 14.1207385465260007 205.984190000000012 16.1026920000000011 1.24367680000000003 0 0.757976529999999982 0.266347900000000026 0.49162865 \N \N 0 \N \N \N NOT_AVAILABLE 152.130439715850997 -62.743148666798902 22.8471079382959985 -12.6080820491950991 100001 6052.81006 5767.3999 6451.81006 0.0456999987 0.0142999999 0.167600006 0.0222999994 0.00789999962 0.070100002 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407287860884096 2481407287860884096 1082128817 2015.5 25.7829238309310007 1.47060222130221008 -2.83587005804622994 0.742709531606780993 \N \N \N \N \N \N \N -0.0974096200000000023 \N \N \N \N \N \N \N \N \N 111 0 110 1 -0.0584782599999999972 103.492996 0 0 3 false 0.0479592299999999985 \N \N -0.124922679999999994 13 7 4.04533770000000015 0 13 false 110 131.813319758965008 1.28252237046445994 102.777 20.3884679999999996 10 62.5437118439984019 23.3679316206638994 2.67647620000000019 20.8609299999999998 11 163.755976248268013 10.1761645171474004 16.0921120000000002 19.226427000000001 1.71681949999999994 0 1.63450239999999991 0.472461699999999984 1.16204069999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.121269571706989 -62.7405984986275982 22.8461093298726006 -12.6032661366369005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407287860875648 2481407287860875648 836268390 2015.5 25.7889944802405999 0.0878572165689572998 -2.84114372517313996 0.0466344775446118007 0.980547932881540962 0.0704692489816671069 13.9145509999999994 19.7124859505425007 0.22478337612263799 -4.11365181222454979 0.111009352511420994 -0.271761419999999976 -0.499493870000000006 -0.779076100000000049 0.36135092000000002 0.114273239999999998 0.421442419999999984 -0.254069199999999995 0.540618000000000043 -0.31218410000000002 -0.110393285999999993 101 101 99 2 2.09268119999999991 124.903999 0 0 31 true 419.056600000000003 1.50973861265039 0.0166965285122920998 -0.0116928789999999998 12 8 0.135296759999999988 0 12 false 94 498701.330609182012 351.930015402560002 1417.05005 11.4437650000000009 11 218955.878344650002 292.916044184134023 747.503900000000044 12.0004969999999993 10 395855.250619989994 225.984456653470005 1751.69239999999991 10.7680790000000002 1.2328243000000001 0 1.23241810000000007 0.55673220000000001 0.67568589999999995 15.2015870461858 0.562210783606894027 4 4750 3.5 -0.25 NOT_AVAILABLE 152.138196992143008 -62.7427122201340026 22.8499054010752012 -12.6103970746148999 100001 4823.22998 4759.68994 4973.5 \N \N \N \N \N \N 200111 6.95889299999999977 6.54474740000000033 7.14594169999999984 23.6117479999999986 21.4528269999999992 25.7706680000000006 +1635721458409799680 Gaia DR2 2481407287860881920 2481407287860881920 619054569 2015.5 25.7904541561117 0.635298916975650996 -2.83626874187703981 0.485983560487953992 0.916278576641957998 0.664874919501654005 1.37812169999999989 -0.535518699823062994 1.68903638169945003 -5.31008839146146983 0.904222206685550978 0.212005479999999996 -0.148004489999999989 -0.400349169999999976 0.123632240000000004 -0.19654453999999999 0.111705810000000003 0.184923699999999996 0.223002050000000007 0.0604740399999999997 0.157361919999999988 121 0 120 1 1.9615241000000001 146.602005 1.29708469436891005 1.06353149898254995 31 false 0.0691717399999999955 1.43592266903923993 0.175482673569938991 -0.0258638799999999988 14 9 1.51611359999999995 0 14 false 119 185.071336694657987 1.27730044493923001 144.893005 20.0200180000000003 10 77.4430536785811938 10.0085729857618997 7.73767199999999988 20.6289310000000015 12 214.393824695386002 10.7373692485818992 19.9670720000000017 18.9338900000000017 1.57688859999999997 0 1.69504169999999998 0.608913400000000049 1.0861282000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.136435616586994 -62.7376882739592006 22.853128431414099 -12.6063973323048995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395261954808448 2481395261954808448 1026138510 2015.5 25.8220709327815001 1.13506427682037003 -2.85898692575446001 1.14868224169121991 \N \N \N \N \N \N \N 0.628152200000000049 \N \N \N \N \N \N \N \N \N 107 0 105 2 -0.0188003300000000005 99.0703964 0 0 3 false 0.0387317699999999987 \N \N -0.00226329919999999993 12 7 4.17391199999999962 0 12 false 102 109.961650056421007 1.51425606331966001 72.6175995 20.5852620000000002 9 71.4165905374266998 20.8178658293109997 3.43054339999999991 20.7168899999999994 11 135.528033398751006 11.4858971830465997 11.7995169999999998 19.4318470000000012 1.8819709 0 1.2850436999999999 0.131628040000000002 1.15341570000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.220098354205987 -62.7443929901330009 22.8746870104302005 -12.6391187701462009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395399391405824 2481395399391405824 63943122 2015.5 25.8385910444971998 0.876462141704482001 -2.8523970090801698 0.565506160876911967 -0.736554480881656981 0.907233951211562029 -0.811868299999999987 -1.84454292155435007 2.34172119220326991 1.19328584198197007 0.978988582181754996 0.13475585000000001 -0.197075200000000006 -0.540363700000000002 0.111480190000000007 -0.0595164079999999998 0.0849777899999999975 0.140085619999999994 0.386961400000000011 0.167275000000000007 0.0573517269999999982 132 0 132 0 3.76073119999999994 195.968002 2.43034177586757005 2.41787645286543995 31 false 0.0407074019999999967 1.56009023485614007 0.181176096792925012 -0.0475067159999999974 15 9 2.12887000000000004 0 15 false 132 157.165242025350011 2.13607575899697988 73.5765991 20.1974739999999997 11 96.4713229299858028 9.61365269655816945 10.0348249999999997 20.3903919999999985 11 132.485626824484001 12.6741743453541993 10.4531960000000002 19.4564969999999988 1.4567912999999999 0 0.933895099999999978 0.192918780000000012 0.740976329999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.246238989482009 -62.7312672212411968 22.8928949948314013 -12.6390426262403999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407189077142400 2481407189077142400 510946696 2015.5 25.8064862063105984 2.84692931074010014 -2.82805933830973011 1.91315604362415992 \N \N \N \N \N \N \N 0.0329799100000000012 \N \N \N \N \N \N \N \N \N 115 0 115 0 24.9167670000000001 1044.98999 14.3664753934473008 53.3177599167033023 3 false 0.00411512100000000023 \N \N -0.0645390750000000013 14 9 6.64885799999999971 0 14 false 123 138.325749245932002 1.90362898655919 72.6641998 20.3361069999999984 13 164.217148469475006 11.4417052875813994 14.3525069999999992 19.8128409999999988 14 363.653165263966002 9.12082815686298964 39.8706299999999985 18.360199999999999 3.81613919999999984 0 1.4526405 -0.523265839999999982 1.97590639999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.160111969427987 -62.7233315486636016 22.8714786899864997 -12.6046368937553002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407425299829632 2481407425299829632 822643839 2015.5 25.8095953774381996 1.12443176801824007 -2.81926711751972991 1.05631055737887003 -0.398182685207543019 1.13073938572059007 -0.352143649999999975 0.33926961696569502 3.4522660588711398 -2.38639397697046984 3.26935400394178011 0.43475068 -0.355714980000000014 -0.457172269999999992 -0.25383465999999999 -0.273033199999999976 -0.244266199999999989 -0.40891559999999999 0.242449179999999986 0.215697660000000013 0.445924969999999976 102 0 100 2 -1.53574250000000001 74.7947998 0 0 31 false 0.0250942759999999987 1.74277161407996006 0.321017554192327026 -0.00139926890000000004 12 8 3.61204800000000015 0 12 false 104 87.5538362314960068 1.77972370327418994 49.1952019 20.8326780000000014 7 88.4947283187737952 10.2277741809361 8.652393 20.4840949999999999 6 72.1811081122749982 1.39203854127581006 51.8528099999999981 20.1158619999999999 1.83516609999999991 0 0.368232730000000008 -0.348583220000000027 0.71681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.15786636834099 -62.7140640145452011 22.8777446192793015 -12.5975974745960997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481408181214208000 2481408181214208000 425659494 2015.5 25.7476155688609012 0.693819585062072974 -2.8136107732119302 0.27041239165213099 1.22735535396137996 0.526452105475050947 2.33137129999999981 -11.5464020574976001 1.93140334959176996 -15.2263506529231005 0.495981003211089011 -0.236738649999999995 -0.582066500000000042 -0.831307200000000024 0.300090970000000012 0.0891463799999999973 0.326322849999999998 0.0286590939999999995 0.642952799999999991 -0.126581200000000005 -0.22862977000000001 142 0 142 0 2.13479779999999986 174.677002 0.895537767749394975 1.27874022131712994 31 false 0.163906439999999987 1.14200808613622007 0.0968562538896911018 -0.148005899999999996 16 8 1.8151181999999999 0 16 false 142 338.613268163649025 1.60814616936822996 210.561005 19.3641049999999986 14 84.6835310464614963 8.40280586010613995 10.0780069999999995 20.5318900000000006 13 426.314996849530019 7.97254767755852001 53.4728700000000003 18.1875929999999997 1.50909190000000004 0 2.34429739999999986 1.16778559999999998 1.17651180000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.030819331772989 -62.735848089452503 22.8208692217875004 -12.5696163252116992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481408181214212608 2481408181214212608 1536092457 2015.5 25.7546724019223987 0.0521706577998903992 -2.80407036741075011 0.0325047912622195984 0.898555033862338037 0.0480358113296465994 18.7059399999999982 -21.4487320896892015 0.130395165036866989 -46.1013977185106967 0.0735592438891454065 -0.0659479000000000037 -0.0482604800000000014 -0.522770760000000001 0.0736135239999999996 -0.158395499999999995 0.066887065999999995 -0.297802479999999981 0.266719759999999972 0.107207510000000006 0.0561328379999999974 140 0 140 0 -0.613346460000000038 124.538002 0 0 31 false 14.2121670000000009 1.56507632708524991 0.0124632300256956995 -0.103446714999999995 16 9 0.130780859999999999 0 16 false 140 11508.7771999499 7.03682323864360004 1635.51001 15.5357920000000007 14 5595.25323538358043 12.8771945892559003 434.508699999999976 15.9818390000000008 16 8608.94966711824054 21.489608407136501 400.609899999999982 14.9245439999999991 1.23420609999999997 0 1.05729479999999998 0.446046830000000005 0.611248000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.035659198562001 -62.7241955735643018 22.8311743985734985 -12.5633291096059008 100001 5086.75977 4998.85986 5528.97021 0.444299996 0.154200003 0.578999996 0.219500005 0.0883999988 0.287999988 200111 1.00620989999999999 0.851691899999999946 1.04190730000000009 0.610712400000000044 0.538539050000000019 0.682885769999999948 +1635721458409799680 Gaia DR2 2481407459659568384 2481407459659568384 556889478 2015.5 25.7805166102986014 0.640250053963474008 -2.81331372683940995 0.475103574880390012 0.950424148479185993 0.656744369661358962 1.44717509999999994 1.75217266208279998 1.73267741671847997 -6.90055070362721956 1.12974672833295009 0.155829090000000003 -0.138162869999999993 -0.456697299999999973 -0.0496226440000000005 -0.208935139999999991 -0.0629071739999999963 -0.277314339999999993 0.251513600000000004 0.143822699999999998 0.207465430000000006 133 0 131 2 2.84248779999999979 175.889999 1.78577542259405009 1.93425515195469 31 false 0.0632145399999999996 1.38189539155601993 0.174989681362110988 -0.097004900000000005 15 9 1.5774303999999999 0 15 false 131 194.860457535157991 1.36757724640808997 142.485992 19.9640559999999994 11 79.9988777566575067 20.1443678410696982 3.97127769999999991 20.5936780000000006 11 219.549518574214005 10.8114477451376008 20.3071349999999988 18.9080890000000004 1.5372456000000001 0 1.68558880000000011 0.629621499999999945 1.05596730000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.095157011312011 -62.7213259253105022 22.8523001095865013 -12.5814014489270001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407494019307136 2481407494019307136 422879331 2015.5 25.7922740094879011 1.2758236109215999 -2.80651323734186997 1.26332005824236004 \N \N \N \N \N \N \N 0.632022900000000054 \N \N \N \N \N \N \N \N \N 114 0 114 0 1.64115689999999992 134.304001 1.63610478063126008 0.629024623916827008 3 false 0.0311503080000000016 \N \N -0.0351927579999999976 13 7 4.75786399999999965 0 13 false 114 108.916896963769005 1.23855211953160005 87.9389038 20.5956270000000004 11 85.4405619371193978 17.4451147520948986 4.89767840000000021 20.5222279999999984 11 58.6061638666794025 9.21951703836658076 6.3567499999999999 20.3420619999999985 1.32253789999999993 0 0.180166240000000005 -0.0733985899999999997 0.253564830000000019 \N \N 0 \N \N \N NOT_AVAILABLE 152.111788967459006 -62.7100999432107997 22.8660497811538015 -12.5793849481608007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481407429595303680 2481407429595303680 1184614040 2015.5 25.8085845552508992 0.0339148379637145003 -2.81361049982819988 0.0220344763491606005 0.990585982584610947 0.0316603493245267986 31.2879049999999985 0.435044207513268999 0.0840292171178051994 -5.72001339376346962 0.0479220157852870976 -0.0188346300000000015 -0.0431451699999999966 -0.544201139999999972 0.0534180000000000002 -0.120855459999999998 0.0459216350000000023 -0.347083839999999977 0.320498439999999996 0.156742190000000003 0.0925708900000000029 141 0 140 1 0.124930929999999996 136.391006 0 0 31 true 53.5156750000000017 1.61288105964977002 0.00761412560636220981 -0.0859463300000000013 16 9 0.0918168699999999949 0 16 false 141 42828.7433105442979 15.0165191679774992 2852.11011 14.1090280000000003 15 23440.8168294657989 31.6580285380128998 740.438300000000027 14.4264559999999999 15 28309.8589539273016 31.6522846298434999 894.401730000000043 13.6320750000000004 1.20831639999999996 0 0.794381140000000041 0.317428600000000005 0.476952549999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.150516249550009 -62.7094098627297996 22.8789090301196012 -12.5919649588749003 100001 6142.00977 5834 6699.02979 0.227300003 0.0170000009 0.349999994 0.115999997 0.00490000006 0.173999995 200111 1.15055850000000004 0.967177599999999971 1.27525449999999996 1.69728229999999991 1.56733100000000003 1.82723370000000007 +1635721458409799680 Gaia DR2 2481393406528963200 2481393406528963200 933243650 2015.5 25.8738813387044999 1.06234023309772008 -2.94962739136335017 0.682740253072395054 4.30124042748648971 1.08880553573001992 3.95042099999999996 1.84892685139823998 2.80893534533712996 10.2127546094489006 1.18838347692068003 0.138482259999999996 -0.383878139999999979 -0.304595859999999996 0.195450380000000007 -0.196386100000000008 0.267504069999999983 0.225945260000000009 0.0988150299999999981 -0.0218911060000000005 0.0650113300000000061 102 0 100 2 2.64044999999999996 135.395996 2.31921386861389989 1.64396998951992002 31 false 0.0383079699999999967 1.05350202798862003 0.201938705541321012 -0.0310468500000000008 12 8 2.49448939999999997 0 12 false 100 148.907962365787 1.49758017151240996 99.4324036 20.2560709999999986 6 101.264907080420002 27.5166591599957009 3.68013099999999982 20.3377400000000002 9 207.248618948765994 10.4378563026942004 19.8554759999999995 18.9706919999999997 2.07184029999999986 0 1.36704829999999999 0.0816688539999999991 1.28537940000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.408437727901998 -62.8032874070419993 22.8899337081943983 -12.7424235519359996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393479541527168 2481393479541527168 272454460 2015.5 25.8531222179436995 0.0325024427822684994 -2.93893534752398988 0.0248833172276466986 0.348485957641717026 0.0362519143117839976 9.6128979999999995 10.6451748882139992 0.0771875710961249933 -5.95385936000587979 0.0557829325619922031 0.0865712899999999952 0.0346639119999999981 -0.0566545239999999978 0.16201198 -0.149991650000000004 0.17234851000000001 -0.143164170000000007 -0.134213780000000005 -0.0981309800000000065 0.282284980000000019 108 0 108 0 -2.69952900000000007 68.401001 0 0 31 false 70.903655999999998 1.57056826537297001 0.00847992681939624057 -0.0512907599999999977 13 8 0.0817049900000000051 0 13 false 108 56802.6155135465015 148.422382931408009 382.709015 13.8024439999999995 8 27418.0241427414985 99.6680893932390006 275.093299999999999 14.2562979999999992 11 41918.5658870897023 302.422466189019985 138.60929999999999 13.2059040000000003 1.22065840000000003 0 1.05039400000000005 0.453853600000000024 0.59654045 \N \N 0 \N \N \N NOT_AVAILABLE 152.357413859096994 -62.8027603510634975 22.8741844927358002 -12.7248697220057991 100001 5045.10986 4959.37988 5093.64014 2.2427001 1.88800001 2.66109991 1.14649999 0.949899971 1.35099995 200111 5.88357500000000044 5.77200369999999996 6.08875299999999964 20.2050969999999985 15.3172320000000006 25.092962 +1635721458409799680 Gaia DR2 2481393681404484608 2481393681404484608 1367227788 2015.5 25.8548992857855993 0.725214409050575992 -2.92804551892395004 0.437757934099166024 0.615217241697725958 0.724243022865004971 0.84946244999999998 18.2207893809095012 1.8916287829981 -53.558003864368203 0.758833330278439022 -0.000933843660000000029 -0.242256080000000013 -0.369883030000000002 0.142021800000000004 -0.0127388559999999998 0.202362340000000002 0.155662999999999996 0.172098799999999996 0.122365340000000003 -0.0590547500000000031 120 0 119 1 2.46771399999999996 154.649994 1.87597259394520011 2.70044531236113006 31 false 0.0674791400000000069 1.27923897445016999 0.136333284877486999 -0.0991235500000000047 14 8 1.68884419999999991 0 14 false 118 228.705786979105 1.4227400345138399 160.75 19.7901729999999993 11 122.333686361412006 28.0246772819008001 4.36521299999999979 20.1325229999999991 9 239.41446048444999 14.0244426161847002 17.0712280000000014 18.8140450000000001 1.58171829999999991 0 1.31847760000000003 0.342349999999999988 0.976127599999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.35047590263801 -62.7921925207715006 22.8799737285773013 -12.7153909172205992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393754418944768 2481393754418944768 407813013 2015.5 25.8490293338288986 0.775302157349292975 -2.91909105474343988 0.479155129856683015 0.852757784941038044 0.866846187313596972 0.983747539999999976 3.43060482989214988 2.01776283805960999 0.794165902286105951 0.784113341913185047 0.138404179999999988 -0.380756299999999992 -0.403841200000000011 0.0810812900000000003 -0.033574345999999998 0.143623279999999992 0.204920960000000013 0.26937738 0.203699319999999989 0.0165440739999999989 107 0 106 1 3.36305999999999994 155.843002 1.56159576557425006 1.66209762156701002 31 false 0.0682116400000000039 1.45458427728461004 0.145846287311720002 -0.020954707999999999 13 7 1.81105209999999994 0 13 false 106 219.495927845431993 2.59454117173026022 84.5990982 19.8347990000000003 11 174.463607413028001 22.0667470482034993 7.90617699999999957 19.7471260000000015 12 149.759821469715007 7.99398340505125038 18.7340680000000006 19.3234309999999994 1.47712730000000003 0 0.423694599999999977 -0.0876731899999999981 0.511367800000000039 \N \N 0 \N \N \N NOT_AVAILABLE 152.330378911474014 -62.7867061128807009 22.8777518877886017 -12.7049099093637992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393681404482048 2481393681404482048 121380194 2015.5 25.8508513544663998 0.0348661085052787006 -2.92131887056677986 0.0301079263973411983 1.90511466514106997 0.0407797474002440999 46.717179999999999 -6.11298997038587988 0.0798128207300945053 -9.6071799257355206 0.0645064282742402045 0.136037249999999998 0.0186972640000000016 -0.262319919999999984 -0.107400640000000006 -0.273204899999999973 -0.201973600000000003 -0.589474900000000024 0.234780039999999995 0.379862670000000013 0.284372699999999978 113 17 113 0 3.85543250000000004 174.231995 0.0646356458181139015 0.871989415642645982 31 false 87.9593100000000021 1.62268489572058994 0.00805270741192140073 -0.0526258299999999984 13 7 0.079002509999999998 0 13 false 111 117236.226120760999 66.4116295248407056 1765.30005 13.0157109999999996 13 65963.0445249397017 149.75131164891701 440.483920000000012 13.3031369999999995 13 74932.9558747732954 133.677637441651001 560.54970000000003 12.5752380000000006 1.20181289999999996 0 0.727898599999999951 0.287426000000000015 0.440472599999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.336088389855007 -62.7879133523728967 22.8786490439085988 -12.7076500475633996 100001 6529.5 6129 7023.85986 0.0258000009 0.00289999996 0.103600003 0.0130000003 0.00190000003 0.0640999973 200111 0.873468400000000034 0.754840799999999978 0.991351800000000005 1.24942099999999989 1.19395359999999995 1.30488840000000006 +1635721458409799680 Gaia DR2 2481393784484079232 2481393784484079232 1497865653 2015.5 25.8847032512167985 1.29646584250664998 -2.93610488302361006 1.09600172231247006 -0.419859797120392009 1.39694624726507 -0.300555440000000007 -2.7288940712904699 4.20389072261494956 -4.77547565243374006 3.39154590110788012 0.243097320000000006 -0.569593970000000005 -0.20132309000000001 -0.171295140000000012 -0.0601723119999999986 0.00980626599999999925 -0.460392650000000014 -0.0565482529999999997 0.207956630000000003 -0.0517875370000000015 64 0 63 1 -0.210968789999999989 55.1105003 0 0 31 false 0.0345284270000000004 1.33400779508671996 0.359838470885264994 -0.0157436339999999994 8 7 3.70008200000000009 0 9 false 62 109.228109987495998 2.00160869963475019 54.5702019 20.59253 5 89.3245411606532969 16.5716341144087984 5.39020730000000015 20.4739600000000017 6 70.0118884137775979 10.9924640814216996 6.36908049999999992 20.1489900000000013 1.45874930000000003 0 0.324970250000000016 -0.118568419999999994 0.443538670000000024 \N \N 0 \N \N \N NOT_AVAILABLE 152.416710802199987 -62.7863948706689996 22.9053280758015987 -12.7338096900653994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393784484077440 2481393784484077440 1163028886 2015.5 25.8802920890469004 0.501039378942465974 -2.93305850278974001 0.322515954267358018 0.538684837174530973 0.515347160340652977 1.04528529999999997 -0.633602974946819053 1.26933464391650008 -2.33446161127959018 0.589310291194463987 0.0549260800000000021 -0.211832579999999993 -0.272612750000000015 0.15625478000000001 -0.157849430000000013 0.224588380000000004 0.106593005000000005 0.0624291520000000016 0.0302061360000000015 0.0549485349999999997 100 0 100 0 2.79605909999999991 138.130997 0.907504816677803028 1.09218663518215009 31 false 0.154181700000000005 1.78661653547706001 0.112362598755176998 -0.0615013800000000013 12 8 1.12597140000000007 0 12 false 94 344.972934039391021 1.60071033870152002 215.511993 19.343903000000001 9 191.989434123834997 22.2037598056713996 8.6467085000000008 19.6431940000000012 9 264.339544008333007 10.9737665953652002 24.0883140000000004 18.7065139999999985 1.32279649999999993 0 0.936679840000000041 0.299291599999999991 0.63738819999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.40513208373801 -62.7855890008464996 22.9022725045090993 -12.7293594390713007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393887565304832 2481393887565304832 257955072 2015.5 25.8864930779215996 1.1147499787495101 -2.91984273704836017 0.810766837966550025 4.01879242059461994 1.1332601346700899 3.5462224 -4.9022841609018597 3.09453156502262994 -13.2286272803999996 1.6906359389049499 0.154672709999999991 -0.417935700000000021 -0.294425070000000011 0.156443059999999995 -0.0767272600000000055 0.225760600000000006 -0.0340112200000000017 0.109400810000000001 -0.0379389499999999991 0.113802410000000007 84 0 80 4 -0.563250099999999976 67.6865005 1.16308766220454007 0.389479521783722027 31 false 0.0359022099999999969 1.18030255857434008 0.283462101028696012 0.0072716320000000001 10 8 2.74729730000000005 0 10 false 82 129.311364102416007 1.55003379992048007 83.4248962 20.4092729999999989 5 72.3907659874245013 11.9011174331149991 6.08268640000000005 20.7021799999999985 9 185.894061280073004 12.8705297455873993 14.4433889999999998 19.0887570000000011 1.99738689999999997 0 1.61342429999999992 0.292907699999999993 1.32051659999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.404632196442009 -62.7709959815329981 22.9131493315877997 -12.7193373287814993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481390833841673088 2481390833841673088 1325193102 2015.5 25.8979064366028986 0.0613349857206750004 -2.94778095082995018 0.0436987906662740996 0.827740697161660988 0.0658916129636112069 12.5621559999999999 -0.872722162762520015 0.149499284379943004 -3.7411403749810801 0.0888398587352003943 0.0667369700000000066 -0.0604675750000000026 -0.140639590000000009 0.15661462000000001 -0.140070100000000003 0.203038400000000008 -0.0371329499999999979 -0.0559981900000000032 -0.0258711190000000014 0.152634720000000002 112 0 111 1 -0.107140324999999995 103.789001 0 0 31 true 9.99186199999999936 1.54519446294269991 0.0144960351957874999 -0.0529443399999999995 13 8 0.140528559999999997 0 13 false 110 8592.11379672447947 8.65500441741149018 992.734009 15.853116 10 4217.04440028343015 8.20517503846052954 513.949340000000007 16.2888680000000008 11 6259.96386562342013 24.0503349880790012 260.285919999999976 15.2704909999999998 1.21937490000000004 0 1.01837730000000004 0.43575191000000002 0.58262539999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.453827382565009 -62.7910994725497034 22.9135121391060999 -12.7495092041706002 100001 5147.83984 5072.20996 5264.43994 0.189999998 0.0775000006 0.25999999 0.0922999978 0.0318999998 0.125400007 200111 0.916372839999999966 0.876230900000000035 0.943905400000000006 0.531300899999999965 0.441474829999999985 0.621126999999999985 +1635721458409799680 Gaia DR2 2481390795186835200 2481390795186835200 1157391811 2015.5 25.919578800800199 0.0460766289194272025 -2.94356735931143021 0.0360989499670850977 3.09112195649155996 0.0516442947221563003 59.8540840000000003 17.8524587511325983 0.108533102290890998 -11.5414386964938007 0.0816952842874497931 0.102610073999999996 0.066710400000000003 -0.0658007300000000017 0.109225390000000006 -0.138258379999999986 0.0996070059999999979 -0.219030649999999993 -0.0928503499999999982 -0.0444033149999999988 0.28516459999999999 116 116 115 1 1.76468620000000009 137.529999 0 1.33684475881580005e-15 31 true 319.472350000000006 1.59341572836741996 0.0125373189376632999 -0.0357254600000000005 14 9 0.0676170999999999994 0 14 false 114 235686.019429005013 94.8980532968146946 2483.57007 12.2575310000000002 12 124841.613021388999 181.089860244967014 689.3904 12.6104900000000004 12 158145.361703203991 207.926477600972987 760.583070000000021 11.7642779999999991 1.20069479999999995 0 0.846211429999999987 0.352958680000000025 0.493252750000000018 6.1271311983986303 0.792270711232426983 4 5500 4.5 0 NOT_AVAILABLE 152.492291404575013 -62.7778044244282967 22.9357408886342 -12.7535292575647006 100001 5643.7998 5429.06982 5890.7002 0.0850000009 0.0173000004 0.210600004 0.0443000011 0.00789999962 0.104999997 200111 1.0371509000000001 0.952031249999999996 1.12081380000000008 0.983252299999999968 0.960859499999999978 1.0056449999999999 +1635721458409799680 Gaia DR2 2481393818843817728 2481393818843817728 438331461 2015.5 25.8939574746568013 1.51111034628354002 -2.92200958834482005 1.14571650184532992 \N \N \N \N \N \N \N 0.185822280000000006 \N \N \N \N \N \N \N \N \N 58 0 58 0 -0.300572070000000025 49.3269997 0 0 3 false 0.0293855129999999985 \N \N -0.0830330700000000005 7 6 6.30590600000000023 0 7 false 59 103.166643329156997 1.74673000553304991 59.0626984 20.6545179999999995 6 97.8710995268348967 19.3416988170924 5.06010869999999979 20.3747520000000009 6 81.2354163938281033 15.5853767598761994 5.21228460000000027 19.9875560000000014 1.73608929999999995 0 0.387195599999999973 -0.279766079999999973 0.666961669999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.421351023963012 -62.7696739599144991 22.9194438581274014 -12.7240879227853991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481390966987555584 2481390966987555584 1519013259 2015.5 25.921314550413701 1.06943348619253009 -2.92924726220616005 1.12686311674673001 -0.128738988744746014 1.20173381990482997 -0.107127704000000004 16.1052283067966009 3.22515366347563015 -2.56933527073349 2.97877271097806018 0.516548200000000013 -0.138596550000000013 -0.159902739999999988 -0.321803569999999983 -0.0923530399999999974 -0.315777799999999997 -0.544645599999999952 -0.188493679999999997 0.0639676750000000016 0.526902740000000036 78 0 78 0 -1.06855870000000008 60.2462997 0 0 31 false 0.0332567169999999981 1.59776987061829989 0.34320003747344302 0.0505346500000000004 9 7 3.4266877 0 9 false 77 109.612782991686998 1.71424806893765003 63.9421997 20.5887129999999985 5 22.7771865930494002 5.57175432709004959 4.087974 21.9576379999999993 8 160.766696686052995 10.8112424255555997 14.8703260000000004 19.2464300000000001 1.67447520000000005 0 2.71120830000000002 1.36892510000000001 1.34228320000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.48193679661199 -62.7641800345484029 22.9427796558499999 -12.7408431242094 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481390726469392512 2481390726469392512 102444498 2015.5 25.9416814117492009 1.56270347723376002 -2.93717459221617005 1.93113395258769005 0.494447082329823984 1.87971513699647996 0.263043599999999989 -15.0441866498668002 4.68249710177463019 -11.1420142960703004 4.15491845344732003 0.259855999999999976 -0.423965570000000014 -0.317269199999999973 -0.0211943129999999993 0.375667699999999993 0.0458306559999999974 -0.563960970000000006 0.106847440000000002 -0.303244769999999997 0.22397605000000001 68 0 67 1 -0.0669203300000000001 60.5988007 0 0 31 false 0.0215837060000000011 1.13831708418436994 0.415524566401027973 0.153012700000000001 8 6 4.38638999999999957 0 8 false 68 81.4599693360932946 2.33532648241342011 34.8815994 20.9110049999999994 4 52.5726371288160976 28.9619263593490004 1.81523279999999998 21.0494880000000002 4 140.485798681277998 14.7421025980865998 9.52956299999999956 19.3928399999999996 2.36997910000000012 0 1.65664860000000003 0.138483049999999996 1.51816559999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.529468664983995 -62.7623533328404974 22.9591996384978003 -12.7556781612221997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410142093475968 2505410142093475968 942514857 2015.5 25.9558559082434996 1.20244919007617002 -2.91928918126659998 1.13453386787662991 0.54744933400564999 1.26292208794000005 0.433478330000000023 -3.99671924372146981 3.69702241116868002 -6.0126433294202597 3.25629824668521994 0.522888360000000052 -0.44981152000000002 -0.285107700000000019 -0.383431399999999978 -0.364840400000000009 -0.300175159999999996 -0.550768900000000006 0.0791368560000000054 0.335504899999999995 0.478214169999999994 76 0 76 0 1.61417830000000007 91.2342987 2.01899324084328002 0.982245086910141008 31 false 0.0322138299999999989 \N \N 0.0519451350000000034 9 7 3.80372120000000002 0 9 false 77 112.378840656996005 1.26772234615230994 88.6463013 20.5616549999999982 7 49.8223969087875034 8.93094881861227918 5.57862300000000033 21.1078259999999993 7 155.301200488724987 13.6132649860954 11.4080790000000007 19.2839829999999992 1.82528660000000009 0 1.8238430000000001 0.546171199999999968 1.27767180000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.540033400280009 -62.7400624774804001 22.9794270659258011 -12.7442300371581005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409974588020224 2505409974588020224 434639082 2015.5 25.9713364972367984 0.0530763714184510974 -2.92474023977678987 0.0430156703446386984 14.5695191598617999 0.0575657000220452034 253.09375 -128.881390863010012 0.142149153263697009 -102.884107686354994 0.0926033367160880999 0.172590779999999999 -0.135979340000000004 -0.314945550000000019 0.249047550000000006 -0.358482899999999993 0.379016850000000016 0.337877119999999975 -0.0286792600000000016 -0.300448539999999986 0.361550240000000023 116 0 115 1 6.77955250000000031 243.177994 0.219861113344767989 7.9581059955487703 31 true 17.8593040000000016 1.3513780532239299 0.0140556456457268993 0.0369402060000000032 13 8 0.141882239999999993 0 13 false 112 112341.402174802002 88.5309074947911938 1268.94995 13.0620165000000004 12 30821.1928770716004 99.2556315078984994 310.523379999999975 14.1292650000000002 12 122019.497870528998 110.859964415376993 1100.66329999999994 12.0458470000000002 1.36050190000000004 0 2.08341799999999999 1.06724829999999993 1.01616949999999995 -76.3374981174276996 14.0987728061402997 2 5500 4.5 0 NOT_AVAILABLE 152.57557768250399 -62.7381453981736996 22.9921250558960999 -12.7549703354931001 100001 4115.7998 3979.47998 4324.66016 0.251300007 0.120899998 0.4375 0.132300004 0.0658999979 0.265599996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409042580231680 2505409042580231680 1569429950 2015.5 25.9925182791265001 0.361461181931369002 -2.94934036590250015 0.250424171761353009 0.418501245241635011 0.397871814734096996 1.0518495000000001 4.76953891994537038 1.04227905282698008 -0.665274246588713036 0.43562473983890998 0.229947459999999992 -0.322692160000000006 -0.132721420000000007 0.11914284 -0.263317579999999996 0.164357079999999989 0.281159280000000011 -0.0564708039999999994 0.0710205659999999933 0.0258348979999999985 125 0 124 1 2.94812180000000001 169.675995 0 0 31 false 0.238275829999999994 1.35291174769433997 0.0770910519112937981 -0.0700407499999999988 14 8 0.91700029999999999 0 14 false 122 406.245492099327976 1.59721180553186004 254.347 19.1663950000000014 12 129.082790880796011 10.0304690486458998 12.8690680000000004 20.0742170000000009 14 470.531991695430975 6.14047895779768016 76.6278999999999968 18.0804459999999985 1.47599119999999995 0 1.99377059999999995 0.907821659999999975 1.08594900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.640730861027009 -62.7508882717880994 23.003056805178101 -12.7856133107194001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505408973862494848 2505408973862494848 289415498 2015.5 26.0221261849909986 3.18723744969859979 -2.94886499853762984 1.59250678275708002 \N \N \N \N \N \N \N 0.0222921989999999987 \N \N \N \N \N \N \N \N \N 45 0 45 0 3.48037460000000021 78.8503036 1.35531039735662007 0.831669281988795972 3 false 0.0260339030000000006 \N \N 0.0603773299999999999 5 5 8.04684899999999992 0 5 false 44 85.871151935561997 1.71753322649596996 49.9967995 20.8537479999999995 4 56.6495380828962993 9.15257027620613073 6.18946799999999975 20.9683969999999995 4 119.194501431373993 2.49973178661480011 47.6829150000000013 19.5712800000000016 2.04776619999999987 0 1.39711760000000007 0.114648819999999999 1.28246879999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.698186773883009 -62.737391201191997 23.0314456939699994 -12.7960107539188996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409901573691904 2505409901573691904 994385618 2015.5 25.9869014051496983 0.69530326800658504 -2.9343381973798901 0.575570710525425966 -0.714806287017345054 0.769826659874243036 -0.92852889999999999 -1.04624663086343994 1.77051334108297009 -1.80811433226402007 0.878623386328760025 0.320611120000000027 -0.0187208799999999988 -0.34118134 0.266814620000000002 0.0274045059999999986 0.165506629999999988 0.453831170000000006 0.254226479999999977 0.170472760000000001 0.10462523 114 0 114 0 3.91859339999999978 176.776001 1.65435810852898002 1.6594371907196801 31 false 0.0637685600000000019 1.76423939418281006 0.165332914179969009 0.0494771379999999969 13 8 1.5837888 0 13 false 113 198.607436273887998 1.86903721112633003 106.262001 19.9433770000000017 10 141.61046642842399 14.8797575973480001 9.51698799999999956 19.9736499999999992 10 146.181314337465011 14.6537934708088997 9.97566300000000084 19.3496899999999989 1.4490483999999999 0 0.623960500000000029 0.0302734379999999997 0.593687060000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.615277190651994 -62.7399037457321995 23.0033453311529001 -12.7695991901250991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409248738663296 2505409248738663296 172644183 2015.5 26.0105013683844994 0.151600560903446008 -2.93003837620684982 0.109305435390720004 -0.0472536178614405972 0.154455552017170011 -0.305936660000000027 -1.59386467277957 0.391007934498217025 -3.32839689473478995 0.193650421713717991 0.144903179999999993 -0.0756358300000000011 -0.416409640000000025 0.176096379999999997 -0.0974648449999999944 0.186114950000000001 0.205941979999999997 0.232629420000000003 0.0635821599999999987 0.101808876000000006 117 0 117 0 1.88029990000000002 141.783005 0.322424942193014985 1.1171179756421199 31 false 1.39762490000000006 1.53752723520244006 0.0360007396025585 0.0176866299999999983 13 9 0.355518000000000001 0 13 false 116 1788.10311076539006 2.99226050885182016 597.575989 17.557383999999999 11 861.912159169634947 11.8516098286540004 72.7253299999999996 18.0127319999999997 12 1328.88198559808006 11.9016050247748009 111.655690000000007 16.9532029999999985 1.22520570000000006 0 1.05952840000000004 0.455347060000000026 0.604181300000000032 \N \N 0 \N \N \N NOT_AVAILABLE 152.657290040409009 -62.7256380233340991 23.0274461384824001 -12.7742389917488008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394196800564608 2481394196800564608 405682117 2015.5 25.8833299243717008 2.78862515103348008 -2.90354131920154002 1.34633820561321005 \N \N \N \N \N \N \N -0.269044820000000018 \N \N \N \N \N \N \N \N \N 56 0 56 0 0.493063899999999999 55.4357986 0 0 3 false 0.0208915770000000015 \N \N -0.242529209999999995 7 6 8.53496400000000044 0 7 false 58 90.3090770071740963 2.1280588919174499 42.4373016 20.7990379999999995 4 92.3034731337903054 9.65605213329117085 9.55913199999999996 20.4383429999999997 5 81.7057620161964024 13.1800811444879002 6.19918499999999995 19.9812890000000003 1.92681879999999994 0 0.457054139999999998 -0.360694899999999985 0.817748999999999948 \N \N 0 \N \N \N NOT_AVAILABLE 152.382815615698007 -62.7577284238714981 22.9162672820810016 -12.7030135726647995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394918355067008 2481394918355067008 1105543743 2015.5 25.8520525325820998 1.69851440723948999 -2.8878406160918999 0.706845486038627957 \N \N \N \N \N \N \N -0.328730399999999978 \N \N \N \N \N \N \N \N \N 86 0 85 1 -0.502024800000000049 73.1863022 0 0 3 false 0.0411300500000000013 \N \N -0.225126429999999988 10 7 4.20695100000000011 0 10 false 85 144.098968706801003 1.71737847807421007 83.9064026 20.2917139999999989 8 114.936961294726999 7.45941198707331043 15.4083140000000007 20.2002400000000009 9 126.883632977351994 18.2974485606751003 6.93449899999999975 19.5034069999999993 1.67815629999999993 0 0.696832659999999993 -0.0914745299999999983 0.788307199999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.306446747490014 -62.7572814752547004 22.8923850577366004 -12.6769472308172002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395021436657792 2481395021436657792 1127863310 2015.5 25.8548978000054994 12.3181606758714004 -2.88391495193152991 4.67324705274416008 \N \N \N \N \N \N \N 0.804943399999999976 \N \N \N \N \N \N \N \N \N 51 0 51 0 -0.773474100000000053 38.3788986 0 0 3 false 0.0205523170000000005 \N \N 0.0235518029999999996 6 4 14545.5419999999995 0 6 false 52 78.4444995846460955 1.26501484577994994 62.0107002 20.9519599999999997 5 77.0612456525545042 17.5764561273635991 4.38434499999999971 20.6342980000000011 5 76.3703388364216949 11.5072315087970001 6.63672600000000035 20.0546070000000007 1.95592530000000009 0 0.579690930000000049 -0.31766129999999998 0.897352200000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.308281199204998 -62.7525085739006983 22.8965709030136004 -12.6743379745725999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395021434282368 2481395021434282368 1340863928 2015.5 25.8584035764319005 0.269295619984534995 -2.88695830043526991 0.182053932476644004 0.159517064241564005 0.279325434868580025 0.571079600000000021 5.79742108394393973 0.709380870905658045 -4.78071355794071007 0.331107503431657013 0.123254605000000003 -0.1057419 -0.427219200000000021 0.111904770000000001 -0.0800813699999999989 0.101329080000000002 0.116150885999999995 0.241103039999999991 0.127017560000000002 0.0530345779999999989 128 0 127 1 2.26217680000000021 160.057007 0.586121035356953035 1.13519259685792995 31 false 0.400374400000000019 1.68384913500896993 0.061805438098065997 -0.0447261970000000023 15 9 0.638336699999999979 0 15 false 126 662.601099065689027 1.90781917155319003 347.308014 18.6352350000000015 13 405.967160907263974 11.9605596623745001 33.9421540000000022 18.8301599999999993 13 434.430089395077005 8.50322455907953056 51.0900419999999968 18.1671200000000006 1.26833060000000009 0 0.66304015999999999 0.194925309999999991 0.468114850000000027 \N \N 0 \N \N \N NOT_AVAILABLE 152.318065543305011 -62.7537148753514984 22.8987649378663001 -12.6784537147302991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395021434282240 2481395021434282240 1006765953 2015.5 25.8597228809906987 0.324117193706823015 -2.88792882193369982 0.237589346192617012 0.700018422652740946 0.359735063747416983 1.94592769999999993 4.18302574896489965 0.860576057718187015 -6.22695353656682027 0.403990068930577984 0.222006960000000003 -0.0710205500000000017 -0.355505379999999982 0.120367859999999993 0.0513221059999999993 0.0932566900000000032 0.185325469999999992 0.198144569999999992 0.184960000000000013 0.0561300850000000032 119 0 119 0 1.43942379999999992 136.393005 0.402455464801036 0.332064868375210986 31 false 0.269768769999999991 1.5813294978458301 0.0803777584508606063 -0.022486486 14 8 0.768069800000000025 0 14 false 118 462.864987096676998 2.15825417027387001 214.462997 19.0247300000000017 10 246.078779439214003 8.86589689131345082 27.7556550000000009 19.373702999999999 11 312.301986219191974 10.3785306639911994 30.0911560000000016 18.5254820000000002 1.20635770000000009 0 0.848220799999999997 0.348972320000000003 0.499248499999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.321580880991007 -62.7540114991167002 22.8996563378948004 -12.6798399854002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394265520037888 2481394265520037888 967750686 2015.5 25.8776205846642995 0.722515274342997005 -2.88833833083849001 0.648044677830654003 1.64734585336710992 0.789896704452302978 2.08552049999999989 -1.09664274278823992 1.89896790951237993 -1.57402339047733997 1.04825366679851006 0.339446630000000027 -0.224330079999999987 -0.255092260000000015 0.324139029999999995 -0.356965299999999985 0.326063800000000015 0.547620800000000019 0.0610084870000000001 -0.187068750000000006 0.267319799999999996 112 0 112 0 4.06430769999999963 177.212997 2.33880803257504999 3.95580717363867995 31 false 0.0646867500000000012 1.46072431736966002 0.164139116254329004 0.0503649860000000005 13 8 1.71453079999999991 0 13 false 111 226.614927400887012 1.60302085304792996 141.367004 19.8001439999999995 8 65.8748567630672994 4.61832693238425041 14.2637920000000005 20.804587999999999 9 291.513165837738995 21.423272492965399 13.6073120000000003 18.6002749999999999 1.57707189999999997 0 2.20431329999999992 1.00444409999999995 1.19986919999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.357076171866993 -62.7465584518806025 22.916546838998201 -12.6867787386737998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394265520038400 2481394265520038400 676400799 2015.5 25.870565533539299 0.40311125196999098 -2.88518175971608004 0.288858679147660002 0.417896849382997981 0.426201518468651008 0.980514699999999961 4.55071167205343041 1.0685951214521201 -1.09688966610471006 0.507078841506538036 0.190098180000000005 -0.127464959999999988 -0.445051220000000025 0.120431640000000006 -0.0674982439999999989 0.0889734249999999949 0.171213360000000009 0.286681230000000009 0.143181699999999995 0.0829552499999999943 131 0 131 0 0.771812860000000045 137.944 0 0 31 false 0.167127789999999998 1.46881154356444998 0.0923669113851074974 -0.0422987999999999975 15 9 0.962290050000000008 0 15 false 131 320.558137003674972 1.78329646032594002 179.755997 19.4236000000000004 12 192.97276442595799 9.1480939149654894 21.0943150000000017 19.6376479999999987 10 206.184339014294011 8.19658408261092042 25.1549109999999985 18.9762799999999991 1.24519409999999997 0 0.66136740000000005 0.214048390000000005 0.447319030000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.340224230359013 -62.7468042203392002 22.9110150098181009 -12.6812573551725993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481393990642507904 2481393990642507904 20483728 2015.5 25.9000175949389018 2.02855325033466016 -2.91273475358458001 1.06065258348199998 \N \N \N \N \N \N \N -0.104321800000000006 \N \N \N \N \N \N \N \N \N 74 0 72 2 -1.99599060000000006 45.9286995 0 0 3 false 0.0305655360000000008 \N \N -0.0796477649999999954 9 6 5.5044550000000001 0 9 false 72 105.459408050164001 1.49863098048794008 70.3704987 20.6306510000000003 2 11.1657449811799996 4.92132593838644006 2.26884899999999989 22.7316679999999991 7 130.598825604544004 13.0835763473014008 9.98189099999999918 19.4720730000000017 1.34425719999999993 0 3.25959589999999988 2.10101700000000013 1.15857889999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.424344413096009 -62.7586841573360985 22.9287038348161012 -12.7176798734386995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394025002246400 2481394025002246400 393076716 2015.5 25.8952086236141987 0.654003502664316949 -2.90169146829651003 0.52295631584908997 -0.297314245325194015 0.698412646598186027 -0.425699979999999978 2.71553560667021987 1.73220256430956998 -4.11556014079739985 0.90056581361342003 0.270348580000000005 -0.150015939999999987 -0.344277019999999989 0.174566100000000002 -0.174085049999999991 0.146332820000000002 0.304508630000000002 0.191402689999999986 0.0574372000000000008 0.154314470000000009 114 0 112 2 1.92836439999999998 136.973999 1.61158131162248996 1.33846469701858006 31 false 0.0695333199999999957 1.38633408874904007 0.154561158735812998 0.0205976809999999996 14 9 1.54774889999999998 0 14 false 114 199.465269544230011 1.45993952302676 136.626007 19.9386979999999987 9 146.067966848317013 10.2832974046208001 14.2043900000000001 19.9400000000000013 9 151.146608215798011 15.5913014454368994 9.69429099999999977 19.3134230000000002 1.49005680000000007 0 0.626577399999999951 0.00130271909999999996 0.625274659999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.404336611101002 -62.7508660259434023 22.9282762827120017 -12.7056446370068006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505415570932270464 2505415570932270464 614933394 2015.5 26.0268306785429999 2.99920370095798017 -2.80729524070977021 1.59676262927488999 \N \N \N \N \N \N \N 0.714057449999999982 \N \N \N \N \N \N \N \N \N 60 0 60 0 0.349634830000000008 58.0551987 0 0 3 false 0.0329508969999999998 \N \N 0.0912791000000000019 7 6 12.3805859999999992 0 7 false 61 88.815015020219704 1.37727181264711995 64.4861984 20.8171500000000016 4 45.5814877817849009 10.5973221011074994 4.30122699999999991 21.2044159999999984 6 131.883774713506 15.8825487978247004 8.3036910000000006 19.4614410000000007 1.9981449 1 1.74297520000000006 0.387266160000000026 1.35570909999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.571204199951012 -62.6082947116059998 23.0891140047600985 -12.6660109502163998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394231162694656 2481394231162694656 587581176 2015.5 25.900961262863099 0.990324883014399027 -2.88923694639347017 0.897501558980242975 0.505790731014287953 1.06150517019752 0.476484479999999988 10.1317368862899997 3.07559082255491978 -0.330703801659774976 2.53657179875935013 0.410775329999999994 -0.324808150000000018 -0.220479619999999987 -0.260094099999999995 -0.253456699999999979 -0.221091939999999987 -0.476462500000000011 -0.0139955719999999995 0.191777329999999996 0.42046929999999999 88 0 88 0 2.14638200000000001 113.017998 1.33918101449450999 0.493470477179373979 31 false 0.0361607200000000004 1.37624425857186994 0.272898136175199979 -0.00566309900000000043 10 7 3.01213359999999986 0 10 false 88 121.284379104644998 1.44911089820378991 83.6957016 20.4788530000000009 7 55.2063611631255 15.4772438075524992 3.56693740000000004 20.996416 7 156.570587192721007 12.4465623533729008 12.5794239999999995 19.2751449999999984 1.74611889999999992 0 1.72127150000000007 0.517562870000000008 1.20370859999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.403688492218009 -62.7371534247213987 22.9384381437544 -12.6961656192902002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481394304175247488 2481394304175247488 958457075 2015.5 25.8900746248540017 3.80878508166017005 -2.88160101631493992 2.28405988868623 \N \N \N \N \N \N \N 0.153273789999999993 \N \N \N \N \N \N \N \N \N 87 0 87 0 38.017592999999998 2162.16992 15.0087358071574997 112.881110176711999 3 false 0.00400931399999999993 \N \N 0.0270725409999999986 13 8 9.24857000000000085 0 13 false 108 209.711644775307008 3.62936178927300013 57.7820015 19.8843099999999993 10 282.643747468750007 16.2918518091582989 17.3487800000000014 19.2232899999999987 9 626.970885915941949 17.2739730003933012 36.2956959999999995 17.7687999999999988 4.3374543000000001 0 1.45448880000000003 -0.661020300000000005 2.11550899999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.375048925303986 -62.7350545924956009 22.9309408213392985 -12.6850737775107998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413440626366464 2505413440626366464 1091958654 2015.5 25.9008938012383005 1.00741345911345004 -2.87842575522082011 0.827383550721955019 0.695391047903737958 1.06466308735946003 0.653155999999999959 21.2904429334879985 2.89066717114054006 -9.2281327842955605 1.45579605511759991 0.241914849999999987 -0.160497580000000001 -0.341008570000000011 0.161620320000000012 -0.0412909300000000035 0.0355620800000000029 0.382669030000000021 0.151968400000000003 0.148520659999999999 -0.0372468119999999972 92 0 90 2 1.87276639999999994 111.031998 2.7663923989391499 3.14907438218950997 31 false 0.0337852130000000014 1.21779945189755989 0.238493695814585988 0.00456057439999999967 11 9 2.56245520000000004 0 11 false 91 130.619118050149012 1.53453759058329009 85.1194992 20.3983500000000006 8 29.084492592250399 11.0337539498371999 2.63595630000000014 21.6922339999999991 9 184.717664943621998 16.5113903057497993 11.1872869999999995 19.0956499999999991 1.63683660000000009 0 2.59658429999999996 1.29388429999999999 1.30269999999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.393212228545991 -62.7274658328872974 22.9424385437419005 -12.6860831789390005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413578065701632 2505413578065701632 748539224 2015.5 25.9249041744552002 0.899784183247087976 -2.86897099927208998 0.973202123098693028 1.3887341481245099 0.873025191108034004 1.59071479999999998 2.80601075406939016 2.48324043777749015 -3.51242641401137012 2.39635795819323993 0.522770940000000017 -0.130200800000000005 -0.439885770000000009 -0.228008099999999991 -0.109816239999999996 -0.218419749999999996 -0.35635325000000001 0.245955399999999991 0.170780660000000001 0.500233299999999992 78 0 77 1 0.224051159999999999 74.0409012 0 0 31 false 0.0479850839999999973 1.82307133120474996 0.263527179367868014 0.164929240000000005 9 7 2.67396879999999992 0 9 false 77 127.981278613946003 1.38180202924752993 92.6191025 20.4205000000000005 6 94.3454238561532037 10.6917749106513007 8.82411300000000054 20.4145870000000009 8 95.9748993077760986 11.6397660520734991 8.24543199999999921 19.8065260000000016 1.48709500000000006 0 0.608060840000000047 -0.0059127807999999997 0.613973600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.431183796357999 -62.7084525437552003 22.9688603154701987 -12.6860816061962005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395124513498624 2481395124513498624 1313444271 2015.5 25.854065301089701 0.838422278774799024 -2.86358841945807985 0.630412740227510038 -1.37091237446877989 0.978481361196623989 -1.40106130000000006 8.0117230251721292 2.09935385021957988 -13.0003212558609995 1.2124810790653 0.203551700000000002 0.0216899740000000008 -0.443576540000000019 -0.041191854 -0.314709249999999996 -0.152328519999999995 -0.176011799999999996 0.360374030000000012 0.292532149999999991 0.284995019999999988 97 0 96 1 2.31405539999999998 125.098 1.47012837901152005 0.900541617095416025 31 false 0.0517466739999999994 1.41181786957032007 0.227702564055051987 -0.0202076960000000007 11 8 1.93701279999999998 0 11 false 96 155.698674412500992 1.56900215946157995 99.2341995 20.2076530000000005 10 94.3608697512146932 3.55096674391716016 26.5732900000000001 20.4144080000000017 10 105.921055768669007 9.05054159005758052 11.7032830000000008 19.699465 1.28634319999999991 0 0.714942929999999977 0.206754679999999996 0.508188250000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.287253214624997 -62.7345888323954028 22.9034216693941985 -12.655123858884 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481395334967398400 2481395334967398400 231503388 2015.5 25.8518379948033008 0.117451427091369007 -2.85912903006662988 0.0785348043838549059 0.133686128563220014 0.125056851220557014 1.06900290000000009 4.14866707914083044 0.287210898969405992 -15.8687858435657994 0.140471506244828986 0.128034559999999992 0.0765169559999999971 -0.447384899999999974 0.105533509999999997 0.0808597300000000047 0.100601814999999997 -0.0194071159999999986 0.276104630000000018 0.161159620000000003 0.0599516740000000034 122 9 122 0 2.69903760000000004 162.503006 0.127563901700998988 0.33423714719994102 31 false 2.74502850000000009 1.57606797553550004 0.0272998305795374013 0.0031033390000000001 14 8 0.249999460000000007 0 14 false 122 2852.30055365752014 3.93113760131685996 725.565979 17.050377000000001 14 1664.43410006555996 14.7489870129949008 112.850740000000002 17.2982219999999991 12 1816.26780525336994 22.980223452034501 79.0361249999999984 16.6139699999999984 1.22031390000000006 0 0.684251799999999966 0.247844700000000001 0.436407099999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.278633757735008 -62.731548937187199 22.9029775089619996 -12.6501592973332997 100001 6211 6019.31006 6589 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414613152699520 2505414613152699520 1333794901 2015.5 25.8459932857957 0.569492531867752949 -2.83177338610592022 0.435208566231029992 0.556710880931332031 0.614613351297987998 0.905790399999999996 2.31032527635042984 1.53349833259706991 -7.43869749179850004 0.780635856625752966 0.218494880000000002 -0.0841000999999999971 -0.395554660000000002 0.119110709999999995 -0.0590038099999999968 0.0456233249999999993 0.220354070000000013 0.221830369999999999 0.141637669999999993 0.0510045329999999977 114 0 112 2 2.82565519999999992 153.039001 1.39225800478910999 1.75823007356976002 31 false 0.0887201299999999943 1.73231204849331011 0.15261136668495201 -0.0316456930000000025 14 9 1.37000539999999993 0 14 false 109 234.691296778794992 1.60076095838743004 146.612 19.762122999999999 13 126.625047539660002 11.3373080725919007 11.1688810000000007 20.0950890000000015 13 164.703654302366004 9.40746475059814991 17.5077630000000006 19.2201610000000009 1.24132730000000002 0 0.874927499999999969 0.332965850000000008 0.541961669999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.241124173280014 -62.7094842786529014 22.907697155871201 -12.6225694686104006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414574497681920 2505414574497681920 721134896 2015.5 25.8663912114686987 0.159890713722495997 -2.83928641618381006 0.109942171338380995 0.493234468264038994 0.165838547354504012 2.97418480000000018 -4.4365227174045998 0.431968374140064004 -7.78806614826734034 0.207891391753328991 0.0905794199999999938 -0.0372077040000000012 -0.409548730000000027 0.0942691300000000065 -0.0341535619999999984 0.0170797700000000011 0.14221512 0.208366140000000005 0.163439809999999991 -0.0562437250000000014 123 0 123 0 2.65093850000000009 162.761993 0.161780814454819011 0.220082105130734007 31 false 1.13669960000000003 1.42968874315451999 0.036709817852358502 -0.0689413100000000056 14 9 0.390050469999999982 0 14 false 122 1337.61792923864004 2.53373937479170008 527.921997 17.8725360000000002 12 486.695005414767991 10.0834039728740006 48.2669330000000016 18.6332449999999987 8 1257.29270571128995 2.8552612163779898 440.342440000000011 17.0133289999999988 1.30380110000000005 0 1.61991689999999999 0.760709760000000013 0.859207150000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.288252024289989 -62.7073504424156027 22.9242954543829995 -12.6370321994419008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414643217159296 2505414643217159296 1241843102 2015.5 25.8679941045024009 0.284829254606978 -2.82705127536120981 0.208831166792468992 0.584104134662076002 0.300511351913335001 1.94370080000000001 -7.89919699091826999 0.793936307587187029 -20.2055842436909003 0.393953233470761999 0.154130180000000006 -0.100482136 -0.411652999999999991 0.0933810199999999951 -0.0618051100000000034 -0.00508293229999999974 0.198212759999999988 0.214139670000000004 0.154489789999999988 -0.0366042499999999979 121 0 118 3 1.41800569999999992 134.934006 0 0 31 false 0.343842599999999998 1.44456664805126 0.069950969296865298 -0.0658073299999999972 14 9 0.710710049999999982 0 15 false 117 512.228335976987978 1.95767979245714008 261.651001 18.9147069999999999 12 198.867210227892002 11.7611802658861997 16.9087800000000001 19.6049800000000012 12 474.973149900793999 10.1113380446111005 46.9743100000000027 18.0702479999999994 1.3155078 0 1.53473280000000001 0.690273299999999979 0.844459529999999958 \N \N 0 \N \N \N NOT_AVAILABLE 152.279739727698001 -62.6956448569516027 22.9304209209739014 -12.6262370774646993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413543705530496 2505413543705530496 580803948 2015.5 25.9008047539876998 0.511202480784230029 -2.86650389229829017 0.383271349962877983 1.51833169681927993 0.541022905530884946 2.80640940000000016 5.09320769124439021 1.34946482242547994 8.09448381114953008 0.659842729564978026 0.201495979999999991 -0.118890430000000005 -0.399953800000000026 0.174146400000000007 -0.144955260000000002 0.135005160000000013 0.29775020000000002 0.225958679999999995 0.0679581800000000069 0.091570020000000002 122 0 121 1 2.43073270000000008 156.287994 1.29646104229617998 1.83118787062045008 31 false 0.111432920000000005 1.1865148082422099 0.117973341508867999 0.00651353100000000036 14 9 1.20890549999999997 0 14 false 121 269.809973886294983 1.71517823250860002 157.307007 19.6107219999999991 9 69.4103359907562947 5.73418138481715989 12.1046639999999996 20.7478279999999984 10 294.427291593650978 8.8565196366756993 33.2441299999999984 18.5894760000000012 1.34849580000000002 0 2.15835199999999983 1.13710599999999995 1.0212460000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.381638959923009 -62.7167885100207982 22.9468355931836001 -12.6749594959242007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413612425441408 2505413612425441408 332085757 2015.5 25.9346972633505004 0.157847290077280988 -2.85143926544788018 0.103532409538275999 1.05201395635875006 0.165299907868418999 6.36427449999999961 3.37381129741199981 0.364226095526523019 -8.64255079193296005 0.181033636613771004 0.0240310669999999997 0.165528659999999994 -0.386129979999999984 0.17109698000000001 -0.204845279999999991 0.187062470000000008 0.2058643 0.145076449999999996 0.0554037000000000002 0.0964429799999999976 121 0 121 0 1.41110779999999991 138.098007 0.225611748135605 0.596259729789323956 31 false 1.45462120000000006 1.34396964989802004 0.033300535717035 0.0033738434000000002 14 9 0.330919469999999993 0 14 false 115 1752.99130345560002 2.59138650188630004 676.468994 17.5789170000000006 13 445.113652293159021 14.2670826241526996 31.1986449999999991 18.7302110000000006 10 2046.06654959875004 13.8551645301843998 147.675369999999987 16.4846210000000006 1.4211024000000001 1 2.24559020000000009 1.1512947 1.09429550000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.43357317404201 -62.6884069360529992 22.9847765702230014 -12.6733573857978996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414437058728576 2505414437058728576 888053860 2015.5 25.9116436262341985 0.186646042899024006 -2.83653757831854003 0.141377581181349993 0.0444218193387522012 0.193891669505663999 0.229106379999999998 1.88898217496171994 0.471693276287705021 -0.959117877689444009 0.241876087620607 0.193265660000000006 0.00716790740000000041 -0.350410820000000012 0.194186629999999999 -0.0462918540000000003 0.197077940000000007 0.262591540000000012 0.19380871999999999 0.0887108999999999953 0.123346694000000007 112 0 110 2 2.61044739999999997 146.718994 0.353790060344732982 0.931201542694516049 31 false 0.920481199999999999 1.48617842731496008 0.0428678956231387034 0.0179343409999999995 13 9 0.425201099999999999 0 13 false 106 1234.66280761879989 2.62429977232442013 470.472992 17.9594960000000015 10 633.347648071566027 9.40531448739952047 67.3393400000000071 18.3472819999999999 11 914.080376185755995 28.081954645075399 32.5504529999999974 17.3594590000000011 1.25332029999999994 0 0.987823499999999965 0.387786870000000006 0.600036600000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.374235088393988 -62.6851082357286984 22.9684212578816016 -12.6510509072329995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410313890568320 2505410313890568320 41939080 2015.5 25.976926847975399 2.63178393357671991 -2.89337362861488989 1.13635588195703008 \N \N \N \N \N \N \N 0.017625412 \N \N \N \N \N \N \N \N \N 80 0 80 0 -0.480568019999999985 68.6365967 0 0 3 false 0.0258223950000000015 \N \N 0.0590379050000000016 9 6 6.90689560000000036 0 9 false 80 88.8412023292756032 1.14255793462262001 77.7564011 20.8168299999999995 7 70.0497626985441997 10.2560612757604996 6.83008430000000022 20.7378709999999984 7 67.1468447075618968 19.5815850800664002 3.42908120000000016 20.1943550000000016 1.54429029999999989 0 0.543516160000000026 -0.0789585099999999956 0.622474700000000047 \N \N 0 \N \N \N NOT_AVAILABLE 152.556356146056999 -62.7075278396758975 23.0092407281116991 -12.7278347626821997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413371907270144 2505413371907270144 1082247998 2015.5 25.935771763207299 0.0794009003670350932 -2.87927853201514017 0.0551240225724621002 0.670715177493149017 0.080625400594769997 8.31890699999999939 -6.63932623944675004 0.202626562331791993 -8.12738439457960027 0.108120957251600994 0.0867923949999999944 -0.0394820420000000019 -0.419508700000000012 0.144188929999999993 -0.129100340000000008 0.18262312 0.078364489999999995 0.176962640000000004 -0.000771566599999999993 0.123039484000000005 124 0 123 1 1.39174149999999996 139.949005 0.138470180823610012 0.67703053561565596 31 true 5.47701260000000012 1.5215962273494601 0.0182919924423313 -0.00291596420000000012 14 9 0.189873839999999988 0 14 false 122 5372.87223816500955 4.67752906792923984 1148.66003 16.3628500000000017 14 2676.7524918613999 12.7005866723471001 210.75818000000001 16.7823680000000017 14 3914.99638756172999 17.0030578729072985 230.252489999999995 15.7800910000000005 1.22685749999999993 0 1.00227639999999996 0.419517519999999977 0.582758899999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.462323693177012 -62.7129487972774982 22.9753367497715999 -12.6996511897622995 100001 5326.33008 5227 5624.54004 0.0303000007 0.0165999997 0.1197 0.0144999996 0.00600000005 0.0640999973 200111 0.823926799999999959 0.738874900000000001 0.855540039999999946 0.492249600000000009 0.368787260000000006 0.615712000000000037 +1635721458409799680 Gaia DR2 2505413303187792896 2505413303187792896 1209580171 2015.5 25.9500612350434992 0.348835945665365021 -2.88894746737580999 0.24857090543768201 0.0604329706099605013 0.366249426878030027 0.165004950000000011 -5.15985711929382962 0.921506514998165049 -3.02180477828609995 0.437500568743275975 0.146855999999999987 -0.124408969999999994 -0.384151039999999999 0.166820780000000002 -0.201992740000000004 0.15589072000000001 0.273635660000000003 0.176928250000000009 0.0304354880000000001 0.0791153099999999943 123 0 123 0 2.45864839999999996 159.128998 1.05448232197617009 2.60490888226087991 31 false 0.2474412 1.47046472408745998 0.0796833667348498947 -0.00930503300000000075 14 9 0.824539299999999975 0 14 false 123 510.370300308764001 1.4919778595845401 342.075989 18.9186520000000016 12 195.103189126275993 7.54212982489690997 25.8684480000000008 19.6257270000000013 12 465.925221125952987 11.9355313663154003 39.0368229999999983 18.0911299999999997 1.2951937 0 1.5345974 0.707075099999999956 0.827522300000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.499556360745004 -62.7153621428901005 22.985313109977799 -12.7138796141697004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413303187793280 2505413303187793280 1421623757 2015.5 25.9486176040677989 0.485527433765094996 -2.88558225933884005 0.366136432694616987 0.690250881534523963 0.531555891117990953 1.29854810000000009 0.394273094769057975 1.25006907562080993 -12.4733948219940007 0.606600632627946945 0.224809399999999993 -0.0300068990000000001 -0.365174700000000019 0.203152140000000009 -0.0469861180000000003 0.162822300000000003 0.327347070000000018 0.205411210000000011 0.096236325999999997 0.0908457099999999962 116 0 116 0 3.88844440000000002 178.684006 1.56216787521101996 3.27528381299535987 31 false 0.128927299999999995 1.57803218177804006 0.117615318953754003 0.0481369000000000033 13 8 1.11798749999999991 0 13 false 116 356.337522301234003 1.47689699756802995 241.274002 19.3087119999999999 10 195.813352595196989 14.9473062690616008 13.100244 19.6217819999999996 10 247.216800285402002 11.3614297639872994 21.7593040000000002 18.7792239999999993 1.24328789999999989 0 0.842557899999999971 0.313070300000000024 0.529487599999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.493504007946001 -62.7129736036778027 22.9852029159853011 -12.7102201260880996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413337547532288 2505413337547532288 367887445 2015.5 25.9636455539230013 0.404729816347726978 -2.87366763556341009 0.290790832561231005 1.97770808875797011 0.431335845469517976 4.58507730000000002 0.144075267642675003 1.05651295904554998 -9.27896626387390988 0.506102957473855031 0.13910038999999999 -0.105394094999999993 -0.409235750000000009 0.152400759999999996 -0.255565019999999976 0.111184539999999998 0.278063800000000028 0.213085130000000011 0.0423114370000000004 0.075709079999999998 122 0 122 0 2.88590619999999998 166.087006 0.945274094431046041 1.58163311201306001 31 false 0.186261430000000006 1.11861024896382011 0.087349926546373996 -0.021652455000000001 14 9 0.947399259999999965 0 14 false 120 375.368568105167981 1.82263294600465997 205.949005 19.2522200000000012 12 101.423221779738 11.5915941351483998 8.74972200000000022 20.3360440000000011 13 482.827495537233006 11.1579693360150003 43.2719880000000003 18.0524400000000007 1.55647219999999997 0 2.28360370000000001 1.08382420000000002 1.1997795 \N \N 0 \N \N \N NOT_AVAILABLE 152.511472884684991 -62.6956725499733025 23.0039953466865015 -12.7046379594605998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413341842380032 2505413341842380032 1375773139 2015.5 25.9667325296674001 0.248669825281015999 -2.87318736628618998 0.182050849700595013 1.73030574078302002 0.262315624401721015 6.59627400000000019 -15.6591261999764004 0.658948953340873 -14.5207095408720992 0.326296438635322983 0.167966699999999997 -0.122170239999999999 -0.403965259999999993 0.150363500000000011 -0.191859289999999988 0.119888659999999994 0.251040460000000021 0.209264339999999993 0.0494481329999999983 0.0871578449999999977 124 0 122 2 0.686831529999999968 127.117996 0.257240680531257981 0.250039119412052979 31 false 0.476809319999999981 1.26568237649928994 0.0574846855720703015 0.000907118099999999978 14 9 0.592046900000000043 0 14 false 122 644.863436364910967 1.81785994647009996 354.738007 18.6646959999999993 12 194.799609329743987 19.8724271124605991 9.8025070000000003 19.6274189999999997 12 763.008570298095037 23.7607065296072015 32.1122000000000014 17.5555969999999988 1.48528839999999995 0 2.07182120000000003 0.96272279999999999 1.10909839999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.517047963538005 -62.6938849441559967 23.0071162721501992 -12.7053213945454004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413337547532416 2505413337547532416 1434656677 2015.5 25.9683064478250003 0.131325312742953004 -2.87422983698436996 0.0925402589199312009 0.0262780090130670003 0.136469387887391991 0.192556069999999996 -1.51099887316090009 0.340731547001622004 -4.02819907880627959 0.172880327962972008 0.121451009999999998 -0.0706620699999999935 -0.412925600000000004 0.145434509999999989 -0.156974909999999995 0.15273811000000001 0.165606780000000009 0.192820149999999996 0.0294473620000000012 0.100984939999999995 124 0 123 1 -0.19803156999999999 114.330002 0 0 31 false 1.80892030000000004 1.55949769521286008 0.0300509859291860013 0.0057217622999999997 14 9 0.310290129999999997 0 14 false 123 1868.59147226257005 2.57405229549899017 725.934021 17.5095799999999997 13 980.409143618868029 22.8161044582748005 42.9700500000000005 17.8728699999999989 14 1343.01046815874997 14.0896511697125 95.3189299999999946 16.9417210000000011 1.24340690000000009 0 0.931148500000000046 0.363288879999999981 0.567859650000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.521124934709007 -62.6941294642100999 23.0082237280114015 -12.7068675550116996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413715504654976 2505413715504654976 809590526 2015.5 25.9742418426339015 0.339865642007457003 -2.87140093048969991 0.228744636977265992 0.379107711350533005 0.364333014792972976 1.04055270000000011 19.6844170607690998 0.811172618083972008 -2.44804398157066005 0.390397965089974985 0.0189300570000000001 0.110223256000000006 -0.380850799999999989 0.151559680000000002 -0.282090899999999978 0.131394800000000006 0.253515539999999984 0.163006750000000006 0.0553560300000000005 0.0655107949999999967 115 0 115 0 1.75489809999999991 137.362 0.73468685242501397 1.45697849348462993 31 false 0.305684599999999973 1.42172413980590995 0.0744763406165139946 -0.0536309599999999984 13 9 0.728244200000000008 0 13 false 115 541.495035001447945 1.83830165315368999 294.562988 18.854379999999999 11 163.924929337685995 11.8194255878165002 13.8691110000000002 19.8147750000000009 12 561.393047733379944 14.9996311121012003 37.4271239999999992 17.8887520000000002 1.33947299999999991 0 1.92602350000000011 0.960395800000000022 0.965627699999999978 \N \N 0 \N \N \N NOT_AVAILABLE 152.530014053505994 -62.6889805044650004 23.014940522925599 -12.7064086758230008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410039012646784 2505410039012646784 476943861 2015.5 26.0077925802538985 0.205379579465916007 -2.9093577254873999 0.146011582636302012 0.255124607846027973 0.21628455676153599 1.17957840000000003 1.58201337399235009 0.544592818664722977 -5.50201391955228036 0.256087403247343026 0.151215089999999996 -0.144988360000000011 -0.414149700000000009 0.162962080000000009 -0.207187769999999993 0.129409150000000001 0.27148998000000002 0.215903910000000004 0.0437441360000000029 0.0627356899999999967 135 0 134 1 -0.390298099999999981 122.188004 0 0 31 false 0.677280899999999964 1.58724989352408996 0.0461304950904661976 -0.021222201999999999 15 9 0.490575250000000018 0 15 false 133 859.871204264144012 1.90319902788502993 451.803009 18.3522819999999989 13 423.824090161814979 7.99337395523127014 53.021926999999998 18.7834240000000001 13 653.609789869347992 10.0410765423418002 65.093599999999995 17.7236229999999999 1.25301780000000007 0 1.05980110000000005 0.431142799999999993 0.628658300000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.632067504035007 -62.7082790027520005 23.0326379495331004 -12.754006130554 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410043307496832 2505410043307496832 892874123 2015.5 26.0141200750693002 0.445973182750358021 -2.91094923899543012 0.321839616563657005 -0.479602912352751987 0.470784654936621028 -1.01873100000000005 -0.479137511658444981 1.20878504724822999 0.141716546843939001 0.562926228623213953 0.174021210000000009 -0.207773750000000007 -0.436465080000000005 0.167105029999999988 -0.247373599999999999 0.101334229999999997 0.312878099999999992 0.237644419999999995 0.0210994780000000014 0.0435193960000000019 131 0 130 1 -0.598702249999999991 115.138 0 0 31 false 0.147132259999999987 1.67454218769401009 0.100887071208286994 -0.0290052930000000014 15 9 1.08430430000000011 0 16 false 130 284.956549500942003 1.55543399462947995 183.201004 19.5514180000000017 8 131.507755882480012 16.4255859576515988 8.00627500000000047 20.0540100000000017 10 236.446032944746008 16.0007116852818001 14.7772199999999998 18.8275889999999997 1.2912627000000001 0 1.22642139999999999 0.502592099999999986 0.723829269999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.645965275165992 -62.706916184749403 23.0380681710314015 -12.7578031238875997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409661057266304 2505409661057266304 144931162 2015.5 26.0246375527316012 2.00709425507452011 -2.90684287152370002 1.6567656635021899 \N \N \N \N \N \N \N 0.631690259999999948 \N \N \N \N \N \N \N \N \N 67 0 66 1 1.25426660000000001 75.1603012 3.18680909775493015 1.79052764743363002 3 false 0.0189581680000000009 \N \N 0.129198499999999994 8 6 10.4824269999999995 0 8 false 65 83.475866486095299 1.52632490429384005 54.6907997 20.8844640000000012 3 55.4472531938985966 13.2830577111617991 4.17428400000000011 20.9916879999999999 4 109.681745492008005 19.4433092265411993 5.64110469999999964 19.6615849999999988 1.97816459999999994 0 1.33010289999999998 0.107223509999999994 1.22287940000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.662556409470994 -62.6985914771278985 23.0496316740589009 -12.7578322814681009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410524343854592 2505410524343854592 52345166 2015.5 26.0253764020145013 0.0370184500159718016 -2.88316770885943008 0.0275029022031439002 1.66629275691148004 0.0365806729487982013 45.5511780000000002 20.4867814925468998 0.0891344171927394013 1.79331770892014997 0.0592111050311383003 0.0814591600000000027 0.0745007500000000045 -0.466469650000000013 0.0914552700000000052 -0.0230023599999999995 0.136832580000000009 -0.225983080000000003 0.229420449999999998 0.00528969660000000019 0.183639689999999994 117 27 116 1 4.18689100000000014 184.860992 0 0.0509432092003068021 31 true 152.870010000000008 1.59818492129910994 0.00913319801165463074 0.018854847000000001 13 9 0.0826489849999999943 0 13 false 115 121294.207246941005 76.7576587205369947 1580.21997 12.9787654999999997 13 66975.0833251659933 100.428547540154 666.892900000000054 13.2866049999999998 12 79625.2701453524933 73.1031113452954031 1089.21859999999992 12.5092929999999996 1.2086344 0 0.777312299999999956 0.307839399999999985 0.469472900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.64120391117001 -62.6770260009423978 23.0592312001069999 -12.7360746793141004 100001 5904.66992 5332.2998 6710.45996 0.2183 0.0203000009 0.349099994 0.1127 0.0130000003 0.173999995 200111 1.25080870000000011 0.968449650000000051 1.5337426999999999 1.7133969 1.63687779999999994 1.78991600000000006 +1635721458409799680 Gaia DR2 2505410627423069568 2505410627423069568 1315949058 2015.5 26.0249612934315984 0.471491193004899001 -2.87671778913402987 0.491802059341448994 1.12852394488074004 0.577338308198678041 1.95470129999999997 -0.270128240285910981 1.20385863669572002 -7.76534166459012987 0.795626566632960053 0.232540770000000008 -0.0182848440000000015 -0.192717450000000012 0.240359400000000001 -0.489690000000000014 0.207523989999999992 0.603114200000000045 -0.00910260000000000062 -0.217887629999999999 0.187000290000000013 88 0 88 0 0.816202899999999953 93.2441025 0.626710717562748987 0.372866424161227006 31 false 0.162146519999999988 1.43430308816208996 0.115138571695310998 -0.0242718399999999994 10 8 1.08278230000000009 0 11 true 89 324.932436310096989 1.72383780761912009 188.494003 19.4088819999999984 9 146.599644943966013 10.9841341597264002 13.3464910000000003 19.9360560000000007 9 270.455161371465977 7.77375173557970989 34.790816999999997 18.6816829999999996 1.2835124 0 1.25437360000000009 0.527174000000000031 0.727199550000000028 \N \N 0 \N \N \N NOT_AVAILABLE 152.634189022706011 -62.6714220925791992 23.0612589267373984 -12.7299215164503998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414024742303488 2505414024742303488 972003677 2015.5 25.9597484057682983 1.13092548102951995 -2.8333345448436198 0.786956984537856008 \N \N \N \N \N \N \N 0.10297191 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.880614640000000004 73.7537003 0 0 3 false 0.0427260730000000033 \N \N -0.111970215999999997 8 6 4.92026400000000042 0 8 false 68 111.300273225622007 1.72530885026889003 64.5102997 20.5721239999999987 5 86.5783391756146017 9.60861254338752957 9.01049300000000031 20.5078659999999999 5 98.6255474304708031 11.2747993805303999 8.74743299999999913 19.7769469999999998 1.66400210000000004 0 0.730918900000000038 -0.0642585749999999983 0.795177460000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.465229693184 -62.6611557109374999 23.0154387705675987 -12.6656857956793996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505413921663087616 2505413921663087616 971177652 2015.5 25.9805088186566984 0.339863615211466019 -2.84139592650801021 0.264004593899721973 1.57911544504062995 0.364081139134002973 4.33726259999999986 4.27814772690317024 0.933975889684498961 -6.09071885361484 0.515801665099143047 0.194292629999999994 -0.128013249999999995 -0.367510500000000018 0.0948171240000000026 -0.209337169999999989 0.0401439599999999994 0.20210707 0.171192819999999996 0.0649413199999999968 0.0805699899999999941 107 0 107 0 0.585505000000000053 109.890999 0.333044115267052021 0.182214493411176987 31 false 0.255360799999999999 1.35700016849742999 0.0871689304248347008 -0.0199243370000000003 12 9 0.833103600000000055 0 12 false 107 391.112280418512 1.6016867917167501 244.188004 19.2076129999999985 10 121.897197158607 5.25058534644036978 23.2159249999999986 20.1364039999999989 11 405.852806678585011 3.27320494307187015 123.992485000000002 18.2409999999999997 1.34935680000000002 0 1.89540479999999989 0.928791049999999951 0.966613770000000039 \N \N 0 \N \N \N NOT_AVAILABLE 152.513497679658997 -62.6592821335079009 23.0321837577441002 -12.6807863233317999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410829288369408 2505410829288369408 883054155 2015.5 26.023905045885801 2.43548702658666016 -2.86345892429147009 0.777793846138720046 \N \N \N \N \N \N \N 0.0411988159999999992 \N \N \N \N \N \N \N \N \N 97 0 97 0 0.629251960000000055 100.095001 0.151157015310271009 0.00472672025203760976 3 false 0.0329819299999999996 \N \N -0.00931358699999999991 11 8 6.90584850000000028 0 11 false 99 102.898455675650993 1.25676455827891997 81.8757019 20.6573430000000009 5 28.1966947417169997 5.59909133518714963 5.03594100000000022 21.7258929999999992 7 162.762511171986006 2.52974164811360991 64.339579999999998 19.233034 1.85580239999999996 0 2.49285900000000016 1.06855009999999995 1.42430879999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.619381094658991 -62.6599906958844031 23.0652336114169003 -12.7171983647375999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414162181196928 2505414162181196928 7567816 2015.5 25.988972640918 0.763287793052974006 -2.81836748628471012 0.635341753363330985 -0.0858460812550888991 0.98114047829362705 -0.0874962199999999996 -3.99305401425118012 2.31006532374007989 -4.6525117333853796 1.34133687535731005 0.362696000000000018 -0.361760599999999988 0.408031020000000022 -0.0180907509999999987 -0.325479899999999989 0.156808329999999996 0.110703795999999993 -0.500656499999999949 0.0882374350000000029 0.163178550000000006 114 0 113 1 0.62698659999999995 116.776001 0 0 31 false 0.0487896099999999971 1.63137995784104994 0.206159725221164991 0.069149199999999994 13 9 2.09757600000000011 0 13 false 112 128.003918567841993 1.1327557839747 113.001999 20.4203070000000011 8 86.5351412464838035 7.07914185857690992 12.2239590000000007 20.5084079999999993 8 117.611903305007004 7.86549263286234002 14.9528970000000001 19.5857929999999989 1.5948500000000001 0 0.922615049999999992 0.0881004299999999935 0.834514599999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.507975481037988 -62.6348826884203973 23.0488958753727005 -12.6624583237812001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505412414129515136 2505412414129515136 232477920 2015.5 26.0236130983928007 0.979885396332347947 -2.83829923114263982 1.0540033548879999 \N \N \N \N \N \N \N 0.54061764000000001 \N \N \N \N \N \N \N \N \N 96 0 96 0 -0.0385838150000000005 89.8180008 0 0 3 false 0.0323524550000000022 \N \N 0.156629059999999987 11 7 5.22717860000000023 0 11 false 96 99.1692132465550031 1.07217784103751002 92.4932022 20.6974240000000016 7 56.1806243134835981 10.0676720876484005 5.58029940000000035 20.9774230000000017 8 85.0997772535639001 8.16174769920696974 10.4266614999999998 19.9371000000000009 1.42463969999999995 0 1.04032330000000006 0.279998780000000003 0.760324499999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.594652977067994 -62.6375403354567979 23.0744059026343997 -12.693681691299 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505415364772100736 2505415364772100736 1078308966 2015.5 26.0221512730806985 0.400292754788940996 -2.82329524475566007 0.364831312371429017 0.962190949211104041 0.499217589719777977 1.92739799999999994 15.3765005663117993 0.956743258372888983 1.1057833402591899 0.659700028246156034 0.227484610000000004 0.134129450000000011 0.0157197290000000017 0.0926999149999999938 -0.282044000000000017 0.0744958740000000036 0.242324249999999991 -0.0665319340000000009 0.098052025000000001 0.188898530000000009 143 0 140 3 4.40382099999999976 220.136002 1.36998989629938994 2.33624472736152011 31 false 0.117997445000000006 1.32006527157989995 0.109970736621008994 0.0597911659999999998 16 10 0.853021600000000046 0 16 false 140 287.913013182354007 1.37987949794533993 208.651001 19.5402130000000014 14 77.4022277220913963 7.78627785244735993 9.94085100000000033 20.6295050000000018 13 369.608479202981016 10.3808753584029994 35.6047500000000028 18.3425660000000015 1.55258940000000001 0 2.28693960000000018 1.0892925 1.19764709999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.577413443729 -62.6247168902352982 23.0786483489494003 -12.6791861384055995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505408978155628288 2505408978155628288 1402063218 2015.5 26.0293851876243991 0.164772992453935008 -2.94918542238568993 0.119940337746910999 0.21653116681148199 0.177142734593786988 1.22235420000000006 5.28883341883560032 0.414196769568181022 -15.3416863057240001 0.211313957113414996 0.17549358000000001 0.0135285389999999991 -0.383643149999999988 0.177655399999999991 -0.0302522479999999989 0.18607805999999999 0.184670880000000009 0.203610519999999989 0.061006392999999999 0.108908119999999997 115 0 115 0 3.78824950000000005 175.388 0.455486511720162024 2.30830111378790015 31 false 1.19562450000000009 1.53900259125062999 0.0382436783612842973 0.0475963059999999979 13 8 0.374844520000000014 0 13 false 114 1786.26511961621009 2.76252787867840999 646.60498 17.5584999999999987 11 1024.48374690158994 9.62381539657785012 106.452969999999993 17.8251249999999999 12 1255.58117650773011 9.98693505253313063 125.722374000000002 17.0148089999999996 1.27644259999999998 0 0.810316099999999984 0.266624450000000013 0.543691640000000032 \N \N 0 \N \N \N NOT_AVAILABLE 152.712687597669003 -62.7344704705908001 23.0382418979543999 -12.7989661144112006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409180019185536 2505409180019185536 103555920 2015.5 26.0255929194781999 0.37464517030111899 -2.93921931188463992 0.278912072303573011 0.170018380217329013 0.397734640348971991 0.427466869999999999 14.1310908757779998 1.01277628781938001 1.44123018177544004 0.510549201556752985 0.195790949999999991 -0.205789949999999999 -0.423912549999999999 0.148216960000000009 -0.254015979999999975 0.0985581100000000043 0.250436959999999986 0.229565750000000013 0.023891306000000001 0.088771119999999995 125 0 125 0 1.03282539999999989 135.996002 0 0 31 false 0.205329700000000004 1.32184583970887992 0.0838186260793249982 -0.00807160900000000042 14 9 0.908733800000000036 0 14 false 125 352.835455586941976 1.60471788934110005 219.873993 19.3194349999999986 10 103.917577298582998 6.90809400545542029 15.0428719999999991 20.309666 10 376.114995621318997 7.32580578143056016 51.3411100000000005 18.3236179999999997 1.36049989999999998 0 1.98604770000000008 0.990230559999999982 0.995817199999999958 \N \N 0 \N \N \N NOT_AVAILABLE 152.695649446774013 -62.7272091349383984 23.0383744369235011 -12.7883054385299992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409592336047232 2505409592336047232 311523660 2015.5 26.0369234060338997 0.319392587925574012 -2.92151156175973004 0.222421777373881996 1.74722991743092004 0.332527780881586021 5.25438799999999961 -5.27949918146498032 0.825060757403417 -7.55224812280312019 0.393323034713189024 0.111007209999999995 -0.0809864899999999943 -0.406760779999999988 0.177318449999999989 -0.185075629999999991 0.170338030000000001 0.242740349999999994 0.193871540000000009 0.0344119000000000022 0.0652817900000000062 125 0 125 0 5.34055799999999969 222.199997 1.21149200115837008 6.09127864244308981 31 false 0.298848119999999995 1.38982820848440003 0.0668821405672325037 -0.00816840899999999974 14 9 0.740839959999999964 0 14 false 125 738.712054810648965 2.18195633722538984 338.554993 18.5171780000000012 11 169.89785545018799 5.31518423581595023 31.9646219999999985 19.7759189999999982 11 993.096562973427012 24.3873940732507997 40.7217180000000027 17.2694420000000015 1.57435419999999993 0 2.50647740000000008 1.2587413999999999 1.24773599999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.700696720058005 -62.7063223928064986 23.0558251826459006 -12.7759771496442003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505409661055524608 2505409661055524608 649305199 2015.5 26.0330445094785006 0.284801585441003979 -2.90975265927330007 0.123429167058923997 0.263176381932428982 0.228816154429205998 1.1501652 18.3671759691733989 0.800200757801519003 -12.6583927349301 0.226644004488244011 -0.227845120000000012 -0.598082699999999967 -0.829365730000000023 0.337892999999999999 0.148974930000000005 0.375543300000000024 0.0105953109999999996 0.662294860000000041 -0.180158289999999999 -0.225271799999999994 112 0 111 1 0.299831799999999982 109.741997 0 0 31 false 1.20144019999999996 1.51006387660682995 0.0385589812481308969 -0.0324137960000000017 13 8 0.756660939999999949 0 13 false 110 1379.63074833969995 2.99724163719788006 460.299988 17.8389589999999991 11 658.812678309190005 21.1782159203298015 31.108034 18.3044830000000012 10 1066.12011541714992 25.6765712896195986 41.5211260000000024 17.1924039999999998 1.25028589999999995 0 1.11207959999999995 0.465524669999999974 0.646554949999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.681780055232991 -62.6974898763039974 23.0565480774561991 -12.7636166620979008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410451329508608 2505410451329508608 788396296 2015.5 26.0278104618626003 1.01105741937356997 -2.88612320165327008 0.431932790439497005 \N \N \N \N \N \N \N -0.18847180999999999 \N \N \N \N \N \N \N \N \N 115 0 114 1 4.72220749999999967 193.666 2.13181788118183979 5.6198960509207101 3 false 0.0909271759999999984 \N \N -0.0432221900000000006 13 8 2.66138669999999999 0 13 false 113 327.841084824557015 1.60668121686698995 204.048996 19.3992080000000016 9 149.298898516646005 4.37628974923883973 34.1154060000000001 19.916246000000001 11 315.194464314186973 10.3950193456942994 30.3216819999999991 18.5154740000000011 1.41682470000000005 0 1.40077209999999996 0.51703834999999998 0.883733749999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.64879966382199 -62.6786038420064031 23.0604397455460983 -12.7397154218558004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505410657489704576 2505410657489704576 29763554 2015.5 26.0382369465180012 1.11550353448045003 -2.85846582373864022 0.91694193715035599 -0.0022913476990722801 1.3545077487308399 -0.00169164610000000003 1.0914681895901801 3.14628129005006008 -15.1398806186405004 2.01397535238809988 0.283750029999999986 -0.277429970000000026 0.230827389999999993 -0.00341778500000000001 -0.29035407000000002 0.114478670000000005 -0.000898190400000000019 -0.338624499999999995 0.0884580300000000069 0.180404680000000012 106 0 105 1 4.03098699999999965 167.582993 3.66218955021845005 3.07743970850909987 31 false 0.0219578609999999987 1.1586968908089601 0.25607045605638401 0.0210987000000000015 12 9 2.82088040000000007 0 12 false 105 111.196531417575002 1.49423925235980004 74.4168015 20.5731369999999991 7 21.2479492869540003 6.0182199433360104 3.53060360000000006 22.0330960000000005 9 166.347278643001999 11.0580353101718991 15.0431139999999992 19.2093810000000005 1.68706010000000006 0 2.82371520000000009 1.45995900000000001 1.36375620000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.64254211913601 -62.6491910552734979 23.0807626450807 -12.7177973889408999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505412448489201920 2505412448489201920 1612121398 2015.5 26.0360677368040001 0.157791767171866992 -2.83287413170631996 0.143680606989066012 0.798575674222036014 0.192988265986004992 4.13794950000000039 38.1726093261360973 0.36702657725087201 -7.76758790876805971 0.263060849367811989 0.251723350000000012 0.176659499999999997 0.0143833850000000003 0.113073939999999998 -0.225050510000000009 0.0954414400000000024 0.222687439999999987 -0.0629379600000000011 0.0994633300000000026 0.215239929999999996 142 0 138 4 -0.270304680000000019 127.988998 0 1.74264681471914995e-15 31 false 0.790953400000000029 1.42817043452915993 0.0403008621817829982 0.0675817900000000027 16 10 0.332038300000000008 0 16 false 138 937.813211329323053 2.12333077624984012 441.67099 18.2580759999999991 16 305.705345131125 9.68517011244735926 31.564271999999999 19.1381300000000003 16 950.028194001592965 8.15518524203029926 116.493759999999995 17.3175799999999995 1.33900179999999991 0 1.82055089999999997 0.880054499999999962 0.940496439999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.613732029162009 -62.6271843438651032 23.088307736898301 -12.6931914142449997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426497326792704 2505426497326792704 925649933 2015.5 25.8630896431337014 0.608991283306579034 -2.80667178086192992 0.394511710303484975 0.871049095301795973 0.650915407131741008 1.33819090000000007 0.94119719479923003 1.45847035899353994 -0.405604495822745992 0.67894984560885796 0.0386099440000000002 0.118231069999999994 -0.399527200000000027 0.140746029999999994 -0.185884610000000006 0.0640225559999999944 0.195781750000000004 0.233171099999999992 0.156391310000000006 0.029051805 123 0 123 0 1.90470610000000007 148.966003 1.43732333894406006 1.77392378526675998 31 false 0.0874129500000000031 0.941057558910992964 0.134339915516322989 -0.0987990200000000013 14 9 1.31030390000000008 0 14 false 122 245.477411191703993 1.78300128179480999 137.677002 19.7133369999999992 10 52.4354553952412985 10.6231415625939007 4.93596500000000038 21.0523260000000008 10 268.583698506108021 13.5886026553303001 19.7653660000000002 18.6892199999999988 1.30773399999999995 0 2.36310580000000003 1.33898929999999994 1.0241165000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.250746561286007 -62.6794478941119024 22.9334108267829997 -12.6054812020702993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414952454701184 2505414952454701184 1355364172 2015.5 25.9455748877754999 0.310512873279563006 -2.80633961522134978 0.276657092425558027 3.41031722257394021 0.370593713499800026 9.20230800000000038 94.0754698117232948 0.75997024725254303 31.8905983729992997 0.516702712356648997 0.174696330000000011 0.124902849999999996 -0.00532405000000000031 0.0751600899999999988 -0.15759245999999999 0.0357222329999999991 0.287773520000000005 -0.0804602299999999937 0.120019280000000006 0.0685231000000000035 122 0 122 0 2.56388699999999981 159.942993 1.03893178970014999 2.25150897078039014 31 false 0.218401160000000011 1.20562479739977002 0.095865445137721203 0.0137160289999999994 14 10 0.668781639999999955 0 15 false 119 447.486566642387004 1.46689635542788999 305.057007 19.0614169999999987 10 109.415820191739002 13.1881349752254007 8.29653500000000044 20.2536890000000014 10 598.050631900357985 9.17525546423146032 65.1808199999999971 17.8200760000000002 1.58097799999999999 0 2.43361280000000013 1.19227219999999989 1.24134060000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.411751385262988 -62.6431122365135025 23.0120816093028004 -12.6353807024441007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505414162181197568 2505414162181197568 1414061064 2015.5 25.9785514908230013 1.41832306499625993 -2.81436442253996022 2.20207962094657983 \N \N \N \N \N \N \N 0.406941149999999974 \N \N \N \N \N \N \N \N \N 59 0 57 2 2.52680749999999987 81.3575974 3.82239458022496992 2.45895725804746013 3 false 0.0192573569999999993 \N \N 0.230699380000000009 7 6 10.8513359999999999 0 7 false 59 87.0495836232340992 1.77080657802684005 49.1581993 20.8389500000000005 5 30.6287858876250993 8.80308287228852926 3.47932499999999978 21.6360649999999985 5 51.4008085188833022 13.121544983543 3.9172832999999998 20.484494999999999 0.942331849999999971 0 1.15156940000000008 0.797115299999999971 0.354454040000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.483808043301991 -62.6358633440418018 23.040473779376601 -12.6549192660705998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505415639649948672 2505415639649948672 348096316 2015.5 25.9911184275328999 0.0982246420081794025 -2.80855610321005011 0.0869359540297169053 0.0215001934786135003 0.118804445573542 0.180971300000000002 2.13101710468790984 0.232381148568845008 -4.70274660414671963 0.168268837917255998 0.23318388000000001 0.17413938000000001 -0.00788822399999999924 0.0933987099999999959 -0.236196640000000013 0.105285734000000006 0.170189439999999997 -0.0797075260000000008 0.050483293999999998 0.25680082999999998 143 0 142 1 2.84031250000000002 188.772003 0.0737049021786786024 0.0843660520378417961 31 true 2.05837300000000001 1.55138361576125994 0.0255108847922414991 0.0676215299999999991 16 10 0.21480413000000001 0 16 false 141 2101.75620559324989 2.84670140094981017 738.312988 17.3819100000000013 15 1189.42835210175008 17.4310211174494007 68.2363 17.6630420000000008 15 1431.84437027138006 8.31003352129233974 172.303089999999997 16.8721800000000002 1.24718210000000007 0 0.790861099999999984 0.281131740000000019 0.509729399999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.502776909599987 -62.6251284782212991 23.0546246743131 -12.6541148592380992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420138404180480 2481420138404180480 1079857438 2015.5 24.9519083299845015 5.90345517984490975 -3.06915805695100996 5.2653202739129803 \N \N \N \N \N \N \N -0.356011630000000023 \N \N \N \N \N \N \N \N \N 38 0 38 0 0.699432700000000018 38.2738991 2.69112897724669997 0.628935357561895003 3 false 0.0166840120000000015 \N \N 0.42548233000000002 5 5 13.1688869999999998 0 5 false 39 73.5549172256965988 1.63837233436670004 44.8950996 21.0218370000000014 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.683544790469995 -63.304388634154698 21.9675869927554004 -12.5145630122658993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505415502215612288 2505415502215612288 456817979 2015.5 26.0324045075222017 0.465236553349490989 -2.81193214738989017 0.414747505442789988 3.97041330099055978 0.57279831101081502 6.93160769999999982 29.4262276832761991 1.10362510478335007 -16.4176087576628014 0.739635434206243003 0.218660920000000009 0.143881000000000009 0.024175793000000001 0.113285230000000001 -0.250435679999999994 0.0953469100000000069 0.270264700000000024 -0.0775536099999999951 0.0997916300000000062 0.161338640000000005 144 0 144 0 4.9891880000000004 238.927002 2.09779492156933989 5.23078567802854 31 false 0.0863868500000000011 1.22447087682673006 0.114455297614877993 0.0600826780000000005 16 10 0.979529399999999995 0 16 false 144 280.363652572293972 1.51724146948932992 184.785004 19.5690610000000014 6 32.2369605011355986 6.35397295285763963 5.07351259999999993 21.5805030000000002 6 401.168611515890973 8.06438880090171928 49.7456930000000028 18.2536029999999982 1.54586939999999995 0 3.32690049999999982 2.01144219999999985 1.31545829999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.586508722746999 -62.6100031002494006 23.0926822441366006 -12.6723649996856995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505415502210994432 2505415502210994432 528936667 2015.5 26.0331895357109993 0.195324757735025001 -2.81204238476506996 0.164903511508257994 3.1634116508752399 0.234739587324848009 13.4762599999999999 30.8509262687814996 0.456465416136221991 -16.9779328680034993 0.301060353598274988 0.190368129999999997 0.18760288 -0.0278244150000000016 0.110486630000000002 -0.198354749999999996 0.0901927899999999949 0.229058860000000003 -0.0500934459999999998 0.101122074000000006 0.14955170000000001 140 0 137 3 4.39321569999999983 216.093994 0.797081657012595035 4.30670314898968964 31 false 0.539050040000000008 1.31845548034164994 0.0484102629659921985 0.0550352299999999975 16 10 0.405857530000000022 0 16 false 139 1025.47403727189999 2.35017636037493993 436.338989 18.1610550000000011 13 188.991260881008998 9.80110890577370952 19.2826400000000007 19.6602840000000008 13 1336.20301470153004 9.28391588270016932 143.926670000000001 16.9472389999999997 1.48730659999999992 0 2.71304509999999999 1.49922939999999993 1.21381570000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.588144137856005 -62.6097563579509995 23.0933886404686 -12.6727548173142992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481418145538092160 2481418145538092160 769411529 2015.5 24.9495300282249985 0.117792960441799002 -3.12819617309647979 0.104847872715518001 2.22950217438607012 0.142883013759672994 15.6036889999999993 42.1695516598437976 0.253656661274216988 4.15504946699399991 0.198087982295469006 0.241223080000000006 0.325206300000000004 0.0254443209999999989 0.137987140000000008 -0.199055929999999992 0.172909260000000009 0.262716029999999989 -0.096693329999999994 -0.00490057900000000039 0.325092260000000022 159 0 158 1 3.02534560000000008 211.429993 0.249352427355295003 0.771319539417743005 31 false 1.32864819999999995 1.40571870435100998 0.0296881331079601012 0.123814635000000006 18 10 0.241057130000000008 0 18 false 157 1417.78132356270999 2.19583489116760999 645.66803 17.8093429999999984 18 327.666840906825996 12.7919282629337996 25.6151260000000001 19.0628069999999994 17 1690.54533879374003 10.4837799183710008 161.253420000000006 16.6918529999999983 1.42350029999999994 0 2.37095449999999985 1.25346369999999996 1.1174907999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.733368325435009 -63.3590794032163984 21.9429803155164009 -12.5685463531464006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419726086067072 2481419726086067072 1125861988 2015.5 24.9594354569410015 0.45417149711893301 -3.10658499765879981 0.352528800529905983 -0.481030359717010025 0.563247149187833029 -0.854030700000000031 -0.773087300953686052 0.933315249817639025 -5.08401413006266978 0.636829689250702047 0.111346979999999998 0.395668330000000013 0.156742070000000011 0.119046725000000006 -0.297512920000000014 0.193029360000000011 0.307622159999999978 -0.184869869999999992 -0.0324145100000000005 0.292210499999999984 140 0 138 2 4.44938370000000027 218.634995 1.7433444929442401 6.06343975853050043 31 false 0.122411900000000004 1.58748418354795007 0.108507171909099004 0.0518083459999999982 16 10 0.857819099999999946 0 16 false 138 316.239207264853007 1.3659367592938001 231.518005 19.438326 14 112.198852344431003 14.8645996575503005 7.54805759999999992 20.2264179999999989 13 314.869189126261972 6.31707081098111978 49.844177000000002 18.5165940000000013 1.35045890000000002 0 1.7098236 0.788091659999999972 0.921731949999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.733394067286014 -63.3353124068648015 21.9605773172599008 -12.5521189370286006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419829165357440 2481419829165357440 1660404496 2015.5 24.9682187325779985 1.83437901443033002 -3.09726638170930979 1.59192595408514004 \N \N \N \N \N \N \N -0.48748022000000002 \N \N \N \N \N \N \N \N \N 66 0 65 1 1.05482110000000007 71.5602036 0 0 3 false 0.0246467159999999991 \N \N -0.00437386939999999998 8 7 5.99908160000000024 0 8 false 67 77.7864640279216957 1.51057327922981011 51.4947014 20.9611049999999999 5 51.1985747436525998 12.0493755331194006 4.24906439999999996 21.0782430000000005 6 62.8948491648796022 18.9835838557742989 3.31311769999999983 20.2653829999999999 1.4667517000000001 0 0.812860499999999986 0.117137909999999998 0.695722599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 150.742532736635013 -63.3231909316436017 21.972453669631701 -12.5466997183710003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419829165287680 2481419829165287680 625796307 2015.5 24.9749307119962012 0.284077220320723023 -3.09326327161324999 0.222555172106268989 1.12944495397131006 0.358819850958525977 3.14766570000000012 -1.20594632350464992 0.53684030365921398 -5.84210683490300031 0.399957593058896999 0.0458791850000000029 0.502841230000000028 0.0644457300000000066 0.0999194699999999963 -0.337473960000000017 0.191716730000000002 0.328732880000000005 -0.121319830000000004 -0.0546035360000000011 0.311570400000000025 149 0 145 4 0.437207000000000012 146.755005 0.45960151347318301 0.664097242168174007 31 false 0.313795119999999983 1.49425995931243993 0.0679755827485020031 0.0850307940000000068 17 10 0.500371200000000016 0 17 false 144 465.299497397811024 1.5890750249438399 292.812012 19.0190330000000003 16 160.350705186596997 13.8305021674808 11.5939899999999998 19.838709999999999 15 511.122036125397983 6.76968991313134971 75.5015400000000056 17.9906080000000017 1.44309799999999999 0 1.84810260000000004 0.819677349999999971 1.02842520000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.752399282928991 -63.3167630274796025 21.9803491108345987 -12.5454556394474999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127616 2481416564990127616 105494749 2015.5 25.0195268478733013 0.326667301032544988 -3.12777018318065991 0.169140568076474013 -0.377674373179511025 0.414534318100866994 -0.911081099999999977 8.32159054616871074 0.410437285817622011 1.06344357971765002 0.297590551531453973 -0.151141300000000006 0.784757299999999991 0.0773257799999999967 0.115420744000000006 -0.325067879999999976 -0.000249612670000000001 0.0884249299999999988 0.0571361599999999983 0.133283420000000014 0.221747100000000003 158 0 154 4 0.908373650000000032 164.524002 0.358460558650005978 0.518473346300713955 31 false 0.439388200000000007 1.64009996149367998 0.0556144632398843999 -0.00591391900000000012 18 9 0.424512119999999993 0 18 false 155 643.930853009023053 1.9784953525715101 325.464996 18.6662670000000013 16 322.913324642414011 17.1414623504795998 18.8381420000000013 19.078672000000001 13 520.704981109108985 11.9179344756161996 43.6908760000000029 17.97044 1.31010699999999991 0 1.10823249999999995 0.412405000000000022 0.695827500000000043 \N \N 0 \N \N \N NOT_AVAILABLE 150.874595096662006 -63.3295686786713006 22.0096878588466005 -12.5939704974333004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127872 2481416564990127872 1347885605 2015.5 25.021525607553599 0.167689307273025001 -3.12743990172130015 0.121771149987360994 -0.311676082145601996 0.20419914772216799 -1.52633390000000002 12.6208527727670994 0.309986702726846974 -9.01008168145651034 0.230539687618361994 0.0926255899999999938 0.52979946 0.0480862899999999968 0.0460023499999999974 -0.110764324999999997 -0.0288962549999999992 0.144133630000000013 -0.0355211200000000032 0.11945016 0.141261200000000003 158 0 157 1 -0.300501399999999974 146.169998 0 0 31 false 0.812074100000000021 1.73467735525150002 0.0391712191596432988 0.0141315420000000004 18 10 0.27684048 0 18 false 155 964.312234856554028 1.80274677528167993 534.913025 18.2278209999999987 14 538.031633890422995 15.8520554448426996 33.940809999999999 18.5243679999999991 13 646.655387647331054 11.4601256181684992 56.4265499999999989 17.7352370000000015 1.22853049999999997 0 0.789131160000000054 0.296546939999999981 0.492584230000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.878327602447001 -63.3284349783968992 22.0117132500078014 -12.5944006797732992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419760445808256 2481419760445808256 1582360054 2015.5 24.9843536329745 0.24988177379669399 -3.09973330734572006 0.20930466941496001 1.44106022816366997 0.314195229747005977 4.58651199999999992 2.6489862617420501 0.508497263767263008 -8.40541118177686997 0.414495279099517999 0.137399899999999991 0.428083199999999997 0.0798082350000000051 0.0930096950000000033 -0.288909970000000016 0.168976929999999997 0.222169460000000013 -0.143951849999999992 -0.053101398000000001 0.368000659999999979 140 0 138 2 2.10801600000000011 169.643005 0.555561949412720968 1.03439192870225005 31 false 0.36835074000000001 1.37984170396572003 0.0655514282680789984 0.115446980000000005 16 10 0.489040169999999996 0 16 false 137 533.142297826204981 1.35276663092302996 394.113007 18.871258000000001 13 126.473747775560994 4.97434896463801035 25.4251860000000001 20.096388000000001 16 668.41666402850899 6.34569097735309029 105.333950000000002 17.6993030000000005 1.4909536000000001 1 2.3970851999999998 1.22513010000000011 1.17195509999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.777448589121008 -63.3187307110119022 21.9868583261980994 -12.5549437590333 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416839868117504 2481416839868117504 502691840 2015.5 25.0078950954540993 1.88856407037106 -3.10858393207660999 7.35096763470636017 \N \N \N \N \N \N \N -0.291466469999999978 \N \N \N \N \N \N \N \N \N 52 0 52 0 -0.991220800000000013 37.4538994 0 0 3 false 0.0247799460000000006 \N \N 0.000132491289999999996 6 5 75.2540500000000065 0 6 false 52 76.5627646791757996 1.77060412443315007 43.2410011 20.9783210000000011 2 48.281043965791703 0.0220877220350054991 2185.87699999999995 21.1419469999999983 4 82.5243598003958994 17.6882918995465985 4.66547900000000038 19.9704650000000008 1.70847280000000001 1 1.17148209999999997 0.163625720000000002 1.0078564000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.833249530063 -63.3169810244607021 22.0058895372742001 -12.5718511161342992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420000963982208 2481420000963982208 828549754 2015.5 24.9481764770014003 2.72604533453410003 -3.08806347039090978 2.26209985906724986 \N \N \N \N \N \N \N 0.0991490700000000058 \N \N \N \N \N \N \N \N \N 113 0 112 1 27.9222849999999987 1252.26001 14.8999580103390006 95.7164694045988966 3 false 0.00398046239999999985 \N \N 0.124826640000000003 14 9 6.07492880000000035 0 14 false 117 125.470916648937006 1.92313146011679992 65.2429962 20.4420089999999988 11 183.234614290706986 18.7238828933331014 9.78614400000000018 19.6938689999999994 10 398.270046357886997 11.1072159690668002 35.8568730000000002 18.2614769999999993 4.63457730000000012 0 1.43239209999999995 -0.748140339999999959 2.18053249999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.693468976179986 -63.323135271392097 21.9568850803377984 -12.5307542065406992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420104043285632 2481420104043285632 1484056899 2015.5 24.9469246523465991 0.685094007040740971 -3.07979050427382006 0.582690965979081987 1.13224893082486 0.838998396283211045 1.34952450000000002 5.8572885543648896 1.3863760560143199 -9.86087262316106994 1.13079396509115004 0.214225699999999991 0.436737450000000027 0.150442049999999994 0.099476545999999999 -0.165889840000000011 0.138746170000000002 0.293677120000000014 -0.167836170000000007 -0.0192252429999999995 0.316959559999999974 115 0 111 4 2.62735960000000013 148.205994 1.88911189297967996 1.98550732956066001 31 false 0.061128557 1.47340338162465989 0.192722795612935011 0.149365219999999993 14 10 1.31455419999999989 0 15 false 110 163.798278104097989 1.21401670493311009 134.923004 20.1525919999999985 7 48.6007631546178018 8.74993442438034918 5.5544146999999997 21.1347799999999992 10 191.18193139728001 5.53238182777453957 34.5568919999999977 19.0583020000000012 1.46389020000000003 0 2.07647899999999996 0.982189199999999984 1.09428980000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.683288434029009 -63.3161275129006995 21.9588262231666 -12.5226047450645996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420104043202688 2481420104043202688 1006655243 2015.5 24.9518743395137008 3.56061692913919003 -3.07395406239127 3.14046339646615014 \N \N \N \N \N \N \N 0.205042649999999993 \N \N \N \N \N \N \N \N \N 102 0 101 1 36.1543300000000016 1968.67004 19.7574618591057991 210.520927810978009 3 false 0.00237301000000000005 \N \N 0.124143000000000003 13 9 8.43705500000000086 0 13 false 113 134.096861077632013 1.67248245077336 80.178299 20.3698200000000007 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.687907172270997 -63.3087661423426979 21.9657397610539995 -12.5190072027795001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420138402941440 2481420138402941440 345064612 2015.5 24.9652709156912991 0.495595070160474993 -3.07108876818071996 0.440700043004015996 1.61087126248823997 0.692626421502227974 2.32574319999999979 -17.344877242822399 0.992947976087472983 -10.8072930892278993 0.70017254012826402 0.097041719999999998 0.35398122999999998 0.0262718819999999999 0.151057529999999995 -0.4420539 0.156034100000000009 0.224773869999999987 -0.0344385099999999986 0.0603607970000000008 0.320497299999999985 128 0 126 2 3.41289730000000002 181.362 1.75917362701631008 3.8481510043865601 31 false 0.101200479999999995 1.45832393934022009 0.12124599789361 0.113953225000000005 15 9 0.913121900000000042 0 15 false 126 269.860507716821019 1.6231150181007199 166.261002 19.610517999999999 12 75.0376148813471957 9.06384186603012942 8.27878699999999945 20.6631900000000002 13 355.728554798167011 3.9061858671054499 91.068010000000001 18.3841229999999989 1.59625499999999998 0 2.27906800000000009 1.05267329999999992 1.22639469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.712347535812 -63.3006047696728018 21.9795579101634999 -12.5212863618056005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420069683464448 2481420069683464448 868559571 2015.5 24.9683542741300002 2.53712698609448006 -3.07298769238920011 1.93570686854472007 \N \N \N \N \N \N \N 0.120519009999999996 \N \N \N \N \N \N \N \N \N 106 0 103 3 46.6511459999999971 3269.45996 13.0369340504711992 265.960129221801026 3 false 0.00551880100000000026 \N \N 0.0639537500000000037 15 10 4.44535099999999961 0 15 false 125 318.554996486754021 3.67179705937365997 86.7572021 19.4304050000000004 15 501.536722794003992 16.0583200510205018 31.2322039999999994 18.6006320000000009 13 1062.53988279742998 5.36049626895322007 198.216700000000003 17.1960559999999987 4.90991070000000018 0 1.40457530000000008 -0.829772949999999954 2.23434830000000018 \N \N 0 \N \N \N NOT_AVAILABLE 150.720336645444007 -63.3010528756118021 21.9817702558896002 -12.5241883167577992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420963037886592 2481420963037886592 953204365 2015.5 24.9380492990066998 8.96347510697458993 -3.05295562146993005 4.78238291000998039 \N \N \N \N \N \N \N 0.744781800000000049 \N \N \N \N \N \N \N \N \N 68 0 66 2 1.52177439999999997 78.6075974 5.83343685414611013 28.6947532968396999 3 false 0.00996027399999999986 \N \N 0.239454749999999994 8 5 36.5821880000000021 0 8 false 68 70.4018655211593938 1.20620381077209005 58.3665009 21.0694049999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.640563482820994 -63.295384446200103 21.9605454413527994 -12.4943941023120004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420138402943488 2481420138402943488 829891104 2015.5 24.9598547072498995 0.41172198272938898 -3.06593762513571999 0.313916044021662011 1.50776145292703001 0.474215048489252 3.17948899999999979 7.93434419891888965 0.893186371536892953 2.31725676526217006 0.564351084392009983 0.0644240699999999999 0.300550099999999987 -0.112550020000000001 0.143976799999999988 -0.282046049999999993 0.232614949999999987 0.304835650000000014 -0.0748806399999999983 -0.0483903139999999968 0.23605081 131 0 129 2 2.70717069999999982 170.878006 0.946627976336641974 1.20067659941568006 31 false 0.153601529999999986 1.41775153415868993 0.100665775666566995 0.0199986940000000009 15 10 0.803655450000000049 0 15 false 128 302.533510571225008 1.44940830057402992 208.729004 19.4864309999999996 13 79.9427129368473004 11.2734289555566001 7.09125099999999975 20.5944399999999987 12 370.968198491101987 7.60755607623470986 48.7631230000000002 18.3385800000000003 1.49044939999999992 0 2.25586129999999985 1.10800929999999997 1.14785200000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.696636898289995 -63.2981649582442998 21.9763587826621993 -12.5145016800379008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420516360067712 2481420516360067712 978694678 2015.5 24.9637980788266987 1.31548255050871998 -3.06043206459127015 0.907033531741081034 0.922912920481694043 1.58865903878801995 0.580938339999999998 27.7753579382270992 2.51239710084291001 -45.1310184682118987 2.38637527991553 -0.253455969999999975 0.549740200000000012 -0.0324526880000000004 0.0564894800000000016 -0.482738900000000026 0.102138049999999994 -0.120983205999999996 -0.218850850000000013 -0.155048679999999994 0.474783149999999987 84 0 83 1 1.39800550000000001 96.0286026 2.40249964692690998 1.41020631469939994 31 false 0.030797386999999999 1.69921307327299997 0.327647144928522982 -0.0178558940000000006 10 8 2.62199230000000005 0 10 false 83 109.911567657494999 1.46636369120690002 74.9552002 20.5857559999999999 8 110.035025656141997 10.4132830981436992 10.5667939999999998 20.24756 8 147.466599171385013 42.2555142840395987 3.48987820000000015 19.3401850000000017 2.34280730000000004 0 0.907375339999999975 -0.338195799999999991 1.24557110000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.699521460341003 -63.2915214256371996 21.9821902446416999 -12.5108400889258995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421272274318720 2481421272274318720 779474683 2015.5 24.9657318668442016 0.708136225931373042 -3.04700979685064022 0.712190006822971955 3.90867471046929005 1.16236533318465995 3.36269039999999997 25.2203657042541991 2.17329610629592018 -0.0461419220560342 1.18029586674618003 0.47587305000000002 -0.402162999999999993 0.625564800000000032 0.281000550000000016 -0.741347300000000042 0.565134939999999975 0.371490659999999973 -0.685711260000000045 -0.306628970000000001 0.518520800000000004 85 0 84 1 3.29862140000000004 127.222 1.8928126482535601 3.43120212583594997 31 false 0.103273086 1.46810310033752001 0.153643716256971014 0.0967243500000000006 10 7 2.17258450000000014 0 10 true 84 269.099828142159026 1.5646677825011599 171.985001 19.6135829999999984 7 60.6236233967789033 20.6461381210726991 2.93631799999999998 20.8947830000000003 8 409.141876994259974 13.2020466379963999 30.9907910000000015 18.2322349999999993 1.74569229999999997 0 2.66254800000000014 1.28120039999999991 1.38134770000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.691033709419003 -63.2785088663317978 21.989106640349501 -12.4990803112453008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420275841896192 2481420275841896192 1310315705 2015.5 24.9993764727190992 0.723999578421955947 -3.06845540068262013 0.620685696203485016 -1.64874953200195007 0.884269217027836008 -1.86453340000000001 9.65402195053443002 1.49301548933194006 -2.72625987011323012 1.26876212369937003 0.140060650000000009 0.422075450000000019 0.118900165000000002 0.0652166460000000031 -0.21841060000000001 0.130064249999999992 0.284569679999999992 -0.163672490000000004 -0.055204472999999997 0.295078000000000007 130 0 128 2 3.51611640000000003 185.921005 2.61338470505627019 3.96256718432087984 31 false 0.0448064840000000006 1.4787008112703599 0.182099904259076989 0.110461920000000005 16 10 1.41683730000000008 0 16 false 128 160.046700300426011 1.2798213153506599 125.054001 20.1777499999999996 9 70.6693144297833982 12.3689382399023007 5.71345040000000015 20.728311999999999 10 219.597245521488986 22.0105291088886013 9.97691799999999951 18.9078519999999983 1.81363669999999999 0 1.82045940000000006 0.550561900000000048 1.2698974999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.778823566373006 -63.2840470226758995 22.0129744433782015 -12.5314180844538008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420550719811072 2481420550719811072 128152891 2015.5 24.9860565258329004 0.26836966235467602 -3.05151866441338004 0.215212695601534998 1.10626089247649007 0.330213087900806002 3.35014250000000002 -10.8773634497254008 0.536852464560019005 -7.78680481510205968 0.395681991774831987 0.052988109999999998 0.443798150000000002 0.0936487000000000014 0.0725790199999999941 -0.291976300000000022 0.13157242999999999 0.337118739999999972 -0.126280429999999999 -0.0325216430000000029 0.233401780000000003 143 0 142 1 2.88335799999999987 189.656006 0.634218369502004053 1.19080769598394998 31 false 0.329918700000000009 1.48683824304860002 0.0658423152297319958 0.0752556199999999953 17 10 0.489278349999999973 0 17 false 142 524.07799314248598 1.87941550844001992 278.85199 18.889875 12 165.027623320586002 8.92708430196069003 18.4861739999999983 19.8074970000000015 12 584.22061894256899 16.6096754279087016 35.1735100000000003 17.845478 1.42965030000000004 0 1.96201899999999996 0.917621600000000037 1.04439740000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.736253599227013 -63.2741790495591019 22.0067200093657007 -12.5107664715976004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421547152287488 2481421547152287488 561542079 2015.5 24.9406599653138983 9.0186250967917605 -3.02957765036950022 2.74462123535901004 \N \N \N \N \N \N \N 0.855459149999999946 \N \N \N \N \N \N \N \N \N 69 0 69 0 -1.24357059999999997 50.3660011 0 0 3 false 0.0276316090000000014 \N \N 0.0366150030000000001 8 6 40.9373739999999984 0 8 false 69 87.6962746722909969 1.19456196580096008 73.4129028 20.8309139999999999 5 75.3185371035463049 6.61087557564544959 11.3931260000000005 20.6591340000000017 6 85.5306585875615042 19.8063918878049989 4.3183360000000004 19.9316160000000018 1.83416219999999996 0 0.727518099999999945 -0.171779629999999989 0.899297699999999978 \N \N 0 \N \N \N NOT_AVAILABLE 150.62429747954701 -63.2730270899051987 21.9718721247594004 -12.4736329097907994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421581512227072 2481421581512227072 570913100 2015.5 24.9521119362008008 0.121645359864742994 -3.01653627956306991 0.0887538272919197041 0.322923995767969985 0.141410251192017 2.2835968000000002 2.63245707168595011 0.24013530630978 -14.9107792919394999 0.169995225749874995 0.0823635800000000057 0.466878029999999999 -0.0784176199999999934 0.0991764700000000027 -0.193728480000000008 0.159261509999999995 0.244121060000000001 -0.0660609199999999952 -0.0227874350000000017 0.240901339999999992 149 0 149 0 1.8568032000000001 177.098999 0.175857925461103987 0.422428696704743978 31 false 1.67182270000000011 1.60070297979267995 0.0279646772283423002 0.0241241859999999989 17 10 0.220177050000000013 0 17 false 148 1817.66636596340004 3.24559954477106993 560.039978 17.5395800000000008 12 1016.12419498494 23.4797118223871983 43.276688 17.8340199999999989 13 1287.72335996479001 11.9347179358498003 107.897260000000003 16.9873639999999995 1.26747549999999998 0 0.846656799999999987 0.294441220000000003 0.552215600000000029 \N \N 0 \N \N \N NOT_AVAILABLE 150.635425679235993 -63.2564199264188005 21.9876897289804987 -12.4657380707153997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421684591190784 2481421684591190784 792883187 2015.5 24.9584119420165003 0.123557587218176002 -3.01954295375149995 0.0928251457071379016 0.126480782620049997 0.142412300806787989 0.888131000000000004 2.72105349368103022 0.241885430194172996 -3.22957929230795981 0.178774959421334007 -0.0048572197999999997 0.45816287 0.0383989500000000011 0.0510851140000000009 -0.20865091999999999 0.104774489999999998 0.295225599999999977 -0.109327115000000002 -0.0280865000000000004 0.150117439999999991 139 0 139 0 1.77339200000000008 164.414001 0.171427337918583 0.391375755278789983 31 false 1.64942509999999998 1.66339584897335002 0.0296338714818276013 -0.00685157160000000008 16 10 0.218703690000000006 0 16 false 135 1792.07364153033996 2.31639928051628008 773.645996 17.5549759999999999 12 961.324281146137992 17.9309242493426986 53.6126440000000031 17.8942130000000006 12 1266.2903965350099 19.6896421065201999 64.3125150000000048 17.0055869999999985 1.24303750000000002 0 0.888626099999999974 0.339237200000000017 0.549388899999999958 \N \N 0 \N \N \N NOT_AVAILABLE 150.650918260568005 -63.2565489276026014 21.9925400172425007 -12.4708558258100002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421478432761472 2481421478432761472 542766763 2015.5 24.974211361312399 0.477656277331259982 -3.01701402654089001 0.369105594018930006 1.04314875754586001 0.575888967316072975 1.81137130000000002 16.6286479800556997 0.993120144030916974 -32.3636224790728022 0.659753830088250948 0.0876966339999999955 0.391389639999999983 -0.0210923899999999991 0.116190089999999996 -0.287406620000000002 0.169740350000000012 0.314153300000000024 -0.0818486300000000055 -0.0148039209999999994 0.249598320000000012 142 0 142 0 5.02473349999999996 237.179001 1.62648775986058003 3.52601798622956997 31 false 0.105019583999999999 1.31374520741691003 0.114712448504143999 0.0664682000000000051 16 10 0.895157749999999974 0 16 false 140 270.810906916571014 1.61497048913702002 167.688004 19.6067 10 89.543793879633597 12.3641840418352995 7.24219200000000018 20.4712999999999994 12 318.462382330694993 8.67233082115692966 36.72166 18.5042739999999988 1.50660909999999992 0 1.96702580000000005 0.864599200000000012 1.10242649999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.680486627837013 -63.2477041392458972 22.0085130291617013 -12.4743326915158992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421581512227200 2481421581512227200 1313738361 2015.5 24.9511663416140017 0.158631731322579989 -3.01500997210272015 0.148207251329317002 0.0360508153381339028 0.204215983025897996 0.17653278 2.82589750681405016 0.355412467213987004 -7.43608223855498007 0.281837493917448001 0.131863449999999993 0.33034195999999999 0.0356142259999999988 0.170282970000000006 -0.417687150000000007 0.421492729999999982 0.517223300000000052 -0.287625520000000023 -0.288796039999999976 0.462152449999999992 139 0 138 1 1.40903719999999999 156.585007 0 0 31 false 0.948947100000000043 1.59638264521205997 0.0406324054421082978 0.0533050899999999994 16 9 0.361377749999999998 0 16 false 138 1083.67660708148992 2.37663489530343996 455.971008 18.1011160000000011 14 535.319125551396951 16.8002641435818987 31.8637329999999999 18.5298559999999988 12 830.719253104850964 22.9285167090854003 36.2308299999999974 17.4632840000000016 1.26055910000000004 0 1.06657219999999997 0.428739550000000025 0.637832639999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.632110647979005 -63.2554219946904013 21.9873683934210007 -12.4639709140839994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421684591444608 2481421684591444608 175438027 2015.5 24.9657885669797004 0.309742383871785987 -3.00900192689692014 0.244541497426785992 0.922645960115608954 0.373686142705380975 2.46904000000000012 -0.0566651650302996968 0.649017020388028998 -4.32035920878224022 0.454775064129977979 0.094885259999999999 0.386990600000000018 0.0882854099999999947 0.10249482 -0.274270830000000021 0.180016220000000005 0.328272000000000008 -0.160311669999999989 -0.0502348400000000028 0.263394120000000009 157 0 153 4 1.91273870000000001 182.639008 0.302461259734293997 0.197794473814133009 31 false 0.225676099999999991 1.45759333875558994 0.0783695034968580062 0.0605788699999999999 18 10 0.5927867 0 18 false 153 368.550319677945026 1.83905824887727998 200.401993 19.2721230000000006 14 88.244500032625993 11.6121432332399994 7.59932949999999963 20.487169999999999 15 425.949343325794018 8.5015713243949893 50.1024249999999967 18.188524000000001 1.39517950000000002 0 2.29864500000000005 1.21504590000000001 1.08359910000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.656102757203001 -63.2439025018874972 22.0035380656243014 -12.4637806893972005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421787670664704 2481421787670664704 387226320 2015.5 24.9546486699959011 0.504096567656412975 -2.99867405849947 0.400541256762221021 -0.204245673684453011 0.611552139785281001 -0.333979159999999997 -0.866891303852403983 1.16803299873107003 -1.96008125909519992 0.790165004621209976 0.141382129999999995 0.252944999999999975 0.208562720000000007 0.104571626000000001 -0.282202600000000026 0.199991300000000011 0.293810340000000003 -0.278684229999999977 -0.0930152239999999936 0.299315300000000006 141 0 140 1 -1.2313921000000001 115.160004 0 0 31 false 0.0894290900000000027 1.7072778959149999 0.138380906435315004 0.031472143000000001 16 10 1.07696900000000007 0 16 false 140 189.043524358382001 1.5286170241041499 123.669998 19.9969619999999999 11 92.9497132009561966 11.8177367470860002 7.86527200000000004 20.4307690000000015 13 135.805152976326013 9.84326484041874927 13.7967589999999998 19.4296299999999995 1.2100645000000001 0 1.00113870000000005 0.433807370000000025 0.567331299999999983 \N \N 0 \N \N \N NOT_AVAILABLE 150.624109771587996 -63.2391129679757 21.9968569523090984 -12.4500744484601995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421444073020416 2481421444073020416 231129677 2015.5 24.9965545808266008 1.26205409989099993 -3.02370742963212003 0.989711104776913042 -2.57532337295809999 1.50917594478816008 -1.70644339999999994 5.14267201255283002 2.4072701259125 4.39889453380889961 1.83248055924653008 0.174950329999999987 0.483616099999999993 -0.061581284 0.138127570000000005 -0.187774699999999989 0.15071422000000001 0.197359160000000006 -0.000959443399999999956 0.0475072340000000023 0.324724500000000027 122 0 122 0 25.4404809999999983 1094.15002 6.91350490623184033 61.2786522533988034 31 false 0.0177445560000000016 1.2191520394131401 0.270003319999156999 0.120565740000000005 14 10 2.23494480000000006 0 14 true 125 287.816719640735982 4.00759128575316037 71.8179016 19.5405750000000005 14 268.701635470445012 18.2670574816141986 14.7096289999999996 19.2782119999999999 14 620.010302274302944 8.59009022825559043 72.1773900000000026 17.7809220000000003 3.08777049999999997 0 1.49728970000000006 -0.262363430000000009 1.75965309999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.731750325849987 -63.2445267523419972 22.0272185156828009 -12.4887924135614998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426598033777152 2481426598033777152 640280636 2015.5 25.0244405339349996 0.788332017382115002 -3.01919496176282998 0.550098423637027989 -0.032801350077481202 1.03877550704382005 -0.0315769399999999978 -0.67042974138971001 1.3867245560502599 -2.25583144986562001 1.26319997902063008 -0.255280400000000018 0.639547349999999959 0.0553287530000000013 -0.121371283999999996 -0.535043500000000005 0.163388670000000014 0.241470739999999989 -0.237942189999999998 -0.286714670000000005 0.423491479999999976 131 0 131 0 -0.789728160000000012 113.252998 0 0 31 false 0.0594151880000000007 1.67059870555912005 0.195995395720451993 0.0691197139999999988 15 9 1.42769940000000006 0 15 false 130 153.017264054663002 1.28915827584410003 118.695 20.2265149999999991 10 100.361682544158995 14.8054222863916998 6.77871130000000033 20.3474670000000017 13 105.042523698072998 8.96417949897016086 11.7180300000000006 19.7085079999999984 1.34235970000000004 0 0.638959900000000025 0.120952606000000004 0.518007299999999948 \N \N 0 \N \N \N NOT_AVAILABLE 150.783816813646013 -63.2288385278795033 22.0554320881232009 -12.4948804697169003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426598034029056 2481426598034029056 642894073 2015.5 25.0284035131750002 5.22264494607968999 -3.01435559900598982 6.92920332093904978 \N \N \N \N \N \N \N -0.079788479999999995 \N \N \N \N \N \N \N \N \N 52 0 52 0 7.87176299999999962 170.503998 12.1950576725763007 11.2545639975603997 3 false 0.0042044357000000001 \N \N 0.187444940000000004 6 6 26.5660929999999986 0 6 false 52 71.8716399057113051 1.43579615409549999 50.0569992 21.0469720000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.787330907256006 -63.2227907838047969 22.0610291127606004 -12.4918439499975999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426632393767808 2481426632393767808 71236811 2015.5 25.0392154422271993 0.592929475594598965 -3.0137435435702602 0.417220317370582017 1.00583365953130999 0.775238897338021982 1.29744999999999999 5.8598283227245096 0.964612019846261992 4.09950578325403026 0.684006643836460038 -0.271517430000000004 0.645630000000000037 0.0985485200000000006 -0.0407879579999999992 -0.559200350000000013 0.167507039999999996 0.396400870000000016 -0.138221790000000011 -0.175292720000000013 0.264924800000000016 160 0 160 0 2.83572669999999993 209.664001 1.16080658794624991 1.41455538214700005 31 false 0.0945180099999999995 1.15849432418942011 0.121853978479809999 -0.00145060099999999993 18 9 0.890791699999999964 0 18 false 158 239.040855486827013 1.2213555930715001 195.718002 19.7421860000000002 14 72.5465530136606986 10.8950482316222992 6.65867200000000015 20.6998460000000009 16 324.104085570354016 13.1658676382104005 24.6169949999999993 18.4852090000000011 1.65934240000000011 0 2.21463780000000021 0.957660700000000031 1.25697710000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.808550302431001 -63.2177367546541973 22.0715382854778994 -12.4952608313071991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426632393568384 2481426632393568384 156998905 2015.5 25.0448567703202016 1.78374908309716007 -3.01771385709677009 1.20830836693690991 0.0661115841932945064 2.06004838524077005 0.0320922469999999974 -1.1404076611076801 2.82617877404058992 0.0884987608751783006 3.55862986308574003 -0.418356329999999998 0.689417959999999996 0.133251640000000005 -0.367092160000000001 -0.544465839999999979 -0.0153877479999999997 0.332795379999999974 -0.140790520000000002 -0.42221183000000001 0.237967220000000007 96 0 93 3 1.22095799999999999 104.462997 2.7800629100479699 1.30657084819366998 31 false 0.018348863 1.09596783328068992 0.370100999331584024 -0.0228344559999999995 12 7 3.41854000000000013 0 12 false 96 82.7704709423802996 1.32301954704905 62.5617981 20.8936770000000003 9 60.896686392282497 10.5557710822314998 5.76904199999999978 20.8899040000000014 10 64.7595474484469946 11.9452366264762002 5.42136999999999958 20.2336600000000004 1.51812879999999994 0 0.656244300000000003 -0.00377273559999999992 0.660016999999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.823587648088989 -63.2189976270004976 22.0753998821842998 -12.5010302610974993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426323155868160 2481426323155868160 808480484 2015.5 25.0470718752204995 0.381137368271406984 -3.02502415092670018 0.258203417597912988 1.79835735905687 0.502629913966391006 3.57789560000000018 0.115142770826938995 0.592615920600973012 -11.3343477960480996 0.394685366748173005 -0.278642149999999977 0.663931599999999955 0.0198141949999999997 0.0294441149999999999 -0.555917259999999969 0.154852849999999986 0.335375040000000013 -0.0736475600000000008 -0.0763218499999999966 0.23767814000000001 168 0 167 1 10.7973389999999991 443.128998 1.55915963250503009 12.1950009207114007 31 false 0.229314099999999993 1.23200032070437993 0.0748971011339712028 -0.0113540370000000009 19 9 0.538518300000000005 0 19 false 168 760.899582805746945 2.8349610272295398 268.398987 18.485047999999999 17 144.969869551834989 11.6134414566051998 12.4829380000000008 19.9481949999999983 17 1087.20174415429005 17.6714346949769983 61.5231169999999992 17.1711440000000017 1.61936159999999996 0 2.77705000000000002 1.46314619999999995 1.31390380000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.834816207307 -63.2247196175164987 22.0747416260110008 -12.5086408107944003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426632393766528 2481426632393766528 545477588 2015.5 25.0472244861360984 0.621892128156143031 -3.01667961351735014 0.447253973433152985 -0.660838825302436983 0.821528233115812023 -0.804401799999999945 1.30888544266008999 1.00318893805357989 -3.41796481738761004 0.714225275152977956 -0.233972010000000008 0.650009900000000029 0.0965623199999999932 -0.0110348119999999997 -0.54599816000000001 0.202726380000000012 0.433928040000000015 -0.14304747000000001 -0.171495750000000002 0.289010880000000026 159 0 157 2 2.7628102000000001 204.625 1.43061306564593993 1.77887381182646998 31 false 0.0873958299999999938 1.56418228844786 0.126399639646881001 0.00434155160000000012 18 9 0.937031399999999959 0 18 false 157 243.216270306567992 1.50269537631153005 161.852997 19.7233850000000004 14 97.8497554182422959 10.3596848219353994 9.44524499999999989 20.3749889999999994 17 240.929156449867008 8.20575064824440936 29.3610129999999998 18.8071960000000011 1.39291209999999999 0 1.56779289999999993 0.651603700000000008 0.916189200000000037 \N \N 0 \N \N \N NOT_AVAILABLE 150.827400133900994 -63.2170717376309028 22.0780417363746011 -12.5009418254863007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426426235136384 2481426426235136384 1384167078 2015.5 25.0657381020596013 2.65972760757479021 -3.02488052433038979 4.16141549933282029 \N \N \N \N \N \N \N -0.426600749999999973 \N \N \N \N \N \N \N \N \N 70 0 69 1 1.19426579999999993 77.7233963 2.52026571763677998 0.74173259138974601 3 false 0.0166228770000000012 \N \N 0.261560320000000013 9 6 12.4103589999999997 0 10 false 71 98.9137438335012007 1.89646433825669991 52.1568985 20.7002239999999986 7 75.7953181607237951 7.97638628478109002 9.50246300000000055 20.6522830000000006 7 69.2556163767342952 7.88002913728747956 8.78875200000000056 20.1607820000000011 1.46643870000000009 0 0.491500849999999989 -0.047941207999999999 0.539442059999999945 \N \N 0 \N \N \N NOT_AVAILABLE 150.872279970878992 -63.216809967564302 22.0925413337849008 -12.5153875944379998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426705408461696 2481426705408461696 887320389 2015.5 25.0405190200646999 4.35014809696378979 -3.00914514999778016 3.1547625671922801 \N \N \N \N \N \N \N -0.247411799999999987 \N \N \N \N \N \N \N \N \N 72 0 69 3 56.5872299999999981 5199.16016 16.4695499520429003 665.840171253581047 3 false 0.00362267299999999987 \N \N 0.0697139650000000027 17 9 6.4512590000000003 0 18 false 160 726.669236026006956 9.79954659628566915 74.1533966 18.535025000000001 17 1138.85350377731993 17.6933627003573015 64.3661400000000015 17.7102180000000011 17 2482.11560173519001 24.1473554853544989 102.790369999999996 16.2748640000000009 4.98296739999999971 0 1.43535419999999991 -0.824806200000000045 2.26016040000000018 \N \N 0 \N \N \N NOT_AVAILABLE 150.806924267032997 -63.2130141577924007 22.0745160519441015 -12.4914677177666 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426671048723200 2481426671048723200 104650618 2015.5 25.0615132328240016 0.0278131913662664002 -3.00748452366643981 0.0265824901553341 1.28044753202313011 0.0410089100271232992 31.2236420000000017 18.8617990147091987 0.0629828221777176955 -42.5338096069110989 0.059796807906308598 -0.0182979199999999988 0.424811329999999987 -0.0170978479999999988 0.0352065800000000012 -0.56078349999999999 0.35009636999999999 0.350420180000000026 -0.323987799999999992 -0.330432530000000002 0.570483199999999968 169 0 168 1 -1.26760359999999994 140.561996 0 0 31 true 54.0797540000000012 1.61915604423526993 0.00764490097805483031 0.0498408040000000024 19 9 0.0788697500000000024 0 19 false 167 44265.4764021748997 14.4769943196028006 3057.63989 14.0732029999999995 17 23915.8447482693991 37.1014058761722012 644.607499999999959 14.404674 15 29618.4495352332015 47.1320977570714987 628.413599999999974 13.5830145000000009 1.20939160000000001 0 0.821659099999999976 0.331470500000000001 0.490188599999999974 \N \N 0 \N \N \N NOT_AVAILABLE 150.847663538874002 -63.2027630273756031 22.0951014380781992 -12.4976626358452005 100001 5809.85986 5766 5946 0.107000001 0.0130000003 0.196199998 0.0502999984 0.00490000006 0.0979999974 200111 1.01818279999999994 0.972092799999999979 1.0337327999999999 1.06416700000000009 0.986793400000000043 1.14154059999999991 +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426460596188800 2481426460596188800 492221782 2015.5 25.0690267630746 1.03638486640471994 -3.0192382220497298 0.670756874193031982 3.46692905799842022 1.18184225145106003 2.93349549999999981 -2.2989120548153501 1.68454674183411002 -20.8974988292683008 1.67718811472649998 -0.161780740000000006 0.664748200000000011 0.0803757999999999972 -0.0895745800000000009 -0.333967799999999981 -0.0856494099999999953 -0.106894955 -0.0382552300000000012 -0.066385890000000003 0.302021299999999993 128 0 127 1 -0.0026299069999999999 121.293999 0 0 31 false 0.0340362940000000017 0.989061474653709971 0.255266593055052005 0.0182403940000000001 16 8 1.68299620000000005 0 16 false 131 113.805003763734007 1.32680529659231006 85.7736969 20.5479619999999983 9 56.5865582941152994 8.79236923311131946 6.43587159999999958 20.9696040000000004 12 166.368115777876 5.86965803147032972 28.34375 19.2092460000000003 1.9590938 0 1.76035879999999989 0.421642300000000025 1.33871650000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.873673075520003 -63.2103117646415029 22.097800947342801 -12.5113557301352003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423849254959872 2481423849254959872 1246140311 2015.5 25.106005620198701 1.71418356423088003 -3.01424366458173987 2.82381255827377009 \N \N \N \N \N \N \N -0.147241640000000007 \N \N \N \N \N \N \N \N \N 89 0 89 0 2.88052600000000014 126.264 4.00589098424775969 1.98218137209690992 3 false 0.0135820409999999996 \N \N -0.0550865980000000005 11 8 7.97655150000000024 0 11 false 94 90.490021816728003 1.52311309485451996 59.4112015 20.7968639999999994 9 65.4310083049167019 10.2906559632317993 6.35829299999999975 20.8119300000000003 9 83.8025146485194057 21.1341354107083994 3.96526809999999985 19.9537769999999988 1.64917099999999994 0 0.858152400000000037 0.0150661470000000002 0.843086239999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.943442756836987 -63.1903358541041982 22.1348456759895988 -12.5203407281749008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426838553328000 2481426838553328000 248749658 2015.5 25.0800074901780015 1.79728665703974011 -3.00075515532699999 0.961590113424994009 1.42166034653845008 1.98796045774948005 0.715135100000000024 9.53554792106234927 2.34798875739969981 -2.95773095551902987 2.10372795783113986 0.183955060000000004 0.783847399999999972 0.0400313620000000009 -0.0566532400000000005 0.0764736159999999943 -0.05253501 -0.12609534 -0.0297964640000000017 -0.0460692830000000025 0.281960900000000014 96 0 95 1 -1.04417000000000004 76.1075974 0 0 31 false 0.0210671699999999996 1.23079654526888005 0.370851088262152018 0.0864286100000000029 12 8 2.23556180000000015 0 13 false 98 87.8536376203201002 1.45128805670655003 60.5349007 20.8289660000000012 8 56.2132656814697 7.40845448891047997 7.58771850000000025 20.9767909999999986 10 128.824500111076986 12.4546368915471994 10.3434969999999993 19.4869230000000009 2.1062050000000001 0 1.48986820000000009 0.147825239999999997 1.34204290000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.87865064518499 -63.1889381651023996 22.1152269303657008 -12.4982241262762006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426877207153280 2481426877207153280 1507470124 2015.5 25.0944587266619017 0.603476874605450964 -3.00157648189760984 0.391942408587566016 0.728544072367118045 0.680510693087018947 1.07058429999999993 0.958503117189702047 1.03452054209944011 -1.36901130409739991 0.678913481427445009 -0.111180760000000003 0.558393539999999966 0.0751451699999999972 0.083758390000000002 -0.283132170000000016 0.0612278399999999987 0.233763870000000012 -0.0203095260000000014 0.0838346299999999933 0.117621970000000006 158 0 157 1 0.699825299999999983 163.828995 0.853975172479702005 0.468696834956458974 31 false 0.0748085299999999981 1.82293534024106996 0.129161345491528995 -0.00984904999999999982 18 10 0.914023699999999995 0 18 true 154 217.886311162064004 1.42421218913183001 152.987 19.8427900000000008 14 183.247105509018013 14.2792317951175995 12.8331199999999992 19.693795999999999 12 130.903468891408011 8.82488811938645057 14.8334430000000008 19.4695420000000006 1.44180970000000008 0 0.224254609999999993 -0.148994450000000001 0.373249050000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.908476647816997 -63.1836538740695985 22.1286552079401986 -12.5043126913782991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423849254961280 2481423849254961280 485853015 2015.5 25.1121739641351986 0.245350923272862009 -3.01125705577118019 0.167018870666593988 0.538247301660878974 0.289618258815100005 1.85847159999999989 1.52593564179216989 0.433018549344999004 -0.65228352420518898 0.307379776085696998 -0.0411351059999999977 0.553613299999999975 0.0562154279999999978 0.0764767900000000028 -0.257479820000000026 0.00382873100000000015 0.113473240000000003 0.0130713570000000005 0.127602490000000013 0.157891379999999998 166 0 165 1 3.79703519999999983 237.121002 0.792179505940692974 2.88613571743516983 31 false 0.394825130000000024 1.60334471304616999 0.0518759694775864991 0.0150579660000000008 19 10 0.385953040000000025 0 19 false 165 800.251603386271995 1.80299924992566996 443.845001 18.430299999999999 16 370.841925986107981 10.0502916578600008 36.8986239999999981 18.9284150000000011 18 659.628636403847054 6.22962493127382011 105.885769999999994 17.7136700000000005 1.28768320000000003 0 1.21474459999999995 0.498115540000000023 0.71662899999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.95307279909099 -63.1850448754774021 22.1418391341541003 -12.5198375763262 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426804192464128 2481426804192464128 880814126 2015.5 25.1113901572111011 0.0667317337374782049 -3.00408341682941993 0.0482379600524538987 1.01521038541335007 0.0794544018524921958 12.7772699999999997 -5.81255816793227975 0.121143454172601001 -14.8096625619103008 0.0978108821582536064 -0.0201874299999999993 0.529781159999999973 -0.010279425 0.0572342569999999967 -0.274735200000000013 -0.044334819999999997 -0.111601720000000001 0.0488241349999999977 0.154456509999999991 0.240915459999999998 169 0 161 8 -0.238128680000000009 151.177994 0.181920464362838014 1.38235764457345001 31 true 5.35353369999999984 1.50727736265741008 0.0151034927323117005 0.0221813800000000005 19 10 0.115784899999999996 0 19 false 160 6048.10525569113997 4.22582097155776015 1431.22998 16.2343179999999982 18 2684.02256635907997 20.5175682207662007 130.815830000000005 16.7794230000000013 18 4844.54041713849983 16.4327068521435002 294.810850000000016 15.5487880000000001 1.24478040000000001 0 1.23063469999999997 0.545104999999999951 0.68552970000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.944840729830986 -63.1788577769901991 22.1438050499385994 -12.5128812517660997 100001 4825.81982 4713.22998 4951.41992 0.193000004 0.0900000036 0.355599999 0.0926999971 0.0439000018 0.165999994 200111 0.739137000000000044 0.702113100000000045 0.7748699 0.266948760000000007 0.22330831000000001 0.31058920000000001 +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423784830450688 2481423784830450688 1341124804 2015.5 25.1284059771274997 4.74034521733251957 -3.01882596744298981 5.57531077604452996 \N \N \N \N \N \N \N 0.778111760000000041 \N \N \N \N \N \N \N \N \N 57 0 56 1 1.10852459999999997 62.2700996 4.43844010059348992 1.90265396843496992 3 false 0.0117301850000000006 \N \N 0.184598330000000005 7 5 11.8815810000000006 0 7 false 58 83.7102502539087965 1.64740813499830008 50.8133011 20.881418 4 50.0786739069810025 28.8222497589085016 1.73750049999999989 21.1022570000000016 5 129.548266082281003 20.4983499653497994 6.31993630000000017 19.4808400000000006 2.14581780000000011 1 1.62141610000000003 0.220838549999999995 1.40057750000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.992729244625991 -63.1851262141248 22.1544119994482003 -12.5328528303443996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423887909934720 2481423887909934720 1605850545 2015.5 25.1353075201566014 0.475495393130178023 -3.00696644448734007 0.317748135363854989 -0.74554106914970697 0.538392878678999987 -1.38475290000000006 -1.56529711905811997 0.843547608189560982 -3.30116482284932999 0.627687855826533969 -0.100374870000000005 0.552798400000000023 0.136959539999999991 0.0151211950000000005 -0.273865199999999975 -0.0432347579999999981 0.0688652200000000048 -0.0165102739999999984 0.0884884150000000008 0.136000869999999996 159 0 159 0 0.125464249999999999 155.539993 0 3.23895439065716995e-15 31 false 0.110785596 1.59685869273714998 0.104287706915059994 0.0204367080000000013 18 10 0.752424500000000052 0 18 true 158 275.150550027508018 1.44028648843580998 191.039001 19.5894399999999997 15 151.089733471371005 9.57822397184014918 15.7742950000000004 19.903300999999999 17 191.100288836597997 7.81780968886005034 24.4442230000000009 19.0587669999999996 1.2436465000000001 0 0.844533899999999949 0.313861849999999998 0.53067209999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.995576752121991 -63.171469817092003 22.1654559063528005 -12.5243722877543995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423917974440576 2481423917974440576 1131704592 2015.5 25.1436230648160013 0.74152233008025803 -3.00500690103396995 0.484880327726483984 0.532899209148115949 0.829883761800020991 0.642137170000000035 3.51410819742386993 1.30749610656908 -2.18874487485877989 1.00333121936098002 -0.0756061600000000056 0.563991840000000022 0.173279060000000013 -0.0190718489999999984 -0.217631849999999988 -0.0867704599999999937 0.0140080020000000003 -0.0308684349999999996 0.0823533399999999971 0.130827229999999989 137 0 136 1 2.49451109999999998 174.858002 0.941200729908895029 0.405120544987857989 31 false 0.0547040180000000001 1.53921420341611004 0.163501769175563 0.0609524730000000001 16 10 1.17044440000000005 0 16 false 136 176.920603628624008 1.32481135433166997 133.544006 20.0689199999999985 12 112.856665200132994 6.85586989664238988 16.4613189999999996 20.2200699999999998 13 113.381481950652002 8.70234457779110038 13.0288430000000002 19.6255650000000017 1.27875519999999998 0 0.594505300000000014 0.151149749999999999 0.443355559999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.010457869620012 -63.1662083779173997 22.1741030080326986 -12.5256141254786009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425395443283968 2481425395443283968 1224742741 2015.5 25.1573729477390984 2.15907415993806984 -3.00222771410328981 3.59544387833219004 \N \N \N \N \N \N \N -0.438116999999999979 \N \N \N \N \N \N \N \N \N 74 0 73 1 -1.49678040000000001 51.4402008 0 0 3 false 0.0161780159999999999 \N \N -0.109418294999999999 9 6 10.0085499999999996 0 9 false 75 81.2224869641241014 1.72220423901175002 47.1618996 20.9141750000000002 5 48.619302227046802 15.6518879151402004 3.10628990000000016 21.134367000000001 6 37.994789319152801 10.1074306198770003 3.7590946999999999 20.8126099999999994 1.06638070000000007 0 0.321756360000000019 0.220191959999999992 0.101564409999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.035481007236996 -63.1579235519143012 22.1882271614175011 -12.5280955213477991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425120565026816 2481425120565026816 118268479 2015.5 25.1812406205539006 0.116680813825501994 -3.02176812446072995 0.0744471397167568993 1.19290623856495004 0.140386987151393 8.49727099999999957 0.0400739112996680996 0.188425543396007006 -0.0143982431574861992 0.136073725718830002 0.0313385700000000031 0.629093299999999966 0.0248590729999999989 0.113739789999999993 -0.158134190000000008 0.0126925479999999997 0.0829465239999999937 0.0325332499999999997 0.159122440000000004 0.178135619999999995 156 0 154 2 0.845062729999999984 163.358994 0.0870833775148728978 0.132727033866325006 31 false 2.21114679999999986 1.44875717728073994 0.0247041790059330003 0.0577897129999999995 18 10 0.170767370000000002 0 18 false 154 2421.93950965533986 2.89950919822691988 835.29303 17.227957 17 915.066415970616958 14.3064900900299996 63.9616279999999975 17.9477559999999983 18 2210.61294594070978 11.0403797678985001 200.229800000000012 16.4006390000000017 1.2905686999999999 0 1.54711719999999997 0.719799039999999946 0.827318200000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.101575559970001 -63.1656372610609012 22.2035403145332992 -12.5550489075851992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425120565280256 2481425120565280256 627995623 2015.5 25.1820555397181991 1.24687142895758996 -3.0132817645661798 0.726166452140048047 -0.129850339409769006 1.45255792576281006 -0.0893942600000000032 7.51079412499233001 1.8899048571044299 -4.47620932518945036 1.37863779934281006 0.0363941679999999976 0.688728099999999954 0.165863619999999989 0.0284834539999999983 -0.0466663729999999971 -0.107737004999999997 0.101576630000000001 -0.00311014400000000002 0.14084584 0.0785524249999999952 138 0 137 1 4.46010880000000043 217.606995 2.44164572453250006 2.20881126378835013 31 false 0.0243138559999999983 1.78500621487892008 0.247220165026168004 0.0648535600000000045 16 10 1.70259450000000001 0 16 false 138 122.493553775582996 1.34029938109774993 91.3927002 20.468081999999999 13 55.7995817756435031 13.2185046771825991 4.22132349999999956 20.9848099999999995 13 147.764161639354 9.54709151235011966 15.4774010000000004 19.3379970000000014 1.66183229999999993 0 1.64681239999999995 0.516727449999999977 1.13008500000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.095303128350992 -63.1575960427972021 22.2075215443002989 -12.5474608320508008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424364650627200 2481424364650627200 621044724 2015.5 25.191298828691199 0.0287672931556826016 -3.02168523331845984 0.0209295401924060008 1.87682581872084997 0.0334980053115144991 56.0279900000000026 12.0877028500445007 0.0495079949105364028 -8.12067416916957008 0.045658089819668797 0.0698270299999999983 0.596063549999999998 -0.0225339379999999999 -0.0355637599999999998 -0.106734335 -0.16338707999999999 -0.233160480000000003 0.0620467069999999996 0.149273899999999987 0.191789719999999997 141 0 140 1 -0.0686229200000000039 133.214005 0 0 31 true 66.6980899999999934 1.57148238135057006 0.00703617505064720039 0.0462407729999999989 16 10 0.0547486500000000029 0 16 false 139 53765.2606793984014 18.3522185784528986 2929.62988 13.8621110000000005 15 27803.7733794480009 53.398450944713602 520.684999999999945 14.2411290000000008 16 37410.1546199270015 43.878145035761797 852.591999999999985 13.3294460000000008 1.21293800000000007 0 0.911683099999999969 0.37901783 0.532665249999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.121680787256992 -63.1613347372831981 22.2131366915246993 -12.5586759764952998 100001 5460 5406 5486 0.0130000003 0.00800000038 0.0340999998 0.00719999988 0.00389999989 0.0161000006 200111 0.87922615000000004 0.870911960000000041 0.896878839999999955 0.618965499999999946 0.592837330000000051 0.645093699999999992 +1635721458409799680 Gaia DR2 2481425227939730688 2481425227939730688 186249637 2015.5 25.1828461837385014 0.134540112271340995 -2.99775343144224005 0.0882084607266172965 0.995272386601767978 0.154663662647646999 6.4350757999999999 7.17746778051600032 0.248527608570301012 -7.3239065498729099 0.169554402417143008 0.0467254969999999978 0.513445440000000031 -0.159524100000000002 0.0844840560000000018 -0.15467997 -0.000170107960000000002 -0.0504932099999999967 0.0895053999999999989 0.160293939999999996 0.18493467999999999 150 0 140 10 5.98258829999999975 258.066986 0.619571907686761958 10.4798282578117998 31 false 1.60896810000000001 1.53059551027723995 0.0279252008164432991 0.0301341530000000003 16 10 0.224918900000000005 0 17 false 137 4244.32080188417967 4.59016579470651021 924.655029 16.6188450000000003 14 1561.44685400908998 14.4396294161215 108.136215000000007 17.3675700000000006 13 3940.34431106957982 19.7974330591069005 199.03309999999999 15.773085 1.2962712999999999 0 1.59448619999999996 0.748725900000000055 0.84576035000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.082429990928006 -63.1431756364681007 22.2141397074786013 -12.5333180820605001 100001 4338.75977 4158.41016 4613.25 1.19369996 0.705500007 1.41390002 0.583999991 0.350899994 0.694999993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425223644592896 2481425223644592896 321141981 2015.5 25.1819921395332003 1.33783573124478994 -2.99545242457864003 0.820692209472217993 2.07293980622918994 1.49623938001480994 1.38543330000000009 5.46032749088911018 1.99413276373154003 -0.33572340150492902 1.85009577494165001 0.161078840000000001 0.711897250000000037 0.0323590230000000006 -0.136719540000000001 0.0813555339999999932 -0.185162080000000007 -0.262859759999999998 -0.0281387420000000013 -0.0117143520000000008 0.17783779999999999 119 0 118 1 -0.423351050000000007 106.113998 0 0 31 false 0.0243238599999999992 1.31396957305781004 0.285050522993382016 0.0672634500000000024 14 9 1.86253650000000004 0 14 false 119 111.992868019121005 1.57613677833487009 71.0552979 20.5653900000000007 11 85.1494167394994008 7.05580127352177033 12.0680010000000006 20.5259339999999995 11 96.768472639946495 13.8629315093645005 6.98037599999999969 19.7975850000000015 1.62437030000000004 0 0.728349699999999989 -0.0394554140000000012 0.767805100000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.078575738848002 -63.1414464606543007 22.2141968098591995 -12.5308647325931997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425154925024000 2481425154925024000 476984441 2015.5 25.1895499612821006 0.576310974970608014 -3.00041140993696986 0.324757984208254025 0.678321750780836008 0.635344440315322001 1.0676441000000001 2.66516433719678014 0.962228831458155964 -5.67107250534778018 0.555224191244917953 -0.00727436900000000015 0.593846899999999955 -0.0893746700000000033 0.166260099999999994 -0.0442411100000000002 0.0651593359999999983 0.229552220000000001 0.0322246179999999965 0.199787070000000011 0.0138219199999999997 141 0 139 2 1.69428179999999995 162.934006 1.17359165404948995 1.42279329646428998 31 false 0.107738260000000002 1.41541688659399001 0.106997277382143 -0.00573903650000000005 16 10 0.846421300000000043 0 16 false 139 313.522564194985989 1.61940396288124999 193.604004 19.447693000000001 12 87.6230857903573934 20.0009155312466014 4.38095400000000001 20.4948429999999995 13 397.794322682948973 18.1372614913657983 21.9324359999999992 18.2627740000000003 1.54826949999999997 0 2.23206900000000008 1.04714970000000007 1.18491940000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.098348872619994 -63.142771552753203 22.2195104260064014 -12.5382573865093008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424330291042688 2481424330291042688 375510112 2015.5 25.2075574941178999 0.823325413899370973 -3.02517678354087005 0.479528748212918021 1.09778705741845006 0.977319784653843948 1.12326290000000006 -7.98638094173104029 1.28831549886814001 -8.82037418131591977 0.832685815495394999 0.000517206999999999997 0.658212539999999957 0.138417559999999995 0.114241670000000003 -0.117779314999999996 -0.0237790699999999994 0.242161349999999997 0.000769167150000000014 0.183811799999999997 0.0661379899999999937 154 0 153 1 2.77724390000000021 200.291 1.51650834731779005 1.1640546554867699 31 false 0.0496240100000000031 1.15268244436153 0.157235337903686989 0.0535761230000000033 18 10 1.14804539999999999 0 18 false 151 183.440402400602011 1.40254418414735005 130.791 20.0296289999999999 12 48.9723717095958975 8.07961196929625025 6.06122829999999979 21.1265099999999997 14 248.034695851089992 7.54232387508266022 32.8857100000000031 18.7756390000000017 1.61909299999999989 0 2.35087199999999985 1.09688190000000008 1.25399020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.157551600976007 -63.1576618382516983 22.227279673056799 -12.5679085138507993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481418145538092160 2481418145538092160 769411529 2015.5 24.9495300282249985 0.117792960441799002 -3.12819617309647979 0.104847872715518001 2.22950217438607012 0.142883013759672994 15.6036889999999993 42.1695516598437976 0.253656661274216988 4.15504946699399991 0.198087982295469006 0.241223080000000006 0.325206300000000004 0.0254443209999999989 0.137987140000000008 -0.199055929999999992 0.172909260000000009 0.262716029999999989 -0.096693329999999994 -0.00490057900000000039 0.325092260000000022 159 0 158 1 3.02534560000000008 211.429993 0.249352427355295003 0.771319539417743005 31 false 1.32864819999999995 1.40571870435100998 0.0296881331079601012 0.123814635000000006 18 10 0.241057130000000008 0 18 false 157 1417.78132356270999 2.19583489116760999 645.66803 17.8093429999999984 18 327.666840906825996 12.7919282629337996 25.6151260000000001 19.0628069999999994 17 1690.54533879374003 10.4837799183710008 161.253420000000006 16.6918529999999983 1.42350029999999994 0 2.37095449999999985 1.25346369999999996 1.1174907999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.733368325435009 -63.3590794032163984 21.9429803155164009 -12.5685463531464006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419726086067072 2481419726086067072 1125861988 2015.5 24.9594354569410015 0.45417149711893301 -3.10658499765879981 0.352528800529905983 -0.481030359717010025 0.563247149187833029 -0.854030700000000031 -0.773087300953686052 0.933315249817639025 -5.08401413006266978 0.636829689250702047 0.111346979999999998 0.395668330000000013 0.156742070000000011 0.119046725000000006 -0.297512920000000014 0.193029360000000011 0.307622159999999978 -0.184869869999999992 -0.0324145100000000005 0.292210499999999984 140 0 138 2 4.44938370000000027 218.634995 1.7433444929442401 6.06343975853050043 31 false 0.122411900000000004 1.58748418354795007 0.108507171909099004 0.0518083459999999982 16 10 0.857819099999999946 0 16 false 138 316.239207264853007 1.3659367592938001 231.518005 19.438326 14 112.198852344431003 14.8645996575503005 7.54805759999999992 20.2264179999999989 13 314.869189126261972 6.31707081098111978 49.844177000000002 18.5165940000000013 1.35045890000000002 0 1.7098236 0.788091659999999972 0.921731949999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.733394067286014 -63.3353124068648015 21.9605773172599008 -12.5521189370286006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419829165357440 2481419829165357440 1660404496 2015.5 24.9682187325779985 1.83437901443033002 -3.09726638170930979 1.59192595408514004 \N \N \N \N \N \N \N -0.48748022000000002 \N \N \N \N \N \N \N \N \N 66 0 65 1 1.05482110000000007 71.5602036 0 0 3 false 0.0246467159999999991 \N \N -0.00437386939999999998 8 7 5.99908160000000024 0 8 false 67 77.7864640279216957 1.51057327922981011 51.4947014 20.9611049999999999 5 51.1985747436525998 12.0493755331194006 4.24906439999999996 21.0782430000000005 6 62.8948491648796022 18.9835838557742989 3.31311769999999983 20.2653829999999999 1.4667517000000001 0 0.812860499999999986 0.117137909999999998 0.695722599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 150.742532736635013 -63.3231909316436017 21.972453669631701 -12.5466997183710003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419829165287680 2481419829165287680 625796307 2015.5 24.9749307119962012 0.284077220320723023 -3.09326327161324999 0.222555172106268989 1.12944495397131006 0.358819850958525977 3.14766570000000012 -1.20594632350464992 0.53684030365921398 -5.84210683490300031 0.399957593058896999 0.0458791850000000029 0.502841230000000028 0.0644457300000000066 0.0999194699999999963 -0.337473960000000017 0.191716730000000002 0.328732880000000005 -0.121319830000000004 -0.0546035360000000011 0.311570400000000025 149 0 145 4 0.437207000000000012 146.755005 0.45960151347318301 0.664097242168174007 31 false 0.313795119999999983 1.49425995931243993 0.0679755827485020031 0.0850307940000000068 17 10 0.500371200000000016 0 17 false 144 465.299497397811024 1.5890750249438399 292.812012 19.0190330000000003 16 160.350705186596997 13.8305021674808 11.5939899999999998 19.838709999999999 15 511.122036125397983 6.76968991313134971 75.5015400000000056 17.9906080000000017 1.44309799999999999 0 1.84810260000000004 0.819677349999999971 1.02842520000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.752399282928991 -63.3167630274796025 21.9803491108345987 -12.5454556394474999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127616 2481416564990127616 105494749 2015.5 25.0195268478733013 0.326667301032544988 -3.12777018318065991 0.169140568076474013 -0.377674373179511025 0.414534318100866994 -0.911081099999999977 8.32159054616871074 0.410437285817622011 1.06344357971765002 0.297590551531453973 -0.151141300000000006 0.784757299999999991 0.0773257799999999967 0.115420744000000006 -0.325067879999999976 -0.000249612670000000001 0.0884249299999999988 0.0571361599999999983 0.133283420000000014 0.221747100000000003 158 0 154 4 0.908373650000000032 164.524002 0.358460558650005978 0.518473346300713955 31 false 0.439388200000000007 1.64009996149367998 0.0556144632398843999 -0.00591391900000000012 18 9 0.424512119999999993 0 18 false 155 643.930853009023053 1.9784953525715101 325.464996 18.6662670000000013 16 322.913324642414011 17.1414623504795998 18.8381420000000013 19.078672000000001 13 520.704981109108985 11.9179344756161996 43.6908760000000029 17.97044 1.31010699999999991 0 1.10823249999999995 0.412405000000000022 0.695827500000000043 \N \N 0 \N \N \N NOT_AVAILABLE 150.874595096662006 -63.3295686786713006 22.0096878588466005 -12.5939704974333004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127872 2481416564990127872 1347885605 2015.5 25.021525607553599 0.167689307273025001 -3.12743990172130015 0.121771149987360994 -0.311676082145601996 0.20419914772216799 -1.52633390000000002 12.6208527727670994 0.309986702726846974 -9.01008168145651034 0.230539687618361994 0.0926255899999999938 0.52979946 0.0480862899999999968 0.0460023499999999974 -0.110764324999999997 -0.0288962549999999992 0.144133630000000013 -0.0355211200000000032 0.11945016 0.141261200000000003 158 0 157 1 -0.300501399999999974 146.169998 0 0 31 false 0.812074100000000021 1.73467735525150002 0.0391712191596432988 0.0141315420000000004 18 10 0.27684048 0 18 false 155 964.312234856554028 1.80274677528167993 534.913025 18.2278209999999987 14 538.031633890422995 15.8520554448426996 33.940809999999999 18.5243679999999991 13 646.655387647331054 11.4601256181684992 56.4265499999999989 17.7352370000000015 1.22853049999999997 0 0.789131160000000054 0.296546939999999981 0.492584230000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.878327602447001 -63.3284349783968992 22.0117132500078014 -12.5944006797732992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481419760445808256 2481419760445808256 1582360054 2015.5 24.9843536329745 0.24988177379669399 -3.09973330734572006 0.20930466941496001 1.44106022816366997 0.314195229747005977 4.58651199999999992 2.6489862617420501 0.508497263767263008 -8.40541118177686997 0.414495279099517999 0.137399899999999991 0.428083199999999997 0.0798082350000000051 0.0930096950000000033 -0.288909970000000016 0.168976929999999997 0.222169460000000013 -0.143951849999999992 -0.053101398000000001 0.368000659999999979 140 0 138 2 2.10801600000000011 169.643005 0.555561949412720968 1.03439192870225005 31 false 0.36835074000000001 1.37984170396572003 0.0655514282680789984 0.115446980000000005 16 10 0.489040169999999996 0 16 false 137 533.142297826204981 1.35276663092302996 394.113007 18.871258000000001 13 126.473747775560994 4.97434896463801035 25.4251860000000001 20.096388000000001 16 668.41666402850899 6.34569097735309029 105.333950000000002 17.6993030000000005 1.4909536000000001 1 2.3970851999999998 1.22513010000000011 1.17195509999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.777448589121008 -63.3187307110119022 21.9868583261980994 -12.5549437590333 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416839868117504 2481416839868117504 502691840 2015.5 25.0078950954540993 1.88856407037106 -3.10858393207660999 7.35096763470636017 \N \N \N \N \N \N \N -0.291466469999999978 \N \N \N \N \N \N \N \N \N 52 0 52 0 -0.991220800000000013 37.4538994 0 0 3 false 0.0247799460000000006 \N \N 0.000132491289999999996 6 5 75.2540500000000065 0 6 false 52 76.5627646791757996 1.77060412443315007 43.2410011 20.9783210000000011 2 48.281043965791703 0.0220877220350054991 2185.87699999999995 21.1419469999999983 4 82.5243598003958994 17.6882918995465985 4.66547900000000038 19.9704650000000008 1.70847280000000001 1 1.17148209999999997 0.163625720000000002 1.0078564000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.833249530063 -63.3169810244607021 22.0058895372742001 -12.5718511161342992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420000963982208 2481420000963982208 828549754 2015.5 24.9481764770014003 2.72604533453410003 -3.08806347039090978 2.26209985906724986 \N \N \N \N \N \N \N 0.0991490700000000058 \N \N \N \N \N \N \N \N \N 113 0 112 1 27.9222849999999987 1252.26001 14.8999580103390006 95.7164694045988966 3 false 0.00398046239999999985 \N \N 0.124826640000000003 14 9 6.07492880000000035 0 14 false 117 125.470916648937006 1.92313146011679992 65.2429962 20.4420089999999988 11 183.234614290706986 18.7238828933331014 9.78614400000000018 19.6938689999999994 10 398.270046357886997 11.1072159690668002 35.8568730000000002 18.2614769999999993 4.63457730000000012 0 1.43239209999999995 -0.748140339999999959 2.18053249999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.693468976179986 -63.323135271392097 21.9568850803377984 -12.5307542065406992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420104043285632 2481420104043285632 1484056899 2015.5 24.9469246523465991 0.685094007040740971 -3.07979050427382006 0.582690965979081987 1.13224893082486 0.838998396283211045 1.34952450000000002 5.8572885543648896 1.3863760560143199 -9.86087262316106994 1.13079396509115004 0.214225699999999991 0.436737450000000027 0.150442049999999994 0.099476545999999999 -0.165889840000000011 0.138746170000000002 0.293677120000000014 -0.167836170000000007 -0.0192252429999999995 0.316959559999999974 115 0 111 4 2.62735960000000013 148.205994 1.88911189297967996 1.98550732956066001 31 false 0.061128557 1.47340338162465989 0.192722795612935011 0.149365219999999993 14 10 1.31455419999999989 0 15 false 110 163.798278104097989 1.21401670493311009 134.923004 20.1525919999999985 7 48.6007631546178018 8.74993442438034918 5.5544146999999997 21.1347799999999992 10 191.18193139728001 5.53238182777453957 34.5568919999999977 19.0583020000000012 1.46389020000000003 0 2.07647899999999996 0.982189199999999984 1.09428980000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.683288434029009 -63.3161275129006995 21.9588262231666 -12.5226047450645996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420104043202688 2481420104043202688 1006655243 2015.5 24.9518743395137008 3.56061692913919003 -3.07395406239127 3.14046339646615014 \N \N \N \N \N \N \N 0.205042649999999993 \N \N \N \N \N \N \N \N \N 102 0 101 1 36.1543300000000016 1968.67004 19.7574618591057991 210.520927810978009 3 false 0.00237301000000000005 \N \N 0.124143000000000003 13 9 8.43705500000000086 0 13 false 113 134.096861077632013 1.67248245077336 80.178299 20.3698200000000007 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.687907172270997 -63.3087661423426979 21.9657397610539995 -12.5190072027795001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420138404180480 2481420138404180480 1079857438 2015.5 24.9519083299845015 5.90345517984490975 -3.06915805695100996 5.2653202739129803 \N \N \N \N \N \N \N -0.356011630000000023 \N \N \N \N \N \N \N \N \N 38 0 38 0 0.699432700000000018 38.2738991 2.69112897724669997 0.628935357561895003 3 false 0.0166840120000000015 \N \N 0.42548233000000002 5 5 13.1688869999999998 0 5 false 39 73.5549172256965988 1.63837233436670004 44.8950996 21.0218370000000014 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.683544790469995 -63.304388634154698 21.9675869927554004 -12.5145630122658993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420138402941440 2481420138402941440 345064612 2015.5 24.9652709156912991 0.495595070160474993 -3.07108876818071996 0.440700043004015996 1.61087126248823997 0.692626421502227974 2.32574319999999979 -17.344877242822399 0.992947976087472983 -10.8072930892278993 0.70017254012826402 0.097041719999999998 0.35398122999999998 0.0262718819999999999 0.151057529999999995 -0.4420539 0.156034100000000009 0.224773869999999987 -0.0344385099999999986 0.0603607970000000008 0.320497299999999985 128 0 126 2 3.41289730000000002 181.362 1.75917362701631008 3.8481510043865601 31 false 0.101200479999999995 1.45832393934022009 0.12124599789361 0.113953225000000005 15 9 0.913121900000000042 0 15 false 126 269.860507716821019 1.6231150181007199 166.261002 19.610517999999999 12 75.0376148813471957 9.06384186603012942 8.27878699999999945 20.6631900000000002 13 355.728554798167011 3.9061858671054499 91.068010000000001 18.3841229999999989 1.59625499999999998 0 2.27906800000000009 1.05267329999999992 1.22639469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.712347535812 -63.3006047696728018 21.9795579101634999 -12.5212863618056005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420069683464448 2481420069683464448 868559571 2015.5 24.9683542741300002 2.53712698609448006 -3.07298769238920011 1.93570686854472007 \N \N \N \N \N \N \N 0.120519009999999996 \N \N \N \N \N \N \N \N \N 106 0 103 3 46.6511459999999971 3269.45996 13.0369340504711992 265.960129221801026 3 false 0.00551880100000000026 \N \N 0.0639537500000000037 15 10 4.44535099999999961 0 15 false 125 318.554996486754021 3.67179705937365997 86.7572021 19.4304050000000004 15 501.536722794003992 16.0583200510205018 31.2322039999999994 18.6006320000000009 13 1062.53988279742998 5.36049626895322007 198.216700000000003 17.1960559999999987 4.90991070000000018 0 1.40457530000000008 -0.829772949999999954 2.23434830000000018 \N \N 0 \N \N \N NOT_AVAILABLE 150.720336645444007 -63.3010528756118021 21.9817702558896002 -12.5241883167577992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420963037886592 2481420963037886592 953204365 2015.5 24.9380492990066998 8.96347510697458993 -3.05295562146993005 4.78238291000998039 \N \N \N \N \N \N \N 0.744781800000000049 \N \N \N \N \N \N \N \N \N 68 0 66 2 1.52177439999999997 78.6075974 5.83343685414611013 28.6947532968396999 3 false 0.00996027399999999986 \N \N 0.239454749999999994 8 5 36.5821880000000021 0 8 false 68 70.4018655211593938 1.20620381077209005 58.3665009 21.0694049999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.640563482820994 -63.295384446200103 21.9605454413527994 -12.4943941023120004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420138402943488 2481420138402943488 829891104 2015.5 24.9598547072498995 0.41172198272938898 -3.06593762513571999 0.313916044021662011 1.50776145292703001 0.474215048489252 3.17948899999999979 7.93434419891888965 0.893186371536892953 2.31725676526217006 0.564351084392009983 0.0644240699999999999 0.300550099999999987 -0.112550020000000001 0.143976799999999988 -0.282046049999999993 0.232614949999999987 0.304835650000000014 -0.0748806399999999983 -0.0483903139999999968 0.23605081 131 0 129 2 2.70717069999999982 170.878006 0.946627976336641974 1.20067659941568006 31 false 0.153601529999999986 1.41775153415868993 0.100665775666566995 0.0199986940000000009 15 10 0.803655450000000049 0 15 false 128 302.533510571225008 1.44940830057402992 208.729004 19.4864309999999996 13 79.9427129368473004 11.2734289555566001 7.09125099999999975 20.5944399999999987 12 370.968198491101987 7.60755607623470986 48.7631230000000002 18.3385800000000003 1.49044939999999992 0 2.25586129999999985 1.10800929999999997 1.14785200000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.696636898289995 -63.2981649582442998 21.9763587826621993 -12.5145016800379008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420516360067712 2481420516360067712 978694678 2015.5 24.9637980788266987 1.31548255050871998 -3.06043206459127015 0.907033531741081034 0.922912920481694043 1.58865903878801995 0.580938339999999998 27.7753579382270992 2.51239710084291001 -45.1310184682118987 2.38637527991553 -0.253455969999999975 0.549740200000000012 -0.0324526880000000004 0.0564894800000000016 -0.482738900000000026 0.102138049999999994 -0.120983205999999996 -0.218850850000000013 -0.155048679999999994 0.474783149999999987 84 0 83 1 1.39800550000000001 96.0286026 2.40249964692690998 1.41020631469939994 31 false 0.030797386999999999 1.69921307327299997 0.327647144928522982 -0.0178558940000000006 10 8 2.62199230000000005 0 10 false 83 109.911567657494999 1.46636369120690002 74.9552002 20.5857559999999999 8 110.035025656141997 10.4132830981436992 10.5667939999999998 20.24756 8 147.466599171385013 42.2555142840395987 3.48987820000000015 19.3401850000000017 2.34280730000000004 0 0.907375339999999975 -0.338195799999999991 1.24557110000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.699521460341003 -63.2915214256371996 21.9821902446416999 -12.5108400889258995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421272274318720 2481421272274318720 779474683 2015.5 24.9657318668442016 0.708136225931373042 -3.04700979685064022 0.712190006822971955 3.90867471046929005 1.16236533318465995 3.36269039999999997 25.2203657042541991 2.17329610629592018 -0.0461419220560342 1.18029586674618003 0.47587305000000002 -0.402162999999999993 0.625564800000000032 0.281000550000000016 -0.741347300000000042 0.565134939999999975 0.371490659999999973 -0.685711260000000045 -0.306628970000000001 0.518520800000000004 85 0 84 1 3.29862140000000004 127.222 1.8928126482535601 3.43120212583594997 31 false 0.103273086 1.46810310033752001 0.153643716256971014 0.0967243500000000006 10 7 2.17258450000000014 0 10 true 84 269.099828142159026 1.5646677825011599 171.985001 19.6135829999999984 7 60.6236233967789033 20.6461381210726991 2.93631799999999998 20.8947830000000003 8 409.141876994259974 13.2020466379963999 30.9907910000000015 18.2322349999999993 1.74569229999999997 0 2.66254800000000014 1.28120039999999991 1.38134770000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.691033709419003 -63.2785088663317978 21.989106640349501 -12.4990803112453008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420275841896192 2481420275841896192 1310315705 2015.5 24.9993764727190992 0.723999578421955947 -3.06845540068262013 0.620685696203485016 -1.64874953200195007 0.884269217027836008 -1.86453340000000001 9.65402195053443002 1.49301548933194006 -2.72625987011323012 1.26876212369937003 0.140060650000000009 0.422075450000000019 0.118900165000000002 0.0652166460000000031 -0.21841060000000001 0.130064249999999992 0.284569679999999992 -0.163672490000000004 -0.055204472999999997 0.295078000000000007 130 0 128 2 3.51611640000000003 185.921005 2.61338470505627019 3.96256718432087984 31 false 0.0448064840000000006 1.4787008112703599 0.182099904259076989 0.110461920000000005 16 10 1.41683730000000008 0 16 false 128 160.046700300426011 1.2798213153506599 125.054001 20.1777499999999996 9 70.6693144297833982 12.3689382399023007 5.71345040000000015 20.728311999999999 10 219.597245521488986 22.0105291088886013 9.97691799999999951 18.9078519999999983 1.81363669999999999 0 1.82045940000000006 0.550561900000000048 1.2698974999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.778823566373006 -63.2840470226758995 22.0129744433782015 -12.5314180844538008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481420550719811072 2481420550719811072 128152891 2015.5 24.9860565258329004 0.26836966235467602 -3.05151866441338004 0.215212695601534998 1.10626089247649007 0.330213087900806002 3.35014250000000002 -10.8773634497254008 0.536852464560019005 -7.78680481510205968 0.395681991774831987 0.052988109999999998 0.443798150000000002 0.0936487000000000014 0.0725790199999999941 -0.291976300000000022 0.13157242999999999 0.337118739999999972 -0.126280429999999999 -0.0325216430000000029 0.233401780000000003 143 0 142 1 2.88335799999999987 189.656006 0.634218369502004053 1.19080769598394998 31 false 0.329918700000000009 1.48683824304860002 0.0658423152297319958 0.0752556199999999953 17 10 0.489278349999999973 0 17 false 142 524.07799314248598 1.87941550844001992 278.85199 18.889875 12 165.027623320586002 8.92708430196069003 18.4861739999999983 19.8074970000000015 12 584.22061894256899 16.6096754279087016 35.1735100000000003 17.845478 1.42965030000000004 0 1.96201899999999996 0.917621600000000037 1.04439740000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.736253599227013 -63.2741790495591019 22.0067200093657007 -12.5107664715976004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421547152287488 2481421547152287488 561542079 2015.5 24.9406599653138983 9.0186250967917605 -3.02957765036950022 2.74462123535901004 \N \N \N \N \N \N \N 0.855459149999999946 \N \N \N \N \N \N \N \N \N 69 0 69 0 -1.24357059999999997 50.3660011 0 0 3 false 0.0276316090000000014 \N \N 0.0366150030000000001 8 6 40.9373739999999984 0 8 false 69 87.6962746722909969 1.19456196580096008 73.4129028 20.8309139999999999 5 75.3185371035463049 6.61087557564544959 11.3931260000000005 20.6591340000000017 6 85.5306585875615042 19.8063918878049989 4.3183360000000004 19.9316160000000018 1.83416219999999996 0 0.727518099999999945 -0.171779629999999989 0.899297699999999978 \N \N 0 \N \N \N NOT_AVAILABLE 150.62429747954701 -63.2730270899051987 21.9718721247594004 -12.4736329097907994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421581512227072 2481421581512227072 570913100 2015.5 24.9521119362008008 0.121645359864742994 -3.01653627956306991 0.0887538272919197041 0.322923995767969985 0.141410251192017 2.2835968000000002 2.63245707168595011 0.24013530630978 -14.9107792919394999 0.169995225749874995 0.0823635800000000057 0.466878029999999999 -0.0784176199999999934 0.0991764700000000027 -0.193728480000000008 0.159261509999999995 0.244121060000000001 -0.0660609199999999952 -0.0227874350000000017 0.240901339999999992 149 0 149 0 1.8568032000000001 177.098999 0.175857925461103987 0.422428696704743978 31 false 1.67182270000000011 1.60070297979267995 0.0279646772283423002 0.0241241859999999989 17 10 0.220177050000000013 0 17 false 148 1817.66636596340004 3.24559954477106993 560.039978 17.5395800000000008 12 1016.12419498494 23.4797118223871983 43.276688 17.8340199999999989 13 1287.72335996479001 11.9347179358498003 107.897260000000003 16.9873639999999995 1.26747549999999998 0 0.846656799999999987 0.294441220000000003 0.552215600000000029 \N \N 0 \N \N \N NOT_AVAILABLE 150.635425679235993 -63.2564199264188005 21.9876897289804987 -12.4657380707153997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421684591190784 2481421684591190784 792883187 2015.5 24.9584119420165003 0.123557587218176002 -3.01954295375149995 0.0928251457071379016 0.126480782620049997 0.142412300806787989 0.888131000000000004 2.72105349368103022 0.241885430194172996 -3.22957929230795981 0.178774959421334007 -0.0048572197999999997 0.45816287 0.0383989500000000011 0.0510851140000000009 -0.20865091999999999 0.104774489999999998 0.295225599999999977 -0.109327115000000002 -0.0280865000000000004 0.150117439999999991 139 0 139 0 1.77339200000000008 164.414001 0.171427337918583 0.391375755278789983 31 false 1.64942509999999998 1.66339584897335002 0.0296338714818276013 -0.00685157160000000008 16 10 0.218703690000000006 0 16 false 135 1792.07364153033996 2.31639928051628008 773.645996 17.5549759999999999 12 961.324281146137992 17.9309242493426986 53.6126440000000031 17.8942130000000006 12 1266.2903965350099 19.6896421065201999 64.3125150000000048 17.0055869999999985 1.24303750000000002 0 0.888626099999999974 0.339237200000000017 0.549388899999999958 \N \N 0 \N \N \N NOT_AVAILABLE 150.650918260568005 -63.2565489276026014 21.9925400172425007 -12.4708558258100002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421478432761472 2481421478432761472 542766763 2015.5 24.974211361312399 0.477656277331259982 -3.01701402654089001 0.369105594018930006 1.04314875754586001 0.575888967316072975 1.81137130000000002 16.6286479800556997 0.993120144030916974 -32.3636224790728022 0.659753830088250948 0.0876966339999999955 0.391389639999999983 -0.0210923899999999991 0.116190089999999996 -0.287406620000000002 0.169740350000000012 0.314153300000000024 -0.0818486300000000055 -0.0148039209999999994 0.249598320000000012 142 0 142 0 5.02473349999999996 237.179001 1.62648775986058003 3.52601798622956997 31 false 0.105019583999999999 1.31374520741691003 0.114712448504143999 0.0664682000000000051 16 10 0.895157749999999974 0 16 false 140 270.810906916571014 1.61497048913702002 167.688004 19.6067 10 89.543793879633597 12.3641840418352995 7.24219200000000018 20.4712999999999994 12 318.462382330694993 8.67233082115692966 36.72166 18.5042739999999988 1.50660909999999992 0 1.96702580000000005 0.864599200000000012 1.10242649999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.680486627837013 -63.2477041392458972 22.0085130291617013 -12.4743326915158992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421581512227200 2481421581512227200 1313738361 2015.5 24.9511663416140017 0.158631731322579989 -3.01500997210272015 0.148207251329317002 0.0360508153381339028 0.204215983025897996 0.17653278 2.82589750681405016 0.355412467213987004 -7.43608223855498007 0.281837493917448001 0.131863449999999993 0.33034195999999999 0.0356142259999999988 0.170282970000000006 -0.417687150000000007 0.421492729999999982 0.517223300000000052 -0.287625520000000023 -0.288796039999999976 0.462152449999999992 139 0 138 1 1.40903719999999999 156.585007 0 0 31 false 0.948947100000000043 1.59638264521205997 0.0406324054421082978 0.0533050899999999994 16 9 0.361377749999999998 0 16 false 138 1083.67660708148992 2.37663489530343996 455.971008 18.1011160000000011 14 535.319125551396951 16.8002641435818987 31.8637329999999999 18.5298559999999988 12 830.719253104850964 22.9285167090854003 36.2308299999999974 17.4632840000000016 1.26055910000000004 0 1.06657219999999997 0.428739550000000025 0.637832639999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.632110647979005 -63.2554219946904013 21.9873683934210007 -12.4639709140839994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421684591444608 2481421684591444608 175438027 2015.5 24.9657885669797004 0.309742383871785987 -3.00900192689692014 0.244541497426785992 0.922645960115608954 0.373686142705380975 2.46904000000000012 -0.0566651650302996968 0.649017020388028998 -4.32035920878224022 0.454775064129977979 0.094885259999999999 0.386990600000000018 0.0882854099999999947 0.10249482 -0.274270830000000021 0.180016220000000005 0.328272000000000008 -0.160311669999999989 -0.0502348400000000028 0.263394120000000009 157 0 153 4 1.91273870000000001 182.639008 0.302461259734293997 0.197794473814133009 31 false 0.225676099999999991 1.45759333875558994 0.0783695034968580062 0.0605788699999999999 18 10 0.5927867 0 18 false 153 368.550319677945026 1.83905824887727998 200.401993 19.2721230000000006 14 88.244500032625993 11.6121432332399994 7.59932949999999963 20.487169999999999 15 425.949343325794018 8.5015713243949893 50.1024249999999967 18.188524000000001 1.39517950000000002 0 2.29864500000000005 1.21504590000000001 1.08359910000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.656102757203001 -63.2439025018874972 22.0035380656243014 -12.4637806893972005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421787670664704 2481421787670664704 387226320 2015.5 24.9546486699959011 0.504096567656412975 -2.99867405849947 0.400541256762221021 -0.204245673684453011 0.611552139785281001 -0.333979159999999997 -0.866891303852403983 1.16803299873107003 -1.96008125909519992 0.790165004621209976 0.141382129999999995 0.252944999999999975 0.208562720000000007 0.104571626000000001 -0.282202600000000026 0.199991300000000011 0.293810340000000003 -0.278684229999999977 -0.0930152239999999936 0.299315300000000006 141 0 140 1 -1.2313921000000001 115.160004 0 0 31 false 0.0894290900000000027 1.7072778959149999 0.138380906435315004 0.031472143000000001 16 10 1.07696900000000007 0 16 false 140 189.043524358382001 1.5286170241041499 123.669998 19.9969619999999999 11 92.9497132009561966 11.8177367470860002 7.86527200000000004 20.4307690000000015 13 135.805152976326013 9.84326484041874927 13.7967589999999998 19.4296299999999995 1.2100645000000001 0 1.00113870000000005 0.433807370000000025 0.567331299999999983 \N \N 0 \N \N \N NOT_AVAILABLE 150.624109771587996 -63.2391129679757 21.9968569523090984 -12.4500744484601995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421444073020416 2481421444073020416 231129677 2015.5 24.9965545808266008 1.26205409989099993 -3.02370742963212003 0.989711104776913042 -2.57532337295809999 1.50917594478816008 -1.70644339999999994 5.14267201255283002 2.4072701259125 4.39889453380889961 1.83248055924653008 0.174950329999999987 0.483616099999999993 -0.061581284 0.138127570000000005 -0.187774699999999989 0.15071422000000001 0.197359160000000006 -0.000959443399999999956 0.0475072340000000023 0.324724500000000027 122 0 122 0 25.4404809999999983 1094.15002 6.91350490623184033 61.2786522533988034 31 false 0.0177445560000000016 1.2191520394131401 0.270003319999156999 0.120565740000000005 14 10 2.23494480000000006 0 14 true 125 287.816719640735982 4.00759128575316037 71.8179016 19.5405750000000005 14 268.701635470445012 18.2670574816141986 14.7096289999999996 19.2782119999999999 14 620.010302274302944 8.59009022825559043 72.1773900000000026 17.7809220000000003 3.08777049999999997 0 1.49728970000000006 -0.262363430000000009 1.75965309999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.731750325849987 -63.2445267523419972 22.0272185156828009 -12.4887924135614998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426598033777152 2481426598033777152 640280636 2015.5 25.0244405339349996 0.788332017382115002 -3.01919496176282998 0.550098423637027989 -0.032801350077481202 1.03877550704382005 -0.0315769399999999978 -0.67042974138971001 1.3867245560502599 -2.25583144986562001 1.26319997902063008 -0.255280400000000018 0.639547349999999959 0.0553287530000000013 -0.121371283999999996 -0.535043500000000005 0.163388670000000014 0.241470739999999989 -0.237942189999999998 -0.286714670000000005 0.423491479999999976 131 0 131 0 -0.789728160000000012 113.252998 0 0 31 false 0.0594151880000000007 1.67059870555912005 0.195995395720451993 0.0691197139999999988 15 9 1.42769940000000006 0 15 false 130 153.017264054663002 1.28915827584410003 118.695 20.2265149999999991 10 100.361682544158995 14.8054222863916998 6.77871130000000033 20.3474670000000017 13 105.042523698072998 8.96417949897016086 11.7180300000000006 19.7085079999999984 1.34235970000000004 0 0.638959900000000025 0.120952606000000004 0.518007299999999948 \N \N 0 \N \N \N NOT_AVAILABLE 150.783816813646013 -63.2288385278795033 22.0554320881232009 -12.4948804697169003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426598034029056 2481426598034029056 642894073 2015.5 25.0284035131750002 5.22264494607968999 -3.01435559900598982 6.92920332093904978 \N \N \N \N \N \N \N -0.079788479999999995 \N \N \N \N \N \N \N \N \N 52 0 52 0 7.87176299999999962 170.503998 12.1950576725763007 11.2545639975603997 3 false 0.0042044357000000001 \N \N 0.187444940000000004 6 6 26.5660929999999986 0 6 false 52 71.8716399057113051 1.43579615409549999 50.0569992 21.0469720000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.787330907256006 -63.2227907838047969 22.0610291127606004 -12.4918439499975999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426632393767808 2481426632393767808 71236811 2015.5 25.0392154422271993 0.592929475594598965 -3.0137435435702602 0.417220317370582017 1.00583365953130999 0.775238897338021982 1.29744999999999999 5.8598283227245096 0.964612019846261992 4.09950578325403026 0.684006643836460038 -0.271517430000000004 0.645630000000000037 0.0985485200000000006 -0.0407879579999999992 -0.559200350000000013 0.167507039999999996 0.396400870000000016 -0.138221790000000011 -0.175292720000000013 0.264924800000000016 160 0 160 0 2.83572669999999993 209.664001 1.16080658794624991 1.41455538214700005 31 false 0.0945180099999999995 1.15849432418942011 0.121853978479809999 -0.00145060099999999993 18 9 0.890791699999999964 0 18 false 158 239.040855486827013 1.2213555930715001 195.718002 19.7421860000000002 14 72.5465530136606986 10.8950482316222992 6.65867200000000015 20.6998460000000009 16 324.104085570354016 13.1658676382104005 24.6169949999999993 18.4852090000000011 1.65934240000000011 0 2.21463780000000021 0.957660700000000031 1.25697710000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.808550302431001 -63.2177367546541973 22.0715382854778994 -12.4952608313071991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426632393568384 2481426632393568384 156998905 2015.5 25.0448567703202016 1.78374908309716007 -3.01771385709677009 1.20830836693690991 0.0661115841932945064 2.06004838524077005 0.0320922469999999974 -1.1404076611076801 2.82617877404058992 0.0884987608751783006 3.55862986308574003 -0.418356329999999998 0.689417959999999996 0.133251640000000005 -0.367092160000000001 -0.544465839999999979 -0.0153877479999999997 0.332795379999999974 -0.140790520000000002 -0.42221183000000001 0.237967220000000007 96 0 93 3 1.22095799999999999 104.462997 2.7800629100479699 1.30657084819366998 31 false 0.018348863 1.09596783328068992 0.370100999331584024 -0.0228344559999999995 12 7 3.41854000000000013 0 12 false 96 82.7704709423802996 1.32301954704905 62.5617981 20.8936770000000003 9 60.896686392282497 10.5557710822314998 5.76904199999999978 20.8899040000000014 10 64.7595474484469946 11.9452366264762002 5.42136999999999958 20.2336600000000004 1.51812879999999994 0 0.656244300000000003 -0.00377273559999999992 0.660016999999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.823587648088989 -63.2189976270004976 22.0753998821842998 -12.5010302610974993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426323155868160 2481426323155868160 808480484 2015.5 25.0470718752204995 0.381137368271406984 -3.02502415092670018 0.258203417597912988 1.79835735905687 0.502629913966391006 3.57789560000000018 0.115142770826938995 0.592615920600973012 -11.3343477960480996 0.394685366748173005 -0.278642149999999977 0.663931599999999955 0.0198141949999999997 0.0294441149999999999 -0.555917259999999969 0.154852849999999986 0.335375040000000013 -0.0736475600000000008 -0.0763218499999999966 0.23767814000000001 168 0 167 1 10.7973389999999991 443.128998 1.55915963250503009 12.1950009207114007 31 false 0.229314099999999993 1.23200032070437993 0.0748971011339712028 -0.0113540370000000009 19 9 0.538518300000000005 0 19 false 168 760.899582805746945 2.8349610272295398 268.398987 18.485047999999999 17 144.969869551834989 11.6134414566051998 12.4829380000000008 19.9481949999999983 17 1087.20174415429005 17.6714346949769983 61.5231169999999992 17.1711440000000017 1.61936159999999996 0 2.77705000000000002 1.46314619999999995 1.31390380000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.834816207307 -63.2247196175164987 22.0747416260110008 -12.5086408107944003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426632393766528 2481426632393766528 545477588 2015.5 25.0472244861360984 0.621892128156143031 -3.01667961351735014 0.447253973433152985 -0.660838825302436983 0.821528233115812023 -0.804401799999999945 1.30888544266008999 1.00318893805357989 -3.41796481738761004 0.714225275152977956 -0.233972010000000008 0.650009900000000029 0.0965623199999999932 -0.0110348119999999997 -0.54599816000000001 0.202726380000000012 0.433928040000000015 -0.14304747000000001 -0.171495750000000002 0.289010880000000026 159 0 157 2 2.7628102000000001 204.625 1.43061306564593993 1.77887381182646998 31 false 0.0873958299999999938 1.56418228844786 0.126399639646881001 0.00434155160000000012 18 9 0.937031399999999959 0 18 false 157 243.216270306567992 1.50269537631153005 161.852997 19.7233850000000004 14 97.8497554182422959 10.3596848219353994 9.44524499999999989 20.3749889999999994 17 240.929156449867008 8.20575064824440936 29.3610129999999998 18.8071960000000011 1.39291209999999999 0 1.56779289999999993 0.651603700000000008 0.916189200000000037 \N \N 0 \N \N \N NOT_AVAILABLE 150.827400133900994 -63.2170717376309028 22.0780417363746011 -12.5009418254863007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426426235136384 2481426426235136384 1384167078 2015.5 25.0657381020596013 2.65972760757479021 -3.02488052433038979 4.16141549933282029 \N \N \N \N \N \N \N -0.426600749999999973 \N \N \N \N \N \N \N \N \N 70 0 69 1 1.19426579999999993 77.7233963 2.52026571763677998 0.74173259138974601 3 false 0.0166228770000000012 \N \N 0.261560320000000013 9 6 12.4103589999999997 0 10 false 71 98.9137438335012007 1.89646433825669991 52.1568985 20.7002239999999986 7 75.7953181607237951 7.97638628478109002 9.50246300000000055 20.6522830000000006 7 69.2556163767342952 7.88002913728747956 8.78875200000000056 20.1607820000000011 1.46643870000000009 0 0.491500849999999989 -0.047941207999999999 0.539442059999999945 \N \N 0 \N \N \N NOT_AVAILABLE 150.872279970878992 -63.216809967564302 22.0925413337849008 -12.5153875944379998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426705408461696 2481426705408461696 887320389 2015.5 25.0405190200646999 4.35014809696378979 -3.00914514999778016 3.1547625671922801 \N \N \N \N \N \N \N -0.247411799999999987 \N \N \N \N \N \N \N \N \N 72 0 69 3 56.5872299999999981 5199.16016 16.4695499520429003 665.840171253581047 3 false 0.00362267299999999987 \N \N 0.0697139650000000027 17 9 6.4512590000000003 0 18 false 160 726.669236026006956 9.79954659628566915 74.1533966 18.535025000000001 17 1138.85350377731993 17.6933627003573015 64.3661400000000015 17.7102180000000011 17 2482.11560173519001 24.1473554853544989 102.790369999999996 16.2748640000000009 4.98296739999999971 0 1.43535419999999991 -0.824806200000000045 2.26016040000000018 \N \N 0 \N \N \N NOT_AVAILABLE 150.806924267032997 -63.2130141577924007 22.0745160519441015 -12.4914677177666 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426671048723200 2481426671048723200 104650618 2015.5 25.0615132328240016 0.0278131913662664002 -3.00748452366643981 0.0265824901553341 1.28044753202313011 0.0410089100271232992 31.2236420000000017 18.8617990147091987 0.0629828221777176955 -42.5338096069110989 0.059796807906308598 -0.0182979199999999988 0.424811329999999987 -0.0170978479999999988 0.0352065800000000012 -0.56078349999999999 0.35009636999999999 0.350420180000000026 -0.323987799999999992 -0.330432530000000002 0.570483199999999968 169 0 168 1 -1.26760359999999994 140.561996 0 0 31 true 54.0797540000000012 1.61915604423526993 0.00764490097805483031 0.0498408040000000024 19 9 0.0788697500000000024 0 19 false 167 44265.4764021748997 14.4769943196028006 3057.63989 14.0732029999999995 17 23915.8447482693991 37.1014058761722012 644.607499999999959 14.404674 15 29618.4495352332015 47.1320977570714987 628.413599999999974 13.5830145000000009 1.20939160000000001 0 0.821659099999999976 0.331470500000000001 0.490188599999999974 \N \N 0 \N \N \N NOT_AVAILABLE 150.847663538874002 -63.2027630273756031 22.0951014380781992 -12.4976626358452005 100001 5809.85986 5766 5946 0.107000001 0.0130000003 0.196199998 0.0502999984 0.00490000006 0.0979999974 200111 1.01818279999999994 0.972092799999999979 1.0337327999999999 1.06416700000000009 0.986793400000000043 1.14154059999999991 +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426460596188800 2481426460596188800 492221782 2015.5 25.0690267630746 1.03638486640471994 -3.0192382220497298 0.670756874193031982 3.46692905799842022 1.18184225145106003 2.93349549999999981 -2.2989120548153501 1.68454674183411002 -20.8974988292683008 1.67718811472649998 -0.161780740000000006 0.664748200000000011 0.0803757999999999972 -0.0895745800000000009 -0.333967799999999981 -0.0856494099999999953 -0.106894955 -0.0382552300000000012 -0.066385890000000003 0.302021299999999993 128 0 127 1 -0.0026299069999999999 121.293999 0 0 31 false 0.0340362940000000017 0.989061474653709971 0.255266593055052005 0.0182403940000000001 16 8 1.68299620000000005 0 16 false 131 113.805003763734007 1.32680529659231006 85.7736969 20.5479619999999983 9 56.5865582941152994 8.79236923311131946 6.43587159999999958 20.9696040000000004 12 166.368115777876 5.86965803147032972 28.34375 19.2092460000000003 1.9590938 0 1.76035879999999989 0.421642300000000025 1.33871650000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.873673075520003 -63.2103117646415029 22.097800947342801 -12.5113557301352003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423849254959872 2481423849254959872 1246140311 2015.5 25.106005620198701 1.71418356423088003 -3.01424366458173987 2.82381255827377009 \N \N \N \N \N \N \N -0.147241640000000007 \N \N \N \N \N \N \N \N \N 89 0 89 0 2.88052600000000014 126.264 4.00589098424775969 1.98218137209690992 3 false 0.0135820409999999996 \N \N -0.0550865980000000005 11 8 7.97655150000000024 0 11 false 94 90.490021816728003 1.52311309485451996 59.4112015 20.7968639999999994 9 65.4310083049167019 10.2906559632317993 6.35829299999999975 20.8119300000000003 9 83.8025146485194057 21.1341354107083994 3.96526809999999985 19.9537769999999988 1.64917099999999994 0 0.858152400000000037 0.0150661470000000002 0.843086239999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.943442756836987 -63.1903358541041982 22.1348456759895988 -12.5203407281749008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426838553328000 2481426838553328000 248749658 2015.5 25.0800074901780015 1.79728665703974011 -3.00075515532699999 0.961590113424994009 1.42166034653845008 1.98796045774948005 0.715135100000000024 9.53554792106234927 2.34798875739969981 -2.95773095551902987 2.10372795783113986 0.183955060000000004 0.783847399999999972 0.0400313620000000009 -0.0566532400000000005 0.0764736159999999943 -0.05253501 -0.12609534 -0.0297964640000000017 -0.0460692830000000025 0.281960900000000014 96 0 95 1 -1.04417000000000004 76.1075974 0 0 31 false 0.0210671699999999996 1.23079654526888005 0.370851088262152018 0.0864286100000000029 12 8 2.23556180000000015 0 13 false 98 87.8536376203201002 1.45128805670655003 60.5349007 20.8289660000000012 8 56.2132656814697 7.40845448891047997 7.58771850000000025 20.9767909999999986 10 128.824500111076986 12.4546368915471994 10.3434969999999993 19.4869230000000009 2.1062050000000001 0 1.48986820000000009 0.147825239999999997 1.34204290000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.87865064518499 -63.1889381651023996 22.1152269303657008 -12.4982241262762006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426877207153280 2481426877207153280 1507470124 2015.5 25.0944587266619017 0.603476874605450964 -3.00157648189760984 0.391942408587566016 0.728544072367118045 0.680510693087018947 1.07058429999999993 0.958503117189702047 1.03452054209944011 -1.36901130409739991 0.678913481427445009 -0.111180760000000003 0.558393539999999966 0.0751451699999999972 0.083758390000000002 -0.283132170000000016 0.0612278399999999987 0.233763870000000012 -0.0203095260000000014 0.0838346299999999933 0.117621970000000006 158 0 157 1 0.699825299999999983 163.828995 0.853975172479702005 0.468696834956458974 31 false 0.0748085299999999981 1.82293534024106996 0.129161345491528995 -0.00984904999999999982 18 10 0.914023699999999995 0 18 true 154 217.886311162064004 1.42421218913183001 152.987 19.8427900000000008 14 183.247105509018013 14.2792317951175995 12.8331199999999992 19.693795999999999 12 130.903468891408011 8.82488811938645057 14.8334430000000008 19.4695420000000006 1.44180970000000008 0 0.224254609999999993 -0.148994450000000001 0.373249050000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.908476647816997 -63.1836538740695985 22.1286552079401986 -12.5043126913782991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423849254961280 2481423849254961280 485853015 2015.5 25.1121739641351986 0.245350923272862009 -3.01125705577118019 0.167018870666593988 0.538247301660878974 0.289618258815100005 1.85847159999999989 1.52593564179216989 0.433018549344999004 -0.65228352420518898 0.307379776085696998 -0.0411351059999999977 0.553613299999999975 0.0562154279999999978 0.0764767900000000028 -0.257479820000000026 0.00382873100000000015 0.113473240000000003 0.0130713570000000005 0.127602490000000013 0.157891379999999998 166 0 165 1 3.79703519999999983 237.121002 0.792179505940692974 2.88613571743516983 31 false 0.394825130000000024 1.60334471304616999 0.0518759694775864991 0.0150579660000000008 19 10 0.385953040000000025 0 19 false 165 800.251603386271995 1.80299924992566996 443.845001 18.430299999999999 16 370.841925986107981 10.0502916578600008 36.8986239999999981 18.9284150000000011 18 659.628636403847054 6.22962493127382011 105.885769999999994 17.7136700000000005 1.28768320000000003 0 1.21474459999999995 0.498115540000000023 0.71662899999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.95307279909099 -63.1850448754774021 22.1418391341541003 -12.5198375763262 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426804192464128 2481426804192464128 880814126 2015.5 25.1113901572111011 0.0667317337374782049 -3.00408341682941993 0.0482379600524538987 1.01521038541335007 0.0794544018524921958 12.7772699999999997 -5.81255816793227975 0.121143454172601001 -14.8096625619103008 0.0978108821582536064 -0.0201874299999999993 0.529781159999999973 -0.010279425 0.0572342569999999967 -0.274735200000000013 -0.044334819999999997 -0.111601720000000001 0.0488241349999999977 0.154456509999999991 0.240915459999999998 169 0 161 8 -0.238128680000000009 151.177994 0.181920464362838014 1.38235764457345001 31 true 5.35353369999999984 1.50727736265741008 0.0151034927323117005 0.0221813800000000005 19 10 0.115784899999999996 0 19 false 160 6048.10525569113997 4.22582097155776015 1431.22998 16.2343179999999982 18 2684.02256635907997 20.5175682207662007 130.815830000000005 16.7794230000000013 18 4844.54041713849983 16.4327068521435002 294.810850000000016 15.5487880000000001 1.24478040000000001 0 1.23063469999999997 0.545104999999999951 0.68552970000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.944840729830986 -63.1788577769901991 22.1438050499385994 -12.5128812517660997 100001 4825.81982 4713.22998 4951.41992 0.193000004 0.0900000036 0.355599999 0.0926999971 0.0439000018 0.165999994 200111 0.739137000000000044 0.702113100000000045 0.7748699 0.266948760000000007 0.22330831000000001 0.31058920000000001 +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423784830450688 2481423784830450688 1341124804 2015.5 25.1284059771274997 4.74034521733251957 -3.01882596744298981 5.57531077604452996 \N \N \N \N \N \N \N 0.778111760000000041 \N \N \N \N \N \N \N \N \N 57 0 56 1 1.10852459999999997 62.2700996 4.43844010059348992 1.90265396843496992 3 false 0.0117301850000000006 \N \N 0.184598330000000005 7 5 11.8815810000000006 0 7 false 58 83.7102502539087965 1.64740813499830008 50.8133011 20.881418 4 50.0786739069810025 28.8222497589085016 1.73750049999999989 21.1022570000000016 5 129.548266082281003 20.4983499653497994 6.31993630000000017 19.4808400000000006 2.14581780000000011 1 1.62141610000000003 0.220838549999999995 1.40057750000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.992729244625991 -63.1851262141248 22.1544119994482003 -12.5328528303443996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423887909934720 2481423887909934720 1605850545 2015.5 25.1353075201566014 0.475495393130178023 -3.00696644448734007 0.317748135363854989 -0.74554106914970697 0.538392878678999987 -1.38475290000000006 -1.56529711905811997 0.843547608189560982 -3.30116482284932999 0.627687855826533969 -0.100374870000000005 0.552798400000000023 0.136959539999999991 0.0151211950000000005 -0.273865199999999975 -0.0432347579999999981 0.0688652200000000048 -0.0165102739999999984 0.0884884150000000008 0.136000869999999996 159 0 159 0 0.125464249999999999 155.539993 0 3.23895439065716995e-15 31 false 0.110785596 1.59685869273714998 0.104287706915059994 0.0204367080000000013 18 10 0.752424500000000052 0 18 true 158 275.150550027508018 1.44028648843580998 191.039001 19.5894399999999997 15 151.089733471371005 9.57822397184014918 15.7742950000000004 19.903300999999999 17 191.100288836597997 7.81780968886005034 24.4442230000000009 19.0587669999999996 1.2436465000000001 0 0.844533899999999949 0.313861849999999998 0.53067209999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.995576752121991 -63.171469817092003 22.1654559063528005 -12.5243722877543995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423917974440576 2481423917974440576 1131704592 2015.5 25.1436230648160013 0.74152233008025803 -3.00500690103396995 0.484880327726483984 0.532899209148115949 0.829883761800020991 0.642137170000000035 3.51410819742386993 1.30749610656908 -2.18874487485877989 1.00333121936098002 -0.0756061600000000056 0.563991840000000022 0.173279060000000013 -0.0190718489999999984 -0.217631849999999988 -0.0867704599999999937 0.0140080020000000003 -0.0308684349999999996 0.0823533399999999971 0.130827229999999989 137 0 136 1 2.49451109999999998 174.858002 0.941200729908895029 0.405120544987857989 31 false 0.0547040180000000001 1.53921420341611004 0.163501769175563 0.0609524730000000001 16 10 1.17044440000000005 0 16 false 136 176.920603628624008 1.32481135433166997 133.544006 20.0689199999999985 12 112.856665200132994 6.85586989664238988 16.4613189999999996 20.2200699999999998 13 113.381481950652002 8.70234457779110038 13.0288430000000002 19.6255650000000017 1.27875519999999998 0 0.594505300000000014 0.151149749999999999 0.443355559999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.010457869620012 -63.1662083779173997 22.1741030080326986 -12.5256141254786009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425395443283968 2481425395443283968 1224742741 2015.5 25.1573729477390984 2.15907415993806984 -3.00222771410328981 3.59544387833219004 \N \N \N \N \N \N \N -0.438116999999999979 \N \N \N \N \N \N \N \N \N 74 0 73 1 -1.49678040000000001 51.4402008 0 0 3 false 0.0161780159999999999 \N \N -0.109418294999999999 9 6 10.0085499999999996 0 9 false 75 81.2224869641241014 1.72220423901175002 47.1618996 20.9141750000000002 5 48.619302227046802 15.6518879151402004 3.10628990000000016 21.134367000000001 6 37.994789319152801 10.1074306198770003 3.7590946999999999 20.8126099999999994 1.06638070000000007 0 0.321756360000000019 0.220191959999999992 0.101564409999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.035481007236996 -63.1579235519143012 22.1882271614175011 -12.5280955213477991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425120565026816 2481425120565026816 118268479 2015.5 25.1812406205539006 0.116680813825501994 -3.02176812446072995 0.0744471397167568993 1.19290623856495004 0.140386987151393 8.49727099999999957 0.0400739112996680996 0.188425543396007006 -0.0143982431574861992 0.136073725718830002 0.0313385700000000031 0.629093299999999966 0.0248590729999999989 0.113739789999999993 -0.158134190000000008 0.0126925479999999997 0.0829465239999999937 0.0325332499999999997 0.159122440000000004 0.178135619999999995 156 0 154 2 0.845062729999999984 163.358994 0.0870833775148728978 0.132727033866325006 31 false 2.21114679999999986 1.44875717728073994 0.0247041790059330003 0.0577897129999999995 18 10 0.170767370000000002 0 18 false 154 2421.93950965533986 2.89950919822691988 835.29303 17.227957 17 915.066415970616958 14.3064900900299996 63.9616279999999975 17.9477559999999983 18 2210.61294594070978 11.0403797678985001 200.229800000000012 16.4006390000000017 1.2905686999999999 0 1.54711719999999997 0.719799039999999946 0.827318200000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.101575559970001 -63.1656372610609012 22.2035403145332992 -12.5550489075851992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425120565280256 2481425120565280256 627995623 2015.5 25.1820555397181991 1.24687142895758996 -3.0132817645661798 0.726166452140048047 -0.129850339409769006 1.45255792576281006 -0.0893942600000000032 7.51079412499233001 1.8899048571044299 -4.47620932518945036 1.37863779934281006 0.0363941679999999976 0.688728099999999954 0.165863619999999989 0.0284834539999999983 -0.0466663729999999971 -0.107737004999999997 0.101576630000000001 -0.00311014400000000002 0.14084584 0.0785524249999999952 138 0 137 1 4.46010880000000043 217.606995 2.44164572453250006 2.20881126378835013 31 false 0.0243138559999999983 1.78500621487892008 0.247220165026168004 0.0648535600000000045 16 10 1.70259450000000001 0 16 false 138 122.493553775582996 1.34029938109774993 91.3927002 20.468081999999999 13 55.7995817756435031 13.2185046771825991 4.22132349999999956 20.9848099999999995 13 147.764161639354 9.54709151235011966 15.4774010000000004 19.3379970000000014 1.66183229999999993 0 1.64681239999999995 0.516727449999999977 1.13008500000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.095303128350992 -63.1575960427972021 22.2075215443002989 -12.5474608320508008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424364650627200 2481424364650627200 621044724 2015.5 25.191298828691199 0.0287672931556826016 -3.02168523331845984 0.0209295401924060008 1.87682581872084997 0.0334980053115144991 56.0279900000000026 12.0877028500445007 0.0495079949105364028 -8.12067416916957008 0.045658089819668797 0.0698270299999999983 0.596063549999999998 -0.0225339379999999999 -0.0355637599999999998 -0.106734335 -0.16338707999999999 -0.233160480000000003 0.0620467069999999996 0.149273899999999987 0.191789719999999997 141 0 140 1 -0.0686229200000000039 133.214005 0 0 31 true 66.6980899999999934 1.57148238135057006 0.00703617505064720039 0.0462407729999999989 16 10 0.0547486500000000029 0 16 false 139 53765.2606793984014 18.3522185784528986 2929.62988 13.8621110000000005 15 27803.7733794480009 53.398450944713602 520.684999999999945 14.2411290000000008 16 37410.1546199270015 43.878145035761797 852.591999999999985 13.3294460000000008 1.21293800000000007 0 0.911683099999999969 0.37901783 0.532665249999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.121680787256992 -63.1613347372831981 22.2131366915246993 -12.5586759764952998 100001 5460 5406 5486 0.0130000003 0.00800000038 0.0340999998 0.00719999988 0.00389999989 0.0161000006 200111 0.87922615000000004 0.870911960000000041 0.896878839999999955 0.618965499999999946 0.592837330000000051 0.645093699999999992 +1635721458409799680 Gaia DR2 2481425227939730688 2481425227939730688 186249637 2015.5 25.1828461837385014 0.134540112271340995 -2.99775343144224005 0.0882084607266172965 0.995272386601767978 0.154663662647646999 6.4350757999999999 7.17746778051600032 0.248527608570301012 -7.3239065498729099 0.169554402417143008 0.0467254969999999978 0.513445440000000031 -0.159524100000000002 0.0844840560000000018 -0.15467997 -0.000170107960000000002 -0.0504932099999999967 0.0895053999999999989 0.160293939999999996 0.18493467999999999 150 0 140 10 5.98258829999999975 258.066986 0.619571907686761958 10.4798282578117998 31 false 1.60896810000000001 1.53059551027723995 0.0279252008164432991 0.0301341530000000003 16 10 0.224918900000000005 0 17 false 137 4244.32080188417967 4.59016579470651021 924.655029 16.6188450000000003 14 1561.44685400908998 14.4396294161215 108.136215000000007 17.3675700000000006 13 3940.34431106957982 19.7974330591069005 199.03309999999999 15.773085 1.2962712999999999 0 1.59448619999999996 0.748725900000000055 0.84576035000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.082429990928006 -63.1431756364681007 22.2141397074786013 -12.5333180820605001 100001 4338.75977 4158.41016 4613.25 1.19369996 0.705500007 1.41390002 0.583999991 0.350899994 0.694999993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481425154925024000 2481425154925024000 476984441 2015.5 25.1895499612821006 0.576310974970608014 -3.00041140993696986 0.324757984208254025 0.678321750780836008 0.635344440315322001 1.0676441000000001 2.66516433719678014 0.962228831458155964 -5.67107250534778018 0.555224191244917953 -0.00727436900000000015 0.593846899999999955 -0.0893746700000000033 0.166260099999999994 -0.0442411100000000002 0.0651593359999999983 0.229552220000000001 0.0322246179999999965 0.199787070000000011 0.0138219199999999997 141 0 139 2 1.69428179999999995 162.934006 1.17359165404948995 1.42279329646428998 31 false 0.107738260000000002 1.41541688659399001 0.106997277382143 -0.00573903650000000005 16 10 0.846421300000000043 0 16 false 139 313.522564194985989 1.61940396288124999 193.604004 19.447693000000001 12 87.6230857903573934 20.0009155312466014 4.38095400000000001 20.4948429999999995 13 397.794322682948973 18.1372614913657983 21.9324359999999992 18.2627740000000003 1.54826949999999997 0 2.23206900000000008 1.04714970000000007 1.18491940000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.098348872619994 -63.142771552753203 22.2195104260064014 -12.5382573865093008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424330291042688 2481424330291042688 375510112 2015.5 25.2075574941178999 0.823325413899370973 -3.02517678354087005 0.479528748212918021 1.09778705741845006 0.977319784653843948 1.12326290000000006 -7.98638094173104029 1.28831549886814001 -8.82037418131591977 0.832685815495394999 0.000517206999999999997 0.658212539999999957 0.138417559999999995 0.114241670000000003 -0.117779314999999996 -0.0237790699999999994 0.242161349999999997 0.000769167150000000014 0.183811799999999997 0.0661379899999999937 154 0 153 1 2.77724390000000021 200.291 1.51650834731779005 1.1640546554867699 31 false 0.0496240100000000031 1.15268244436153 0.157235337903686989 0.0535761230000000033 18 10 1.14804539999999999 0 18 false 151 183.440402400602011 1.40254418414735005 130.791 20.0296289999999999 12 48.9723717095958975 8.07961196929625025 6.06122829999999979 21.1265099999999997 14 248.034695851089992 7.54232387508266022 32.8857100000000031 18.7756390000000017 1.61909299999999989 0 2.35087199999999985 1.09688190000000008 1.25399020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.157551600976007 -63.1576618382516983 22.227279673056799 -12.5679085138507993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424231507318144 2481424231507318144 445576584 2015.5 25.2362952050626994 0.0273456396782168001 -3.01435295320754992 0.0196886602581191998 0.851435323399121979 0.0327358113251553992 26.0092929999999996 -6.16316919446594991 0.0452552947301800984 -4.57923181296451975 0.0411475846042830967 0.0935092599999999968 0.618876199999999987 -0.0507217270000000012 0.0288105809999999983 -0.136293340000000013 -0.115716174000000005 -0.275560099999999975 0.0829406300000000013 0.168844369999999994 0.293570039999999977 156 0 156 0 -2.36579750000000022 112.955002 0 8.17742798131512974e-16 31 false 85.6238699999999966 1.57553630602716011 0.00656675180918307039 0.0656150999999999957 18 10 0.0520169330000000013 0 18 false 155 69041.3797143769043 22.1777329324127983 3113.09009 13.5905919999999991 16 34358.6080633909005 53.9673372463518035 636.655639999999948 14.0112989999999993 16 49840.7582691693024 114.433048681451993 435.545140000000004 13.0179589999999994 1.21954929999999995 0 0.99334049999999996 0.420706750000000018 0.572633740000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.205046613478999 -63.1357426375803001 22.2586993100978994 -12.5684277605769008 100001 5290.56982 5106.83008 5350 \N \N \N \N \N \N 200111 2.36403320000000017 2.31180099999999999 2.53720619999999997 3.9446699999999999 3.58412739999999985 4.30521249999999966 +1635721458409799680 Gaia DR2 2481415602917434496 2481415602917434496 717969527 2015.5 25.0320072097178006 0.472981572934429995 -3.16656898955899013 0.416372200073705012 0.692863881751949018 0.620413328117059959 1.11677789999999999 4.44603175553784968 1.0389692593903801 -2.7328113246998198 0.729688888301190053 0.17249312 0.243453730000000007 0.0378679899999999972 0.068557190000000004 -0.317773519999999976 0.0168800500000000006 0.132101250000000003 -0.014314238 0.167097639999999992 0.221713450000000006 183 0 181 2 4.15697000000000028 265.201996 2.12137876829963012 4.91916662117086023 31 false 0.068383979999999997 1.41847727908947996 0.114846420857247 0.0423539900000000011 21 9 0.930909600000000004 0 21 false 181 221.728972191494989 1.24185176879961001 178.546997 19.8238090000000007 18 48.1938139959693004 7.98876779035929996 6.0326966999999998 21.1439100000000018 18 266.877361799434027 9.40265606904540974 28.3831880000000005 18.6961399999999998 1.42097439999999997 0 2.4477692000000002 1.32010080000000007 1.1276683999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.935986210383987 -63.3596037088962021 22.006869981377001 -12.634628529794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415705996744704 2481415705996744704 246196234 2015.5 25.0386415730679985 0.905594127883930011 -3.15106267939090001 1.20356841542601001 0.511692969903476014 1.19704843044152009 0.427462220000000004 1.87264727264941011 2.82627747628446002 2.11311589097872998 3.42688202596024993 0.507856129999999961 -0.168435140000000011 -0.480892929999999996 -0.458155839999999981 -0.628890399999999961 -0.643988200000000011 -0.768888059999999984 0.488767180000000023 0.561784199999999956 0.767821250000000011 124 0 123 1 0.677338659999999981 128.009003 0 0 31 false 0.0333656629999999968 \N \N 0.0578009229999999971 15 8 3.84658770000000017 0 15 false 124 104.542553045955998 1.12591473667653008 92.8511963 20.6401329999999987 8 60.1265348377581006 6.90892540354229023 8.70273300000000027 20.9037229999999994 10 69.8936809503113068 8.79361018427644048 7.94823500000000038 20.1508259999999986 1.24370610000000004 0 0.752897260000000013 0.263589860000000009 0.489307400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.934931046066993 -63.3427483594196019 22.0190475951342002 -12.6226652145232006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049594129152 2481416049594129152 583045284 2015.5 25.0651841129330002 0.89226239352885095 -3.14842339553610984 0.806578206670522047 0.446128730366517012 0.991624319513436991 0.449896929999999973 -0.784255983727581985 1.94740566648499991 -2.37737164101709997 1.88971287077400008 0.250195029999999985 0.352327879999999982 -0.0594637469999999974 -0.066454940000000004 -0.0240706629999999991 -0.109363329999999995 -0.274576460000000022 -0.0320976560000000022 0.0799632740000000009 0.308973039999999977 114 0 114 0 0.340243879999999999 113.415001 0 0 31 false 0.0292908379999999996 1.41795467327534008 0.258119164950162017 0.0586945099999999984 14 9 1.93660910000000008 0 14 false 114 96.3652161424643054 1.17936517148714004 81.7093964 20.7285649999999997 9 52.7385030660065013 10.4249627873489992 5.05886749999999985 21.0460680000000018 10 67.8889339592115988 12.390523635129 5.479101 20.182423 1.25177359999999993 0 0.863645549999999984 0.31750297999999999 0.546142600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.986095061110007 -63.329251220955399 22.0452859175279983 -12.6299994827861006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415401054540800 2481415401054540800 87499261 2015.5 25.0862041717264006 0.0265674483187257997 -3.17259738004783998 0.0179582232960650984 2.49316707416023009 0.0310086076698825007 80.4024200000000064 -34.4437081299071011 0.0429416418175503009 -31.9373056186752997 0.037151357417522797 -0.0231126209999999999 0.624811400000000017 -0.0637906099999999976 0.0734808200000000022 -0.20009188 -0.0505060999999999982 -0.225643919999999998 0.0722206999999999988 0.154815120000000001 0.240384189999999998 161 0 161 0 -0.733054600000000001 142.776993 0 0 31 true 116.662949999999995 1.57865832288818009 0.00636035314275546979 -0.0151107380000000003 19 10 0.0481194630000000012 0 19 false 159 92554.185790953401 33.1270609806769016 2793.90991 13.2723750000000003 17 45819.6086158816033 75.0151229140730038 610.804930000000013 13.69876 16 66597.7183604357997 77.6873238099640986 857.253360000000043 12.7032720000000001 1.21461090000000005 0 0.995488170000000006 0.426384929999999995 0.56910324000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.051152541469008 -63.3423859252989985 22.0561277670464015 -12.6602148544345994 100001 5240.5 5138.5498 5554.7998 0.157000005 0.0165999997 0.314099997 0.0935000032 0.0122999996 0.149800003 200111 0.956229800000000019 0.851080999999999976 0.994549930000000026 0.621312599999999993 0.602709350000000033 0.639915899999999982 +1635721458409799680 Gaia DR2 2481368843609052288 2481368843609052288 1381886411 2015.5 25.0946567538200007 0.0557570789909000997 -3.17371587010359013 0.0327700477668593018 2.09825232918730009 0.0648327949960338934 32.364060000000002 9.33601011468469011 0.0856001779242603067 -17.884947457834901 0.0617909178808504003 -0.198295730000000003 0.666212800000000049 -0.0803543300000000016 0.115592180000000003 -0.377334180000000019 -0.0283414389999999995 -0.104642379999999993 0.0993565200000000037 0.183070750000000004 0.201270279999999996 158 0 158 0 -1.75721539999999998 123.694 0 0 31 true 14.9808339999999998 1.48777831780959002 0.0119689566867275006 -0.0660314699999999949 18 9 0.0817516600000000038 0 18 false 157 12334.8718002477999 6.01001278363994018 2052.38989 15.4605289999999993 14 4855.6917726490301 17.5374196791503003 276.876070000000027 16.1357609999999987 14 10891.3578614847993 24.0532214489624998 452.802459999999996 14.6692149999999994 1.2766286 1 1.46654599999999991 0.675231930000000036 0.79131410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.069268649684005 -63.3398543084883983 22.0637433005794001 -12.6643704110376998 100002 4399 4298.22021 4556.16992 0.00800000038 0.00200000009 0.256099999 0.00300000003 0.000699999975 0.156299993 200111 0.662882569999999949 0.617936900000000011 0.694331999999999949 0.148246240000000001 0.138501399999999997 0.157991080000000006 +1635721458409799680 Gaia DR2 2481368877968810496 2481368877968810496 180758900 2015.5 25.1095477732065007 0.727004005151795973 -3.16368546787703009 0.670427114243966948 -0.304712822739643008 0.85234333499163395 -0.357500099999999987 4.39768314211524025 1.48487549726038992 -2.18832104704274011 1.63193631030672992 0.265422429999999987 0.454048500000000022 0.0208581670000000004 -0.073392384000000005 -0.0555564569999999966 -0.116639499999999993 -0.247053429999999991 -0.0888753500000000057 0.0251448620000000005 0.410648879999999994 139 0 139 0 0.264618999999999993 137.699005 0 0 31 false 0.0386078399999999974 1.65987250475206993 0.215344492694836992 0.0583758299999999966 16 9 1.63739509999999999 0 16 true 138 115.762351939069006 1.13864936160149011 101.666 20.5294479999999986 10 40.199719817771097 6.33510607029063966 6.34554799999999997 21.3408300000000004 11 124.259183898257007 10.8649609824205999 11.4366889999999994 19.5260980000000011 1.42065970000000008 0 1.8147316 0.811382300000000001 1.0033493 \N \N 0 \N \N \N NOT_AVAILABLE 151.089927891054998 -63.3245017909146029 22.0817010443707993 -12.6605377788366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415469773446528 2481415469773446528 1134835520 2015.5 25.0702422324118999 4.99313047935337995 -3.16294651025958018 3.86952544729422021 \N \N \N \N \N \N \N -0.413524239999999987 \N \N \N \N \N \N \N \N \N 72 0 71 1 39.1233670000000018 2300.97998 18.4484686383174008 129.083854376263986 3 false 0.0026423442000000001 \N \N -0.108085410000000007 11 7 8.79070800000000041 0 12 true 94 215.489428174209991 2.92428965753172987 73.6894989 19.8548009999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.009882810828998 -63.3403175699345979 22.0446000885457991 -12.6453611251181002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435604864 2481415843435604864 1219788903 2015.5 25.0821266074089984 0.552288342766447005 -3.16230815565970014 0.424828993140230982 1.80084810023985997 0.658086272148458051 2.73649239999999994 5.49154976708408959 1.03397759012379997 -14.4163033376075997 0.707786678012323978 0.142830399999999996 0.482328409999999985 0.0903207300000000018 0.166563729999999993 -0.146255820000000009 0.10948186 0.347481399999999996 -0.0348767680000000024 0.132358239999999988 0.180306419999999995 165 0 164 1 5.50841669999999972 277.877991 2.02738422827713993 3.59479150237664014 31 false 0.0704140600000000005 1.65133258894013002 0.129045121741135999 0.0220110700000000006 19 10 0.924947439999999954 0 19 false 164 216.455646613878002 1.33603655419592005 162.013 19.8499429999999997 10 67.5455993091429008 7.01947524353685015 9.62260000000000026 20.7773949999999985 14 289.52005808304699 9.8320217251763804 29.4466460000000012 18.607723 1.64960189999999995 0 2.16967199999999982 0.927452100000000002 1.24221990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.033288023251998 -63.3347579697341985 22.0561435989794994 -12.6491494276856997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415847731139328 2481415847731139328 1499925447 2015.5 25.0814760134772001 0.0499330115162879978 -3.15239545514247022 0.0354175873709181022 7.0101717958116696 0.0589837144110567993 118.849270000000004 -26.0645382280596998 0.0920786611628567064 -24.9731944538603017 0.069634179658035103 -0.0228399520000000002 0.510973600000000028 -0.0363535430000000021 0.0672351100000000007 -0.275618260000000004 -0.0243254939999999996 -0.060487326000000001 0.0555682099999999998 0.154475019999999991 0.218600349999999999 169 0 168 1 10.9746570000000006 450.979004 0.278872919845851996 12.7750183584713 31 true 10.3600290000000008 1.3774301027573701 0.0123078204793191006 -0.00945305700000000082 20 10 0.0892105400000000048 0 20 false 167 46834.7711666382966 22.9831132627524006 2037.79004 14.0119450000000008 19 13823.2592726956009 50.5571174162642976 273.41867000000002 14.9998620000000003 17 49196.0804418490006 75.3847449674666024 652.600000000000023 13.0320940000000007 1.34556729999999991 1 1.96776770000000001 0.987916950000000016 0.979850769999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.022703661950004 -63.3260336294847974 22.0592758516730996 -12.6396972994371009 100002 3930.78003 3788.31006 4206.25977 0.339300007 0.169599995 0.825299978 0.173700005 0.0920000002 0.358999997 200111 0.552733200000000036 0.482703749999999987 0.595087469999999952 0.0657113899999999945 0.0645222960000000068 0.0669004799999999983 +1635721458409799680 Gaia DR2 2481415843435697664 2481415843435697664 375122296 2015.5 25.0916919168124011 4.0442346059623997 -3.15282579755132009 7.90466687507665977 \N \N \N \N \N \N \N 0.0592360649999999975 \N \N \N \N \N \N \N \N \N 42 0 40 2 0.747295599999999949 40.8880997 0 0 3 false 0.0123761459999999993 \N \N 0.185515819999999998 5 4 2271.82470000000012 0 5 false 42 74.4978914606557936 1.97922548620229999 37.6399002 21.0080050000000007 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.043727566624 -63.3221415692077017 22.0688283067144013 -12.6438632851318999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416053889569280 2481416053889569280 429281415 2015.5 25.0744685327509984 0.106599941628802 -3.14855319537995015 0.077119951274670695 0.338160669154252025 0.128075040398102996 2.64033220000000002 5.53822435621161979 0.197649974677987006 -6.34721357121224017 0.140363042929255 0.0333027020000000035 0.502375499999999975 0.00324865920000000016 0.0966100839999999988 -0.236337560000000002 0.0309278459999999984 0.120381829999999995 0.0226797499999999985 0.134547300000000009 0.19468321999999999 175 0 174 1 2.26128319999999983 213.296005 0 0 31 true 1.87084570000000006 1.59194346800237008 0.0247951574759604013 -0.004952054 20 10 0.179505770000000009 0 20 false 174 1967.76837003672995 2.58789106690826998 760.375 17.4534300000000009 18 955.007003638776041 12.9566694390498007 73.7077560000000034 17.901371000000001 18 1492.1433688290499 9.51995669183341064 156.738460000000003 16.8273940000000017 1.24361699999999997 0 1.07397649999999989 0.447940830000000012 0.626035699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.004964668566998 -63.3254817058907022 22.0540658037168988 -12.6335431186071006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368873673377152 2481368873673377152 437970238 2015.5 25.1122723528789003 0.594175511564063008 -3.15625282840544008 0.502368221431154005 1.87426604377665007 0.707961684459093021 2.64741159999999986 0.410811597301734999 1.19731903652603 -7.3362830041196796 1.0965625683668101 0.152231349999999988 0.437716959999999988 0.0886793300000000007 0.002674816 -0.158347309999999991 -0.0297116709999999985 -0.0244859550000000002 -0.0755315349999999969 0.0749148060000000005 0.289980599999999977 147 0 145 2 1.98210170000000008 175.080002 1.05561066422324989 0.593708958412235033 31 false 0.056617569999999999 1.34990815568212996 0.163626425938948994 0.0376420299999999999 17 10 1.1487061999999999 0 17 false 144 156.020288964615986 1.33997801657934001 116.434998 20.2054140000000011 11 43.6524250713839024 7.64760649744657961 5.7079854000000001 21.2513679999999994 15 199.131303985970987 8.98555269384480937 22.1612760000000009 19.0140700000000002 1.55610359999999992 0 2.23729699999999987 1.04595379999999993 1.19134329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.088461899138991 -63.3166143551559983 22.0871044379260013 -12.6546343787727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368877968810240 2481368877968810240 569701847 2015.5 25.1156031157000008 0.062228792797489399 -3.1639376571704001 0.0422148149425118982 0.510957255537130006 0.0715164145142363067 7.14461499999999994 -0.20164107486024499 0.116916129979568004 -3.74053132215369022 0.082589108041802306 0.0742454449999999933 0.499280500000000016 -0.164204089999999997 0.0695725400000000022 -0.123560840000000005 -0.0171162059999999984 -0.0778551900000000047 0.0931725399999999981 0.159916730000000007 0.180346859999999998 147 0 146 1 -1.78540600000000005 112.517998 0 0 31 true 7.66739269999999973 1.60066597339381 0.0144200443306884002 0.00797457900000000074 17 10 0.110241729999999996 0 18 false 144 6690.06603337280012 5.08314233003151017 1316.13 16.1247900000000008 17 3672.16305604484978 23.248601903147101 157.951999999999998 16.4390830000000001 16 4390.25276285913969 13.8913759148253 316.041600000000017 15.6556960000000007 1.20513249999999994 0 0.78338719999999995 0.314292899999999986 0.469094279999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.102381450990009 -63.322186877948198 22.0873647464845 -12.6630041072248005 100001 6152.81982 5866.75 6710.45996 0.0680000037 0.0175999999 0.168400005 0.0430000015 0.00789999962 0.0922999978 200111 0.878366769999999963 0.738447799999999988 0.966115830000000009 0.996192929999999977 0.702378300000000011 1.29000760000000003 +1635721458409799680 Gaia DR2 2481368912328548480 2481368912328548480 1336477519 2015.5 25.1368350497974014 0.0404551254964614013 -3.15951948709310004 0.0290231740582880988 3.83661256536024009 0.0475222827464603023 80.7329199999999929 7.14197116248941999 0.0667809899491011993 -4.0907112209575196 0.0610674975520201987 0.128486479999999986 0.62009000000000003 -0.0476771969999999976 0.00957889900000000009 -0.0730159060000000054 -0.109056899999999998 -0.276945200000000002 0.0652032000000000028 0.135667160000000009 0.279232599999999997 158 158 158 0 4.84873439999999967 253.522003 0 0 31 true 384.687099999999987 1.58774399621110995 0.0102173420159867995 0.0525442100000000009 18 10 0.0447368250000000009 0 18 false 156 310044.78867571702 125.052117286026998 2479.32007 11.9598049999999994 17 162170.455582207011 310.621799729016004 522.083300000000008 12.3264589999999998 16 211704.188373031997 231.791740675198014 913.337949999999978 11.447597 1.20587299999999997 1 0.878862400000000044 0.366654399999999991 0.512207999999999997 8.12497739607190006 1.37633377615178998 6 5500 4.5 0 NOT_AVAILABLE 151.141057378842987 -63.3092530304277972 22.1092301273307008 -12.6667230985288004 100002 5486.1001 5416.2998 5596 0.152999997 0.067900002 0.217600003 0.075000003 0.0285 0.104199998 200111 1.02162839999999999 0.981894849999999986 1.04813050000000008 0.851795799999999992 0.837098899999999979 0.866492700000000005 +1635721458409799680 Gaia DR2 2481368908034516480 2481368908034516480 441491997 2015.5 25.1350461133970988 0.633581807360337979 -3.15890867531462005 0.554540810124597994 -0.697845683761128988 0.777853882362775972 -0.897142400000000007 24.007480441110701 1.20589821146424003 -13.9864142340495992 1.08585571416372995 0.366903069999999998 0.481959099999999974 -0.0157487410000000001 -0.0556080830000000026 0.00497107599999999962 -0.163777100000000009 -0.217320619999999992 -0.017231139999999999 0.18344916 0.337599780000000016 100 0 100 0 2.07267879999999982 125.723999 0.723205656034787037 0.295686167982413983 31 false 0.0812328199999999973 1.38132591320852005 0.177878485728798996 0.142120820000000009 13 9 1.17858759999999996 0 13 false 102 194.13740597635001 2.03763469200693992 95.2759018 19.9680919999999986 8 205.514456494489991 39.417818344150497 5.2137450000000003 19.5692829999999987 8 287.817458393026016 32.4908176319165989 8.85842399999999941 18.6141259999999988 2.54114819999999986 0 0.955156299999999958 -0.39880943000000002 1.35396580000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.136877935911997 -63.3094516083861976 22.1077596891743013 -12.6654961380796998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369011112215424 2481369011112215424 272337506 2015.5 25.1352637073733014 0.17179572425662501 -3.14877594964930019 0.122780499730161002 -0.0954460778344452948 0.208348755137927999 -0.458107260000000016 -0.133048873398181 0.305318133813724024 -2.34218188577872022 0.222127704713190988 0.159011299999999994 0.552256639999999965 0.0310687179999999986 0.112847970000000006 -0.0691044600000000064 0.0189325530000000013 0.134477230000000003 -0.000115591973999999996 0.163448869999999996 0.185470539999999989 159 0 157 2 1.32751269999999999 175.606003 0.0372228429905809011 0.00960448181616303971 31 false 0.807755349999999983 1.63629993879018998 0.0405667716306076995 0.0427234199999999981 18 10 0.274477120000000019 0 18 false 157 993.982389427317003 2.03466760610919017 488.52301 18.1949199999999998 17 448.098635784164003 10.7442545272110994 41.705883 18.7229540000000014 16 779.073851116981018 8.03984954465781954 96.9015399999999971 17.5329739999999994 1.23460189999999992 0 1.18997960000000003 0.528034200000000009 0.661945340000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.127816183526988 -63.3001700783649 22.1117996872687002 -12.6561590170174991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368942392735104 2481368942392735104 458830203 2015.5 25.1449374707095998 0.221460409148406007 -3.1580232787573701 0.176173879502573988 2.85363963734203008 0.298330803171634018 9.56535299999999999 -17.7680995647328999 0.401040203733075973 -20.4343521191296986 0.302964634628293983 0.165377049999999998 0.511398429999999959 0.0513850260000000003 0.131218539999999995 -0.216299429999999987 -0.047570556 0.0475507750000000035 0.0840682900000000038 0.269090920000000011 0.255221750000000025 148 0 147 1 0.472265299999999999 149.417999 0.264113770747223975 0.279703901426699986 31 false 0.483021299999999987 1.21410710629724994 0.0534237799086674028 0.0974624999999999936 17 9 0.368779630000000025 0 17 false 147 675.320177128695946 1.72949166425499001 390.472992 18.6145919999999983 13 115.548923887791005 5.44509724018830976 21.2207280000000011 20.1944729999999986 13 916.647618880872983 7.29023542662642043 125.736350000000002 17.3564149999999984 1.5284549999999999 0 2.83805849999999982 1.57988170000000006 1.25817679999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.155985851575991 -63.3044867466746979 22.1175026429309014 -12.6683184032420009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373787115838464 2481373787115838464 1525843759 2015.5 25.2006870033297012 0.219383913484461013 -3.17173601381924009 0.159741592356472006 1.44669984891604009 0.263416896305763981 5.49205400000000044 2.26464926596267979 0.419023326382671979 2.00256200615354008 0.287533555179717015 0.155391599999999991 0.48688140000000002 -0.0550003540000000013 0.114992960000000005 -0.100677446000000004 0.0359273930000000019 0.162465209999999999 0.0281530400000000007 0.148876439999999999 0.180182189999999992 157 0 154 3 2.57497119999999979 197.212997 0.318184679392938985 0.413060908074093014 31 false 0.47682819999999998 1.3914435988787599 0.0555320548289948007 0.0569270850000000023 18 10 0.373905150000000019 0 18 false 150 724.44426244239196 2.16180309857104014 335.110992 18.5383530000000007 14 199.122578318089012 7.38619424894164034 26.9587520000000005 19.603586 16 826.268558623929039 12.3155996625342006 67.091220000000007 17.4691159999999996 1.41541760000000005 0 2.13446999999999987 1.06523319999999999 1.0692368000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.281164427301007 -63.2934037472129987 22.1653464051577984 -12.7016039392229008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373924554799872 2481373924554799872 594101444 2015.5 25.2046824796705984 0.177267752264453987 -3.15413953016087989 0.125378664319127003 5.0917536315640497 0.217714665347038011 23.3872800000000005 73.0986005019929053 0.31538478208139098 -34.0153749784752009 0.225432188345176004 0.102276590000000001 0.544054150000000014 0.0219881069999999998 0.117083080000000006 -0.155617699999999998 0.021975886 0.111148040000000004 0.0234096869999999985 0.169360530000000009 0.199430049999999998 157 0 154 3 6.09460639999999998 279.898987 0.743145584755832034 6.57585454666574964 31 false 0.780693230000000016 1.25777634271912997 0.0425747147504257004 0.0574123399999999992 18 10 0.283775119999999992 0 18 false 153 1525.88059724179993 2.51693640818445008 606.244995 17.7295650000000009 16 224.148117888579009 11.0182295735103999 20.3433880000000009 19.4750499999999995 14 2161.58394502394003 12.7231139441788006 169.894260000000003 16.4249900000000011 1.5635116 0 3.05006030000000017 1.74548529999999991 1.30457500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.272640176927013 -63.2757723533082981 22.1758017911717005 -12.6867205574778001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835320448 2481373855835320448 1594648232 2015.5 25.2266561982422992 0.0544494357109435029 -3.16070143590127994 0.0437447230980239979 0.504765393913645055 0.0681099051067568934 7.41104200000000013 0.812967079309324991 0.101653240792728 2.22420565434011985 0.0925177591382931042 0.121318469999999998 0.526513200000000015 -0.00967021300000000042 0.0291300380000000005 -0.228151660000000006 -0.00648175100000000001 -0.069024550000000004 -0.0152233160000000006 0.0643835140000000028 0.368457880000000015 139 0 138 1 -1.44568809999999992 110.197998 0 0 31 false 9.54473800000000061 1.64438254107193993 0.0148638469017146006 0.118234019999999995 16 10 0.105788924000000006 0 16 false 138 7960.51520261220958 6.0221915880299699 1321.85999 15.9360130000000009 14 4272.21610188690011 13.4519624382195992 317.590550000000007 16.274754999999999 16 5369.17894166002043 11.9312205348071991 450.01085999999998 15.4371500000000008 1.2111521999999999 0 0.837605500000000003 0.338742260000000017 0.498863219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.323015077151013 -63.2724255943049982 22.1942244372371995 -12.7009132386121006 100001 5789.5 5586.4502 5839.75 0.183200002 0.0599999987 0.354999989 0.0737999976 0.0286999997 0.164800003 200111 1.10368479999999991 1.08477249999999992 1.1853726 1.23296019999999995 0.880782700000000029 1.58513769999999998 +1635721458409799680 Gaia DR2 2481373684036627840 2481373684036627840 1415869562 2015.5 25.2450846864165008 0.40671561834334502 -3.1619758784164298 0.336883006309911026 0.473705826993260026 0.506055046940510955 0.936075699999999955 12.5242288507352999 0.806331544559301006 1.56579289916483 0.611521102601434996 0.201595780000000002 0.44232096999999998 0.0782338399999999989 0.106884725 -0.133379560000000008 0.0708320399999999989 0.259384449999999989 -0.0854778000000000066 0.0871233639999999948 0.22265045 138 0 136 2 -0.454155150000000007 123.144997 0 0 31 false 0.139824570000000009 1.34541915851065008 0.110253060219204002 0.102159254000000005 16 10 0.731036660000000005 0 16 false 136 269.154326007819975 1.37928990053542 195.139999 19.6133629999999997 12 70.6000701764705951 8.20989409632760037 8.59938900000000039 20.7293759999999985 13 314.077141589743007 19.3394761481711015 16.2402100000000011 18.5193300000000001 1.4292068 0 2.2100468000000002 1.11601259999999991 1.09403420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.361263853205998 -63.2657764078034006 22.2112748860993001 -12.7088847170532002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835322624 2481373855835322624 1493632946 2015.5 25.2247452331255992 0.240420634383398002 -3.15499439173339002 0.187977411073418005 4.88488414209192001 0.298692944391795001 16.3541999999999987 -16.7873245418619987 0.449834138452797017 -94.0679373527991061 0.33646275761685901 0.106342679999999995 0.481413800000000003 0.0136295229999999993 0.130754829999999989 -0.21620840999999999 0.139049740000000005 0.22208718999999999 -0.0476830270000000028 0.054077743999999997 0.253596780000000022 140 0 137 3 3.35813380000000006 193.565002 0.829411651889202961 3.53311315587392993 31 false 0.423710260000000005 1.14513976691183994 0.0629656757340931045 0.0797678160000000053 16 10 0.411056939999999982 0 16 false 138 795.104044022595986 2.02286980698319008 393.057007 18.4373049999999985 13 116.247978124672997 9.40871501051534054 12.3553510000000006 20.1879249999999999 14 1112.50430425939999 8.74035162810777955 127.283699999999996 17.1461660000000009 1.54539810000000011 0 3.04175949999999995 1.75061990000000001 1.29113959999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.313795771635 -63.2680648539864023 22.1945643662039984 -12.6949048203033996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373890195062144 2481373890195062144 23463638 2015.5 25.2322543214203989 0.288482877228459 -3.15208624901486978 0.240523192311448003 0.293609831651192976 0.359186991948658996 0.817428900000000014 9.7910404754422995 0.572831280545913035 -4.13269746526519999 0.440196403390988977 0.133637189999999989 0.452312649999999983 0.116176639999999998 0.0641888199999999937 -0.130203079999999999 -0.00503665950000000036 0.296764199999999978 -0.0897934499999999969 0.114562730000000002 0.124317949999999997 138 0 137 1 1.0947171 149.871002 0.292442138470858981 0.185981280919807007 31 false 0.274855499999999975 1.58745528065864994 0.0791253833624609021 0.0781846340000000029 16 10 0.510235899999999964 0 16 false 135 452.293380865910024 1.58795529949017999 284.828003 19.0498140000000014 14 258.696250565623018 9.69459065054637037 26.6845970000000001 19.3194119999999998 12 312.271428578036989 15.0327294177631003 20.7727700000000013 18.5255890000000001 1.2623835000000001 0 0.793823240000000041 0.269598000000000004 0.524225229999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.32615237599299 -63.2622533869894994 22.2028075939382994 -12.6949672842797998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374061995449856 2481374061995449856 1673449216 2015.5 25.2496945283686998 0.908332307226097035 -3.15576665015534985 0.74285603370715203 0.145083664142963004 1.19414140587249995 0.121496215000000005 -2.05661509272260012 1.54524587537452995 -14.6639140009060007 1.97633913496202007 0.126763920000000002 0.660018899999999964 0.160665140000000012 -0.156883020000000012 -0.190564779999999989 -0.185889040000000005 -0.2467694 -0.153661700000000012 -0.062066004000000001 0.520660939999999961 115 0 114 1 -0.789367799999999953 97.1369019 0 0 31 false 0.0549588650000000026 1.66332839828275003 0.217930714791468 0.129300190000000009 14 9 1.95471290000000009 0 14 false 110 123.53422749376 1.14658913683123997 107.740997 20.4588970000000003 7 187.286419126717988 53.8854088608686013 3.47564239999999991 19.6701219999999992 11 174.773001859706 11.1631701074039995 15.6562160000000006 19.155735 2.93084290000000003 0 0.514387130000000026 -0.788774500000000045 1.30316159999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.364670784417001 -63.2582007164404985 22.2180081902839994 -12.7048107960738008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371076992090496 2481371076992090496 587637094 2015.5 25.2927949237093017 0.0600520886954652028 -3.15915569666125995 0.0364748829953022019 0.930781776008602013 0.0751144887579523052 12.391508 17.821746540686501 0.0871300643828725047 -5.52096442370685025 0.0727355364621150025 -0.118940939999999995 0.715560439999999964 0.0941749499999999934 0.0732453500000000007 -0.352982159999999989 0.00389988490000000004 -0.0643590899999999938 -0.00397120399999999988 0.0749443500000000068 0.337525870000000006 123 0 122 1 1.87130079999999999 147.244995 0.129932202499279004 1.82713422496897993 31 false 17.3486559999999983 1.58806567270197996 0.0132106665133584003 0.0356094730000000026 14 9 0.0876164999999999999 0 14 false 117 20123.447195274799 10.1876049674411 1975.29004 14.9291099999999997 10 10032.6893630795003 32.8424829205657005 305.478999999999985 15.3478449999999995 12 14537.8386641978996 39.8648523830425034 364.678099999999972 14.3556699999999999 1.22099010000000008 0 0.992175099999999976 0.418735499999999983 0.573439600000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.454420147479993 -63.2429783570421975 22.2577348183764983 -12.7238301710601007 100001 5336.5 5289 5348 \N \N \N \N \N \N 200111 1.14386739999999998 1.13895330000000006 1.16450560000000003 0.956031399999999976 0.794147599999999954 1.11791520000000011 +1635721458409799680 Gaia DR2 2481374061993751808 2481374061993751808 927357712 2015.5 25.2609162688791002 0.556403264858380986 -3.15855363433038994 0.321914071919081002 -0.224552315183663004 0.737225142411511047 -0.304591239999999985 2.09216190169710003 0.701024674532242043 -4.95164003305186018 0.530109039268059967 -0.200928749999999989 0.782764899999999986 0.140345830000000005 0.0902597460000000018 -0.408822100000000022 0.0359315239999999994 0.225434600000000013 0.0340535270000000001 0.0694662499999999933 0.229714589999999996 139 0 138 1 1.00937769999999993 149.429001 0 0 31 false 0.161612420000000007 1.72827211976567008 0.104132199539714004 0.056191480000000002 16 9 0.739221000000000017 0 16 false 136 325.876908779030998 1.35496424123556003 240.505997 19.4057309999999994 14 180.943623554353991 5.62164057791570038 32.1869769999999988 19.7075299999999984 15 205.160047554041 13.1145840327217993 15.6436569999999993 18.9816879999999983 1.1848145000000001 0 0.725841500000000028 0.301797870000000024 0.424043659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.389844729276007 -63.2559669349726974 22.2276310275188003 -12.7115335164470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374341167210240 2481374341167210240 251235688 2015.5 25.2404510029492002 0.106889660935559003 -3.13334501500765006 0.0657156473718718964 1.75483456408776006 0.13999258641908699 12.5351959999999991 29.3945572405350006 0.146671773285578011 -19.8295597913236001 0.114147431947891995 -0.173373980000000011 0.74062490000000003 0.00815563650000000057 0.119500875000000006 -0.422125899999999998 0.0850516800000000045 0.100342829999999994 0.0192927999999999988 0.0844505400000000045 0.307679800000000003 140 0 139 1 15.4914050000000003 579.466003 0.450731622510007979 24.1644083354671011 31 true 4.18790700000000005 1.48953045313862997 0.0218697034165336 0.0597989300000000001 16 9 0.141957670000000008 0 16 false 139 26188.3363113496998 10.9731278733988997 2386.59009 14.6430959999999999 13 11590.0297143763 10.5872002816559991 1094.721 15.1911760000000005 14 21206.9357065719996 54.877901805646097 386.438539999999989 13.9457249999999995 1.25235009999999991 0 1.24545100000000009 0.548080440000000002 0.697370500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.324973334334004 -63.2418099058587018 22.2176904844233007 -12.6805658107453993 100001 4965.33008 4795.22021 5202 0.647000015 0.597500026 0.690999985 0.316000015 0.282000005 0.338999987 200111 0.826073170000000023 0.752618129999999996 0.88572379999999995 0.373702020000000024 0.313162180000000012 0.43424185999999998 +1635721458409799680 Gaia DR2 2481374371231411200 2481374371231411200 431457402 2015.5 25.2392550928874009 0.872877673110550978 -3.12889776907781991 0.480735398186254992 0.91794073172002999 1.11648689446113991 0.822168800000000033 6.21570720506614993 1.09667215413133001 -7.72892939783464961 0.83459701825376098 -0.129647970000000001 0.786375159999999962 0.164389769999999991 0.0765791599999999933 -0.320134220000000025 0.026105426000000001 0.222350280000000011 0.0238898269999999989 0.0638563260000000049 0.225790560000000001 131 0 131 0 2.60192729999999983 171.162994 0.968094167215451051 0.620043356859105055 31 false 0.0707738100000000064 1.49449261555449997 0.157577390223396008 0.0814363200000000065 15 9 1.14122150000000011 0 15 false 129 197.647459960443001 1.56230476565459009 126.510002 19.9486370000000015 12 102.618143394672003 10.9344346152177998 9.38485999999999976 20.3233280000000001 13 146.925130617223999 6.42453104187412016 22.8693939999999998 19.3441800000000015 1.26256750000000006 0 0.97914886000000001 0.374690999999999996 0.604457860000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.318385269371987 -63.2382878329346028 22.2182338965527997 -12.6759916596839997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375337599679232 2481375337599679232 543714196 2015.5 25.2448502824051992 1.22253075455739002 -3.09289525955083011 1.06337623687842009 -4.55799164973127979 1.93577120414794002 -2.35461279999999995 1.22187678044503989 2.99846340878251016 -1.42951836239989993 3.79789638548222985 -0.0122084989999999994 0.54203290000000004 -0.0568389970000000022 -0.168536899999999989 -0.430695859999999986 0.301839440000000014 0.297058219999999984 -0.522738200000000042 -0.553194170000000041 0.716393649999999993 99 0 96 3 0.090648560000000003 91.5574036 0 0 31 false 0.0242524330000000003 \N \N 0.199996489999999999 12 8 4.05473100000000031 0 13 false 99 103.931853071429003 1.31314571292375004 79.1472015 20.6464940000000006 6 78.6074637728088987 11.7978087097552997 6.66288660000000021 20.6127280000000006 8 80.7438197699428031 12.8433077720107001 6.28683999999999976 19.9941460000000006 1.53322850000000011 0 0.618581799999999959 -0.0337657930000000023 0.652347560000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.295770553305999 -63.2033081800949006 22.2371636546189997 -12.6445866960131994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374474312327808 2481374474312327808 693844385 2015.5 25.2607135649913985 1.95092394053318996 -3.11997352002057005 1.14356063645301997 \N \N \N \N \N \N \N -0.287054900000000002 \N \N \N \N \N \N \N \N \N 68 0 68 0 -0.884474639999999979 52.987999 0 0 3 false 0.0226471570000000011 \N \N -0.0794781499999999974 8 6 2.7244117000000001 0 8 false 68 93.0169240347270971 1.53080136834258007 60.7635002 20.766960000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.353068184009999 -63.221120918005802 22.2420210884709988 -12.6755975910611003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374508670374400 2481374508670374400 127122067 2015.5 25.2613947513703998 0.376794347788097006 -3.10794345773062997 0.258447072467705985 0.669697661985471981 0.471604449339510012 1.42004100000000011 2.53057171027985994 0.631089743060369024 -7.97235118060677994 0.436448448926879007 -0.0462114799999999992 0.610764199999999979 0.142829719999999993 0.0739922499999999955 -0.258887980000000018 0.00762708799999999975 0.330318999999999974 -0.0251808989999999996 0.0936773899999999993 0.103267275000000006 142 0 142 0 3.15804339999999995 195.360001 0.799442638683992013 1.43904845341582011 31 false 0.221365509999999988 1.48822539963850997 0.0819920483423643015 0.0843011300000000019 16 10 0.561631400000000003 0 16 false 139 447.812970948781015 1.53197961161351004 292.309998 19.0606229999999996 12 139.397409526605998 13.7974773787514007 10.1031080000000006 19.9907509999999995 15 475.995930446896978 12.3414115626211007 38.5690039999999996 18.0679109999999987 1.37421949999999993 0 1.92284009999999994 0.930128100000000013 0.992712000000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.343112137895986 -63.2099380773472035 22.2472155262117006 -12.6646659422048007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376810774528512 2481376810774528512 797910361 2015.5 25.2547732266000011 1.09530271665420997 -3.08550165245075991 0.770128226840154029 0.335465841006965027 1.29707760113431991 0.258632059999999997 0.584917080470570006 1.9163735173632801 1.54338131292338998 1.93364038675417005 0.105307474999999998 0.627945540000000024 -0.038942240000000003 -0.135322899999999996 -0.120221120000000001 -0.159058719999999987 -0.261243700000000023 -0.0574104530000000002 -0.0360623899999999997 0.354256420000000016 114 0 114 0 -0.251628760000000007 104.677002 0 9.6248052937908809e-16 31 false 0.0299697480000000009 1.85860074196442993 0.269823939726965001 0.123616790000000004 13 9 1.98065050000000009 0 13 false 114 122.465313686388996 1.06677614616259997 114.799004 20.4683320000000002 6 29.8719678330814986 10.1519065924742993 2.94249820000000017 21.6632290000000012 10 155.660976837242004 9.85500627724871947 15.7951169999999994 19.2814709999999998 1.51498369999999993 0 2.38175770000000009 1.19489669999999992 1.18686099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.308732721952993 -63.1924140163410968 22.2493967919760998 -12.6413674093975992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376746348895360 2481376746348895360 554799086 2015.5 25.2742038103061013 0.0296474369864663002 -3.0842899182300898 0.0221395952911240014 1.89763769636146007 0.0356218681984835014 53.2717060000000018 7.70999857035663982 0.0547103717090186986 -3.47586511598791015 0.0468864916793274022 0.0842789860000000002 0.53297720000000004 -0.151152100000000011 0.0348733069999999992 -0.215527240000000009 -0.0334443450000000003 -0.174814799999999992 0.0712356600000000062 0.107209299999999993 0.33797756000000001 139 0 139 0 -3.35924800000000001 85.6909027 0 0 31 true 67.769440000000003 1.56982017230190007 0.00767330615891682975 0.078476260000000006 16 10 0.0611529459999999997 0 16 false 137 54314.5855565187012 20.432077973704601 2658.30005 13.8510740000000006 16 26690.5591169996005 53.7348142596808032 496.708860000000016 14.2854939999999999 16 39344.3004729973982 39.1514550056819033 1004.92560000000003 13.2747150000000005 1.21578499999999989 0 1.01077839999999997 0.434419630000000001 0.576358799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.346553500831988 -63.1830926840152998 22.2683386379356989 -12.6473941148514992 100001 5314 5098.5 5676.75 0.270000011 0.126000002 0.331099987 0.127700001 0.0610000007 0.162100002 200111 0.930992069999999949 0.815810999999999953 1.01135639999999993 0.622691400000000006 0.595410100000000053 0.649972699999999959 +1635721458409799680 Gaia DR2 2481375990434372096 2481375990434372096 1167569270 2015.5 25.2811743159894995 3.40980008074367014 -3.09227487189239003 4.4730738713778404 \N \N \N \N \N \N \N -0.343183430000000012 \N \N \N \N \N \N \N \N \N 49 0 49 0 0.580025730000000017 48.9491997 0 0 3 false 0.0153530109999999997 \N \N 0.231052260000000009 6 5 14.2782970000000002 0 6 false 50 74.8173731760291929 2.34241853028728997 31.9402008 21.0033589999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.368035331281988 -63.1873703415837014 22.2719529989383993 -12.6573825857247009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376024794411904 2481376024794411904 585155202 2015.5 25.2947083803837991 0.260840379360258001 -3.08568270090643004 0.177198524908011995 1.09160971267312989 0.315598621065050988 3.45885439999999988 9.8899937102789508 0.449356556171014998 -11.8262154674096003 0.324825752689990976 -0.045554716000000002 0.568905349999999976 0.0498162600000000011 0.0774140660000000036 -0.26039487 0.0699175699999999983 0.16883585000000001 -0.0452275869999999997 0.0588400550000000022 0.176345400000000013 133 0 130 3 0.637742699999999996 134.654999 0 0 31 false 0.454074919999999993 1.42319630318190993 0.0619392758404257032 0.0779905300000000024 15 10 0.401917460000000004 0 16 false 127 702.930275097187973 2.4127992624138801 291.334015 18.5710850000000001 12 252.874885133117999 11.1721351757910003 22.6344279999999998 19.3441240000000008 12 670.095822650071 9.08103731121008018 73.7906700000000058 17.6965770000000013 1.31303309999999995 0 1.64754679999999998 0.773038859999999994 0.874507900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.388952832932006 -63.1756641906687975 22.2873191156637986 -12.6562362534313007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377016932932992 2481377016932932992 225388163 2015.5 25.2401712823758011 2.50888148056524019 -3.06887996204546987 1.26763469958505004 \N \N \N \N \N \N \N -0.384634140000000013 \N \N \N \N \N \N \N \N \N 66 0 65 1 0.982445659999999998 70.6723022 0 0 3 false 0.0170624459999999985 \N \N -0.164674039999999994 8 7 3.40901919999999992 0 8 false 70 86.4237318229991018 1.7954835574871999 48.1339989 20.8467829999999985 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.263847909947998 -63.183526728860997 22.2417874534832016 -12.6205407534248994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424055413130752 2481424055413130752 1480374714 2015.5 25.2371508078710995 0.236061629671256989 -3.03863742837476991 0.139635849711346988 0.744470410312094044 0.283338160701058994 2.62749800000000011 -3.45580214432174015 0.367834605838082973 -1.31304837416555009 0.244519479772350001 0.0505040799999999998 0.647279139999999975 0.033003277999999997 0.146875250000000013 -0.047538996 0.00680016030000000007 0.148918550000000011 0.0247669519999999983 0.212201150000000005 0.0851223299999999961 138 0 138 0 1.6353975999999999 160.738007 0.342911730443628993 0.64212589126490105 31 false 0.630475459999999988 1.46762341786264994 0.0488903056779902978 0.0708473500000000034 16 9 0.325349060000000023 0 16 false 138 969.784982982876954 2.37873925413218013 407.688995 18.2216780000000007 12 325.518096236410997 7.50223482882343973 43.389484000000003 19.0699499999999986 12 971.323038949238025 10.5829224774705004 91.7821200000000061 17.2935100000000013 1.33724609999999999 0 1.77643970000000007 0.848272299999999979 0.928167340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.229465676509989 -63.1573943725078024 22.2503401222040011 -12.5913167194443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376849428109952 2481376849428109952 951261629 2015.5 25.2724304561793005 0.0275296763302825993 -3.07359953514029005 0.0211374395916084992 1.22931481975250989 0.0340272722359777 36.1273399999999967 12.5728759223345996 0.0488058260117560996 -0.780015406933505018 0.0452472742387355006 0.0902486150000000042 0.574139900000000036 -0.0434406960000000009 0.0367555899999999977 -0.214729959999999997 0.0020449985999999999 -0.112622829999999993 -0.00484940130000000025 0.0525224999999999997 0.371772139999999973 147 0 147 0 -1.31652799999999992 120.350998 0 8.43259086162969006e-16 31 true 78.3659739999999942 1.56554133084553992 0.00695559668665522973 0.0947906599999999988 17 10 0.0570363070000000014 0 17 false 147 62802.9074948377965 26.3424739039755984 2384.09009 13.6934170000000002 15 31585.9299700759002 70.9848463480860943 444.967219999999998 14.1026539999999994 15 44584.3764629030993 79.0597758729248028 563.932500000000005 13.1389639999999996 1.21284689999999995 0 0.96369075999999998 0.409237860000000009 0.554452900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.332953082464996 -63.1741617536576996 22.2706904716642988 -12.6368038447565993 100001 5396 5335 5587.27002 0.931999981 0.591000021 1.12310004 0.463200003 0.292899996 0.544499993 200111 1.49085059999999991 1.3905246 1.5251380000000001 1.69765999999999995 1.5869063000000001 1.80841359999999995 +1635721458409799680 Gaia DR2 2481376780708633344 2481376780708633344 240072396 2015.5 25.2767523488802013 0.124800725105070995 -3.07515653429805003 0.0901898902076048031 2.30964062785022994 0.157829829293571006 14.6337390000000003 -6.51935671377987003 0.217556496245997988 -21.9141001729857017 0.161295951022220996 0.0165726879999999986 0.567896900000000038 0.0407944059999999983 0.10123356 -0.283504219999999973 0.0784386839999999946 0.186161889999999997 -0.0208127100000000016 0.0755670799999999948 0.240411370000000013 148 0 148 0 2.13153620000000021 181.378998 0.313450356862177981 1.6407714772589499 31 true 1.76639220000000008 1.34829211413379002 0.0291420072960815006 0.100655854000000003 17 10 0.199317959999999988 0 17 false 145 2270.71360633040013 3.2534652841203302 697.937012 17.2979599999999998 15 651.870801099711002 9.94176990358598012 65.5688860000000062 18.3159850000000013 16 2524.9060917152101 9.50657921261353955 265.595640000000003 16.2563080000000006 1.39902140000000008 0 2.05967710000000004 1.01802440000000005 1.04165269999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.343076905338989 -63.1737420571585986 22.2742136245168005 -12.6398420812582994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376879492401024 2481376879492401024 185754666 2015.5 25.2821638199426992 1.25775335978840008 -3.07127903464215013 0.880319261620360005 -1.03259111075403998 1.50978222617409008 -0.683933800000000036 1.19982471063355001 2.2913530410443399 -3.48109416742078981 2.34359191993599003 -2.84753369999999995e-05 0.592614100000000033 0.109329164000000006 -0.160094590000000009 -0.204978169999999987 -0.150580400000000003 -0.192838769999999993 -0.131769140000000007 -0.0890376199999999979 0.339860470000000026 112 0 112 0 0.410709829999999998 112.431 1.39202110849894001 0.353595518624399974 31 false 0.0232462750000000003 1.19418116576463995 0.297980766343474979 0.126834940000000007 14 9 2.3646246999999998 0 14 false 112 106.733020390055003 1.31256355293456006 81.3164978 20.6176190000000013 10 80.4419455202708065 9.31199633505518065 8.63852900000000012 20.5876799999999989 10 69.6786518867479998 7.30578962855511005 9.53745649999999934 20.1541710000000016 1.40650570000000008 0 0.433509829999999985 -0.0299377439999999988 0.463447569999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.35027591689601 -63.167938788564399 22.2808263439703005 -12.6382295175459003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754880 2481377158665754880 1499844282 2015.5 25.2653755010736987 1.70035323707715991 -3.05228770189641008 0.907447920375984984 1.15220590849261995 2.10824954400044007 0.546522559999999991 34.3500511464133993 2.21718772828115984 -19.7171787784726007 1.48750806223398002 -0.177083839999999992 0.75758654000000003 0.14122519 0.118986869999999995 -0.342265129999999973 0.0427984449999999975 0.237149090000000007 0.0252100560000000015 0.111224219999999999 0.163516999999999996 116 0 116 0 7.77952240000000028 270.730988 4.75133410678900958 8.18453431451752955 31 false 0.020586763000000001 1.4302484849241901 0.282347323430855002 0.0377362259999999977 14 9 2.19063970000000019 0 16 false 118 153.295326386239992 2.28114144050829992 67.2011032 20.2245430000000006 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.298813523742012 -63.157842115742902 22.2720302802841985 -12.6143959176020992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754752 2481377158665754752 256528212 2015.5 25.2661477566417005 0.039024745711629602 -3.05120821125523989 0.0300946902790560009 1.33730522919978001 0.0471138578124620025 28.3845400000000012 35.2294533522356019 0.0690817584005267993 -17.5410414468266005 0.0665931695157502973 0.116669449999999994 0.581088000000000049 -0.0632760700000000037 -0.00383201239999999979 -0.158481149999999987 -0.0642052099999999987 -0.189623459999999994 0.0160775899999999992 0.0665322500000000011 0.352182749999999989 151 124 146 5 8.14123200000000047 325.494995 0 0 31 true 206.349979999999988 1.57816917565693005 0.0101150787567449007 0.0840420499999999931 17 10 0.0514591000000000007 0 17 false 137 157217.089231335995 47.0450587218033007 3341.84009 12.6971159999999994 17 83996.8465040190931 131.590856304019013 638.318239999999946 13.0407299999999999 17 105217.761763528993 191.065344979736011 550.689939999999979 12.2066970000000001 1.20352450000000011 0 0.834033000000000024 0.343614580000000003 0.490418430000000016 9.33769838500690952 2.30676331359719011 9 5000 3 -1.5 NOT_AVAILABLE 151.299348347377986 -63.1565376358432999 22.2731726317175003 -12.6136767120905997 100001 5756.25 5650.43994 6008.54004 \N \N \N \N \N \N 200111 1.87470559999999997 1.72058029999999995 1.94557610000000003 3.47631759999999979 3.29457280000000008 3.65806250000000022 +1635721458409799680 Gaia DR2 2481377257449474560 2481377257449474560 1306303589 2015.5 25.2636566468664014 0.423496531719090019 -3.03657643541031996 0.270088162592331982 0.699577797786448019 0.515634982161390032 1.35673069999999996 16.4253278940275997 0.715376206600216946 -8.31808036311532994 0.465962455568579015 -0.0162513440000000009 0.600917600000000052 0.162066879999999996 0.0888451039999999942 -0.21107382999999999 0.00855583700000000016 0.270343200000000006 -0.0386080219999999988 0.127921499999999994 0.105807010000000007 149 0 149 0 1.71434500000000001 174.337997 0.590924530250976021 0.498141844588446014 31 false 0.174135220000000007 1.40870061820853998 0.0889431018782587957 0.075904879999999994 18 10 0.637126700000000046 0 18 false 148 381.19776311388199 1.90266298442747006 200.350006 19.2354899999999986 11 114.167821581281999 8.12916434601435078 14.0442260000000001 20.2075299999999984 9 449.88475590008602 10.3680678085876998 43.3913799999999981 18.1291679999999999 1.47968499999999992 0 2.07836150000000019 0.972038269999999982 1.10632320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.280644260142992 -63.1443346238323002 22.2763297908049012 -12.5991583050952993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376986867085440 2481376986867085440 521751622 2015.5 25.2870299362054993 2.02506674325326985 -3.05216526966562984 1.5264563729268501 \N \N \N \N \N \N \N 0.101125030000000005 \N \N \N \N \N \N \N \N \N 105 0 104 1 37.6694600000000008 2132.6499 10.4860641429502 183.181184970679993 3 false 0.00830235600000000032 \N \N 0.123094999999999996 16 10 3.36048359999999979 0 16 false 138 371.351870210885977 5.01949562671079974 73.9819031 19.2638999999999996 15 481.544324447079021 15.0767475898328005 31.9395370000000014 18.6447980000000015 13 1120.56372530480007 11.8974603103324998 94.1851199999999977 17.1383289999999988 4.31425859999999961 0 1.50646970000000002 -0.6191025 2.12557220000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.34206909463299 -63.1485682951081984 22.2926752265124009 -12.6222525319662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374165072978176 2481374165072978176 812573910 2015.5 25.3020714983128983 1.11294705982045006 -3.13497340472153008 0.859842697345755025 -0.32407549670507102 1.36800754204969 -0.236895999999999995 0.203344865315851997 1.90441168830448992 -10.9644809829843997 2.31037066655860013 -0.0335869199999999993 0.62797265999999996 0.128056350000000013 -0.18958469 -0.295979829999999999 -0.260609570000000013 -0.261567680000000025 -0.000543384749999999985 0.0324142840000000015 0.34429700000000002 113 0 112 1 1.50166949999999999 129.746002 2.24449179122035014 1.35782585577833004 31 false 0.0302035210000000005 1.75928586295883993 0.261102920521457005 0.145703520000000003 13 9 2.20691820000000005 0 13 false 112 131.192503931711002 1.38501634485157998 94.722702 20.3935929999999992 7 50.5926921233223013 10.2876589062943999 4.91780419999999996 21.0911700000000017 11 103.688092337102006 10.0667519939838002 10.3000550000000004 19.7225970000000004 1.17598779999999992 0 1.36857220000000002 0.697576500000000044 0.670995699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.450180103110995 -63.2171533390175 22.275700782343101 -12.7047661225624999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372691899792768 2481372691899792768 987006331 2015.5 25.3196328886732012 0.0641249120376866932 -3.13078414461226018 0.0474288582065615985 1.52666460882246002 0.0817181486498220061 18.6820759999999986 5.65957363801739 0.114981217473081002 -3.97341121863700009 0.0905883019858414046 -0.0143680930000000002 0.549126739999999947 -0.0109460270000000005 0.0687700200000000011 -0.32528484000000002 0.0724715439999999989 0.0945591900000000013 -0.0290748629999999994 0.0396496470000000031 0.277365699999999993 157 0 156 1 0.553265750000000001 160.126007 0.092647879169542896 0.403507726960352975 31 true 6.51640599999999992 1.50213963113502991 0.0147493460436238996 0.0726873299999999944 18 10 0.110158265000000005 0 18 false 154 6315.10255336030968 6.16199769043304979 1024.84998 16.1874140000000004 14 2526.16348876497977 10.6878667217852001 236.358059999999995 16.8452340000000014 17 5514.77068743338987 19.4053725397639987 284.187839999999994 15.4081010000000003 1.27328630000000009 0 1.4371328000000001 0.657819750000000036 0.779313099999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.48142665573701 -63.205896913385601 22.2939933155747987 -12.7073356350403994 100001 4560.66992 4404.08008 4827 0.0274999999 0.00700000022 0.244100004 0.0149999997 0.00289999996 0.193499997 200111 0.586735070000000025 0.523774150000000049 0.629199300000000017 0.134181319999999993 0.119209930000000006 0.149152709999999994 +1635721458409799680 Gaia DR2 2481375711261213184 2481375711261213184 1492544697 2015.5 25.3042974022025007 0.189355974454537002 -3.11999601406636007 0.135552347904512011 1.25589252553978992 0.239278918272470997 5.24865530000000025 8.05414628877105976 0.32441938492459399 -4.39330193346105968 0.236593512560460989 0.00823777499999999926 0.581946799999999986 0.0738662800000000064 0.110492475000000007 -0.283420979999999989 0.0891981049999999998 0.241857380000000011 -0.0306396019999999984 0.0737861999999999962 0.219804870000000013 151 0 147 4 0.911924900000000038 157.214996 0.342028290233436005 0.801509819702060033 31 false 0.775456099999999982 1.44176056735120994 0.0409486546210044017 0.0897863660000000063 17 10 0.294240769999999985 0 17 false 145 1108.23976722347993 2.60594767283417017 425.27301 18.0767820000000015 15 435.905353496642022 21.5104393974426991 20.2648280000000014 18.7529070000000004 15 992.88812599822802 7.67653293614277032 129.340699999999998 17.2696690000000004 1.2892458 0 1.48323819999999995 0.676124599999999965 0.807113650000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.440503989159993 -63.2026536274725004 22.2834781866991989 -12.6916628087550993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375745622748544 2481375745622748544 654646566 2015.5 25.3121988252581005 1.96114377397714001 -3.11132928939517983 1.8083557459369699 \N \N \N \N \N \N \N 0.100876199999999999 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.485340600000000011 55.1688995 0 0 3 false 0.0141598309999999995 \N \N 0.316176919999999972 8 7 6.44608399999999993 0 8 false 70 84.7725989821881996 1.79239922480830005 47.2956009 20.8677269999999986 6 76.1955967682520026 19.5804066039634996 3.89142060000000001 20.6465630000000004 7 97.7943319111163021 8.25543402663777037 11.8460560000000008 19.7861370000000001 2.05243099999999989 0 0.860425949999999995 -0.221164699999999992 1.08159070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.448160820698007 -63.1914536536246985 22.2942705486963995 -12.6865144986808005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375956074935424 2481375956074935424 245063075 2015.5 25.3016192726707985 0.0562318899492679006 -3.08960807109670021 0.0417619748912637992 0.68144297308192503 0.0686171973081404069 9.93108199999999997 9.38924349621579069 0.0992359785126624983 -6.93403289894980013 0.085399005991152202 0.0142302320000000006 0.557392299999999952 -0.046998485999999999 0.0720506759999999941 -0.250926099999999985 0.0591244469999999966 -0.0322911180000000006 -0.012313882 0.0487553800000000009 0.299872040000000006 134 0 134 0 -0.193896349999999995 125.255997 0 0 31 true 9.92532100000000028 1.60646831687823011 0.0148442727836756005 0.0852021050000000002 15 10 0.0989563900000000052 0 15 false 132 8872.71619110727079 8.34481284731507067 1063.26001 15.8182240000000007 15 4775.01612460698016 27.6608850860133018 172.627010000000013 16.1539520000000003 13 6040.31355539271044 18.6780050000716997 323.391779999999983 15.3092710000000007 1.21894239999999998 0 0.844680800000000009 0.335727700000000018 0.508953100000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.406492416286994 -63.1762861581557971 22.2924110381628999 -12.6624288285056004 100001 5759.2002 5493.75 5918 0.0340000018 0.0170000009 0.0540999994 0.0149999997 0.00870000012 0.0231999997 200111 0.873024899999999993 0.826801099999999956 0.959430930000000015 0.755434199999999945 0.594523899999999994 0.916344500000000006 +1635721458409799680 Gaia DR2 2481376054858609024 2481376054858609024 1433784262 2015.5 25.310568859698801 1.02016591328407991 -3.08953025352965982 0.712804848975256977 0.879495134343784013 1.22808820232184002 0.716149799999999948 -1.81094090047293999 1.78921764237389991 -5.7903410091910601 1.8543873942684499 -0.0130289900000000007 0.621441899999999992 0.103107509999999999 -0.160977700000000001 -0.242105810000000005 -0.20949021000000001 -0.263631669999999985 -0.0592758580000000007 -0.016332929999999999 0.340436640000000013 119 0 118 1 0.883569599999999955 126.092003 0 0 31 false 0.0356812199999999996 1.8867650437357999 0.233985182852925994 0.136960880000000007 14 9 1.86337350000000002 0 14 false 119 134.52606077971501 1.53884571364974998 87.4200974 20.3663500000000006 13 100.464342349781006 12.4048164958905005 8.09881700000000038 20.3463600000000007 13 106.801843235692004 6.30675674608693004 16.9345110000000005 19.6904739999999983 1.54071399999999992 0 0.655885700000000016 -0.0199909209999999983 0.67587660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.424344001099001 -63.1724171546224014 22.3009550124392995 -12.6656502584411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376157937830656 2481376157937830656 1395163038 2015.5 25.3069106088994005 0.582944495864852974 -3.07147610582059016 0.383550655104082983 0.682286131894210945 0.712591651438194029 0.957471430000000012 -11.0358203996635993 0.969035598627778993 -44.0280814375034026 0.66481559020622405 -0.00475642270000000041 0.608372330000000017 0.146727350000000006 0.103951864000000005 -0.224906699999999987 0.0477449100000000015 0.270564530000000025 -0.0382483939999999981 0.107835449999999999 0.146452300000000007 144 0 142 2 2.81777200000000017 188.311005 1.42106173730947005 2.03549191031122012 31 false 0.0930080040000000052 1.3574699490609301 0.117706636519088997 0.100173570000000003 17 10 0.866731000000000029 0 17 false 142 286.970440059952978 2.02260550679630979 141.882004 19.5437739999999991 14 77.035822123831494 8.97778759857883912 8.58071299999999937 20.6346570000000007 15 357.081991309913008 8.32561671025353078 42.8895529999999994 18.380001 1.51276150000000009 0 2.2546558000000001 1.0908833 1.16377259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.400021279594995 -63.1576272947341977 22.3042942382252001 -12.6475206892295997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377601048593536 2481377601048593536 1479581047 2015.5 25.2979275790044014 1.03673586109677007 -3.02863515624924018 0.713355411813405005 3.5979035244122799 1.19915955206251001 3.00035430000000014 4.16829134891148012 1.95860783807177996 -17.4481493403492003 1.82043451079240004 0.039360939999999997 0.544086300000000023 0.159329200000000004 -0.155087370000000002 -0.135162919999999992 -0.191938090000000006 -0.251546349999999974 -0.132240980000000008 -0.0251450609999999998 0.275137359999999997 114 0 113 1 -0.450102979999999986 100.880997 0 0 31 false 0.0339679120000000029 1.21455951449657995 0.247717547487057987 0.114134180000000002 13 9 1.89022660000000009 0 13 false 112 130.791318524289011 1.36551477080898009 95.7817001 20.3969200000000015 6 34.2062628027308975 9.5551373753830795 3.57988200000000001 21.5161249999999988 12 213.232612035474006 13.0908659660916999 16.2886559999999996 18.9397850000000005 1.89186009999999993 0 2.57633970000000012 1.11920550000000008 1.45713420000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.341799025302009 -63.1226438691185976 22.3119279752575004 -12.6043892194108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450787289914240 2481450787289914240 1068869723 2015.5 25.3788101957683985 1.8176580619176399 -2.85550631382960995 2.39740518798478019 \N \N \N \N \N \N \N 0.643391130000000033 \N \N \N \N \N \N \N \N \N 73 0 73 0 -0.66807850000000002 59.8880997 0 0 3 false 0.0190846720000000004 \N \N 0.188876669999999997 9 7 6.53918100000000013 0 9 false 74 87.7765257501281013 1.29748052757844001 67.6514969 20.8299200000000013 8 44.4696578762808983 11.5875657081029999 3.83770500000000014 21.2312280000000015 8 70.3300040994212026 7.23176005533176003 9.72515800000000041 20.1440680000000008 1.30786289999999994 0 1.08716009999999996 0.401308060000000022 0.685852050000000046 \N \N 0 \N \N \N NOT_AVAILABLE 151.341250494430994 -62.9315986055634013 22.454181272255699 -12.4731789320771007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415602917434496 2481415602917434496 717969527 2015.5 25.0320072097178006 0.472981572934429995 -3.16656898955899013 0.416372200073705012 0.692863881751949018 0.620413328117059959 1.11677789999999999 4.44603175553784968 1.0389692593903801 -2.7328113246998198 0.729688888301190053 0.17249312 0.243453730000000007 0.0378679899999999972 0.068557190000000004 -0.317773519999999976 0.0168800500000000006 0.132101250000000003 -0.014314238 0.167097639999999992 0.221713450000000006 183 0 181 2 4.15697000000000028 265.201996 2.12137876829963012 4.91916662117086023 31 false 0.068383979999999997 1.41847727908947996 0.114846420857247 0.0423539900000000011 21 9 0.930909600000000004 0 21 false 181 221.728972191494989 1.24185176879961001 178.546997 19.8238090000000007 18 48.1938139959693004 7.98876779035929996 6.0326966999999998 21.1439100000000018 18 266.877361799434027 9.40265606904540974 28.3831880000000005 18.6961399999999998 1.42097439999999997 0 2.4477692000000002 1.32010080000000007 1.1276683999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.935986210383987 -63.3596037088962021 22.006869981377001 -12.634628529794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415705996744704 2481415705996744704 246196234 2015.5 25.0386415730679985 0.905594127883930011 -3.15106267939090001 1.20356841542601001 0.511692969903476014 1.19704843044152009 0.427462220000000004 1.87264727264941011 2.82627747628446002 2.11311589097872998 3.42688202596024993 0.507856129999999961 -0.168435140000000011 -0.480892929999999996 -0.458155839999999981 -0.628890399999999961 -0.643988200000000011 -0.768888059999999984 0.488767180000000023 0.561784199999999956 0.767821250000000011 124 0 123 1 0.677338659999999981 128.009003 0 0 31 false 0.0333656629999999968 \N \N 0.0578009229999999971 15 8 3.84658770000000017 0 15 false 124 104.542553045955998 1.12591473667653008 92.8511963 20.6401329999999987 8 60.1265348377581006 6.90892540354229023 8.70273300000000027 20.9037229999999994 10 69.8936809503113068 8.79361018427644048 7.94823500000000038 20.1508259999999986 1.24370610000000004 0 0.752897260000000013 0.263589860000000009 0.489307400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.934931046066993 -63.3427483594196019 22.0190475951342002 -12.6226652145232006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049594129152 2481416049594129152 583045284 2015.5 25.0651841129330002 0.89226239352885095 -3.14842339553610984 0.806578206670522047 0.446128730366517012 0.991624319513436991 0.449896929999999973 -0.784255983727581985 1.94740566648499991 -2.37737164101709997 1.88971287077400008 0.250195029999999985 0.352327879999999982 -0.0594637469999999974 -0.066454940000000004 -0.0240706629999999991 -0.109363329999999995 -0.274576460000000022 -0.0320976560000000022 0.0799632740000000009 0.308973039999999977 114 0 114 0 0.340243879999999999 113.415001 0 0 31 false 0.0292908379999999996 1.41795467327534008 0.258119164950162017 0.0586945099999999984 14 9 1.93660910000000008 0 14 false 114 96.3652161424643054 1.17936517148714004 81.7093964 20.7285649999999997 9 52.7385030660065013 10.4249627873489992 5.05886749999999985 21.0460680000000018 10 67.8889339592115988 12.390523635129 5.479101 20.182423 1.25177359999999993 0 0.863645549999999984 0.31750297999999999 0.546142600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.986095061110007 -63.329251220955399 22.0452859175279983 -12.6299994827861006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415401054540800 2481415401054540800 87499261 2015.5 25.0862041717264006 0.0265674483187257997 -3.17259738004783998 0.0179582232960650984 2.49316707416023009 0.0310086076698825007 80.4024200000000064 -34.4437081299071011 0.0429416418175503009 -31.9373056186752997 0.037151357417522797 -0.0231126209999999999 0.624811400000000017 -0.0637906099999999976 0.0734808200000000022 -0.20009188 -0.0505060999999999982 -0.225643919999999998 0.0722206999999999988 0.154815120000000001 0.240384189999999998 161 0 161 0 -0.733054600000000001 142.776993 0 0 31 true 116.662949999999995 1.57865832288818009 0.00636035314275546979 -0.0151107380000000003 19 10 0.0481194630000000012 0 19 false 159 92554.185790953401 33.1270609806769016 2793.90991 13.2723750000000003 17 45819.6086158816033 75.0151229140730038 610.804930000000013 13.69876 16 66597.7183604357997 77.6873238099640986 857.253360000000043 12.7032720000000001 1.21461090000000005 0 0.995488170000000006 0.426384929999999995 0.56910324000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.051152541469008 -63.3423859252989985 22.0561277670464015 -12.6602148544345994 100001 5240.5 5138.5498 5554.7998 0.157000005 0.0165999997 0.314099997 0.0935000032 0.0122999996 0.149800003 200111 0.956229800000000019 0.851080999999999976 0.994549930000000026 0.621312599999999993 0.602709350000000033 0.639915899999999982 +1635721458409799680 Gaia DR2 2481368843609052288 2481368843609052288 1381886411 2015.5 25.0946567538200007 0.0557570789909000997 -3.17371587010359013 0.0327700477668593018 2.09825232918730009 0.0648327949960338934 32.364060000000002 9.33601011468469011 0.0856001779242603067 -17.884947457834901 0.0617909178808504003 -0.198295730000000003 0.666212800000000049 -0.0803543300000000016 0.115592180000000003 -0.377334180000000019 -0.0283414389999999995 -0.104642379999999993 0.0993565200000000037 0.183070750000000004 0.201270279999999996 158 0 158 0 -1.75721539999999998 123.694 0 0 31 true 14.9808339999999998 1.48777831780959002 0.0119689566867275006 -0.0660314699999999949 18 9 0.0817516600000000038 0 18 false 157 12334.8718002477999 6.01001278363994018 2052.38989 15.4605289999999993 14 4855.6917726490301 17.5374196791503003 276.876070000000027 16.1357609999999987 14 10891.3578614847993 24.0532214489624998 452.802459999999996 14.6692149999999994 1.2766286 1 1.46654599999999991 0.675231930000000036 0.79131410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.069268649684005 -63.3398543084883983 22.0637433005794001 -12.6643704110376998 100002 4399 4298.22021 4556.16992 0.00800000038 0.00200000009 0.256099999 0.00300000003 0.000699999975 0.156299993 200111 0.662882569999999949 0.617936900000000011 0.694331999999999949 0.148246240000000001 0.138501399999999997 0.157991080000000006 +1635721458409799680 Gaia DR2 2481368877968810496 2481368877968810496 180758900 2015.5 25.1095477732065007 0.727004005151795973 -3.16368546787703009 0.670427114243966948 -0.304712822739643008 0.85234333499163395 -0.357500099999999987 4.39768314211524025 1.48487549726038992 -2.18832104704274011 1.63193631030672992 0.265422429999999987 0.454048500000000022 0.0208581670000000004 -0.073392384000000005 -0.0555564569999999966 -0.116639499999999993 -0.247053429999999991 -0.0888753500000000057 0.0251448620000000005 0.410648879999999994 139 0 139 0 0.264618999999999993 137.699005 0 0 31 false 0.0386078399999999974 1.65987250475206993 0.215344492694836992 0.0583758299999999966 16 9 1.63739509999999999 0 16 true 138 115.762351939069006 1.13864936160149011 101.666 20.5294479999999986 10 40.199719817771097 6.33510607029063966 6.34554799999999997 21.3408300000000004 11 124.259183898257007 10.8649609824205999 11.4366889999999994 19.5260980000000011 1.42065970000000008 0 1.8147316 0.811382300000000001 1.0033493 \N \N 0 \N \N \N NOT_AVAILABLE 151.089927891054998 -63.3245017909146029 22.0817010443707993 -12.6605377788366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415469773446528 2481415469773446528 1134835520 2015.5 25.0702422324118999 4.99313047935337995 -3.16294651025958018 3.86952544729422021 \N \N \N \N \N \N \N -0.413524239999999987 \N \N \N \N \N \N \N \N \N 72 0 71 1 39.1233670000000018 2300.97998 18.4484686383174008 129.083854376263986 3 false 0.0026423442000000001 \N \N -0.108085410000000007 11 7 8.79070800000000041 0 12 true 94 215.489428174209991 2.92428965753172987 73.6894989 19.8548009999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.009882810828998 -63.3403175699345979 22.0446000885457991 -12.6453611251181002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435604864 2481415843435604864 1219788903 2015.5 25.0821266074089984 0.552288342766447005 -3.16230815565970014 0.424828993140230982 1.80084810023985997 0.658086272148458051 2.73649239999999994 5.49154976708408959 1.03397759012379997 -14.4163033376075997 0.707786678012323978 0.142830399999999996 0.482328409999999985 0.0903207300000000018 0.166563729999999993 -0.146255820000000009 0.10948186 0.347481399999999996 -0.0348767680000000024 0.132358239999999988 0.180306419999999995 165 0 164 1 5.50841669999999972 277.877991 2.02738422827713993 3.59479150237664014 31 false 0.0704140600000000005 1.65133258894013002 0.129045121741135999 0.0220110700000000006 19 10 0.924947439999999954 0 19 false 164 216.455646613878002 1.33603655419592005 162.013 19.8499429999999997 10 67.5455993091429008 7.01947524353685015 9.62260000000000026 20.7773949999999985 14 289.52005808304699 9.8320217251763804 29.4466460000000012 18.607723 1.64960189999999995 0 2.16967199999999982 0.927452100000000002 1.24221990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.033288023251998 -63.3347579697341985 22.0561435989794994 -12.6491494276856997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415847731139328 2481415847731139328 1499925447 2015.5 25.0814760134772001 0.0499330115162879978 -3.15239545514247022 0.0354175873709181022 7.0101717958116696 0.0589837144110567993 118.849270000000004 -26.0645382280596998 0.0920786611628567064 -24.9731944538603017 0.069634179658035103 -0.0228399520000000002 0.510973600000000028 -0.0363535430000000021 0.0672351100000000007 -0.275618260000000004 -0.0243254939999999996 -0.060487326000000001 0.0555682099999999998 0.154475019999999991 0.218600349999999999 169 0 168 1 10.9746570000000006 450.979004 0.278872919845851996 12.7750183584713 31 true 10.3600290000000008 1.3774301027573701 0.0123078204793191006 -0.00945305700000000082 20 10 0.0892105400000000048 0 20 false 167 46834.7711666382966 22.9831132627524006 2037.79004 14.0119450000000008 19 13823.2592726956009 50.5571174162642976 273.41867000000002 14.9998620000000003 17 49196.0804418490006 75.3847449674666024 652.600000000000023 13.0320940000000007 1.34556729999999991 1 1.96776770000000001 0.987916950000000016 0.979850769999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.022703661950004 -63.3260336294847974 22.0592758516730996 -12.6396972994371009 100002 3930.78003 3788.31006 4206.25977 0.339300007 0.169599995 0.825299978 0.173700005 0.0920000002 0.358999997 200111 0.552733200000000036 0.482703749999999987 0.595087469999999952 0.0657113899999999945 0.0645222960000000068 0.0669004799999999983 +1635721458409799680 Gaia DR2 2481415843435697664 2481415843435697664 375122296 2015.5 25.0916919168124011 4.0442346059623997 -3.15282579755132009 7.90466687507665977 \N \N \N \N \N \N \N 0.0592360649999999975 \N \N \N \N \N \N \N \N \N 42 0 40 2 0.747295599999999949 40.8880997 0 0 3 false 0.0123761459999999993 \N \N 0.185515819999999998 5 4 2271.82470000000012 0 5 false 42 74.4978914606557936 1.97922548620229999 37.6399002 21.0080050000000007 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.043727566624 -63.3221415692077017 22.0688283067144013 -12.6438632851318999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416053889569280 2481416053889569280 429281415 2015.5 25.0744685327509984 0.106599941628802 -3.14855319537995015 0.077119951274670695 0.338160669154252025 0.128075040398102996 2.64033220000000002 5.53822435621161979 0.197649974677987006 -6.34721357121224017 0.140363042929255 0.0333027020000000035 0.502375499999999975 0.00324865920000000016 0.0966100839999999988 -0.236337560000000002 0.0309278459999999984 0.120381829999999995 0.0226797499999999985 0.134547300000000009 0.19468321999999999 175 0 174 1 2.26128319999999983 213.296005 0 0 31 true 1.87084570000000006 1.59194346800237008 0.0247951574759604013 -0.004952054 20 10 0.179505770000000009 0 20 false 174 1967.76837003672995 2.58789106690826998 760.375 17.4534300000000009 18 955.007003638776041 12.9566694390498007 73.7077560000000034 17.901371000000001 18 1492.1433688290499 9.51995669183341064 156.738460000000003 16.8273940000000017 1.24361699999999997 0 1.07397649999999989 0.447940830000000012 0.626035699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.004964668566998 -63.3254817058907022 22.0540658037168988 -12.6335431186071006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368873673377152 2481368873673377152 437970238 2015.5 25.1122723528789003 0.594175511564063008 -3.15625282840544008 0.502368221431154005 1.87426604377665007 0.707961684459093021 2.64741159999999986 0.410811597301734999 1.19731903652603 -7.3362830041196796 1.0965625683668101 0.152231349999999988 0.437716959999999988 0.0886793300000000007 0.002674816 -0.158347309999999991 -0.0297116709999999985 -0.0244859550000000002 -0.0755315349999999969 0.0749148060000000005 0.289980599999999977 147 0 145 2 1.98210170000000008 175.080002 1.05561066422324989 0.593708958412235033 31 false 0.056617569999999999 1.34990815568212996 0.163626425938948994 0.0376420299999999999 17 10 1.1487061999999999 0 17 false 144 156.020288964615986 1.33997801657934001 116.434998 20.2054140000000011 11 43.6524250713839024 7.64760649744657961 5.7079854000000001 21.2513679999999994 15 199.131303985970987 8.98555269384480937 22.1612760000000009 19.0140700000000002 1.55610359999999992 0 2.23729699999999987 1.04595379999999993 1.19134329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.088461899138991 -63.3166143551559983 22.0871044379260013 -12.6546343787727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481412235663228288 2481412235663228288 508943078 2015.5 25.6089988909007999 1.27234838375360004 -2.76942035497391004 0.509855222676762976 \N \N \N \N \N \N \N -0.485096599999999989 \N \N \N \N \N \N \N \N \N 131 0 129 2 7.3800454000000002 279.165985 2.85465172967011016 9.39338055724862997 3 false 0.0589024870000000034 \N \N -0.229384769999999988 15 8 2.77721099999999987 0 15 false 130 273.311728282879017 2.13076936370881009 128.268997 19.5967200000000012 13 74.433297014047497 9.91499369178655954 7.50714539999999975 20.6719700000000017 11 387.426748982609979 11.6624195334775003 33.2201000000000022 18.2914470000000016 1.68986550000000002 0 2.38052369999999991 1.07525059999999995 1.30527299999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.716423004297013 -62.7556767008079035 22.7055755257839991 -12.4776696211041003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426323155868160 2481426323155868160 808480484 2015.5 25.0470718752204995 0.381137368271406984 -3.02502415092670018 0.258203417597912988 1.79835735905687 0.502629913966391006 3.57789560000000018 0.115142770826938995 0.592615920600973012 -11.3343477960480996 0.394685366748173005 -0.278642149999999977 0.663931599999999955 0.0198141949999999997 0.0294441149999999999 -0.555917259999999969 0.154852849999999986 0.335375040000000013 -0.0736475600000000008 -0.0763218499999999966 0.23767814000000001 168 0 167 1 10.7973389999999991 443.128998 1.55915963250503009 12.1950009207114007 31 false 0.229314099999999993 1.23200032070437993 0.0748971011339712028 -0.0113540370000000009 19 9 0.538518300000000005 0 19 false 168 760.899582805746945 2.8349610272295398 268.398987 18.485047999999999 17 144.969869551834989 11.6134414566051998 12.4829380000000008 19.9481949999999983 17 1087.20174415429005 17.6714346949769983 61.5231169999999992 17.1711440000000017 1.61936159999999996 0 2.77705000000000002 1.46314619999999995 1.31390380000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.834816207307 -63.2247196175164987 22.0747416260110008 -12.5086408107944003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426426235136384 2481426426235136384 1384167078 2015.5 25.0657381020596013 2.65972760757479021 -3.02488052433038979 4.16141549933282029 \N \N \N \N \N \N \N -0.426600749999999973 \N \N \N \N \N \N \N \N \N 70 0 69 1 1.19426579999999993 77.7233963 2.52026571763677998 0.74173259138974601 3 false 0.0166228770000000012 \N \N 0.261560320000000013 9 6 12.4103589999999997 0 10 false 71 98.9137438335012007 1.89646433825669991 52.1568985 20.7002239999999986 7 75.7953181607237951 7.97638628478109002 9.50246300000000055 20.6522830000000006 7 69.2556163767342952 7.88002913728747956 8.78875200000000056 20.1607820000000011 1.46643870000000009 0 0.491500849999999989 -0.047941207999999999 0.539442059999999945 \N \N 0 \N \N \N NOT_AVAILABLE 150.872279970878992 -63.216809967564302 22.0925413337849008 -12.5153875944379998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412132586189056 2481412132586189056 1148768543 2015.5 25.6324286738162002 5.16604836729526973 -2.76138322724892005 2.06763268508515985 \N \N \N \N \N \N \N 0.481054599999999999 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.68601310000000004 59.7728996 0 0 3 false 0.0335594270000000028 \N \N 0.16113654999999999 7 5 15.6171465000000005 0 7 false 48 82.3433003494339033 1.89484655434110993 43.4564018 20.8992959999999997 5 58.1162120184674009 15.8390188269355008 3.6691802 20.940645 6 91.214875132486597 11.9920789589160002 7.60626029999999975 19.8617549999999987 1.81351839999999997 0 1.07888980000000001 0.0413494100000000031 1.03754039999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.755044971851987 -62.7383710448378977 22.7308922604441008 -12.4787911576189998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368877968810240 2481368877968810240 569701847 2015.5 25.1156031157000008 0.062228792797489399 -3.1639376571704001 0.0422148149425118982 0.510957255537130006 0.0715164145142363067 7.14461499999999994 -0.20164107486024499 0.116916129979568004 -3.74053132215369022 0.082589108041802306 0.0742454449999999933 0.499280500000000016 -0.164204089999999997 0.0695725400000000022 -0.123560840000000005 -0.0171162059999999984 -0.0778551900000000047 0.0931725399999999981 0.159916730000000007 0.180346859999999998 147 0 146 1 -1.78540600000000005 112.517998 0 0 31 true 7.66739269999999973 1.60066597339381 0.0144200443306884002 0.00797457900000000074 17 10 0.110241729999999996 0 18 false 144 6690.06603337280012 5.08314233003151017 1316.13 16.1247900000000008 17 3672.16305604484978 23.248601903147101 157.951999999999998 16.4390830000000001 16 4390.25276285913969 13.8913759148253 316.041600000000017 15.6556960000000007 1.20513249999999994 0 0.78338719999999995 0.314292899999999986 0.469094279999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.102381450990009 -63.322186877948198 22.0873647464845 -12.6630041072248005 100001 6152.81982 5866.75 6710.45996 0.0680000037 0.0175999999 0.168400005 0.0430000015 0.00789999962 0.0922999978 200111 0.878366769999999963 0.738447799999999988 0.966115830000000009 0.996192929999999977 0.702378300000000011 1.29000760000000003 +1635721458409799680 Gaia DR2 2481368912328548480 2481368912328548480 1336477519 2015.5 25.1368350497974014 0.0404551254964614013 -3.15951948709310004 0.0290231740582880988 3.83661256536024009 0.0475222827464603023 80.7329199999999929 7.14197116248941999 0.0667809899491011993 -4.0907112209575196 0.0610674975520201987 0.128486479999999986 0.62009000000000003 -0.0476771969999999976 0.00957889900000000009 -0.0730159060000000054 -0.109056899999999998 -0.276945200000000002 0.0652032000000000028 0.135667160000000009 0.279232599999999997 158 158 158 0 4.84873439999999967 253.522003 0 0 31 true 384.687099999999987 1.58774399621110995 0.0102173420159867995 0.0525442100000000009 18 10 0.0447368250000000009 0 18 false 156 310044.78867571702 125.052117286026998 2479.32007 11.9598049999999994 17 162170.455582207011 310.621799729016004 522.083300000000008 12.3264589999999998 16 211704.188373031997 231.791740675198014 913.337949999999978 11.447597 1.20587299999999997 1 0.878862400000000044 0.366654399999999991 0.512207999999999997 8.12497739607190006 1.37633377615178998 6 5500 4.5 0 NOT_AVAILABLE 151.141057378842987 -63.3092530304277972 22.1092301273307008 -12.6667230985288004 100002 5486.1001 5416.2998 5596 0.152999997 0.067900002 0.217600003 0.075000003 0.0285 0.104199998 200111 1.02162839999999999 0.981894849999999986 1.04813050000000008 0.851795799999999992 0.837098899999999979 0.866492700000000005 +1635721458409799680 Gaia DR2 2481368908034516480 2481368908034516480 441491997 2015.5 25.1350461133970988 0.633581807360337979 -3.15890867531462005 0.554540810124597994 -0.697845683761128988 0.777853882362775972 -0.897142400000000007 24.007480441110701 1.20589821146424003 -13.9864142340495992 1.08585571416372995 0.366903069999999998 0.481959099999999974 -0.0157487410000000001 -0.0556080830000000026 0.00497107599999999962 -0.163777100000000009 -0.217320619999999992 -0.017231139999999999 0.18344916 0.337599780000000016 100 0 100 0 2.07267879999999982 125.723999 0.723205656034787037 0.295686167982413983 31 false 0.0812328199999999973 1.38132591320852005 0.177878485728798996 0.142120820000000009 13 9 1.17858759999999996 0 13 false 102 194.13740597635001 2.03763469200693992 95.2759018 19.9680919999999986 8 205.514456494489991 39.417818344150497 5.2137450000000003 19.5692829999999987 8 287.817458393026016 32.4908176319165989 8.85842399999999941 18.6141259999999988 2.54114819999999986 0 0.955156299999999958 -0.39880943000000002 1.35396580000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.136877935911997 -63.3094516083861976 22.1077596891743013 -12.6654961380796998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369011112215424 2481369011112215424 272337506 2015.5 25.1352637073733014 0.17179572425662501 -3.14877594964930019 0.122780499730161002 -0.0954460778344452948 0.208348755137927999 -0.458107260000000016 -0.133048873398181 0.305318133813724024 -2.34218188577872022 0.222127704713190988 0.159011299999999994 0.552256639999999965 0.0310687179999999986 0.112847970000000006 -0.0691044600000000064 0.0189325530000000013 0.134477230000000003 -0.000115591973999999996 0.163448869999999996 0.185470539999999989 159 0 157 2 1.32751269999999999 175.606003 0.0372228429905809011 0.00960448181616303971 31 false 0.807755349999999983 1.63629993879018998 0.0405667716306076995 0.0427234199999999981 18 10 0.274477120000000019 0 18 false 157 993.982389427317003 2.03466760610919017 488.52301 18.1949199999999998 17 448.098635784164003 10.7442545272110994 41.705883 18.7229540000000014 16 779.073851116981018 8.03984954465781954 96.9015399999999971 17.5329739999999994 1.23460189999999992 0 1.18997960000000003 0.528034200000000009 0.661945340000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.127816183526988 -63.3001700783649 22.1117996872687002 -12.6561590170174991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368942392735104 2481368942392735104 458830203 2015.5 25.1449374707095998 0.221460409148406007 -3.1580232787573701 0.176173879502573988 2.85363963734203008 0.298330803171634018 9.56535299999999999 -17.7680995647328999 0.401040203733075973 -20.4343521191296986 0.302964634628293983 0.165377049999999998 0.511398429999999959 0.0513850260000000003 0.131218539999999995 -0.216299429999999987 -0.047570556 0.0475507750000000035 0.0840682900000000038 0.269090920000000011 0.255221750000000025 148 0 147 1 0.472265299999999999 149.417999 0.264113770747223975 0.279703901426699986 31 false 0.483021299999999987 1.21410710629724994 0.0534237799086674028 0.0974624999999999936 17 9 0.368779630000000025 0 17 false 147 675.320177128695946 1.72949166425499001 390.472992 18.6145919999999983 13 115.548923887791005 5.44509724018830976 21.2207280000000011 20.1944729999999986 13 916.647618880872983 7.29023542662642043 125.736350000000002 17.3564149999999984 1.5284549999999999 0 2.83805849999999982 1.57988170000000006 1.25817679999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.155985851575991 -63.3044867466746979 22.1175026429309014 -12.6683184032420009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373787115838464 2481373787115838464 1525843759 2015.5 25.2006870033297012 0.219383913484461013 -3.17173601381924009 0.159741592356472006 1.44669984891604009 0.263416896305763981 5.49205400000000044 2.26464926596267979 0.419023326382671979 2.00256200615354008 0.287533555179717015 0.155391599999999991 0.48688140000000002 -0.0550003540000000013 0.114992960000000005 -0.100677446000000004 0.0359273930000000019 0.162465209999999999 0.0281530400000000007 0.148876439999999999 0.180182189999999992 157 0 154 3 2.57497119999999979 197.212997 0.318184679392938985 0.413060908074093014 31 false 0.47682819999999998 1.3914435988787599 0.0555320548289948007 0.0569270850000000023 18 10 0.373905150000000019 0 18 false 150 724.44426244239196 2.16180309857104014 335.110992 18.5383530000000007 14 199.122578318089012 7.38619424894164034 26.9587520000000005 19.603586 16 826.268558623929039 12.3155996625342006 67.091220000000007 17.4691159999999996 1.41541760000000005 0 2.13446999999999987 1.06523319999999999 1.0692368000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.281164427301007 -63.2934037472129987 22.1653464051577984 -12.7016039392229008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373924554799872 2481373924554799872 594101444 2015.5 25.2046824796705984 0.177267752264453987 -3.15413953016087989 0.125378664319127003 5.0917536315640497 0.217714665347038011 23.3872800000000005 73.0986005019929053 0.31538478208139098 -34.0153749784752009 0.225432188345176004 0.102276590000000001 0.544054150000000014 0.0219881069999999998 0.117083080000000006 -0.155617699999999998 0.021975886 0.111148040000000004 0.0234096869999999985 0.169360530000000009 0.199430049999999998 157 0 154 3 6.09460639999999998 279.898987 0.743145584755832034 6.57585454666574964 31 false 0.780693230000000016 1.25777634271912997 0.0425747147504257004 0.0574123399999999992 18 10 0.283775119999999992 0 18 false 153 1525.88059724179993 2.51693640818445008 606.244995 17.7295650000000009 16 224.148117888579009 11.0182295735103999 20.3433880000000009 19.4750499999999995 14 2161.58394502394003 12.7231139441788006 169.894260000000003 16.4249900000000011 1.5635116 0 3.05006030000000017 1.74548529999999991 1.30457500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.272640176927013 -63.2757723533082981 22.1758017911717005 -12.6867205574778001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835320448 2481373855835320448 1594648232 2015.5 25.2266561982422992 0.0544494357109435029 -3.16070143590127994 0.0437447230980239979 0.504765393913645055 0.0681099051067568934 7.41104200000000013 0.812967079309324991 0.101653240792728 2.22420565434011985 0.0925177591382931042 0.121318469999999998 0.526513200000000015 -0.00967021300000000042 0.0291300380000000005 -0.228151660000000006 -0.00648175100000000001 -0.069024550000000004 -0.0152233160000000006 0.0643835140000000028 0.368457880000000015 139 0 138 1 -1.44568809999999992 110.197998 0 0 31 false 9.54473800000000061 1.64438254107193993 0.0148638469017146006 0.118234019999999995 16 10 0.105788924000000006 0 16 false 138 7960.51520261220958 6.0221915880299699 1321.85999 15.9360130000000009 14 4272.21610188690011 13.4519624382195992 317.590550000000007 16.274754999999999 16 5369.17894166002043 11.9312205348071991 450.01085999999998 15.4371500000000008 1.2111521999999999 0 0.837605500000000003 0.338742260000000017 0.498863219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.323015077151013 -63.2724255943049982 22.1942244372371995 -12.7009132386121006 100001 5789.5 5586.4502 5839.75 0.183200002 0.0599999987 0.354999989 0.0737999976 0.0286999997 0.164800003 200111 1.10368479999999991 1.08477249999999992 1.1853726 1.23296019999999995 0.880782700000000029 1.58513769999999998 +1635721458409799680 Gaia DR2 2481373684036627840 2481373684036627840 1415869562 2015.5 25.2450846864165008 0.40671561834334502 -3.1619758784164298 0.336883006309911026 0.473705826993260026 0.506055046940510955 0.936075699999999955 12.5242288507352999 0.806331544559301006 1.56579289916483 0.611521102601434996 0.201595780000000002 0.44232096999999998 0.0782338399999999989 0.106884725 -0.133379560000000008 0.0708320399999999989 0.259384449999999989 -0.0854778000000000066 0.0871233639999999948 0.22265045 138 0 136 2 -0.454155150000000007 123.144997 0 0 31 false 0.139824570000000009 1.34541915851065008 0.110253060219204002 0.102159254000000005 16 10 0.731036660000000005 0 16 false 136 269.154326007819975 1.37928990053542 195.139999 19.6133629999999997 12 70.6000701764705951 8.20989409632760037 8.59938900000000039 20.7293759999999985 13 314.077141589743007 19.3394761481711015 16.2402100000000011 18.5193300000000001 1.4292068 0 2.2100468000000002 1.11601259999999991 1.09403420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.361263853205998 -63.2657764078034006 22.2112748860993001 -12.7088847170532002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835322624 2481373855835322624 1493632946 2015.5 25.2247452331255992 0.240420634383398002 -3.15499439173339002 0.187977411073418005 4.88488414209192001 0.298692944391795001 16.3541999999999987 -16.7873245418619987 0.449834138452797017 -94.0679373527991061 0.33646275761685901 0.106342679999999995 0.481413800000000003 0.0136295229999999993 0.130754829999999989 -0.21620840999999999 0.139049740000000005 0.22208718999999999 -0.0476830270000000028 0.054077743999999997 0.253596780000000022 140 0 137 3 3.35813380000000006 193.565002 0.829411651889202961 3.53311315587392993 31 false 0.423710260000000005 1.14513976691183994 0.0629656757340931045 0.0797678160000000053 16 10 0.411056939999999982 0 16 false 138 795.104044022595986 2.02286980698319008 393.057007 18.4373049999999985 13 116.247978124672997 9.40871501051534054 12.3553510000000006 20.1879249999999999 14 1112.50430425939999 8.74035162810777955 127.283699999999996 17.1461660000000009 1.54539810000000011 0 3.04175949999999995 1.75061990000000001 1.29113959999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.313795771635 -63.2680648539864023 22.1945643662039984 -12.6949048203033996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373890195062144 2481373890195062144 23463638 2015.5 25.2322543214203989 0.288482877228459 -3.15208624901486978 0.240523192311448003 0.293609831651192976 0.359186991948658996 0.817428900000000014 9.7910404754422995 0.572831280545913035 -4.13269746526519999 0.440196403390988977 0.133637189999999989 0.452312649999999983 0.116176639999999998 0.0641888199999999937 -0.130203079999999999 -0.00503665950000000036 0.296764199999999978 -0.0897934499999999969 0.114562730000000002 0.124317949999999997 138 0 137 1 1.0947171 149.871002 0.292442138470858981 0.185981280919807007 31 false 0.274855499999999975 1.58745528065864994 0.0791253833624609021 0.0781846340000000029 16 10 0.510235899999999964 0 16 false 135 452.293380865910024 1.58795529949017999 284.828003 19.0498140000000014 14 258.696250565623018 9.69459065054637037 26.6845970000000001 19.3194119999999998 12 312.271428578036989 15.0327294177631003 20.7727700000000013 18.5255890000000001 1.2623835000000001 0 0.793823240000000041 0.269598000000000004 0.524225229999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.32615237599299 -63.2622533869894994 22.2028075939382994 -12.6949672842797998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374061995449856 2481374061995449856 1673449216 2015.5 25.2496945283686998 0.908332307226097035 -3.15576665015534985 0.74285603370715203 0.145083664142963004 1.19414140587249995 0.121496215000000005 -2.05661509272260012 1.54524587537452995 -14.6639140009060007 1.97633913496202007 0.126763920000000002 0.660018899999999964 0.160665140000000012 -0.156883020000000012 -0.190564779999999989 -0.185889040000000005 -0.2467694 -0.153661700000000012 -0.062066004000000001 0.520660939999999961 115 0 114 1 -0.789367799999999953 97.1369019 0 0 31 false 0.0549588650000000026 1.66332839828275003 0.217930714791468 0.129300190000000009 14 9 1.95471290000000009 0 14 false 110 123.53422749376 1.14658913683123997 107.740997 20.4588970000000003 7 187.286419126717988 53.8854088608686013 3.47564239999999991 19.6701219999999992 11 174.773001859706 11.1631701074039995 15.6562160000000006 19.155735 2.93084290000000003 0 0.514387130000000026 -0.788774500000000045 1.30316159999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.364670784417001 -63.2582007164404985 22.2180081902839994 -12.7048107960738008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371076992090496 2481371076992090496 587637094 2015.5 25.2927949237093017 0.0600520886954652028 -3.15915569666125995 0.0364748829953022019 0.930781776008602013 0.0751144887579523052 12.391508 17.821746540686501 0.0871300643828725047 -5.52096442370685025 0.0727355364621150025 -0.118940939999999995 0.715560439999999964 0.0941749499999999934 0.0732453500000000007 -0.352982159999999989 0.00389988490000000004 -0.0643590899999999938 -0.00397120399999999988 0.0749443500000000068 0.337525870000000006 123 0 122 1 1.87130079999999999 147.244995 0.129932202499279004 1.82713422496897993 31 false 17.3486559999999983 1.58806567270197996 0.0132106665133584003 0.0356094730000000026 14 9 0.0876164999999999999 0 14 false 117 20123.447195274799 10.1876049674411 1975.29004 14.9291099999999997 10 10032.6893630795003 32.8424829205657005 305.478999999999985 15.3478449999999995 12 14537.8386641978996 39.8648523830425034 364.678099999999972 14.3556699999999999 1.22099010000000008 0 0.992175099999999976 0.418735499999999983 0.573439600000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.454420147479993 -63.2429783570421975 22.2577348183764983 -12.7238301710601007 100001 5336.5 5289 5348 \N \N \N \N \N \N 200111 1.14386739999999998 1.13895330000000006 1.16450560000000003 0.956031399999999976 0.794147599999999954 1.11791520000000011 +1635721458409799680 Gaia DR2 2481374061993751808 2481374061993751808 927357712 2015.5 25.2609162688791002 0.556403264858380986 -3.15855363433038994 0.321914071919081002 -0.224552315183663004 0.737225142411511047 -0.304591239999999985 2.09216190169710003 0.701024674532242043 -4.95164003305186018 0.530109039268059967 -0.200928749999999989 0.782764899999999986 0.140345830000000005 0.0902597460000000018 -0.408822100000000022 0.0359315239999999994 0.225434600000000013 0.0340535270000000001 0.0694662499999999933 0.229714589999999996 139 0 138 1 1.00937769999999993 149.429001 0 0 31 false 0.161612420000000007 1.72827211976567008 0.104132199539714004 0.056191480000000002 16 9 0.739221000000000017 0 16 false 136 325.876908779030998 1.35496424123556003 240.505997 19.4057309999999994 14 180.943623554353991 5.62164057791570038 32.1869769999999988 19.7075299999999984 15 205.160047554041 13.1145840327217993 15.6436569999999993 18.9816879999999983 1.1848145000000001 0 0.725841500000000028 0.301797870000000024 0.424043659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.389844729276007 -63.2559669349726974 22.2276310275188003 -12.7115335164470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374341167210240 2481374341167210240 251235688 2015.5 25.2404510029492002 0.106889660935559003 -3.13334501500765006 0.0657156473718718964 1.75483456408776006 0.13999258641908699 12.5351959999999991 29.3945572405350006 0.146671773285578011 -19.8295597913236001 0.114147431947891995 -0.173373980000000011 0.74062490000000003 0.00815563650000000057 0.119500875000000006 -0.422125899999999998 0.0850516800000000045 0.100342829999999994 0.0192927999999999988 0.0844505400000000045 0.307679800000000003 140 0 139 1 15.4914050000000003 579.466003 0.450731622510007979 24.1644083354671011 31 true 4.18790700000000005 1.48953045313862997 0.0218697034165336 0.0597989300000000001 16 9 0.141957670000000008 0 16 false 139 26188.3363113496998 10.9731278733988997 2386.59009 14.6430959999999999 13 11590.0297143763 10.5872002816559991 1094.721 15.1911760000000005 14 21206.9357065719996 54.877901805646097 386.438539999999989 13.9457249999999995 1.25235009999999991 0 1.24545100000000009 0.548080440000000002 0.697370500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.324973334334004 -63.2418099058587018 22.2176904844233007 -12.6805658107453993 100001 4965.33008 4795.22021 5202 0.647000015 0.597500026 0.690999985 0.316000015 0.282000005 0.338999987 200111 0.826073170000000023 0.752618129999999996 0.88572379999999995 0.373702020000000024 0.313162180000000012 0.43424185999999998 +1635721458409799680 Gaia DR2 2481374371231411200 2481374371231411200 431457402 2015.5 25.2392550928874009 0.872877673110550978 -3.12889776907781991 0.480735398186254992 0.91794073172002999 1.11648689446113991 0.822168800000000033 6.21570720506614993 1.09667215413133001 -7.72892939783464961 0.83459701825376098 -0.129647970000000001 0.786375159999999962 0.164389769999999991 0.0765791599999999933 -0.320134220000000025 0.026105426000000001 0.222350280000000011 0.0238898269999999989 0.0638563260000000049 0.225790560000000001 131 0 131 0 2.60192729999999983 171.162994 0.968094167215451051 0.620043356859105055 31 false 0.0707738100000000064 1.49449261555449997 0.157577390223396008 0.0814363200000000065 15 9 1.14122150000000011 0 15 false 129 197.647459960443001 1.56230476565459009 126.510002 19.9486370000000015 12 102.618143394672003 10.9344346152177998 9.38485999999999976 20.3233280000000001 13 146.925130617223999 6.42453104187412016 22.8693939999999998 19.3441800000000015 1.26256750000000006 0 0.97914886000000001 0.374690999999999996 0.604457860000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.318385269371987 -63.2382878329346028 22.2182338965527997 -12.6759916596839997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375337599679232 2481375337599679232 543714196 2015.5 25.2448502824051992 1.22253075455739002 -3.09289525955083011 1.06337623687842009 -4.55799164973127979 1.93577120414794002 -2.35461279999999995 1.22187678044503989 2.99846340878251016 -1.42951836239989993 3.79789638548222985 -0.0122084989999999994 0.54203290000000004 -0.0568389970000000022 -0.168536899999999989 -0.430695859999999986 0.301839440000000014 0.297058219999999984 -0.522738200000000042 -0.553194170000000041 0.716393649999999993 99 0 96 3 0.090648560000000003 91.5574036 0 0 31 false 0.0242524330000000003 \N \N 0.199996489999999999 12 8 4.05473100000000031 0 13 false 99 103.931853071429003 1.31314571292375004 79.1472015 20.6464940000000006 6 78.6074637728088987 11.7978087097552997 6.66288660000000021 20.6127280000000006 8 80.7438197699428031 12.8433077720107001 6.28683999999999976 19.9941460000000006 1.53322850000000011 0 0.618581799999999959 -0.0337657930000000023 0.652347560000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.295770553305999 -63.2033081800949006 22.2371636546189997 -12.6445866960131994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374474312327808 2481374474312327808 693844385 2015.5 25.2607135649913985 1.95092394053318996 -3.11997352002057005 1.14356063645301997 \N \N \N \N \N \N \N -0.287054900000000002 \N \N \N \N \N \N \N \N \N 68 0 68 0 -0.884474639999999979 52.987999 0 0 3 false 0.0226471570000000011 \N \N -0.0794781499999999974 8 6 2.7244117000000001 0 8 false 68 93.0169240347270971 1.53080136834258007 60.7635002 20.766960000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.353068184009999 -63.221120918005802 22.2420210884709988 -12.6755975910611003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374508670374400 2481374508670374400 127122067 2015.5 25.2613947513703998 0.376794347788097006 -3.10794345773062997 0.258447072467705985 0.669697661985471981 0.471604449339510012 1.42004100000000011 2.53057171027985994 0.631089743060369024 -7.97235118060677994 0.436448448926879007 -0.0462114799999999992 0.610764199999999979 0.142829719999999993 0.0739922499999999955 -0.258887980000000018 0.00762708799999999975 0.330318999999999974 -0.0251808989999999996 0.0936773899999999993 0.103267275000000006 142 0 142 0 3.15804339999999995 195.360001 0.799442638683992013 1.43904845341582011 31 false 0.221365509999999988 1.48822539963850997 0.0819920483423643015 0.0843011300000000019 16 10 0.561631400000000003 0 16 false 139 447.812970948781015 1.53197961161351004 292.309998 19.0606229999999996 12 139.397409526605998 13.7974773787514007 10.1031080000000006 19.9907509999999995 15 475.995930446896978 12.3414115626211007 38.5690039999999996 18.0679109999999987 1.37421949999999993 0 1.92284009999999994 0.930128100000000013 0.992712000000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.343112137895986 -63.2099380773472035 22.2472155262117006 -12.6646659422048007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376810774528512 2481376810774528512 797910361 2015.5 25.2547732266000011 1.09530271665420997 -3.08550165245075991 0.770128226840154029 0.335465841006965027 1.29707760113431991 0.258632059999999997 0.584917080470570006 1.9163735173632801 1.54338131292338998 1.93364038675417005 0.105307474999999998 0.627945540000000024 -0.038942240000000003 -0.135322899999999996 -0.120221120000000001 -0.159058719999999987 -0.261243700000000023 -0.0574104530000000002 -0.0360623899999999997 0.354256420000000016 114 0 114 0 -0.251628760000000007 104.677002 0 9.6248052937908809e-16 31 false 0.0299697480000000009 1.85860074196442993 0.269823939726965001 0.123616790000000004 13 9 1.98065050000000009 0 13 false 114 122.465313686388996 1.06677614616259997 114.799004 20.4683320000000002 6 29.8719678330814986 10.1519065924742993 2.94249820000000017 21.6632290000000012 10 155.660976837242004 9.85500627724871947 15.7951169999999994 19.2814709999999998 1.51498369999999993 0 2.38175770000000009 1.19489669999999992 1.18686099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.308732721952993 -63.1924140163410968 22.2493967919760998 -12.6413674093975992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376746348895360 2481376746348895360 554799086 2015.5 25.2742038103061013 0.0296474369864663002 -3.0842899182300898 0.0221395952911240014 1.89763769636146007 0.0356218681984835014 53.2717060000000018 7.70999857035663982 0.0547103717090186986 -3.47586511598791015 0.0468864916793274022 0.0842789860000000002 0.53297720000000004 -0.151152100000000011 0.0348733069999999992 -0.215527240000000009 -0.0334443450000000003 -0.174814799999999992 0.0712356600000000062 0.107209299999999993 0.33797756000000001 139 0 139 0 -3.35924800000000001 85.6909027 0 0 31 true 67.769440000000003 1.56982017230190007 0.00767330615891682975 0.078476260000000006 16 10 0.0611529459999999997 0 16 false 137 54314.5855565187012 20.432077973704601 2658.30005 13.8510740000000006 16 26690.5591169996005 53.7348142596808032 496.708860000000016 14.2854939999999999 16 39344.3004729973982 39.1514550056819033 1004.92560000000003 13.2747150000000005 1.21578499999999989 0 1.01077839999999997 0.434419630000000001 0.576358799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.346553500831988 -63.1830926840152998 22.2683386379356989 -12.6473941148514992 100001 5314 5098.5 5676.75 0.270000011 0.126000002 0.331099987 0.127700001 0.0610000007 0.162100002 200111 0.930992069999999949 0.815810999999999953 1.01135639999999993 0.622691400000000006 0.595410100000000053 0.649972699999999959 +1635721458409799680 Gaia DR2 2481375990434372096 2481375990434372096 1167569270 2015.5 25.2811743159894995 3.40980008074367014 -3.09227487189239003 4.4730738713778404 \N \N \N \N \N \N \N -0.343183430000000012 \N \N \N \N \N \N \N \N \N 49 0 49 0 0.580025730000000017 48.9491997 0 0 3 false 0.0153530109999999997 \N \N 0.231052260000000009 6 5 14.2782970000000002 0 6 false 50 74.8173731760291929 2.34241853028728997 31.9402008 21.0033589999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.368035331281988 -63.1873703415837014 22.2719529989383993 -12.6573825857247009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376024794411904 2481376024794411904 585155202 2015.5 25.2947083803837991 0.260840379360258001 -3.08568270090643004 0.177198524908011995 1.09160971267312989 0.315598621065050988 3.45885439999999988 9.8899937102789508 0.449356556171014998 -11.8262154674096003 0.324825752689990976 -0.045554716000000002 0.568905349999999976 0.0498162600000000011 0.0774140660000000036 -0.26039487 0.0699175699999999983 0.16883585000000001 -0.0452275869999999997 0.0588400550000000022 0.176345400000000013 133 0 130 3 0.637742699999999996 134.654999 0 0 31 false 0.454074919999999993 1.42319630318190993 0.0619392758404257032 0.0779905300000000024 15 10 0.401917460000000004 0 16 false 127 702.930275097187973 2.4127992624138801 291.334015 18.5710850000000001 12 252.874885133117999 11.1721351757910003 22.6344279999999998 19.3441240000000008 12 670.095822650071 9.08103731121008018 73.7906700000000058 17.6965770000000013 1.31303309999999995 0 1.64754679999999998 0.773038859999999994 0.874507900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.388952832932006 -63.1756641906687975 22.2873191156637986 -12.6562362534313007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435697664 2481415843435697664 375122296 2015.5 25.0916919168124011 4.0442346059623997 -3.15282579755132009 7.90466687507665977 \N \N \N \N \N \N \N 0.0592360649999999975 \N \N \N \N \N \N \N \N \N 42 0 40 2 0.747295599999999949 40.8880997 0 0 3 false 0.0123761459999999993 \N \N 0.185515819999999998 5 4 2271.82470000000012 0 5 false 42 74.4978914606557936 1.97922548620229999 37.6399002 21.0080050000000007 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.043727566624 -63.3221415692077017 22.0688283067144013 -12.6438632851318999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377016932932992 2481377016932932992 225388163 2015.5 25.2401712823758011 2.50888148056524019 -3.06887996204546987 1.26763469958505004 \N \N \N \N \N \N \N -0.384634140000000013 \N \N \N \N \N \N \N \N \N 66 0 65 1 0.982445659999999998 70.6723022 0 0 3 false 0.0170624459999999985 \N \N -0.164674039999999994 8 7 3.40901919999999992 0 8 false 70 86.4237318229991018 1.7954835574871999 48.1339989 20.8467829999999985 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.263847909947998 -63.183526728860997 22.2417874534832016 -12.6205407534248994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424055413130752 2481424055413130752 1480374714 2015.5 25.2371508078710995 0.236061629671256989 -3.03863742837476991 0.139635849711346988 0.744470410312094044 0.283338160701058994 2.62749800000000011 -3.45580214432174015 0.367834605838082973 -1.31304837416555009 0.244519479772350001 0.0505040799999999998 0.647279139999999975 0.033003277999999997 0.146875250000000013 -0.047538996 0.00680016030000000007 0.148918550000000011 0.0247669519999999983 0.212201150000000005 0.0851223299999999961 138 0 138 0 1.6353975999999999 160.738007 0.342911730443628993 0.64212589126490105 31 false 0.630475459999999988 1.46762341786264994 0.0488903056779902978 0.0708473500000000034 16 9 0.325349060000000023 0 16 false 138 969.784982982876954 2.37873925413218013 407.688995 18.2216780000000007 12 325.518096236410997 7.50223482882343973 43.389484000000003 19.0699499999999986 12 971.323038949238025 10.5829224774705004 91.7821200000000061 17.2935100000000013 1.33724609999999999 0 1.77643970000000007 0.848272299999999979 0.928167340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.229465676509989 -63.1573943725078024 22.2503401222040011 -12.5913167194443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376849428109952 2481376849428109952 951261629 2015.5 25.2724304561793005 0.0275296763302825993 -3.07359953514029005 0.0211374395916084992 1.22931481975250989 0.0340272722359777 36.1273399999999967 12.5728759223345996 0.0488058260117560996 -0.780015406933505018 0.0452472742387355006 0.0902486150000000042 0.574139900000000036 -0.0434406960000000009 0.0367555899999999977 -0.214729959999999997 0.0020449985999999999 -0.112622829999999993 -0.00484940130000000025 0.0525224999999999997 0.371772139999999973 147 0 147 0 -1.31652799999999992 120.350998 0 8.43259086162969006e-16 31 true 78.3659739999999942 1.56554133084553992 0.00695559668665522973 0.0947906599999999988 17 10 0.0570363070000000014 0 17 false 147 62802.9074948377965 26.3424739039755984 2384.09009 13.6934170000000002 15 31585.9299700759002 70.9848463480860943 444.967219999999998 14.1026539999999994 15 44584.3764629030993 79.0597758729248028 563.932500000000005 13.1389639999999996 1.21284689999999995 0 0.96369075999999998 0.409237860000000009 0.554452900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.332953082464996 -63.1741617536576996 22.2706904716642988 -12.6368038447565993 100001 5396 5335 5587.27002 0.931999981 0.591000021 1.12310004 0.463200003 0.292899996 0.544499993 200111 1.49085059999999991 1.3905246 1.5251380000000001 1.69765999999999995 1.5869063000000001 1.80841359999999995 +1635721458409799680 Gaia DR2 2481376780708633344 2481376780708633344 240072396 2015.5 25.2767523488802013 0.124800725105070995 -3.07515653429805003 0.0901898902076048031 2.30964062785022994 0.157829829293571006 14.6337390000000003 -6.51935671377987003 0.217556496245997988 -21.9141001729857017 0.161295951022220996 0.0165726879999999986 0.567896900000000038 0.0407944059999999983 0.10123356 -0.283504219999999973 0.0784386839999999946 0.186161889999999997 -0.0208127100000000016 0.0755670799999999948 0.240411370000000013 148 0 148 0 2.13153620000000021 181.378998 0.313450356862177981 1.6407714772589499 31 true 1.76639220000000008 1.34829211413379002 0.0291420072960815006 0.100655854000000003 17 10 0.199317959999999988 0 17 false 145 2270.71360633040013 3.2534652841203302 697.937012 17.2979599999999998 15 651.870801099711002 9.94176990358598012 65.5688860000000062 18.3159850000000013 16 2524.9060917152101 9.50657921261353955 265.595640000000003 16.2563080000000006 1.39902140000000008 0 2.05967710000000004 1.01802440000000005 1.04165269999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.343076905338989 -63.1737420571585986 22.2742136245168005 -12.6398420812582994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376879492401024 2481376879492401024 185754666 2015.5 25.2821638199426992 1.25775335978840008 -3.07127903464215013 0.880319261620360005 -1.03259111075403998 1.50978222617409008 -0.683933800000000036 1.19982471063355001 2.2913530410443399 -3.48109416742078981 2.34359191993599003 -2.84753369999999995e-05 0.592614100000000033 0.109329164000000006 -0.160094590000000009 -0.204978169999999987 -0.150580400000000003 -0.192838769999999993 -0.131769140000000007 -0.0890376199999999979 0.339860470000000026 112 0 112 0 0.410709829999999998 112.431 1.39202110849894001 0.353595518624399974 31 false 0.0232462750000000003 1.19418116576463995 0.297980766343474979 0.126834940000000007 14 9 2.3646246999999998 0 14 false 112 106.733020390055003 1.31256355293456006 81.3164978 20.6176190000000013 10 80.4419455202708065 9.31199633505518065 8.63852900000000012 20.5876799999999989 10 69.6786518867479998 7.30578962855511005 9.53745649999999934 20.1541710000000016 1.40650570000000008 0 0.433509829999999985 -0.0299377439999999988 0.463447569999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.35027591689601 -63.167938788564399 22.2808263439703005 -12.6382295175459003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754880 2481377158665754880 1499844282 2015.5 25.2653755010736987 1.70035323707715991 -3.05228770189641008 0.907447920375984984 1.15220590849261995 2.10824954400044007 0.546522559999999991 34.3500511464133993 2.21718772828115984 -19.7171787784726007 1.48750806223398002 -0.177083839999999992 0.75758654000000003 0.14122519 0.118986869999999995 -0.342265129999999973 0.0427984449999999975 0.237149090000000007 0.0252100560000000015 0.111224219999999999 0.163516999999999996 116 0 116 0 7.77952240000000028 270.730988 4.75133410678900958 8.18453431451752955 31 false 0.020586763000000001 1.4302484849241901 0.282347323430855002 0.0377362259999999977 14 9 2.19063970000000019 0 16 false 118 153.295326386239992 2.28114144050829992 67.2011032 20.2245430000000006 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.298813523742012 -63.157842115742902 22.2720302802841985 -12.6143959176020992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754752 2481377158665754752 256528212 2015.5 25.2661477566417005 0.039024745711629602 -3.05120821125523989 0.0300946902790560009 1.33730522919978001 0.0471138578124620025 28.3845400000000012 35.2294533522356019 0.0690817584005267993 -17.5410414468266005 0.0665931695157502973 0.116669449999999994 0.581088000000000049 -0.0632760700000000037 -0.00383201239999999979 -0.158481149999999987 -0.0642052099999999987 -0.189623459999999994 0.0160775899999999992 0.0665322500000000011 0.352182749999999989 151 124 146 5 8.14123200000000047 325.494995 0 0 31 true 206.349979999999988 1.57816917565693005 0.0101150787567449007 0.0840420499999999931 17 10 0.0514591000000000007 0 17 false 137 157217.089231335995 47.0450587218033007 3341.84009 12.6971159999999994 17 83996.8465040190931 131.590856304019013 638.318239999999946 13.0407299999999999 17 105217.761763528993 191.065344979736011 550.689939999999979 12.2066970000000001 1.20352450000000011 0 0.834033000000000024 0.343614580000000003 0.490418430000000016 9.33769838500690952 2.30676331359719011 9 5000 3 -1.5 NOT_AVAILABLE 151.299348347377986 -63.1565376358432999 22.2731726317175003 -12.6136767120905997 100001 5756.25 5650.43994 6008.54004 \N \N \N \N \N \N 200111 1.87470559999999997 1.72058029999999995 1.94557610000000003 3.47631759999999979 3.29457280000000008 3.65806250000000022 +1635721458409799680 Gaia DR2 2481377257449474560 2481377257449474560 1306303589 2015.5 25.2636566468664014 0.423496531719090019 -3.03657643541031996 0.270088162592331982 0.699577797786448019 0.515634982161390032 1.35673069999999996 16.4253278940275997 0.715376206600216946 -8.31808036311532994 0.465962455568579015 -0.0162513440000000009 0.600917600000000052 0.162066879999999996 0.0888451039999999942 -0.21107382999999999 0.00855583700000000016 0.270343200000000006 -0.0386080219999999988 0.127921499999999994 0.105807010000000007 149 0 149 0 1.71434500000000001 174.337997 0.590924530250976021 0.498141844588446014 31 false 0.174135220000000007 1.40870061820853998 0.0889431018782587957 0.075904879999999994 18 10 0.637126700000000046 0 18 false 148 381.19776311388199 1.90266298442747006 200.350006 19.2354899999999986 11 114.167821581281999 8.12916434601435078 14.0442260000000001 20.2075299999999984 9 449.88475590008602 10.3680678085876998 43.3913799999999981 18.1291679999999999 1.47968499999999992 0 2.07836150000000019 0.972038269999999982 1.10632320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.280644260142992 -63.1443346238323002 22.2763297908049012 -12.5991583050952993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376986867085440 2481376986867085440 521751622 2015.5 25.2870299362054993 2.02506674325326985 -3.05216526966562984 1.5264563729268501 \N \N \N \N \N \N \N 0.101125030000000005 \N \N \N \N \N \N \N \N \N 105 0 104 1 37.6694600000000008 2132.6499 10.4860641429502 183.181184970679993 3 false 0.00830235600000000032 \N \N 0.123094999999999996 16 10 3.36048359999999979 0 16 false 138 371.351870210885977 5.01949562671079974 73.9819031 19.2638999999999996 15 481.544324447079021 15.0767475898328005 31.9395370000000014 18.6447980000000015 13 1120.56372530480007 11.8974603103324998 94.1851199999999977 17.1383289999999988 4.31425859999999961 0 1.50646970000000002 -0.6191025 2.12557220000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.34206909463299 -63.1485682951081984 22.2926752265124009 -12.6222525319662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374165072978176 2481374165072978176 812573910 2015.5 25.3020714983128983 1.11294705982045006 -3.13497340472153008 0.859842697345755025 -0.32407549670507102 1.36800754204969 -0.236895999999999995 0.203344865315851997 1.90441168830448992 -10.9644809829843997 2.31037066655860013 -0.0335869199999999993 0.62797265999999996 0.128056350000000013 -0.18958469 -0.295979829999999999 -0.260609570000000013 -0.261567680000000025 -0.000543384749999999985 0.0324142840000000015 0.34429700000000002 113 0 112 1 1.50166949999999999 129.746002 2.24449179122035014 1.35782585577833004 31 false 0.0302035210000000005 1.75928586295883993 0.261102920521457005 0.145703520000000003 13 9 2.20691820000000005 0 13 false 112 131.192503931711002 1.38501634485157998 94.722702 20.3935929999999992 7 50.5926921233223013 10.2876589062943999 4.91780419999999996 21.0911700000000017 11 103.688092337102006 10.0667519939838002 10.3000550000000004 19.7225970000000004 1.17598779999999992 0 1.36857220000000002 0.697576500000000044 0.670995699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.450180103110995 -63.2171533390175 22.275700782343101 -12.7047661225624999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372691899792768 2481372691899792768 987006331 2015.5 25.3196328886732012 0.0641249120376866932 -3.13078414461226018 0.0474288582065615985 1.52666460882246002 0.0817181486498220061 18.6820759999999986 5.65957363801739 0.114981217473081002 -3.97341121863700009 0.0905883019858414046 -0.0143680930000000002 0.549126739999999947 -0.0109460270000000005 0.0687700200000000011 -0.32528484000000002 0.0724715439999999989 0.0945591900000000013 -0.0290748629999999994 0.0396496470000000031 0.277365699999999993 157 0 156 1 0.553265750000000001 160.126007 0.092647879169542896 0.403507726960352975 31 true 6.51640599999999992 1.50213963113502991 0.0147493460436238996 0.0726873299999999944 18 10 0.110158265000000005 0 18 false 154 6315.10255336030968 6.16199769043304979 1024.84998 16.1874140000000004 14 2526.16348876497977 10.6878667217852001 236.358059999999995 16.8452340000000014 17 5514.77068743338987 19.4053725397639987 284.187839999999994 15.4081010000000003 1.27328630000000009 0 1.4371328000000001 0.657819750000000036 0.779313099999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.48142665573701 -63.205896913385601 22.2939933155747987 -12.7073356350403994 100001 4560.66992 4404.08008 4827 0.0274999999 0.00700000022 0.244100004 0.0149999997 0.00289999996 0.193499997 200111 0.586735070000000025 0.523774150000000049 0.629199300000000017 0.134181319999999993 0.119209930000000006 0.149152709999999994 +1635721458409799680 Gaia DR2 2481375711261213184 2481375711261213184 1492544697 2015.5 25.3042974022025007 0.189355974454537002 -3.11999601406636007 0.135552347904512011 1.25589252553978992 0.239278918272470997 5.24865530000000025 8.05414628877105976 0.32441938492459399 -4.39330193346105968 0.236593512560460989 0.00823777499999999926 0.581946799999999986 0.0738662800000000064 0.110492475000000007 -0.283420979999999989 0.0891981049999999998 0.241857380000000011 -0.0306396019999999984 0.0737861999999999962 0.219804870000000013 151 0 147 4 0.911924900000000038 157.214996 0.342028290233436005 0.801509819702060033 31 false 0.775456099999999982 1.44176056735120994 0.0409486546210044017 0.0897863660000000063 17 10 0.294240769999999985 0 17 false 145 1108.23976722347993 2.60594767283417017 425.27301 18.0767820000000015 15 435.905353496642022 21.5104393974426991 20.2648280000000014 18.7529070000000004 15 992.88812599822802 7.67653293614277032 129.340699999999998 17.2696690000000004 1.2892458 0 1.48323819999999995 0.676124599999999965 0.807113650000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.440503989159993 -63.2026536274725004 22.2834781866991989 -12.6916628087550993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375745622748544 2481375745622748544 654646566 2015.5 25.3121988252581005 1.96114377397714001 -3.11132928939517983 1.8083557459369699 \N \N \N \N \N \N \N 0.100876199999999999 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.485340600000000011 55.1688995 0 0 3 false 0.0141598309999999995 \N \N 0.316176919999999972 8 7 6.44608399999999993 0 8 false 70 84.7725989821881996 1.79239922480830005 47.2956009 20.8677269999999986 6 76.1955967682520026 19.5804066039634996 3.89142060000000001 20.6465630000000004 7 97.7943319111163021 8.25543402663777037 11.8460560000000008 19.7861370000000001 2.05243099999999989 0 0.860425949999999995 -0.221164699999999992 1.08159070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.448160820698007 -63.1914536536246985 22.2942705486963995 -12.6865144986808005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375956074935424 2481375956074935424 245063075 2015.5 25.3016192726707985 0.0562318899492679006 -3.08960807109670021 0.0417619748912637992 0.68144297308192503 0.0686171973081404069 9.93108199999999997 9.38924349621579069 0.0992359785126624983 -6.93403289894980013 0.085399005991152202 0.0142302320000000006 0.557392299999999952 -0.046998485999999999 0.0720506759999999941 -0.250926099999999985 0.0591244469999999966 -0.0322911180000000006 -0.012313882 0.0487553800000000009 0.299872040000000006 134 0 134 0 -0.193896349999999995 125.255997 0 0 31 true 9.92532100000000028 1.60646831687823011 0.0148442727836756005 0.0852021050000000002 15 10 0.0989563900000000052 0 15 false 132 8872.71619110727079 8.34481284731507067 1063.26001 15.8182240000000007 15 4775.01612460698016 27.6608850860133018 172.627010000000013 16.1539520000000003 13 6040.31355539271044 18.6780050000716997 323.391779999999983 15.3092710000000007 1.21894239999999998 0 0.844680800000000009 0.335727700000000018 0.508953100000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.406492416286994 -63.1762861581557971 22.2924110381628999 -12.6624288285056004 100001 5759.2002 5493.75 5918 0.0340000018 0.0170000009 0.0540999994 0.0149999997 0.00870000012 0.0231999997 200111 0.873024899999999993 0.826801099999999956 0.959430930000000015 0.755434199999999945 0.594523899999999994 0.916344500000000006 +1635721458409799680 Gaia DR2 2481376054858609024 2481376054858609024 1433784262 2015.5 25.310568859698801 1.02016591328407991 -3.08953025352965982 0.712804848975256977 0.879495134343784013 1.22808820232184002 0.716149799999999948 -1.81094090047293999 1.78921764237389991 -5.7903410091910601 1.8543873942684499 -0.0130289900000000007 0.621441899999999992 0.103107509999999999 -0.160977700000000001 -0.242105810000000005 -0.20949021000000001 -0.263631669999999985 -0.0592758580000000007 -0.016332929999999999 0.340436640000000013 119 0 118 1 0.883569599999999955 126.092003 0 0 31 false 0.0356812199999999996 1.8867650437357999 0.233985182852925994 0.136960880000000007 14 9 1.86337350000000002 0 14 false 119 134.52606077971501 1.53884571364974998 87.4200974 20.3663500000000006 13 100.464342349781006 12.4048164958905005 8.09881700000000038 20.3463600000000007 13 106.801843235692004 6.30675674608693004 16.9345110000000005 19.6904739999999983 1.54071399999999992 0 0.655885700000000016 -0.0199909209999999983 0.67587660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.424344001099001 -63.1724171546224014 22.3009550124392995 -12.6656502584411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412136879478400 2481412136879478400 1271272039 2015.5 25.6362644182591985 5.44542400123702031 -2.76289772997653982 3.19858051796405007 \N \N \N \N \N \N \N -0.544222300000000048 \N \N \N \N \N \N \N \N \N 107 0 107 0 22.5752370000000013 880.729004 17.6064203032237003 50.6159290118360019 3 false 0.00268980489999999994 \N \N -0.146539909999999995 13 7 13.6575989999999994 0 13 false 109 104.790338150690999 1.82209519881033 57.5108986 20.6375619999999991 11 125.120771729078996 14.6183678369357004 8.55914800000000042 20.1080649999999999 12 256.885017883092985 7.9326775618190899 32.3831399999999974 18.7375739999999986 3.64542959999999994 0 1.3704909999999999 -0.529497149999999972 1.8999881999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.764018424114994 -62.7380926122315969 22.7339722391484997 -12.4816070461527993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376157937830656 2481376157937830656 1395163038 2015.5 25.3069106088994005 0.582944495864852974 -3.07147610582059016 0.383550655104082983 0.682286131894210945 0.712591651438194029 0.957471430000000012 -11.0358203996635993 0.969035598627778993 -44.0280814375034026 0.66481559020622405 -0.00475642270000000041 0.608372330000000017 0.146727350000000006 0.103951864000000005 -0.224906699999999987 0.0477449100000000015 0.270564530000000025 -0.0382483939999999981 0.107835449999999999 0.146452300000000007 144 0 142 2 2.81777200000000017 188.311005 1.42106173730947005 2.03549191031122012 31 false 0.0930080040000000052 1.3574699490609301 0.117706636519088997 0.100173570000000003 17 10 0.866731000000000029 0 17 false 142 286.970440059952978 2.02260550679630979 141.882004 19.5437739999999991 14 77.035822123831494 8.97778759857883912 8.58071299999999937 20.6346570000000007 15 357.081991309913008 8.32561671025353078 42.8895529999999994 18.380001 1.51276150000000009 0 2.2546558000000001 1.0908833 1.16377259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.400021279594995 -63.1576272947341977 22.3042942382252001 -12.6475206892295997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424330291042688 2481424330291042688 375510112 2015.5 25.2075574941178999 0.823325413899370973 -3.02517678354087005 0.479528748212918021 1.09778705741845006 0.977319784653843948 1.12326290000000006 -7.98638094173104029 1.28831549886814001 -8.82037418131591977 0.832685815495394999 0.000517206999999999997 0.658212539999999957 0.138417559999999995 0.114241670000000003 -0.117779314999999996 -0.0237790699999999994 0.242161349999999997 0.000769167150000000014 0.183811799999999997 0.0661379899999999937 154 0 153 1 2.77724390000000021 200.291 1.51650834731779005 1.1640546554867699 31 false 0.0496240100000000031 1.15268244436153 0.157235337903686989 0.0535761230000000033 18 10 1.14804539999999999 0 18 false 151 183.440402400602011 1.40254418414735005 130.791 20.0296289999999999 12 48.9723717095958975 8.07961196929625025 6.06122829999999979 21.1265099999999997 14 248.034695851089992 7.54232387508266022 32.8857100000000031 18.7756390000000017 1.61909299999999989 0 2.35087199999999985 1.09688190000000008 1.25399020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.157551600976007 -63.1576618382516983 22.227279673056799 -12.5679085138507993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377601048593536 2481377601048593536 1479581047 2015.5 25.2979275790044014 1.03673586109677007 -3.02863515624924018 0.713355411813405005 3.5979035244122799 1.19915955206251001 3.00035430000000014 4.16829134891148012 1.95860783807177996 -17.4481493403492003 1.82043451079240004 0.039360939999999997 0.544086300000000023 0.159329200000000004 -0.155087370000000002 -0.135162919999999992 -0.191938090000000006 -0.251546349999999974 -0.132240980000000008 -0.0251450609999999998 0.275137359999999997 114 0 113 1 -0.450102979999999986 100.880997 0 0 31 false 0.0339679120000000029 1.21455951449657995 0.247717547487057987 0.114134180000000002 13 9 1.89022660000000009 0 13 false 112 130.791318524289011 1.36551477080898009 95.7817001 20.3969200000000015 6 34.2062628027308975 9.5551373753830795 3.57988200000000001 21.5161249999999988 12 213.232612035474006 13.0908659660916999 16.2886559999999996 18.9397850000000005 1.89186009999999993 0 2.57633970000000012 1.11920550000000008 1.45713420000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.341799025302009 -63.1226438691185976 22.3119279752575004 -12.6043892194108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415602917434496 2481415602917434496 717969527 2015.5 25.0320072097178006 0.472981572934429995 -3.16656898955899013 0.416372200073705012 0.692863881751949018 0.620413328117059959 1.11677789999999999 4.44603175553784968 1.0389692593903801 -2.7328113246998198 0.729688888301190053 0.17249312 0.243453730000000007 0.0378679899999999972 0.068557190000000004 -0.317773519999999976 0.0168800500000000006 0.132101250000000003 -0.014314238 0.167097639999999992 0.221713450000000006 183 0 181 2 4.15697000000000028 265.201996 2.12137876829963012 4.91916662117086023 31 false 0.068383979999999997 1.41847727908947996 0.114846420857247 0.0423539900000000011 21 9 0.930909600000000004 0 21 false 181 221.728972191494989 1.24185176879961001 178.546997 19.8238090000000007 18 48.1938139959693004 7.98876779035929996 6.0326966999999998 21.1439100000000018 18 266.877361799434027 9.40265606904540974 28.3831880000000005 18.6961399999999998 1.42097439999999997 0 2.4477692000000002 1.32010080000000007 1.1276683999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.935986210383987 -63.3596037088962021 22.006869981377001 -12.634628529794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415705996744704 2481415705996744704 246196234 2015.5 25.0386415730679985 0.905594127883930011 -3.15106267939090001 1.20356841542601001 0.511692969903476014 1.19704843044152009 0.427462220000000004 1.87264727264941011 2.82627747628446002 2.11311589097872998 3.42688202596024993 0.507856129999999961 -0.168435140000000011 -0.480892929999999996 -0.458155839999999981 -0.628890399999999961 -0.643988200000000011 -0.768888059999999984 0.488767180000000023 0.561784199999999956 0.767821250000000011 124 0 123 1 0.677338659999999981 128.009003 0 0 31 false 0.0333656629999999968 \N \N 0.0578009229999999971 15 8 3.84658770000000017 0 15 false 124 104.542553045955998 1.12591473667653008 92.8511963 20.6401329999999987 8 60.1265348377581006 6.90892540354229023 8.70273300000000027 20.9037229999999994 10 69.8936809503113068 8.79361018427644048 7.94823500000000038 20.1508259999999986 1.24370610000000004 0 0.752897260000000013 0.263589860000000009 0.489307400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.934931046066993 -63.3427483594196019 22.0190475951342002 -12.6226652145232006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049594129152 2481416049594129152 583045284 2015.5 25.0651841129330002 0.89226239352885095 -3.14842339553610984 0.806578206670522047 0.446128730366517012 0.991624319513436991 0.449896929999999973 -0.784255983727581985 1.94740566648499991 -2.37737164101709997 1.88971287077400008 0.250195029999999985 0.352327879999999982 -0.0594637469999999974 -0.066454940000000004 -0.0240706629999999991 -0.109363329999999995 -0.274576460000000022 -0.0320976560000000022 0.0799632740000000009 0.308973039999999977 114 0 114 0 0.340243879999999999 113.415001 0 0 31 false 0.0292908379999999996 1.41795467327534008 0.258119164950162017 0.0586945099999999984 14 9 1.93660910000000008 0 14 false 114 96.3652161424643054 1.17936517148714004 81.7093964 20.7285649999999997 9 52.7385030660065013 10.4249627873489992 5.05886749999999985 21.0460680000000018 10 67.8889339592115988 12.390523635129 5.479101 20.182423 1.25177359999999993 0 0.863645549999999984 0.31750297999999999 0.546142600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.986095061110007 -63.329251220955399 22.0452859175279983 -12.6299994827861006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415401054540800 2481415401054540800 87499261 2015.5 25.0862041717264006 0.0265674483187257997 -3.17259738004783998 0.0179582232960650984 2.49316707416023009 0.0310086076698825007 80.4024200000000064 -34.4437081299071011 0.0429416418175503009 -31.9373056186752997 0.037151357417522797 -0.0231126209999999999 0.624811400000000017 -0.0637906099999999976 0.0734808200000000022 -0.20009188 -0.0505060999999999982 -0.225643919999999998 0.0722206999999999988 0.154815120000000001 0.240384189999999998 161 0 161 0 -0.733054600000000001 142.776993 0 0 31 true 116.662949999999995 1.57865832288818009 0.00636035314275546979 -0.0151107380000000003 19 10 0.0481194630000000012 0 19 false 159 92554.185790953401 33.1270609806769016 2793.90991 13.2723750000000003 17 45819.6086158816033 75.0151229140730038 610.804930000000013 13.69876 16 66597.7183604357997 77.6873238099640986 857.253360000000043 12.7032720000000001 1.21461090000000005 0 0.995488170000000006 0.426384929999999995 0.56910324000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.051152541469008 -63.3423859252989985 22.0561277670464015 -12.6602148544345994 100001 5240.5 5138.5498 5554.7998 0.157000005 0.0165999997 0.314099997 0.0935000032 0.0122999996 0.149800003 200111 0.956229800000000019 0.851080999999999976 0.994549930000000026 0.621312599999999993 0.602709350000000033 0.639915899999999982 +1635721458409799680 Gaia DR2 2481368843609052288 2481368843609052288 1381886411 2015.5 25.0946567538200007 0.0557570789909000997 -3.17371587010359013 0.0327700477668593018 2.09825232918730009 0.0648327949960338934 32.364060000000002 9.33601011468469011 0.0856001779242603067 -17.884947457834901 0.0617909178808504003 -0.198295730000000003 0.666212800000000049 -0.0803543300000000016 0.115592180000000003 -0.377334180000000019 -0.0283414389999999995 -0.104642379999999993 0.0993565200000000037 0.183070750000000004 0.201270279999999996 158 0 158 0 -1.75721539999999998 123.694 0 0 31 true 14.9808339999999998 1.48777831780959002 0.0119689566867275006 -0.0660314699999999949 18 9 0.0817516600000000038 0 18 false 157 12334.8718002477999 6.01001278363994018 2052.38989 15.4605289999999993 14 4855.6917726490301 17.5374196791503003 276.876070000000027 16.1357609999999987 14 10891.3578614847993 24.0532214489624998 452.802459999999996 14.6692149999999994 1.2766286 1 1.46654599999999991 0.675231930000000036 0.79131410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.069268649684005 -63.3398543084883983 22.0637433005794001 -12.6643704110376998 100002 4399 4298.22021 4556.16992 0.00800000038 0.00200000009 0.256099999 0.00300000003 0.000699999975 0.156299993 200111 0.662882569999999949 0.617936900000000011 0.694331999999999949 0.148246240000000001 0.138501399999999997 0.157991080000000006 +1635721458409799680 Gaia DR2 2481368877968810496 2481368877968810496 180758900 2015.5 25.1095477732065007 0.727004005151795973 -3.16368546787703009 0.670427114243966948 -0.304712822739643008 0.85234333499163395 -0.357500099999999987 4.39768314211524025 1.48487549726038992 -2.18832104704274011 1.63193631030672992 0.265422429999999987 0.454048500000000022 0.0208581670000000004 -0.073392384000000005 -0.0555564569999999966 -0.116639499999999993 -0.247053429999999991 -0.0888753500000000057 0.0251448620000000005 0.410648879999999994 139 0 139 0 0.264618999999999993 137.699005 0 0 31 false 0.0386078399999999974 1.65987250475206993 0.215344492694836992 0.0583758299999999966 16 9 1.63739509999999999 0 16 true 138 115.762351939069006 1.13864936160149011 101.666 20.5294479999999986 10 40.199719817771097 6.33510607029063966 6.34554799999999997 21.3408300000000004 11 124.259183898257007 10.8649609824205999 11.4366889999999994 19.5260980000000011 1.42065970000000008 0 1.8147316 0.811382300000000001 1.0033493 \N \N 0 \N \N \N NOT_AVAILABLE 151.089927891054998 -63.3245017909146029 22.0817010443707993 -12.6605377788366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415469773446528 2481415469773446528 1134835520 2015.5 25.0702422324118999 4.99313047935337995 -3.16294651025958018 3.86952544729422021 \N \N \N \N \N \N \N -0.413524239999999987 \N \N \N \N \N \N \N \N \N 72 0 71 1 39.1233670000000018 2300.97998 18.4484686383174008 129.083854376263986 3 false 0.0026423442000000001 \N \N -0.108085410000000007 11 7 8.79070800000000041 0 12 true 94 215.489428174209991 2.92428965753172987 73.6894989 19.8548009999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.009882810828998 -63.3403175699345979 22.0446000885457991 -12.6453611251181002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435604864 2481415843435604864 1219788903 2015.5 25.0821266074089984 0.552288342766447005 -3.16230815565970014 0.424828993140230982 1.80084810023985997 0.658086272148458051 2.73649239999999994 5.49154976708408959 1.03397759012379997 -14.4163033376075997 0.707786678012323978 0.142830399999999996 0.482328409999999985 0.0903207300000000018 0.166563729999999993 -0.146255820000000009 0.10948186 0.347481399999999996 -0.0348767680000000024 0.132358239999999988 0.180306419999999995 165 0 164 1 5.50841669999999972 277.877991 2.02738422827713993 3.59479150237664014 31 false 0.0704140600000000005 1.65133258894013002 0.129045121741135999 0.0220110700000000006 19 10 0.924947439999999954 0 19 false 164 216.455646613878002 1.33603655419592005 162.013 19.8499429999999997 10 67.5455993091429008 7.01947524353685015 9.62260000000000026 20.7773949999999985 14 289.52005808304699 9.8320217251763804 29.4466460000000012 18.607723 1.64960189999999995 0 2.16967199999999982 0.927452100000000002 1.24221990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.033288023251998 -63.3347579697341985 22.0561435989794994 -12.6491494276856997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442575313518720 2481442575313518720 426525436 2015.5 25.0925617879095988 1.67556836761667993 -2.82177403153210005 1.97133151688183994 \N \N \N \N \N \N \N 0.180821509999999991 \N \N \N \N \N \N \N \N \N 78 0 78 0 -1.96973470000000006 51.1646004 0 0 3 false 0.0164221699999999998 \N \N 0.237078669999999991 9 6 11.7944019999999998 0 9 false 79 84.4360224733144946 1.26050878596509008 66.9857025 20.872046000000001 8 38.3072496298588021 6.28583256733606976 6.09422059999999988 21.3931870000000011 7 58.4874894652747983 4.14046317551200005 14.1258330000000001 20.3442630000000015 1.14636779999999994 0 1.0489234999999999 0.521141049999999995 0.527782439999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.73898501817601 -63.0210098236531024 22.1947647191175008 -12.3364906807794998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415847731139328 2481415847731139328 1499925447 2015.5 25.0814760134772001 0.0499330115162879978 -3.15239545514247022 0.0354175873709181022 7.0101717958116696 0.0589837144110567993 118.849270000000004 -26.0645382280596998 0.0920786611628567064 -24.9731944538603017 0.069634179658035103 -0.0228399520000000002 0.510973600000000028 -0.0363535430000000021 0.0672351100000000007 -0.275618260000000004 -0.0243254939999999996 -0.060487326000000001 0.0555682099999999998 0.154475019999999991 0.218600349999999999 169 0 168 1 10.9746570000000006 450.979004 0.278872919845851996 12.7750183584713 31 true 10.3600290000000008 1.3774301027573701 0.0123078204793191006 -0.00945305700000000082 20 10 0.0892105400000000048 0 20 false 167 46834.7711666382966 22.9831132627524006 2037.79004 14.0119450000000008 19 13823.2592726956009 50.5571174162642976 273.41867000000002 14.9998620000000003 17 49196.0804418490006 75.3847449674666024 652.600000000000023 13.0320940000000007 1.34556729999999991 1 1.96776770000000001 0.987916950000000016 0.979850769999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.022703661950004 -63.3260336294847974 22.0592758516730996 -12.6396972994371009 100002 3930.78003 3788.31006 4206.25977 0.339300007 0.169599995 0.825299978 0.173700005 0.0920000002 0.358999997 200111 0.552733200000000036 0.482703749999999987 0.595087469999999952 0.0657113899999999945 0.0645222960000000068 0.0669004799999999983 +1635721458409799680 Gaia DR2 2481415843435697664 2481415843435697664 375122296 2015.5 25.0916919168124011 4.0442346059623997 -3.15282579755132009 7.90466687507665977 \N \N \N \N \N \N \N 0.0592360649999999975 \N \N \N \N \N \N \N \N \N 42 0 40 2 0.747295599999999949 40.8880997 0 0 3 false 0.0123761459999999993 \N \N 0.185515819999999998 5 4 2271.82470000000012 0 5 false 42 74.4978914606557936 1.97922548620229999 37.6399002 21.0080050000000007 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.043727566624 -63.3221415692077017 22.0688283067144013 -12.6438632851318999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416053889569280 2481416053889569280 429281415 2015.5 25.0744685327509984 0.106599941628802 -3.14855319537995015 0.077119951274670695 0.338160669154252025 0.128075040398102996 2.64033220000000002 5.53822435621161979 0.197649974677987006 -6.34721357121224017 0.140363042929255 0.0333027020000000035 0.502375499999999975 0.00324865920000000016 0.0966100839999999988 -0.236337560000000002 0.0309278459999999984 0.120381829999999995 0.0226797499999999985 0.134547300000000009 0.19468321999999999 175 0 174 1 2.26128319999999983 213.296005 0 0 31 true 1.87084570000000006 1.59194346800237008 0.0247951574759604013 -0.004952054 20 10 0.179505770000000009 0 20 false 174 1967.76837003672995 2.58789106690826998 760.375 17.4534300000000009 18 955.007003638776041 12.9566694390498007 73.7077560000000034 17.901371000000001 18 1492.1433688290499 9.51995669183341064 156.738460000000003 16.8273940000000017 1.24361699999999997 0 1.07397649999999989 0.447940830000000012 0.626035699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.004964668566998 -63.3254817058907022 22.0540658037168988 -12.6335431186071006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368873673377152 2481368873673377152 437970238 2015.5 25.1122723528789003 0.594175511564063008 -3.15625282840544008 0.502368221431154005 1.87426604377665007 0.707961684459093021 2.64741159999999986 0.410811597301734999 1.19731903652603 -7.3362830041196796 1.0965625683668101 0.152231349999999988 0.437716959999999988 0.0886793300000000007 0.002674816 -0.158347309999999991 -0.0297116709999999985 -0.0244859550000000002 -0.0755315349999999969 0.0749148060000000005 0.289980599999999977 147 0 145 2 1.98210170000000008 175.080002 1.05561066422324989 0.593708958412235033 31 false 0.056617569999999999 1.34990815568212996 0.163626425938948994 0.0376420299999999999 17 10 1.1487061999999999 0 17 false 144 156.020288964615986 1.33997801657934001 116.434998 20.2054140000000011 11 43.6524250713839024 7.64760649744657961 5.7079854000000001 21.2513679999999994 15 199.131303985970987 8.98555269384480937 22.1612760000000009 19.0140700000000002 1.55610359999999992 0 2.23729699999999987 1.04595379999999993 1.19134329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.088461899138991 -63.3166143551559983 22.0871044379260013 -12.6546343787727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426323155868160 2481426323155868160 808480484 2015.5 25.0470718752204995 0.381137368271406984 -3.02502415092670018 0.258203417597912988 1.79835735905687 0.502629913966391006 3.57789560000000018 0.115142770826938995 0.592615920600973012 -11.3343477960480996 0.394685366748173005 -0.278642149999999977 0.663931599999999955 0.0198141949999999997 0.0294441149999999999 -0.555917259999999969 0.154852849999999986 0.335375040000000013 -0.0736475600000000008 -0.0763218499999999966 0.23767814000000001 168 0 167 1 10.7973389999999991 443.128998 1.55915963250503009 12.1950009207114007 31 false 0.229314099999999993 1.23200032070437993 0.0748971011339712028 -0.0113540370000000009 19 9 0.538518300000000005 0 19 false 168 760.899582805746945 2.8349610272295398 268.398987 18.485047999999999 17 144.969869551834989 11.6134414566051998 12.4829380000000008 19.9481949999999983 17 1087.20174415429005 17.6714346949769983 61.5231169999999992 17.1711440000000017 1.61936159999999996 0 2.77705000000000002 1.46314619999999995 1.31390380000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.834816207307 -63.2247196175164987 22.0747416260110008 -12.5086408107944003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368877968810240 2481368877968810240 569701847 2015.5 25.1156031157000008 0.062228792797489399 -3.1639376571704001 0.0422148149425118982 0.510957255537130006 0.0715164145142363067 7.14461499999999994 -0.20164107486024499 0.116916129979568004 -3.74053132215369022 0.082589108041802306 0.0742454449999999933 0.499280500000000016 -0.164204089999999997 0.0695725400000000022 -0.123560840000000005 -0.0171162059999999984 -0.0778551900000000047 0.0931725399999999981 0.159916730000000007 0.180346859999999998 147 0 146 1 -1.78540600000000005 112.517998 0 0 31 true 7.66739269999999973 1.60066597339381 0.0144200443306884002 0.00797457900000000074 17 10 0.110241729999999996 0 18 false 144 6690.06603337280012 5.08314233003151017 1316.13 16.1247900000000008 17 3672.16305604484978 23.248601903147101 157.951999999999998 16.4390830000000001 16 4390.25276285913969 13.8913759148253 316.041600000000017 15.6556960000000007 1.20513249999999994 0 0.78338719999999995 0.314292899999999986 0.469094279999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.102381450990009 -63.322186877948198 22.0873647464845 -12.6630041072248005 100001 6152.81982 5866.75 6710.45996 0.0680000037 0.0175999999 0.168400005 0.0430000015 0.00789999962 0.0922999978 200111 0.878366769999999963 0.738447799999999988 0.966115830000000009 0.996192929999999977 0.702378300000000011 1.29000760000000003 +1635721458409799680 Gaia DR2 2481415843435697664 2481415843435697664 375122296 2015.5 25.0916919168124011 4.0442346059623997 -3.15282579755132009 7.90466687507665977 \N \N \N \N \N \N \N 0.0592360649999999975 \N \N \N \N \N \N \N \N \N 42 0 40 2 0.747295599999999949 40.8880997 0 0 3 false 0.0123761459999999993 \N \N 0.185515819999999998 5 4 2271.82470000000012 0 5 false 42 74.4978914606557936 1.97922548620229999 37.6399002 21.0080050000000007 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.043727566624 -63.3221415692077017 22.0688283067144013 -12.6438632851318999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368912328548480 2481368912328548480 1336477519 2015.5 25.1368350497974014 0.0404551254964614013 -3.15951948709310004 0.0290231740582880988 3.83661256536024009 0.0475222827464603023 80.7329199999999929 7.14197116248941999 0.0667809899491011993 -4.0907112209575196 0.0610674975520201987 0.128486479999999986 0.62009000000000003 -0.0476771969999999976 0.00957889900000000009 -0.0730159060000000054 -0.109056899999999998 -0.276945200000000002 0.0652032000000000028 0.135667160000000009 0.279232599999999997 158 158 158 0 4.84873439999999967 253.522003 0 0 31 true 384.687099999999987 1.58774399621110995 0.0102173420159867995 0.0525442100000000009 18 10 0.0447368250000000009 0 18 false 156 310044.78867571702 125.052117286026998 2479.32007 11.9598049999999994 17 162170.455582207011 310.621799729016004 522.083300000000008 12.3264589999999998 16 211704.188373031997 231.791740675198014 913.337949999999978 11.447597 1.20587299999999997 1 0.878862400000000044 0.366654399999999991 0.512207999999999997 8.12497739607190006 1.37633377615178998 6 5500 4.5 0 NOT_AVAILABLE 151.141057378842987 -63.3092530304277972 22.1092301273307008 -12.6667230985288004 100002 5486.1001 5416.2998 5596 0.152999997 0.067900002 0.217600003 0.075000003 0.0285 0.104199998 200111 1.02162839999999999 0.981894849999999986 1.04813050000000008 0.851795799999999992 0.837098899999999979 0.866492700000000005 +1635721458409799680 Gaia DR2 2481368908034516480 2481368908034516480 441491997 2015.5 25.1350461133970988 0.633581807360337979 -3.15890867531462005 0.554540810124597994 -0.697845683761128988 0.777853882362775972 -0.897142400000000007 24.007480441110701 1.20589821146424003 -13.9864142340495992 1.08585571416372995 0.366903069999999998 0.481959099999999974 -0.0157487410000000001 -0.0556080830000000026 0.00497107599999999962 -0.163777100000000009 -0.217320619999999992 -0.017231139999999999 0.18344916 0.337599780000000016 100 0 100 0 2.07267879999999982 125.723999 0.723205656034787037 0.295686167982413983 31 false 0.0812328199999999973 1.38132591320852005 0.177878485728798996 0.142120820000000009 13 9 1.17858759999999996 0 13 false 102 194.13740597635001 2.03763469200693992 95.2759018 19.9680919999999986 8 205.514456494489991 39.417818344150497 5.2137450000000003 19.5692829999999987 8 287.817458393026016 32.4908176319165989 8.85842399999999941 18.6141259999999988 2.54114819999999986 0 0.955156299999999958 -0.39880943000000002 1.35396580000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.136877935911997 -63.3094516083861976 22.1077596891743013 -12.6654961380796998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369011112215424 2481369011112215424 272337506 2015.5 25.1352637073733014 0.17179572425662501 -3.14877594964930019 0.122780499730161002 -0.0954460778344452948 0.208348755137927999 -0.458107260000000016 -0.133048873398181 0.305318133813724024 -2.34218188577872022 0.222127704713190988 0.159011299999999994 0.552256639999999965 0.0310687179999999986 0.112847970000000006 -0.0691044600000000064 0.0189325530000000013 0.134477230000000003 -0.000115591973999999996 0.163448869999999996 0.185470539999999989 159 0 157 2 1.32751269999999999 175.606003 0.0372228429905809011 0.00960448181616303971 31 false 0.807755349999999983 1.63629993879018998 0.0405667716306076995 0.0427234199999999981 18 10 0.274477120000000019 0 18 false 157 993.982389427317003 2.03466760610919017 488.52301 18.1949199999999998 17 448.098635784164003 10.7442545272110994 41.705883 18.7229540000000014 16 779.073851116981018 8.03984954465781954 96.9015399999999971 17.5329739999999994 1.23460189999999992 0 1.18997960000000003 0.528034200000000009 0.661945340000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.127816183526988 -63.3001700783649 22.1117996872687002 -12.6561590170174991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368942392735104 2481368942392735104 458830203 2015.5 25.1449374707095998 0.221460409148406007 -3.1580232787573701 0.176173879502573988 2.85363963734203008 0.298330803171634018 9.56535299999999999 -17.7680995647328999 0.401040203733075973 -20.4343521191296986 0.302964634628293983 0.165377049999999998 0.511398429999999959 0.0513850260000000003 0.131218539999999995 -0.216299429999999987 -0.047570556 0.0475507750000000035 0.0840682900000000038 0.269090920000000011 0.255221750000000025 148 0 147 1 0.472265299999999999 149.417999 0.264113770747223975 0.279703901426699986 31 false 0.483021299999999987 1.21410710629724994 0.0534237799086674028 0.0974624999999999936 17 9 0.368779630000000025 0 17 false 147 675.320177128695946 1.72949166425499001 390.472992 18.6145919999999983 13 115.548923887791005 5.44509724018830976 21.2207280000000011 20.1944729999999986 13 916.647618880872983 7.29023542662642043 125.736350000000002 17.3564149999999984 1.5284549999999999 0 2.83805849999999982 1.57988170000000006 1.25817679999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.155985851575991 -63.3044867466746979 22.1175026429309014 -12.6683184032420009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373787115838464 2481373787115838464 1525843759 2015.5 25.2006870033297012 0.219383913484461013 -3.17173601381924009 0.159741592356472006 1.44669984891604009 0.263416896305763981 5.49205400000000044 2.26464926596267979 0.419023326382671979 2.00256200615354008 0.287533555179717015 0.155391599999999991 0.48688140000000002 -0.0550003540000000013 0.114992960000000005 -0.100677446000000004 0.0359273930000000019 0.162465209999999999 0.0281530400000000007 0.148876439999999999 0.180182189999999992 157 0 154 3 2.57497119999999979 197.212997 0.318184679392938985 0.413060908074093014 31 false 0.47682819999999998 1.3914435988787599 0.0555320548289948007 0.0569270850000000023 18 10 0.373905150000000019 0 18 false 150 724.44426244239196 2.16180309857104014 335.110992 18.5383530000000007 14 199.122578318089012 7.38619424894164034 26.9587520000000005 19.603586 16 826.268558623929039 12.3155996625342006 67.091220000000007 17.4691159999999996 1.41541760000000005 0 2.13446999999999987 1.06523319999999999 1.0692368000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.281164427301007 -63.2934037472129987 22.1653464051577984 -12.7016039392229008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442609673274752 2481442609673274752 1103299083 2015.5 25.1049673121639998 2.24888734852279004 -2.81358174318167986 1.36160272773955993 \N \N \N \N \N \N \N -0.432744179999999978 \N \N \N \N \N \N \N \N \N 71 0 71 0 0.00255050600000000013 65.3647003 0 6.18448069487335049e-16 3 false 0.0165038459999999991 \N \N 0.102642639999999993 9 7 7.01987079999999963 0 9 false 73 83.8674727754832929 1.54193160475341995 54.391201 20.8793809999999986 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.756312002362989 -63.008407339258298 22.2096464475954001 -12.3334444083636008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373924554799872 2481373924554799872 594101444 2015.5 25.2046824796705984 0.177267752264453987 -3.15413953016087989 0.125378664319127003 5.0917536315640497 0.217714665347038011 23.3872800000000005 73.0986005019929053 0.31538478208139098 -34.0153749784752009 0.225432188345176004 0.102276590000000001 0.544054150000000014 0.0219881069999999998 0.117083080000000006 -0.155617699999999998 0.021975886 0.111148040000000004 0.0234096869999999985 0.169360530000000009 0.199430049999999998 157 0 154 3 6.09460639999999998 279.898987 0.743145584755832034 6.57585454666574964 31 false 0.780693230000000016 1.25777634271912997 0.0425747147504257004 0.0574123399999999992 18 10 0.283775119999999992 0 18 false 153 1525.88059724179993 2.51693640818445008 606.244995 17.7295650000000009 16 224.148117888579009 11.0182295735103999 20.3433880000000009 19.4750499999999995 14 2161.58394502394003 12.7231139441788006 169.894260000000003 16.4249900000000011 1.5635116 0 3.05006030000000017 1.74548529999999991 1.30457500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.272640176927013 -63.2757723533082981 22.1758017911717005 -12.6867205574778001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835320448 2481373855835320448 1594648232 2015.5 25.2266561982422992 0.0544494357109435029 -3.16070143590127994 0.0437447230980239979 0.504765393913645055 0.0681099051067568934 7.41104200000000013 0.812967079309324991 0.101653240792728 2.22420565434011985 0.0925177591382931042 0.121318469999999998 0.526513200000000015 -0.00967021300000000042 0.0291300380000000005 -0.228151660000000006 -0.00648175100000000001 -0.069024550000000004 -0.0152233160000000006 0.0643835140000000028 0.368457880000000015 139 0 138 1 -1.44568809999999992 110.197998 0 0 31 false 9.54473800000000061 1.64438254107193993 0.0148638469017146006 0.118234019999999995 16 10 0.105788924000000006 0 16 false 138 7960.51520261220958 6.0221915880299699 1321.85999 15.9360130000000009 14 4272.21610188690011 13.4519624382195992 317.590550000000007 16.274754999999999 16 5369.17894166002043 11.9312205348071991 450.01085999999998 15.4371500000000008 1.2111521999999999 0 0.837605500000000003 0.338742260000000017 0.498863219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.323015077151013 -63.2724255943049982 22.1942244372371995 -12.7009132386121006 100001 5789.5 5586.4502 5839.75 0.183200002 0.0599999987 0.354999989 0.0737999976 0.0286999997 0.164800003 200111 1.10368479999999991 1.08477249999999992 1.1853726 1.23296019999999995 0.880782700000000029 1.58513769999999998 +1635721458409799680 Gaia DR2 2481373684036627840 2481373684036627840 1415869562 2015.5 25.2450846864165008 0.40671561834334502 -3.1619758784164298 0.336883006309911026 0.473705826993260026 0.506055046940510955 0.936075699999999955 12.5242288507352999 0.806331544559301006 1.56579289916483 0.611521102601434996 0.201595780000000002 0.44232096999999998 0.0782338399999999989 0.106884725 -0.133379560000000008 0.0708320399999999989 0.259384449999999989 -0.0854778000000000066 0.0871233639999999948 0.22265045 138 0 136 2 -0.454155150000000007 123.144997 0 0 31 false 0.139824570000000009 1.34541915851065008 0.110253060219204002 0.102159254000000005 16 10 0.731036660000000005 0 16 false 136 269.154326007819975 1.37928990053542 195.139999 19.6133629999999997 12 70.6000701764705951 8.20989409632760037 8.59938900000000039 20.7293759999999985 13 314.077141589743007 19.3394761481711015 16.2402100000000011 18.5193300000000001 1.4292068 0 2.2100468000000002 1.11601259999999991 1.09403420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.361263853205998 -63.2657764078034006 22.2112748860993001 -12.7088847170532002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835322624 2481373855835322624 1493632946 2015.5 25.2247452331255992 0.240420634383398002 -3.15499439173339002 0.187977411073418005 4.88488414209192001 0.298692944391795001 16.3541999999999987 -16.7873245418619987 0.449834138452797017 -94.0679373527991061 0.33646275761685901 0.106342679999999995 0.481413800000000003 0.0136295229999999993 0.130754829999999989 -0.21620840999999999 0.139049740000000005 0.22208718999999999 -0.0476830270000000028 0.054077743999999997 0.253596780000000022 140 0 137 3 3.35813380000000006 193.565002 0.829411651889202961 3.53311315587392993 31 false 0.423710260000000005 1.14513976691183994 0.0629656757340931045 0.0797678160000000053 16 10 0.411056939999999982 0 16 false 138 795.104044022595986 2.02286980698319008 393.057007 18.4373049999999985 13 116.247978124672997 9.40871501051534054 12.3553510000000006 20.1879249999999999 14 1112.50430425939999 8.74035162810777955 127.283699999999996 17.1461660000000009 1.54539810000000011 0 3.04175949999999995 1.75061990000000001 1.29113959999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.313795771635 -63.2680648539864023 22.1945643662039984 -12.6949048203033996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373890195062144 2481373890195062144 23463638 2015.5 25.2322543214203989 0.288482877228459 -3.15208624901486978 0.240523192311448003 0.293609831651192976 0.359186991948658996 0.817428900000000014 9.7910404754422995 0.572831280545913035 -4.13269746526519999 0.440196403390988977 0.133637189999999989 0.452312649999999983 0.116176639999999998 0.0641888199999999937 -0.130203079999999999 -0.00503665950000000036 0.296764199999999978 -0.0897934499999999969 0.114562730000000002 0.124317949999999997 138 0 137 1 1.0947171 149.871002 0.292442138470858981 0.185981280919807007 31 false 0.274855499999999975 1.58745528065864994 0.0791253833624609021 0.0781846340000000029 16 10 0.510235899999999964 0 16 false 135 452.293380865910024 1.58795529949017999 284.828003 19.0498140000000014 14 258.696250565623018 9.69459065054637037 26.6845970000000001 19.3194119999999998 12 312.271428578036989 15.0327294177631003 20.7727700000000013 18.5255890000000001 1.2623835000000001 0 0.793823240000000041 0.269598000000000004 0.524225229999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.32615237599299 -63.2622533869894994 22.2028075939382994 -12.6949672842797998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374061995449856 2481374061995449856 1673449216 2015.5 25.2496945283686998 0.908332307226097035 -3.15576665015534985 0.74285603370715203 0.145083664142963004 1.19414140587249995 0.121496215000000005 -2.05661509272260012 1.54524587537452995 -14.6639140009060007 1.97633913496202007 0.126763920000000002 0.660018899999999964 0.160665140000000012 -0.156883020000000012 -0.190564779999999989 -0.185889040000000005 -0.2467694 -0.153661700000000012 -0.062066004000000001 0.520660939999999961 115 0 114 1 -0.789367799999999953 97.1369019 0 0 31 false 0.0549588650000000026 1.66332839828275003 0.217930714791468 0.129300190000000009 14 9 1.95471290000000009 0 14 false 110 123.53422749376 1.14658913683123997 107.740997 20.4588970000000003 7 187.286419126717988 53.8854088608686013 3.47564239999999991 19.6701219999999992 11 174.773001859706 11.1631701074039995 15.6562160000000006 19.155735 2.93084290000000003 0 0.514387130000000026 -0.788774500000000045 1.30316159999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.364670784417001 -63.2582007164404985 22.2180081902839994 -12.7048107960738008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371076992090496 2481371076992090496 587637094 2015.5 25.2927949237093017 0.0600520886954652028 -3.15915569666125995 0.0364748829953022019 0.930781776008602013 0.0751144887579523052 12.391508 17.821746540686501 0.0871300643828725047 -5.52096442370685025 0.0727355364621150025 -0.118940939999999995 0.715560439999999964 0.0941749499999999934 0.0732453500000000007 -0.352982159999999989 0.00389988490000000004 -0.0643590899999999938 -0.00397120399999999988 0.0749443500000000068 0.337525870000000006 123 0 122 1 1.87130079999999999 147.244995 0.129932202499279004 1.82713422496897993 31 false 17.3486559999999983 1.58806567270197996 0.0132106665133584003 0.0356094730000000026 14 9 0.0876164999999999999 0 14 false 117 20123.447195274799 10.1876049674411 1975.29004 14.9291099999999997 10 10032.6893630795003 32.8424829205657005 305.478999999999985 15.3478449999999995 12 14537.8386641978996 39.8648523830425034 364.678099999999972 14.3556699999999999 1.22099010000000008 0 0.992175099999999976 0.418735499999999983 0.573439600000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.454420147479993 -63.2429783570421975 22.2577348183764983 -12.7238301710601007 100001 5336.5 5289 5348 \N \N \N \N \N \N 200111 1.14386739999999998 1.13895330000000006 1.16450560000000003 0.956031399999999976 0.794147599999999954 1.11791520000000011 +1635721458409799680 Gaia DR2 2481374061993751808 2481374061993751808 927357712 2015.5 25.2609162688791002 0.556403264858380986 -3.15855363433038994 0.321914071919081002 -0.224552315183663004 0.737225142411511047 -0.304591239999999985 2.09216190169710003 0.701024674532242043 -4.95164003305186018 0.530109039268059967 -0.200928749999999989 0.782764899999999986 0.140345830000000005 0.0902597460000000018 -0.408822100000000022 0.0359315239999999994 0.225434600000000013 0.0340535270000000001 0.0694662499999999933 0.229714589999999996 139 0 138 1 1.00937769999999993 149.429001 0 0 31 false 0.161612420000000007 1.72827211976567008 0.104132199539714004 0.056191480000000002 16 9 0.739221000000000017 0 16 false 136 325.876908779030998 1.35496424123556003 240.505997 19.4057309999999994 14 180.943623554353991 5.62164057791570038 32.1869769999999988 19.7075299999999984 15 205.160047554041 13.1145840327217993 15.6436569999999993 18.9816879999999983 1.1848145000000001 0 0.725841500000000028 0.301797870000000024 0.424043659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.389844729276007 -63.2559669349726974 22.2276310275188003 -12.7115335164470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440206864575616 2505440206864575616 614320482 2015.5 25.9718457076956 1.48927042624984995 -2.54747246830733021 2.50945370088938979 \N \N \N \N \N \N \N -0.0911750939999999982 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.671786070000000013 53.2653008 0 0 3 false 0.0237032769999999983 \N \N 0.190476119999999999 8 7 8.67629900000000021 0 8 false 67 82.7626148949878058 1.25599827791980001 65.893898 20.8937799999999996 7 46.0176246454999998 6.70188341811134958 6.86637200000000014 21.1940780000000011 7 79.2793772354501982 8.21579981896429068 9.64962399999999931 20.0140190000000011 1.51393230000000001 0 1.18005939999999998 0.300298699999999974 0.879760740000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.217656381772002 -62.3988173508974029 23.1342419046140009 -12.4041254308767002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374341167210240 2481374341167210240 251235688 2015.5 25.2404510029492002 0.106889660935559003 -3.13334501500765006 0.0657156473718718964 1.75483456408776006 0.13999258641908699 12.5351959999999991 29.3945572405350006 0.146671773285578011 -19.8295597913236001 0.114147431947891995 -0.173373980000000011 0.74062490000000003 0.00815563650000000057 0.119500875000000006 -0.422125899999999998 0.0850516800000000045 0.100342829999999994 0.0192927999999999988 0.0844505400000000045 0.307679800000000003 140 0 139 1 15.4914050000000003 579.466003 0.450731622510007979 24.1644083354671011 31 true 4.18790700000000005 1.48953045313862997 0.0218697034165336 0.0597989300000000001 16 9 0.141957670000000008 0 16 false 139 26188.3363113496998 10.9731278733988997 2386.59009 14.6430959999999999 13 11590.0297143763 10.5872002816559991 1094.721 15.1911760000000005 14 21206.9357065719996 54.877901805646097 386.438539999999989 13.9457249999999995 1.25235009999999991 0 1.24545100000000009 0.548080440000000002 0.697370500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.324973334334004 -63.2418099058587018 22.2176904844233007 -12.6805658107453993 100001 4965.33008 4795.22021 5202 0.647000015 0.597500026 0.690999985 0.316000015 0.282000005 0.338999987 200111 0.826073170000000023 0.752618129999999996 0.88572379999999995 0.373702020000000024 0.313162180000000012 0.43424185999999998 +1635721458409799680 Gaia DR2 2481374371231411200 2481374371231411200 431457402 2015.5 25.2392550928874009 0.872877673110550978 -3.12889776907781991 0.480735398186254992 0.91794073172002999 1.11648689446113991 0.822168800000000033 6.21570720506614993 1.09667215413133001 -7.72892939783464961 0.83459701825376098 -0.129647970000000001 0.786375159999999962 0.164389769999999991 0.0765791599999999933 -0.320134220000000025 0.026105426000000001 0.222350280000000011 0.0238898269999999989 0.0638563260000000049 0.225790560000000001 131 0 131 0 2.60192729999999983 171.162994 0.968094167215451051 0.620043356859105055 31 false 0.0707738100000000064 1.49449261555449997 0.157577390223396008 0.0814363200000000065 15 9 1.14122150000000011 0 15 false 129 197.647459960443001 1.56230476565459009 126.510002 19.9486370000000015 12 102.618143394672003 10.9344346152177998 9.38485999999999976 20.3233280000000001 13 146.925130617223999 6.42453104187412016 22.8693939999999998 19.3441800000000015 1.26256750000000006 0 0.97914886000000001 0.374690999999999996 0.604457860000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.318385269371987 -63.2382878329346028 22.2182338965527997 -12.6759916596839997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375337599679232 2481375337599679232 543714196 2015.5 25.2448502824051992 1.22253075455739002 -3.09289525955083011 1.06337623687842009 -4.55799164973127979 1.93577120414794002 -2.35461279999999995 1.22187678044503989 2.99846340878251016 -1.42951836239989993 3.79789638548222985 -0.0122084989999999994 0.54203290000000004 -0.0568389970000000022 -0.168536899999999989 -0.430695859999999986 0.301839440000000014 0.297058219999999984 -0.522738200000000042 -0.553194170000000041 0.716393649999999993 99 0 96 3 0.090648560000000003 91.5574036 0 0 31 false 0.0242524330000000003 \N \N 0.199996489999999999 12 8 4.05473100000000031 0 13 false 99 103.931853071429003 1.31314571292375004 79.1472015 20.6464940000000006 6 78.6074637728088987 11.7978087097552997 6.66288660000000021 20.6127280000000006 8 80.7438197699428031 12.8433077720107001 6.28683999999999976 19.9941460000000006 1.53322850000000011 0 0.618581799999999959 -0.0337657930000000023 0.652347560000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.295770553305999 -63.2033081800949006 22.2371636546189997 -12.6445866960131994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374474312327808 2481374474312327808 693844385 2015.5 25.2607135649913985 1.95092394053318996 -3.11997352002057005 1.14356063645301997 \N \N \N \N \N \N \N -0.287054900000000002 \N \N \N \N \N \N \N \N \N 68 0 68 0 -0.884474639999999979 52.987999 0 0 3 false 0.0226471570000000011 \N \N -0.0794781499999999974 8 6 2.7244117000000001 0 8 false 68 93.0169240347270971 1.53080136834258007 60.7635002 20.766960000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.353068184009999 -63.221120918005802 22.2420210884709988 -12.6755975910611003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374508670374400 2481374508670374400 127122067 2015.5 25.2613947513703998 0.376794347788097006 -3.10794345773062997 0.258447072467705985 0.669697661985471981 0.471604449339510012 1.42004100000000011 2.53057171027985994 0.631089743060369024 -7.97235118060677994 0.436448448926879007 -0.0462114799999999992 0.610764199999999979 0.142829719999999993 0.0739922499999999955 -0.258887980000000018 0.00762708799999999975 0.330318999999999974 -0.0251808989999999996 0.0936773899999999993 0.103267275000000006 142 0 142 0 3.15804339999999995 195.360001 0.799442638683992013 1.43904845341582011 31 false 0.221365509999999988 1.48822539963850997 0.0819920483423643015 0.0843011300000000019 16 10 0.561631400000000003 0 16 false 139 447.812970948781015 1.53197961161351004 292.309998 19.0606229999999996 12 139.397409526605998 13.7974773787514007 10.1031080000000006 19.9907509999999995 15 475.995930446896978 12.3414115626211007 38.5690039999999996 18.0679109999999987 1.37421949999999993 0 1.92284009999999994 0.930128100000000013 0.992712000000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.343112137895986 -63.2099380773472035 22.2472155262117006 -12.6646659422048007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376810774528512 2481376810774528512 797910361 2015.5 25.2547732266000011 1.09530271665420997 -3.08550165245075991 0.770128226840154029 0.335465841006965027 1.29707760113431991 0.258632059999999997 0.584917080470570006 1.9163735173632801 1.54338131292338998 1.93364038675417005 0.105307474999999998 0.627945540000000024 -0.038942240000000003 -0.135322899999999996 -0.120221120000000001 -0.159058719999999987 -0.261243700000000023 -0.0574104530000000002 -0.0360623899999999997 0.354256420000000016 114 0 114 0 -0.251628760000000007 104.677002 0 9.6248052937908809e-16 31 false 0.0299697480000000009 1.85860074196442993 0.269823939726965001 0.123616790000000004 13 9 1.98065050000000009 0 13 false 114 122.465313686388996 1.06677614616259997 114.799004 20.4683320000000002 6 29.8719678330814986 10.1519065924742993 2.94249820000000017 21.6632290000000012 10 155.660976837242004 9.85500627724871947 15.7951169999999994 19.2814709999999998 1.51498369999999993 0 2.38175770000000009 1.19489669999999992 1.18686099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.308732721952993 -63.1924140163410968 22.2493967919760998 -12.6413674093975992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376746348895360 2481376746348895360 554799086 2015.5 25.2742038103061013 0.0296474369864663002 -3.0842899182300898 0.0221395952911240014 1.89763769636146007 0.0356218681984835014 53.2717060000000018 7.70999857035663982 0.0547103717090186986 -3.47586511598791015 0.0468864916793274022 0.0842789860000000002 0.53297720000000004 -0.151152100000000011 0.0348733069999999992 -0.215527240000000009 -0.0334443450000000003 -0.174814799999999992 0.0712356600000000062 0.107209299999999993 0.33797756000000001 139 0 139 0 -3.35924800000000001 85.6909027 0 0 31 true 67.769440000000003 1.56982017230190007 0.00767330615891682975 0.078476260000000006 16 10 0.0611529459999999997 0 16 false 137 54314.5855565187012 20.432077973704601 2658.30005 13.8510740000000006 16 26690.5591169996005 53.7348142596808032 496.708860000000016 14.2854939999999999 16 39344.3004729973982 39.1514550056819033 1004.92560000000003 13.2747150000000005 1.21578499999999989 0 1.01077839999999997 0.434419630000000001 0.576358799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.346553500831988 -63.1830926840152998 22.2683386379356989 -12.6473941148514992 100001 5314 5098.5 5676.75 0.270000011 0.126000002 0.331099987 0.127700001 0.0610000007 0.162100002 200111 0.930992069999999949 0.815810999999999953 1.01135639999999993 0.622691400000000006 0.595410100000000053 0.649972699999999959 +1635721458409799680 Gaia DR2 2481375990434372096 2481375990434372096 1167569270 2015.5 25.2811743159894995 3.40980008074367014 -3.09227487189239003 4.4730738713778404 \N \N \N \N \N \N \N -0.343183430000000012 \N \N \N \N \N \N \N \N \N 49 0 49 0 0.580025730000000017 48.9491997 0 0 3 false 0.0153530109999999997 \N \N 0.231052260000000009 6 5 14.2782970000000002 0 6 false 50 74.8173731760291929 2.34241853028728997 31.9402008 21.0033589999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.368035331281988 -63.1873703415837014 22.2719529989383993 -12.6573825857247009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376024794411904 2481376024794411904 585155202 2015.5 25.2947083803837991 0.260840379360258001 -3.08568270090643004 0.177198524908011995 1.09160971267312989 0.315598621065050988 3.45885439999999988 9.8899937102789508 0.449356556171014998 -11.8262154674096003 0.324825752689990976 -0.045554716000000002 0.568905349999999976 0.0498162600000000011 0.0774140660000000036 -0.26039487 0.0699175699999999983 0.16883585000000001 -0.0452275869999999997 0.0588400550000000022 0.176345400000000013 133 0 130 3 0.637742699999999996 134.654999 0 0 31 false 0.454074919999999993 1.42319630318190993 0.0619392758404257032 0.0779905300000000024 15 10 0.401917460000000004 0 16 false 127 702.930275097187973 2.4127992624138801 291.334015 18.5710850000000001 12 252.874885133117999 11.1721351757910003 22.6344279999999998 19.3441240000000008 12 670.095822650071 9.08103731121008018 73.7906700000000058 17.6965770000000013 1.31303309999999995 0 1.64754679999999998 0.773038859999999994 0.874507900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.388952832932006 -63.1756641906687975 22.2873191156637986 -12.6562362534313007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377016932932992 2481377016932932992 225388163 2015.5 25.2401712823758011 2.50888148056524019 -3.06887996204546987 1.26763469958505004 \N \N \N \N \N \N \N -0.384634140000000013 \N \N \N \N \N \N \N \N \N 66 0 65 1 0.982445659999999998 70.6723022 0 0 3 false 0.0170624459999999985 \N \N -0.164674039999999994 8 7 3.40901919999999992 0 8 false 70 86.4237318229991018 1.7954835574871999 48.1339989 20.8467829999999985 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.263847909947998 -63.183526728860997 22.2417874534832016 -12.6205407534248994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424055413130752 2481424055413130752 1480374714 2015.5 25.2371508078710995 0.236061629671256989 -3.03863742837476991 0.139635849711346988 0.744470410312094044 0.283338160701058994 2.62749800000000011 -3.45580214432174015 0.367834605838082973 -1.31304837416555009 0.244519479772350001 0.0505040799999999998 0.647279139999999975 0.033003277999999997 0.146875250000000013 -0.047538996 0.00680016030000000007 0.148918550000000011 0.0247669519999999983 0.212201150000000005 0.0851223299999999961 138 0 138 0 1.6353975999999999 160.738007 0.342911730443628993 0.64212589126490105 31 false 0.630475459999999988 1.46762341786264994 0.0488903056779902978 0.0708473500000000034 16 9 0.325349060000000023 0 16 false 138 969.784982982876954 2.37873925413218013 407.688995 18.2216780000000007 12 325.518096236410997 7.50223482882343973 43.389484000000003 19.0699499999999986 12 971.323038949238025 10.5829224774705004 91.7821200000000061 17.2935100000000013 1.33724609999999999 0 1.77643970000000007 0.848272299999999979 0.928167340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.229465676509989 -63.1573943725078024 22.2503401222040011 -12.5913167194443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376849428109952 2481376849428109952 951261629 2015.5 25.2724304561793005 0.0275296763302825993 -3.07359953514029005 0.0211374395916084992 1.22931481975250989 0.0340272722359777 36.1273399999999967 12.5728759223345996 0.0488058260117560996 -0.780015406933505018 0.0452472742387355006 0.0902486150000000042 0.574139900000000036 -0.0434406960000000009 0.0367555899999999977 -0.214729959999999997 0.0020449985999999999 -0.112622829999999993 -0.00484940130000000025 0.0525224999999999997 0.371772139999999973 147 0 147 0 -1.31652799999999992 120.350998 0 8.43259086162969006e-16 31 true 78.3659739999999942 1.56554133084553992 0.00695559668665522973 0.0947906599999999988 17 10 0.0570363070000000014 0 17 false 147 62802.9074948377965 26.3424739039755984 2384.09009 13.6934170000000002 15 31585.9299700759002 70.9848463480860943 444.967219999999998 14.1026539999999994 15 44584.3764629030993 79.0597758729248028 563.932500000000005 13.1389639999999996 1.21284689999999995 0 0.96369075999999998 0.409237860000000009 0.554452900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.332953082464996 -63.1741617536576996 22.2706904716642988 -12.6368038447565993 100001 5396 5335 5587.27002 0.931999981 0.591000021 1.12310004 0.463200003 0.292899996 0.544499993 200111 1.49085059999999991 1.3905246 1.5251380000000001 1.69765999999999995 1.5869063000000001 1.80841359999999995 +1635721458409799680 Gaia DR2 2481376780708633344 2481376780708633344 240072396 2015.5 25.2767523488802013 0.124800725105070995 -3.07515653429805003 0.0901898902076048031 2.30964062785022994 0.157829829293571006 14.6337390000000003 -6.51935671377987003 0.217556496245997988 -21.9141001729857017 0.161295951022220996 0.0165726879999999986 0.567896900000000038 0.0407944059999999983 0.10123356 -0.283504219999999973 0.0784386839999999946 0.186161889999999997 -0.0208127100000000016 0.0755670799999999948 0.240411370000000013 148 0 148 0 2.13153620000000021 181.378998 0.313450356862177981 1.6407714772589499 31 true 1.76639220000000008 1.34829211413379002 0.0291420072960815006 0.100655854000000003 17 10 0.199317959999999988 0 17 false 145 2270.71360633040013 3.2534652841203302 697.937012 17.2979599999999998 15 651.870801099711002 9.94176990358598012 65.5688860000000062 18.3159850000000013 16 2524.9060917152101 9.50657921261353955 265.595640000000003 16.2563080000000006 1.39902140000000008 0 2.05967710000000004 1.01802440000000005 1.04165269999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.343076905338989 -63.1737420571585986 22.2742136245168005 -12.6398420812582994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376879492401024 2481376879492401024 185754666 2015.5 25.2821638199426992 1.25775335978840008 -3.07127903464215013 0.880319261620360005 -1.03259111075403998 1.50978222617409008 -0.683933800000000036 1.19982471063355001 2.2913530410443399 -3.48109416742078981 2.34359191993599003 -2.84753369999999995e-05 0.592614100000000033 0.109329164000000006 -0.160094590000000009 -0.204978169999999987 -0.150580400000000003 -0.192838769999999993 -0.131769140000000007 -0.0890376199999999979 0.339860470000000026 112 0 112 0 0.410709829999999998 112.431 1.39202110849894001 0.353595518624399974 31 false 0.0232462750000000003 1.19418116576463995 0.297980766343474979 0.126834940000000007 14 9 2.3646246999999998 0 14 false 112 106.733020390055003 1.31256355293456006 81.3164978 20.6176190000000013 10 80.4419455202708065 9.31199633505518065 8.63852900000000012 20.5876799999999989 10 69.6786518867479998 7.30578962855511005 9.53745649999999934 20.1541710000000016 1.40650570000000008 0 0.433509829999999985 -0.0299377439999999988 0.463447569999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.35027591689601 -63.167938788564399 22.2808263439703005 -12.6382295175459003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754880 2481377158665754880 1499844282 2015.5 25.2653755010736987 1.70035323707715991 -3.05228770189641008 0.907447920375984984 1.15220590849261995 2.10824954400044007 0.546522559999999991 34.3500511464133993 2.21718772828115984 -19.7171787784726007 1.48750806223398002 -0.177083839999999992 0.75758654000000003 0.14122519 0.118986869999999995 -0.342265129999999973 0.0427984449999999975 0.237149090000000007 0.0252100560000000015 0.111224219999999999 0.163516999999999996 116 0 116 0 7.77952240000000028 270.730988 4.75133410678900958 8.18453431451752955 31 false 0.020586763000000001 1.4302484849241901 0.282347323430855002 0.0377362259999999977 14 9 2.19063970000000019 0 16 false 118 153.295326386239992 2.28114144050829992 67.2011032 20.2245430000000006 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.298813523742012 -63.157842115742902 22.2720302802841985 -12.6143959176020992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754752 2481377158665754752 256528212 2015.5 25.2661477566417005 0.039024745711629602 -3.05120821125523989 0.0300946902790560009 1.33730522919978001 0.0471138578124620025 28.3845400000000012 35.2294533522356019 0.0690817584005267993 -17.5410414468266005 0.0665931695157502973 0.116669449999999994 0.581088000000000049 -0.0632760700000000037 -0.00383201239999999979 -0.158481149999999987 -0.0642052099999999987 -0.189623459999999994 0.0160775899999999992 0.0665322500000000011 0.352182749999999989 151 124 146 5 8.14123200000000047 325.494995 0 0 31 true 206.349979999999988 1.57816917565693005 0.0101150787567449007 0.0840420499999999931 17 10 0.0514591000000000007 0 17 false 137 157217.089231335995 47.0450587218033007 3341.84009 12.6971159999999994 17 83996.8465040190931 131.590856304019013 638.318239999999946 13.0407299999999999 17 105217.761763528993 191.065344979736011 550.689939999999979 12.2066970000000001 1.20352450000000011 0 0.834033000000000024 0.343614580000000003 0.490418430000000016 9.33769838500690952 2.30676331359719011 9 5000 3 -1.5 NOT_AVAILABLE 151.299348347377986 -63.1565376358432999 22.2731726317175003 -12.6136767120905997 100001 5756.25 5650.43994 6008.54004 \N \N \N \N \N \N 200111 1.87470559999999997 1.72058029999999995 1.94557610000000003 3.47631759999999979 3.29457280000000008 3.65806250000000022 +1635721458409799680 Gaia DR2 2481377257449474560 2481377257449474560 1306303589 2015.5 25.2636566468664014 0.423496531719090019 -3.03657643541031996 0.270088162592331982 0.699577797786448019 0.515634982161390032 1.35673069999999996 16.4253278940275997 0.715376206600216946 -8.31808036311532994 0.465962455568579015 -0.0162513440000000009 0.600917600000000052 0.162066879999999996 0.0888451039999999942 -0.21107382999999999 0.00855583700000000016 0.270343200000000006 -0.0386080219999999988 0.127921499999999994 0.105807010000000007 149 0 149 0 1.71434500000000001 174.337997 0.590924530250976021 0.498141844588446014 31 false 0.174135220000000007 1.40870061820853998 0.0889431018782587957 0.075904879999999994 18 10 0.637126700000000046 0 18 false 148 381.19776311388199 1.90266298442747006 200.350006 19.2354899999999986 11 114.167821581281999 8.12916434601435078 14.0442260000000001 20.2075299999999984 9 449.88475590008602 10.3680678085876998 43.3913799999999981 18.1291679999999999 1.47968499999999992 0 2.07836150000000019 0.972038269999999982 1.10632320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.280644260142992 -63.1443346238323002 22.2763297908049012 -12.5991583050952993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376986867085440 2481376986867085440 521751622 2015.5 25.2870299362054993 2.02506674325326985 -3.05216526966562984 1.5264563729268501 \N \N \N \N \N \N \N 0.101125030000000005 \N \N \N \N \N \N \N \N \N 105 0 104 1 37.6694600000000008 2132.6499 10.4860641429502 183.181184970679993 3 false 0.00830235600000000032 \N \N 0.123094999999999996 16 10 3.36048359999999979 0 16 false 138 371.351870210885977 5.01949562671079974 73.9819031 19.2638999999999996 15 481.544324447079021 15.0767475898328005 31.9395370000000014 18.6447980000000015 13 1120.56372530480007 11.8974603103324998 94.1851199999999977 17.1383289999999988 4.31425859999999961 0 1.50646970000000002 -0.6191025 2.12557220000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.34206909463299 -63.1485682951081984 22.2926752265124009 -12.6222525319662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374165072978176 2481374165072978176 812573910 2015.5 25.3020714983128983 1.11294705982045006 -3.13497340472153008 0.859842697345755025 -0.32407549670507102 1.36800754204969 -0.236895999999999995 0.203344865315851997 1.90441168830448992 -10.9644809829843997 2.31037066655860013 -0.0335869199999999993 0.62797265999999996 0.128056350000000013 -0.18958469 -0.295979829999999999 -0.260609570000000013 -0.261567680000000025 -0.000543384749999999985 0.0324142840000000015 0.34429700000000002 113 0 112 1 1.50166949999999999 129.746002 2.24449179122035014 1.35782585577833004 31 false 0.0302035210000000005 1.75928586295883993 0.261102920521457005 0.145703520000000003 13 9 2.20691820000000005 0 13 false 112 131.192503931711002 1.38501634485157998 94.722702 20.3935929999999992 7 50.5926921233223013 10.2876589062943999 4.91780419999999996 21.0911700000000017 11 103.688092337102006 10.0667519939838002 10.3000550000000004 19.7225970000000004 1.17598779999999992 0 1.36857220000000002 0.697576500000000044 0.670995699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.450180103110995 -63.2171533390175 22.275700782343101 -12.7047661225624999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481372691899792768 2481372691899792768 987006331 2015.5 25.3196328886732012 0.0641249120376866932 -3.13078414461226018 0.0474288582065615985 1.52666460882246002 0.0817181486498220061 18.6820759999999986 5.65957363801739 0.114981217473081002 -3.97341121863700009 0.0905883019858414046 -0.0143680930000000002 0.549126739999999947 -0.0109460270000000005 0.0687700200000000011 -0.32528484000000002 0.0724715439999999989 0.0945591900000000013 -0.0290748629999999994 0.0396496470000000031 0.277365699999999993 157 0 156 1 0.553265750000000001 160.126007 0.092647879169542896 0.403507726960352975 31 true 6.51640599999999992 1.50213963113502991 0.0147493460436238996 0.0726873299999999944 18 10 0.110158265000000005 0 18 false 154 6315.10255336030968 6.16199769043304979 1024.84998 16.1874140000000004 14 2526.16348876497977 10.6878667217852001 236.358059999999995 16.8452340000000014 17 5514.77068743338987 19.4053725397639987 284.187839999999994 15.4081010000000003 1.27328630000000009 0 1.4371328000000001 0.657819750000000036 0.779313099999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.48142665573701 -63.205896913385601 22.2939933155747987 -12.7073356350403994 100001 4560.66992 4404.08008 4827 0.0274999999 0.00700000022 0.244100004 0.0149999997 0.00289999996 0.193499997 200111 0.586735070000000025 0.523774150000000049 0.629199300000000017 0.134181319999999993 0.119209930000000006 0.149152709999999994 +1635721458409799680 Gaia DR2 2505443402317897088 2505443402317897088 92349376 2015.5 26.0205913380079998 1.8522243343989 -2.45635444848187001 1.83357048865206007 \N \N \N \N \N \N \N -0.402795369999999986 \N \N \N \N \N \N \N \N \N 68 0 67 1 2.0319379999999998 86.6548004 2.81830835530442014 1.54236505942135005 3 false 0.0207079070000000011 \N \N 0.0460096099999999994 8 6 5.15759599999999985 0 8 false 67 93.2435812105852051 1.27909001319709992 72.8983994 20.7643179999999994 4 48.324070839802701 6.50097612789265966 7.43335629999999981 21.140979999999999 4 156.032189915786006 8.26470094142966083 18.8793499999999987 19.2788849999999989 2.19163899999999989 0 1.8620949 0.376661299999999977 1.48543359999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.226531475189006 -62.2955839494169012 23.2147833845038996 -12.3371560325920004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375711261213184 2481375711261213184 1492544697 2015.5 25.3042974022025007 0.189355974454537002 -3.11999601406636007 0.135552347904512011 1.25589252553978992 0.239278918272470997 5.24865530000000025 8.05414628877105976 0.32441938492459399 -4.39330193346105968 0.236593512560460989 0.00823777499999999926 0.581946799999999986 0.0738662800000000064 0.110492475000000007 -0.283420979999999989 0.0891981049999999998 0.241857380000000011 -0.0306396019999999984 0.0737861999999999962 0.219804870000000013 151 0 147 4 0.911924900000000038 157.214996 0.342028290233436005 0.801509819702060033 31 false 0.775456099999999982 1.44176056735120994 0.0409486546210044017 0.0897863660000000063 17 10 0.294240769999999985 0 17 false 145 1108.23976722347993 2.60594767283417017 425.27301 18.0767820000000015 15 435.905353496642022 21.5104393974426991 20.2648280000000014 18.7529070000000004 15 992.88812599822802 7.67653293614277032 129.340699999999998 17.2696690000000004 1.2892458 0 1.48323819999999995 0.676124599999999965 0.807113650000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.440503989159993 -63.2026536274725004 22.2834781866991989 -12.6916628087550993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375745622748544 2481375745622748544 654646566 2015.5 25.3121988252581005 1.96114377397714001 -3.11132928939517983 1.8083557459369699 \N \N \N \N \N \N \N 0.100876199999999999 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.485340600000000011 55.1688995 0 0 3 false 0.0141598309999999995 \N \N 0.316176919999999972 8 7 6.44608399999999993 0 8 false 70 84.7725989821881996 1.79239922480830005 47.2956009 20.8677269999999986 6 76.1955967682520026 19.5804066039634996 3.89142060000000001 20.6465630000000004 7 97.7943319111163021 8.25543402663777037 11.8460560000000008 19.7861370000000001 2.05243099999999989 0 0.860425949999999995 -0.221164699999999992 1.08159070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.448160820698007 -63.1914536536246985 22.2942705486963995 -12.6865144986808005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375956074935424 2481375956074935424 245063075 2015.5 25.3016192726707985 0.0562318899492679006 -3.08960807109670021 0.0417619748912637992 0.68144297308192503 0.0686171973081404069 9.93108199999999997 9.38924349621579069 0.0992359785126624983 -6.93403289894980013 0.085399005991152202 0.0142302320000000006 0.557392299999999952 -0.046998485999999999 0.0720506759999999941 -0.250926099999999985 0.0591244469999999966 -0.0322911180000000006 -0.012313882 0.0487553800000000009 0.299872040000000006 134 0 134 0 -0.193896349999999995 125.255997 0 0 31 true 9.92532100000000028 1.60646831687823011 0.0148442727836756005 0.0852021050000000002 15 10 0.0989563900000000052 0 15 false 132 8872.71619110727079 8.34481284731507067 1063.26001 15.8182240000000007 15 4775.01612460698016 27.6608850860133018 172.627010000000013 16.1539520000000003 13 6040.31355539271044 18.6780050000716997 323.391779999999983 15.3092710000000007 1.21894239999999998 0 0.844680800000000009 0.335727700000000018 0.508953100000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.406492416286994 -63.1762861581557971 22.2924110381628999 -12.6624288285056004 100001 5759.2002 5493.75 5918 0.0340000018 0.0170000009 0.0540999994 0.0149999997 0.00870000012 0.0231999997 200111 0.873024899999999993 0.826801099999999956 0.959430930000000015 0.755434199999999945 0.594523899999999994 0.916344500000000006 +1635721458409799680 Gaia DR2 2481376054858609024 2481376054858609024 1433784262 2015.5 25.310568859698801 1.02016591328407991 -3.08953025352965982 0.712804848975256977 0.879495134343784013 1.22808820232184002 0.716149799999999948 -1.81094090047293999 1.78921764237389991 -5.7903410091910601 1.8543873942684499 -0.0130289900000000007 0.621441899999999992 0.103107509999999999 -0.160977700000000001 -0.242105810000000005 -0.20949021000000001 -0.263631669999999985 -0.0592758580000000007 -0.016332929999999999 0.340436640000000013 119 0 118 1 0.883569599999999955 126.092003 0 0 31 false 0.0356812199999999996 1.8867650437357999 0.233985182852925994 0.136960880000000007 14 9 1.86337350000000002 0 14 false 119 134.52606077971501 1.53884571364974998 87.4200974 20.3663500000000006 13 100.464342349781006 12.4048164958905005 8.09881700000000038 20.3463600000000007 13 106.801843235692004 6.30675674608693004 16.9345110000000005 19.6904739999999983 1.54071399999999992 0 0.655885700000000016 -0.0199909209999999983 0.67587660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.424344001099001 -63.1724171546224014 22.3009550124392995 -12.6656502584411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376157937830656 2481376157937830656 1395163038 2015.5 25.3069106088994005 0.582944495864852974 -3.07147610582059016 0.383550655104082983 0.682286131894210945 0.712591651438194029 0.957471430000000012 -11.0358203996635993 0.969035598627778993 -44.0280814375034026 0.66481559020622405 -0.00475642270000000041 0.608372330000000017 0.146727350000000006 0.103951864000000005 -0.224906699999999987 0.0477449100000000015 0.270564530000000025 -0.0382483939999999981 0.107835449999999999 0.146452300000000007 144 0 142 2 2.81777200000000017 188.311005 1.42106173730947005 2.03549191031122012 31 false 0.0930080040000000052 1.3574699490609301 0.117706636519088997 0.100173570000000003 17 10 0.866731000000000029 0 17 false 142 286.970440059952978 2.02260550679630979 141.882004 19.5437739999999991 14 77.035822123831494 8.97778759857883912 8.58071299999999937 20.6346570000000007 15 357.081991309913008 8.32561671025353078 42.8895529999999994 18.380001 1.51276150000000009 0 2.2546558000000001 1.0908833 1.16377259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.400021279594995 -63.1576272947341977 22.3042942382252001 -12.6475206892295997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424330291042688 2481424330291042688 375510112 2015.5 25.2075574941178999 0.823325413899370973 -3.02517678354087005 0.479528748212918021 1.09778705741845006 0.977319784653843948 1.12326290000000006 -7.98638094173104029 1.28831549886814001 -8.82037418131591977 0.832685815495394999 0.000517206999999999997 0.658212539999999957 0.138417559999999995 0.114241670000000003 -0.117779314999999996 -0.0237790699999999994 0.242161349999999997 0.000769167150000000014 0.183811799999999997 0.0661379899999999937 154 0 153 1 2.77724390000000021 200.291 1.51650834731779005 1.1640546554867699 31 false 0.0496240100000000031 1.15268244436153 0.157235337903686989 0.0535761230000000033 18 10 1.14804539999999999 0 18 false 151 183.440402400602011 1.40254418414735005 130.791 20.0296289999999999 12 48.9723717095958975 8.07961196929625025 6.06122829999999979 21.1265099999999997 14 248.034695851089992 7.54232387508266022 32.8857100000000031 18.7756390000000017 1.61909299999999989 0 2.35087199999999985 1.09688190000000008 1.25399020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.157551600976007 -63.1576618382516983 22.227279673056799 -12.5679085138507993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377601048593536 2481377601048593536 1479581047 2015.5 25.2979275790044014 1.03673586109677007 -3.02863515624924018 0.713355411813405005 3.5979035244122799 1.19915955206251001 3.00035430000000014 4.16829134891148012 1.95860783807177996 -17.4481493403492003 1.82043451079240004 0.039360939999999997 0.544086300000000023 0.159329200000000004 -0.155087370000000002 -0.135162919999999992 -0.191938090000000006 -0.251546349999999974 -0.132240980000000008 -0.0251450609999999998 0.275137359999999997 114 0 113 1 -0.450102979999999986 100.880997 0 0 31 false 0.0339679120000000029 1.21455951449657995 0.247717547487057987 0.114134180000000002 13 9 1.89022660000000009 0 13 false 112 130.791318524289011 1.36551477080898009 95.7817001 20.3969200000000015 6 34.2062628027308975 9.5551373753830795 3.57988200000000001 21.5161249999999988 12 213.232612035474006 13.0908659660916999 16.2886559999999996 18.9397850000000005 1.89186009999999993 0 2.57633970000000012 1.11920550000000008 1.45713420000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.341799025302009 -63.1226438691185976 22.3119279752575004 -12.6043892194108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415602917434496 2481415602917434496 717969527 2015.5 25.0320072097178006 0.472981572934429995 -3.16656898955899013 0.416372200073705012 0.692863881751949018 0.620413328117059959 1.11677789999999999 4.44603175553784968 1.0389692593903801 -2.7328113246998198 0.729688888301190053 0.17249312 0.243453730000000007 0.0378679899999999972 0.068557190000000004 -0.317773519999999976 0.0168800500000000006 0.132101250000000003 -0.014314238 0.167097639999999992 0.221713450000000006 183 0 181 2 4.15697000000000028 265.201996 2.12137876829963012 4.91916662117086023 31 false 0.068383979999999997 1.41847727908947996 0.114846420857247 0.0423539900000000011 21 9 0.930909600000000004 0 21 false 181 221.728972191494989 1.24185176879961001 178.546997 19.8238090000000007 18 48.1938139959693004 7.98876779035929996 6.0326966999999998 21.1439100000000018 18 266.877361799434027 9.40265606904540974 28.3831880000000005 18.6961399999999998 1.42097439999999997 0 2.4477692000000002 1.32010080000000007 1.1276683999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.935986210383987 -63.3596037088962021 22.006869981377001 -12.634628529794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415705996744704 2481415705996744704 246196234 2015.5 25.0386415730679985 0.905594127883930011 -3.15106267939090001 1.20356841542601001 0.511692969903476014 1.19704843044152009 0.427462220000000004 1.87264727264941011 2.82627747628446002 2.11311589097872998 3.42688202596024993 0.507856129999999961 -0.168435140000000011 -0.480892929999999996 -0.458155839999999981 -0.628890399999999961 -0.643988200000000011 -0.768888059999999984 0.488767180000000023 0.561784199999999956 0.767821250000000011 124 0 123 1 0.677338659999999981 128.009003 0 0 31 false 0.0333656629999999968 \N \N 0.0578009229999999971 15 8 3.84658770000000017 0 15 false 124 104.542553045955998 1.12591473667653008 92.8511963 20.6401329999999987 8 60.1265348377581006 6.90892540354229023 8.70273300000000027 20.9037229999999994 10 69.8936809503113068 8.79361018427644048 7.94823500000000038 20.1508259999999986 1.24370610000000004 0 0.752897260000000013 0.263589860000000009 0.489307400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.934931046066993 -63.3427483594196019 22.0190475951342002 -12.6226652145232006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049594129152 2481416049594129152 583045284 2015.5 25.0651841129330002 0.89226239352885095 -3.14842339553610984 0.806578206670522047 0.446128730366517012 0.991624319513436991 0.449896929999999973 -0.784255983727581985 1.94740566648499991 -2.37737164101709997 1.88971287077400008 0.250195029999999985 0.352327879999999982 -0.0594637469999999974 -0.066454940000000004 -0.0240706629999999991 -0.109363329999999995 -0.274576460000000022 -0.0320976560000000022 0.0799632740000000009 0.308973039999999977 114 0 114 0 0.340243879999999999 113.415001 0 0 31 false 0.0292908379999999996 1.41795467327534008 0.258119164950162017 0.0586945099999999984 14 9 1.93660910000000008 0 14 false 114 96.3652161424643054 1.17936517148714004 81.7093964 20.7285649999999997 9 52.7385030660065013 10.4249627873489992 5.05886749999999985 21.0460680000000018 10 67.8889339592115988 12.390523635129 5.479101 20.182423 1.25177359999999993 0 0.863645549999999984 0.31750297999999999 0.546142600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.986095061110007 -63.329251220955399 22.0452859175279983 -12.6299994827861006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415401054540800 2481415401054540800 87499261 2015.5 25.0862041717264006 0.0265674483187257997 -3.17259738004783998 0.0179582232960650984 2.49316707416023009 0.0310086076698825007 80.4024200000000064 -34.4437081299071011 0.0429416418175503009 -31.9373056186752997 0.037151357417522797 -0.0231126209999999999 0.624811400000000017 -0.0637906099999999976 0.0734808200000000022 -0.20009188 -0.0505060999999999982 -0.225643919999999998 0.0722206999999999988 0.154815120000000001 0.240384189999999998 161 0 161 0 -0.733054600000000001 142.776993 0 0 31 true 116.662949999999995 1.57865832288818009 0.00636035314275546979 -0.0151107380000000003 19 10 0.0481194630000000012 0 19 false 159 92554.185790953401 33.1270609806769016 2793.90991 13.2723750000000003 17 45819.6086158816033 75.0151229140730038 610.804930000000013 13.69876 16 66597.7183604357997 77.6873238099640986 857.253360000000043 12.7032720000000001 1.21461090000000005 0 0.995488170000000006 0.426384929999999995 0.56910324000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.051152541469008 -63.3423859252989985 22.0561277670464015 -12.6602148544345994 100001 5240.5 5138.5498 5554.7998 0.157000005 0.0165999997 0.314099997 0.0935000032 0.0122999996 0.149800003 200111 0.956229800000000019 0.851080999999999976 0.994549930000000026 0.621312599999999993 0.602709350000000033 0.639915899999999982 +1635721458409799680 Gaia DR2 2505466011025747200 2505466011025747200 609260826 2015.5 26.1014138906044018 1.51502316742769993 -2.44212342365886981 2.37165432398834986 \N \N \N \N \N \N \N 0.384716060000000026 \N \N \N \N \N \N \N \N \N 79 0 77 2 -1.18443269999999989 58.1217003 0 0 3 false 0.0243191050000000006 \N \N 0.330690119999999976 9 7 5.85578999999999983 0 9 false 77 96.4856438067763946 1.57661118650462995 61.198101 20.7272099999999995 6 64.570732249981404 18.6759995745359006 3.45741770000000015 20.8262999999999998 9 85.3041969229427934 11.4887488764168992 7.42502070000000014 19.9344940000000008 1.55333910000000008 0 0.891805650000000005 0.0990905759999999997 0.792715100000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.369283980777993 -62.2475084948652011 23.2970436599710986 -12.3534484949387 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368843609052288 2481368843609052288 1381886411 2015.5 25.0946567538200007 0.0557570789909000997 -3.17371587010359013 0.0327700477668593018 2.09825232918730009 0.0648327949960338934 32.364060000000002 9.33601011468469011 0.0856001779242603067 -17.884947457834901 0.0617909178808504003 -0.198295730000000003 0.666212800000000049 -0.0803543300000000016 0.115592180000000003 -0.377334180000000019 -0.0283414389999999995 -0.104642379999999993 0.0993565200000000037 0.183070750000000004 0.201270279999999996 158 0 158 0 -1.75721539999999998 123.694 0 0 31 true 14.9808339999999998 1.48777831780959002 0.0119689566867275006 -0.0660314699999999949 18 9 0.0817516600000000038 0 18 false 157 12334.8718002477999 6.01001278363994018 2052.38989 15.4605289999999993 14 4855.6917726490301 17.5374196791503003 276.876070000000027 16.1357609999999987 14 10891.3578614847993 24.0532214489624998 452.802459999999996 14.6692149999999994 1.2766286 1 1.46654599999999991 0.675231930000000036 0.79131410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.069268649684005 -63.3398543084883983 22.0637433005794001 -12.6643704110376998 100002 4399 4298.22021 4556.16992 0.00800000038 0.00200000009 0.256099999 0.00300000003 0.000699999975 0.156299993 200111 0.662882569999999949 0.617936900000000011 0.694331999999999949 0.148246240000000001 0.138501399999999997 0.157991080000000006 +1635721458409799680 Gaia DR2 2481368877968810496 2481368877968810496 180758900 2015.5 25.1095477732065007 0.727004005151795973 -3.16368546787703009 0.670427114243966948 -0.304712822739643008 0.85234333499163395 -0.357500099999999987 4.39768314211524025 1.48487549726038992 -2.18832104704274011 1.63193631030672992 0.265422429999999987 0.454048500000000022 0.0208581670000000004 -0.073392384000000005 -0.0555564569999999966 -0.116639499999999993 -0.247053429999999991 -0.0888753500000000057 0.0251448620000000005 0.410648879999999994 139 0 139 0 0.264618999999999993 137.699005 0 0 31 false 0.0386078399999999974 1.65987250475206993 0.215344492694836992 0.0583758299999999966 16 9 1.63739509999999999 0 16 true 138 115.762351939069006 1.13864936160149011 101.666 20.5294479999999986 10 40.199719817771097 6.33510607029063966 6.34554799999999997 21.3408300000000004 11 124.259183898257007 10.8649609824205999 11.4366889999999994 19.5260980000000011 1.42065970000000008 0 1.8147316 0.811382300000000001 1.0033493 \N \N 0 \N \N \N NOT_AVAILABLE 151.089927891054998 -63.3245017909146029 22.0817010443707993 -12.6605377788366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415469773446528 2481415469773446528 1134835520 2015.5 25.0702422324118999 4.99313047935337995 -3.16294651025958018 3.86952544729422021 \N \N \N \N \N \N \N -0.413524239999999987 \N \N \N \N \N \N \N \N \N 72 0 71 1 39.1233670000000018 2300.97998 18.4484686383174008 129.083854376263986 3 false 0.0026423442000000001 \N \N -0.108085410000000007 11 7 8.79070800000000041 0 12 true 94 215.489428174209991 2.92428965753172987 73.6894989 19.8548009999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.009882810828998 -63.3403175699345979 22.0446000885457991 -12.6453611251181002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435604864 2481415843435604864 1219788903 2015.5 25.0821266074089984 0.552288342766447005 -3.16230815565970014 0.424828993140230982 1.80084810023985997 0.658086272148458051 2.73649239999999994 5.49154976708408959 1.03397759012379997 -14.4163033376075997 0.707786678012323978 0.142830399999999996 0.482328409999999985 0.0903207300000000018 0.166563729999999993 -0.146255820000000009 0.10948186 0.347481399999999996 -0.0348767680000000024 0.132358239999999988 0.180306419999999995 165 0 164 1 5.50841669999999972 277.877991 2.02738422827713993 3.59479150237664014 31 false 0.0704140600000000005 1.65133258894013002 0.129045121741135999 0.0220110700000000006 19 10 0.924947439999999954 0 19 false 164 216.455646613878002 1.33603655419592005 162.013 19.8499429999999997 10 67.5455993091429008 7.01947524353685015 9.62260000000000026 20.7773949999999985 14 289.52005808304699 9.8320217251763804 29.4466460000000012 18.607723 1.64960189999999995 0 2.16967199999999982 0.927452100000000002 1.24221990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.033288023251998 -63.3347579697341985 22.0561435989794994 -12.6491494276856997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415847731139328 2481415847731139328 1499925447 2015.5 25.0814760134772001 0.0499330115162879978 -3.15239545514247022 0.0354175873709181022 7.0101717958116696 0.0589837144110567993 118.849270000000004 -26.0645382280596998 0.0920786611628567064 -24.9731944538603017 0.069634179658035103 -0.0228399520000000002 0.510973600000000028 -0.0363535430000000021 0.0672351100000000007 -0.275618260000000004 -0.0243254939999999996 -0.060487326000000001 0.0555682099999999998 0.154475019999999991 0.218600349999999999 169 0 168 1 10.9746570000000006 450.979004 0.278872919845851996 12.7750183584713 31 true 10.3600290000000008 1.3774301027573701 0.0123078204793191006 -0.00945305700000000082 20 10 0.0892105400000000048 0 20 false 167 46834.7711666382966 22.9831132627524006 2037.79004 14.0119450000000008 19 13823.2592726956009 50.5571174162642976 273.41867000000002 14.9998620000000003 17 49196.0804418490006 75.3847449674666024 652.600000000000023 13.0320940000000007 1.34556729999999991 1 1.96776770000000001 0.987916950000000016 0.979850769999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.022703661950004 -63.3260336294847974 22.0592758516730996 -12.6396972994371009 100002 3930.78003 3788.31006 4206.25977 0.339300007 0.169599995 0.825299978 0.173700005 0.0920000002 0.358999997 200111 0.552733200000000036 0.482703749999999987 0.595087469999999952 0.0657113899999999945 0.0645222960000000068 0.0669004799999999983 +1635721458409799680 Gaia DR2 2481416053889569280 2481416053889569280 429281415 2015.5 25.0744685327509984 0.106599941628802 -3.14855319537995015 0.077119951274670695 0.338160669154252025 0.128075040398102996 2.64033220000000002 5.53822435621161979 0.197649974677987006 -6.34721357121224017 0.140363042929255 0.0333027020000000035 0.502375499999999975 0.00324865920000000016 0.0966100839999999988 -0.236337560000000002 0.0309278459999999984 0.120381829999999995 0.0226797499999999985 0.134547300000000009 0.19468321999999999 175 0 174 1 2.26128319999999983 213.296005 0 0 31 true 1.87084570000000006 1.59194346800237008 0.0247951574759604013 -0.004952054 20 10 0.179505770000000009 0 20 false 174 1967.76837003672995 2.58789106690826998 760.375 17.4534300000000009 18 955.007003638776041 12.9566694390498007 73.7077560000000034 17.901371000000001 18 1492.1433688290499 9.51995669183341064 156.738460000000003 16.8273940000000017 1.24361699999999997 0 1.07397649999999989 0.447940830000000012 0.626035699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.004964668566998 -63.3254817058907022 22.0540658037168988 -12.6335431186071006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368873673377152 2481368873673377152 437970238 2015.5 25.1122723528789003 0.594175511564063008 -3.15625282840544008 0.502368221431154005 1.87426604377665007 0.707961684459093021 2.64741159999999986 0.410811597301734999 1.19731903652603 -7.3362830041196796 1.0965625683668101 0.152231349999999988 0.437716959999999988 0.0886793300000000007 0.002674816 -0.158347309999999991 -0.0297116709999999985 -0.0244859550000000002 -0.0755315349999999969 0.0749148060000000005 0.289980599999999977 147 0 145 2 1.98210170000000008 175.080002 1.05561066422324989 0.593708958412235033 31 false 0.056617569999999999 1.34990815568212996 0.163626425938948994 0.0376420299999999999 17 10 1.1487061999999999 0 17 false 144 156.020288964615986 1.33997801657934001 116.434998 20.2054140000000011 11 43.6524250713839024 7.64760649744657961 5.7079854000000001 21.2513679999999994 15 199.131303985970987 8.98555269384480937 22.1612760000000009 19.0140700000000002 1.55610359999999992 0 2.23729699999999987 1.04595379999999993 1.19134329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.088461899138991 -63.3166143551559983 22.0871044379260013 -12.6546343787727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127616 2481416564990127616 105494749 2015.5 25.0195268478733013 0.326667301032544988 -3.12777018318065991 0.169140568076474013 -0.377674373179511025 0.414534318100866994 -0.911081099999999977 8.32159054616871074 0.410437285817622011 1.06344357971765002 0.297590551531453973 -0.151141300000000006 0.784757299999999991 0.0773257799999999967 0.115420744000000006 -0.325067879999999976 -0.000249612670000000001 0.0884249299999999988 0.0571361599999999983 0.133283420000000014 0.221747100000000003 158 0 154 4 0.908373650000000032 164.524002 0.358460558650005978 0.518473346300713955 31 false 0.439388200000000007 1.64009996149367998 0.0556144632398843999 -0.00591391900000000012 18 9 0.424512119999999993 0 18 false 155 643.930853009023053 1.9784953525715101 325.464996 18.6662670000000013 16 322.913324642414011 17.1414623504795998 18.8381420000000013 19.078672000000001 13 520.704981109108985 11.9179344756161996 43.6908760000000029 17.97044 1.31010699999999991 0 1.10823249999999995 0.412405000000000022 0.695827500000000043 \N \N 0 \N \N \N NOT_AVAILABLE 150.874595096662006 -63.3295686786713006 22.0096878588466005 -12.5939704974333004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127872 2481416564990127872 1347885605 2015.5 25.021525607553599 0.167689307273025001 -3.12743990172130015 0.121771149987360994 -0.311676082145601996 0.20419914772216799 -1.52633390000000002 12.6208527727670994 0.309986702726846974 -9.01008168145651034 0.230539687618361994 0.0926255899999999938 0.52979946 0.0480862899999999968 0.0460023499999999974 -0.110764324999999997 -0.0288962549999999992 0.144133630000000013 -0.0355211200000000032 0.11945016 0.141261200000000003 158 0 157 1 -0.300501399999999974 146.169998 0 0 31 false 0.812074100000000021 1.73467735525150002 0.0391712191596432988 0.0141315420000000004 18 10 0.27684048 0 18 false 155 964.312234856554028 1.80274677528167993 534.913025 18.2278209999999987 14 538.031633890422995 15.8520554448426996 33.940809999999999 18.5243679999999991 13 646.655387647331054 11.4601256181684992 56.4265499999999989 17.7352370000000015 1.22853049999999997 0 0.789131160000000054 0.296546939999999981 0.492584230000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.878327602447001 -63.3284349783968992 22.0117132500078014 -12.5944006797732992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369011112215424 2481369011112215424 272337506 2015.5 25.1352637073733014 0.17179572425662501 -3.14877594964930019 0.122780499730161002 -0.0954460778344452948 0.208348755137927999 -0.458107260000000016 -0.133048873398181 0.305318133813724024 -2.34218188577872022 0.222127704713190988 0.159011299999999994 0.552256639999999965 0.0310687179999999986 0.112847970000000006 -0.0691044600000000064 0.0189325530000000013 0.134477230000000003 -0.000115591973999999996 0.163448869999999996 0.185470539999999989 159 0 157 2 1.32751269999999999 175.606003 0.0372228429905809011 0.00960448181616303971 31 false 0.807755349999999983 1.63629993879018998 0.0405667716306076995 0.0427234199999999981 18 10 0.274477120000000019 0 18 false 157 993.982389427317003 2.03466760610919017 488.52301 18.1949199999999998 17 448.098635784164003 10.7442545272110994 41.705883 18.7229540000000014 16 779.073851116981018 8.03984954465781954 96.9015399999999971 17.5329739999999994 1.23460189999999992 0 1.18997960000000003 0.528034200000000009 0.661945340000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.127816183526988 -63.3001700783649 22.1117996872687002 -12.6561590170174991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368804953869568 2481368804953869568 1165661084 2015.5 25.1190678412447994 0.977576538507428983 -3.17542562143112983 0.99870431593561404 0.0265694244465927987 1.24888412691732009 0.0212745309999999993 -2.17469296992601002 2.28100929382924988 -5.59527399278360971 2.9022835107104501 0.310471400000000008 0.356779720000000022 0.153419389999999989 0.0083809920000000003 0.0323116000000000028 0.068409600000000001 0.0633261299999999944 -0.36420756999999998 -0.273621679999999978 0.506221200000000038 82 0 81 1 -0.920793239999999957 64.6035004 0 1.15265252369143008e-15 31 false 0.0322421570000000005 1.77440474061289 0.347101032727142988 0.0311320679999999989 10 8 2.86115960000000014 0 11 false 85 103.149814137825004 1.43172808896158998 72.0457001 20.6546960000000013 8 47.9498290425421985 7.34060342986135961 6.53213739999999987 21.1494199999999992 10 123.771398458156 18.3795411995082993 6.73419430000000041 19.5303690000000003 1.66477499999999989 0 1.61905100000000002 0.494724270000000022 1.1243266999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.120143873585988 -63.3311513935580024 22.0863134428158006 -12.6749577203916992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368877968810240 2481368877968810240 569701847 2015.5 25.1156031157000008 0.062228792797489399 -3.1639376571704001 0.0422148149425118982 0.510957255537130006 0.0715164145142363067 7.14461499999999994 -0.20164107486024499 0.116916129979568004 -3.74053132215369022 0.082589108041802306 0.0742454449999999933 0.499280500000000016 -0.164204089999999997 0.0695725400000000022 -0.123560840000000005 -0.0171162059999999984 -0.0778551900000000047 0.0931725399999999981 0.159916730000000007 0.180346859999999998 147 0 146 1 -1.78540600000000005 112.517998 0 0 31 true 7.66739269999999973 1.60066597339381 0.0144200443306884002 0.00797457900000000074 17 10 0.110241729999999996 0 18 false 144 6690.06603337280012 5.08314233003151017 1316.13 16.1247900000000008 17 3672.16305604484978 23.248601903147101 157.951999999999998 16.4390830000000001 16 4390.25276285913969 13.8913759148253 316.041600000000017 15.6556960000000007 1.20513249999999994 0 0.78338719999999995 0.314292899999999986 0.469094279999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.102381450990009 -63.322186877948198 22.0873647464845 -12.6630041072248005 100001 6152.81982 5866.75 6710.45996 0.0680000037 0.0175999999 0.168400005 0.0430000015 0.00789999962 0.0922999978 200111 0.878366769999999963 0.738447799999999988 0.966115830000000009 0.996192929999999977 0.702378300000000011 1.29000760000000003 +1635721458409799680 Gaia DR2 2481368912328548480 2481368912328548480 1336477519 2015.5 25.1368350497974014 0.0404551254964614013 -3.15951948709310004 0.0290231740582880988 3.83661256536024009 0.0475222827464603023 80.7329199999999929 7.14197116248941999 0.0667809899491011993 -4.0907112209575196 0.0610674975520201987 0.128486479999999986 0.62009000000000003 -0.0476771969999999976 0.00957889900000000009 -0.0730159060000000054 -0.109056899999999998 -0.276945200000000002 0.0652032000000000028 0.135667160000000009 0.279232599999999997 158 158 158 0 4.84873439999999967 253.522003 0 0 31 true 384.687099999999987 1.58774399621110995 0.0102173420159867995 0.0525442100000000009 18 10 0.0447368250000000009 0 18 false 156 310044.78867571702 125.052117286026998 2479.32007 11.9598049999999994 17 162170.455582207011 310.621799729016004 522.083300000000008 12.3264589999999998 16 211704.188373031997 231.791740675198014 913.337949999999978 11.447597 1.20587299999999997 1 0.878862400000000044 0.366654399999999991 0.512207999999999997 8.12497739607190006 1.37633377615178998 6 5500 4.5 0 NOT_AVAILABLE 151.141057378842987 -63.3092530304277972 22.1092301273307008 -12.6667230985288004 100002 5486.1001 5416.2998 5596 0.152999997 0.067900002 0.217600003 0.075000003 0.0285 0.104199998 200111 1.02162839999999999 0.981894849999999986 1.04813050000000008 0.851795799999999992 0.837098899999999979 0.866492700000000005 +1635721458409799680 Gaia DR2 2481368908034516480 2481368908034516480 441491997 2015.5 25.1350461133970988 0.633581807360337979 -3.15890867531462005 0.554540810124597994 -0.697845683761128988 0.777853882362775972 -0.897142400000000007 24.007480441110701 1.20589821146424003 -13.9864142340495992 1.08585571416372995 0.366903069999999998 0.481959099999999974 -0.0157487410000000001 -0.0556080830000000026 0.00497107599999999962 -0.163777100000000009 -0.217320619999999992 -0.017231139999999999 0.18344916 0.337599780000000016 100 0 100 0 2.07267879999999982 125.723999 0.723205656034787037 0.295686167982413983 31 false 0.0812328199999999973 1.38132591320852005 0.177878485728798996 0.142120820000000009 13 9 1.17858759999999996 0 13 false 102 194.13740597635001 2.03763469200693992 95.2759018 19.9680919999999986 8 205.514456494489991 39.417818344150497 5.2137450000000003 19.5692829999999987 8 287.817458393026016 32.4908176319165989 8.85842399999999941 18.6141259999999988 2.54114819999999986 0 0.955156299999999958 -0.39880943000000002 1.35396580000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.136877935911997 -63.3094516083861976 22.1077596891743013 -12.6654961380796998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368942392735104 2481368942392735104 458830203 2015.5 25.1449374707095998 0.221460409148406007 -3.1580232787573701 0.176173879502573988 2.85363963734203008 0.298330803171634018 9.56535299999999999 -17.7680995647328999 0.401040203733075973 -20.4343521191296986 0.302964634628293983 0.165377049999999998 0.511398429999999959 0.0513850260000000003 0.131218539999999995 -0.216299429999999987 -0.047570556 0.0475507750000000035 0.0840682900000000038 0.269090920000000011 0.255221750000000025 148 0 147 1 0.472265299999999999 149.417999 0.264113770747223975 0.279703901426699986 31 false 0.483021299999999987 1.21410710629724994 0.0534237799086674028 0.0974624999999999936 17 9 0.368779630000000025 0 17 false 147 675.320177128695946 1.72949166425499001 390.472992 18.6145919999999983 13 115.548923887791005 5.44509724018830976 21.2207280000000011 20.1944729999999986 13 916.647618880872983 7.29023542662642043 125.736350000000002 17.3564149999999984 1.5284549999999999 0 2.83805849999999982 1.57988170000000006 1.25817679999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.155985851575991 -63.3044867466746979 22.1175026429309014 -12.6683184032420009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373787115838464 2481373787115838464 1525843759 2015.5 25.2006870033297012 0.219383913484461013 -3.17173601381924009 0.159741592356472006 1.44669984891604009 0.263416896305763981 5.49205400000000044 2.26464926596267979 0.419023326382671979 2.00256200615354008 0.287533555179717015 0.155391599999999991 0.48688140000000002 -0.0550003540000000013 0.114992960000000005 -0.100677446000000004 0.0359273930000000019 0.162465209999999999 0.0281530400000000007 0.148876439999999999 0.180182189999999992 157 0 154 3 2.57497119999999979 197.212997 0.318184679392938985 0.413060908074093014 31 false 0.47682819999999998 1.3914435988787599 0.0555320548289948007 0.0569270850000000023 18 10 0.373905150000000019 0 18 false 150 724.44426244239196 2.16180309857104014 335.110992 18.5383530000000007 14 199.122578318089012 7.38619424894164034 26.9587520000000005 19.603586 16 826.268558623929039 12.3155996625342006 67.091220000000007 17.4691159999999996 1.41541760000000005 0 2.13446999999999987 1.06523319999999999 1.0692368000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.281164427301007 -63.2934037472129987 22.1653464051577984 -12.7016039392229008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373924554799872 2481373924554799872 594101444 2015.5 25.2046824796705984 0.177267752264453987 -3.15413953016087989 0.125378664319127003 5.0917536315640497 0.217714665347038011 23.3872800000000005 73.0986005019929053 0.31538478208139098 -34.0153749784752009 0.225432188345176004 0.102276590000000001 0.544054150000000014 0.0219881069999999998 0.117083080000000006 -0.155617699999999998 0.021975886 0.111148040000000004 0.0234096869999999985 0.169360530000000009 0.199430049999999998 157 0 154 3 6.09460639999999998 279.898987 0.743145584755832034 6.57585454666574964 31 false 0.780693230000000016 1.25777634271912997 0.0425747147504257004 0.0574123399999999992 18 10 0.283775119999999992 0 18 false 153 1525.88059724179993 2.51693640818445008 606.244995 17.7295650000000009 16 224.148117888579009 11.0182295735103999 20.3433880000000009 19.4750499999999995 14 2161.58394502394003 12.7231139441788006 169.894260000000003 16.4249900000000011 1.5635116 0 3.05006030000000017 1.74548529999999991 1.30457500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.272640176927013 -63.2757723533082981 22.1758017911717005 -12.6867205574778001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835320448 2481373855835320448 1594648232 2015.5 25.2266561982422992 0.0544494357109435029 -3.16070143590127994 0.0437447230980239979 0.504765393913645055 0.0681099051067568934 7.41104200000000013 0.812967079309324991 0.101653240792728 2.22420565434011985 0.0925177591382931042 0.121318469999999998 0.526513200000000015 -0.00967021300000000042 0.0291300380000000005 -0.228151660000000006 -0.00648175100000000001 -0.069024550000000004 -0.0152233160000000006 0.0643835140000000028 0.368457880000000015 139 0 138 1 -1.44568809999999992 110.197998 0 0 31 false 9.54473800000000061 1.64438254107193993 0.0148638469017146006 0.118234019999999995 16 10 0.105788924000000006 0 16 false 138 7960.51520261220958 6.0221915880299699 1321.85999 15.9360130000000009 14 4272.21610188690011 13.4519624382195992 317.590550000000007 16.274754999999999 16 5369.17894166002043 11.9312205348071991 450.01085999999998 15.4371500000000008 1.2111521999999999 0 0.837605500000000003 0.338742260000000017 0.498863219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.323015077151013 -63.2724255943049982 22.1942244372371995 -12.7009132386121006 100001 5789.5 5586.4502 5839.75 0.183200002 0.0599999987 0.354999989 0.0737999976 0.0286999997 0.164800003 200111 1.10368479999999991 1.08477249999999992 1.1853726 1.23296019999999995 0.880782700000000029 1.58513769999999998 +1635721458409799680 Gaia DR2 2481373684036627840 2481373684036627840 1415869562 2015.5 25.2450846864165008 0.40671561834334502 -3.1619758784164298 0.336883006309911026 0.473705826993260026 0.506055046940510955 0.936075699999999955 12.5242288507352999 0.806331544559301006 1.56579289916483 0.611521102601434996 0.201595780000000002 0.44232096999999998 0.0782338399999999989 0.106884725 -0.133379560000000008 0.0708320399999999989 0.259384449999999989 -0.0854778000000000066 0.0871233639999999948 0.22265045 138 0 136 2 -0.454155150000000007 123.144997 0 0 31 false 0.139824570000000009 1.34541915851065008 0.110253060219204002 0.102159254000000005 16 10 0.731036660000000005 0 16 false 136 269.154326007819975 1.37928990053542 195.139999 19.6133629999999997 12 70.6000701764705951 8.20989409632760037 8.59938900000000039 20.7293759999999985 13 314.077141589743007 19.3394761481711015 16.2402100000000011 18.5193300000000001 1.4292068 0 2.2100468000000002 1.11601259999999991 1.09403420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.361263853205998 -63.2657764078034006 22.2112748860993001 -12.7088847170532002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835322624 2481373855835322624 1493632946 2015.5 25.2247452331255992 0.240420634383398002 -3.15499439173339002 0.187977411073418005 4.88488414209192001 0.298692944391795001 16.3541999999999987 -16.7873245418619987 0.449834138452797017 -94.0679373527991061 0.33646275761685901 0.106342679999999995 0.481413800000000003 0.0136295229999999993 0.130754829999999989 -0.21620840999999999 0.139049740000000005 0.22208718999999999 -0.0476830270000000028 0.054077743999999997 0.253596780000000022 140 0 137 3 3.35813380000000006 193.565002 0.829411651889202961 3.53311315587392993 31 false 0.423710260000000005 1.14513976691183994 0.0629656757340931045 0.0797678160000000053 16 10 0.411056939999999982 0 16 false 138 795.104044022595986 2.02286980698319008 393.057007 18.4373049999999985 13 116.247978124672997 9.40871501051534054 12.3553510000000006 20.1879249999999999 14 1112.50430425939999 8.74035162810777955 127.283699999999996 17.1461660000000009 1.54539810000000011 0 3.04175949999999995 1.75061990000000001 1.29113959999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.313795771635 -63.2680648539864023 22.1945643662039984 -12.6949048203033996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373890195062144 2481373890195062144 23463638 2015.5 25.2322543214203989 0.288482877228459 -3.15208624901486978 0.240523192311448003 0.293609831651192976 0.359186991948658996 0.817428900000000014 9.7910404754422995 0.572831280545913035 -4.13269746526519999 0.440196403390988977 0.133637189999999989 0.452312649999999983 0.116176639999999998 0.0641888199999999937 -0.130203079999999999 -0.00503665950000000036 0.296764199999999978 -0.0897934499999999969 0.114562730000000002 0.124317949999999997 138 0 137 1 1.0947171 149.871002 0.292442138470858981 0.185981280919807007 31 false 0.274855499999999975 1.58745528065864994 0.0791253833624609021 0.0781846340000000029 16 10 0.510235899999999964 0 16 false 135 452.293380865910024 1.58795529949017999 284.828003 19.0498140000000014 14 258.696250565623018 9.69459065054637037 26.6845970000000001 19.3194119999999998 12 312.271428578036989 15.0327294177631003 20.7727700000000013 18.5255890000000001 1.2623835000000001 0 0.793823240000000041 0.269598000000000004 0.524225229999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.32615237599299 -63.2622533869894994 22.2028075939382994 -12.6949672842797998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374061995449856 2481374061995449856 1673449216 2015.5 25.2496945283686998 0.908332307226097035 -3.15576665015534985 0.74285603370715203 0.145083664142963004 1.19414140587249995 0.121496215000000005 -2.05661509272260012 1.54524587537452995 -14.6639140009060007 1.97633913496202007 0.126763920000000002 0.660018899999999964 0.160665140000000012 -0.156883020000000012 -0.190564779999999989 -0.185889040000000005 -0.2467694 -0.153661700000000012 -0.062066004000000001 0.520660939999999961 115 0 114 1 -0.789367799999999953 97.1369019 0 0 31 false 0.0549588650000000026 1.66332839828275003 0.217930714791468 0.129300190000000009 14 9 1.95471290000000009 0 14 false 110 123.53422749376 1.14658913683123997 107.740997 20.4588970000000003 7 187.286419126717988 53.8854088608686013 3.47564239999999991 19.6701219999999992 11 174.773001859706 11.1631701074039995 15.6562160000000006 19.155735 2.93084290000000003 0 0.514387130000000026 -0.788774500000000045 1.30316159999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.364670784417001 -63.2582007164404985 22.2180081902839994 -12.7048107960738008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374684764002432 2481374684764002432 673390503 2015.5 25.2110166235494013 3.79679430446896982 -3.14204601760985014 2.87324298139309997 \N \N \N \N \N \N \N 0.0739808799999999989 \N \N \N \N \N \N \N \N \N 97 0 96 1 43.2505719999999982 2803.45996 19.5840025524571999 1665.65410904134001 3 false 0.00241549149999999982 \N \N 0.0481022700000000025 13 9 7.26361849999999976 0 16 true 112 200.782338925586998 2.71842449419410981 73.8598022 19.931553000000001 9 266.734969694987001 9.70679742986584948 27.4791950000000007 19.2861879999999992 9 695.245801170476057 10.8178173813879006 64.2685850000000016 17.6565739999999991 4.79116250000000043 0 1.62961390000000006 -0.645364759999999982 2.27497859999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.274003594138009 -63.2621386698568031 22.1864001311539987 -12.6778131092638002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371076992090496 2481371076992090496 587637094 2015.5 25.2927949237093017 0.0600520886954652028 -3.15915569666125995 0.0364748829953022019 0.930781776008602013 0.0751144887579523052 12.391508 17.821746540686501 0.0871300643828725047 -5.52096442370685025 0.0727355364621150025 -0.118940939999999995 0.715560439999999964 0.0941749499999999934 0.0732453500000000007 -0.352982159999999989 0.00389988490000000004 -0.0643590899999999938 -0.00397120399999999988 0.0749443500000000068 0.337525870000000006 123 0 122 1 1.87130079999999999 147.244995 0.129932202499279004 1.82713422496897993 31 false 17.3486559999999983 1.58806567270197996 0.0132106665133584003 0.0356094730000000026 14 9 0.0876164999999999999 0 14 false 117 20123.447195274799 10.1876049674411 1975.29004 14.9291099999999997 10 10032.6893630795003 32.8424829205657005 305.478999999999985 15.3478449999999995 12 14537.8386641978996 39.8648523830425034 364.678099999999972 14.3556699999999999 1.22099010000000008 0 0.992175099999999976 0.418735499999999983 0.573439600000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.454420147479993 -63.2429783570421975 22.2577348183764983 -12.7238301710601007 100001 5336.5 5289 5348 \N \N \N \N \N \N 200111 1.14386739999999998 1.13895330000000006 1.16450560000000003 0.956031399999999976 0.794147599999999954 1.11791520000000011 +1635721458409799680 Gaia DR2 2481374061993751808 2481374061993751808 927357712 2015.5 25.2609162688791002 0.556403264858380986 -3.15855363433038994 0.321914071919081002 -0.224552315183663004 0.737225142411511047 -0.304591239999999985 2.09216190169710003 0.701024674532242043 -4.95164003305186018 0.530109039268059967 -0.200928749999999989 0.782764899999999986 0.140345830000000005 0.0902597460000000018 -0.408822100000000022 0.0359315239999999994 0.225434600000000013 0.0340535270000000001 0.0694662499999999933 0.229714589999999996 139 0 138 1 1.00937769999999993 149.429001 0 0 31 false 0.161612420000000007 1.72827211976567008 0.104132199539714004 0.056191480000000002 16 9 0.739221000000000017 0 16 false 136 325.876908779030998 1.35496424123556003 240.505997 19.4057309999999994 14 180.943623554353991 5.62164057791570038 32.1869769999999988 19.7075299999999984 15 205.160047554041 13.1145840327217993 15.6436569999999993 18.9816879999999983 1.1848145000000001 0 0.725841500000000028 0.301797870000000024 0.424043659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.389844729276007 -63.2559669349726974 22.2276310275188003 -12.7115335164470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422818464105984 2481422818464105984 620582182 2015.5 25.1953888995656001 2.98948909678429997 -3.04125248547580007 3.98621409471103982 \N \N \N \N \N \N \N 0.595402540000000036 \N \N \N \N \N \N \N \N \N 71 0 71 0 2.4876870000000002 98.0351028 4.49754791808120036 1.65686177000737 3 false 0.00948971600000000047 \N \N 0.311091359999999983 9 7 10.0987639999999992 0 9 false 73 80.9330701442307969 1.55800566364771997 51.9466019 20.9180500000000009 3 33.5203678329181969 29.1472092274964005 1.15003689999999992 21.5381159999999987 6 99.2566460695277044 22.6287080956124989 4.3863152999999997 19.7700209999999998 1.64057800000000009 0 1.76809499999999997 0.620065700000000053 1.14802929999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.14814777933401 -63.1773613443747024 22.2096332757176995 -12.5783703039338999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374341167210240 2481374341167210240 251235688 2015.5 25.2404510029492002 0.106889660935559003 -3.13334501500765006 0.0657156473718718964 1.75483456408776006 0.13999258641908699 12.5351959999999991 29.3945572405350006 0.146671773285578011 -19.8295597913236001 0.114147431947891995 -0.173373980000000011 0.74062490000000003 0.00815563650000000057 0.119500875000000006 -0.422125899999999998 0.0850516800000000045 0.100342829999999994 0.0192927999999999988 0.0844505400000000045 0.307679800000000003 140 0 139 1 15.4914050000000003 579.466003 0.450731622510007979 24.1644083354671011 31 true 4.18790700000000005 1.48953045313862997 0.0218697034165336 0.0597989300000000001 16 9 0.141957670000000008 0 16 false 139 26188.3363113496998 10.9731278733988997 2386.59009 14.6430959999999999 13 11590.0297143763 10.5872002816559991 1094.721 15.1911760000000005 14 21206.9357065719996 54.877901805646097 386.438539999999989 13.9457249999999995 1.25235009999999991 0 1.24545100000000009 0.548080440000000002 0.697370500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.324973334334004 -63.2418099058587018 22.2176904844233007 -12.6805658107453993 100001 4965.33008 4795.22021 5202 0.647000015 0.597500026 0.690999985 0.316000015 0.282000005 0.338999987 200111 0.826073170000000023 0.752618129999999996 0.88572379999999995 0.373702020000000024 0.313162180000000012 0.43424185999999998 +1635721458409799680 Gaia DR2 2481374371231411200 2481374371231411200 431457402 2015.5 25.2392550928874009 0.872877673110550978 -3.12889776907781991 0.480735398186254992 0.91794073172002999 1.11648689446113991 0.822168800000000033 6.21570720506614993 1.09667215413133001 -7.72892939783464961 0.83459701825376098 -0.129647970000000001 0.786375159999999962 0.164389769999999991 0.0765791599999999933 -0.320134220000000025 0.026105426000000001 0.222350280000000011 0.0238898269999999989 0.0638563260000000049 0.225790560000000001 131 0 131 0 2.60192729999999983 171.162994 0.968094167215451051 0.620043356859105055 31 false 0.0707738100000000064 1.49449261555449997 0.157577390223396008 0.0814363200000000065 15 9 1.14122150000000011 0 15 false 129 197.647459960443001 1.56230476565459009 126.510002 19.9486370000000015 12 102.618143394672003 10.9344346152177998 9.38485999999999976 20.3233280000000001 13 146.925130617223999 6.42453104187412016 22.8693939999999998 19.3441800000000015 1.26256750000000006 0 0.97914886000000001 0.374690999999999996 0.604457860000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.318385269371987 -63.2382878329346028 22.2182338965527997 -12.6759916596839997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375337599679232 2481375337599679232 543714196 2015.5 25.2448502824051992 1.22253075455739002 -3.09289525955083011 1.06337623687842009 -4.55799164973127979 1.93577120414794002 -2.35461279999999995 1.22187678044503989 2.99846340878251016 -1.42951836239989993 3.79789638548222985 -0.0122084989999999994 0.54203290000000004 -0.0568389970000000022 -0.168536899999999989 -0.430695859999999986 0.301839440000000014 0.297058219999999984 -0.522738200000000042 -0.553194170000000041 0.716393649999999993 99 0 96 3 0.090648560000000003 91.5574036 0 0 31 false 0.0242524330000000003 \N \N 0.199996489999999999 12 8 4.05473100000000031 0 13 false 99 103.931853071429003 1.31314571292375004 79.1472015 20.6464940000000006 6 78.6074637728088987 11.7978087097552997 6.66288660000000021 20.6127280000000006 8 80.7438197699428031 12.8433077720107001 6.28683999999999976 19.9941460000000006 1.53322850000000011 0 0.618581799999999959 -0.0337657930000000023 0.652347560000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.295770553305999 -63.2033081800949006 22.2371636546189997 -12.6445866960131994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374474312327808 2481374474312327808 693844385 2015.5 25.2607135649913985 1.95092394053318996 -3.11997352002057005 1.14356063645301997 \N \N \N \N \N \N \N -0.287054900000000002 \N \N \N \N \N \N \N \N \N 68 0 68 0 -0.884474639999999979 52.987999 0 0 3 false 0.0226471570000000011 \N \N -0.0794781499999999974 8 6 2.7244117000000001 0 8 false 68 93.0169240347270971 1.53080136834258007 60.7635002 20.766960000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.353068184009999 -63.221120918005802 22.2420210884709988 -12.6755975910611003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374508670374400 2481374508670374400 127122067 2015.5 25.2613947513703998 0.376794347788097006 -3.10794345773062997 0.258447072467705985 0.669697661985471981 0.471604449339510012 1.42004100000000011 2.53057171027985994 0.631089743060369024 -7.97235118060677994 0.436448448926879007 -0.0462114799999999992 0.610764199999999979 0.142829719999999993 0.0739922499999999955 -0.258887980000000018 0.00762708799999999975 0.330318999999999974 -0.0251808989999999996 0.0936773899999999993 0.103267275000000006 142 0 142 0 3.15804339999999995 195.360001 0.799442638683992013 1.43904845341582011 31 false 0.221365509999999988 1.48822539963850997 0.0819920483423643015 0.0843011300000000019 16 10 0.561631400000000003 0 16 false 139 447.812970948781015 1.53197961161351004 292.309998 19.0606229999999996 12 139.397409526605998 13.7974773787514007 10.1031080000000006 19.9907509999999995 15 475.995930446896978 12.3414115626211007 38.5690039999999996 18.0679109999999987 1.37421949999999993 0 1.92284009999999994 0.930128100000000013 0.992712000000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.343112137895986 -63.2099380773472035 22.2472155262117006 -12.6646659422048007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376810774528512 2481376810774528512 797910361 2015.5 25.2547732266000011 1.09530271665420997 -3.08550165245075991 0.770128226840154029 0.335465841006965027 1.29707760113431991 0.258632059999999997 0.584917080470570006 1.9163735173632801 1.54338131292338998 1.93364038675417005 0.105307474999999998 0.627945540000000024 -0.038942240000000003 -0.135322899999999996 -0.120221120000000001 -0.159058719999999987 -0.261243700000000023 -0.0574104530000000002 -0.0360623899999999997 0.354256420000000016 114 0 114 0 -0.251628760000000007 104.677002 0 9.6248052937908809e-16 31 false 0.0299697480000000009 1.85860074196442993 0.269823939726965001 0.123616790000000004 13 9 1.98065050000000009 0 13 false 114 122.465313686388996 1.06677614616259997 114.799004 20.4683320000000002 6 29.8719678330814986 10.1519065924742993 2.94249820000000017 21.6632290000000012 10 155.660976837242004 9.85500627724871947 15.7951169999999994 19.2814709999999998 1.51498369999999993 0 2.38175770000000009 1.19489669999999992 1.18686099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.308732721952993 -63.1924140163410968 22.2493967919760998 -12.6413674093975992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376746348895360 2481376746348895360 554799086 2015.5 25.2742038103061013 0.0296474369864663002 -3.0842899182300898 0.0221395952911240014 1.89763769636146007 0.0356218681984835014 53.2717060000000018 7.70999857035663982 0.0547103717090186986 -3.47586511598791015 0.0468864916793274022 0.0842789860000000002 0.53297720000000004 -0.151152100000000011 0.0348733069999999992 -0.215527240000000009 -0.0334443450000000003 -0.174814799999999992 0.0712356600000000062 0.107209299999999993 0.33797756000000001 139 0 139 0 -3.35924800000000001 85.6909027 0 0 31 true 67.769440000000003 1.56982017230190007 0.00767330615891682975 0.078476260000000006 16 10 0.0611529459999999997 0 16 false 137 54314.5855565187012 20.432077973704601 2658.30005 13.8510740000000006 16 26690.5591169996005 53.7348142596808032 496.708860000000016 14.2854939999999999 16 39344.3004729973982 39.1514550056819033 1004.92560000000003 13.2747150000000005 1.21578499999999989 0 1.01077839999999997 0.434419630000000001 0.576358799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.346553500831988 -63.1830926840152998 22.2683386379356989 -12.6473941148514992 100001 5314 5098.5 5676.75 0.270000011 0.126000002 0.331099987 0.127700001 0.0610000007 0.162100002 200111 0.930992069999999949 0.815810999999999953 1.01135639999999993 0.622691400000000006 0.595410100000000053 0.649972699999999959 +1635721458409799680 Gaia DR2 2481375990434372096 2481375990434372096 1167569270 2015.5 25.2811743159894995 3.40980008074367014 -3.09227487189239003 4.4730738713778404 \N \N \N \N \N \N \N -0.343183430000000012 \N \N \N \N \N \N \N \N \N 49 0 49 0 0.580025730000000017 48.9491997 0 0 3 false 0.0153530109999999997 \N \N 0.231052260000000009 6 5 14.2782970000000002 0 6 false 50 74.8173731760291929 2.34241853028728997 31.9402008 21.0033589999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.368035331281988 -63.1873703415837014 22.2719529989383993 -12.6573825857247009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376024794411904 2481376024794411904 585155202 2015.5 25.2947083803837991 0.260840379360258001 -3.08568270090643004 0.177198524908011995 1.09160971267312989 0.315598621065050988 3.45885439999999988 9.8899937102789508 0.449356556171014998 -11.8262154674096003 0.324825752689990976 -0.045554716000000002 0.568905349999999976 0.0498162600000000011 0.0774140660000000036 -0.26039487 0.0699175699999999983 0.16883585000000001 -0.0452275869999999997 0.0588400550000000022 0.176345400000000013 133 0 130 3 0.637742699999999996 134.654999 0 0 31 false 0.454074919999999993 1.42319630318190993 0.0619392758404257032 0.0779905300000000024 15 10 0.401917460000000004 0 16 false 127 702.930275097187973 2.4127992624138801 291.334015 18.5710850000000001 12 252.874885133117999 11.1721351757910003 22.6344279999999998 19.3441240000000008 12 670.095822650071 9.08103731121008018 73.7906700000000058 17.6965770000000013 1.31303309999999995 0 1.64754679999999998 0.773038859999999994 0.874507900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.388952832932006 -63.1756641906687975 22.2873191156637986 -12.6562362534313007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377016932932992 2481377016932932992 225388163 2015.5 25.2401712823758011 2.50888148056524019 -3.06887996204546987 1.26763469958505004 \N \N \N \N \N \N \N -0.384634140000000013 \N \N \N \N \N \N \N \N \N 66 0 65 1 0.982445659999999998 70.6723022 0 0 3 false 0.0170624459999999985 \N \N -0.164674039999999994 8 7 3.40901919999999992 0 8 false 70 86.4237318229991018 1.7954835574871999 48.1339989 20.8467829999999985 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.263847909947998 -63.183526728860997 22.2417874534832016 -12.6205407534248994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424055413130752 2481424055413130752 1480374714 2015.5 25.2371508078710995 0.236061629671256989 -3.03863742837476991 0.139635849711346988 0.744470410312094044 0.283338160701058994 2.62749800000000011 -3.45580214432174015 0.367834605838082973 -1.31304837416555009 0.244519479772350001 0.0505040799999999998 0.647279139999999975 0.033003277999999997 0.146875250000000013 -0.047538996 0.00680016030000000007 0.148918550000000011 0.0247669519999999983 0.212201150000000005 0.0851223299999999961 138 0 138 0 1.6353975999999999 160.738007 0.342911730443628993 0.64212589126490105 31 false 0.630475459999999988 1.46762341786264994 0.0488903056779902978 0.0708473500000000034 16 9 0.325349060000000023 0 16 false 138 969.784982982876954 2.37873925413218013 407.688995 18.2216780000000007 12 325.518096236410997 7.50223482882343973 43.389484000000003 19.0699499999999986 12 971.323038949238025 10.5829224774705004 91.7821200000000061 17.2935100000000013 1.33724609999999999 0 1.77643970000000007 0.848272299999999979 0.928167340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.229465676509989 -63.1573943725078024 22.2503401222040011 -12.5913167194443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376849428109952 2481376849428109952 951261629 2015.5 25.2724304561793005 0.0275296763302825993 -3.07359953514029005 0.0211374395916084992 1.22931481975250989 0.0340272722359777 36.1273399999999967 12.5728759223345996 0.0488058260117560996 -0.780015406933505018 0.0452472742387355006 0.0902486150000000042 0.574139900000000036 -0.0434406960000000009 0.0367555899999999977 -0.214729959999999997 0.0020449985999999999 -0.112622829999999993 -0.00484940130000000025 0.0525224999999999997 0.371772139999999973 147 0 147 0 -1.31652799999999992 120.350998 0 8.43259086162969006e-16 31 true 78.3659739999999942 1.56554133084553992 0.00695559668665522973 0.0947906599999999988 17 10 0.0570363070000000014 0 17 false 147 62802.9074948377965 26.3424739039755984 2384.09009 13.6934170000000002 15 31585.9299700759002 70.9848463480860943 444.967219999999998 14.1026539999999994 15 44584.3764629030993 79.0597758729248028 563.932500000000005 13.1389639999999996 1.21284689999999995 0 0.96369075999999998 0.409237860000000009 0.554452900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.332953082464996 -63.1741617536576996 22.2706904716642988 -12.6368038447565993 100001 5396 5335 5587.27002 0.931999981 0.591000021 1.12310004 0.463200003 0.292899996 0.544499993 200111 1.49085059999999991 1.3905246 1.5251380000000001 1.69765999999999995 1.5869063000000001 1.80841359999999995 +1635721458409799680 Gaia DR2 2481376780708633344 2481376780708633344 240072396 2015.5 25.2767523488802013 0.124800725105070995 -3.07515653429805003 0.0901898902076048031 2.30964062785022994 0.157829829293571006 14.6337390000000003 -6.51935671377987003 0.217556496245997988 -21.9141001729857017 0.161295951022220996 0.0165726879999999986 0.567896900000000038 0.0407944059999999983 0.10123356 -0.283504219999999973 0.0784386839999999946 0.186161889999999997 -0.0208127100000000016 0.0755670799999999948 0.240411370000000013 148 0 148 0 2.13153620000000021 181.378998 0.313450356862177981 1.6407714772589499 31 true 1.76639220000000008 1.34829211413379002 0.0291420072960815006 0.100655854000000003 17 10 0.199317959999999988 0 17 false 145 2270.71360633040013 3.2534652841203302 697.937012 17.2979599999999998 15 651.870801099711002 9.94176990358598012 65.5688860000000062 18.3159850000000013 16 2524.9060917152101 9.50657921261353955 265.595640000000003 16.2563080000000006 1.39902140000000008 0 2.05967710000000004 1.01802440000000005 1.04165269999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.343076905338989 -63.1737420571585986 22.2742136245168005 -12.6398420812582994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376879492401024 2481376879492401024 185754666 2015.5 25.2821638199426992 1.25775335978840008 -3.07127903464215013 0.880319261620360005 -1.03259111075403998 1.50978222617409008 -0.683933800000000036 1.19982471063355001 2.2913530410443399 -3.48109416742078981 2.34359191993599003 -2.84753369999999995e-05 0.592614100000000033 0.109329164000000006 -0.160094590000000009 -0.204978169999999987 -0.150580400000000003 -0.192838769999999993 -0.131769140000000007 -0.0890376199999999979 0.339860470000000026 112 0 112 0 0.410709829999999998 112.431 1.39202110849894001 0.353595518624399974 31 false 0.0232462750000000003 1.19418116576463995 0.297980766343474979 0.126834940000000007 14 9 2.3646246999999998 0 14 false 112 106.733020390055003 1.31256355293456006 81.3164978 20.6176190000000013 10 80.4419455202708065 9.31199633505518065 8.63852900000000012 20.5876799999999989 10 69.6786518867479998 7.30578962855511005 9.53745649999999934 20.1541710000000016 1.40650570000000008 0 0.433509829999999985 -0.0299377439999999988 0.463447569999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.35027591689601 -63.167938788564399 22.2808263439703005 -12.6382295175459003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754880 2481377158665754880 1499844282 2015.5 25.2653755010736987 1.70035323707715991 -3.05228770189641008 0.907447920375984984 1.15220590849261995 2.10824954400044007 0.546522559999999991 34.3500511464133993 2.21718772828115984 -19.7171787784726007 1.48750806223398002 -0.177083839999999992 0.75758654000000003 0.14122519 0.118986869999999995 -0.342265129999999973 0.0427984449999999975 0.237149090000000007 0.0252100560000000015 0.111224219999999999 0.163516999999999996 116 0 116 0 7.77952240000000028 270.730988 4.75133410678900958 8.18453431451752955 31 false 0.020586763000000001 1.4302484849241901 0.282347323430855002 0.0377362259999999977 14 9 2.19063970000000019 0 16 false 118 153.295326386239992 2.28114144050829992 67.2011032 20.2245430000000006 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.298813523742012 -63.157842115742902 22.2720302802841985 -12.6143959176020992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754752 2481377158665754752 256528212 2015.5 25.2661477566417005 0.039024745711629602 -3.05120821125523989 0.0300946902790560009 1.33730522919978001 0.0471138578124620025 28.3845400000000012 35.2294533522356019 0.0690817584005267993 -17.5410414468266005 0.0665931695157502973 0.116669449999999994 0.581088000000000049 -0.0632760700000000037 -0.00383201239999999979 -0.158481149999999987 -0.0642052099999999987 -0.189623459999999994 0.0160775899999999992 0.0665322500000000011 0.352182749999999989 151 124 146 5 8.14123200000000047 325.494995 0 0 31 true 206.349979999999988 1.57816917565693005 0.0101150787567449007 0.0840420499999999931 17 10 0.0514591000000000007 0 17 false 137 157217.089231335995 47.0450587218033007 3341.84009 12.6971159999999994 17 83996.8465040190931 131.590856304019013 638.318239999999946 13.0407299999999999 17 105217.761763528993 191.065344979736011 550.689939999999979 12.2066970000000001 1.20352450000000011 0 0.834033000000000024 0.343614580000000003 0.490418430000000016 9.33769838500690952 2.30676331359719011 9 5000 3 -1.5 NOT_AVAILABLE 151.299348347377986 -63.1565376358432999 22.2731726317175003 -12.6136767120905997 100001 5756.25 5650.43994 6008.54004 \N \N \N \N \N \N 200111 1.87470559999999997 1.72058029999999995 1.94557610000000003 3.47631759999999979 3.29457280000000008 3.65806250000000022 +1635721458409799680 Gaia DR2 2481377257449474560 2481377257449474560 1306303589 2015.5 25.2636566468664014 0.423496531719090019 -3.03657643541031996 0.270088162592331982 0.699577797786448019 0.515634982161390032 1.35673069999999996 16.4253278940275997 0.715376206600216946 -8.31808036311532994 0.465962455568579015 -0.0162513440000000009 0.600917600000000052 0.162066879999999996 0.0888451039999999942 -0.21107382999999999 0.00855583700000000016 0.270343200000000006 -0.0386080219999999988 0.127921499999999994 0.105807010000000007 149 0 149 0 1.71434500000000001 174.337997 0.590924530250976021 0.498141844588446014 31 false 0.174135220000000007 1.40870061820853998 0.0889431018782587957 0.075904879999999994 18 10 0.637126700000000046 0 18 false 148 381.19776311388199 1.90266298442747006 200.350006 19.2354899999999986 11 114.167821581281999 8.12916434601435078 14.0442260000000001 20.2075299999999984 9 449.88475590008602 10.3680678085876998 43.3913799999999981 18.1291679999999999 1.47968499999999992 0 2.07836150000000019 0.972038269999999982 1.10632320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.280644260142992 -63.1443346238323002 22.2763297908049012 -12.5991583050952993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376986867085440 2481376986867085440 521751622 2015.5 25.2870299362054993 2.02506674325326985 -3.05216526966562984 1.5264563729268501 \N \N \N \N \N \N \N 0.101125030000000005 \N \N \N \N \N \N \N \N \N 105 0 104 1 37.6694600000000008 2132.6499 10.4860641429502 183.181184970679993 3 false 0.00830235600000000032 \N \N 0.123094999999999996 16 10 3.36048359999999979 0 16 false 138 371.351870210885977 5.01949562671079974 73.9819031 19.2638999999999996 15 481.544324447079021 15.0767475898328005 31.9395370000000014 18.6447980000000015 13 1120.56372530480007 11.8974603103324998 94.1851199999999977 17.1383289999999988 4.31425859999999961 0 1.50646970000000002 -0.6191025 2.12557220000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.34206909463299 -63.1485682951081984 22.2926752265124009 -12.6222525319662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374165072978176 2481374165072978176 812573910 2015.5 25.3020714983128983 1.11294705982045006 -3.13497340472153008 0.859842697345755025 -0.32407549670507102 1.36800754204969 -0.236895999999999995 0.203344865315851997 1.90441168830448992 -10.9644809829843997 2.31037066655860013 -0.0335869199999999993 0.62797265999999996 0.128056350000000013 -0.18958469 -0.295979829999999999 -0.260609570000000013 -0.261567680000000025 -0.000543384749999999985 0.0324142840000000015 0.34429700000000002 113 0 112 1 1.50166949999999999 129.746002 2.24449179122035014 1.35782585577833004 31 false 0.0302035210000000005 1.75928586295883993 0.261102920521457005 0.145703520000000003 13 9 2.20691820000000005 0 13 false 112 131.192503931711002 1.38501634485157998 94.722702 20.3935929999999992 7 50.5926921233223013 10.2876589062943999 4.91780419999999996 21.0911700000000017 11 103.688092337102006 10.0667519939838002 10.3000550000000004 19.7225970000000004 1.17598779999999992 0 1.36857220000000002 0.697576500000000044 0.670995699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.450180103110995 -63.2171533390175 22.275700782343101 -12.7047661225624999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375711261213184 2481375711261213184 1492544697 2015.5 25.3042974022025007 0.189355974454537002 -3.11999601406636007 0.135552347904512011 1.25589252553978992 0.239278918272470997 5.24865530000000025 8.05414628877105976 0.32441938492459399 -4.39330193346105968 0.236593512560460989 0.00823777499999999926 0.581946799999999986 0.0738662800000000064 0.110492475000000007 -0.283420979999999989 0.0891981049999999998 0.241857380000000011 -0.0306396019999999984 0.0737861999999999962 0.219804870000000013 151 0 147 4 0.911924900000000038 157.214996 0.342028290233436005 0.801509819702060033 31 false 0.775456099999999982 1.44176056735120994 0.0409486546210044017 0.0897863660000000063 17 10 0.294240769999999985 0 17 false 145 1108.23976722347993 2.60594767283417017 425.27301 18.0767820000000015 15 435.905353496642022 21.5104393974426991 20.2648280000000014 18.7529070000000004 15 992.88812599822802 7.67653293614277032 129.340699999999998 17.2696690000000004 1.2892458 0 1.48323819999999995 0.676124599999999965 0.807113650000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.440503989159993 -63.2026536274725004 22.2834781866991989 -12.6916628087550993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375745622748544 2481375745622748544 654646566 2015.5 25.3121988252581005 1.96114377397714001 -3.11132928939517983 1.8083557459369699 \N \N \N \N \N \N \N 0.100876199999999999 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.485340600000000011 55.1688995 0 0 3 false 0.0141598309999999995 \N \N 0.316176919999999972 8 7 6.44608399999999993 0 8 false 70 84.7725989821881996 1.79239922480830005 47.2956009 20.8677269999999986 6 76.1955967682520026 19.5804066039634996 3.89142060000000001 20.6465630000000004 7 97.7943319111163021 8.25543402663777037 11.8460560000000008 19.7861370000000001 2.05243099999999989 0 0.860425949999999995 -0.221164699999999992 1.08159070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.448160820698007 -63.1914536536246985 22.2942705486963995 -12.6865144986808005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375956074935424 2481375956074935424 245063075 2015.5 25.3016192726707985 0.0562318899492679006 -3.08960807109670021 0.0417619748912637992 0.68144297308192503 0.0686171973081404069 9.93108199999999997 9.38924349621579069 0.0992359785126624983 -6.93403289894980013 0.085399005991152202 0.0142302320000000006 0.557392299999999952 -0.046998485999999999 0.0720506759999999941 -0.250926099999999985 0.0591244469999999966 -0.0322911180000000006 -0.012313882 0.0487553800000000009 0.299872040000000006 134 0 134 0 -0.193896349999999995 125.255997 0 0 31 true 9.92532100000000028 1.60646831687823011 0.0148442727836756005 0.0852021050000000002 15 10 0.0989563900000000052 0 15 false 132 8872.71619110727079 8.34481284731507067 1063.26001 15.8182240000000007 15 4775.01612460698016 27.6608850860133018 172.627010000000013 16.1539520000000003 13 6040.31355539271044 18.6780050000716997 323.391779999999983 15.3092710000000007 1.21894239999999998 0 0.844680800000000009 0.335727700000000018 0.508953100000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.406492416286994 -63.1762861581557971 22.2924110381628999 -12.6624288285056004 100001 5759.2002 5493.75 5918 0.0340000018 0.0170000009 0.0540999994 0.0149999997 0.00870000012 0.0231999997 200111 0.873024899999999993 0.826801099999999956 0.959430930000000015 0.755434199999999945 0.594523899999999994 0.916344500000000006 +1635721458409799680 Gaia DR2 2481376054858609024 2481376054858609024 1433784262 2015.5 25.310568859698801 1.02016591328407991 -3.08953025352965982 0.712804848975256977 0.879495134343784013 1.22808820232184002 0.716149799999999948 -1.81094090047293999 1.78921764237389991 -5.7903410091910601 1.8543873942684499 -0.0130289900000000007 0.621441899999999992 0.103107509999999999 -0.160977700000000001 -0.242105810000000005 -0.20949021000000001 -0.263631669999999985 -0.0592758580000000007 -0.016332929999999999 0.340436640000000013 119 0 118 1 0.883569599999999955 126.092003 0 0 31 false 0.0356812199999999996 1.8867650437357999 0.233985182852925994 0.136960880000000007 14 9 1.86337350000000002 0 14 false 119 134.52606077971501 1.53884571364974998 87.4200974 20.3663500000000006 13 100.464342349781006 12.4048164958905005 8.09881700000000038 20.3463600000000007 13 106.801843235692004 6.30675674608693004 16.9345110000000005 19.6904739999999983 1.54071399999999992 0 0.655885700000000016 -0.0199909209999999983 0.67587660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.424344001099001 -63.1724171546224014 22.3009550124392995 -12.6656502584411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376157937830656 2481376157937830656 1395163038 2015.5 25.3069106088994005 0.582944495864852974 -3.07147610582059016 0.383550655104082983 0.682286131894210945 0.712591651438194029 0.957471430000000012 -11.0358203996635993 0.969035598627778993 -44.0280814375034026 0.66481559020622405 -0.00475642270000000041 0.608372330000000017 0.146727350000000006 0.103951864000000005 -0.224906699999999987 0.0477449100000000015 0.270564530000000025 -0.0382483939999999981 0.107835449999999999 0.146452300000000007 144 0 142 2 2.81777200000000017 188.311005 1.42106173730947005 2.03549191031122012 31 false 0.0930080040000000052 1.3574699490609301 0.117706636519088997 0.100173570000000003 17 10 0.866731000000000029 0 17 false 142 286.970440059952978 2.02260550679630979 141.882004 19.5437739999999991 14 77.035822123831494 8.97778759857883912 8.58071299999999937 20.6346570000000007 15 357.081991309913008 8.32561671025353078 42.8895529999999994 18.380001 1.51276150000000009 0 2.2546558000000001 1.0908833 1.16377259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.400021279594995 -63.1576272947341977 22.3042942382252001 -12.6475206892295997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377601048593536 2481377601048593536 1479581047 2015.5 25.2979275790044014 1.03673586109677007 -3.02863515624924018 0.713355411813405005 3.5979035244122799 1.19915955206251001 3.00035430000000014 4.16829134891148012 1.95860783807177996 -17.4481493403492003 1.82043451079240004 0.039360939999999997 0.544086300000000023 0.159329200000000004 -0.155087370000000002 -0.135162919999999992 -0.191938090000000006 -0.251546349999999974 -0.132240980000000008 -0.0251450609999999998 0.275137359999999997 114 0 113 1 -0.450102979999999986 100.880997 0 0 31 false 0.0339679120000000029 1.21455951449657995 0.247717547487057987 0.114134180000000002 13 9 1.89022660000000009 0 13 false 112 130.791318524289011 1.36551477080898009 95.7817001 20.3969200000000015 6 34.2062628027308975 9.5551373753830795 3.57988200000000001 21.5161249999999988 12 213.232612035474006 13.0908659660916999 16.2886559999999996 18.9397850000000005 1.89186009999999993 0 2.57633970000000012 1.11920550000000008 1.45713420000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.341799025302009 -63.1226438691185976 22.3119279752575004 -12.6043892194108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415602917434496 2481415602917434496 717969527 2015.5 25.0320072097178006 0.472981572934429995 -3.16656898955899013 0.416372200073705012 0.692863881751949018 0.620413328117059959 1.11677789999999999 4.44603175553784968 1.0389692593903801 -2.7328113246998198 0.729688888301190053 0.17249312 0.243453730000000007 0.0378679899999999972 0.068557190000000004 -0.317773519999999976 0.0168800500000000006 0.132101250000000003 -0.014314238 0.167097639999999992 0.221713450000000006 183 0 181 2 4.15697000000000028 265.201996 2.12137876829963012 4.91916662117086023 31 false 0.068383979999999997 1.41847727908947996 0.114846420857247 0.0423539900000000011 21 9 0.930909600000000004 0 21 false 181 221.728972191494989 1.24185176879961001 178.546997 19.8238090000000007 18 48.1938139959693004 7.98876779035929996 6.0326966999999998 21.1439100000000018 18 266.877361799434027 9.40265606904540974 28.3831880000000005 18.6961399999999998 1.42097439999999997 0 2.4477692000000002 1.32010080000000007 1.1276683999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.935986210383987 -63.3596037088962021 22.006869981377001 -12.634628529794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415705996744704 2481415705996744704 246196234 2015.5 25.0386415730679985 0.905594127883930011 -3.15106267939090001 1.20356841542601001 0.511692969903476014 1.19704843044152009 0.427462220000000004 1.87264727264941011 2.82627747628446002 2.11311589097872998 3.42688202596024993 0.507856129999999961 -0.168435140000000011 -0.480892929999999996 -0.458155839999999981 -0.628890399999999961 -0.643988200000000011 -0.768888059999999984 0.488767180000000023 0.561784199999999956 0.767821250000000011 124 0 123 1 0.677338659999999981 128.009003 0 0 31 false 0.0333656629999999968 \N \N 0.0578009229999999971 15 8 3.84658770000000017 0 15 false 124 104.542553045955998 1.12591473667653008 92.8511963 20.6401329999999987 8 60.1265348377581006 6.90892540354229023 8.70273300000000027 20.9037229999999994 10 69.8936809503113068 8.79361018427644048 7.94823500000000038 20.1508259999999986 1.24370610000000004 0 0.752897260000000013 0.263589860000000009 0.489307400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.934931046066993 -63.3427483594196019 22.0190475951342002 -12.6226652145232006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049594129152 2481416049594129152 583045284 2015.5 25.0651841129330002 0.89226239352885095 -3.14842339553610984 0.806578206670522047 0.446128730366517012 0.991624319513436991 0.449896929999999973 -0.784255983727581985 1.94740566648499991 -2.37737164101709997 1.88971287077400008 0.250195029999999985 0.352327879999999982 -0.0594637469999999974 -0.066454940000000004 -0.0240706629999999991 -0.109363329999999995 -0.274576460000000022 -0.0320976560000000022 0.0799632740000000009 0.308973039999999977 114 0 114 0 0.340243879999999999 113.415001 0 0 31 false 0.0292908379999999996 1.41795467327534008 0.258119164950162017 0.0586945099999999984 14 9 1.93660910000000008 0 14 false 114 96.3652161424643054 1.17936517148714004 81.7093964 20.7285649999999997 9 52.7385030660065013 10.4249627873489992 5.05886749999999985 21.0460680000000018 10 67.8889339592115988 12.390523635129 5.479101 20.182423 1.25177359999999993 0 0.863645549999999984 0.31750297999999999 0.546142600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.986095061110007 -63.329251220955399 22.0452859175279983 -12.6299994827861006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415401054540800 2481415401054540800 87499261 2015.5 25.0862041717264006 0.0265674483187257997 -3.17259738004783998 0.0179582232960650984 2.49316707416023009 0.0310086076698825007 80.4024200000000064 -34.4437081299071011 0.0429416418175503009 -31.9373056186752997 0.037151357417522797 -0.0231126209999999999 0.624811400000000017 -0.0637906099999999976 0.0734808200000000022 -0.20009188 -0.0505060999999999982 -0.225643919999999998 0.0722206999999999988 0.154815120000000001 0.240384189999999998 161 0 161 0 -0.733054600000000001 142.776993 0 0 31 true 116.662949999999995 1.57865832288818009 0.00636035314275546979 -0.0151107380000000003 19 10 0.0481194630000000012 0 19 false 159 92554.185790953401 33.1270609806769016 2793.90991 13.2723750000000003 17 45819.6086158816033 75.0151229140730038 610.804930000000013 13.69876 16 66597.7183604357997 77.6873238099640986 857.253360000000043 12.7032720000000001 1.21461090000000005 0 0.995488170000000006 0.426384929999999995 0.56910324000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.051152541469008 -63.3423859252989985 22.0561277670464015 -12.6602148544345994 100001 5240.5 5138.5498 5554.7998 0.157000005 0.0165999997 0.314099997 0.0935000032 0.0122999996 0.149800003 200111 0.956229800000000019 0.851080999999999976 0.994549930000000026 0.621312599999999993 0.602709350000000033 0.639915899999999982 +1635721458409799680 Gaia DR2 2481368843609052288 2481368843609052288 1381886411 2015.5 25.0946567538200007 0.0557570789909000997 -3.17371587010359013 0.0327700477668593018 2.09825232918730009 0.0648327949960338934 32.364060000000002 9.33601011468469011 0.0856001779242603067 -17.884947457834901 0.0617909178808504003 -0.198295730000000003 0.666212800000000049 -0.0803543300000000016 0.115592180000000003 -0.377334180000000019 -0.0283414389999999995 -0.104642379999999993 0.0993565200000000037 0.183070750000000004 0.201270279999999996 158 0 158 0 -1.75721539999999998 123.694 0 0 31 true 14.9808339999999998 1.48777831780959002 0.0119689566867275006 -0.0660314699999999949 18 9 0.0817516600000000038 0 18 false 157 12334.8718002477999 6.01001278363994018 2052.38989 15.4605289999999993 14 4855.6917726490301 17.5374196791503003 276.876070000000027 16.1357609999999987 14 10891.3578614847993 24.0532214489624998 452.802459999999996 14.6692149999999994 1.2766286 1 1.46654599999999991 0.675231930000000036 0.79131410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.069268649684005 -63.3398543084883983 22.0637433005794001 -12.6643704110376998 100002 4399 4298.22021 4556.16992 0.00800000038 0.00200000009 0.256099999 0.00300000003 0.000699999975 0.156299993 200111 0.662882569999999949 0.617936900000000011 0.694331999999999949 0.148246240000000001 0.138501399999999997 0.157991080000000006 +1635721458409799680 Gaia DR2 2481368877968810496 2481368877968810496 180758900 2015.5 25.1095477732065007 0.727004005151795973 -3.16368546787703009 0.670427114243966948 -0.304712822739643008 0.85234333499163395 -0.357500099999999987 4.39768314211524025 1.48487549726038992 -2.18832104704274011 1.63193631030672992 0.265422429999999987 0.454048500000000022 0.0208581670000000004 -0.073392384000000005 -0.0555564569999999966 -0.116639499999999993 -0.247053429999999991 -0.0888753500000000057 0.0251448620000000005 0.410648879999999994 139 0 139 0 0.264618999999999993 137.699005 0 0 31 false 0.0386078399999999974 1.65987250475206993 0.215344492694836992 0.0583758299999999966 16 9 1.63739509999999999 0 16 true 138 115.762351939069006 1.13864936160149011 101.666 20.5294479999999986 10 40.199719817771097 6.33510607029063966 6.34554799999999997 21.3408300000000004 11 124.259183898257007 10.8649609824205999 11.4366889999999994 19.5260980000000011 1.42065970000000008 0 1.8147316 0.811382300000000001 1.0033493 \N \N 0 \N \N \N NOT_AVAILABLE 151.089927891054998 -63.3245017909146029 22.0817010443707993 -12.6605377788366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415469773446528 2481415469773446528 1134835520 2015.5 25.0702422324118999 4.99313047935337995 -3.16294651025958018 3.86952544729422021 \N \N \N \N \N \N \N -0.413524239999999987 \N \N \N \N \N \N \N \N \N 72 0 71 1 39.1233670000000018 2300.97998 18.4484686383174008 129.083854376263986 3 false 0.0026423442000000001 \N \N -0.108085410000000007 11 7 8.79070800000000041 0 12 true 94 215.489428174209991 2.92428965753172987 73.6894989 19.8548009999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.009882810828998 -63.3403175699345979 22.0446000885457991 -12.6453611251181002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435604864 2481415843435604864 1219788903 2015.5 25.0821266074089984 0.552288342766447005 -3.16230815565970014 0.424828993140230982 1.80084810023985997 0.658086272148458051 2.73649239999999994 5.49154976708408959 1.03397759012379997 -14.4163033376075997 0.707786678012323978 0.142830399999999996 0.482328409999999985 0.0903207300000000018 0.166563729999999993 -0.146255820000000009 0.10948186 0.347481399999999996 -0.0348767680000000024 0.132358239999999988 0.180306419999999995 165 0 164 1 5.50841669999999972 277.877991 2.02738422827713993 3.59479150237664014 31 false 0.0704140600000000005 1.65133258894013002 0.129045121741135999 0.0220110700000000006 19 10 0.924947439999999954 0 19 false 164 216.455646613878002 1.33603655419592005 162.013 19.8499429999999997 10 67.5455993091429008 7.01947524353685015 9.62260000000000026 20.7773949999999985 14 289.52005808304699 9.8320217251763804 29.4466460000000012 18.607723 1.64960189999999995 0 2.16967199999999982 0.927452100000000002 1.24221990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.033288023251998 -63.3347579697341985 22.0561435989794994 -12.6491494276856997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415847731139328 2481415847731139328 1499925447 2015.5 25.0814760134772001 0.0499330115162879978 -3.15239545514247022 0.0354175873709181022 7.0101717958116696 0.0589837144110567993 118.849270000000004 -26.0645382280596998 0.0920786611628567064 -24.9731944538603017 0.069634179658035103 -0.0228399520000000002 0.510973600000000028 -0.0363535430000000021 0.0672351100000000007 -0.275618260000000004 -0.0243254939999999996 -0.060487326000000001 0.0555682099999999998 0.154475019999999991 0.218600349999999999 169 0 168 1 10.9746570000000006 450.979004 0.278872919845851996 12.7750183584713 31 true 10.3600290000000008 1.3774301027573701 0.0123078204793191006 -0.00945305700000000082 20 10 0.0892105400000000048 0 20 false 167 46834.7711666382966 22.9831132627524006 2037.79004 14.0119450000000008 19 13823.2592726956009 50.5571174162642976 273.41867000000002 14.9998620000000003 17 49196.0804418490006 75.3847449674666024 652.600000000000023 13.0320940000000007 1.34556729999999991 1 1.96776770000000001 0.987916950000000016 0.979850769999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.022703661950004 -63.3260336294847974 22.0592758516730996 -12.6396972994371009 100002 3930.78003 3788.31006 4206.25977 0.339300007 0.169599995 0.825299978 0.173700005 0.0920000002 0.358999997 200111 0.552733200000000036 0.482703749999999987 0.595087469999999952 0.0657113899999999945 0.0645222960000000068 0.0669004799999999983 +1635721458409799680 Gaia DR2 2481415843435697664 2481415843435697664 375122296 2015.5 25.0916919168124011 4.0442346059623997 -3.15282579755132009 7.90466687507665977 \N \N \N \N \N \N \N 0.0592360649999999975 \N \N \N \N \N \N \N \N \N 42 0 40 2 0.747295599999999949 40.8880997 0 0 3 false 0.0123761459999999993 \N \N 0.185515819999999998 5 4 2271.82470000000012 0 5 false 42 74.4978914606557936 1.97922548620229999 37.6399002 21.0080050000000007 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.043727566624 -63.3221415692077017 22.0688283067144013 -12.6438632851318999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416053889569280 2481416053889569280 429281415 2015.5 25.0744685327509984 0.106599941628802 -3.14855319537995015 0.077119951274670695 0.338160669154252025 0.128075040398102996 2.64033220000000002 5.53822435621161979 0.197649974677987006 -6.34721357121224017 0.140363042929255 0.0333027020000000035 0.502375499999999975 0.00324865920000000016 0.0966100839999999988 -0.236337560000000002 0.0309278459999999984 0.120381829999999995 0.0226797499999999985 0.134547300000000009 0.19468321999999999 175 0 174 1 2.26128319999999983 213.296005 0 0 31 true 1.87084570000000006 1.59194346800237008 0.0247951574759604013 -0.004952054 20 10 0.179505770000000009 0 20 false 174 1967.76837003672995 2.58789106690826998 760.375 17.4534300000000009 18 955.007003638776041 12.9566694390498007 73.7077560000000034 17.901371000000001 18 1492.1433688290499 9.51995669183341064 156.738460000000003 16.8273940000000017 1.24361699999999997 0 1.07397649999999989 0.447940830000000012 0.626035699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.004964668566998 -63.3254817058907022 22.0540658037168988 -12.6335431186071006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368873673377152 2481368873673377152 437970238 2015.5 25.1122723528789003 0.594175511564063008 -3.15625282840544008 0.502368221431154005 1.87426604377665007 0.707961684459093021 2.64741159999999986 0.410811597301734999 1.19731903652603 -7.3362830041196796 1.0965625683668101 0.152231349999999988 0.437716959999999988 0.0886793300000000007 0.002674816 -0.158347309999999991 -0.0297116709999999985 -0.0244859550000000002 -0.0755315349999999969 0.0749148060000000005 0.289980599999999977 147 0 145 2 1.98210170000000008 175.080002 1.05561066422324989 0.593708958412235033 31 false 0.056617569999999999 1.34990815568212996 0.163626425938948994 0.0376420299999999999 17 10 1.1487061999999999 0 17 false 144 156.020288964615986 1.33997801657934001 116.434998 20.2054140000000011 11 43.6524250713839024 7.64760649744657961 5.7079854000000001 21.2513679999999994 15 199.131303985970987 8.98555269384480937 22.1612760000000009 19.0140700000000002 1.55610359999999992 0 2.23729699999999987 1.04595379999999993 1.19134329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.088461899138991 -63.3166143551559983 22.0871044379260013 -12.6546343787727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127616 2481416564990127616 105494749 2015.5 25.0195268478733013 0.326667301032544988 -3.12777018318065991 0.169140568076474013 -0.377674373179511025 0.414534318100866994 -0.911081099999999977 8.32159054616871074 0.410437285817622011 1.06344357971765002 0.297590551531453973 -0.151141300000000006 0.784757299999999991 0.0773257799999999967 0.115420744000000006 -0.325067879999999976 -0.000249612670000000001 0.0884249299999999988 0.0571361599999999983 0.133283420000000014 0.221747100000000003 158 0 154 4 0.908373650000000032 164.524002 0.358460558650005978 0.518473346300713955 31 false 0.439388200000000007 1.64009996149367998 0.0556144632398843999 -0.00591391900000000012 18 9 0.424512119999999993 0 18 false 155 643.930853009023053 1.9784953525715101 325.464996 18.6662670000000013 16 322.913324642414011 17.1414623504795998 18.8381420000000013 19.078672000000001 13 520.704981109108985 11.9179344756161996 43.6908760000000029 17.97044 1.31010699999999991 0 1.10823249999999995 0.412405000000000022 0.695827500000000043 \N \N 0 \N \N \N NOT_AVAILABLE 150.874595096662006 -63.3295686786713006 22.0096878588466005 -12.5939704974333004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127872 2481416564990127872 1347885605 2015.5 25.021525607553599 0.167689307273025001 -3.12743990172130015 0.121771149987360994 -0.311676082145601996 0.20419914772216799 -1.52633390000000002 12.6208527727670994 0.309986702726846974 -9.01008168145651034 0.230539687618361994 0.0926255899999999938 0.52979946 0.0480862899999999968 0.0460023499999999974 -0.110764324999999997 -0.0288962549999999992 0.144133630000000013 -0.0355211200000000032 0.11945016 0.141261200000000003 158 0 157 1 -0.300501399999999974 146.169998 0 0 31 false 0.812074100000000021 1.73467735525150002 0.0391712191596432988 0.0141315420000000004 18 10 0.27684048 0 18 false 155 964.312234856554028 1.80274677528167993 534.913025 18.2278209999999987 14 538.031633890422995 15.8520554448426996 33.940809999999999 18.5243679999999991 13 646.655387647331054 11.4601256181684992 56.4265499999999989 17.7352370000000015 1.22853049999999997 0 0.789131160000000054 0.296546939999999981 0.492584230000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.878327602447001 -63.3284349783968992 22.0117132500078014 -12.5944006797732992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2481422788398330368 2481422788398330368 1527798669 2015.5 25.188341443174 2.36377104514009995 -3.05182452220285017 1.52084668298801007 \N \N \N \N \N \N \N -0.0162501780000000005 \N \N \N \N \N \N \N \N \N 121 0 120 1 47.5043500000000023 3380.72998 12.5491434554246997 225.813147168776993 3 false 0.00571748940000000021 \N \N -0.0219023149999999986 15 10 3.77453230000000017 0 15 false 131 272.888193632644004 3.83572349797730006 71.143898 19.5984039999999986 13 299.000752581640995 13.5935110129291008 21.9958440000000017 19.1622069999999987 13 723.755096982206965 9.9376524985291006 72.8295800000000071 17.6129420000000003 3.74789329999999987 0 1.54926490000000006 -0.436197280000000021 1.98546219999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.143874702298007 -63.1899143597491033 22.1989360022814992 -12.5856016762128995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368804953869568 2481368804953869568 1165661084 2015.5 25.1190678412447994 0.977576538507428983 -3.17542562143112983 0.99870431593561404 0.0265694244465927987 1.24888412691732009 0.0212745309999999993 -2.17469296992601002 2.28100929382924988 -5.59527399278360971 2.9022835107104501 0.310471400000000008 0.356779720000000022 0.153419389999999989 0.0083809920000000003 0.0323116000000000028 0.068409600000000001 0.0633261299999999944 -0.36420756999999998 -0.273621679999999978 0.506221200000000038 82 0 81 1 -0.920793239999999957 64.6035004 0 1.15265252369143008e-15 31 false 0.0322421570000000005 1.77440474061289 0.347101032727142988 0.0311320679999999989 10 8 2.86115960000000014 0 11 false 85 103.149814137825004 1.43172808896158998 72.0457001 20.6546960000000013 8 47.9498290425421985 7.34060342986135961 6.53213739999999987 21.1494199999999992 10 123.771398458156 18.3795411995082993 6.73419430000000041 19.5303690000000003 1.66477499999999989 0 1.61905100000000002 0.494724270000000022 1.1243266999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.120143873585988 -63.3311513935580024 22.0863134428158006 -12.6749577203916992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368877968810240 2481368877968810240 569701847 2015.5 25.1156031157000008 0.062228792797489399 -3.1639376571704001 0.0422148149425118982 0.510957255537130006 0.0715164145142363067 7.14461499999999994 -0.20164107486024499 0.116916129979568004 -3.74053132215369022 0.082589108041802306 0.0742454449999999933 0.499280500000000016 -0.164204089999999997 0.0695725400000000022 -0.123560840000000005 -0.0171162059999999984 -0.0778551900000000047 0.0931725399999999981 0.159916730000000007 0.180346859999999998 147 0 146 1 -1.78540600000000005 112.517998 0 0 31 true 7.66739269999999973 1.60066597339381 0.0144200443306884002 0.00797457900000000074 17 10 0.110241729999999996 0 18 false 144 6690.06603337280012 5.08314233003151017 1316.13 16.1247900000000008 17 3672.16305604484978 23.248601903147101 157.951999999999998 16.4390830000000001 16 4390.25276285913969 13.8913759148253 316.041600000000017 15.6556960000000007 1.20513249999999994 0 0.78338719999999995 0.314292899999999986 0.469094279999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.102381450990009 -63.322186877948198 22.0873647464845 -12.6630041072248005 100001 6152.81982 5866.75 6710.45996 0.0680000037 0.0175999999 0.168400005 0.0430000015 0.00789999962 0.0922999978 200111 0.878366769999999963 0.738447799999999988 0.966115830000000009 0.996192929999999977 0.702378300000000011 1.29000760000000003 +1635721458409799680 Gaia DR2 2481368912328548480 2481368912328548480 1336477519 2015.5 25.1368350497974014 0.0404551254964614013 -3.15951948709310004 0.0290231740582880988 3.83661256536024009 0.0475222827464603023 80.7329199999999929 7.14197116248941999 0.0667809899491011993 -4.0907112209575196 0.0610674975520201987 0.128486479999999986 0.62009000000000003 -0.0476771969999999976 0.00957889900000000009 -0.0730159060000000054 -0.109056899999999998 -0.276945200000000002 0.0652032000000000028 0.135667160000000009 0.279232599999999997 158 158 158 0 4.84873439999999967 253.522003 0 0 31 true 384.687099999999987 1.58774399621110995 0.0102173420159867995 0.0525442100000000009 18 10 0.0447368250000000009 0 18 false 156 310044.78867571702 125.052117286026998 2479.32007 11.9598049999999994 17 162170.455582207011 310.621799729016004 522.083300000000008 12.3264589999999998 16 211704.188373031997 231.791740675198014 913.337949999999978 11.447597 1.20587299999999997 1 0.878862400000000044 0.366654399999999991 0.512207999999999997 8.12497739607190006 1.37633377615178998 6 5500 4.5 0 NOT_AVAILABLE 151.141057378842987 -63.3092530304277972 22.1092301273307008 -12.6667230985288004 100002 5486.1001 5416.2998 5596 0.152999997 0.067900002 0.217600003 0.075000003 0.0285 0.104199998 200111 1.02162839999999999 0.981894849999999986 1.04813050000000008 0.851795799999999992 0.837098899999999979 0.866492700000000005 +1635721458409799680 Gaia DR2 2481368908034516480 2481368908034516480 441491997 2015.5 25.1350461133970988 0.633581807360337979 -3.15890867531462005 0.554540810124597994 -0.697845683761128988 0.777853882362775972 -0.897142400000000007 24.007480441110701 1.20589821146424003 -13.9864142340495992 1.08585571416372995 0.366903069999999998 0.481959099999999974 -0.0157487410000000001 -0.0556080830000000026 0.00497107599999999962 -0.163777100000000009 -0.217320619999999992 -0.017231139999999999 0.18344916 0.337599780000000016 100 0 100 0 2.07267879999999982 125.723999 0.723205656034787037 0.295686167982413983 31 false 0.0812328199999999973 1.38132591320852005 0.177878485728798996 0.142120820000000009 13 9 1.17858759999999996 0 13 false 102 194.13740597635001 2.03763469200693992 95.2759018 19.9680919999999986 8 205.514456494489991 39.417818344150497 5.2137450000000003 19.5692829999999987 8 287.817458393026016 32.4908176319165989 8.85842399999999941 18.6141259999999988 2.54114819999999986 0 0.955156299999999958 -0.39880943000000002 1.35396580000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.136877935911997 -63.3094516083861976 22.1077596891743013 -12.6654961380796998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369011112215424 2481369011112215424 272337506 2015.5 25.1352637073733014 0.17179572425662501 -3.14877594964930019 0.122780499730161002 -0.0954460778344452948 0.208348755137927999 -0.458107260000000016 -0.133048873398181 0.305318133813724024 -2.34218188577872022 0.222127704713190988 0.159011299999999994 0.552256639999999965 0.0310687179999999986 0.112847970000000006 -0.0691044600000000064 0.0189325530000000013 0.134477230000000003 -0.000115591973999999996 0.163448869999999996 0.185470539999999989 159 0 157 2 1.32751269999999999 175.606003 0.0372228429905809011 0.00960448181616303971 31 false 0.807755349999999983 1.63629993879018998 0.0405667716306076995 0.0427234199999999981 18 10 0.274477120000000019 0 18 false 157 993.982389427317003 2.03466760610919017 488.52301 18.1949199999999998 17 448.098635784164003 10.7442545272110994 41.705883 18.7229540000000014 16 779.073851116981018 8.03984954465781954 96.9015399999999971 17.5329739999999994 1.23460189999999992 0 1.18997960000000003 0.528034200000000009 0.661945340000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.127816183526988 -63.3001700783649 22.1117996872687002 -12.6561590170174991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368942392735104 2481368942392735104 458830203 2015.5 25.1449374707095998 0.221460409148406007 -3.1580232787573701 0.176173879502573988 2.85363963734203008 0.298330803171634018 9.56535299999999999 -17.7680995647328999 0.401040203733075973 -20.4343521191296986 0.302964634628293983 0.165377049999999998 0.511398429999999959 0.0513850260000000003 0.131218539999999995 -0.216299429999999987 -0.047570556 0.0475507750000000035 0.0840682900000000038 0.269090920000000011 0.255221750000000025 148 0 147 1 0.472265299999999999 149.417999 0.264113770747223975 0.279703901426699986 31 false 0.483021299999999987 1.21410710629724994 0.0534237799086674028 0.0974624999999999936 17 9 0.368779630000000025 0 17 false 147 675.320177128695946 1.72949166425499001 390.472992 18.6145919999999983 13 115.548923887791005 5.44509724018830976 21.2207280000000011 20.1944729999999986 13 916.647618880872983 7.29023542662642043 125.736350000000002 17.3564149999999984 1.5284549999999999 0 2.83805849999999982 1.57988170000000006 1.25817679999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.155985851575991 -63.3044867466746979 22.1175026429309014 -12.6683184032420009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373787115838464 2481373787115838464 1525843759 2015.5 25.2006870033297012 0.219383913484461013 -3.17173601381924009 0.159741592356472006 1.44669984891604009 0.263416896305763981 5.49205400000000044 2.26464926596267979 0.419023326382671979 2.00256200615354008 0.287533555179717015 0.155391599999999991 0.48688140000000002 -0.0550003540000000013 0.114992960000000005 -0.100677446000000004 0.0359273930000000019 0.162465209999999999 0.0281530400000000007 0.148876439999999999 0.180182189999999992 157 0 154 3 2.57497119999999979 197.212997 0.318184679392938985 0.413060908074093014 31 false 0.47682819999999998 1.3914435988787599 0.0555320548289948007 0.0569270850000000023 18 10 0.373905150000000019 0 18 false 150 724.44426244239196 2.16180309857104014 335.110992 18.5383530000000007 14 199.122578318089012 7.38619424894164034 26.9587520000000005 19.603586 16 826.268558623929039 12.3155996625342006 67.091220000000007 17.4691159999999996 1.41541760000000005 0 2.13446999999999987 1.06523319999999999 1.0692368000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.281164427301007 -63.2934037472129987 22.1653464051577984 -12.7016039392229008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373924554799872 2481373924554799872 594101444 2015.5 25.2046824796705984 0.177267752264453987 -3.15413953016087989 0.125378664319127003 5.0917536315640497 0.217714665347038011 23.3872800000000005 73.0986005019929053 0.31538478208139098 -34.0153749784752009 0.225432188345176004 0.102276590000000001 0.544054150000000014 0.0219881069999999998 0.117083080000000006 -0.155617699999999998 0.021975886 0.111148040000000004 0.0234096869999999985 0.169360530000000009 0.199430049999999998 157 0 154 3 6.09460639999999998 279.898987 0.743145584755832034 6.57585454666574964 31 false 0.780693230000000016 1.25777634271912997 0.0425747147504257004 0.0574123399999999992 18 10 0.283775119999999992 0 18 false 153 1525.88059724179993 2.51693640818445008 606.244995 17.7295650000000009 16 224.148117888579009 11.0182295735103999 20.3433880000000009 19.4750499999999995 14 2161.58394502394003 12.7231139441788006 169.894260000000003 16.4249900000000011 1.5635116 0 3.05006030000000017 1.74548529999999991 1.30457500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.272640176927013 -63.2757723533082981 22.1758017911717005 -12.6867205574778001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835320448 2481373855835320448 1594648232 2015.5 25.2266561982422992 0.0544494357109435029 -3.16070143590127994 0.0437447230980239979 0.504765393913645055 0.0681099051067568934 7.41104200000000013 0.812967079309324991 0.101653240792728 2.22420565434011985 0.0925177591382931042 0.121318469999999998 0.526513200000000015 -0.00967021300000000042 0.0291300380000000005 -0.228151660000000006 -0.00648175100000000001 -0.069024550000000004 -0.0152233160000000006 0.0643835140000000028 0.368457880000000015 139 0 138 1 -1.44568809999999992 110.197998 0 0 31 false 9.54473800000000061 1.64438254107193993 0.0148638469017146006 0.118234019999999995 16 10 0.105788924000000006 0 16 false 138 7960.51520261220958 6.0221915880299699 1321.85999 15.9360130000000009 14 4272.21610188690011 13.4519624382195992 317.590550000000007 16.274754999999999 16 5369.17894166002043 11.9312205348071991 450.01085999999998 15.4371500000000008 1.2111521999999999 0 0.837605500000000003 0.338742260000000017 0.498863219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.323015077151013 -63.2724255943049982 22.1942244372371995 -12.7009132386121006 100001 5789.5 5586.4502 5839.75 0.183200002 0.0599999987 0.354999989 0.0737999976 0.0286999997 0.164800003 200111 1.10368479999999991 1.08477249999999992 1.1853726 1.23296019999999995 0.880782700000000029 1.58513769999999998 +1635721458409799680 Gaia DR2 2481373684036627840 2481373684036627840 1415869562 2015.5 25.2450846864165008 0.40671561834334502 -3.1619758784164298 0.336883006309911026 0.473705826993260026 0.506055046940510955 0.936075699999999955 12.5242288507352999 0.806331544559301006 1.56579289916483 0.611521102601434996 0.201595780000000002 0.44232096999999998 0.0782338399999999989 0.106884725 -0.133379560000000008 0.0708320399999999989 0.259384449999999989 -0.0854778000000000066 0.0871233639999999948 0.22265045 138 0 136 2 -0.454155150000000007 123.144997 0 0 31 false 0.139824570000000009 1.34541915851065008 0.110253060219204002 0.102159254000000005 16 10 0.731036660000000005 0 16 false 136 269.154326007819975 1.37928990053542 195.139999 19.6133629999999997 12 70.6000701764705951 8.20989409632760037 8.59938900000000039 20.7293759999999985 13 314.077141589743007 19.3394761481711015 16.2402100000000011 18.5193300000000001 1.4292068 0 2.2100468000000002 1.11601259999999991 1.09403420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.361263853205998 -63.2657764078034006 22.2112748860993001 -12.7088847170532002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835322624 2481373855835322624 1493632946 2015.5 25.2247452331255992 0.240420634383398002 -3.15499439173339002 0.187977411073418005 4.88488414209192001 0.298692944391795001 16.3541999999999987 -16.7873245418619987 0.449834138452797017 -94.0679373527991061 0.33646275761685901 0.106342679999999995 0.481413800000000003 0.0136295229999999993 0.130754829999999989 -0.21620840999999999 0.139049740000000005 0.22208718999999999 -0.0476830270000000028 0.054077743999999997 0.253596780000000022 140 0 137 3 3.35813380000000006 193.565002 0.829411651889202961 3.53311315587392993 31 false 0.423710260000000005 1.14513976691183994 0.0629656757340931045 0.0797678160000000053 16 10 0.411056939999999982 0 16 false 138 795.104044022595986 2.02286980698319008 393.057007 18.4373049999999985 13 116.247978124672997 9.40871501051534054 12.3553510000000006 20.1879249999999999 14 1112.50430425939999 8.74035162810777955 127.283699999999996 17.1461660000000009 1.54539810000000011 0 3.04175949999999995 1.75061990000000001 1.29113959999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.313795771635 -63.2680648539864023 22.1945643662039984 -12.6949048203033996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373890195062144 2481373890195062144 23463638 2015.5 25.2322543214203989 0.288482877228459 -3.15208624901486978 0.240523192311448003 0.293609831651192976 0.359186991948658996 0.817428900000000014 9.7910404754422995 0.572831280545913035 -4.13269746526519999 0.440196403390988977 0.133637189999999989 0.452312649999999983 0.116176639999999998 0.0641888199999999937 -0.130203079999999999 -0.00503665950000000036 0.296764199999999978 -0.0897934499999999969 0.114562730000000002 0.124317949999999997 138 0 137 1 1.0947171 149.871002 0.292442138470858981 0.185981280919807007 31 false 0.274855499999999975 1.58745528065864994 0.0791253833624609021 0.0781846340000000029 16 10 0.510235899999999964 0 16 false 135 452.293380865910024 1.58795529949017999 284.828003 19.0498140000000014 14 258.696250565623018 9.69459065054637037 26.6845970000000001 19.3194119999999998 12 312.271428578036989 15.0327294177631003 20.7727700000000013 18.5255890000000001 1.2623835000000001 0 0.793823240000000041 0.269598000000000004 0.524225229999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.32615237599299 -63.2622533869894994 22.2028075939382994 -12.6949672842797998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374061995449856 2481374061995449856 1673449216 2015.5 25.2496945283686998 0.908332307226097035 -3.15576665015534985 0.74285603370715203 0.145083664142963004 1.19414140587249995 0.121496215000000005 -2.05661509272260012 1.54524587537452995 -14.6639140009060007 1.97633913496202007 0.126763920000000002 0.660018899999999964 0.160665140000000012 -0.156883020000000012 -0.190564779999999989 -0.185889040000000005 -0.2467694 -0.153661700000000012 -0.062066004000000001 0.520660939999999961 115 0 114 1 -0.789367799999999953 97.1369019 0 0 31 false 0.0549588650000000026 1.66332839828275003 0.217930714791468 0.129300190000000009 14 9 1.95471290000000009 0 14 false 110 123.53422749376 1.14658913683123997 107.740997 20.4588970000000003 7 187.286419126717988 53.8854088608686013 3.47564239999999991 19.6701219999999992 11 174.773001859706 11.1631701074039995 15.6562160000000006 19.155735 2.93084290000000003 0 0.514387130000000026 -0.788774500000000045 1.30316159999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.364670784417001 -63.2582007164404985 22.2180081902839994 -12.7048107960738008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371076992090496 2481371076992090496 587637094 2015.5 25.2927949237093017 0.0600520886954652028 -3.15915569666125995 0.0364748829953022019 0.930781776008602013 0.0751144887579523052 12.391508 17.821746540686501 0.0871300643828725047 -5.52096442370685025 0.0727355364621150025 -0.118940939999999995 0.715560439999999964 0.0941749499999999934 0.0732453500000000007 -0.352982159999999989 0.00389988490000000004 -0.0643590899999999938 -0.00397120399999999988 0.0749443500000000068 0.337525870000000006 123 0 122 1 1.87130079999999999 147.244995 0.129932202499279004 1.82713422496897993 31 false 17.3486559999999983 1.58806567270197996 0.0132106665133584003 0.0356094730000000026 14 9 0.0876164999999999999 0 14 false 117 20123.447195274799 10.1876049674411 1975.29004 14.9291099999999997 10 10032.6893630795003 32.8424829205657005 305.478999999999985 15.3478449999999995 12 14537.8386641978996 39.8648523830425034 364.678099999999972 14.3556699999999999 1.22099010000000008 0 0.992175099999999976 0.418735499999999983 0.573439600000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.454420147479993 -63.2429783570421975 22.2577348183764983 -12.7238301710601007 100001 5336.5 5289 5348 \N \N \N \N \N \N 200111 1.14386739999999998 1.13895330000000006 1.16450560000000003 0.956031399999999976 0.794147599999999954 1.11791520000000011 +1635721458409799680 Gaia DR2 2481374061993751808 2481374061993751808 927357712 2015.5 25.2609162688791002 0.556403264858380986 -3.15855363433038994 0.321914071919081002 -0.224552315183663004 0.737225142411511047 -0.304591239999999985 2.09216190169710003 0.701024674532242043 -4.95164003305186018 0.530109039268059967 -0.200928749999999989 0.782764899999999986 0.140345830000000005 0.0902597460000000018 -0.408822100000000022 0.0359315239999999994 0.225434600000000013 0.0340535270000000001 0.0694662499999999933 0.229714589999999996 139 0 138 1 1.00937769999999993 149.429001 0 0 31 false 0.161612420000000007 1.72827211976567008 0.104132199539714004 0.056191480000000002 16 9 0.739221000000000017 0 16 false 136 325.876908779030998 1.35496424123556003 240.505997 19.4057309999999994 14 180.943623554353991 5.62164057791570038 32.1869769999999988 19.7075299999999984 15 205.160047554041 13.1145840327217993 15.6436569999999993 18.9816879999999983 1.1848145000000001 0 0.725841500000000028 0.301797870000000024 0.424043659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.389844729276007 -63.2559669349726974 22.2276310275188003 -12.7115335164470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374341167210240 2481374341167210240 251235688 2015.5 25.2404510029492002 0.106889660935559003 -3.13334501500765006 0.0657156473718718964 1.75483456408776006 0.13999258641908699 12.5351959999999991 29.3945572405350006 0.146671773285578011 -19.8295597913236001 0.114147431947891995 -0.173373980000000011 0.74062490000000003 0.00815563650000000057 0.119500875000000006 -0.422125899999999998 0.0850516800000000045 0.100342829999999994 0.0192927999999999988 0.0844505400000000045 0.307679800000000003 140 0 139 1 15.4914050000000003 579.466003 0.450731622510007979 24.1644083354671011 31 true 4.18790700000000005 1.48953045313862997 0.0218697034165336 0.0597989300000000001 16 9 0.141957670000000008 0 16 false 139 26188.3363113496998 10.9731278733988997 2386.59009 14.6430959999999999 13 11590.0297143763 10.5872002816559991 1094.721 15.1911760000000005 14 21206.9357065719996 54.877901805646097 386.438539999999989 13.9457249999999995 1.25235009999999991 0 1.24545100000000009 0.548080440000000002 0.697370500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.324973334334004 -63.2418099058587018 22.2176904844233007 -12.6805658107453993 100001 4965.33008 4795.22021 5202 0.647000015 0.597500026 0.690999985 0.316000015 0.282000005 0.338999987 200111 0.826073170000000023 0.752618129999999996 0.88572379999999995 0.373702020000000024 0.313162180000000012 0.43424185999999998 +1635721458409799680 Gaia DR2 2481374371231411200 2481374371231411200 431457402 2015.5 25.2392550928874009 0.872877673110550978 -3.12889776907781991 0.480735398186254992 0.91794073172002999 1.11648689446113991 0.822168800000000033 6.21570720506614993 1.09667215413133001 -7.72892939783464961 0.83459701825376098 -0.129647970000000001 0.786375159999999962 0.164389769999999991 0.0765791599999999933 -0.320134220000000025 0.026105426000000001 0.222350280000000011 0.0238898269999999989 0.0638563260000000049 0.225790560000000001 131 0 131 0 2.60192729999999983 171.162994 0.968094167215451051 0.620043356859105055 31 false 0.0707738100000000064 1.49449261555449997 0.157577390223396008 0.0814363200000000065 15 9 1.14122150000000011 0 15 false 129 197.647459960443001 1.56230476565459009 126.510002 19.9486370000000015 12 102.618143394672003 10.9344346152177998 9.38485999999999976 20.3233280000000001 13 146.925130617223999 6.42453104187412016 22.8693939999999998 19.3441800000000015 1.26256750000000006 0 0.97914886000000001 0.374690999999999996 0.604457860000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.318385269371987 -63.2382878329346028 22.2182338965527997 -12.6759916596839997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375337599679232 2481375337599679232 543714196 2015.5 25.2448502824051992 1.22253075455739002 -3.09289525955083011 1.06337623687842009 -4.55799164973127979 1.93577120414794002 -2.35461279999999995 1.22187678044503989 2.99846340878251016 -1.42951836239989993 3.79789638548222985 -0.0122084989999999994 0.54203290000000004 -0.0568389970000000022 -0.168536899999999989 -0.430695859999999986 0.301839440000000014 0.297058219999999984 -0.522738200000000042 -0.553194170000000041 0.716393649999999993 99 0 96 3 0.090648560000000003 91.5574036 0 0 31 false 0.0242524330000000003 \N \N 0.199996489999999999 12 8 4.05473100000000031 0 13 false 99 103.931853071429003 1.31314571292375004 79.1472015 20.6464940000000006 6 78.6074637728088987 11.7978087097552997 6.66288660000000021 20.6127280000000006 8 80.7438197699428031 12.8433077720107001 6.28683999999999976 19.9941460000000006 1.53322850000000011 0 0.618581799999999959 -0.0337657930000000023 0.652347560000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.295770553305999 -63.2033081800949006 22.2371636546189997 -12.6445866960131994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374474312327808 2481374474312327808 693844385 2015.5 25.2607135649913985 1.95092394053318996 -3.11997352002057005 1.14356063645301997 \N \N \N \N \N \N \N -0.287054900000000002 \N \N \N \N \N \N \N \N \N 68 0 68 0 -0.884474639999999979 52.987999 0 0 3 false 0.0226471570000000011 \N \N -0.0794781499999999974 8 6 2.7244117000000001 0 8 false 68 93.0169240347270971 1.53080136834258007 60.7635002 20.766960000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.353068184009999 -63.221120918005802 22.2420210884709988 -12.6755975910611003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374508670374400 2481374508670374400 127122067 2015.5 25.2613947513703998 0.376794347788097006 -3.10794345773062997 0.258447072467705985 0.669697661985471981 0.471604449339510012 1.42004100000000011 2.53057171027985994 0.631089743060369024 -7.97235118060677994 0.436448448926879007 -0.0462114799999999992 0.610764199999999979 0.142829719999999993 0.0739922499999999955 -0.258887980000000018 0.00762708799999999975 0.330318999999999974 -0.0251808989999999996 0.0936773899999999993 0.103267275000000006 142 0 142 0 3.15804339999999995 195.360001 0.799442638683992013 1.43904845341582011 31 false 0.221365509999999988 1.48822539963850997 0.0819920483423643015 0.0843011300000000019 16 10 0.561631400000000003 0 16 false 139 447.812970948781015 1.53197961161351004 292.309998 19.0606229999999996 12 139.397409526605998 13.7974773787514007 10.1031080000000006 19.9907509999999995 15 475.995930446896978 12.3414115626211007 38.5690039999999996 18.0679109999999987 1.37421949999999993 0 1.92284009999999994 0.930128100000000013 0.992712000000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.343112137895986 -63.2099380773472035 22.2472155262117006 -12.6646659422048007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376810774528512 2481376810774528512 797910361 2015.5 25.2547732266000011 1.09530271665420997 -3.08550165245075991 0.770128226840154029 0.335465841006965027 1.29707760113431991 0.258632059999999997 0.584917080470570006 1.9163735173632801 1.54338131292338998 1.93364038675417005 0.105307474999999998 0.627945540000000024 -0.038942240000000003 -0.135322899999999996 -0.120221120000000001 -0.159058719999999987 -0.261243700000000023 -0.0574104530000000002 -0.0360623899999999997 0.354256420000000016 114 0 114 0 -0.251628760000000007 104.677002 0 9.6248052937908809e-16 31 false 0.0299697480000000009 1.85860074196442993 0.269823939726965001 0.123616790000000004 13 9 1.98065050000000009 0 13 false 114 122.465313686388996 1.06677614616259997 114.799004 20.4683320000000002 6 29.8719678330814986 10.1519065924742993 2.94249820000000017 21.6632290000000012 10 155.660976837242004 9.85500627724871947 15.7951169999999994 19.2814709999999998 1.51498369999999993 0 2.38175770000000009 1.19489669999999992 1.18686099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.308732721952993 -63.1924140163410968 22.2493967919760998 -12.6413674093975992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376746348895360 2481376746348895360 554799086 2015.5 25.2742038103061013 0.0296474369864663002 -3.0842899182300898 0.0221395952911240014 1.89763769636146007 0.0356218681984835014 53.2717060000000018 7.70999857035663982 0.0547103717090186986 -3.47586511598791015 0.0468864916793274022 0.0842789860000000002 0.53297720000000004 -0.151152100000000011 0.0348733069999999992 -0.215527240000000009 -0.0334443450000000003 -0.174814799999999992 0.0712356600000000062 0.107209299999999993 0.33797756000000001 139 0 139 0 -3.35924800000000001 85.6909027 0 0 31 true 67.769440000000003 1.56982017230190007 0.00767330615891682975 0.078476260000000006 16 10 0.0611529459999999997 0 16 false 137 54314.5855565187012 20.432077973704601 2658.30005 13.8510740000000006 16 26690.5591169996005 53.7348142596808032 496.708860000000016 14.2854939999999999 16 39344.3004729973982 39.1514550056819033 1004.92560000000003 13.2747150000000005 1.21578499999999989 0 1.01077839999999997 0.434419630000000001 0.576358799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.346553500831988 -63.1830926840152998 22.2683386379356989 -12.6473941148514992 100001 5314 5098.5 5676.75 0.270000011 0.126000002 0.331099987 0.127700001 0.0610000007 0.162100002 200111 0.930992069999999949 0.815810999999999953 1.01135639999999993 0.622691400000000006 0.595410100000000053 0.649972699999999959 +1635721458409799680 Gaia DR2 2481375990434372096 2481375990434372096 1167569270 2015.5 25.2811743159894995 3.40980008074367014 -3.09227487189239003 4.4730738713778404 \N \N \N \N \N \N \N -0.343183430000000012 \N \N \N \N \N \N \N \N \N 49 0 49 0 0.580025730000000017 48.9491997 0 0 3 false 0.0153530109999999997 \N \N 0.231052260000000009 6 5 14.2782970000000002 0 6 false 50 74.8173731760291929 2.34241853028728997 31.9402008 21.0033589999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.368035331281988 -63.1873703415837014 22.2719529989383993 -12.6573825857247009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376024794411904 2481376024794411904 585155202 2015.5 25.2947083803837991 0.260840379360258001 -3.08568270090643004 0.177198524908011995 1.09160971267312989 0.315598621065050988 3.45885439999999988 9.8899937102789508 0.449356556171014998 -11.8262154674096003 0.324825752689990976 -0.045554716000000002 0.568905349999999976 0.0498162600000000011 0.0774140660000000036 -0.26039487 0.0699175699999999983 0.16883585000000001 -0.0452275869999999997 0.0588400550000000022 0.176345400000000013 133 0 130 3 0.637742699999999996 134.654999 0 0 31 false 0.454074919999999993 1.42319630318190993 0.0619392758404257032 0.0779905300000000024 15 10 0.401917460000000004 0 16 false 127 702.930275097187973 2.4127992624138801 291.334015 18.5710850000000001 12 252.874885133117999 11.1721351757910003 22.6344279999999998 19.3441240000000008 12 670.095822650071 9.08103731121008018 73.7906700000000058 17.6965770000000013 1.31303309999999995 0 1.64754679999999998 0.773038859999999994 0.874507900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.388952832932006 -63.1756641906687975 22.2873191156637986 -12.6562362534313007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377016932932992 2481377016932932992 225388163 2015.5 25.2401712823758011 2.50888148056524019 -3.06887996204546987 1.26763469958505004 \N \N \N \N \N \N \N -0.384634140000000013 \N \N \N \N \N \N \N \N \N 66 0 65 1 0.982445659999999998 70.6723022 0 0 3 false 0.0170624459999999985 \N \N -0.164674039999999994 8 7 3.40901919999999992 0 8 false 70 86.4237318229991018 1.7954835574871999 48.1339989 20.8467829999999985 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.263847909947998 -63.183526728860997 22.2417874534832016 -12.6205407534248994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424055413130752 2481424055413130752 1480374714 2015.5 25.2371508078710995 0.236061629671256989 -3.03863742837476991 0.139635849711346988 0.744470410312094044 0.283338160701058994 2.62749800000000011 -3.45580214432174015 0.367834605838082973 -1.31304837416555009 0.244519479772350001 0.0505040799999999998 0.647279139999999975 0.033003277999999997 0.146875250000000013 -0.047538996 0.00680016030000000007 0.148918550000000011 0.0247669519999999983 0.212201150000000005 0.0851223299999999961 138 0 138 0 1.6353975999999999 160.738007 0.342911730443628993 0.64212589126490105 31 false 0.630475459999999988 1.46762341786264994 0.0488903056779902978 0.0708473500000000034 16 9 0.325349060000000023 0 16 false 138 969.784982982876954 2.37873925413218013 407.688995 18.2216780000000007 12 325.518096236410997 7.50223482882343973 43.389484000000003 19.0699499999999986 12 971.323038949238025 10.5829224774705004 91.7821200000000061 17.2935100000000013 1.33724609999999999 0 1.77643970000000007 0.848272299999999979 0.928167340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.229465676509989 -63.1573943725078024 22.2503401222040011 -12.5913167194443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376849428109952 2481376849428109952 951261629 2015.5 25.2724304561793005 0.0275296763302825993 -3.07359953514029005 0.0211374395916084992 1.22931481975250989 0.0340272722359777 36.1273399999999967 12.5728759223345996 0.0488058260117560996 -0.780015406933505018 0.0452472742387355006 0.0902486150000000042 0.574139900000000036 -0.0434406960000000009 0.0367555899999999977 -0.214729959999999997 0.0020449985999999999 -0.112622829999999993 -0.00484940130000000025 0.0525224999999999997 0.371772139999999973 147 0 147 0 -1.31652799999999992 120.350998 0 8.43259086162969006e-16 31 true 78.3659739999999942 1.56554133084553992 0.00695559668665522973 0.0947906599999999988 17 10 0.0570363070000000014 0 17 false 147 62802.9074948377965 26.3424739039755984 2384.09009 13.6934170000000002 15 31585.9299700759002 70.9848463480860943 444.967219999999998 14.1026539999999994 15 44584.3764629030993 79.0597758729248028 563.932500000000005 13.1389639999999996 1.21284689999999995 0 0.96369075999999998 0.409237860000000009 0.554452900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.332953082464996 -63.1741617536576996 22.2706904716642988 -12.6368038447565993 100001 5396 5335 5587.27002 0.931999981 0.591000021 1.12310004 0.463200003 0.292899996 0.544499993 200111 1.49085059999999991 1.3905246 1.5251380000000001 1.69765999999999995 1.5869063000000001 1.80841359999999995 +1635721458409799680 Gaia DR2 2481376780708633344 2481376780708633344 240072396 2015.5 25.2767523488802013 0.124800725105070995 -3.07515653429805003 0.0901898902076048031 2.30964062785022994 0.157829829293571006 14.6337390000000003 -6.51935671377987003 0.217556496245997988 -21.9141001729857017 0.161295951022220996 0.0165726879999999986 0.567896900000000038 0.0407944059999999983 0.10123356 -0.283504219999999973 0.0784386839999999946 0.186161889999999997 -0.0208127100000000016 0.0755670799999999948 0.240411370000000013 148 0 148 0 2.13153620000000021 181.378998 0.313450356862177981 1.6407714772589499 31 true 1.76639220000000008 1.34829211413379002 0.0291420072960815006 0.100655854000000003 17 10 0.199317959999999988 0 17 false 145 2270.71360633040013 3.2534652841203302 697.937012 17.2979599999999998 15 651.870801099711002 9.94176990358598012 65.5688860000000062 18.3159850000000013 16 2524.9060917152101 9.50657921261353955 265.595640000000003 16.2563080000000006 1.39902140000000008 0 2.05967710000000004 1.01802440000000005 1.04165269999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.343076905338989 -63.1737420571585986 22.2742136245168005 -12.6398420812582994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376879492401024 2481376879492401024 185754666 2015.5 25.2821638199426992 1.25775335978840008 -3.07127903464215013 0.880319261620360005 -1.03259111075403998 1.50978222617409008 -0.683933800000000036 1.19982471063355001 2.2913530410443399 -3.48109416742078981 2.34359191993599003 -2.84753369999999995e-05 0.592614100000000033 0.109329164000000006 -0.160094590000000009 -0.204978169999999987 -0.150580400000000003 -0.192838769999999993 -0.131769140000000007 -0.0890376199999999979 0.339860470000000026 112 0 112 0 0.410709829999999998 112.431 1.39202110849894001 0.353595518624399974 31 false 0.0232462750000000003 1.19418116576463995 0.297980766343474979 0.126834940000000007 14 9 2.3646246999999998 0 14 false 112 106.733020390055003 1.31256355293456006 81.3164978 20.6176190000000013 10 80.4419455202708065 9.31199633505518065 8.63852900000000012 20.5876799999999989 10 69.6786518867479998 7.30578962855511005 9.53745649999999934 20.1541710000000016 1.40650570000000008 0 0.433509829999999985 -0.0299377439999999988 0.463447569999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.35027591689601 -63.167938788564399 22.2808263439703005 -12.6382295175459003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754880 2481377158665754880 1499844282 2015.5 25.2653755010736987 1.70035323707715991 -3.05228770189641008 0.907447920375984984 1.15220590849261995 2.10824954400044007 0.546522559999999991 34.3500511464133993 2.21718772828115984 -19.7171787784726007 1.48750806223398002 -0.177083839999999992 0.75758654000000003 0.14122519 0.118986869999999995 -0.342265129999999973 0.0427984449999999975 0.237149090000000007 0.0252100560000000015 0.111224219999999999 0.163516999999999996 116 0 116 0 7.77952240000000028 270.730988 4.75133410678900958 8.18453431451752955 31 false 0.020586763000000001 1.4302484849241901 0.282347323430855002 0.0377362259999999977 14 9 2.19063970000000019 0 16 false 118 153.295326386239992 2.28114144050829992 67.2011032 20.2245430000000006 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.298813523742012 -63.157842115742902 22.2720302802841985 -12.6143959176020992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754752 2481377158665754752 256528212 2015.5 25.2661477566417005 0.039024745711629602 -3.05120821125523989 0.0300946902790560009 1.33730522919978001 0.0471138578124620025 28.3845400000000012 35.2294533522356019 0.0690817584005267993 -17.5410414468266005 0.0665931695157502973 0.116669449999999994 0.581088000000000049 -0.0632760700000000037 -0.00383201239999999979 -0.158481149999999987 -0.0642052099999999987 -0.189623459999999994 0.0160775899999999992 0.0665322500000000011 0.352182749999999989 151 124 146 5 8.14123200000000047 325.494995 0 0 31 true 206.349979999999988 1.57816917565693005 0.0101150787567449007 0.0840420499999999931 17 10 0.0514591000000000007 0 17 false 137 157217.089231335995 47.0450587218033007 3341.84009 12.6971159999999994 17 83996.8465040190931 131.590856304019013 638.318239999999946 13.0407299999999999 17 105217.761763528993 191.065344979736011 550.689939999999979 12.2066970000000001 1.20352450000000011 0 0.834033000000000024 0.343614580000000003 0.490418430000000016 9.33769838500690952 2.30676331359719011 9 5000 3 -1.5 NOT_AVAILABLE 151.299348347377986 -63.1565376358432999 22.2731726317175003 -12.6136767120905997 100001 5756.25 5650.43994 6008.54004 \N \N \N \N \N \N 200111 1.87470559999999997 1.72058029999999995 1.94557610000000003 3.47631759999999979 3.29457280000000008 3.65806250000000022 +1635721458409799680 Gaia DR2 2481377257449474560 2481377257449474560 1306303589 2015.5 25.2636566468664014 0.423496531719090019 -3.03657643541031996 0.270088162592331982 0.699577797786448019 0.515634982161390032 1.35673069999999996 16.4253278940275997 0.715376206600216946 -8.31808036311532994 0.465962455568579015 -0.0162513440000000009 0.600917600000000052 0.162066879999999996 0.0888451039999999942 -0.21107382999999999 0.00855583700000000016 0.270343200000000006 -0.0386080219999999988 0.127921499999999994 0.105807010000000007 149 0 149 0 1.71434500000000001 174.337997 0.590924530250976021 0.498141844588446014 31 false 0.174135220000000007 1.40870061820853998 0.0889431018782587957 0.075904879999999994 18 10 0.637126700000000046 0 18 false 148 381.19776311388199 1.90266298442747006 200.350006 19.2354899999999986 11 114.167821581281999 8.12916434601435078 14.0442260000000001 20.2075299999999984 9 449.88475590008602 10.3680678085876998 43.3913799999999981 18.1291679999999999 1.47968499999999992 0 2.07836150000000019 0.972038269999999982 1.10632320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.280644260142992 -63.1443346238323002 22.2763297908049012 -12.5991583050952993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376986867085440 2481376986867085440 521751622 2015.5 25.2870299362054993 2.02506674325326985 -3.05216526966562984 1.5264563729268501 \N \N \N \N \N \N \N 0.101125030000000005 \N \N \N \N \N \N \N \N \N 105 0 104 1 37.6694600000000008 2132.6499 10.4860641429502 183.181184970679993 3 false 0.00830235600000000032 \N \N 0.123094999999999996 16 10 3.36048359999999979 0 16 false 138 371.351870210885977 5.01949562671079974 73.9819031 19.2638999999999996 15 481.544324447079021 15.0767475898328005 31.9395370000000014 18.6447980000000015 13 1120.56372530480007 11.8974603103324998 94.1851199999999977 17.1383289999999988 4.31425859999999961 0 1.50646970000000002 -0.6191025 2.12557220000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.34206909463299 -63.1485682951081984 22.2926752265124009 -12.6222525319662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374165072978176 2481374165072978176 812573910 2015.5 25.3020714983128983 1.11294705982045006 -3.13497340472153008 0.859842697345755025 -0.32407549670507102 1.36800754204969 -0.236895999999999995 0.203344865315851997 1.90441168830448992 -10.9644809829843997 2.31037066655860013 -0.0335869199999999993 0.62797265999999996 0.128056350000000013 -0.18958469 -0.295979829999999999 -0.260609570000000013 -0.261567680000000025 -0.000543384749999999985 0.0324142840000000015 0.34429700000000002 113 0 112 1 1.50166949999999999 129.746002 2.24449179122035014 1.35782585577833004 31 false 0.0302035210000000005 1.75928586295883993 0.261102920521457005 0.145703520000000003 13 9 2.20691820000000005 0 13 false 112 131.192503931711002 1.38501634485157998 94.722702 20.3935929999999992 7 50.5926921233223013 10.2876589062943999 4.91780419999999996 21.0911700000000017 11 103.688092337102006 10.0667519939838002 10.3000550000000004 19.7225970000000004 1.17598779999999992 0 1.36857220000000002 0.697576500000000044 0.670995699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.450180103110995 -63.2171533390175 22.275700782343101 -12.7047661225624999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375711261213184 2481375711261213184 1492544697 2015.5 25.3042974022025007 0.189355974454537002 -3.11999601406636007 0.135552347904512011 1.25589252553978992 0.239278918272470997 5.24865530000000025 8.05414628877105976 0.32441938492459399 -4.39330193346105968 0.236593512560460989 0.00823777499999999926 0.581946799999999986 0.0738662800000000064 0.110492475000000007 -0.283420979999999989 0.0891981049999999998 0.241857380000000011 -0.0306396019999999984 0.0737861999999999962 0.219804870000000013 151 0 147 4 0.911924900000000038 157.214996 0.342028290233436005 0.801509819702060033 31 false 0.775456099999999982 1.44176056735120994 0.0409486546210044017 0.0897863660000000063 17 10 0.294240769999999985 0 17 false 145 1108.23976722347993 2.60594767283417017 425.27301 18.0767820000000015 15 435.905353496642022 21.5104393974426991 20.2648280000000014 18.7529070000000004 15 992.88812599822802 7.67653293614277032 129.340699999999998 17.2696690000000004 1.2892458 0 1.48323819999999995 0.676124599999999965 0.807113650000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.440503989159993 -63.2026536274725004 22.2834781866991989 -12.6916628087550993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375745622748544 2481375745622748544 654646566 2015.5 25.3121988252581005 1.96114377397714001 -3.11132928939517983 1.8083557459369699 \N \N \N \N \N \N \N 0.100876199999999999 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.485340600000000011 55.1688995 0 0 3 false 0.0141598309999999995 \N \N 0.316176919999999972 8 7 6.44608399999999993 0 8 false 70 84.7725989821881996 1.79239922480830005 47.2956009 20.8677269999999986 6 76.1955967682520026 19.5804066039634996 3.89142060000000001 20.6465630000000004 7 97.7943319111163021 8.25543402663777037 11.8460560000000008 19.7861370000000001 2.05243099999999989 0 0.860425949999999995 -0.221164699999999992 1.08159070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.448160820698007 -63.1914536536246985 22.2942705486963995 -12.6865144986808005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375956074935424 2481375956074935424 245063075 2015.5 25.3016192726707985 0.0562318899492679006 -3.08960807109670021 0.0417619748912637992 0.68144297308192503 0.0686171973081404069 9.93108199999999997 9.38924349621579069 0.0992359785126624983 -6.93403289894980013 0.085399005991152202 0.0142302320000000006 0.557392299999999952 -0.046998485999999999 0.0720506759999999941 -0.250926099999999985 0.0591244469999999966 -0.0322911180000000006 -0.012313882 0.0487553800000000009 0.299872040000000006 134 0 134 0 -0.193896349999999995 125.255997 0 0 31 true 9.92532100000000028 1.60646831687823011 0.0148442727836756005 0.0852021050000000002 15 10 0.0989563900000000052 0 15 false 132 8872.71619110727079 8.34481284731507067 1063.26001 15.8182240000000007 15 4775.01612460698016 27.6608850860133018 172.627010000000013 16.1539520000000003 13 6040.31355539271044 18.6780050000716997 323.391779999999983 15.3092710000000007 1.21894239999999998 0 0.844680800000000009 0.335727700000000018 0.508953100000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.406492416286994 -63.1762861581557971 22.2924110381628999 -12.6624288285056004 100001 5759.2002 5493.75 5918 0.0340000018 0.0170000009 0.0540999994 0.0149999997 0.00870000012 0.0231999997 200111 0.873024899999999993 0.826801099999999956 0.959430930000000015 0.755434199999999945 0.594523899999999994 0.916344500000000006 +1635721458409799680 Gaia DR2 2481376054858609024 2481376054858609024 1433784262 2015.5 25.310568859698801 1.02016591328407991 -3.08953025352965982 0.712804848975256977 0.879495134343784013 1.22808820232184002 0.716149799999999948 -1.81094090047293999 1.78921764237389991 -5.7903410091910601 1.8543873942684499 -0.0130289900000000007 0.621441899999999992 0.103107509999999999 -0.160977700000000001 -0.242105810000000005 -0.20949021000000001 -0.263631669999999985 -0.0592758580000000007 -0.016332929999999999 0.340436640000000013 119 0 118 1 0.883569599999999955 126.092003 0 0 31 false 0.0356812199999999996 1.8867650437357999 0.233985182852925994 0.136960880000000007 14 9 1.86337350000000002 0 14 false 119 134.52606077971501 1.53884571364974998 87.4200974 20.3663500000000006 13 100.464342349781006 12.4048164958905005 8.09881700000000038 20.3463600000000007 13 106.801843235692004 6.30675674608693004 16.9345110000000005 19.6904739999999983 1.54071399999999992 0 0.655885700000000016 -0.0199909209999999983 0.67587660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.424344001099001 -63.1724171546224014 22.3009550124392995 -12.6656502584411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376157937830656 2481376157937830656 1395163038 2015.5 25.3069106088994005 0.582944495864852974 -3.07147610582059016 0.383550655104082983 0.682286131894210945 0.712591651438194029 0.957471430000000012 -11.0358203996635993 0.969035598627778993 -44.0280814375034026 0.66481559020622405 -0.00475642270000000041 0.608372330000000017 0.146727350000000006 0.103951864000000005 -0.224906699999999987 0.0477449100000000015 0.270564530000000025 -0.0382483939999999981 0.107835449999999999 0.146452300000000007 144 0 142 2 2.81777200000000017 188.311005 1.42106173730947005 2.03549191031122012 31 false 0.0930080040000000052 1.3574699490609301 0.117706636519088997 0.100173570000000003 17 10 0.866731000000000029 0 17 false 142 286.970440059952978 2.02260550679630979 141.882004 19.5437739999999991 14 77.035822123831494 8.97778759857883912 8.58071299999999937 20.6346570000000007 15 357.081991309913008 8.32561671025353078 42.8895529999999994 18.380001 1.51276150000000009 0 2.2546558000000001 1.0908833 1.16377259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.400021279594995 -63.1576272947341977 22.3042942382252001 -12.6475206892295997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377601048593536 2481377601048593536 1479581047 2015.5 25.2979275790044014 1.03673586109677007 -3.02863515624924018 0.713355411813405005 3.5979035244122799 1.19915955206251001 3.00035430000000014 4.16829134891148012 1.95860783807177996 -17.4481493403492003 1.82043451079240004 0.039360939999999997 0.544086300000000023 0.159329200000000004 -0.155087370000000002 -0.135162919999999992 -0.191938090000000006 -0.251546349999999974 -0.132240980000000008 -0.0251450609999999998 0.275137359999999997 114 0 113 1 -0.450102979999999986 100.880997 0 0 31 false 0.0339679120000000029 1.21455951449657995 0.247717547487057987 0.114134180000000002 13 9 1.89022660000000009 0 13 false 112 130.791318524289011 1.36551477080898009 95.7817001 20.3969200000000015 6 34.2062628027308975 9.5551373753830795 3.57988200000000001 21.5161249999999988 12 213.232612035474006 13.0908659660916999 16.2886559999999996 18.9397850000000005 1.89186009999999993 0 2.57633970000000012 1.11920550000000008 1.45713420000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.341799025302009 -63.1226438691185976 22.3119279752575004 -12.6043892194108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415602917434496 2481415602917434496 717969527 2015.5 25.0320072097178006 0.472981572934429995 -3.16656898955899013 0.416372200073705012 0.692863881751949018 0.620413328117059959 1.11677789999999999 4.44603175553784968 1.0389692593903801 -2.7328113246998198 0.729688888301190053 0.17249312 0.243453730000000007 0.0378679899999999972 0.068557190000000004 -0.317773519999999976 0.0168800500000000006 0.132101250000000003 -0.014314238 0.167097639999999992 0.221713450000000006 183 0 181 2 4.15697000000000028 265.201996 2.12137876829963012 4.91916662117086023 31 false 0.068383979999999997 1.41847727908947996 0.114846420857247 0.0423539900000000011 21 9 0.930909600000000004 0 21 false 181 221.728972191494989 1.24185176879961001 178.546997 19.8238090000000007 18 48.1938139959693004 7.98876779035929996 6.0326966999999998 21.1439100000000018 18 266.877361799434027 9.40265606904540974 28.3831880000000005 18.6961399999999998 1.42097439999999997 0 2.4477692000000002 1.32010080000000007 1.1276683999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.935986210383987 -63.3596037088962021 22.006869981377001 -12.634628529794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415705996744704 2481415705996744704 246196234 2015.5 25.0386415730679985 0.905594127883930011 -3.15106267939090001 1.20356841542601001 0.511692969903476014 1.19704843044152009 0.427462220000000004 1.87264727264941011 2.82627747628446002 2.11311589097872998 3.42688202596024993 0.507856129999999961 -0.168435140000000011 -0.480892929999999996 -0.458155839999999981 -0.628890399999999961 -0.643988200000000011 -0.768888059999999984 0.488767180000000023 0.561784199999999956 0.767821250000000011 124 0 123 1 0.677338659999999981 128.009003 0 0 31 false 0.0333656629999999968 \N \N 0.0578009229999999971 15 8 3.84658770000000017 0 15 false 124 104.542553045955998 1.12591473667653008 92.8511963 20.6401329999999987 8 60.1265348377581006 6.90892540354229023 8.70273300000000027 20.9037229999999994 10 69.8936809503113068 8.79361018427644048 7.94823500000000038 20.1508259999999986 1.24370610000000004 0 0.752897260000000013 0.263589860000000009 0.489307400000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.934931046066993 -63.3427483594196019 22.0190475951342002 -12.6226652145232006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049594129152 2481416049594129152 583045284 2015.5 25.0651841129330002 0.89226239352885095 -3.14842339553610984 0.806578206670522047 0.446128730366517012 0.991624319513436991 0.449896929999999973 -0.784255983727581985 1.94740566648499991 -2.37737164101709997 1.88971287077400008 0.250195029999999985 0.352327879999999982 -0.0594637469999999974 -0.066454940000000004 -0.0240706629999999991 -0.109363329999999995 -0.274576460000000022 -0.0320976560000000022 0.0799632740000000009 0.308973039999999977 114 0 114 0 0.340243879999999999 113.415001 0 0 31 false 0.0292908379999999996 1.41795467327534008 0.258119164950162017 0.0586945099999999984 14 9 1.93660910000000008 0 14 false 114 96.3652161424643054 1.17936517148714004 81.7093964 20.7285649999999997 9 52.7385030660065013 10.4249627873489992 5.05886749999999985 21.0460680000000018 10 67.8889339592115988 12.390523635129 5.479101 20.182423 1.25177359999999993 0 0.863645549999999984 0.31750297999999999 0.546142600000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.986095061110007 -63.329251220955399 22.0452859175279983 -12.6299994827861006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415401054540800 2481415401054540800 87499261 2015.5 25.0862041717264006 0.0265674483187257997 -3.17259738004783998 0.0179582232960650984 2.49316707416023009 0.0310086076698825007 80.4024200000000064 -34.4437081299071011 0.0429416418175503009 -31.9373056186752997 0.037151357417522797 -0.0231126209999999999 0.624811400000000017 -0.0637906099999999976 0.0734808200000000022 -0.20009188 -0.0505060999999999982 -0.225643919999999998 0.0722206999999999988 0.154815120000000001 0.240384189999999998 161 0 161 0 -0.733054600000000001 142.776993 0 0 31 true 116.662949999999995 1.57865832288818009 0.00636035314275546979 -0.0151107380000000003 19 10 0.0481194630000000012 0 19 false 159 92554.185790953401 33.1270609806769016 2793.90991 13.2723750000000003 17 45819.6086158816033 75.0151229140730038 610.804930000000013 13.69876 16 66597.7183604357997 77.6873238099640986 857.253360000000043 12.7032720000000001 1.21461090000000005 0 0.995488170000000006 0.426384929999999995 0.56910324000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.051152541469008 -63.3423859252989985 22.0561277670464015 -12.6602148544345994 100001 5240.5 5138.5498 5554.7998 0.157000005 0.0165999997 0.314099997 0.0935000032 0.0122999996 0.149800003 200111 0.956229800000000019 0.851080999999999976 0.994549930000000026 0.621312599999999993 0.602709350000000033 0.639915899999999982 +1635721458409799680 Gaia DR2 2481368843609052288 2481368843609052288 1381886411 2015.5 25.0946567538200007 0.0557570789909000997 -3.17371587010359013 0.0327700477668593018 2.09825232918730009 0.0648327949960338934 32.364060000000002 9.33601011468469011 0.0856001779242603067 -17.884947457834901 0.0617909178808504003 -0.198295730000000003 0.666212800000000049 -0.0803543300000000016 0.115592180000000003 -0.377334180000000019 -0.0283414389999999995 -0.104642379999999993 0.0993565200000000037 0.183070750000000004 0.201270279999999996 158 0 158 0 -1.75721539999999998 123.694 0 0 31 true 14.9808339999999998 1.48777831780959002 0.0119689566867275006 -0.0660314699999999949 18 9 0.0817516600000000038 0 18 false 157 12334.8718002477999 6.01001278363994018 2052.38989 15.4605289999999993 14 4855.6917726490301 17.5374196791503003 276.876070000000027 16.1357609999999987 14 10891.3578614847993 24.0532214489624998 452.802459999999996 14.6692149999999994 1.2766286 1 1.46654599999999991 0.675231930000000036 0.79131410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.069268649684005 -63.3398543084883983 22.0637433005794001 -12.6643704110376998 100002 4399 4298.22021 4556.16992 0.00800000038 0.00200000009 0.256099999 0.00300000003 0.000699999975 0.156299993 200111 0.662882569999999949 0.617936900000000011 0.694331999999999949 0.148246240000000001 0.138501399999999997 0.157991080000000006 +1635721458409799680 Gaia DR2 2481368877968810496 2481368877968810496 180758900 2015.5 25.1095477732065007 0.727004005151795973 -3.16368546787703009 0.670427114243966948 -0.304712822739643008 0.85234333499163395 -0.357500099999999987 4.39768314211524025 1.48487549726038992 -2.18832104704274011 1.63193631030672992 0.265422429999999987 0.454048500000000022 0.0208581670000000004 -0.073392384000000005 -0.0555564569999999966 -0.116639499999999993 -0.247053429999999991 -0.0888753500000000057 0.0251448620000000005 0.410648879999999994 139 0 139 0 0.264618999999999993 137.699005 0 0 31 false 0.0386078399999999974 1.65987250475206993 0.215344492694836992 0.0583758299999999966 16 9 1.63739509999999999 0 16 true 138 115.762351939069006 1.13864936160149011 101.666 20.5294479999999986 10 40.199719817771097 6.33510607029063966 6.34554799999999997 21.3408300000000004 11 124.259183898257007 10.8649609824205999 11.4366889999999994 19.5260980000000011 1.42065970000000008 0 1.8147316 0.811382300000000001 1.0033493 \N \N 0 \N \N \N NOT_AVAILABLE 151.089927891054998 -63.3245017909146029 22.0817010443707993 -12.6605377788366997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415469773446528 2481415469773446528 1134835520 2015.5 25.0702422324118999 4.99313047935337995 -3.16294651025958018 3.86952544729422021 \N \N \N \N \N \N \N -0.413524239999999987 \N \N \N \N \N \N \N \N \N 72 0 71 1 39.1233670000000018 2300.97998 18.4484686383174008 129.083854376263986 3 false 0.0026423442000000001 \N \N -0.108085410000000007 11 7 8.79070800000000041 0 12 true 94 215.489428174209991 2.92428965753172987 73.6894989 19.8548009999999984 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.009882810828998 -63.3403175699345979 22.0446000885457991 -12.6453611251181002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415843435604864 2481415843435604864 1219788903 2015.5 25.0821266074089984 0.552288342766447005 -3.16230815565970014 0.424828993140230982 1.80084810023985997 0.658086272148458051 2.73649239999999994 5.49154976708408959 1.03397759012379997 -14.4163033376075997 0.707786678012323978 0.142830399999999996 0.482328409999999985 0.0903207300000000018 0.166563729999999993 -0.146255820000000009 0.10948186 0.347481399999999996 -0.0348767680000000024 0.132358239999999988 0.180306419999999995 165 0 164 1 5.50841669999999972 277.877991 2.02738422827713993 3.59479150237664014 31 false 0.0704140600000000005 1.65133258894013002 0.129045121741135999 0.0220110700000000006 19 10 0.924947439999999954 0 19 false 164 216.455646613878002 1.33603655419592005 162.013 19.8499429999999997 10 67.5455993091429008 7.01947524353685015 9.62260000000000026 20.7773949999999985 14 289.52005808304699 9.8320217251763804 29.4466460000000012 18.607723 1.64960189999999995 0 2.16967199999999982 0.927452100000000002 1.24221990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.033288023251998 -63.3347579697341985 22.0561435989794994 -12.6491494276856997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415847731139328 2481415847731139328 1499925447 2015.5 25.0814760134772001 0.0499330115162879978 -3.15239545514247022 0.0354175873709181022 7.0101717958116696 0.0589837144110567993 118.849270000000004 -26.0645382280596998 0.0920786611628567064 -24.9731944538603017 0.069634179658035103 -0.0228399520000000002 0.510973600000000028 -0.0363535430000000021 0.0672351100000000007 -0.275618260000000004 -0.0243254939999999996 -0.060487326000000001 0.0555682099999999998 0.154475019999999991 0.218600349999999999 169 0 168 1 10.9746570000000006 450.979004 0.278872919845851996 12.7750183584713 31 true 10.3600290000000008 1.3774301027573701 0.0123078204793191006 -0.00945305700000000082 20 10 0.0892105400000000048 0 20 false 167 46834.7711666382966 22.9831132627524006 2037.79004 14.0119450000000008 19 13823.2592726956009 50.5571174162642976 273.41867000000002 14.9998620000000003 17 49196.0804418490006 75.3847449674666024 652.600000000000023 13.0320940000000007 1.34556729999999991 1 1.96776770000000001 0.987916950000000016 0.979850769999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.022703661950004 -63.3260336294847974 22.0592758516730996 -12.6396972994371009 100002 3930.78003 3788.31006 4206.25977 0.339300007 0.169599995 0.825299978 0.173700005 0.0920000002 0.358999997 200111 0.552733200000000036 0.482703749999999987 0.595087469999999952 0.0657113899999999945 0.0645222960000000068 0.0669004799999999983 +1635721458409799680 Gaia DR2 2481416053889569280 2481416053889569280 429281415 2015.5 25.0744685327509984 0.106599941628802 -3.14855319537995015 0.077119951274670695 0.338160669154252025 0.128075040398102996 2.64033220000000002 5.53822435621161979 0.197649974677987006 -6.34721357121224017 0.140363042929255 0.0333027020000000035 0.502375499999999975 0.00324865920000000016 0.0966100839999999988 -0.236337560000000002 0.0309278459999999984 0.120381829999999995 0.0226797499999999985 0.134547300000000009 0.19468321999999999 175 0 174 1 2.26128319999999983 213.296005 0 0 31 true 1.87084570000000006 1.59194346800237008 0.0247951574759604013 -0.004952054 20 10 0.179505770000000009 0 20 false 174 1967.76837003672995 2.58789106690826998 760.375 17.4534300000000009 18 955.007003638776041 12.9566694390498007 73.7077560000000034 17.901371000000001 18 1492.1433688290499 9.51995669183341064 156.738460000000003 16.8273940000000017 1.24361699999999997 0 1.07397649999999989 0.447940830000000012 0.626035699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.004964668566998 -63.3254817058907022 22.0540658037168988 -12.6335431186071006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416049595470080 2481416049595470080 1319574686 2015.5 25.0729683296941985 0.716709481775514967 -3.14066182278659012 0.651485956751513995 1.69313943691858992 0.831229331672030947 2.03691000000000022 -4.11961380023991008 1.51431343127532991 -3.23126394430255015 1.61115400778664997 0.22195527000000001 0.41233554 0.0226911919999999989 -0.0674722340000000059 -0.105114739999999998 -0.115461250000000001 -0.240045000000000008 -0.072938785000000006 0.0522412400000000013 0.383481349999999999 135 0 133 2 1.49460180000000009 152.682999 0.444495100825250011 0.0635481730873266037 31 false 0.0402730369999999976 1.42964416621730006 0.205773124846158006 0.0559203399999999989 16 9 1.62134299999999998 0 16 false 132 117.723712026683003 0.976225607464782041 120.591003 20.5112060000000014 9 51.6875375313359982 10.1778159502646997 5.07845070000000032 21.0679240000000014 11 139.259935932443994 6.41718008709915022 21.7011099999999999 19.402355 1.62199680000000002 0 1.66556930000000003 0.556718799999999958 1.10885049999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.994564534337997 -63.3189460702902025 22.0556251305727997 -12.6256562726099002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416083953784704 2481416083953784704 1422532583 2015.5 25.0827348154923015 0.411278569736204025 -3.14029982447135003 0.319117816240128027 0.608365404427799961 0.493995088649336 1.23152109999999992 -1.36430187600511998 0.788338985965121974 -2.36894256985506013 0.564310003648384018 0.0906633359999999972 0.465257350000000014 0.100827663999999997 0.10676853 -0.199402529999999995 0.0722201900000000035 0.268250820000000001 -0.0555971450000000006 0.0979741400000000012 0.182964889999999991 176 0 176 0 1.05854859999999995 190.615005 0 0 31 false 0.112478770000000006 1.65803305613332008 0.100337176328467004 0.00115599769999999999 20 10 0.706165200000000048 0 20 false 174 244.335751143149992 1.26157626881590001 193.675003 19.718399999999999 17 159.588229519288006 12.2696637900218004 13.0067319999999995 19.8438850000000002 17 163.857139803626012 6.01496856699287985 27.2415619999999983 19.2257560000000005 1.3237741999999999 0 0.618129730000000044 0.125486370000000014 0.492643359999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.01393991797201 -63.3145270966717035 22.0650495491122989 -12.6289203174387001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368873673377152 2481368873673377152 437970238 2015.5 25.1122723528789003 0.594175511564063008 -3.15625282840544008 0.502368221431154005 1.87426604377665007 0.707961684459093021 2.64741159999999986 0.410811597301734999 1.19731903652603 -7.3362830041196796 1.0965625683668101 0.152231349999999988 0.437716959999999988 0.0886793300000000007 0.002674816 -0.158347309999999991 -0.0297116709999999985 -0.0244859550000000002 -0.0755315349999999969 0.0749148060000000005 0.289980599999999977 147 0 145 2 1.98210170000000008 175.080002 1.05561066422324989 0.593708958412235033 31 false 0.056617569999999999 1.34990815568212996 0.163626425938948994 0.0376420299999999999 17 10 1.1487061999999999 0 17 false 144 156.020288964615986 1.33997801657934001 116.434998 20.2054140000000011 11 43.6524250713839024 7.64760649744657961 5.7079854000000001 21.2513679999999994 15 199.131303985970987 8.98555269384480937 22.1612760000000009 19.0140700000000002 1.55610359999999992 0 2.23729699999999987 1.04595379999999993 1.19134329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.088461899138991 -63.3166143551559983 22.0871044379260013 -12.6546343787727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127616 2481416564990127616 105494749 2015.5 25.0195268478733013 0.326667301032544988 -3.12777018318065991 0.169140568076474013 -0.377674373179511025 0.414534318100866994 -0.911081099999999977 8.32159054616871074 0.410437285817622011 1.06344357971765002 0.297590551531453973 -0.151141300000000006 0.784757299999999991 0.0773257799999999967 0.115420744000000006 -0.325067879999999976 -0.000249612670000000001 0.0884249299999999988 0.0571361599999999983 0.133283420000000014 0.221747100000000003 158 0 154 4 0.908373650000000032 164.524002 0.358460558650005978 0.518473346300713955 31 false 0.439388200000000007 1.64009996149367998 0.0556144632398843999 -0.00591391900000000012 18 9 0.424512119999999993 0 18 false 155 643.930853009023053 1.9784953525715101 325.464996 18.6662670000000013 16 322.913324642414011 17.1414623504795998 18.8381420000000013 19.078672000000001 13 520.704981109108985 11.9179344756161996 43.6908760000000029 17.97044 1.31010699999999991 0 1.10823249999999995 0.412405000000000022 0.695827500000000043 \N \N 0 \N \N \N NOT_AVAILABLE 150.874595096662006 -63.3295686786713006 22.0096878588466005 -12.5939704974333004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416564990127872 2481416564990127872 1347885605 2015.5 25.021525607553599 0.167689307273025001 -3.12743990172130015 0.121771149987360994 -0.311676082145601996 0.20419914772216799 -1.52633390000000002 12.6208527727670994 0.309986702726846974 -9.01008168145651034 0.230539687618361994 0.0926255899999999938 0.52979946 0.0480862899999999968 0.0460023499999999974 -0.110764324999999997 -0.0288962549999999992 0.144133630000000013 -0.0355211200000000032 0.11945016 0.141261200000000003 158 0 157 1 -0.300501399999999974 146.169998 0 0 31 false 0.812074100000000021 1.73467735525150002 0.0391712191596432988 0.0141315420000000004 18 10 0.27684048 0 18 false 155 964.312234856554028 1.80274677528167993 534.913025 18.2278209999999987 14 538.031633890422995 15.8520554448426996 33.940809999999999 18.5243679999999991 13 646.655387647331054 11.4601256181684992 56.4265499999999989 17.7352370000000015 1.22853049999999997 0 0.789131160000000054 0.296546939999999981 0.492584230000000012 \N \N 0 \N \N \N NOT_AVAILABLE 150.878327602447001 -63.3284349783968992 22.0117132500078014 -12.5944006797732992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416530630386048 2481416530630386048 759506629 2015.5 25.0247069019746995 0.150006526773577009 -3.13468082488641997 0.0972361225161355036 0.762245976581833018 0.177762023552474002 4.28801349999999992 4.95813187449975956 0.269871805511437024 -19.6793369196051984 0.180330921943901989 -0.110093689999999994 0.53292280000000003 0.120363264999999997 0.0463541800000000018 -0.34108063999999999 -0.00694640500000000011 0.0745415759999999983 -0.0268752820000000003 0.101966775999999995 0.167466539999999997 162 0 159 3 1.61895380000000011 183.445999 0.305489457293335986 1.07328054903458003 31 true 1.22032479999999999 1.56080176968142004 0.0314375420994165017 -0.0693581550000000047 19 10 0.242361009999999988 0 19 false 157 1484.52097572035996 2.4010712275179098 618.273987 17.7593999999999994 17 673.769379589173013 9.2794539756008998 72.6087339999999983 18.2801100000000005 16 1150.89063436015999 9.62308673890420962 119.596824999999995 17.1093350000000015 1.22912369999999993 0 1.17077450000000005 0.520710000000000006 0.650064470000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.891497910328013 -63.333686459859301 22.0119977431979983 -12.6023028518232003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416569285644672 2481416569285644672 155170466 2015.5 25.0233276880727011 0.0966421599023360028 -3.12479196140247995 0.0674763532389967002 1.58509615254193004 0.116438464994318994 13.6131659999999997 9.53845436908103039 0.177815565494502004 -9.11404993155444032 0.129634489374931994 0.01682115 0.533811499999999994 0.048555545999999998 0.0236953830000000004 -0.169533240000000002 -0.0666098600000000068 0.090880820000000001 -0.00458684999999999996 0.134381129999999988 0.115370600000000004 158 0 158 0 4.16440439999999956 237.126999 0.332671377663660006 3.1205637687460599 31 true 2.64564349999999981 1.36561984229964994 0.0214285680754167998 0.0128591069999999998 18 10 0.160457430000000012 0 18 false 157 3453.95648199812013 3.87077574182095985 892.315979 16.8425730000000016 18 999.136985988203946 11.2434923290279993 88.8635799999999989 17.8523250000000004 18 3691.85656312465017 9.33292744048729084 395.57326999999998 15.8438079999999992 1.35815069999999993 0 2.00851729999999984 1.00975229999999994 0.998765000000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.87950558723 -63.325277479809003 22.0144287183715015 -12.5926045195647003 100001 3707 3651 4127.81006 1.36849999 0.992999971 1.64909995 0.671999991 0.522700012 0.811999977 200111 0.80559873999999998 0.649718499999999977 0.830501260000000019 0.110413609999999995 0.0938373359999999934 0.126989889999999994 +1635721458409799680 Gaia DR2 2481416942947255552 2481416942947255552 1013485490 2015.5 25.0449198255894991 0.199728701760351013 -3.11622016351503994 0.156281944641877002 0.977015392358786983 0.248035295672203004 3.93901749999999984 -7.34732703663720965 0.40133409971728401 -24.5007563840436013 0.296341775200561985 0.0303670519999999985 0.426341199999999976 0.0612775600000000017 0.0643737800000000054 -0.325364529999999985 0.100078449999999999 0.192887649999999994 -0.094315484000000005 0.00799961000000000075 0.25539909999999999 172 0 172 0 1.6328182 197.906006 0 0 31 false 0.482402239999999982 1.48525341568747993 0.0517264465974410989 0.00710322899999999997 20 10 0.366533940000000003 0 20 false 172 637.513811496461017 1.69973662271435999 375.06601 18.6771409999999989 16 200.165304816911004 9.65562380734593084 20.7304379999999995 19.5979160000000014 15 742.889596888882011 9.07564974661572066 81.8552549999999997 17.5846100000000014 1.47926969999999991 0 2.01330570000000009 0.920774459999999961 1.09253120000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.915144331434988 -63.3084788649326029 22.0382021981180998 -12.5926006005919007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416118313607040 2481416118313607040 440046659 2015.5 25.0641171603962007 0.590430507195021992 -3.13891699268529978 0.515405950412573977 -0.277579081191647981 0.705548576497374014 -0.393423049999999996 -2.02907896034284008 1.22159988791138008 -3.67155411930288 1.09594958501609008 0.176417220000000013 0.393891360000000024 0.039486814000000002 0.0143423800000000001 -0.178800029999999999 -0.0345614070000000023 -0.0540547629999999987 -0.0311222560000000009 0.117677160000000003 0.300662130000000027 146 0 142 4 0.0999154399999999943 137.990005 0 0 31 false 0.0557898660000000005 1.72586430812452996 0.17181072733910599 0.0540047660000000027 17 10 1.16798540000000006 0 17 false 141 146.982708778789998 1.2069428555458499 121.780998 20.2701999999999991 13 87.9385737980464057 5.15304148666514994 17.065372 20.4909399999999984 14 99.486845758314999 7.82482330091831013 12.7142610000000005 19.7675060000000009 1.27515280000000009 0 0.723434449999999951 0.220739359999999996 0.50269509999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.975065190125008 -63.3210665838212989 22.0478685131999015 -12.6207715084373007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416874227773568 2481416874227773568 342718816 2015.5 25.0506954914454987 0.590912529668797037 -3.1264220579456099 0.495000394788515985 -1.99494614129088998 0.812607338145310054 -2.45499400000000012 -0.933021402860749971 1.13537951704895002 -1.96138891487709 0.798227639130184019 0.0467148419999999995 0.442415119999999995 0.142876630000000004 0.107651179999999999 -0.375538649999999974 0.0202092570000000013 0.21703494000000001 -0.0101630599999999998 0.156421179999999993 0.20166524999999999 174 0 172 2 4.27348000000000017 257.019012 1.79401175986558004 2.47596128113415981 31 true 0.0558340660000000016 1.76738981715844989 0.138885577346942013 0.0237479319999999994 20 9 1.02006979999999992 3 20 false 171 174.913625477917009 2.16331537352446013 80.8544006 20.0813060000000014 19 127.080739150550997 8.57765688288369077 14.8153210000000009 20.0911879999999989 18 122.353629082788999 8.4431133721429994 14.4915289999999999 19.5428770000000007 1.42604320000000007 0 0.548311230000000038 0.00988197300000000049 0.538429260000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.936310005009005 -63.3153323340013969 22.0398338637693989 -12.6042110437548001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416908587515648 2481416908587515648 882926504 2015.5 25.0581603953533012 0.626930037969565035 -3.12096044704126019 0.47031905245418798 0.951034907033882049 0.761974226061510995 1.24811950000000005 -1.19026365912243004 1.25419279380042004 -4.22673701367156962 0.855136457460553001 0.0803776300000000055 0.432706900000000005 0.0488110969999999977 0.0758828150000000062 -0.198681920000000012 0.0475515540000000028 0.225549830000000007 -0.0625793800000000039 0.0868543499999999968 0.16300307 168 0 167 1 1.81469490000000011 196.151001 1.57185918626034993 1.27522926236973011 31 false 0.0507645720000000009 1.74243003156714993 0.144835511977957992 0.00127144309999999996 20 10 1.11272470000000001 0 20 false 168 156.511589911452006 1.20936219885966989 129.417007 20.2020000000000017 14 98.7241230923957005 7.96241338563084966 12.3987680000000005 20.3653300000000002 14 144.499742658341006 15.2566412230723998 9.47126899999999949 19.362252999999999 1.55403099999999994 0 1.00307659999999998 0.163330079999999989 0.839746499999999951 \N \N 0 \N \N \N NOT_AVAILABLE 150.946291971450989 -63.3072522179966981 22.0489984233065002 -12.6018876803747997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417153401196544 2481417153401196544 1170842782 2015.5 25.0307128436828989 2.9734843351798701 -3.11089759559610002 1.95409094368058001 \N \N \N \N \N \N \N -0.140995320000000007 \N \N \N \N \N \N \N \N \N 107 0 107 0 53.2219279999999983 4306.1499 14.8054071766625004 271.579046852325007 3 false 0.00433812699999999978 \N \N -0.0327240450000000002 19 10 4.53779939999999993 0 20 false 167 370.561895773981973 4.18587863386732995 88.5267029 19.2662140000000015 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.881500458711997 -63.309573017475401 22.0267080527024994 -12.5824157155965004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417222120673152 2481417222120673152 1207939260 2015.5 25.0232938106722003 0.0778928221897084994 -3.0955762993967002 0.0767425362461347932 1.76795298209085994 0.112285579164596 15.7451480000000004 13.4618565537194002 0.177487809225889998 9.84586757113259026 0.147356116151886013 0.0519005250000000029 0.342796400000000001 0.0484956350000000022 0.0971124700000000063 -0.555240500000000026 0.371483740000000007 0.444988249999999974 -0.303578499999999973 -0.297868670000000002 0.500249449999999984 158 0 157 1 0.446331619999999984 159.227005 0.117384639397215995 0.386976242161334028 31 false 3.61504300000000001 1.4263493532396101 0.0200366223839579007 0.0641106139999999963 18 9 0.187713039999999998 0 18 false 156 3367.50786705926021 4.39601184225038999 766.036987 16.8700940000000017 16 1044.38660574735991 8.18049324543497036 127.667919999999995 17.8042349999999985 16 3461.34371278953995 13.4839939528662001 256.700199999999995 15.9138079999999995 1.33800140000000001 0 1.89042759999999999 0.934141160000000026 0.956286430000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.852276941383991 -63.2987444518285969 22.0254513384307984 -12.5654416654440002 100001 3891 3797 4139.45996 0.0103000002 0 0.251599997 0.00400000019 0 0.0839999989 200111 0.607867539999999984 0.537086249999999987 0.638337249999999967 0.0763057899999999983 0.0663859549999999965 0.0862256299999999976 +1635721458409799680 Gaia DR2 2481417080386218880 2481417080386218880 1168884029 2015.5 25.0641877849297998 0.245770704397337003 -3.09230178555027013 0.198983490414899988 2.71717660620549006 0.331076948738106003 8.2070849999999993 -9.75019781178404976 0.491618911091211974 -17.5575422332376014 0.335961740554715005 0.0325315399999999977 0.396010580000000001 0.076132169999999999 0.0812346099999999988 -0.385827399999999987 -0.0188361849999999983 0.1046295 0.0316288100000000003 0.19059261999999999 0.205694020000000005 174 0 174 0 1.03675129999999993 188.069 0.40884872582106202 0.471768310442978012 31 false 0.310880869999999976 1.36788054544013993 0.0588370913343242985 0.0232589150000000015 20 9 0.440390879999999985 0 20 false 174 498.447127628605017 1.53046268537459995 325.68399 18.9443190000000001 18 78.4666107754567008 8.73326792529551987 8.98479400000000084 20.6146759999999993 18 688.219561910308016 8.49192683258269021 81.0439800000000048 17.6676029999999997 1.53814950000000006 0 2.94707300000000005 1.67035679999999997 1.27671620000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.93176536364399 -63.2787054481820022 22.0655711506205989 -12.5774758975391006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481416156968784000 2481416156968784000 1636798814 2015.5 25.0699346754228998 0.0305840664550337989 -3.11900768406795015 0.0222650638089691988 0.355659693457235027 0.0359737558495437024 9.8866429999999994 2.13451732892611012 0.0557464835567657996 -7.60593611884883014 0.0457520675254447021 0.0134094799999999997 0.526801170000000041 -0.0431551560000000001 0.0498812939999999996 -0.230205500000000007 -0.0576863069999999992 -0.148308429999999991 0.0637284399999999973 0.161973909999999999 0.242005680000000001 176 0 175 1 -1.26260829999999991 147.158997 0 0 31 true 34.3472399999999993 1.5499626035276699 0.00765529590289818016 -0.00141135340000000009 20 10 0.0596475900000000003 0 20 false 174 27683.9164670530008 9.22523465221184935 3000.88989 14.5827969999999993 20 13120.5536646395994 27.7165044048452991 473.384160000000008 15.0565079999999991 19 21024.8357272996982 28.2517137624793016 744.196839999999952 13.9550889999999992 1.23340169999999993 0 1.10141939999999994 0.473710999999999993 0.627708440000000034 \N \N 0 \N \N \N NOT_AVAILABLE 150.968235617374006 -63.300555278898301 22.060933114950501 -12.6044137084133006 100001 4976.68994 4884.43994 5069.22021 \N \N \N \N \N \N 200111 4.16622640000000022 4.01550999999999991 4.32507850000000005 9.59271999999999991 7.33290000000000042 11.8525399999999994 +1635721458409799680 Gaia DR2 2481416015234315648 2481416015234315648 1278104456 2015.5 25.1137868271202009 3.53940713365508008 -3.12466248651236 3.03362461462431998 \N \N \N \N \N \N \N 0.103422479999999997 \N \N \N \N \N \N \N \N \N 105 0 104 1 39.2624899999999997 2310.94995 19.796945341903001 392.859850469085984 3 false 0.0022197454000000001 \N \N 0.0183544199999999998 13 9 8.98829300000000053 0 13 false 111 112.747077221001007 1.30374853833853011 86.4792023 20.5581020000000017 11 142.507720742272994 8.39223718241867012 16.9808979999999998 19.9667929999999991 12 341.396622416074024 11.4831522637022001 29.7302190000000017 18.4287719999999986 4.29194600000000026 0 1.53802109999999992 -0.591308599999999962 2.12932969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.061955252322008 -63.2873157346257003 22.1004950920987007 -12.6258331073078995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417114745957888 2481417114745957888 1208110895 2015.5 25.0726640834975001 0.675046936426986988 -3.09126822968433013 0.575334314319014051 -0.990121806050834996 0.810523460014696995 -1.22158309999999992 1.72168289139451991 1.36712576687568999 -2.28181663959357994 1.22518144200125989 0.147494149999999991 0.418827700000000025 0.151117240000000014 0.0171337020000000007 -0.183479059999999999 -0.0139408910000000004 0.00850630500000000046 -0.100767019999999999 0.0848937300000000006 0.288535829999999993 146 0 145 1 2.16786620000000019 178.712997 1.64148963481537002 1.06514732242921006 31 false 0.0442690030000000012 1.54406502766787002 0.184926681109491009 0.0480151700000000028 17 10 1.30359669999999994 0 17 false 145 141.569629530586013 1.11341329239949993 127.149002 20.3109399999999987 15 103.619630701046006 10.0491921649129008 10.3112399999999997 20.3127819999999986 15 129.782225248004011 9.57122295874395945 13.5596285000000005 19.4788819999999987 1.64867169999999996 0 0.833900450000000015 0.00184249879999999998 0.832057950000000046 \N \N 0 \N \N \N NOT_AVAILABLE 150.947897426656994 -63.2742242537800976 22.0740216209278017 -12.5796399723872998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417050321981184 2481417050321981184 1433374220 2015.5 25.0841158306821015 0.0746912391320122965 -3.09869603572913022 0.0501399226378042989 0.688216777536942992 0.0907418650620547967 7.58433600000000041 1.03769311637307005 0.121257642796359005 4.07880563684535957 0.0923120748241175043 0.213302340000000007 0.631943499999999991 -0.0286486609999999989 0.0967581349999999951 0.0215985589999999998 -0.0188031289999999983 -0.00472103939999999993 0.041317325000000002 0.17341608 0.218470599999999987 150 0 146 4 -1.66057469999999996 114.331001 0 0 31 false 5.79474999999999962 1.51795285610514008 0.017730505360626099 0.0862778299999999998 17 9 0.113233045000000004 0 19 false 148 5155.87882114261993 4.95335397425383039 1040.89001 16.4076079999999997 17 2417.79836547058994 19.5725813709004015 123.529870000000003 16.8928380000000011 16 3916.8149372542598 13.9340301566800004 281.097080000000005 15.7795880000000004 1.22861949999999998 0 1.11324979999999996 0.48522949999999998 0.628020299999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.977905527735999 -63.2761793983809966 22.0821011882455984 -12.5907643762460992 100001 5003.62012 4909.33984 5064.8999 0.333999991 0.174500003 0.481999993 0.164000005 0.0851999968 0.273099989 200111 0.916477439999999977 0.894435399999999992 0.952015999999999973 0.474326399999999981 0.344888099999999975 0.603764700000000043 +1635721458409799680 Gaia DR2 2505461990940228864 2505461990940228864 140329873 2015.5 26.1978816511409001 3.21602955788825984 -2.48144152272719998 2.87065856499931016 \N \N \N \N \N \N \N -0.623780670000000037 \N \N \N \N \N \N \N \N \N 37 0 36 1 -1.45395479999999999 20.3945999 0 0 3 false 0.0211958250000000015 \N \N -0.0170764399999999983 5 5 10.5677819999999993 0 5 false 36 83.4052430720294069 1.76711474202351004 47.1985016 20.8853819999999999 3 90.1179534965719 19.4653246528549992 4.62966630000000023 20.4643599999999992 4 72.9388998813771963 14.7961422510991003 4.929589 20.1045230000000004 1.95499529999999999 0 0.359836580000000017 -0.421022420000000008 0.78085899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.592285177409991 -62.2404883866221965 23.3741736135905001 -12.4252788331156996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627497472 2481422165627497472 1011650803 2015.5 25.1021897188668 0.91732504258415104 -3.09175223796151011 0.675889160365831021 1.07821426042091995 1.09553555057378005 0.984189199999999986 32.7117474688228995 1.66187064652409999 7.99481694716234959 1.17182996551098006 0.0868148299999999956 0.52097389999999999 0.0603680050000000024 0.138467580000000007 -0.178507030000000011 0.0651896700000000051 0.237703040000000004 0.00510176200000000014 0.147699180000000013 0.179924699999999993 158 0 157 1 10.7249669999999995 424.837006 4.70438224338383026 14.3041215399071007 31 false 0.0271407869999999996 1.58890520442959993 0.199992268673885004 0.0314184200000000025 18 10 1.48325660000000004 0 18 false 158 193.162256174730004 1.38438469728609004 139.529007 19.9735599999999991 12 66.8966571753148997 10.3472933679737 6.46513600000000022 20.7878779999999992 15 305.698224292944019 7.58693589115249001 40.2927129999999991 18.548687000000001 1.92892179999999991 0 2.23919099999999993 0.814317700000000033 1.42487340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.007859610320992 -63.2623085825282985 22.1019137848026013 -12.5909724535704992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422165627567488 2481422165627567488 432948762 2015.5 25.1039503510083009 0.622693537246709949 -3.09165768123990015 0.525420090637758963 0.0479284542781696007 0.736132656365897975 0.0651084499999999983 -5.13847387869947969 1.28054896653651995 -1.11024349234092989 1.10816832346262006 0.194506939999999989 0.403762549999999998 0.0737515599999999938 0.0426668820000000032 -0.136354449999999988 0.0253532250000000001 -0.00351415850000000004 -0.0882955400000000057 0.0602085779999999987 0.311968179999999984 140 0 140 0 1.82874739999999991 166.565994 0 0 31 false 0.0527813619999999983 1.39283791022388992 0.176312746094000994 0.0771413199999999993 16 10 1.21607789999999993 0 16 false 131 140.420642695158989 1.05646362576252995 132.916 20.3197879999999991 12 92.5019896980419958 10.3897097022565994 8.90323199999999915 20.4360099999999996 13 97.8991087057770955 9.02912253577490986 10.8425940000000001 19.7849730000000008 1.35593380000000008 0 0.651037199999999983 0.11622238 0.534814829999999963 \N \N 0 \N \N \N NOT_AVAILABLE 151.01131856977301 -63.2614852387947977 22.1036237530375992 -12.5915334442036997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417286544524800 2481417286544524800 1578508695 2015.5 25.0550495734949017 0.0354641252432600015 -3.08854028931258018 0.0259546368917202008 4.63842274611884964 0.0417127610964561982 111.199129999999997 2.05890383963865986 0.0639690475694170008 -15.9034248512492997 0.0571832147042491967 -0.0248026800000000006 0.542278469999999957 -0.0319850740000000022 0.0117992900000000005 -0.253028570000000008 -0.108185980000000001 -0.249147089999999988 0.0648323449999999996 0.144821809999999995 0.255870199999999992 185 185 182 3 3.2342550000000001 244.264999 0 1.05628451229785997e-15 31 true 416.019259999999974 1.60074998598157991 0.00921081189203657065 -0.0215465560000000014 21 10 0.0436609130000000026 0 21 false 174 379111.863636606024 86.1319108610103967 4401.52979 11.7414470000000009 21 196339.40489871701 213.847495445203009 918.128199999999993 12.1188699999999994 19 261157.181655183987 166.039501983007 1572.86169999999993 11.2196660000000001 1.20675890000000008 0 0.899204250000000038 0.377422329999999973 0.521781900000000021 9.28879084155808954 1.36606004193986008 6 5250 3.5 -0.25 NOT_AVAILABLE 150.909833333909006 -63.2791055838258032 22.0583052927538006 -12.5706113214873003 100001 5495 5438 6060.64014 0.0989999995 0.00889999978 0.201499999 0.0443000011 0.00289999996 0.0811000019 200111 0.930967329999999982 0.765302099999999985 0.950586000000000042 0.711925200000000036 0.702678699999999989 0.72117173999999995 +1635721458409799680 Gaia DR2 2481417320904391552 2481417320904391552 653733194 2015.5 25.0540050683613984 0.320262366668734977 -3.08278898207068996 0.241203265951206003 2.04920896280126996 0.383691296066129006 5.34077499999999983 9.38533032327950067 0.646280666721376962 0.663436946231053981 0.43002178034330002 -0.00272798240000000003 0.428809080000000009 0.0970044000000000045 0.0441900100000000018 -0.258460760000000012 0.0199001489999999989 0.298447159999999989 -0.066867029999999994 0.0704818499999999987 0.0991608999999999963 176 0 173 3 3.95979599999999987 250.667999 1.09535865201342997 2.74017266384768021 31 false 0.194540249999999998 1.33459395096901989 0.0747552394961882999 -0.0177713479999999993 21 10 0.570816639999999986 0 21 false 174 422.528927220915023 1.52016490454566999 277.949005 19.1237239999999993 19 98.788239633960103 8.84352804750317922 11.1706819999999993 20.3646260000000012 18 534.186959506306948 7.55242346762326999 70.7305400000000049 17.9426859999999984 1.49806360000000005 0 2.42193980000000009 1.24090199999999995 1.18103789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.902379290525005 -63.2743170770024008 22.0594876672278986 -12.5648812650292001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481417389623874304 2481417389623874304 965754051 2015.5 25.0495387813244008 0.490288993970133979 -3.06544248707269995 0.381182117672489995 -0.417315631354301997 0.582855497364567987 -0.715984700000000029 3.85738298954708991 1.03811728688280991 -5.36316635331296965 0.765030071877842999 0.0619958379999999976 0.367604429999999982 0.0899038999999999949 0.0292444500000000017 -0.229974050000000013 0.0349092400000000011 0.138074009999999997 -0.109977510000000001 0.0453902559999999969 0.195067440000000009 166 0 164 2 -0.179025230000000007 155.171997 0 0 31 false 0.0776565449999999935 1.52922271596760995 0.13493573415601201 0.00238470520000000005 19 10 0.931101599999999974 0 20 true 163 181.368275742196005 1.09987139435674997 164.899994 20.0419620000000016 17 109.929233744491995 12.3571416582870999 8.89600850000000065 20.2486059999999988 15 128.195578115307995 7.19493929554502998 17.8174649999999986 19.4922369999999994 1.31293539999999997 0 0.756368640000000036 0.206644059999999991 0.549724600000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.877258440655993 -63.2604210337694965 22.0618023066462996 -12.5471136854876004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423196419655296 2481423196419655296 673179038 2015.5 25.0643024118995008 0.553539608135042993 -3.07298213393172981 0.347252196242736011 0.842153960599879015 0.678200774277762042 1.24174730000000011 -0.468027011838363982 0.876402816871003965 -1.60404130672202005 0.624324967592421953 -0.159612900000000002 0.650162939999999967 0.105903155999999998 0.0516856050000000025 -0.374398500000000023 -0.0012984991999999999 0.124941940000000001 0.00849437800000000034 0.0760395749999999981 0.188131629999999994 166 0 164 2 2.98573760000000021 217.585007 1.58295131973583003 2.80384465674725014 31 false 0.0974721399999999988 1.65308065483919009 0.116657044380366004 -0.0270951260000000006 20 10 0.788052560000000013 0 20 false 165 280.458162594695011 1.44299435062179993 194.358002 19.5686950000000017 17 144.846538157062014 10.5890838024265008 13.6788550000000004 19.9491179999999986 18 204.067992174435005 11.2729718360555005 18.1024129999999985 18.987482 1.24408760000000007 0 0.961635600000000035 0.3804226 0.58121299999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.914029117256007 -63.2611094063465984 22.0729874075387009 -12.5595631752643992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423265139138432 2481423265139138432 1284154579 2015.5 25.0530592917851997 0.153771274502889993 -3.05882656555457988 0.109722840120484 -0.0140070051398776992 0.182290758686912996 -0.0768388099999999935 0.538443386631972998 0.307942247548330994 -1.9215239139328899 0.210648825394673 -0.0114424369999999997 0.41842857 0.0371398740000000033 0.0459317200000000023 -0.283370549999999999 0.0099245140000000006 0.0623564500000000008 -0.0310368869999999991 0.107493736000000006 0.174214809999999998 169 0 166 3 2.5008547000000001 209.380005 0.386364825674400003 1.31618537427362003 31 false 0.893218500000000026 1.61992046556116009 0.0391505841258528997 -0.0346407899999999977 20 10 0.275674340000000018 0 20 false 163 1212.96578844347005 2.25272971761109986 538.442993 17.978745 16 592.552065096803972 10.7357372464771004 55.19435 18.4195729999999998 16 903.791421400644026 5.99377071228347003 150.788450000000012 17.3717499999999987 1.2336239 0 1.04782299999999995 0.440828319999999996 0.606994600000000051 \N \N 0 \N \N \N NOT_AVAILABLE 150.878215860636004 -63.2529414999162967 22.0676515065349008 -12.5422629171360995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109314176 2481374646109314176 222683251 2015.5 25.1831233360936011 0.410726323446410024 -3.1379202185433801 0.310800724476018975 0.693344741425802047 0.506367691343573956 1.36925150000000007 1.55847095199946994 0.738666468829169975 -8.41676752659165039 0.556578985625017952 0.196547300000000008 0.540578499999999962 0.082124050000000004 0.118849023999999998 -0.0708474099999999996 0.0322522900000000029 0.191480199999999989 -0.0354709699999999975 0.152029019999999987 0.205462649999999997 154 0 153 1 3.60178779999999987 218.154007 1.29984591375069991 2.65259091609850994 31 false 0.137973519999999988 1.32533676202222006 0.101815496559112997 0.0724567799999999984 18 10 0.666522100000000006 0 18 false 152 342.391761967274988 1.43706350379276993 238.257996 19.3520579999999995 15 145.767005721548998 28.2085015252016014 5.16748480000000043 19.9422400000000017 13 405.20453516289399 10.3416976244046008 39.1816249999999968 18.2427349999999997 1.60918460000000008 0 1.69950489999999999 0.590181350000000049 1.10932349999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.214017428960005 -63.2701733538715985 22.1614271215587983 -12.6637035997816003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426220076641408 2481426220076641408 1550589172 2015.5 25.0547546730377988 0.0369391195743516004 -3.05279898922568993 0.026784720970567201 1.13814052004681998 0.0439556842968754982 25.8929079999999985 11.1383043335398995 0.0693751096879190038 0.362069699099548004 0.0549749192588813024 -0.0236271119999999987 0.500832559999999982 -0.0424397359999999987 0.0411191249999999994 -0.285095539999999981 -0.0345373500000000014 -0.0882107240000000042 0.0389367300000000027 0.126602400000000004 0.2347997 184 0 183 1 -1.23930699999999994 155.016998 0 0 31 true 18.6149979999999999 1.57390682009355998 0.00933431528337514034 -0.0103242209999999997 21 10 0.0707795400000000019 0 21 false 182 15505.3646171795008 7.31343751513149964 2120.12012 15.212161 18 7762.18211744092969 37.4808369999269004 207.097350000000006 15.6264289999999999 15 11268.2321917615009 13.1239790460885999 858.598749999999995 14.6322799999999997 1.22734389999999993 0 0.994148249999999956 0.41426753999999999 0.579880700000000027 \N \N 0 \N \N \N NOT_AVAILABLE 150.876040166204007 -63.2467577443484004 22.0715428401772016 -12.5372860543273994 100001 5207.24023 5050.97998 5564.56006 0.0329999998 0.0186999999 0.158999994 0.0153000001 0.00600000005 0.0776999965 200111 0.870615539999999966 0.762394849999999957 0.925316600000000045 0.502085859999999995 0.458599749999999973 0.545571999999999946 +1635721458409799680 Gaia DR2 2481423303794363648 2481423303794363648 945679276 2015.5 25.0726613904380002 0.0940375032597015048 -3.05138923577605015 0.0668200674533837025 3.78386546158390979 0.113152909085458997 33.4402850000000029 -35.6406694011173002 0.177030492899025005 -1.55815830280678003 0.122850741589861007 -0.0185147239999999998 0.486803229999999976 0.0109772914999999999 0.0741809159999999995 -0.28036177000000001 0.0194595959999999991 0.109360814000000001 0.00869259600000000035 0.119480370000000002 0.17343320000000001 187 0 185 2 2.35916879999999995 227.794006 0.303257721334618979 2.29806985440820988 31 false 2.314635 1.30549938767957996 0.0216937003020624998 -0.00486015900000000018 21 10 0.160739330000000014 0 21 false 184 2831.98704809583978 2.84979897961525008 993.75 17.0581379999999996 19 674.132098320231989 10.1543927566260006 66.388220000000004 18.2795260000000006 20 3332.24606157847984 15.8798512439690001 209.841139999999996 15.9550769999999993 1.41468799999999995 0 2.3244486000000002 1.22138790000000008 1.10306069999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.910814547959006 -63.2380045827262975 22.0891005811566998 -12.5425763313630991 100001 3722.91992 3442 3983.56006 0.31099999 0.217500001 0.419 0.174999997 0.1215 0.234999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423372513840256 2481423372513840256 1323964022 2015.5 25.1053777220929 0.135574335387683986 -3.04852133069538 0.0819267398515163003 0.841248935857827007 0.162094070171137999 5.18988099999999974 16.0707127289953995 0.201294279358474992 -19.8358015680268984 0.137540872624627997 -0.265600119999999995 0.697307200000000016 0.137666359999999988 0.0471754929999999989 -0.414217380000000024 -0.103438749999999996 0.15959717000000001 0.112696190000000002 0.127525840000000001 0.0838118300000000038 160 0 158 2 2.52803800000000001 200.820007 0.286561972941210996 1.69383119312566 31 false 2.0449647999999998 1.56577383939751003 0.0263890844139118008 -0.0479959319999999981 18 9 0.187230270000000004 0 18 false 156 2536.15852956527988 3.22455534611700978 786.513977 17.1779249999999983 15 1038.28881977252991 14.5071757094203004 71.5707100000000054 17.8105930000000008 15 2165.85289438331984 10.7395370703680992 201.670970000000011 16.4228479999999983 1.2633839 0 1.38774489999999995 0.632667540000000028 0.755077360000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.974023586891008 -63.221725599483797 22.1212914831668996 -12.5519681032638992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481426323155868160 2481426323155868160 808480484 2015.5 25.0470718752204995 0.381137368271406984 -3.02502415092670018 0.258203417597912988 1.79835735905687 0.502629913966391006 3.57789560000000018 0.115142770826938995 0.592615920600973012 -11.3343477960480996 0.394685366748173005 -0.278642149999999977 0.663931599999999955 0.0198141949999999997 0.0294441149999999999 -0.555917259999999969 0.154852849999999986 0.335375040000000013 -0.0736475600000000008 -0.0763218499999999966 0.23767814000000001 168 0 167 1 10.7973389999999991 443.128998 1.55915963250503009 12.1950009207114007 31 false 0.229314099999999993 1.23200032070437993 0.0748971011339712028 -0.0113540370000000009 19 9 0.538518300000000005 0 19 false 168 760.899582805746945 2.8349610272295398 268.398987 18.485047999999999 17 144.969869551834989 11.6134414566051998 12.4829380000000008 19.9481949999999983 17 1087.20174415429005 17.6714346949769983 61.5231169999999992 17.1711440000000017 1.61936159999999996 0 2.77705000000000002 1.46314619999999995 1.31390380000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.834816207307 -63.2247196175164987 22.0747416260110008 -12.5086408107944003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423436939242624 2481423436939242624 881543174 2015.5 25.0887223713045984 1.7296927522313299 -3.02715246376879987 3.93774269678196998 \N \N \N \N \N \N \N -0.514820599999999962 \N \N \N \N \N \N \N \N \N 77 0 76 1 -0.839634199999999997 60.8536987 0 0 3 false 0.0209705329999999995 \N \N -0.109584643999999995 9 7 12.0555524999999992 0 9 false 74 92.1270019647477056 1.56320867190031998 58.9346008 20.7774000000000001 5 37.356534622028299 9.1650823055742805 4.07596299999999978 21.4204709999999992 6 96.4881671078462944 5.11991264067427032 18.8456669999999988 19.8007349999999995 1.4528281999999999 0 1.61973569999999989 0.643072100000000035 0.976663599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 150.920654612675008 -63.2092817828562019 22.1135340446183015 -12.5259698597552003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368877968810240 2481368877968810240 569701847 2015.5 25.1156031157000008 0.062228792797489399 -3.1639376571704001 0.0422148149425118982 0.510957255537130006 0.0715164145142363067 7.14461499999999994 -0.20164107486024499 0.116916129979568004 -3.74053132215369022 0.082589108041802306 0.0742454449999999933 0.499280500000000016 -0.164204089999999997 0.0695725400000000022 -0.123560840000000005 -0.0171162059999999984 -0.0778551900000000047 0.0931725399999999981 0.159916730000000007 0.180346859999999998 147 0 146 1 -1.78540600000000005 112.517998 0 0 31 true 7.66739269999999973 1.60066597339381 0.0144200443306884002 0.00797457900000000074 17 10 0.110241729999999996 0 18 false 144 6690.06603337280012 5.08314233003151017 1316.13 16.1247900000000008 17 3672.16305604484978 23.248601903147101 157.951999999999998 16.4390830000000001 16 4390.25276285913969 13.8913759148253 316.041600000000017 15.6556960000000007 1.20513249999999994 0 0.78338719999999995 0.314292899999999986 0.469094279999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.102381450990009 -63.322186877948198 22.0873647464845 -12.6630041072248005 100001 6152.81982 5866.75 6710.45996 0.0680000037 0.0175999999 0.168400005 0.0430000015 0.00789999962 0.0922999978 200111 0.878366769999999963 0.738447799999999988 0.966115830000000009 0.996192929999999977 0.702378300000000011 1.29000760000000003 +1635721458409799680 Gaia DR2 2481368912328548480 2481368912328548480 1336477519 2015.5 25.1368350497974014 0.0404551254964614013 -3.15951948709310004 0.0290231740582880988 3.83661256536024009 0.0475222827464603023 80.7329199999999929 7.14197116248941999 0.0667809899491011993 -4.0907112209575196 0.0610674975520201987 0.128486479999999986 0.62009000000000003 -0.0476771969999999976 0.00957889900000000009 -0.0730159060000000054 -0.109056899999999998 -0.276945200000000002 0.0652032000000000028 0.135667160000000009 0.279232599999999997 158 158 158 0 4.84873439999999967 253.522003 0 0 31 true 384.687099999999987 1.58774399621110995 0.0102173420159867995 0.0525442100000000009 18 10 0.0447368250000000009 0 18 false 156 310044.78867571702 125.052117286026998 2479.32007 11.9598049999999994 17 162170.455582207011 310.621799729016004 522.083300000000008 12.3264589999999998 16 211704.188373031997 231.791740675198014 913.337949999999978 11.447597 1.20587299999999997 1 0.878862400000000044 0.366654399999999991 0.512207999999999997 8.12497739607190006 1.37633377615178998 6 5500 4.5 0 NOT_AVAILABLE 151.141057378842987 -63.3092530304277972 22.1092301273307008 -12.6667230985288004 100002 5486.1001 5416.2998 5596 0.152999997 0.067900002 0.217600003 0.075000003 0.0285 0.104199998 200111 1.02162839999999999 0.981894849999999986 1.04813050000000008 0.851795799999999992 0.837098899999999979 0.866492700000000005 +1635721458409799680 Gaia DR2 2481368908034516480 2481368908034516480 441491997 2015.5 25.1350461133970988 0.633581807360337979 -3.15890867531462005 0.554540810124597994 -0.697845683761128988 0.777853882362775972 -0.897142400000000007 24.007480441110701 1.20589821146424003 -13.9864142340495992 1.08585571416372995 0.366903069999999998 0.481959099999999974 -0.0157487410000000001 -0.0556080830000000026 0.00497107599999999962 -0.163777100000000009 -0.217320619999999992 -0.017231139999999999 0.18344916 0.337599780000000016 100 0 100 0 2.07267879999999982 125.723999 0.723205656034787037 0.295686167982413983 31 false 0.0812328199999999973 1.38132591320852005 0.177878485728798996 0.142120820000000009 13 9 1.17858759999999996 0 13 false 102 194.13740597635001 2.03763469200693992 95.2759018 19.9680919999999986 8 205.514456494489991 39.417818344150497 5.2137450000000003 19.5692829999999987 8 287.817458393026016 32.4908176319165989 8.85842399999999941 18.6141259999999988 2.54114819999999986 0 0.955156299999999958 -0.39880943000000002 1.35396580000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.136877935911997 -63.3094516083861976 22.1077596891743013 -12.6654961380796998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481369011112215424 2481369011112215424 272337506 2015.5 25.1352637073733014 0.17179572425662501 -3.14877594964930019 0.122780499730161002 -0.0954460778344452948 0.208348755137927999 -0.458107260000000016 -0.133048873398181 0.305318133813724024 -2.34218188577872022 0.222127704713190988 0.159011299999999994 0.552256639999999965 0.0310687179999999986 0.112847970000000006 -0.0691044600000000064 0.0189325530000000013 0.134477230000000003 -0.000115591973999999996 0.163448869999999996 0.185470539999999989 159 0 157 2 1.32751269999999999 175.606003 0.0372228429905809011 0.00960448181616303971 31 false 0.807755349999999983 1.63629993879018998 0.0405667716306076995 0.0427234199999999981 18 10 0.274477120000000019 0 18 false 157 993.982389427317003 2.03466760610919017 488.52301 18.1949199999999998 17 448.098635784164003 10.7442545272110994 41.705883 18.7229540000000014 16 779.073851116981018 8.03984954465781954 96.9015399999999971 17.5329739999999994 1.23460189999999992 0 1.18997960000000003 0.528034200000000009 0.661945340000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.127816183526988 -63.3001700783649 22.1117996872687002 -12.6561590170174991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481368942392735104 2481368942392735104 458830203 2015.5 25.1449374707095998 0.221460409148406007 -3.1580232787573701 0.176173879502573988 2.85363963734203008 0.298330803171634018 9.56535299999999999 -17.7680995647328999 0.401040203733075973 -20.4343521191296986 0.302964634628293983 0.165377049999999998 0.511398429999999959 0.0513850260000000003 0.131218539999999995 -0.216299429999999987 -0.047570556 0.0475507750000000035 0.0840682900000000038 0.269090920000000011 0.255221750000000025 148 0 147 1 0.472265299999999999 149.417999 0.264113770747223975 0.279703901426699986 31 false 0.483021299999999987 1.21410710629724994 0.0534237799086674028 0.0974624999999999936 17 9 0.368779630000000025 0 17 false 147 675.320177128695946 1.72949166425499001 390.472992 18.6145919999999983 13 115.548923887791005 5.44509724018830976 21.2207280000000011 20.1944729999999986 13 916.647618880872983 7.29023542662642043 125.736350000000002 17.3564149999999984 1.5284549999999999 0 2.83805849999999982 1.57988170000000006 1.25817679999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.155985851575991 -63.3044867466746979 22.1175026429309014 -12.6683184032420009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374822203547648 2481374822203547648 516996499 2015.5 25.1599660375448018 0.0417686919791038017 -3.14064142920183986 0.0300778149012356985 4.23305512019499997 0.0491696934279126988 86.0907399999999967 36.8664464081010976 0.0769866745964875032 5.86183584120249002 0.0619462181102607007 0.057837274000000001 0.53464067000000004 -0.0554350470000000012 0.00768836699999999977 -0.145141569999999998 -0.114322729999999997 -0.115136034999999998 0.0708149750000000022 0.171559180000000006 0.168616070000000007 144 0 144 0 1.82108639999999999 170.862 0.0523091057442887017 0.288284249976888007 31 false 19.5435049999999997 1.3977938967363599 0.0110196406367576005 0.0203015099999999983 17 10 0.076286875000000004 0 17 false 143 16582.0934476172988 12.5438863965572995 1321.93005 15.1392670000000003 16 4994.63271940937011 21.0907440917545017 236.816329999999994 16.1051299999999991 16 17210.2619236042992 36.8902444230919997 466.526099999999985 14.1724510000000006 1.33908880000000008 0 1.93267820000000001 0.965862299999999951 0.96681594999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.169955423465012 -63.2823985428009976 22.1383714616667007 -12.6577011580509993 100001 4182.31006 3875.53003 4481.06982 0.185000002 0.165999994 0.417499989 0.0960000008 0.0860000029 0.220799997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373787115838464 2481373787115838464 1525843759 2015.5 25.2006870033297012 0.219383913484461013 -3.17173601381924009 0.159741592356472006 1.44669984891604009 0.263416896305763981 5.49205400000000044 2.26464926596267979 0.419023326382671979 2.00256200615354008 0.287533555179717015 0.155391599999999991 0.48688140000000002 -0.0550003540000000013 0.114992960000000005 -0.100677446000000004 0.0359273930000000019 0.162465209999999999 0.0281530400000000007 0.148876439999999999 0.180182189999999992 157 0 154 3 2.57497119999999979 197.212997 0.318184679392938985 0.413060908074093014 31 false 0.47682819999999998 1.3914435988787599 0.0555320548289948007 0.0569270850000000023 18 10 0.373905150000000019 0 18 false 150 724.44426244239196 2.16180309857104014 335.110992 18.5383530000000007 14 199.122578318089012 7.38619424894164034 26.9587520000000005 19.603586 16 826.268558623929039 12.3155996625342006 67.091220000000007 17.4691159999999996 1.41541760000000005 0 2.13446999999999987 1.06523319999999999 1.0692368000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.281164427301007 -63.2934037472129987 22.1653464051577984 -12.7016039392229008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267743872 2481374852267743872 1322431757 2015.5 25.1670351378649997 1.02126802468559008 -3.13930662971816021 0.696950797240124986 -1.14423018631719997 1.24288683955894008 -0.920622999999999969 1.46923992393051006 1.83297301336426011 -0.577343494274888958 1.23071810578760998 0.0929724200000000001 0.534371499999999999 0.0549359499999999973 0.121503539999999993 -0.13196250000000001 0.0173618660000000001 0.150557679999999999 0.00212632240000000007 0.186000689999999996 0.152191639999999989 152 0 152 0 17.7084329999999994 705.776978 5.57335854204726999 28.8607065324480985 31 false 0.0240414590000000011 1.4466518230727301 0.218003994336482987 0.0360314139999999977 18 10 1.62352070000000004 0 18 false 151 270.663854022071007 1.76193714341610996 153.617004 19.607289999999999 14 248.726479793032013 11.4221160903657992 21.7758670000000016 19.3620829999999984 17 404.570566966293995 8.4913075486898002 47.6452600000000004 18.2444339999999983 2.41368410000000022 0 1.11764909999999995 -0.245206829999999987 1.36285590000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.18293687827699 -63.2782109783872002 22.1456000731361016 -12.6590651075590994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373924554799872 2481373924554799872 594101444 2015.5 25.2046824796705984 0.177267752264453987 -3.15413953016087989 0.125378664319127003 5.0917536315640497 0.217714665347038011 23.3872800000000005 73.0986005019929053 0.31538478208139098 -34.0153749784752009 0.225432188345176004 0.102276590000000001 0.544054150000000014 0.0219881069999999998 0.117083080000000006 -0.155617699999999998 0.021975886 0.111148040000000004 0.0234096869999999985 0.169360530000000009 0.199430049999999998 157 0 154 3 6.09460639999999998 279.898987 0.743145584755832034 6.57585454666574964 31 false 0.780693230000000016 1.25777634271912997 0.0425747147504257004 0.0574123399999999992 18 10 0.283775119999999992 0 18 false 153 1525.88059724179993 2.51693640818445008 606.244995 17.7295650000000009 16 224.148117888579009 11.0182295735103999 20.3433880000000009 19.4750499999999995 14 2161.58394502394003 12.7231139441788006 169.894260000000003 16.4249900000000011 1.5635116 0 3.05006030000000017 1.74548529999999991 1.30457500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.272640176927013 -63.2757723533082981 22.1758017911717005 -12.6867205574778001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374646109309824 2481374646109309824 904526061 2015.5 25.1873142598748991 0.300914064394967984 -3.14537589730813005 0.221455798655427 1.80404624880440001 0.371875747966896986 4.85120729999999956 12.1237579696729991 0.533190648413136015 -8.13918759806288072 0.390646026634142995 0.181769099999999989 0.554415760000000035 0.0759530699999999975 0.125488330000000009 -0.0522046869999999996 0.0108783119999999994 0.19807654999999999 -0.0192175680000000008 0.183292759999999999 0.167460369999999997 156 0 154 2 0.799753700000000012 162.529007 0 0 31 false 0.263084229999999974 1.38721896858923999 0.0739258557058277976 0.053584699999999999 18 10 0.476918249999999988 0 18 false 155 433.071732714586972 1.42358233929913003 304.213013 19.0969659999999983 16 89.5475080270852004 8.41465410270775926 10.6418520000000001 20.4712539999999983 14 553.455505484546052 8.60846739252466087 64.2919899999999984 17.9042129999999986 1.48474940000000011 0 2.56704139999999992 1.37428860000000008 1.19275280000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.229453771271011 -63.2751634487414023 22.1625942096061017 -12.6721771849922007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835320448 2481373855835320448 1594648232 2015.5 25.2266561982422992 0.0544494357109435029 -3.16070143590127994 0.0437447230980239979 0.504765393913645055 0.0681099051067568934 7.41104200000000013 0.812967079309324991 0.101653240792728 2.22420565434011985 0.0925177591382931042 0.121318469999999998 0.526513200000000015 -0.00967021300000000042 0.0291300380000000005 -0.228151660000000006 -0.00648175100000000001 -0.069024550000000004 -0.0152233160000000006 0.0643835140000000028 0.368457880000000015 139 0 138 1 -1.44568809999999992 110.197998 0 0 31 false 9.54473800000000061 1.64438254107193993 0.0148638469017146006 0.118234019999999995 16 10 0.105788924000000006 0 16 false 138 7960.51520261220958 6.0221915880299699 1321.85999 15.9360130000000009 14 4272.21610188690011 13.4519624382195992 317.590550000000007 16.274754999999999 16 5369.17894166002043 11.9312205348071991 450.01085999999998 15.4371500000000008 1.2111521999999999 0 0.837605500000000003 0.338742260000000017 0.498863219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.323015077151013 -63.2724255943049982 22.1942244372371995 -12.7009132386121006 100001 5789.5 5586.4502 5839.75 0.183200002 0.0599999987 0.354999989 0.0737999976 0.0286999997 0.164800003 200111 1.10368479999999991 1.08477249999999992 1.1853726 1.23296019999999995 0.880782700000000029 1.58513769999999998 +1635721458409799680 Gaia DR2 2481373684036627840 2481373684036627840 1415869562 2015.5 25.2450846864165008 0.40671561834334502 -3.1619758784164298 0.336883006309911026 0.473705826993260026 0.506055046940510955 0.936075699999999955 12.5242288507352999 0.806331544559301006 1.56579289916483 0.611521102601434996 0.201595780000000002 0.44232096999999998 0.0782338399999999989 0.106884725 -0.133379560000000008 0.0708320399999999989 0.259384449999999989 -0.0854778000000000066 0.0871233639999999948 0.22265045 138 0 136 2 -0.454155150000000007 123.144997 0 0 31 false 0.139824570000000009 1.34541915851065008 0.110253060219204002 0.102159254000000005 16 10 0.731036660000000005 0 16 false 136 269.154326007819975 1.37928990053542 195.139999 19.6133629999999997 12 70.6000701764705951 8.20989409632760037 8.59938900000000039 20.7293759999999985 13 314.077141589743007 19.3394761481711015 16.2402100000000011 18.5193300000000001 1.4292068 0 2.2100468000000002 1.11601259999999991 1.09403420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.361263853205998 -63.2657764078034006 22.2112748860993001 -12.7088847170532002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373855835322624 2481373855835322624 1493632946 2015.5 25.2247452331255992 0.240420634383398002 -3.15499439173339002 0.187977411073418005 4.88488414209192001 0.298692944391795001 16.3541999999999987 -16.7873245418619987 0.449834138452797017 -94.0679373527991061 0.33646275761685901 0.106342679999999995 0.481413800000000003 0.0136295229999999993 0.130754829999999989 -0.21620840999999999 0.139049740000000005 0.22208718999999999 -0.0476830270000000028 0.054077743999999997 0.253596780000000022 140 0 137 3 3.35813380000000006 193.565002 0.829411651889202961 3.53311315587392993 31 false 0.423710260000000005 1.14513976691183994 0.0629656757340931045 0.0797678160000000053 16 10 0.411056939999999982 0 16 false 138 795.104044022595986 2.02286980698319008 393.057007 18.4373049999999985 13 116.247978124672997 9.40871501051534054 12.3553510000000006 20.1879249999999999 14 1112.50430425939999 8.74035162810777955 127.283699999999996 17.1461660000000009 1.54539810000000011 0 3.04175949999999995 1.75061990000000001 1.29113959999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.313795771635 -63.2680648539864023 22.1945643662039984 -12.6949048203033996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481373890195062144 2481373890195062144 23463638 2015.5 25.2322543214203989 0.288482877228459 -3.15208624901486978 0.240523192311448003 0.293609831651192976 0.359186991948658996 0.817428900000000014 9.7910404754422995 0.572831280545913035 -4.13269746526519999 0.440196403390988977 0.133637189999999989 0.452312649999999983 0.116176639999999998 0.0641888199999999937 -0.130203079999999999 -0.00503665950000000036 0.296764199999999978 -0.0897934499999999969 0.114562730000000002 0.124317949999999997 138 0 137 1 1.0947171 149.871002 0.292442138470858981 0.185981280919807007 31 false 0.274855499999999975 1.58745528065864994 0.0791253833624609021 0.0781846340000000029 16 10 0.510235899999999964 0 16 false 135 452.293380865910024 1.58795529949017999 284.828003 19.0498140000000014 14 258.696250565623018 9.69459065054637037 26.6845970000000001 19.3194119999999998 12 312.271428578036989 15.0327294177631003 20.7727700000000013 18.5255890000000001 1.2623835000000001 0 0.793823240000000041 0.269598000000000004 0.524225229999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.32615237599299 -63.2622533869894994 22.2028075939382994 -12.6949672842797998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374061995449856 2481374061995449856 1673449216 2015.5 25.2496945283686998 0.908332307226097035 -3.15576665015534985 0.74285603370715203 0.145083664142963004 1.19414140587249995 0.121496215000000005 -2.05661509272260012 1.54524587537452995 -14.6639140009060007 1.97633913496202007 0.126763920000000002 0.660018899999999964 0.160665140000000012 -0.156883020000000012 -0.190564779999999989 -0.185889040000000005 -0.2467694 -0.153661700000000012 -0.062066004000000001 0.520660939999999961 115 0 114 1 -0.789367799999999953 97.1369019 0 0 31 false 0.0549588650000000026 1.66332839828275003 0.217930714791468 0.129300190000000009 14 9 1.95471290000000009 0 14 false 110 123.53422749376 1.14658913683123997 107.740997 20.4588970000000003 7 187.286419126717988 53.8854088608686013 3.47564239999999991 19.6701219999999992 11 174.773001859706 11.1631701074039995 15.6562160000000006 19.155735 2.93084290000000003 0 0.514387130000000026 -0.788774500000000045 1.30316159999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.364670784417001 -63.2582007164404985 22.2180081902839994 -12.7048107960738008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481371076992090496 2481371076992090496 587637094 2015.5 25.2927949237093017 0.0600520886954652028 -3.15915569666125995 0.0364748829953022019 0.930781776008602013 0.0751144887579523052 12.391508 17.821746540686501 0.0871300643828725047 -5.52096442370685025 0.0727355364621150025 -0.118940939999999995 0.715560439999999964 0.0941749499999999934 0.0732453500000000007 -0.352982159999999989 0.00389988490000000004 -0.0643590899999999938 -0.00397120399999999988 0.0749443500000000068 0.337525870000000006 123 0 122 1 1.87130079999999999 147.244995 0.129932202499279004 1.82713422496897993 31 false 17.3486559999999983 1.58806567270197996 0.0132106665133584003 0.0356094730000000026 14 9 0.0876164999999999999 0 14 false 117 20123.447195274799 10.1876049674411 1975.29004 14.9291099999999997 10 10032.6893630795003 32.8424829205657005 305.478999999999985 15.3478449999999995 12 14537.8386641978996 39.8648523830425034 364.678099999999972 14.3556699999999999 1.22099010000000008 0 0.992175099999999976 0.418735499999999983 0.573439600000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.454420147479993 -63.2429783570421975 22.2577348183764983 -12.7238301710601007 100001 5336.5 5289 5348 \N \N \N \N \N \N 200111 1.14386739999999998 1.13895330000000006 1.16450560000000003 0.956031399999999976 0.794147599999999954 1.11791520000000011 +1635721458409799680 Gaia DR2 2481374061993751808 2481374061993751808 927357712 2015.5 25.2609162688791002 0.556403264858380986 -3.15855363433038994 0.321914071919081002 -0.224552315183663004 0.737225142411511047 -0.304591239999999985 2.09216190169710003 0.701024674532242043 -4.95164003305186018 0.530109039268059967 -0.200928749999999989 0.782764899999999986 0.140345830000000005 0.0902597460000000018 -0.408822100000000022 0.0359315239999999994 0.225434600000000013 0.0340535270000000001 0.0694662499999999933 0.229714589999999996 139 0 138 1 1.00937769999999993 149.429001 0 0 31 false 0.161612420000000007 1.72827211976567008 0.104132199539714004 0.056191480000000002 16 9 0.739221000000000017 0 16 false 136 325.876908779030998 1.35496424123556003 240.505997 19.4057309999999994 14 180.943623554353991 5.62164057791570038 32.1869769999999988 19.7075299999999984 15 205.160047554041 13.1145840327217993 15.6436569999999993 18.9816879999999983 1.1848145000000001 0 0.725841500000000028 0.301797870000000024 0.424043659999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.389844729276007 -63.2559669349726974 22.2276310275188003 -12.7115335164470995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481415946514834560 2481415946514834560 41319625 2015.5 25.1251851685008987 0.310488488961867981 -3.13356521170734981 0.22707193515042301 0.710572961797523051 0.378157719762264977 1.87903859999999989 2.35643291311661018 0.541213614998876991 -5.77757292527190014 0.411968062804240975 0.198264799999999991 0.57037574000000002 0.0636497139999999961 0.111748349999999996 -0.032509490000000002 0.0209846249999999998 0.144890560000000002 -0.0225940459999999996 0.154112350000000009 0.203070219999999996 159 0 157 2 0.546962139999999986 161.044006 0 0 31 false 0.244132979999999999 1.6217540864523301 0.0743618592332361966 0.0477314849999999971 18 10 0.488577600000000001 0 18 false 155 421.737243705475976 1.59570336082276998 264.29599 19.1257610000000007 14 226.52093287771001 8.76884589807628956 25.8324679999999987 19.4636169999999993 15 268.163931843869022 9.1265582184987899 29.3828099999999992 18.6909199999999984 1.1729693000000001 0 0.772697450000000008 0.337856299999999998 0.434841160000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.093256467548997 -63.290608065546401 22.1079678042702987 -12.6383079929877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374920987226112 2481374920987226112 344684104 2015.5 25.1576162938030983 0.450153875246391999 -3.12748584770498983 0.372447573239551022 1.36834426396512998 0.601131184374775973 2.27628230000000009 8.41173808693780067 0.847404571385833028 1.69204387802156009 0.641350999656481013 0.20770574 0.464914949999999993 0.108908530000000003 0.110383703999999999 -0.157889279999999993 -0.0551899969999999976 0.0912783000000000067 0.0106721760000000002 0.27867645000000002 0.199918050000000014 148 0 148 0 2.25798299999999985 183.895996 0.780741015298291985 0.605843168635445961 31 false 0.107712970000000005 1.59740489530037011 0.110635750304781996 0.0979894899999999985 17 9 0.765560499999999977 0 17 false 148 256.092046462686028 1.32707210629807992 192.975006 19.6673760000000009 14 72.2620066698616057 6.26186989564504959 11.5400050000000007 20.7041129999999995 16 279.529716810027026 9.12169228263437937 30.6445030000000003 18.6458499999999994 1.37369249999999998 0 2.0582638000000002 1.03673740000000003 1.02152630000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.152890130483001 -63.2714584606635029 22.1411117432337008 -12.6446082146409005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481421856389842816 2481421856389842816 66654557 2015.5 25.1454175394978989 0.769061742950060023 -3.11493229273186989 0.560425586747634985 0.103358135941305995 0.911884566584246992 0.113345639999999998 7.77439389767808997 1.41856886781676006 -10.4678704968219005 1.02259558998885991 0.226515839999999996 0.532859399999999983 -0.0376584270000000013 0.103815859999999996 0.0137707265000000002 0.00978382799999999962 0.124498360000000002 0.0118661519999999996 0.158057079999999989 0.181724670000000005 138 0 136 2 2.80457469999999986 181.013 2.1442185651231398 1.85670634845398008 31 false 0.0441819649999999967 1.18276079859361993 0.193708038143722006 0.0425502960000000013 16 10 1.26363409999999998 0 16 false 140 166.006282277638007 1.28782159270430996 128.904999 20.1380540000000003 13 70.8592657338073053 19.9399390804057006 3.55363510000000016 20.725397000000001 15 215.263949329262999 13.7608787708423996 15.6431839999999998 18.9294909999999987 1.7235685999999999 0 1.79590610000000006 0.587343199999999954 1.2085629 \N \N 0 \N \N \N NOT_AVAILABLE 151.116574539302007 -63.2652037864524033 22.1342569130176017 -12.6284459040341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374852267747456 2481374852267747456 1462119509 2015.5 25.1693701277959008 0.383628428624437023 -3.13118179979973998 0.297054169081024 0.45240601222113902 0.476183361373370972 0.950066799999999989 8.17147598777843953 0.708915299235158947 -6.18471582824411037 0.522174363458146051 0.173940020000000001 0.513120299999999974 0.0714995499999999951 0.139570699999999992 -0.143702219999999992 0.110525146000000005 0.289017699999999989 -0.0628488140000000028 0.0851102200000000003 0.234661979999999992 147 0 147 0 2.8245079999999998 194.292999 1.03585031541896999 1.8059882866150101 31 false 0.163948939999999987 1.82903584111997008 0.0934288857605641981 0.0988301300000000021 17 10 0.643833639999999985 0 18 false 148 367.615162404499983 1.63193940890151001 225.263 19.2748810000000006 14 211.934229994204998 6.94199014145158966 30.529318 19.5358850000000004 17 267.724816820994988 8.05411305807196065 33.2407570000000021 18.692698 1.30478580000000011 0 0.843187330000000013 0.261003499999999999 0.582183840000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.180015537472002 -63.2698609682782021 22.1508935456086 -12.6523738506474004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439107353196672 2505439107353196672 1181973765 2015.5 26.1088935412719998 3.60004726546076981 -2.51364115743389993 8.26748729289008999 \N \N \N \N \N \N \N -0.909578800000000021 \N \N \N \N \N \N \N \N \N 75 0 74 1 7.384938 195.850998 2.80385054298458991 7.69787647921284002 3 false 0.0212406550000000006 \N \N 0.0667086000000000068 9 6 63.3590850000000003 0 9 false 73 86.8442381252106941 1.49774933092371998 57.9832001 20.8415129999999991 6 42.1264625483613031 8.89998476223230917 4.73331829999999965 21.2899999999999991 6 117.565074305739003 8.11964282391494052 14.4790945000000004 19.5862240000000014 1.83882710000000005 0 1.70377730000000005 0.448488239999999982 1.25528909999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.451117439948007 -62.3085125839998994 23.2773859411720991 -12.4227448578385999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374959642500736 2481374959642500736 62808922 2015.5 25.1744049923891993 0.0482778100266385013 -3.1270095002946201 0.0352822767003048987 1.18152661287852001 0.0580500983023743006 20.3535670000000017 6.50602106051641016 0.0804848850527281057 -6.89803791616227979 0.067383851429958494 0.184175640000000002 0.604407699999999992 -0.00267512369999999998 0.0785653800000000041 -0.0549825170000000016 -0.0583066799999999996 -0.104634345000000004 0.0710773539999999954 0.19892014999999999 0.263244800000000001 149 0 149 0 -0.0479518769999999969 142.524994 0 0 31 true 13.8954935000000006 1.58174029595286991 0.0121785131801587995 0.0833392139999999948 17 10 0.0807184600000000058 0 17 false 147 11570.0397540307004 6.71656690262618028 1722.60999 15.5300279999999997 15 5708.06659228715034 22.6393949224224009 252.129819999999995 15.9601659999999992 15 8479.00109761625026 33.380309248761499 254.012049999999988 14.941058 1.22619009999999995 0 1.01910780000000001 0.430137629999999993 0.588970199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.186235062424998 -63.2639571597868979 22.1572601892695999 -12.6503508236197995 100001 5260 5069.22998 5758 0.0219999999 0.00800000038 0.107100002 0.0130000003 0.00389999989 0.0527999997 200111 0.707086439999999983 0.590067200000000014 0.76130730000000002 0.344813599999999998 0.308322160000000012 0.381305000000000005 +1635721458409799680 Gaia DR2 2481422303067924480 2481422303067924480 686467819 2015.5 25.1231597493336984 1.01226405385812002 -3.08201141684435997 0.949663276112268973 1.68849087713411006 1.1509328586068599 1.46706279999999989 -19.3871630453733985 2.05818608266555003 -25.7232192837015994 2.14884470043921993 0.337374540000000001 0.448360380000000003 0.101099339999999996 -0.0658396700000000029 0.103542424999999993 -0.108597109999999997 -0.0923254599999999981 -0.15266362 0.0536016149999999983 0.299763000000000002 105 0 104 1 0.92643165999999999 111.891998 1.51014853840760011 0.518535642976833966 31 false 0.0267250170000000002 0.977940022144049959 0.294927806990459007 0.175905270000000002 12 8 2.10761140000000013 0 12 false 104 92.9534503047133001 0.938954504732658957 98.9968033 20.7677019999999999 7 44.7521519045100007 14.2502907513911001 3.14043779999999995 21.2243540000000017 11 138.78915229938201 14.4625838172753003 9.59642900000000054 19.4060300000000012 1.97455069999999999 0 1.81832309999999997 0.456651699999999994 1.36167140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.041007152811005 -63.2446788264086024 22.1255381848901997 -12.5896470366427007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481423540017050496 2481423540017050496 268272047 2015.5 25.1261389194187998 2.60867681047233013 -3.04839719556394995 1.9142441530007599 \N \N \N \N \N \N \N 0.109846643999999993 \N \N \N \N \N \N \N \N \N 135 0 133 2 41.3817670000000035 2582.94995 15.3798620821246992 183.420427934000003 3 false 0.00389229739999999999 \N \N 0.104282739999999999 17 10 4.20752330000000008 0 17 false 149 214.06585052520299 2.19596231938115993 97.4815979 19.8619979999999998 15 284.956170491465002 13.7142405899920004 20.7781219999999998 19.2144429999999993 15 614.581214618821946 9.36835051537691932 65.6018600000000021 17.7904720000000012 4.20215270000000007 0 1.42397119999999999 -0.647554399999999974 2.07152560000000019 \N \N 0 \N \N \N NOT_AVAILABLE 151.015677287901013 -63.2129204600106007 22.1410793385390008 -12.5595026118361002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422754038627712 2481422754038627712 1685045455 2015.5 25.1550887991752994 2.06467513702882011 -3.05035390078230995 2.34971708631560006 \N \N \N \N \N \N \N 0.534179599999999977 \N \N \N \N \N \N \N \N \N 70 0 69 1 0.598109540000000051 70.2959976 1.4058722675181301 0.173229533487421011 3 false 0.0175549779999999989 \N \N 0.28169306999999999 8 6 6.22848500000000005 0 8 false 70 90.2269451719354976 1.65493456076811007 54.5199013 20.800025999999999 5 61.9829985562656987 25.1352329020300012 2.46598080000000008 20.8707069999999995 7 61.501667176744597 5.60058719459355991 10.9812890000000003 20.2897029999999994 1.3686007 1 0.581003200000000053 0.0706806199999999996 0.51032259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.07570426182599 -63.2025551298442991 22.1678686876359983 -12.5719866897110002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422513520401408 2481422513520401408 1229003005 2015.5 25.2040550630676989 0.130669777206909005 -3.07638824133813982 0.0875157254346507069 0.495051692210456973 0.16211414088703599 3.05372300000000019 8.81847083553067002 0.213810893335061009 3.40944380599623997 0.161503458667778987 0.0287811050000000013 0.619144139999999954 0.0452980249999999987 0.102981699999999995 -0.194839220000000007 -0.0329399780000000017 0.0200956389999999985 0.0547434499999999991 0.189209209999999989 0.201143669999999997 158 0 157 1 2.18725849999999999 192.632996 0.205070605252028998 0.571436515805710976 31 false 1.60456109999999996 1.62347422185501999 0.029562460606186499 0.0688474849999999999 18 10 0.195358260000000006 0 18 false 155 1951.72245030740009 2.61219706555861997 747.156982 17.4623199999999983 16 967.528648085349005 12.5159487489298993 77.3036599999999936 17.8872280000000003 18 1411.30022284934989 7.96659950961772001 177.152150000000006 16.8878699999999995 1.21883560000000002 0 0.999357199999999946 0.42490768000000001 0.574449540000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.198400376438002 -63.2055700809803014 22.2045979349272002 -12.6142208417966 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422685319092608 2481422685319092608 1689082611 2015.5 25.1760204659009013 0.152423686169431 -3.05853310135849021 0.0990335675764466988 0.642957443565843945 0.18911504629880499 3.39982179999999978 14.6312953996941992 0.241648927277460013 -8.12869172271643947 0.180528236596516012 0.0422170799999999971 0.645122300000000037 0.0712895600000000018 0.112529149999999994 -0.164406460000000004 -0.0362289699999999992 0.0520478560000000035 0.0514839100000000008 0.198120500000000005 0.187201320000000004 159 0 157 2 -0.0863055800000000067 149.839005 0 0 31 true 1.2410774 1.49747025777005005 0.0321477951137943002 0.068759249999999994 18 10 0.220409589999999989 0 18 false 158 1479.92208032548001 2.48652354424769984 595.177002 17.7627680000000012 17 533.231592701303953 14.2247862022900993 37.4860880000000023 18.5340980000000002 17 1368.45728634735997 9.67481845606280011 141.445269999999994 16.9213400000000007 1.28499260000000004 0 1.61275670000000004 0.771329900000000013 0.841426849999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.125395390857989 -63.2011810480414979 22.184683113436801 -12.5872993067072994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374714828793344 2481374714828793344 1472306404 2015.5 25.2153131127176984 1.29560795476677004 -3.13279072868889985 0.704142099489983964 2.39161714566099004 1.60804501920571008 1.48728250000000006 6.57901347277285975 1.58198741840151991 -3.70477355418764009 1.39875862577768006 -0.0391007199999999985 0.804533359999999975 0.149268499999999998 0.00531376999999999978 -0.204715249999999988 -0.0473382320000000009 0.0584883240000000013 0.0287180990000000004 0.0308848250000000012 0.267295329999999998 130 0 129 1 0.833386599999999977 136.878998 0 0 31 false 0.0321808530000000023 0.915143903026978012 0.253605378325547026 0.0472402899999999973 15 9 1.66829870000000002 0 15 false 129 116.984268974556997 1.06927567072779994 109.404999 20.5180469999999993 10 35.4269456377074974 8.03874552160911016 4.40702440000000006 21.4780540000000002 11 151.212784251633991 9.2963925511752894 16.2657489999999996 19.3129479999999987 1.59542579999999989 0 2.16510580000000008 0.960006699999999991 1.20509909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.273938601549986 -63.2519374914485013 22.193986495044399 -12.6707929535785997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374341167210240 2481374341167210240 251235688 2015.5 25.2404510029492002 0.106889660935559003 -3.13334501500765006 0.0657156473718718964 1.75483456408776006 0.13999258641908699 12.5351959999999991 29.3945572405350006 0.146671773285578011 -19.8295597913236001 0.114147431947891995 -0.173373980000000011 0.74062490000000003 0.00815563650000000057 0.119500875000000006 -0.422125899999999998 0.0850516800000000045 0.100342829999999994 0.0192927999999999988 0.0844505400000000045 0.307679800000000003 140 0 139 1 15.4914050000000003 579.466003 0.450731622510007979 24.1644083354671011 31 true 4.18790700000000005 1.48953045313862997 0.0218697034165336 0.0597989300000000001 16 9 0.141957670000000008 0 16 false 139 26188.3363113496998 10.9731278733988997 2386.59009 14.6430959999999999 13 11590.0297143763 10.5872002816559991 1094.721 15.1911760000000005 14 21206.9357065719996 54.877901805646097 386.438539999999989 13.9457249999999995 1.25235009999999991 0 1.24545100000000009 0.548080440000000002 0.697370500000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.324973334334004 -63.2418099058587018 22.2176904844233007 -12.6805658107453993 100001 4965.33008 4795.22021 5202 0.647000015 0.597500026 0.690999985 0.316000015 0.282000005 0.338999987 200111 0.826073170000000023 0.752618129999999996 0.88572379999999995 0.373702020000000024 0.313162180000000012 0.43424185999999998 +1635721458409799680 Gaia DR2 2481374371231411200 2481374371231411200 431457402 2015.5 25.2392550928874009 0.872877673110550978 -3.12889776907781991 0.480735398186254992 0.91794073172002999 1.11648689446113991 0.822168800000000033 6.21570720506614993 1.09667215413133001 -7.72892939783464961 0.83459701825376098 -0.129647970000000001 0.786375159999999962 0.164389769999999991 0.0765791599999999933 -0.320134220000000025 0.026105426000000001 0.222350280000000011 0.0238898269999999989 0.0638563260000000049 0.225790560000000001 131 0 131 0 2.60192729999999983 171.162994 0.968094167215451051 0.620043356859105055 31 false 0.0707738100000000064 1.49449261555449997 0.157577390223396008 0.0814363200000000065 15 9 1.14122150000000011 0 15 false 129 197.647459960443001 1.56230476565459009 126.510002 19.9486370000000015 12 102.618143394672003 10.9344346152177998 9.38485999999999976 20.3233280000000001 13 146.925130617223999 6.42453104187412016 22.8693939999999998 19.3441800000000015 1.26256750000000006 0 0.97914886000000001 0.374690999999999996 0.604457860000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.318385269371987 -63.2382878329346028 22.2182338965527997 -12.6759916596839997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402023576192 2481375402023576192 1131183523 2015.5 25.2233325365512009 0.129239552698613008 -3.09792469902401013 0.0866287389206771979 0.344957493445817998 0.157720820898873987 2.18713969999999991 11.4440007570582001 0.217918844400920991 3.59412867058065988 0.158416552882840012 0.0173470550000000001 0.597126539999999983 0.0439001899999999987 0.0942059299999999933 -0.185354039999999998 -0.0338757400000000014 0.0747313000000000005 0.0458994549999999987 0.182320950000000009 0.156498909999999991 158 0 154 4 1.91560960000000002 183.807007 0.378572559467180991 2.52065635531733978 31 false 1.62833450000000002 1.63706291771334 0.0293794940570875004 0.0493764999999999968 18 10 0.196489920000000012 0 18 false 152 2327.05450252668015 3.02309845517241005 769.757996 17.2713490000000007 16 1174.88679783128009 8.24537380180074031 142.49042 17.6763970000000015 17 1681.32800033897001 7.53205708500984006 223.222949999999997 16.6977879999999992 1.22739489999999996 0 0.97860910000000001 0.405048369999999991 0.573560700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.257299737723002 -63.2169572996491027 22.2147945184890006 -12.6413383805310993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375402027151360 2481375402027151360 1343772152 2015.5 25.2122941047899012 1.43551072010545 -3.09220158373961018 0.912099314527140992 -0.183399098557668006 1.66605639554704998 -0.110079764999999996 7.27348455281311956 1.92759253709935008 -3.32133333464902991 2.0796326679835202 0.233914230000000001 0.764703200000000027 0.0923604600000000053 -0.210968899999999987 0.145475689999999991 -0.253552969999999989 -0.213507649999999993 -0.0479059780000000018 -0.0445493240000000013 0.187047600000000008 111 0 110 1 -1.63833399999999996 82.4340973 0 0 31 false 0.0258328879999999983 1.18030509041841003 0.295921840196787023 0.152427609999999991 13 8 1.99657890000000005 0 13 false 112 104.667382850823998 1.42832090510597998 73.2799988 20.6388379999999998 10 48.694106076733199 11.1533388452017999 4.36587700000000023 21.1326980000000013 10 110.221670094266997 11.0224323367911996 9.9997600000000002 19.6562519999999985 1.51829330000000007 0 1.47644620000000004 0.493860240000000006 0.982585900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.229763367201002 -63.2164298658174033 22.2064579144038987 -12.6319536584315006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375475038575872 2481375475038575872 430584378 2015.5 25.2088087659320017 0.108112016945126996 -3.08801804798982982 0.0723807495358962938 0.815462510929453988 0.13168933602310301 6.1923199999999996 -0.804458929864902972 0.181775131603534007 -16.5512612126336016 0.134425291855657991 0.0127716510000000002 0.600626899999999964 0.0206182640000000007 0.0881072700000000014 -0.190067280000000005 -0.0360046139999999973 0.042357976999999998 0.052986964999999997 0.175566300000000008 0.167332079999999994 159 0 156 3 2.92852379999999979 207 0.209817914912777986 0.972201239752376045 31 true 2.34030579999999988 1.57498239885231994 0.0246203957077318 0.054272250000000001 18 10 0.165030380000000004 0 18 false 151 2776.62404282154012 2.95390742023435005 939.982971 17.0795729999999999 15 1323.77016271799994 8.69653071406762912 152.218189999999993 17.5468559999999982 17 2073.18948026832004 13.7214430126412008 151.091219999999993 16.4703219999999995 1.22341359999999999 0 1.07653430000000006 0.467283249999999983 0.609250999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.218841589015994 -63.2141081686503981 22.2047239713346016 -12.6267814801285994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375505102794496 2481375505102794496 1623904034 2015.5 25.2190399743027989 0.458777266017876995 -3.09141231265703009 0.285621001546455977 2.13406989959668003 0.572184844922744018 3.72968630000000001 10.2265191397570003 0.687396468143202988 -8.29013065739954058 0.497855730843881017 0.129720389999999991 0.686706099999999986 0.0830338000000000048 0.157969739999999997 -0.0468631830000000027 0.00563137399999999975 0.187953499999999996 0.0258757940000000006 0.206912060000000009 0.162265269999999989 149 0 147 2 5.65910099999999971 259.315002 1.44071339397845999 4.0506284565819497 31 false 0.157945420000000003 1.37499009438745001 0.0948295776885392933 0.117080210000000004 17 9 0.624190800000000046 0 17 false 145 442.042195211929027 1.89670604822537991 233.057999 19.0747070000000001 15 102.528856573222996 7.3673014183486103 13.9167450000000006 20.3242720000000006 15 578.600548191431017 13.9450634853187996 41.4914249999999996 17.8559720000000013 1.54086970000000001 0 2.46829989999999988 1.2495651000000001 1.21873469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.242570270458003 -63.2128678429792998 22.2131727690739993 -12.6337042870403007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375303239884160 2481375303239884160 406598334 2015.5 25.2318663679880011 0.189577126098399995 -3.09256443219820021 0.122794065484035 0.381747243809333003 0.231344578139938001 1.65012409999999998 34.9326364172330983 0.287103252986155022 -20.0041027626377002 0.216623151694805005 0.125675129999999996 0.675553399999999971 0.0858438400000000046 0.156795409999999996 -0.0603313970000000019 -0.00551869070000000038 0.137415270000000006 0.055930744999999997 0.221418769999999987 0.181969610000000004 149 0 147 2 0.345214000000000021 147.214005 0 0 31 false 0.884388399999999963 1.68232498241130002 0.0415594175970952009 0.0951647760000000065 17 10 0.264153269999999996 0 17 false 148 1149.85622026365991 2.46480078475426989 466.510986 18.0367570000000015 13 623.657733737315993 8.7385379268052592 71.3686600000000055 18.3640229999999995 15 800.511217601525004 13.5746072243918992 58.9712260000000015 17.503502000000001 1.23856260000000007 0 0.860521300000000045 0.327266700000000021 0.533254600000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.269402077275998 -63.208495780229299 22.224937884853901 -12.6394983941675001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375337599679232 2481375337599679232 543714196 2015.5 25.2448502824051992 1.22253075455739002 -3.09289525955083011 1.06337623687842009 -4.55799164973127979 1.93577120414794002 -2.35461279999999995 1.22187678044503989 2.99846340878251016 -1.42951836239989993 3.79789638548222985 -0.0122084989999999994 0.54203290000000004 -0.0568389970000000022 -0.168536899999999989 -0.430695859999999986 0.301839440000000014 0.297058219999999984 -0.522738200000000042 -0.553194170000000041 0.716393649999999993 99 0 96 3 0.090648560000000003 91.5574036 0 0 31 false 0.0242524330000000003 \N \N 0.199996489999999999 12 8 4.05473100000000031 0 13 false 99 103.931853071429003 1.31314571292375004 79.1472015 20.6464940000000006 6 78.6074637728088987 11.7978087097552997 6.66288660000000021 20.6127280000000006 8 80.7438197699428031 12.8433077720107001 6.28683999999999976 19.9941460000000006 1.53322850000000011 0 0.618581799999999959 -0.0337657930000000023 0.652347560000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.295770553305999 -63.2033081800949006 22.2371636546189997 -12.6445866960131994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374474312327808 2481374474312327808 693844385 2015.5 25.2607135649913985 1.95092394053318996 -3.11997352002057005 1.14356063645301997 \N \N \N \N \N \N \N -0.287054900000000002 \N \N \N \N \N \N \N \N \N 68 0 68 0 -0.884474639999999979 52.987999 0 0 3 false 0.0226471570000000011 \N \N -0.0794781499999999974 8 6 2.7244117000000001 0 8 false 68 93.0169240347270971 1.53080136834258007 60.7635002 20.766960000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.353068184009999 -63.221120918005802 22.2420210884709988 -12.6755975910611003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374508670374400 2481374508670374400 127122067 2015.5 25.2613947513703998 0.376794347788097006 -3.10794345773062997 0.258447072467705985 0.669697661985471981 0.471604449339510012 1.42004100000000011 2.53057171027985994 0.631089743060369024 -7.97235118060677994 0.436448448926879007 -0.0462114799999999992 0.610764199999999979 0.142829719999999993 0.0739922499999999955 -0.258887980000000018 0.00762708799999999975 0.330318999999999974 -0.0251808989999999996 0.0936773899999999993 0.103267275000000006 142 0 142 0 3.15804339999999995 195.360001 0.799442638683992013 1.43904845341582011 31 false 0.221365509999999988 1.48822539963850997 0.0819920483423643015 0.0843011300000000019 16 10 0.561631400000000003 0 16 false 139 447.812970948781015 1.53197961161351004 292.309998 19.0606229999999996 12 139.397409526605998 13.7974773787514007 10.1031080000000006 19.9907509999999995 15 475.995930446896978 12.3414115626211007 38.5690039999999996 18.0679109999999987 1.37421949999999993 0 1.92284009999999994 0.930128100000000013 0.992712000000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.343112137895986 -63.2099380773472035 22.2472155262117006 -12.6646659422048007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376810774528512 2481376810774528512 797910361 2015.5 25.2547732266000011 1.09530271665420997 -3.08550165245075991 0.770128226840154029 0.335465841006965027 1.29707760113431991 0.258632059999999997 0.584917080470570006 1.9163735173632801 1.54338131292338998 1.93364038675417005 0.105307474999999998 0.627945540000000024 -0.038942240000000003 -0.135322899999999996 -0.120221120000000001 -0.159058719999999987 -0.261243700000000023 -0.0574104530000000002 -0.0360623899999999997 0.354256420000000016 114 0 114 0 -0.251628760000000007 104.677002 0 9.6248052937908809e-16 31 false 0.0299697480000000009 1.85860074196442993 0.269823939726965001 0.123616790000000004 13 9 1.98065050000000009 0 13 false 114 122.465313686388996 1.06677614616259997 114.799004 20.4683320000000002 6 29.8719678330814986 10.1519065924742993 2.94249820000000017 21.6632290000000012 10 155.660976837242004 9.85500627724871947 15.7951169999999994 19.2814709999999998 1.51498369999999993 0 2.38175770000000009 1.19489669999999992 1.18686099999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.308732721952993 -63.1924140163410968 22.2493967919760998 -12.6413674093975992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376746348895360 2481376746348895360 554799086 2015.5 25.2742038103061013 0.0296474369864663002 -3.0842899182300898 0.0221395952911240014 1.89763769636146007 0.0356218681984835014 53.2717060000000018 7.70999857035663982 0.0547103717090186986 -3.47586511598791015 0.0468864916793274022 0.0842789860000000002 0.53297720000000004 -0.151152100000000011 0.0348733069999999992 -0.215527240000000009 -0.0334443450000000003 -0.174814799999999992 0.0712356600000000062 0.107209299999999993 0.33797756000000001 139 0 139 0 -3.35924800000000001 85.6909027 0 0 31 true 67.769440000000003 1.56982017230190007 0.00767330615891682975 0.078476260000000006 16 10 0.0611529459999999997 0 16 false 137 54314.5855565187012 20.432077973704601 2658.30005 13.8510740000000006 16 26690.5591169996005 53.7348142596808032 496.708860000000016 14.2854939999999999 16 39344.3004729973982 39.1514550056819033 1004.92560000000003 13.2747150000000005 1.21578499999999989 0 1.01077839999999997 0.434419630000000001 0.576358799999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.346553500831988 -63.1830926840152998 22.2683386379356989 -12.6473941148514992 100001 5314 5098.5 5676.75 0.270000011 0.126000002 0.331099987 0.127700001 0.0610000007 0.162100002 200111 0.930992069999999949 0.815810999999999953 1.01135639999999993 0.622691400000000006 0.595410100000000053 0.649972699999999959 +1635721458409799680 Gaia DR2 2481375990434372096 2481375990434372096 1167569270 2015.5 25.2811743159894995 3.40980008074367014 -3.09227487189239003 4.4730738713778404 \N \N \N \N \N \N \N -0.343183430000000012 \N \N \N \N \N \N \N \N \N 49 0 49 0 0.580025730000000017 48.9491997 0 0 3 false 0.0153530109999999997 \N \N 0.231052260000000009 6 5 14.2782970000000002 0 6 false 50 74.8173731760291929 2.34241853028728997 31.9402008 21.0033589999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.368035331281988 -63.1873703415837014 22.2719529989383993 -12.6573825857247009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376024794411904 2481376024794411904 585155202 2015.5 25.2947083803837991 0.260840379360258001 -3.08568270090643004 0.177198524908011995 1.09160971267312989 0.315598621065050988 3.45885439999999988 9.8899937102789508 0.449356556171014998 -11.8262154674096003 0.324825752689990976 -0.045554716000000002 0.568905349999999976 0.0498162600000000011 0.0774140660000000036 -0.26039487 0.0699175699999999983 0.16883585000000001 -0.0452275869999999997 0.0588400550000000022 0.176345400000000013 133 0 130 3 0.637742699999999996 134.654999 0 0 31 false 0.454074919999999993 1.42319630318190993 0.0619392758404257032 0.0779905300000000024 15 10 0.401917460000000004 0 16 false 127 702.930275097187973 2.4127992624138801 291.334015 18.5710850000000001 12 252.874885133117999 11.1721351757910003 22.6344279999999998 19.3441240000000008 12 670.095822650071 9.08103731121008018 73.7906700000000058 17.6965770000000013 1.31303309999999995 0 1.64754679999999998 0.773038859999999994 0.874507900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.388952832932006 -63.1756641906687975 22.2873191156637986 -12.6562362534313007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375612477528960 2481375612477528960 816078800 2015.5 25.2247782575071007 0.236247475216396996 -3.0718776142082902 0.142170698512801008 1.67419033001302009 0.291071676246885014 5.75181499999999968 12.2754418301305002 0.379391458134193005 15.9524807208237007 0.248582009994501002 0.0997931299999999938 0.631238599999999983 0.15074918000000001 0.138567780000000002 -0.0527842099999999981 -0.0150255900000000001 0.165749279999999999 -0.0256489810000000013 0.224352990000000002 0.112006343999999994 140 0 140 0 3.7826287999999999 206.296005 0.653598308817281981 2.92410369850307017 31 false 0.628123699999999952 1.45370636970493994 0.0486958798542172014 0.0672945159999999987 16 9 0.340125230000000001 0 17 false 140 1117.38987546493991 1.94641020143169996 574.077026 18.0678540000000005 15 280.818198466988008 8.38461149081243917 33.4920959999999965 19.2303260000000016 14 1311.45305585568008 13.3397187781271001 98.3118999999999943 16.9675389999999986 1.42499160000000002 0 2.26278690000000005 1.16247180000000006 1.10031509999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.23577587306599 -63.1927418815557971 22.2260132489746987 -12.6176594527389003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422547880139264 2481422547880139264 650237291 2015.5 25.2206429265071996 0.131474191397481011 -3.0633938206098601 0.0856901915706403949 0.347797558723357991 0.159974512364989996 2.17408100000000015 -1.46777607557894996 0.21748862626038401 -5.95717279530390975 0.159147456570571999 0.0314647560000000034 0.612902159999999974 0.0270572960000000015 0.0959503200000000056 -0.169609490000000002 -0.0261961720000000002 0.0300516200000000011 0.0441741760000000025 0.176294620000000013 0.18024343000000001 159 0 154 5 -0.0441779760000000007 147.574997 0 0 31 true 1.63906499999999999 1.5667158255504301 0.0300774356916650998 0.0634623899999999935 18 10 0.196764770000000006 0 18 false 154 1876.56910098402 2.43589350488035006 770.382019 17.5049530000000004 17 993.749029708420039 14.8709119893927006 66.825019999999995 17.8581959999999995 18 1300.66563961661996 14.2573233285629009 91.2279000000000053 16.9765049999999995 1.2226646000000001 0 0.881691000000000003 0.353242869999999987 0.528448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.219531058857001 -63.1867969967489032 22.2252857009546005 -12.6082508048211999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377016932932992 2481377016932932992 225388163 2015.5 25.2401712823758011 2.50888148056524019 -3.06887996204546987 1.26763469958505004 \N \N \N \N \N \N \N -0.384634140000000013 \N \N \N \N \N \N \N \N \N 66 0 65 1 0.982445659999999998 70.6723022 0 0 3 false 0.0170624459999999985 \N \N -0.164674039999999994 8 7 3.40901919999999992 0 8 false 70 86.4237318229991018 1.7954835574871999 48.1339989 20.8467829999999985 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.263847909947998 -63.183526728860997 22.2417874534832016 -12.6205407534248994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424021053383680 2481424021053383680 539928719 2015.5 25.2273482016314006 0.375449591405541017 -3.05620975142733009 0.235985110996644987 0.224852342932547994 0.456422221692277974 0.492641099999999998 6.19079294725395979 0.600557317311486982 -4.18301382572640001 0.424031686241313988 0.0194198470000000005 0.640908799999999945 0.104737479999999994 0.100397184 -0.157012180000000001 -0.0137601240000000003 0.151259539999999998 0.0081151869999999994 0.16042648000000001 0.140720800000000007 157 0 155 2 0.547972140000000052 158.998993 0.625158789996716036 0.836431360412263958 31 false 0.209221810000000008 1.5979436695476199 0.0791500927757610995 0.0663677599999999979 18 10 0.537012799999999957 0 18 false 155 451.780586953064017 1.88396139295150999 239.804001 19.0510459999999995 13 240.699238049619993 14.7857826473408007 16.2790999999999997 19.3977010000000014 14 352.162071365112979 17.0723848067489996 20.6275839999999988 18.3950630000000004 1.31227709999999997 0 1.00263790000000008 0.346654899999999988 0.655982999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 151.226256871006996 -63.1774569787006968 22.2343778090721997 -12.6040419318887 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774454784 2481424089774454784 1307245140 2015.5 25.2136296129549002 2.26485074895607985 -3.04187357059559993 1.04436478509751995 -1.88236708708792011 2.11709575884728007 -0.889127000000000001 15.9958585569210001 3.21077611926774997 -7.23584922111306028 2.6665843803016398 -0.205729040000000002 0.732547199999999954 0.482671379999999983 -0.445807129999999996 -0.0831718149999999962 -0.396682900000000005 0.146601000000000009 0.0810286100000000009 -0.214812059999999999 -0.223765400000000003 84 0 84 0 -1.7732022999999999 58.1962013 0 0 31 false 0.022874710999999999 2.02477776907706986 0.378948073343524983 -0.00657840030000000041 10 7 3.40817669999999984 0 11 false 88 93.8815523178417948 1.33010086084143997 70.5822983 20.7569139999999983 9 35.8138029651818002 7.32039230872870039 4.89233399999999996 21.4662630000000014 9 107.391145320334005 9.81589184176340979 10.9405380000000001 19.6844999999999999 1.52537900000000004 0 1.78176310000000004 0.709348700000000054 1.07241439999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.185327390297999 -63.1702444325648003 22.2267465098238013 -12.5856646193273001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424094068365312 2481424094068365312 89742343 2015.5 25.2108388877763012 0.213957682399289001 -3.03980750239843989 0.135294186386136994 1.00181286857127994 0.259949776042187997 3.85387089999999999 42.659666925758799 0.343685205124436011 -24.5555076076696999 0.247725745550852999 -0.00118666759999999996 0.638256399999999946 0.0788023699999999966 0.0891951700000000042 -0.173942740000000012 -0.041417822 0.0883716699999999994 0.0332242619999999975 0.172708300000000009 0.14082212999999999 154 0 152 2 1.91899299999999995 181.651001 0.30374465405661899 0.569398293855916005 31 false 0.651127400000000023 1.52464275737786004 0.0458432821902452978 0.0523811900000000011 18 10 0.307999399999999979 0 18 false 154 971.156533951166011 2.16277860929220012 449.032013 18.2201419999999992 17 375.076473066153028 11.1185736883608008 33.7342259999999996 18.9160879999999985 17 883.880430253236 8.16746836869100967 108.219634999999997 17.395937 1.29634809999999989 0 1.52015110000000009 0.695945739999999979 0.824205399999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.177798243979993 -63.1695467641039983 22.2248729298556995 -12.5827165356629997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424089774452352 2481424089774452352 353290349 2015.5 25.2115297717508007 1.40983449166365005 -3.03602048933587021 0.973606368170909953 -0.934525546303519028 1.9974050396015901 -0.467869819999999992 30.4507420056379985 2.14668637263009998 -18.8479149875389993 1.85313479211010002 -0.107481579999999993 0.700839760000000034 0.210812200000000005 0.13371377000000001 -0.399691970000000008 -0.294304200000000016 -0.296933200000000008 0.225080479999999999 0.391695979999999999 0.314751979999999987 126 0 124 2 1.0452013 135.136993 1.25129996456227999 0.260892283625488997 31 false 0.0209142419999999996 1.2391008134069601 0.285967141976526007 0.103143960000000007 15 9 2.27522100000000016 0 15 false 124 103.291404464343998 1.31741706401189007 78.4045029 20.6532060000000008 8 44.2706835552956974 8.60685782693795076 5.14365239999999968 21.2360970000000009 8 150.804803519785992 16.2558552124332003 9.27695300000000067 19.3158819999999984 1.88859369999999993 0 1.92021559999999991 0.582891460000000028 1.33732410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.175645507258992 -63.1658220844060025 22.2269607823819015 -12.5794507826106994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377085650774144 2481377085650774144 1248355211 2015.5 25.2359913287317994 0.422373960517666014 -3.0545116890142201 0.256917217188005975 0.513667451447524015 0.478654445731546974 1.07314880000000001 19.2938724051316015 0.751817964254475002 -3.95697822956912981 0.47208679685215299 -0.111512239999999999 0.57692783999999997 0.27733886000000002 -0.0514671699999999996 -0.122643790000000003 -0.207603070000000001 0.255155679999999996 -0.037538852999999997 0.170985460000000006 -0.100997119999999996 133 0 132 1 -0.145333810000000008 124.040001 0 0 31 false 0.210667650000000012 1.34631420686504999 0.0861675220853996976 0.0192633829999999985 16 10 0.680783869999999958 0 16 false 132 401.838536929028976 1.83772800300361006 218.660995 19.1782359999999983 15 132.119478106699006 12.0329769675185005 10.9797829999999994 20.0489710000000017 15 503.408210203466979 9.45260034666906002 53.2560539999999989 18.0071200000000005 1.58154989999999995 0 2.04185099999999986 0.870735170000000003 1.17111589999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.242001087532003 -63.1722708878711998 22.2432402479702986 -12.6056458056565006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424055413130752 2481424055413130752 1480374714 2015.5 25.2371508078710995 0.236061629671256989 -3.03863742837476991 0.139635849711346988 0.744470410312094044 0.283338160701058994 2.62749800000000011 -3.45580214432174015 0.367834605838082973 -1.31304837416555009 0.244519479772350001 0.0505040799999999998 0.647279139999999975 0.033003277999999997 0.146875250000000013 -0.047538996 0.00680016030000000007 0.148918550000000011 0.0247669519999999983 0.212201150000000005 0.0851223299999999961 138 0 138 0 1.6353975999999999 160.738007 0.342911730443628993 0.64212589126490105 31 false 0.630475459999999988 1.46762341786264994 0.0488903056779902978 0.0708473500000000034 16 9 0.325349060000000023 0 16 false 138 969.784982982876954 2.37873925413218013 407.688995 18.2216780000000007 12 325.518096236410997 7.50223482882343973 43.389484000000003 19.0699499999999986 12 971.323038949238025 10.5829224774705004 91.7821200000000061 17.2935100000000013 1.33724609999999999 0 1.77643970000000007 0.848272299999999979 0.928167340000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.229465676509989 -63.1573943725078024 22.2503401222040011 -12.5913167194443005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376849428109952 2481376849428109952 951261629 2015.5 25.2724304561793005 0.0275296763302825993 -3.07359953514029005 0.0211374395916084992 1.22931481975250989 0.0340272722359777 36.1273399999999967 12.5728759223345996 0.0488058260117560996 -0.780015406933505018 0.0452472742387355006 0.0902486150000000042 0.574139900000000036 -0.0434406960000000009 0.0367555899999999977 -0.214729959999999997 0.0020449985999999999 -0.112622829999999993 -0.00484940130000000025 0.0525224999999999997 0.371772139999999973 147 0 147 0 -1.31652799999999992 120.350998 0 8.43259086162969006e-16 31 true 78.3659739999999942 1.56554133084553992 0.00695559668665522973 0.0947906599999999988 17 10 0.0570363070000000014 0 17 false 147 62802.9074948377965 26.3424739039755984 2384.09009 13.6934170000000002 15 31585.9299700759002 70.9848463480860943 444.967219999999998 14.1026539999999994 15 44584.3764629030993 79.0597758729248028 563.932500000000005 13.1389639999999996 1.21284689999999995 0 0.96369075999999998 0.409237860000000009 0.554452900000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.332953082464996 -63.1741617536576996 22.2706904716642988 -12.6368038447565993 100001 5396 5335 5587.27002 0.931999981 0.591000021 1.12310004 0.463200003 0.292899996 0.544499993 200111 1.49085059999999991 1.3905246 1.5251380000000001 1.69765999999999995 1.5869063000000001 1.80841359999999995 +1635721458409799680 Gaia DR2 2481376780708633344 2481376780708633344 240072396 2015.5 25.2767523488802013 0.124800725105070995 -3.07515653429805003 0.0901898902076048031 2.30964062785022994 0.157829829293571006 14.6337390000000003 -6.51935671377987003 0.217556496245997988 -21.9141001729857017 0.161295951022220996 0.0165726879999999986 0.567896900000000038 0.0407944059999999983 0.10123356 -0.283504219999999973 0.0784386839999999946 0.186161889999999997 -0.0208127100000000016 0.0755670799999999948 0.240411370000000013 148 0 148 0 2.13153620000000021 181.378998 0.313450356862177981 1.6407714772589499 31 true 1.76639220000000008 1.34829211413379002 0.0291420072960815006 0.100655854000000003 17 10 0.199317959999999988 0 17 false 145 2270.71360633040013 3.2534652841203302 697.937012 17.2979599999999998 15 651.870801099711002 9.94176990358598012 65.5688860000000062 18.3159850000000013 16 2524.9060917152101 9.50657921261353955 265.595640000000003 16.2563080000000006 1.39902140000000008 0 2.05967710000000004 1.01802440000000005 1.04165269999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.343076905338989 -63.1737420571585986 22.2742136245168005 -12.6398420812582994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376879492401024 2481376879492401024 185754666 2015.5 25.2821638199426992 1.25775335978840008 -3.07127903464215013 0.880319261620360005 -1.03259111075403998 1.50978222617409008 -0.683933800000000036 1.19982471063355001 2.2913530410443399 -3.48109416742078981 2.34359191993599003 -2.84753369999999995e-05 0.592614100000000033 0.109329164000000006 -0.160094590000000009 -0.204978169999999987 -0.150580400000000003 -0.192838769999999993 -0.131769140000000007 -0.0890376199999999979 0.339860470000000026 112 0 112 0 0.410709829999999998 112.431 1.39202110849894001 0.353595518624399974 31 false 0.0232462750000000003 1.19418116576463995 0.297980766343474979 0.126834940000000007 14 9 2.3646246999999998 0 14 false 112 106.733020390055003 1.31256355293456006 81.3164978 20.6176190000000013 10 80.4419455202708065 9.31199633505518065 8.63852900000000012 20.5876799999999989 10 69.6786518867479998 7.30578962855511005 9.53745649999999934 20.1541710000000016 1.40650570000000008 0 0.433509829999999985 -0.0299377439999999988 0.463447569999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.35027591689601 -63.167938788564399 22.2808263439703005 -12.6382295175459003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754880 2481377158665754880 1499844282 2015.5 25.2653755010736987 1.70035323707715991 -3.05228770189641008 0.907447920375984984 1.15220590849261995 2.10824954400044007 0.546522559999999991 34.3500511464133993 2.21718772828115984 -19.7171787784726007 1.48750806223398002 -0.177083839999999992 0.75758654000000003 0.14122519 0.118986869999999995 -0.342265129999999973 0.0427984449999999975 0.237149090000000007 0.0252100560000000015 0.111224219999999999 0.163516999999999996 116 0 116 0 7.77952240000000028 270.730988 4.75133410678900958 8.18453431451752955 31 false 0.020586763000000001 1.4302484849241901 0.282347323430855002 0.0377362259999999977 14 9 2.19063970000000019 0 16 false 118 153.295326386239992 2.28114144050829992 67.2011032 20.2245430000000006 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.298813523742012 -63.157842115742902 22.2720302802841985 -12.6143959176020992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377158665754752 2481377158665754752 256528212 2015.5 25.2661477566417005 0.039024745711629602 -3.05120821125523989 0.0300946902790560009 1.33730522919978001 0.0471138578124620025 28.3845400000000012 35.2294533522356019 0.0690817584005267993 -17.5410414468266005 0.0665931695157502973 0.116669449999999994 0.581088000000000049 -0.0632760700000000037 -0.00383201239999999979 -0.158481149999999987 -0.0642052099999999987 -0.189623459999999994 0.0160775899999999992 0.0665322500000000011 0.352182749999999989 151 124 146 5 8.14123200000000047 325.494995 0 0 31 true 206.349979999999988 1.57816917565693005 0.0101150787567449007 0.0840420499999999931 17 10 0.0514591000000000007 0 17 false 137 157217.089231335995 47.0450587218033007 3341.84009 12.6971159999999994 17 83996.8465040190931 131.590856304019013 638.318239999999946 13.0407299999999999 17 105217.761763528993 191.065344979736011 550.689939999999979 12.2066970000000001 1.20352450000000011 0 0.834033000000000024 0.343614580000000003 0.490418430000000016 9.33769838500690952 2.30676331359719011 9 5000 3 -1.5 NOT_AVAILABLE 151.299348347377986 -63.1565376358432999 22.2731726317175003 -12.6136767120905997 100001 5756.25 5650.43994 6008.54004 \N \N \N \N \N \N 200111 1.87470559999999997 1.72058029999999995 1.94557610000000003 3.47631759999999979 3.29457280000000008 3.65806250000000022 +1635721458409799680 Gaia DR2 2481377257449474560 2481377257449474560 1306303589 2015.5 25.2636566468664014 0.423496531719090019 -3.03657643541031996 0.270088162592331982 0.699577797786448019 0.515634982161390032 1.35673069999999996 16.4253278940275997 0.715376206600216946 -8.31808036311532994 0.465962455568579015 -0.0162513440000000009 0.600917600000000052 0.162066879999999996 0.0888451039999999942 -0.21107382999999999 0.00855583700000000016 0.270343200000000006 -0.0386080219999999988 0.127921499999999994 0.105807010000000007 149 0 149 0 1.71434500000000001 174.337997 0.590924530250976021 0.498141844588446014 31 false 0.174135220000000007 1.40870061820853998 0.0889431018782587957 0.075904879999999994 18 10 0.637126700000000046 0 18 false 148 381.19776311388199 1.90266298442747006 200.350006 19.2354899999999986 11 114.167821581281999 8.12916434601435078 14.0442260000000001 20.2075299999999984 9 449.88475590008602 10.3680678085876998 43.3913799999999981 18.1291679999999999 1.47968499999999992 0 2.07836150000000019 0.972038269999999982 1.10632320000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.280644260142992 -63.1443346238323002 22.2763297908049012 -12.5991583050952993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376986867085440 2481376986867085440 521751622 2015.5 25.2870299362054993 2.02506674325326985 -3.05216526966562984 1.5264563729268501 \N \N \N \N \N \N \N 0.101125030000000005 \N \N \N \N \N \N \N \N \N 105 0 104 1 37.6694600000000008 2132.6499 10.4860641429502 183.181184970679993 3 false 0.00830235600000000032 \N \N 0.123094999999999996 16 10 3.36048359999999979 0 16 false 138 371.351870210885977 5.01949562671079974 73.9819031 19.2638999999999996 15 481.544324447079021 15.0767475898328005 31.9395370000000014 18.6447980000000015 13 1120.56372530480007 11.8974603103324998 94.1851199999999977 17.1383289999999988 4.31425859999999961 0 1.50646970000000002 -0.6191025 2.12557220000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.34206909463299 -63.1485682951081984 22.2926752265124009 -12.6222525319662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481374165072978176 2481374165072978176 812573910 2015.5 25.3020714983128983 1.11294705982045006 -3.13497340472153008 0.859842697345755025 -0.32407549670507102 1.36800754204969 -0.236895999999999995 0.203344865315851997 1.90441168830448992 -10.9644809829843997 2.31037066655860013 -0.0335869199999999993 0.62797265999999996 0.128056350000000013 -0.18958469 -0.295979829999999999 -0.260609570000000013 -0.261567680000000025 -0.000543384749999999985 0.0324142840000000015 0.34429700000000002 113 0 112 1 1.50166949999999999 129.746002 2.24449179122035014 1.35782585577833004 31 false 0.0302035210000000005 1.75928586295883993 0.261102920521457005 0.145703520000000003 13 9 2.20691820000000005 0 13 false 112 131.192503931711002 1.38501634485157998 94.722702 20.3935929999999992 7 50.5926921233223013 10.2876589062943999 4.91780419999999996 21.0911700000000017 11 103.688092337102006 10.0667519939838002 10.3000550000000004 19.7225970000000004 1.17598779999999992 0 1.36857220000000002 0.697576500000000044 0.670995699999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.450180103110995 -63.2171533390175 22.275700782343101 -12.7047661225624999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375711261213184 2481375711261213184 1492544697 2015.5 25.3042974022025007 0.189355974454537002 -3.11999601406636007 0.135552347904512011 1.25589252553978992 0.239278918272470997 5.24865530000000025 8.05414628877105976 0.32441938492459399 -4.39330193346105968 0.236593512560460989 0.00823777499999999926 0.581946799999999986 0.0738662800000000064 0.110492475000000007 -0.283420979999999989 0.0891981049999999998 0.241857380000000011 -0.0306396019999999984 0.0737861999999999962 0.219804870000000013 151 0 147 4 0.911924900000000038 157.214996 0.342028290233436005 0.801509819702060033 31 false 0.775456099999999982 1.44176056735120994 0.0409486546210044017 0.0897863660000000063 17 10 0.294240769999999985 0 17 false 145 1108.23976722347993 2.60594767283417017 425.27301 18.0767820000000015 15 435.905353496642022 21.5104393974426991 20.2648280000000014 18.7529070000000004 15 992.88812599822802 7.67653293614277032 129.340699999999998 17.2696690000000004 1.2892458 0 1.48323819999999995 0.676124599999999965 0.807113650000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.440503989159993 -63.2026536274725004 22.2834781866991989 -12.6916628087550993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375745622748544 2481375745622748544 654646566 2015.5 25.3121988252581005 1.96114377397714001 -3.11132928939517983 1.8083557459369699 \N \N \N \N \N \N \N 0.100876199999999999 \N \N \N \N \N \N \N \N \N 67 0 66 1 -0.485340600000000011 55.1688995 0 0 3 false 0.0141598309999999995 \N \N 0.316176919999999972 8 7 6.44608399999999993 0 8 false 70 84.7725989821881996 1.79239922480830005 47.2956009 20.8677269999999986 6 76.1955967682520026 19.5804066039634996 3.89142060000000001 20.6465630000000004 7 97.7943319111163021 8.25543402663777037 11.8460560000000008 19.7861370000000001 2.05243099999999989 0 0.860425949999999995 -0.221164699999999992 1.08159070000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.448160820698007 -63.1914536536246985 22.2942705486963995 -12.6865144986808005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481375956074935424 2481375956074935424 245063075 2015.5 25.3016192726707985 0.0562318899492679006 -3.08960807109670021 0.0417619748912637992 0.68144297308192503 0.0686171973081404069 9.93108199999999997 9.38924349621579069 0.0992359785126624983 -6.93403289894980013 0.085399005991152202 0.0142302320000000006 0.557392299999999952 -0.046998485999999999 0.0720506759999999941 -0.250926099999999985 0.0591244469999999966 -0.0322911180000000006 -0.012313882 0.0487553800000000009 0.299872040000000006 134 0 134 0 -0.193896349999999995 125.255997 0 0 31 true 9.92532100000000028 1.60646831687823011 0.0148442727836756005 0.0852021050000000002 15 10 0.0989563900000000052 0 15 false 132 8872.71619110727079 8.34481284731507067 1063.26001 15.8182240000000007 15 4775.01612460698016 27.6608850860133018 172.627010000000013 16.1539520000000003 13 6040.31355539271044 18.6780050000716997 323.391779999999983 15.3092710000000007 1.21894239999999998 0 0.844680800000000009 0.335727700000000018 0.508953100000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.406492416286994 -63.1762861581557971 22.2924110381628999 -12.6624288285056004 100001 5759.2002 5493.75 5918 0.0340000018 0.0170000009 0.0540999994 0.0149999997 0.00870000012 0.0231999997 200111 0.873024899999999993 0.826801099999999956 0.959430930000000015 0.755434199999999945 0.594523899999999994 0.916344500000000006 +1635721458409799680 Gaia DR2 2481376054858609024 2481376054858609024 1433784262 2015.5 25.310568859698801 1.02016591328407991 -3.08953025352965982 0.712804848975256977 0.879495134343784013 1.22808820232184002 0.716149799999999948 -1.81094090047293999 1.78921764237389991 -5.7903410091910601 1.8543873942684499 -0.0130289900000000007 0.621441899999999992 0.103107509999999999 -0.160977700000000001 -0.242105810000000005 -0.20949021000000001 -0.263631669999999985 -0.0592758580000000007 -0.016332929999999999 0.340436640000000013 119 0 118 1 0.883569599999999955 126.092003 0 0 31 false 0.0356812199999999996 1.8867650437357999 0.233985182852925994 0.136960880000000007 14 9 1.86337350000000002 0 14 false 119 134.52606077971501 1.53884571364974998 87.4200974 20.3663500000000006 13 100.464342349781006 12.4048164958905005 8.09881700000000038 20.3463600000000007 13 106.801843235692004 6.30675674608693004 16.9345110000000005 19.6904739999999983 1.54071399999999992 0 0.655885700000000016 -0.0199909209999999983 0.67587660000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.424344001099001 -63.1724171546224014 22.3009550124392995 -12.6656502584411008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481376157937830656 2481376157937830656 1395163038 2015.5 25.3069106088994005 0.582944495864852974 -3.07147610582059016 0.383550655104082983 0.682286131894210945 0.712591651438194029 0.957471430000000012 -11.0358203996635993 0.969035598627778993 -44.0280814375034026 0.66481559020622405 -0.00475642270000000041 0.608372330000000017 0.146727350000000006 0.103951864000000005 -0.224906699999999987 0.0477449100000000015 0.270564530000000025 -0.0382483939999999981 0.107835449999999999 0.146452300000000007 144 0 142 2 2.81777200000000017 188.311005 1.42106173730947005 2.03549191031122012 31 false 0.0930080040000000052 1.3574699490609301 0.117706636519088997 0.100173570000000003 17 10 0.866731000000000029 0 17 false 142 286.970440059952978 2.02260550679630979 141.882004 19.5437739999999991 14 77.035822123831494 8.97778759857883912 8.58071299999999937 20.6346570000000007 15 357.081991309913008 8.32561671025353078 42.8895529999999994 18.380001 1.51276150000000009 0 2.2546558000000001 1.0908833 1.16377259999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.400021279594995 -63.1576272947341977 22.3042942382252001 -12.6475206892295997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481422887182028160 2481422887182028160 5120932 2015.5 25.1739627488001005 0.966454810160066957 -3.03432415130466016 0.640981038447730023 -2.22052721597485014 1.11601927437797999 -1.98968539999999994 0.56223844609699003 1.50361827710524998 -15.5831069717177009 1.48953103449211999 0.169441389999999997 0.685823300000000025 0.0936799900000000046 -0.145852430000000005 0.0412408559999999993 -0.190485970000000004 -0.242081170000000012 -0.0725824300000000033 -0.0258192939999999996 0.256316800000000011 128 0 127 1 -1.09520039999999996 105.074997 0 1.81951349891414994e-15 31 false 0.0399786420000000017 1.39579620043762009 0.210069075955647999 0.0796290100000000001 15 9 1.48504459999999994 0 15 false 128 145.611103185957006 1.31789137424020009 110.487999 20.280380000000001 11 73.486068746341104 9.58614652240627052 7.66586099999999959 20.6858749999999993 12 123.301030484519998 9.48839825054047914 12.9949255000000008 19.5345039999999983 1.3514565999999999 0 1.15137099999999992 0.405494699999999986 0.745876300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.098671328593014 -63.1800856360855008 22.1918750006595005 -12.5640393788193006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424295931302016 2481424295931302016 364390867 2015.5 25.2020714347115984 0.401010661449973993 -3.0328688421523502 0.271348570702678982 -0.596387297038875053 0.536088812747805954 -1.11247849999999993 4.34543785185743037 0.621048074913383985 -2.92463120547584987 0.454139292631012992 0.102186719999999995 0.664590600000000031 0.147058889999999998 0.222969429999999996 -0.129824119999999987 -0.117159046000000003 0.126545039999999998 0.149423549999999988 0.383565099999999992 0.161051050000000001 130 0 126 4 1.24515679999999995 140.684006 0.934958826618127015 1.98738134100964992 31 false 0.224026740000000002 1.65872210785454 0.0804516212259877017 0.126704000000000011 15 9 0.590187899999999988 0 15 false 126 528.381409449434955 2.2176133268979501 238.266006 18.8809970000000007 14 325.240029758833998 8.25959222253385938 39.3772499999999965 19.0708790000000015 13 325.665066489022024 4.78135153210519004 68.1115099999999956 18.4799919999999993 1.2318849999999999 0 0.590887069999999959 0.189882279999999987 0.401004799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.153728520751002 -63.166946317164502 22.2191562062110002 -12.5730383933232996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481424330291042688 2481424330291042688 375510112 2015.5 25.2075574941178999 0.823325413899370973 -3.02517678354087005 0.479528748212918021 1.09778705741845006 0.977319784653843948 1.12326290000000006 -7.98638094173104029 1.28831549886814001 -8.82037418131591977 0.832685815495394999 0.000517206999999999997 0.658212539999999957 0.138417559999999995 0.114241670000000003 -0.117779314999999996 -0.0237790699999999994 0.242161349999999997 0.000769167150000000014 0.183811799999999997 0.0661379899999999937 154 0 153 1 2.77724390000000021 200.291 1.51650834731779005 1.1640546554867699 31 false 0.0496240100000000031 1.15268244436153 0.157235337903686989 0.0535761230000000033 18 10 1.14804539999999999 0 18 false 151 183.440402400602011 1.40254418414735005 130.791 20.0296289999999999 12 48.9723717095958975 8.07961196929625025 6.06122829999999979 21.1265099999999997 14 248.034695851089992 7.54232387508266022 32.8857100000000031 18.7756390000000017 1.61909299999999989 0 2.35087199999999985 1.09688190000000008 1.25399020000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.157551600976007 -63.1576618382516983 22.227279673056799 -12.5679085138507993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481377601048593536 2481377601048593536 1479581047 2015.5 25.2979275790044014 1.03673586109677007 -3.02863515624924018 0.713355411813405005 3.5979035244122799 1.19915955206251001 3.00035430000000014 4.16829134891148012 1.95860783807177996 -17.4481493403492003 1.82043451079240004 0.039360939999999997 0.544086300000000023 0.159329200000000004 -0.155087370000000002 -0.135162919999999992 -0.191938090000000006 -0.251546349999999974 -0.132240980000000008 -0.0251450609999999998 0.275137359999999997 114 0 113 1 -0.450102979999999986 100.880997 0 0 31 false 0.0339679120000000029 1.21455951449657995 0.247717547487057987 0.114134180000000002 13 9 1.89022660000000009 0 13 false 112 130.791318524289011 1.36551477080898009 95.7817001 20.3969200000000015 6 34.2062628027308975 9.5551373753830795 3.57988200000000001 21.5161249999999988 12 213.232612035474006 13.0908659660916999 16.2886559999999996 18.9397850000000005 1.89186009999999993 0 2.57633970000000012 1.11920550000000008 1.45713420000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.341799025302009 -63.1226438691185976 22.3119279752575004 -12.6043892194108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505435808818230144 2505435808818230144 1563622919 2015.5 26.0603062453829004 1.77934058043751997 -2.62595136867513013 1.63599264916489995 1.33081218254514 2.40039838038138997 0.554413000000000045 32.0267490642153021 3.22155460757478007 -10.5092295553110997 4.16199220487463961 -0.407537670000000019 0.624485199999999963 0.170494000000000007 -0.0694175300000000051 -0.712247549999999952 -0.402034849999999999 -0.406545519999999994 0.276069019999999998 0.260876300000000005 0.399149450000000017 68 0 64 4 0.641700739999999992 65.5311966 2.13883435671134015 0.598857206901145966 31 false 0.0229788270000000003 1.86973901424317002 0.408567887802262997 -0.157068120000000006 8 7 4.08076900000000009 0 8 false 65 87.8873168727676983 1.13936375698778991 77.1371994 20.8285499999999999 3 84.6874287028986004 14.6633010629945009 5.7754683 20.531841 8 125.288398722631001 7.54828080088473996 16.5982699999999994 19.5171430000000008 2.38914820000000017 1 1.0146980000000001 -0.296709060000000024 1.31140710000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.463403445805994 -62.430730001856297 23.1890373331583994 -12.5095077296568 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424126505239040 2505424126505239040 521437208 2015.5 26.1092600827257009 0.107653984245682996 -2.62598921093203019 0.0846576504381540001 1.07547442687887007 0.136789274250569998 7.86227199999999993 13.2503903094906992 0.201943357660406997 -9.8503049288111697 0.158323192653808009 -0.0304615220000000013 0.510499950000000036 -0.100988224000000001 0.0756511099999999936 -0.369561729999999977 0.0355190449999999991 0.121527105999999996 0.0589246939999999997 0.0716192050000000052 0.238180499999999989 130 9 129 1 1.1883321 142.936996 0 0 31 false 2.90918350000000014 1.40754449654632996 0.0267811288068642989 0.0318502599999999983 15 10 0.177260119999999993 0 15 false 126 2735.33348813554994 3.48189062845233011 785.588989 17.095839999999999 14 926.41079647220397 17.0723033420457995 54.2639599999999973 17.9343800000000009 14 2720.65222944094012 12.3422489109058997 220.434079999999994 16.1752380000000002 1.33331569999999999 0 1.75914189999999993 0.838539099999999982 0.920602800000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.55830076071399 -62.4092576909716001 23.235641515142099 -12.5274393499084997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425535258264064 2505425535258264064 504336119 2015.5 26.1200359562140001 0.713652058216302954 -2.61709354136926997 0.609828606470492973 -0.281976907851938019 1.05167839718197009 -0.268120860000000016 3.88904357584709004 1.15681002624374996 2.30506683272461022 0.941132484986634044 -0.11269527 0.614708959999999971 0.0402793030000000024 0.15518193999999999 -0.530849339999999947 0.16685839999999999 0.235761179999999987 -0.0160478280000000001 0.0373673100000000008 0.354156079999999984 147 0 147 0 3.80941989999999997 215.475998 2.08347243585031983 2.73505348096137979 31 false 0.0550623280000000007 1.39367782281895991 0.158716475010677011 0.101835880000000004 17 10 1.10794830000000011 0 17 false 147 175.556711661316996 1.06092787629231 165.475006 20.0773219999999988 12 75.6632588679304945 19.7013090476322006 3.84051939999999981 20.6541749999999986 13 217.23381064201601 13.2815437383388009 16.3560659999999984 18.9196010000000001 1.66839000000000004 0 1.73457339999999993 0.576852800000000054 1.15772059999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.570703001530006 -62.3965297542674975 23.2492380436158008 -12.523099004514 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425569614353792 2505425569614353792 21600433 2015.5 26.1346291276534011 1.04985215510852004 -2.61717230024913006 1.26257780985426993 2.27469029781078014 1.6150304012718899 1.40845050000000005 2.37109055182641981 2.30379931323989018 3.30211670106320998 3.34688169235639998 -0.0789026899999999975 0.521575299999999964 0.133021040000000007 -0.0010023155000000001 -0.610481139999999978 -0.391275170000000005 -0.518427549999999959 0.217233229999999999 0.343431900000000012 0.65549636 105 0 104 1 -1.83324090000000006 74.8251038 0 0 31 false 0.0280099340000000002 1.60863795945421995 0.312186911920269983 0.102314464999999993 12 9 3.39086370000000015 0 12 false 106 99.9856889468891978 1.15338315086257004 86.689003 20.6885200000000005 8 77.3740948147942049 9.38506668641445074 8.24438400000000016 20.6298999999999992 10 88.7783617265629061 8.04400935690055974 11.036581 19.8911510000000007 1.66176239999999997 0 0.738748549999999948 -0.0586204530000000029 0.797368999999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.599015817263989 -62.390174825147902 23.2631067081181016 -12.5285054815861994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425397815661440 2505425397815661440 731759359 2015.5 26.1715910466928001 0.595523717031152033 -2.62067249832115001 0.584037540178387049 0.882924109816445979 0.951497213268221009 0.927931370000000033 1.12601102413678 1.04058228396439989 2.85188658720791999 0.997055493011265948 -0.161656190000000005 0.595557329999999996 0.0550792329999999983 0.0806639049999999941 -0.62518733999999998 0.141956169999999993 0.132289020000000007 -0.0768897699999999962 -0.0220936049999999988 0.468487649999999978 149 0 148 1 0.452029899999999984 150.091995 0.737287741772919003 0.345568531994222994 31 false 0.0709526600000000007 1.77979607301495002 0.16360698610909799 0.0952836400000000028 17 10 1.0915554999999999 0 17 false 149 181.051157281173005 1.47134908175705004 123.051003 20.0438630000000018 16 139.182122453771996 15.2710656691007998 9.11410700000000062 19.9924299999999988 15 142.841611100167 7.14604974635142032 19.9888919999999999 19.3747830000000008 1.55770199999999992 0 0.617647199999999952 -0.0514335630000000016 0.669080730000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.673820252473007 -62.3770147731462004 23.2969992155110006 -12.5452687036917006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424676261054848 2505424676261054848 1259864100 2015.5 26.1895021430593999 0.998076925620766997 -2.61484919637576985 1.21000494521260005 -0.720408719065207981 1.54044228505948011 -0.467663559999999978 -1.51867850311182995 2.47936294538689994 -5.15231715766157983 3.22206636520173006 0.00300936209999999984 0.446293700000000015 -0.121960349999999995 -0.0340467900000000004 -0.612218499999999999 -0.413151439999999981 -0.571310760000000029 0.263309540000000009 0.332795049999999981 0.722718799999999995 110 0 110 0 2.87486700000000006 151.561005 2.3031784833604898 1.33546627857810996 31 false 0.0289221009999999987 1.40839097898586996 0.307852009332658993 0.151172030000000013 13 9 3.42294600000000004 0 13 false 109 115.378367655337996 1.55944604233531003 73.9868011 20.5330539999999999 12 102.882059754427004 19.8179005089663995 5.19137049999999967 20.3205400000000012 12 126.110054935174006 18.4274105053594006 6.84361200000000025 19.5100459999999991 1.98470579999999996 0 0.810493470000000049 -0.212514879999999989 1.02300830000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.702872992283005 -62.3638801132111027 23.316241296456699 -12.5463920239360007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425054220345088 2505425054220345088 659307447 2015.5 26.1982188190666001 5.36047598466295039 -2.61532683609845984 1.80141403139517009 \N \N \N \N \N \N \N 0.48708990000000002 \N \N \N \N \N \N \N \N \N 79 0 78 1 1.59792219999999996 93.2727966 3.22330956325279994 1.47764105365281995 3 false 0.0182760790000000006 \N \N 0.191920900000000005 9 6 10.0378620000000005 0 9 false 79 83.2990953844576012 1.17131803101754994 71.1156998 20.8867650000000005 4 73.5509144413097999 26.358830470947801 2.79037099999999993 20.6849169999999987 7 150.051298134158003 14.5312013727343992 10.3261450000000004 19.3213210000000011 2.68432950000000003 0 1.36359600000000003 -0.201847080000000012 1.56544299999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.720162135100992 -62.3604554523004992 23.3243652724200992 -12.5500206226969002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425054218278400 2505425054218278400 1658716834 2015.5 26.2025909288114001 1.76408279730244999 -2.6158261787649999 2.53428981534495978 \N \N \N \N \N \N \N 0.348087199999999986 \N \N \N \N \N \N \N \N \N 75 0 73 2 0.970669299999999957 79.2192001 2.32581363245735995 0.933909621373001042 3 false 0.0236608960000000007 \N \N 0.276874330000000002 10 7 5.45638039999999958 0 10 false 73 94.3983896570862981 1.53033500116050991 61.6847992 20.7509540000000001 7 66.8821664409709058 12.6779665934011998 5.27546499999999963 20.7881129999999992 8 92.968284708694199 7.59317823909263989 12.2436589999999992 19.8410839999999986 1.69335999999999998 0 0.947029099999999957 0.0371589660000000016 0.909870150000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.729080444587993 -62.3589698487824009 23.328342863779099 -12.5520823641756003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437698605046784 2505437698605046784 590470102 2015.5 26.0688272634888989 13.1848647852729997 -2.5805126854183702 4.49359793977153998 \N \N \N \N \N \N \N 0.621455599999999997 \N \N \N \N \N \N \N \N \N 41 0 40 1 0.350031170000000003 37.3110008 0 0 3 false 0.0213191270000000002 \N \N 0.208391409999999999 5 4 12817.8680000000004 0 5 false 40 84.867069902066703 2.73887255373983018 30.9860992 20.8665179999999992 4 68.8215105916764998 21.3720736595650997 3.2201607000000001 20.7570779999999999 4 57.3200617337504994 11.0327683198363005 5.19543800000000022 20.3661540000000016 1.48634289999999991 0 0.390924449999999979 -0.109439850000000005 0.500364299999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.436853550595998 -62.3861663845807968 23.2141839465536002 -12.4703368730198996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505436221132552064 2505436221132552064 791919126 2015.5 26.0594979307679999 0.415181466034235003 -2.57705715548818004 0.332063774877499995 2.3424316783912702 0.556703812043306989 4.20767999999999986 32.017556328986899 0.736836642229889982 6.26200323673482995 0.567827355985768945 -0.0908482800000000035 0.557182850000000007 -0.0635725899999999983 0.10230765 -0.450577170000000027 0.0617798300000000009 0.184219689999999992 0.0583636100000000033 0.0646400200000000064 0.251702760000000025 129 0 129 0 3.31561569999999994 183.020996 1.10406630134874995 1.91351448251643008 31 false 0.169953149999999997 1.11522769948825995 0.105497016273465 0.0432983300000000029 15 10 0.672258499999999981 0 15 false 132 370.000890885077013 1.40400896842240996 263.532013 19.2678590000000014 13 82.4236015017848018 9.05025808439927992 9.10732100000000067 20.5612579999999987 13 509.738229599905992 14.5886550561424002 34.9407270000000025 17.9935510000000001 1.60043350000000006 0 2.56770699999999996 1.29339979999999999 1.27430730000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.415513439514001 -62.387148857398202 23.2065961970690999 -12.4637104012999007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449861949293696 2505449861949293696 804094447 2015.5 26.2295483228833 2.08719354004279989 -2.5269259740991501 1.84502577362084996 \N \N \N \N \N \N \N 0.255973129999999993 \N \N \N \N \N \N \N \N \N 124 0 124 0 62.7715260000000015 6080.22998 12.8651293634403991 180.225935503827003 3 false 0.00543941929999999969 \N \N 0.150925759999999992 17 10 3.96670269999999991 0 17 false 137 229.230881771038014 2.59366509556809 88.3811035 19.7876830000000012 9 277.232929620683024 10.5384818056443006 26.3067250000000001 19.2442759999999993 9 627.189613451697028 14.6704761516469002 42.7518230000000017 17.7684229999999985 3.94546559999999991 0 1.47585300000000008 -0.543407439999999964 2.01926039999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.696395039159995 -62.2673301027219992 23.3873076567154001 -12.4791788923658995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505435950550276224 2505435950550276224 277037205 2015.5 26.0723584149159997 1.04519408767766997 -2.60392853692402015 1.06555631357767999 -0.26262530047678001 1.48655206346247004 -0.176667400000000002 -0.00914097764129168967 2.15812526861029985 -4.51391699639713995 2.86399854185795011 -0.107268429999999998 0.539484199999999969 0.115867904999999993 -0.0451889450000000012 -0.545030530000000013 -0.312141029999999986 -0.446192739999999977 0.093683530000000001 0.210015010000000002 0.57152780000000003 104 0 101 3 0.380867899999999981 100.684998 2.06283971807751021 1.72966892175836007 31 false 0.0306478779999999999 1.53677592669153995 0.30813748339279301 0.092982456000000005 12 9 2.87783960000000016 0 12 false 99 109.190493883122002 1.22047301753756998 89.4656982 20.5929029999999997 10 80.2162477236132929 15.7325528685626992 5.09874340000000004 20.5907330000000002 10 68.1505232826679048 9.38846327800739999 7.25896450000000026 20.1782469999999989 1.3587883999999999 0 0.412485119999999983 -0.00217056269999999982 0.414655700000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.465876833175997 -62.405657187035402 23.208769696886101 -12.4934193525895001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505435946254639488 2505435946254639488 708323947 2015.5 26.0885023410398986 0.0408758314717301979 -2.60439545746779988 0.0341442441432619967 0.630837862365499991 0.0517999243712869983 12.1783549999999998 -1.69635517625915 0.0758637055751009981 -1.52996538230923007 0.0757879606985207011 0.0389573240000000015 0.544523540000000028 -0.0134281664999999998 -0.00885365899999999983 -0.292412159999999977 -0.0246391580000000013 -0.0218671900000000016 -0.0103331010000000008 0.0295491439999999994 0.340818259999999984 141 0 141 0 -0.464951840000000005 127.834 0 8.61659632663008985e-16 31 false 20.6108800000000016 1.5987107297523 0.0119568461658079994 0.0736482100000000056 16 10 0.0840493439999999981 0 16 false 140 16745.9319766830013 8.67992435280297947 1929.27002 15.1285924999999999 15 8859.7141903749598 16.2371729517746992 545.643860000000018 15.4828390000000002 16 11453.1937358324994 16.6762163486977997 686.798099999999977 14.6146030000000007 1.21300549999999996 0 0.868235599999999996 0.354246139999999987 0.513989449999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.497591851820999 -62.3989906595561976 23.2239674997357994 -12.4997555582801994 100001 5787.29004 5544.20996 6306 0.598999977 0.344000012 0.744099975 0.262300014 0.1505 0.368999988 200111 1.28192290000000009 1.0797021 1.39679229999999999 1.66080460000000008 1.36265590000000003 1.95895339999999996 +1635721458409799680 Gaia DR2 2505437355003911680 2505437355003911680 1345291405 2015.5 26.0983403958108013 0.425778481605095016 -2.60669756845957012 0.369202678590396016 0.509792751335765959 0.621066202527888023 0.820834799999999976 5.0601454463229496 0.713715008727172973 -8.43042357125962027 0.585352334491712978 -0.118493415000000005 0.593247060000000048 0.0892102300000000015 0.120378494000000003 -0.51073959999999996 0.0516605200000000014 0.193360329999999997 0.0381070039999999999 0.0915462100000000029 0.275539599999999996 135 0 135 0 4.1103683000000002 207.268005 1.15233352129689992 2.25823561154071006 31 false 0.155017359999999993 1.30173959613557 0.0986175770266251028 0.0975957400000000003 16 10 0.667923399999999945 0 16 false 134 334.539994554860016 1.7260456306377101 193.819 19.3772449999999985 12 97.3017241987330976 8.62148065792673002 11.2859639999999999 20.3810859999999998 13 382.12884807847098 7.67422087900960026 49.7938299999999998 18.3063949999999984 1.4331039000000001 0 2.07469180000000009 1.00384139999999999 1.07085040000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.518827315919992 -62.3967365655348019 23.2324731469632013 -12.5054941568707996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437355003912448 2505437355003912448 1459384015 2015.5 26.0952686877287015 0.165158059925565009 -2.60386481166613981 0.133712884612861987 0.570518238528815003 0.221141081409948009 2.57988360000000005 7.70779121430034042 0.285285022415702028 -0.0631536804312558958 0.236084212923414 -0.063125920000000002 0.579038399999999953 0.0290623100000000009 0.0887658399999999986 -0.407775370000000026 0.0580665470000000031 0.186387300000000006 0.0181475279999999996 0.0617803450000000004 0.258031899999999981 141 0 138 3 0.697185999999999972 143.994003 0.253907906480166978 0.556061584083026972 31 false 1.01267499999999999 1.46686201035730002 0.0406365777706313991 0.0681096300000000043 16 10 0.265568379999999993 0 16 false 136 1204.1362888629601 1.98694505055486004 606.023987 17.9866770000000002 13 518.189980274021991 8.10260046330466999 63.9535399999999967 18.5651660000000014 14 994.007822228603004 9.10161354843964077 109.212265000000002 17.2684460000000009 1.25583610000000001 0 1.29672049999999994 0.578489299999999984 0.718231199999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.51019094528101 -62.395542116771999 23.2306097247301011 -12.5017350582513007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437458083131392 2505437458083131392 624425670 2015.5 26.0966842061553983 0.771845431262255022 -2.58630999263669015 0.933244966489409022 -1.53008966925455003 1.22113859005448 -1.25300250000000002 1.56326578253264992 1.71645163339441997 -1.76950382116404992 2.38670476748841009 -0.102523799999999998 0.563267900000000044 0.00925183800000000008 0.0694651450000000059 -0.626753329999999997 -0.357666729999999988 -0.520263249999999955 0.234881969999999995 0.323071449999999982 0.719973900000000055 120 0 117 3 -1.49687780000000004 90.4778976 0 0 31 false 0.0480110870000000009 1.82041639711291992 0.227222950256757011 0.169953910000000014 14 9 2.48264839999999998 0 14 false 119 128.506315632821014 1.12866180858035992 113.857002 20.416053999999999 10 82.1492144126200969 8.16556075716995977 10.0604499999999994 20.5648799999999987 9 132.479490168801988 26.4200870486155992 5.01434699999999989 19.456548999999999 1.67018019999999989 0 1.10833169999999992 0.148826600000000003 0.9595051 \N \N 0 \N \N \N NOT_AVAILABLE 152.496278737033009 -62.3791533382183019 23.238536609741999 -12.4859149290534006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437767320780672 2505437767320780672 696414151 2015.5 26.1117225671610989 0.328047814942724003 -2.56485925992768982 0.259485913234864973 0.928863430479295982 0.448652633273779022 2.07033999999999985 16.2339767694755004 0.589090081535609045 -3.82566018577024991 0.43114631672786502 -0.0415062500000000015 0.517005200000000054 0.0885843699999999956 0.144034390000000012 -0.460680699999999999 0.149601330000000005 0.177222450000000004 -0.0575167649999999975 0.0659858200000000006 0.301759999999999973 141 0 139 2 2.43863269999999988 177.214005 0.839655555802034992 1.67552168249543998 31 false 0.255203279999999977 1.54705104652866998 0.0782758032300785028 0.0538033139999999979 16 10 0.543584940000000016 0 16 false 137 487.932502339525001 1.52021658341433996 320.962006 18.9674660000000017 13 219.765778032975987 11.0274337078843008 19.9290050000000001 19.4964890000000004 14 407.148835362157001 9.79143508644784966 41.5821400000000025 18.2375369999999997 1.28483879999999995 0 1.25895120000000005 0.529022199999999998 0.72992900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.505039224916004 -62.3532821314312997 23.2608941060591015 -12.4714473875856005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438866832416512 2505438866832416512 1204077941 2015.5 26.0659041592336997 0.480346793648361026 -2.52724891234969995 0.374108606475539007 0.473757194141178006 0.666636459672179993 0.710667970000000038 -1.76101740002177998 0.769714364298035969 -11.7756193870185992 0.613248725360656999 -0.0497280500000000028 0.622313140000000042 0.0331203860000000017 0.174134719999999993 -0.426560400000000006 0.129717870000000013 0.1749917 0.0240283379999999998 0.105548760000000005 0.326450320000000016 149 0 147 2 3.0893063999999999 199.845001 1.4038639771436201 3.03225443736097011 31 false 0.123555429999999994 1.22023458593953005 0.107165427362151996 0.104020249999999995 17 10 0.726272640000000025 0 17 false 145 307.275409747046012 1.56438604016366001 196.419006 19.4695450000000001 15 74.6956259710408972 10.2914605984825993 7.25802000000000014 20.6681500000000007 16 390.68807956965901 8.49418257162047041 45.9947799999999987 18.2823449999999994 1.51454909999999998 0 2.38580509999999979 1.19860459999999991 1.1872005000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.380859128780003 -62.3395734522826004 23.2313596933847002 -12.4196984356727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438974207216256 2505438974207216256 610004069 2015.5 26.059691025667 0.17726388655028999 -2.51287630568406994 0.119292039602829997 1.6369580017099401 0.243208786228621993 6.7306695000000003 20.4395498017945982 0.246201009253646991 7.34741069089506027 0.214105553509944008 -0.206498860000000006 0.739515499999999992 -0.00745638370000000026 0.125178490000000003 -0.484970999999999985 0.06119169 -0.00165633550000000005 0.0304425730000000005 0.102421150000000002 0.370533080000000015 131 0 130 1 1.72475470000000008 153.535995 0.305888481841204984 1.13355138518545995 31 true 1.43969870000000011 1.36021694484849998 0.0428328345912089015 0.0753230700000000059 15 9 0.245356130000000006 0 16 false 128 1694.10647108651006 2.56827506552434981 659.627991 17.6160139999999998 13 542.463009417914009 14.9215471130574002 36.3543400000000005 18.5154630000000004 11 1760.94737610929997 24.2551242484230016 72.6010399999999976 16.6475539999999995 1.35966100000000001 0 1.86790849999999997 0.899448400000000037 0.968460100000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.355287579665998 -62.3293690637400033 23.2308292025800007 -12.4040513336851994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438901192155392 2505438901192155392 196874732 2015.5 26.0745069176929007 0.184686866040680991 -2.52327737491334991 0.128338510399368 0.912886916397555037 0.245223334337805993 3.72267560000000008 0.791962522068012986 0.273151019647730975 -2.86786787798956988 0.222232012087030001 0.0876461000000000046 0.682321900000000037 0.0229585190000000001 0.189649000000000012 -0.229113189999999994 0.129031630000000008 0.149464320000000012 0.0391392860000000023 0.13891690000000001 0.333377540000000028 140 0 139 1 0.523502000000000023 142.059998 0 0 31 false 1.04962120000000003 1.3557317150433299 0.040337664259118701 0.135346770000000005 16 9 0.263135699999999972 0 16 false 138 1197.50894794134001 2.38374301707986991 502.36499 17.9926679999999983 13 418.36779719483701 13.9301056340160994 30.0333539999999992 18.7974929999999993 12 1168.29103852224989 10.6987823090231995 109.198509999999999 17.0930420000000005 1.32496619999999998 0 1.70445059999999993 0.804824800000000007 0.899625800000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.393752063927991 -62.332238302814801 23.2410377496545983 -12.4191466662896008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439279149279744 2505439279149279744 1103963010 2015.5 26.0806747575366984 0.190430966099396998 -2.51238421809309997 0.144101068172337005 0.063290339801169701 0.252452320213299997 0.250702140000000018 4.31894743586716956 0.310290097732928982 -5.39646659437393961 0.254529567621068986 0.0589714530000000001 0.613677200000000034 0.00709181929999999974 0.157542139999999997 -0.296626659999999986 0.128309900000000005 0.139359769999999994 0.0143885469999999998 0.0972398200000000046 0.337140949999999995 145 0 142 3 0.912707500000000005 151.955002 0.466667439834538011 1.61286604238929998 31 false 0.806112599999999957 1.62605047972988004 0.0438021697775028973 0.120105035999999998 17 10 0.295804379999999978 0 17 false 142 1150.87903520163991 2.2412274933963201 513.504028 18.0357909999999997 15 682.517641124861029 8.38159557558437918 81.4305099999999982 18.2661039999999986 12 746.490592822083954 8.48915094766840994 87.9346599999999938 17.5793600000000012 1.24166679999999996 0 0.686744699999999986 0.230312349999999999 0.456432339999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.395400989285008 -62.3197465773351027 23.2509903549131991 -12.4112628918700008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439008566954752 2505439008566954752 1293469627 2015.5 26.1108393423128007 0.0419420554364300022 -2.53106351922800998 0.0353768831848125034 1.59150271171690005 0.0533272024269985032 29.8441070000000011 -24.5931060998976996 0.0805627894525312027 -23.8305370200189017 0.0783118233821526039 0.100461499999999995 0.510640560000000021 -0.0723874600000000007 0.0378141550000000021 -0.289203759999999976 0.0465073250000000021 -0.0593303700000000003 -0.0254339069999999987 0.000588620400000000013 0.439305219999999996 149 9 147 2 5.5987859999999996 257.799011 0.192915521107012988 5.59859018251775975 31 true 20.5236319999999992 1.52386016631848009 0.0122895876916655003 0.0869347159999999952 17 10 0.0872780159999999999 0 17 false 148 74190.130520982304 28.0685009882969005 2643.17993 13.5125010000000003 17 38023.8330461303995 65.3090582381458944 582.213750000000005 13.9012480000000007 16 51816.7822249918972 51.2967931094237031 1010.13689999999997 12.9757440000000006 1.21095109999999995 0 0.925503729999999969 0.388747220000000004 0.53675649999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.471341882220997 -62.3233122115292986 23.2727132126614009 -12.4396710184556998 100001 5457.66992 5396.33008 5922.18994 0.382699996 0.256900012 0.458099991 0.195299998 0.143900007 0.228100002 200111 1.21917439999999999 1.03541670000000008 1.24704539999999997 1.18810379999999993 1.10486510000000004 1.27134250000000004 +1635721458409799680 Gaia DR2 2505439107350588160 2505439107350588160 1253775965 2015.5 26.1013057988193005 4.46526241117896028 -2.51080311204517015 2.27708971351981004 \N \N \N \N \N \N \N -0.539043599999999956 \N \N \N \N \N \N \N \N \N 75 0 74 1 24.0454749999999997 908.534973 12.2642045337850991 61.719345253074799 3 false 0.00586575500000000027 \N \N -0.235939370000000009 9 7 14.1801309999999994 0 10 true 81 229.742713772689996 5.23720503289685002 43.8674011 19.7852609999999984 7 204.641702416475994 9.87603659456621941 20.7210350000000005 19.5739020000000004 8 499.20638655150799 18.4632283743007015 27.0378700000000016 18.0162200000000006 3.0636359999999998 0 1.55768200000000001 -0.211359020000000009 1.76904109999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.433779544759005 -62.3092887971994998 23.2712245904418005 -12.4173308446933 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439042926714240 2505439042926714240 1254111453 2015.5 26.1108686785315989 5.25237585718318023 -2.51735150245098005 3.12018234960595997 \N \N \N \N \N \N \N -0.240523979999999998 \N \N \N \N \N \N \N \N \N 84 0 83 1 31.0812680000000015 1461.67004 19.1262968494773986 105.843123887969995 3 false 0.00254820699999999982 \N \N -0.00373215900000000008 12 8 8.75114699999999957 0 12 true 102 152.461956327839005 2.28190903663431 66.8133011 20.2304609999999983 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.458437825164992 -62.3109800952602981 23.2778768927508999 -12.4269198353593993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439107350587136 2505439107350587136 209622776 2015.5 26.1075473621935998 1.33400536090896993 -2.51526826662344005 1.39344045848954989 \N \N \N \N \N \N \N 0.0540767799999999979 \N \N \N \N \N \N \N \N \N 88 0 88 0 2.28522470000000011 115.230003 2.91366994448579009 1.71609748731582989 3 false 0.0208736789999999992 \N \N 0.0974778159999999949 10 7 5.44142499999999973 0 10 false 87 97.5557740121876975 1.88225214106460004 51.8292999 20.7152330000000013 5 52.5776885878099023 18.6533798352858007 2.81866810000000001 21.0493850000000009 6 124.885238922742005 18.6287547493197998 6.7038960000000003 19.5206410000000012 1.81909199999999993 0 1.52874369999999993 0.33415222 1.19459150000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.45005388570101 -62.3105648834939032 23.2754948417141989 -12.4237673315333002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437492443569536 2505437492443569536 45188466 2015.5 26.1319062516664005 0.787855547809933054 -2.58581383767880979 0.983547730986813029 1.02519369714695996 1.28791624321362996 0.796009599999999984 10.3300064648434997 1.75638360381945002 9.69695713626711964 2.49164610600469016 -0.123769774999999999 0.579524000000000039 0.0370408699999999966 0.0795623699999999934 -0.644736500000000046 -0.440520760000000011 -0.613020840000000011 0.280725800000000025 0.384669270000000008 0.737962659999999993 123 0 122 1 1.54538620000000004 141.509995 0 0 31 false 0.0465994600000000023 1.55753170131810004 0.230360971856962998 0.163463069999999988 14 9 2.61879300000000015 0 14 false 121 130.018724201345009 1.08397566718311 119.945999 20.4033499999999997 11 77.4429431351847057 8.13665779708360049 9.51778299999999966 20.628933 12 102.201392148935 8.98715711451743005 11.3719380000000001 19.7382770000000001 1.38168050000000009 0 0.890655500000000044 0.225582119999999997 0.665073400000000037 \N \N 0 \N \N \N NOT_AVAILABLE 152.563942145959004 -62.363224962534602 23.2722636857595013 -12.4983253875613993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425676988469504 2505425676988469504 1271721605 2015.5 26.1480189859038994 0.150351890218476003 -2.60617293248707016 0.114778191224034001 0.569429988960367006 0.192264816720626008 2.96169610000000016 42.9050313158370997 0.293298116477960003 -30.1185132177342005 0.211604779660839987 -0.0334623199999999968 0.447655560000000008 0.130486039999999998 0.0585943869999999978 -0.37626480000000001 0.059266395999999999 0.139477770000000001 -0.087781449999999997 0.0659205100000000016 0.20369836999999999 146 0 139 7 5.38593770000000038 241.934998 0.676270121761430976 9.8293574619246904 31 false 1.14824740000000003 1.4904467658231999 0.035030218577405299 0.0236713630000000008 17 10 0.265708420000000001 0 17 false 134 2512.90221610648996 3.6793740030824198 682.969971 17.1879269999999984 11 1161.49522736857011 14.1627006743528998 82.0108599999999939 17.6888450000000006 11 1992.39118650602995 14.0305192927126008 142.004089999999991 16.5134830000000008 1.25507719999999989 0 1.17536160000000001 0.500917429999999997 0.674444200000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.614446173967991 -62.3744034580070021 23.2799807887059984 -12.5231612737548996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426153729810304 2505426153729810304 103362132 2015.5 26.1567616176335989 0.295010015308239004 -2.58052292423205021 0.241499231223270994 4.13115494895218038 0.426233763678783018 9.69222800000000007 -44.863455623840899 0.502285700765040977 -26.8755693332404988 0.399235893939027975 -0.123986479999999996 0.581652460000000038 0.00176402869999999997 0.128185419999999994 -0.525543450000000023 0.117655574999999998 0.120704569999999997 -0.00760837969999999999 0.0632082749999999943 0.339905230000000003 157 0 156 1 2.34482880000000016 194.733002 0 0.0171275005556539017 31 false 0.294829300000000016 1.14735924555213997 0.0702995732182488953 0.0656445199999999979 18 10 0.472820640000000014 0 18 false 155 460.482345593502998 1.54088834459592006 298.84201 19.0303329999999988 15 68.2576727765933953 8.11011092991011928 8.41636800000000029 20.7660100000000014 15 670.837484967792989 8.58369882809335927 78.1525000000000034 17.6953770000000006 1.60504559999999996 0 3.07063299999999995 1.7356777000000001 1.33495520000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.606951791887013 -62.347531297352603 23.2979166659553982 -12.5024826618328007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437904759735040 2505437904759735040 37615540 2015.5 26.1441001133686015 0.263248689961806004 -2.56187383364648991 0.187470338896635003 0.232358472512245007 0.376846436187870004 0.616586599999999985 7.34084592376112965 0.36096171305055802 -10.0943124953339005 0.295035450038887981 -0.255266280000000012 0.733850659999999988 0.0356765350000000023 0.171778929999999996 -0.551802339999999947 0.0952106399999999992 0.0901329200000000053 0.0418840700000000024 0.122889609999999996 0.33945763000000001 138 0 137 1 0.541281340000000055 140.296005 0.249925468452179 0.304674130488545025 31 false 0.600065599999999977 1.65579712600555995 0.0546231001138407987 0.0579350299999999985 16 9 0.368477019999999988 0 16 false 136 776.926382497818963 2.09560159073381014 370.740997 18.462416000000001 15 405.121946510580983 16.4102566161826005 24.6871189999999991 18.8324239999999996 16 561.558099284824948 9.60926239653672987 58.4392500000000013 17.8884329999999991 1.24423639999999991 0 0.94399069999999996 0.370008469999999978 0.573982239999999977 \N \N 0 \N \N \N NOT_AVAILABLE 152.564784489737008 -62.3363667907623977 23.2928443731064014 -12.4804995971334005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437909054810496 2505437909054810496 798004015 2015.5 26.1482540642274017 6.86916834597975967 -2.56025413725445006 2.73329613979628006 \N \N \N \N \N \N \N -0.313838420000000007 \N \N \N \N \N \N \N \N \N 63 0 62 1 31.6634180000000001 1498.02002 14.5356578950758006 106.602711417590001 3 false 0.00432918170000000033 \N \N -0.0957696999999999993 9 5 10.8983120000000007 0 9 false 77 246.970602472136989 4.96279629634940989 49.7644005 19.7067529999999991 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.571271405147996 -62.3330846158314031 23.2974068659849003 -12.4805097493473003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437939120072832 2505437939120072832 71393352 2015.5 26.1552477782961006 0.534553391893645036 -2.56248360825872989 0.458899121413345989 -0.612560669702250982 0.800136137521157975 -0.76557059999999999 8.98510914208550027 0.911880548252624989 -9.21254522918468055 0.717684740857326031 -0.154058190000000012 0.573283899999999957 0.0274941000000000005 0.133500200000000013 -0.578062799999999988 0.152591239999999989 0.161793720000000002 -0.0404839329999999997 0.0370228069999999979 0.346476879999999987 157 0 157 0 0.746083799999999964 164.679001 0 0 31 false 0.0877119999999999983 1.44499193918509006 0.125245129627471002 0.0612156240000000032 18 10 0.860935099999999953 0 18 false 156 205.08315506321 1.14855647087879009 178.557007 19.9085399999999986 15 116.893961538192997 6.83313181065529029 17.1069369999999985 20.181908 14 186.438415804413012 10.7985646119749994 17.26511 19.0855800000000002 1.4790702 0 1.09632679999999993 0.273366930000000008 0.822959899999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.586894082438988 -62.3320070256875027 23.3032320192763009 -12.4851398451869002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425878855674624 2505425878855674624 1161598438 2015.5 26.1845577975369004 0.835961349015580946 -2.5969943940577398 1.00381971143695004 1.65272061869528009 1.34053273225976999 1.23288350000000002 3.05503960345374992 2.03857042279951006 2.51100356299162009 2.63469614751817005 -0.10344602 0.499600619999999995 0.039291468000000003 0.0898218999999999962 -0.641065299999999949 -0.307532430000000023 -0.514093600000000039 0.131051610000000013 0.263995800000000003 0.73538709999999996 112 0 110 2 0.782627399999999973 116.041 0.315963432892200025 0.0312275531910831995 31 false 0.0420536469999999996 1.41384752355488996 0.275060572948698012 0.0994028750000000016 13 9 2.7920910000000001 0 13 false 110 124.139845126973995 1.38914251674174993 89.3644028 20.4535879999999999 8 45.0202653791686984 16.9707180291734012 2.65282030000000013 21.2178690000000003 10 202.500874210672009 13.0406576731152004 15.5284250000000004 18.9958530000000003 1.99388959999999993 0 2.22201540000000008 0.764280300000000024 1.45773510000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.676307687034011 -62.3500498033141994 23.3182202389746998 -12.5279676296649995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425810136898688 2505425810136898688 1340310355 2015.5 26.1931811883906001 1.0261058123873501 -2.60232537947605991 1.20633869351528 3.99893798336952022 1.65866259083733003 2.41094110000000006 2.51850602757316988 2.37378059526687002 -5.19087623541348009 3.05150208766431996 -0.141938449999999994 0.551650700000000049 -0.0852241100000000057 0.0649954499999999963 -0.665017659999999955 -0.369510100000000008 -0.550389099999999964 0.248592530000000006 0.33074945 0.734298169999999972 112 0 111 1 0.143704009999999993 107.431999 0 0 31 false 0.0320177859999999995 1.04260372615346997 0.306929575376424013 0.116923219999999994 13 9 3.26925599999999994 0 13 false 113 104.219004391303002 1.1472359276236499 90.8435974 20.6434999999999995 6 62.6690162941166022 14.5512672384272008 4.30677369999999993 20.8587549999999986 10 159.459900819446005 10.7025470587265001 14.899248 19.2552909999999997 2.13136670000000006 0 1.60346410000000006 0.215255740000000001 1.3882083999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.698037186665005 -62.3510224452775006 23.3244370216476007 -12.5360793847797005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425913216113920 2505425913216113920 700251424 2015.5 26.1876328652125991 0.53525788803254204 -2.58989579133764991 0.437975792896801996 2.57211302639628991 0.744122097274303007 3.45657399999999981 47.6638614772531994 0.903490311358188025 -6.4949785770866999 0.695985667734081992 -0.0411643999999999968 0.570880700000000019 0.0190391690000000016 0.179809990000000003 -0.45434424000000001 0.165561719999999996 0.221765610000000002 0.00401398799999999958 0.076938935 0.323167529999999981 147 0 147 0 8.02578450000000032 323.584015 1.95112613261024004 5.53881637970630969 31 false 0.0928959200000000068 1.33714655840068009 0.123688397787426005 0.0940004799999999974 17 10 0.845321199999999995 0 17 false 146 291.978854509894973 1.59249994592886002 183.345993 19.5249880000000005 5 92.6522504465499992 20.1513786289819983 4.59781200000000023 20.4342480000000002 5 439.339244767281002 22.2822263800804983 19.7170260000000006 18.1549200000000006 1.8220206000000001 0 2.27932740000000011 0.909259799999999951 1.37006760000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.675484615585987 -62.3423244613201035 23.3238080459421013 -12.5224838560547003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425913211640704 2505425913211640704 170312281 2015.5 26.1878939124978984 0.165188979304056988 -2.58932770897306996 0.13257927265317801 0.798522714757362029 0.220411899929475991 3.62286570000000019 9.25669507435065952 0.285705882370967001 2.4230518848122502 0.229525050712073991 0.000710335269999999987 0.559651849999999951 -0.00162061840000000002 0.153594360000000013 -0.389741630000000006 0.131867000000000012 0.149101399999999995 0.0124035199999999995 0.0853536049999999991 0.329761240000000011 148 0 148 0 1.80516760000000009 174.988007 0.418105814710022006 1.52339962707643006 31 false 0.955793739999999947 1.45879942318633993 0.0396709330719774989 0.0886789399999999978 17 10 0.270442130000000003 0 17 false 147 1293.53729772623001 2.32949721819217004 555.286011 17.9089179999999999 13 510.239009502580984 11.0787804222238009 46.0555230000000009 18.5819550000000007 13 1228.68866093050997 20.6765641225106016 59.4242169999999987 17.0383150000000008 1.34431970000000001 0 1.54364009999999996 0.673036599999999985 0.870603560000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.675447643870996 -62.341699617650697 23.3242694610510988 -12.5220504636701992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426153729811712 2505426153729811712 1261169420 2015.5 26.1608918375086006 0.312639175628865007 -2.57114405774943 0.228997153788392999 1.06119828215318002 0.459303996311387019 2.31044859999999996 -6.90149239158206029 0.448219381635860004 -16.0586923729376991 0.353084558126064985 -0.309503169999999994 0.712787500000000018 0.00924433499999999936 0.133385300000000012 -0.612046360000000012 0.0979456159999999992 0.0845005100000000009 0.00771148600000000004 0.0817183699999999985 0.331180499999999989 146 0 146 0 2.73707130000000021 191.320007 0.456920140009493991 0.718278618990683015 31 false 0.38744076999999999 1.47476273478501008 0.0650622481269391012 0.0238638600000000006 17 9 0.440090539999999975 0 17 false 144 588.552826543399988 1.86002782823700996 316.421997 18.7639029999999991 16 208.960556244863994 12.4708007507108007 16.755984999999999 19.5512279999999983 17 606.721722416398961 10.6162208282321995 57.1504440000000002 17.8044450000000012 1.38591170000000008 0 1.74678230000000001 0.787324899999999994 0.959457400000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.606017796694005 -62.3372941378594021 23.3053632609585009 -12.4952623529761997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426188091666176 2505426188091666176 728754078 2015.5 26.1691971731594997 8.00955018413596953 -2.56912214217908019 4.52291067380159983 \N \N \N \N \N \N \N 0.717777670000000034 \N \N \N \N \N \N \N \N \N 46 0 46 0 0.730947000000000013 47.2449989 0 0 3 false 0.0158596150000000005 \N \N 0.00753689979999999995 6 6 52.0668300000000031 0 6 false 47 67.573832228474501 1.47858819354530002 45.7015991 21.1139200000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.62013357891999 -62.331819450078001 23.314030281774901 -12.4964144963003996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426188089550592 2505426188089550592 1469345459 2015.5 26.1610422993913012 0.73556722670527297 -2.56466033971720986 0.603780997242721051 1.68740795543172006 1.06876828926934997 1.57883419999999997 2.75080064524812995 1.25049108540522003 -1.77873572981153005 0.943585551183514948 -0.172256569999999998 0.564293860000000036 -0.0308586960000000014 0.144955869999999987 -0.561519560000000029 0.141282920000000006 0.132480929999999997 -0.00871053500000000015 0.0644232700000000047 0.304519560000000022 149 0 147 2 2.860954 195.050995 2.09544412160480986 2.4411630144616101 31 false 0.0498459040000000034 1.19594671432460009 0.165438571833775999 0.0342522450000000006 17 10 1.15435540000000003 0 17 false 147 169.595771978631007 1.44158395259558003 117.644997 20.1148279999999993 14 51.7655796078478971 7.70828086981522986 6.71558049999999973 21.0662860000000016 15 204.105592108731003 7.18047431856815965 28.4250849999999993 18.9872820000000004 1.50871189999999999 0 2.07900429999999981 0.951458000000000026 1.12754629999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.600150062713993 -62.3314086861076007 23.3079350511717998 -12.4892826743779999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426188089550720 2505426188089550720 1075923675 2015.5 26.1763402730191004 0.132953963829514993 -2.56469484892240995 0.106749550676503005 1.28644337368360007 0.180459225719090011 7.12872030000000034 3.11940081147281001 0.236548294808906989 -10.8955618257860998 0.194290393646705001 -0.0522441270000000013 0.545827700000000027 -0.0262869199999999983 0.108263395999999998 -0.435377499999999973 0.0845124800000000009 0.0577167999999999987 0.00698708649999999973 0.0757805000000000006 0.333132949999999983 158 0 156 2 1.94412640000000003 186.598999 0.255122627662288992 0.795880161311989021 31 false 1.38252749999999991 1.42547615825132001 0.0326897780896142978 0.0697357499999999991 18 10 0.22508009000000001 0 18 false 154 1622.90173364590009 2.32214547152696982 698.880005 17.6626359999999991 14 560.74241884624405 18.3798795324631001 30.5084930000000014 18.4794790000000013 13 1634.19258581443 7.78047131117321999 210.03773000000001 16.7286619999999999 1.3524756 0 1.7508163000000001 0.816843030000000025 0.933973300000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.629715139344995 -62.3246974852326971 23.3224913358599011 -12.4949030677598998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439107350587136 2505439107350587136 209622776 2015.5 26.1075473621935998 1.33400536090896993 -2.51526826662344005 1.39344045848954989 \N \N \N \N \N \N \N 0.0540767799999999979 \N \N \N \N \N \N \N \N \N 88 0 88 0 2.28522470000000011 115.230003 2.91366994448579009 1.71609748731582989 3 false 0.0208736789999999992 \N \N 0.0974778159999999949 10 7 5.44142499999999973 0 10 false 87 97.5557740121876975 1.88225214106460004 51.8292999 20.7152330000000013 5 52.5776885878099023 18.6533798352858007 2.81866810000000001 21.0493850000000009 6 124.885238922742005 18.6287547493197998 6.7038960000000003 19.5206410000000012 1.81909199999999993 0 1.52874369999999993 0.33415222 1.19459150000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.45005388570101 -62.3105648834939032 23.2754948417141989 -12.4237673315333002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426020585852416 2505426020585852416 365212329 2015.5 26.1989602839779998 0.0788535910246526001 -2.57814792283916994 0.0646013768389173959 0.55100258323567497 0.102307186518543994 5.38576600000000028 14.9161309068151997 0.141720481631372991 -7.70908402531547043 0.125332392664523007 0.0482563449999999991 0.541503549999999945 -0.0178285320000000011 0.104013999999999995 -0.334084119999999984 0.084759710000000002 0.0319370799999999996 0.00228251139999999979 0.0688472499999999987 0.371947399999999984 149 0 148 1 1.85778819999999989 176.007996 0.133054898816388989 0.559869790621848051 31 true 4.24133099999999974 1.56158174673683003 0.0204950528142039991 0.0941441360000000033 17 10 0.14208788 0 17 false 145 4207.50726291398041 3.4587438603349101 1216.47998 16.628304 16 2092.55322793138021 10.0649833643561006 207.904300000000006 17.0496960000000009 16 3062.63318047846997 13.0804384608702993 234.138409999999993 16.0466820000000006 1.22523530000000003 0 1.00301360000000006 0.421392439999999979 0.581621170000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.686160525987987 -62.3267844785118967 23.3389968861119002 -12.5156867171340007 100001 5338 5229.77979 5479.33008 0.153200001 0.0414999984 0.335999995 0.0909999982 0.0265999995 0.185499996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426016290856320 2505426016290856320 1210793232 2015.5 26.2028461540279984 0.378293158794599016 -2.58225716926986015 0.312909631399604982 0.407245663617465004 0.525576046356181048 0.774855850000000013 3.22292824778560982 0.640577188006970055 -6.68839292890261028 0.503401137886520966 -0.0436836999999999989 0.570550739999999945 0.029200799999999999 0.169397789999999993 -0.454470280000000004 0.155129610000000001 0.215265349999999994 0.00168132630000000002 0.073511610000000005 0.322297039999999979 149 0 148 1 2.88364960000000004 196.695007 1.14905815241918008 2.58394716344708009 31 false 0.181926549999999992 1.44658354695488001 0.0884646428248913042 0.0901817159999999951 17 10 0.601698040000000045 0 17 false 147 405.471550551214989 1.4382606823478199 281.917999 19.1684650000000012 17 135.035043483752986 9.46776476983844084 14.2626100000000005 20.0252720000000011 16 477.816591661775988 13.7079960417711 34.8567800000000005 18.0637660000000011 1.51145409999999991 0 1.96150589999999991 0.85680769999999995 1.10469820000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.697570408626007 -62.3287534852429985 23.3411591571884003 -12.5209307166818995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426222449288704 2505426222449288704 1508658812 2015.5 26.1921014631105997 0.820449636072089983 -2.56945758306012006 0.990849451071499021 -0.735133994140391045 1.3029085165055001 -0.564225300000000041 2.86205846810491016 1.87946721999783994 3.12447011367330996 2.58380108005321008 -0.105983525999999995 0.550657900000000033 0.0284382679999999992 0.0828391500000000003 -0.617322099999999985 -0.324466900000000003 -0.521086750000000043 0.155223639999999996 0.269183459999999986 0.732026999999999983 123 0 123 0 -1.43236300000000005 96.7499008 0 0 31 false 0.0400141140000000034 1.82809382797587006 0.247507638080338987 0.157137840000000001 14 9 2.6907321999999998 0 14 false 123 122.03205055043 1.11811065822008993 109.140999 20.4721809999999991 11 158.243670492662005 38.6812377889879002 4.09096700000000002 19.8530729999999984 10 92.9220090703203994 12.1830146968269002 7.62717699999999965 19.8416229999999985 2.05819440000000009 0 0.0114498140000000009 -0.619108199999999997 0.630557999999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.664657700042994 -62.3220174846525978 23.3357187151886016 -12.5050929260613994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438179641446912 2505438179641446912 929306633 2015.5 26.1184610600904996 1.43391998593943004 -2.5474653628325501 0.971192767902795961 -1.84768967595622002 1.75643484755219004 -1.05195459999999996 10.0163178191995001 2.4300736096998401 -43.6248372234208972 1.50981300032098997 -0.285126180000000007 0.570730700000000035 -0.415078759999999991 0.198431909999999989 -0.565704169999999951 0.237337199999999998 0.0506994050000000029 0.0387124900000000022 0.117663229999999994 0.271662400000000026 86 0 85 1 1.94893319999999992 106.462997 1.44879169883948 0.541670296948832952 31 false 0.0370926859999999997 1.6877901672611999 0.277779367536704014 0.0544274999999999967 11 9 2.29682610000000009 0 11 false 89 119.930849350711 1.79454375876772998 66.8308029 20.4910400000000017 5 53.8851031755944021 27.882790369218899 1.9325578000000001 21.0227170000000001 7 120.858625037132995 12.4129767113834006 9.73647399999999941 19.5562269999999998 1.45703730000000009 0 1.46648979999999995 0.53167724999999999 0.934812549999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.501589969874004 -62.3346998446540965 23.273826709520101 -12.4577213583980004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437904759735424 2505437904759735424 1510056972 2015.5 26.1450566726007985 2.30698240909589991 -2.5591737204136602 1.87664457476908009 \N \N \N \N \N \N \N -0.434810580000000002 \N \N \N \N \N \N \N \N \N 75 0 74 1 0.56040460000000003 75.0873032 0 0 3 false 0.0248950889999999987 \N \N 0.213267249999999992 9 6 6.07468749999999957 0 9 false 75 89.4251915654525931 1.42349820026210994 62.8207016 20.8097150000000006 7 85.085133645144893 11.1806269753794005 7.6100500000000002 20.5267540000000004 8 71.4991486336084989 11.6169328943382997 6.15473560000000042 20.1261669999999988 1.75100860000000003 0 0.400587079999999984 -0.282960900000000015 0.683548000000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.564070635452993 -62.333521806447699 23.2947666777515998 -12.4783360159721006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437909055327488 2505437909055327488 316552068 2015.5 26.1487137508262997 0.029463084233639001 -2.55944917331343014 0.024792830452005199 0.810005225387445016 0.0372550637346742014 21.7421509999999998 -5.75856479364843032 0.0543308824211126973 -2.53646256986532981 0.0560405619940100991 0.11351936 0.556762929999999989 -0.0840994099999999994 0.0109501689999999992 -0.255137469999999977 -0.0470155179999999992 -0.202434730000000007 0.0182495620000000004 0.0573645159999999973 0.459420229999999985 148 0 148 0 -0.691800700000000046 130.987 0 0 31 true 59.8226239999999976 1.62980908710144989 0.0082686662317917603 0.094504249999999998 17 10 0.0677258599999999988 0 17 false 148 46866.0449604637033 18.1818409102518004 2577.62988 14.0112199999999998 17 26799.7179169062983 40.5455079275317019 660.978700000000003 14.2810629999999996 17 29774.7645691582002 54.9554137677422005 541.798599999999965 13.577299 1.20715299999999992 0 0.703763959999999966 0.269843100000000002 0.433920860000000019 \N \N 0 \N \N \N NOT_AVAILABLE 152.571395474132004 -62.3321596627023027 23.2981461330469983 -12.4799284887672997 100001 6363.5 6202 8050.39014 0.433699995 0.199399993 0.620800018 0.179000005 0.0728999972 0.278499991 200111 1.36838560000000009 0.855001899999999981 1.4405789 2.76627849999999986 2.47206230000000016 3.06049470000000001 +1635721458409799680 Gaia DR2 2505438282716864128 2505438282716864128 1334964529 2015.5 26.1246487754096002 0.211069835012114987 -2.52740286254234015 0.172561708996714996 1.07194584576169993 0.283753956462055978 3.77773000000000003 2.69620684519167986 0.347865335487740013 1.61955426467734998 0.287143197159974994 0.0557535399999999973 0.588789400000000018 0.0441918970000000008 0.208314050000000001 -0.360248679999999988 0.16185157 0.181833450000000008 0.0339461799999999994 0.123717339999999995 0.366693649999999982 140 0 139 1 0.532151999999999958 142.207001 0 0 31 false 0.645586549999999981 1.53492782842638009 0.0499846488693503968 0.130367680000000014 16 10 0.337473929999999978 0 16 false 138 812.834785560591968 1.97485252681493995 411.592987 18.4133600000000008 12 321.535493861448003 12.1927461312006997 26.3710479999999983 19.083317000000001 10 750.751908182209036 8.47184723923338012 88.6172600000000017 17.5731800000000007 1.3191948 0 1.51013759999999997 0.669956200000000002 0.840181350000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.494556930670996 -62.3139622949171965 23.287233124800899 -12.4413098482391007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438213997386240 2505438213997386240 1178753492 2015.5 26.1325084857002992 0.82248788547667695 -2.5317749910582501 1.23776598478143995 1.26548219385833005 1.51341378905500989 0.836177229999999994 -0.877669831783388976 2.08090702588305998 -5.96347650414780972 3.09376976141148008 -0.167012259999999996 0.555595199999999956 0.0886367859999999952 0.146035479999999995 -0.733585400000000054 -0.57506584999999999 -0.737866640000000018 0.426075099999999984 0.540207899999999963 0.804433759999999998 116 0 116 0 1.43754460000000006 133.072006 0.535680093427090998 0.0952731938819231933 31 false 0.0448882729999999994 1.60122382487824999 0.240803236926903003 0.208211809999999997 14 9 3.32454630000000018 0 14 false 115 127.713942671574998 1.07152307966004989 119.189003 20.4227699999999999 12 77.959865116591601 10.2287367887672005 7.62165099999999995 20.6217100000000002 12 90.8545257142684051 9.79938572074209979 9.27145100000000078 19.8660530000000008 1.32181639999999989 0 0.755657200000000029 0.198940279999999997 0.556716899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.513872995755008 -62.3144369860479017 23.2930796165087983 -12.4482507509318001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317076602112 2505438317076602112 879431695 2015.5 26.1423087122087985 0.509235330023843025 -2.52799265370821002 0.414047727584338998 0.0746277046818479006 0.719547511839435994 0.103714769999999998 5.32441697106103984 0.860336611289644004 -3.99016233685529986 0.664001997842073033 -0.0971031339999999937 0.578019139999999987 -0.0379192569999999979 0.163896619999999993 -0.501377300000000026 0.144868959999999991 0.161426619999999993 0.0206652130000000017 0.0775299899999999931 0.334428039999999982 146 0 141 5 2.18745499999999993 174.572006 0.660935807732451974 0.443881112588471016 31 false 0.110205830000000005 1.50110263704900992 0.114506836030039999 0.0906710700000000064 17 10 0.804241659999999969 0 17 false 141 248.985351083792011 1.5099690942044699 164.893997 19.6979310000000005 14 122.510085696760996 6.43006388886291003 19.052702 20.1309590000000007 15 215.374111131483005 8.64943193543413003 24.9003769999999989 18.9289360000000002 1.35704449999999999 0 1.20202260000000005 0.43302727000000002 0.768995300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 152.529214164828005 -62.3067334241040029 23.3038280032167009 -12.4483108272515999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317076813952 2505438317076813952 82582226 2015.5 26.1433047817270996 1.11839970662528998 -2.52372512974327012 1.23778301792453993 2.14183009204475017 1.48785144220387 1.43954559999999998 2.59827578050740993 2.75392941432675009 0.00817887666748053077 3.63477219138749019 0.0959768740000000037 0.33521129999999999 -0.211007899999999998 -0.113863389999999995 -0.478167559999999991 -0.300577299999999992 -0.450467740000000005 0.17060903999999999 0.194512500000000005 0.604075999999999946 108 0 107 1 0.704462400000000044 111.685997 1.69335432423060994 0.904354945077822991 31 false 0.0199129939999999998 1.52261542551605 0.359862021185683001 0.160309800000000002 13 9 3.67585419999999985 0 13 false 107 88.309825801687694 0.966578771136825998 91.3632965 20.8233430000000013 9 51.2440595768288034 13.1231923867799001 3.90484710000000002 21.0772799999999982 9 63.4060314699487009 4.3682136899211903 14.5153230000000004 20.2565939999999998 1.29827110000000001 0 0.820686339999999959 0.253936769999999978 0.566749599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 152.527096968277988 -62.3024633292989023 23.3063745761388006 -12.4447027530311995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438110918170880 2505438110918170880 642048980 2015.5 26.1538690863530014 0.442121293503644985 -2.53270914491417987 0.378668273846714976 2.32891326462560988 0.577228827561171998 4.03464460000000003 -4.1818333507051797 0.91192235797030996 -0.959054477171029984 0.704927653664745968 0.0497065520000000011 0.365304530000000016 -0.179761499999999991 0.109132654999999995 -0.425152570000000007 0.0817143099999999983 0.0334185999999999997 0.082353844999999995 0.0847053299999999953 0.349805399999999989 139 0 137 2 2.33840270000000006 172.957001 1.05805642806362998 1.2086468875254599 31 false 0.120172280000000006 1.16662304448900001 0.117885107857910995 0.114066799999999996 16 10 0.855155600000000016 0 16 false 137 283.905290763740027 1.51403012325959008 187.516006 19.5554309999999987 15 69.1911628038155015 8.03530303035542026 8.61089600000000033 20.7512599999999985 13 387.799676106445986 8.27357483311505959 46.8720799999999969 18.2904009999999992 1.60965939999999996 0 2.46085930000000008 1.19582940000000004 1.26502990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.555994809427006 -62.3058847801039022 23.3130700079796007 -12.4569238377772997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317080445952 2505438317080445952 1186196322 2015.5 26.1519892520723012 3.57680820275965994 -2.52824998249605004 2.83263011092441008 \N \N \N \N \N \N \N 0.61532180000000003 \N \N \N \N \N \N \N \N \N 39 0 39 0 -0.0925474000000000019 32.5900993 0 0 3 false 0.017994454 \N \N 0.0529143600000000006 5 5 20.8566719999999997 0 6 false 43 75.5025946782444066 2.46225210813623985 30.6639996 20.993462000000001 4 50.3668883858304 18.5633431120567991 2.71324439999999978 21.0960250000000009 4 60.2898864883245977 14.3538671404688003 4.20025400000000015 20.3113080000000004 1.46560230000000002 0 0.784717560000000036 0.102563860000000007 0.682153699999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.548142531704002 -62.3027080174240027 23.3129497565592985 -12.4520867694320003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438420155819904 2505438420155819904 233733520 2015.5 26.1436297088131013 0.430188479323419026 -2.51498102442673988 0.373374106548210016 1.13359119273486009 0.605812904231631033 1.87119020000000003 6.40966177129546999 0.741665090595848953 -7.94116600592402033 0.596374282937068956 0.180187719999999996 0.523558900000000049 0.0488706299999999982 0.220694069999999992 -0.298599720000000013 0.124894119999999997 0.1696376 0.0624552560000000007 0.180396620000000008 0.352246339999999991 139 0 138 1 2.49277829999999989 177.130997 1.02780183104395006 1.48696660081758991 31 false 0.139238980000000012 1.57010696023903007 0.103980174836113007 0.234868259999999995 16 8 0.710565450000000043 0 16 false 134 310.751799983537978 1.21166320989868992 256.46701 19.4573299999999989 12 100.265891270094997 12.6802856880196995 7.90722660000000044 20.3485049999999994 13 332.655295624606993 9.50855301448092938 34.9848479999999995 18.4569340000000004 1.39314139999999997 0 1.89157099999999989 0.891174299999999975 1.00039670000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.519449361849013 -62.2944679592575028 23.3099582938393013 -12.4366829176730995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438351440194048 2505438351440194048 32343201 2015.5 26.1606658752981005 1.90526227091522005 -2.52149594739928018 1.39490507713521006 \N \N \N \N \N \N \N -0.0621041170000000003 \N \N \N \N \N \N \N \N \N 73 0 72 1 -0.757202999999999959 58.0037003 0 0 3 false 0.020092426 \N \N -0.16169420000000001 9 7 4.97706840000000028 0 9 false 73 89.2463967379295013 1.70182655697234009 52.4415016 20.8118899999999982 7 109.329015928161994 21.6863369431613009 5.04137750000000029 20.2545490000000008 7 90.5209098548839961 13.1083003543048005 6.90561769999999964 19.8700490000000016 2.23930529999999983 0 0.384500500000000023 -0.557340599999999964 0.941841099999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.558486657192987 -62.292827193208403 23.3237410732943999 -12.4489698649074008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426295463758848 2505426295463758848 141790974 2015.5 26.1829129307422015 0.372738937121140979 -2.54896509749577005 0.307088479911990009 -0.515666873249312041 0.490626462971288979 -1.05103769999999996 7.19057859300424962 0.753512476640586959 -4.02223407196937988 0.526430729378557949 0.00221628370000000012 0.372900520000000013 -0.170761760000000012 0.133997509999999986 -0.446234970000000009 0.135187210000000002 0.151265110000000008 0.0493854550000000017 0.0476409979999999969 0.283050240000000009 158 0 157 1 2.41001269999999979 197.216995 0.979934033988141051 1.48861416436683003 31 false 0.156162660000000009 1.58310078409217003 0.0943438618937263024 0.0646206200000000036 18 10 0.686990800000000013 0 18 false 157 351.663932618317006 1.29967802381681996 270.578003 19.3230460000000015 15 133.393385955344996 5.36084094911324982 24.8829209999999996 20.0385530000000003 13 332.851605923973977 5.57086166717656006 59.7486760000000032 18.4562929999999987 1.3258255000000001 0 1.58226010000000006 0.715507499999999963 0.866752599999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.627454534588992 -62.3076846696109996 23.334641474818401 -12.4826631106245003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438080854018944 2505438080854018944 1486237227 2015.5 26.178788312100199 0.0896730323327273038 -2.54498688413778007 0.0735599085846350004 0.887500735005229968 0.108747423254744999 8.16111899999999935 11.6003921481411005 0.194450358575282006 -9.00431880612539004 0.147524373971844008 0.103845480000000004 0.304179160000000004 -0.186708819999999998 0.0812523200000000029 -0.300446959999999985 0.0850701999999999986 0.0224631539999999991 0.0455718749999999978 0.0465447380000000022 0.299771799999999977 158 0 153 5 0.893949800000000017 163.205994 0.250072169436777014 1.50091647412823992 31 true 2.64098530000000009 1.5463411787880299 0.0252714655551314997 0.0760826599999999964 18 10 0.183641899999999997 0 18 false 153 3076.57305440834989 2.6379656601839101 1166.27002 16.968197 17 1393.85210731824009 10.9347425751111995 127.470039999999997 17.4908469999999987 16 2424.56053017381009 16.8007743597357013 144.312420000000003 16.300336999999999 1.24112529999999999 0 1.19050980000000006 0.522649770000000014 0.667860030000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.615720806651012 -62.3059328664409975 23.3322030397732014 -12.4774538140781992 100001 4950 4892 5054.66992 0.128000006 0.064000003 0.176499993 0.0643000007 0.0320000015 0.0879999995 200111 0.564303299999999952 0.541175300000000026 0.577763499999999985 0.172242640000000002 0.128982920000000001 0.215502369999999999 +1635721458409799680 Gaia DR2 2505438901194704000 2505438901194704000 936377209 2015.5 26.0723064967504996 0.849710687340463955 -2.51105121403434994 0.705358959735964963 0.198625080899538009 1.18705621622947999 0.16732575999999999 -8.30608115910166056 1.51265311616829989 0.770990260751105994 1.32160909950373995 -0.0429753469999999971 0.53725814999999999 0.151357409999999998 0.136381479999999999 -0.471620079999999997 0.0692806839999999952 -0.0695689800000000025 -0.0548719579999999985 0.121023329999999998 0.41185670000000002 113 0 110 3 0.555674699999999966 112.559998 0 0 31 false 0.0458341430000000008 1.31762619504058009 0.232894750472958989 0.0652131440000000007 13 10 1.4988923999999999 0 13 false 110 131.490000288439006 1.19738005548202997 109.815002 20.391134000000001 9 52.5538994187446988 15.5492307310233997 3.37983920000000015 21.0498750000000001 10 211.812155701159014 7.99460049670360995 26.4944020000000009 18.9470419999999997 2.01054120000000003 0 2.10283279999999984 0.658741000000000021 1.44409180000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.377965016340994 -62.3222105597205029 23.2435228619885983 -12.4069638462816005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439283444464128 2505439283444464128 1466977091 2015.5 26.0799730841086017 1.02082997010085008 -2.50681625208593983 0.914480289317341044 0.307987257400101022 1.39369471630612995 0.22098617000000001 5.86750756320515965 1.63244742523565001 -4.64095166020331984 2.20628866191299 0.159989330000000013 0.72467493999999999 -0.0843793000000000043 -0.098563189999999995 -0.242543299999999989 -0.357052599999999998 -0.553257939999999948 0.0690012400000000053 0.109523850000000006 0.670224900000000012 113 0 111 2 2.01282290000000019 137.296997 1.07643754215353993 0.414584503012335015 31 false 0.0448351650000000032 1.28411482883576999 0.247828712394677991 0.21820023999999999 13 8 2.28421239999999992 0 13 false 112 137.816475210016989 1.31173859834719009 105.064003 20.3401129999999988 10 63.335184895791997 10.6410650531945006 5.95195900000000044 20.8472749999999998 11 168.559675179946993 6.8952411595835299 24.4457990000000009 19.1950360000000018 1.68263530000000006 0 1.6522387999999999 0.507162099999999949 1.14507680000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.388793536826995 -62.3150486069693983 23.2524079326617006 -12.4058244262814998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439279149281152 2505439279149281152 683595071 2015.5 26.0812408213162001 0.764737907055810018 -2.50572324749981012 0.526571460417823989 0.00819438016808607048 1.03446686550298006 0.00792135599999999919 -1.65918285266480003 1.16958183094902002 -3.94161711053394992 0.917709460589634984 0.0160782039999999987 0.663410370000000027 -0.0920403000000000054 0.175376520000000008 -0.315514679999999992 0.123064499999999993 0.0661895099999999931 0.0658381100000000052 0.130511459999999996 0.35865414000000001 121 0 121 0 1.00142240000000005 131.205994 0.602702986452288036 0.227391243283767003 31 false 0.0700615799999999983 1.80706360195782989 0.192329850524917995 0.136227640000000011 14 9 1.10450050000000011 0 14 false 121 186.50846265316801 1.49383763777078005 124.851997 20.0116200000000006 10 117.01031885175 12.9194212368988008 9.05693149999999925 20.1808280000000018 10 138.167166079351006 16.1935565179679983 8.53223099999999945 19.4109079999999992 1.36818179999999989 0 0.769920350000000031 0.169208529999999996 0.600711800000000018 \N \N 0 \N \N \N NOT_AVAILABLE 152.39021334380999 -62.313511214556101 23.2540242474266989 -12.4052704943461993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439313509019776 2505439313509019776 933209101 2015.5 26.0887055072243008 0.407962415072969986 -2.50412072239350003 0.325942854166827001 0.728694319343407004 0.572946365287792969 1.27183690000000005 -4.63868306507611994 0.655337873449187036 -5.93202956531651004 0.523231037417033029 -0.0589676699999999998 0.617540700000000053 0.00927838299999999942 0.184779470000000001 -0.457488720000000015 0.171514620000000007 0.196396769999999998 0.00847909900000000036 0.0809140299999999979 0.355793570000000003 148 0 146 2 0.891210300000000011 155.787994 0 1.69248816682571991e-15 31 false 0.175022070000000002 1.5289821193575599 0.0902570542130164966 0.094507960000000002 17 10 0.624034170000000055 0 17 false 145 325.844025486427995 1.44692784185167 225.197006 19.4058419999999998 15 106.168992584235994 8.47001914588335048 12.5346810000000009 20.2863940000000014 14 354.188093201611991 6.85191363035421031 51.6918500000000023 18.3888360000000013 1.41281429999999997 0 1.89755819999999997 0.880552299999999954 1.01700590000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.403128403592007 -62.3088028865157995 23.2617310980731986 -12.4065070233579 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439386524075904 2505439386524075904 199278993 2015.5 26.0756658785515008 0.125289279095995992 -2.49129111069522002 0.127705352000587996 0.55698023676446895 0.188512788071695997 2.95460179999999983 6.70980304724427956 0.247664390179289012 -0.520230291459576999 0.219167711644023988 0.044001270000000002 0.467656139999999998 0.0159081369999999993 0.135314319999999988 -0.5484483 0.380483479999999985 0.431879940000000018 -0.228731829999999997 -0.223406080000000007 0.516246259999999957 141 0 141 0 0.209893469999999999 138.813995 0 0 31 false 1.68106690000000003 1.51434290272437999 0.0324974043993871003 0.137178329999999987 16 9 0.267928329999999992 0 17 false 141 1766.55731791472999 2.4719030311612098 714.655029 17.5705470000000012 13 761.234306622783038 7.89431101766975996 96.4282149999999945 18.1475930000000005 13 1502.59741211458004 12.5621712756299004 119.612880000000004 16.8198129999999999 1.28149350000000006 0 1.32777980000000007 0.577045440000000021 0.750734299999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.365838114462008 -62.3029758146975965 23.2541223565138999 -12.3898012243611007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439111645649664 2505439111645649664 1391803047 2015.5 26.1079424952040995 13.7155949447882008 -2.50820466689012012 7.97671820821291 \N \N \N \N \N \N \N -0.66672739999999997 \N \N \N \N \N \N \N \N \N 72 0 70 2 26.7271980000000013 1089.67004 15.635094589006 208.502236974742999 3 false 0.00377590770000000003 \N \N 0.0370650439999999984 9 5 34.9978520000000017 0 10 true 77 217.502767942312005 3.55958729806815999 61.1034012 19.8447040000000001 8 238.095920974091996 24.5871099091109002 9.68377000000000088 19.4095079999999989 7 519.183966437460981 13.9052492502939007 37.3372650000000021 17.9736179999999983 3.48170229999999981 0 1.43589020000000001 -0.435195920000000014 1.87108610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.444146458057986 -62.3040446608334975 23.2785164857753983 -12.4173375318015005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439416588238848 2505439416588238848 1174940639 2015.5 26.0986555110540017 0.415257402258866981 -2.48831950039997984 0.361501362222642009 0.825902755020355039 0.555662525117121997 1.4863386999999999 24.8536808350478005 0.788997683969258956 -15.2268672571848995 0.610632857992063016 0.0745639059999999992 0.438509970000000027 0.00385261500000000021 0.166823179999999988 -0.390096720000000008 0.155474830000000008 0.185407529999999987 -0.00262558439999999995 0.0801000399999999974 0.319943729999999982 158 0 157 1 1.75778710000000005 183.996002 0.842280229259131041 0.845586320944605951 31 false 0.118282109999999996 1.55763464976839994 0.106664699912072003 0.118152394999999993 18 10 0.736137750000000035 0 18 false 154 270.158424998237024 1.19429787027805001 226.207001 19.6093200000000003 14 56.4037352173397011 8.61778992497239926 6.54503500000000038 20.9731179999999995 16 368.815072579668026 9.19640815877485984 40.1042500000000004 18.3448980000000006 1.57396090000000011 0 2.62821959999999999 1.3637980999999999 1.26442150000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.407450328419998 -62.2902433300759029 23.2771214978644991 -12.3954366669806006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439416590840064 2505439416590840064 336782491 2015.5 26.1079830440002993 2.68411612246001985 -2.48556765611738006 2.60731763330459998 \N \N \N \N \N \N \N -0.623313369999999978 \N \N \N \N \N \N \N \N \N 62 0 62 0 -1.84876590000000007 38.9322014 0 0 3 false 0.0175724140000000015 \N \N -0.0296443030000000003 7 5 9.14574050000000049 0 7 false 61 76.4068498751208978 1.11155898830121003 68.7385025 20.9805360000000007 3 34.4845240021162027 15.3801648571191993 2.24214270000000004 21.5073280000000011 6 96.2104935394226004 16.4577589369762016 5.84590500000000013 19.8038640000000008 1.7105144000000001 1 1.70346449999999994 0.526792499999999997 1.17667199999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.422865708885013 -62.2836843900467017 23.2870321220419001 -12.3962836185977991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439382231053696 2505439382231053696 19347429 2015.5 26.0791691233098994 1.86071415895928993 -2.48357267316229979 1.56380477573795007 \N \N \N \N \N \N \N -0.095632700000000001 \N \N \N \N \N \N \N \N \N 70 0 70 0 1.08513140000000008 77.4225006 2.92169595666445003 0.808057558414358001 3 false 0.0146059780000000004 \N \N 0.0248401669999999998 8 7 6.12213229999999964 0 8 false 71 80.2220458436620021 1.33274978584785009 60.1929016 20.9276310000000016 5 33.8630152318905004 15.7253818136811994 2.15339850000000022 21.527075 6 98.8763190220082038 7.04548921442589027 14.033989 19.7741889999999998 1.65464900000000004 0 1.75288580000000005 0.59944344000000005 1.15344240000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.365338796701991 -62.2945040965499999 23.2603480532145994 -12.3838979967419007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439450947978880 2505439450947978880 1558875801 2015.5 26.1124992292185993 0.250889683193233015 -2.48284812113324005 0.214437174806037995 0.991737452075947989 0.316489896631789003 3.1335516000000001 37.084346867167902 0.489510978648467987 -25.0941748667505991 0.35934223132922799 0.212675470000000005 0.380028900000000003 0.132253719999999991 0.210486780000000012 -0.275590999999999975 0.210360660000000005 0.231748910000000002 -0.0722668300000000041 0.101035420000000001 0.324701279999999981 141 0 140 1 1.70718419999999993 164.279007 0.354166847867407986 0.374464382908620996 31 false 0.36681697000000002 1.38201827048472992 0.0632682937817645036 0.123135380000000003 16 10 0.45854594999999998 0 16 false 139 580.962345100213952 1.66625197105614009 348.664001 18.7779960000000017 16 203.839886329729012 8.64540838974384052 23.5778199999999991 19.5781649999999985 14 588.803606831647016 9.40437692750153964 62.6095279999999974 17.8369940000000007 1.36436299999999999 0 1.74117089999999997 0.800169000000000019 0.941001899999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.429019064866992 -62.2792615103952016 23.2923500479406016 -12.3954025243270998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439214725383936 2505439214725383936 210583997 2015.5 26.1161734490262987 0.119916324286852005 -2.49340816147764022 0.103273391867377995 7.67026117114591965 0.151239818899112005 50.7158850000000001 5.82720752655299989 0.239880977834883991 -27.3213226951755992 0.189157416724294009 0.143812180000000012 0.39755878 -0.025873844 0.139785469999999995 -0.288354200000000005 0.14810493999999999 0.173146440000000013 -0.0187036769999999984 0.0505549799999999994 0.313845839999999987 159 0 157 2 3.5969253000000001 222.873993 0.430108632977587002 2.86715326825589001 31 false 1.40564620000000007 1.14794444318399003 0.0322716037656956972 0.117319729999999997 18 10 0.226520260000000001 0 18 false 156 1967.14671308308994 3.53227344149481004 556.906982 17.4537730000000018 16 290.015488797884984 9.65132101840653078 30.0493050000000004 19.195335 15 2752.80223158918989 11.0770849332129 248.513229999999993 16.1624830000000017 1.54681789999999997 1 3.03285220000000022 1.7415619 1.2912903 \N \N 0 \N \N \N NOT_AVAILABLE 152.446072782777009 -62.2871403966976018 23.2918940561998014 -12.4065734939246006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505461926512445056 2505461926512445056 219857923 2015.5 26.1626127507877015 0.0852930107585917058 -2.49254754126471978 0.0910869879341397043 1.49665532781254007 0.114093328217116999 13.1178159999999995 13.0161362999094994 0.194725963666503993 -1.78307801999448001 0.173029181380210006 0.284322299999999972 0.238122639999999997 0.0923564600000000013 0.224436009999999991 -0.428541600000000023 0.380961400000000006 0.411859099999999978 -0.228933949999999997 -0.210181900000000005 0.530859949999999969 148 0 146 2 1.49339770000000005 166.848007 0.276172786760747024 1.97365814678750007 31 true 2.96842650000000008 1.40362938415288996 0.0249083911235799989 0.174168199999999995 17 9 0.211870399999999987 0 17 false 144 3545.68115109128985 4.39459605071493975 806.828003 16.8141169999999995 15 1094.94230702724008 13.3094248628403005 82.2681900000000041 17.75291 14 3714.18074279968005 17.9199195008642995 207.26549 15.8372620000000008 1.35633270000000006 0 1.91564850000000009 0.938793199999999994 0.976855299999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.534844599564991 -62.2659785120037981 23.3364328676645982 -12.4227366481150003 100001 3873 3769.5 4180.12012 \N \N \N \N \N \N 200111 0.748203500000000021 0.642299999999999982 0.789854759999999989 0.113481276000000006 0.0957861899999999933 0.131176349999999997 +1635721458409799680 Gaia DR2 2505461926512444928 2505461926512444928 1309629705 2015.5 26.1707067226194994 0.0344871082412204003 -2.48922822433685997 0.0274124998467910989 0.677799029112903018 0.042534867407237803 15.9351389999999995 0.00895577518757439961 0.0690916002812591995 -10.2840548821182001 0.0627869185461060048 0.0245809950000000013 0.463286460000000011 -0.180854650000000006 0.0119797180000000003 -0.324572680000000002 -0.0201443039999999983 -0.198238689999999995 0.0240435969999999999 0.0429542249999999987 0.393896939999999973 149 0 148 1 -2.47704740000000001 104.525002 0 0 31 true 32.796280000000003 1.59513692188187006 0.00962385023767069019 0.0274136269999999994 17 10 0.0775060360000000004 0 18 false 148 26364.7048645543 9.06292011253636964 2909.07007 14.6358080000000008 16 14580.4248925782995 17.508573740789501 832.759159999999952 14.9419629999999994 16 17316.8436611260004 31.1439952956806998 556.025150000000053 14.1657489999999999 1.20984730000000007 0 0.776214599999999977 0.306155200000000016 0.470059400000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.547306441915993 -62.2594388735209989 23.3453824650953017 -12.4226031973693001 100001 6056.0498 5391.52979 6850 0.431499988 0.257499993 0.734099984 0.231999993 0.1197 0.365999997 200111 1.35874070000000002 1.06202390000000002 1.7143181999999999 2.23730699999999993 1.92065240000000004 2.55396180000000017 +1635721458409799680 Gaia DR2 2505461750418776064 2505461750418776064 1514189517 2015.5 26.2034448987135988 0.40310622848057398 -2.49666717957726991 0.350605981650339016 1.56676417310537008 0.550345311514178981 2.84687469999999987 1.4194137085248999 0.839152145505146052 -36.0555697439725975 0.593701724845432044 0.0529272800000000002 0.304476650000000015 0.0745751500000000067 0.14354328999999999 -0.479851599999999989 0.197223449999999995 0.173544229999999994 -0.120143379999999994 0.0234572159999999995 0.310238330000000007 155 0 153 2 1.6731026 177.936996 0.853961592253893009 0.878636807893011018 31 false 0.124874239999999997 1.34451885534176996 0.105370849625145993 0.0601571759999999997 18 10 0.773475649999999959 0 18 false 156 287.50123484620201 1.69191839739119998 169.925995 19.5417670000000001 14 103.391311759500994 12.4187418425334002 8.32542600000000022 20.3151779999999995 14 304.637545834021978 10.2399624955454005 29.7498679999999993 18.5524619999999985 1.41922470000000001 0 1.7627162999999999 0.773410799999999954 0.989305499999999949 \N \N 0 \N \N \N NOT_AVAILABLE 152.617416226312002 -62.2517024041120024 23.3737730696566999 -12.4414825048986994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505461990940228864 2505461990940228864 140329873 2015.5 26.1978816511409001 3.21602955788825984 -2.48144152272719998 2.87065856499931016 \N \N \N \N \N \N \N -0.623780670000000037 \N \N \N \N \N \N \N \N \N 37 0 36 1 -1.45395479999999999 20.3945999 0 0 3 false 0.0211958250000000015 \N \N -0.0170764399999999983 5 5 10.5677819999999993 0 5 false 36 83.4052430720294069 1.76711474202351004 47.1985016 20.8853819999999999 3 90.1179534965719 19.4653246528549992 4.62966630000000023 20.4643599999999992 4 72.9388998813771963 14.7961422510991003 4.929589 20.1045230000000004 1.95499529999999999 0 0.359836580000000017 -0.421022420000000008 0.78085899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.592285177409991 -62.2404883866221965 23.3741736135905001 -12.4252788331156996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424813700005376 2505424813700005376 1443659414 2015.5 26.2341256514875987 0.760535871027804955 -2.62767475843774001 0.658786720752540966 0.718998914770377029 1.05653963459038991 0.680522439999999951 0.752854271605087999 1.37800680565487998 -1.36596176953436999 1.30904446678177999 -0.0945189000000000029 0.583043340000000021 0.00333473230000000008 0.0391496870000000025 -0.509554700000000027 0.297225980000000001 0.320757239999999999 -0.217360880000000006 -0.217232179999999997 0.482509940000000026 147 0 145 2 1.07500970000000007 158.046005 1.02495048698801994 0.437869328681313008 31 false 0.0450516799999999967 1.78269709838979007 0.189782270721754992 0.0492026770000000002 17 10 1.47900769999999993 0 17 false 146 133.500382932684005 1.16916240030418006 114.184998 20.3746590000000012 14 78.9413389716057026 8.31739914876549946 9.4911089999999998 20.6081280000000007 15 154.460808781543989 7.11569280090041012 21.7070660000000011 19.2898749999999986 1.74832570000000009 0 1.31825260000000011 0.233469010000000005 1.08478359999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.801264168008004 -62.3556291406810033 23.3539447935365985 -12.5746278910675997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424921074246016 2505424921074246016 1437024295 2015.5 26.2486684259374989 0.0488957385732895974 -2.61228749007785011 0.0350738568903756973 1.42657872133629993 0.0553144624416756978 25.7903389999999995 7.38161572091980034 0.0874665170471610048 -16.3788638368222017 0.076610426903463702 -0.000547369799999999971 0.547372159999999996 -0.0753046599999999955 0.0453121029999999994 -0.183328450000000004 0.0141144900000000004 -0.122910580000000005 0.00308927639999999988 0.0521798019999999974 0.241356910000000008 168 0 167 1 -1.73671599999999993 132.123993 0 0 31 false 10.3288679999999999 1.49122796521657008 0.0119361845133813 -0.0238819759999999992 19 10 0.0880722699999999942 0 19 false 167 8644.26115371016022 6.75827215136003012 1279.06006 15.846546 18 3548.95133998454003 19.3853753778107993 183.073640000000012 16.4761370000000014 18 7310.84860422579004 26.5920129334785003 274.926480000000026 15.1020000000000003 1.25630160000000002 0 1.37413690000000011 0.629591000000000012 0.744545939999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.814600512305987 -62.335392950687698 23.373561906804099 -12.5656159728142995 100001 4910.5 4759.31006 4990 0.338 0.209000006 0.423099995 0.160300002 0.0998999998 0.204999998 200111 0.600767550000000039 0.581777329999999981 0.639544099999999949 0.189064729999999986 0.173177959999999992 0.204951500000000009 +1635721458409799680 Gaia DR2 2505424882419486464 2505424882419486464 1305020629 2015.5 26.2731454604993004 0.334700860850632997 -2.6086081621482502 0.232486463698940993 0.474640134455700025 0.380620100661776983 1.24701810000000002 -5.83344847655892984 0.582287057593504964 -8.23159455773479998 0.451027033002847022 -0.107587083999999999 0.565586860000000025 -0.0546411050000000023 0.0658085900000000001 -0.268257020000000013 0.0558984469999999969 0.130387219999999998 0.00980729299999999991 0.0513660800000000015 0.119023660000000003 160 0 155 5 3.20557099999999995 211.813995 0.75126569049201497 1.32316204000954007 31 false 0.219165090000000007 1.54668515452297006 0.0770588068954047023 -0.05948962 18 10 0.516814769999999979 0 19 false 156 440.949288395018016 1.54841093699671006 284.774994 19.0773940000000017 16 199.332745431504009 9.81131802190519942 20.3166119999999992 19.6024419999999999 15 369.274343345625994 14.7278481136668002 25.0732040000000005 18.3435479999999984 1.28950680000000006 0 1.25889399999999996 0.525047299999999995 0.733846659999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.858254306460992 -62.3212358064766008 23.3982584826836018 -12.5711277612047994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445399478313472 2505445399478313472 901012412 2015.5 26.2906697109023995 0.0252960293199984004 -2.62086537684310983 0.0180503960829753 0.621394408607696014 0.0281162597295715015 22.1008910000000007 13.4448672930630995 0.0442165325683340979 -22.0259296804299005 0.0408039345206595017 0.0229522209999999983 0.571791770000000033 -0.114979139999999994 0.0224359820000000001 -0.124431364000000003 -0.0187173040000000006 -0.225918220000000003 0.0161004179999999983 0.0437295550000000033 0.244463340000000001 169 0 168 1 -1.34154400000000007 139.356003 0 0 31 true 68.2523350000000022 1.61905493383694998 0.00612625248901785963 -0.0214967930000000002 19 10 0.0516632720000000031 0 19 false 166 53630.5340489320006 15.0720612812247001 3558.27002 13.8648360000000004 18 29516.9030602700004 43.0132729065622001 686.227800000000002 14.1762110000000003 19 35756.8824240985996 58.3022541406375012 613.301900000000046 13.3785209999999992 1.21710120000000011 0 0.797690400000000022 0.31137562000000002 0.486314770000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.90374688697699 -62.3244277253972996 23.4103652437658987 -12.5889344751482 100001 5849.25 5685.2998 6110.66992 \N \N \N \N \N \N 200111 2.27589869999999994 2.08533640000000009 2.40905360000000002 5.46262359999999969 4.85314300000000021 6.07210400000000039 +1635721458409799680 Gaia DR2 2505445326466123648 2505445326466123648 711865821 2015.5 26.2934078512247993 1.04395577996149003 -2.61927057864676982 0.77733707935545604 1.91820051886444998 1.21995734937327005 1.57235049999999998 7.25967889719825976 1.80413307435100001 -2.42471935176128994 1.93989853805413004 -0.0690626599999999979 0.590210440000000003 -0.0347119099999999986 0.0348108369999999973 -0.240307729999999997 0.00960639299999999953 -0.234265449999999986 -0.0876587300000000041 -0.0623940149999999971 0.383503529999999981 132 0 132 0 1.09387250000000003 144.514999 2.02553729821987982 1.06006545549306996 31 false 0.0255260229999999984 1.41387099641962011 0.259127933414888989 0.00065376970000000003 16 9 1.9395865000000001 0 16 false 134 99.774321129317201 1.0978480790257501 90.8816986 20.6908190000000012 11 42.9618543942750009 7.89243022668544025 5.4434250000000004 21.2686799999999998 15 135.871671598789987 15.4728565091619998 8.78129200000000054 19.4290979999999998 1.79238030000000004 0 1.83958240000000006 0.577861799999999981 1.26172069999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.907491955714988 -62.3217821312270033 23.4135711954108992 -12.5884494626752002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445124600406656 2505445124600406656 611123625 2015.5 26.3142340119107985 0.0296050366098688997 -2.62678705260126 0.0217715995555704984 1.61102967639156991 0.0335961797063853984 47.9527629999999974 -8.54402988125903029 0.0519215831049823009 -11.1880632877508006 0.0471487071079191022 -0.0536765869999999978 0.550414700000000034 -0.109717960000000003 0.0595671600000000009 -0.22362093999999999 -0.0665125099999999969 -0.274502279999999987 0.0963159400000000027 0.168052000000000007 0.201596570000000003 150 0 139 11 0.248817499999999997 137.436005 0 0 31 true 53.9609200000000016 1.56310438695373999 0.00693535722021978041 -0.0285607369999999992 17 10 0.0572305170000000016 0 17 true 141 42782.4952747579009 33.297824989163999 1284.83997 14.110201 16 21544.9955901313988 59.2783737155952011 363.454560000000015 14.5180229999999995 16 31323.2931192823999 66.9717839687172045 467.708799999999997 13.5222510000000007 1.23574579999999989 0 0.995771399999999973 0.407821659999999975 0.587949750000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.954797223170999 -62.3192443800499021 23.4306005114454017 -12.6030477896958004 100001 5186.72998 4960 5350.75 0.2333 0.065200001 0.425099999 0.115999997 0.0595999993 0.224099994 200111 1.03149519999999995 0.969226299999999985 1.12795339999999999 0.693751160000000033 0.659553469999999975 0.727948840000000041 +1635721458409799680 Gaia DR2 2505445154665120768 2505445154665120768 929750071 2015.5 26.3151987444976001 0.0584610889227989011 -2.6224728461467901 0.0474701425220176026 0.604627121633939946 0.0689838450581508056 8.76476399999999956 4.95455240124768981 0.117408950595018005 -4.73086256553234996 0.0999923389381283945 0.0763616000000000017 0.408941539999999992 -0.0915801599999999938 0.0445889100000000024 -0.219749610000000012 -0.0283226970000000008 -0.156366959999999999 0.0588421400000000011 0.146225300000000002 0.25909146999999999 168 0 167 1 2.45489220000000019 209.535004 0.188005507097183999 1.8703728868290399 31 true 5.50196899999999989 1.56269121397738009 0.0143438890770193998 0.0468956229999999974 19 10 0.115465960000000006 0 19 false 162 6118.7806570354096 4.56821679713952022 1339.42004 16.2217030000000015 17 3125.39623551783006 19.2566416801575002 162.302249999999987 16.6141259999999988 17 4383.51543134120038 21.0787867885798015 207.958619999999996 15.6573639999999994 1.22719090000000008 0 0.956762299999999954 0.392423630000000023 0.564338699999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.952514731213 -62.3149529121297974 23.4331348807290993 -12.5993839373160998 100001 5381 5336 6457.56982 0.183799997 0.124300003 0.238100007 0.0920000002 0.0604999997 0.115999997 200111 0.952286599999999983 0.661234259999999963 0.968416100000000002 0.684986500000000054 0.519751370000000046 0.850221600000000022 +1635721458409799680 Gaia DR2 2505445257746690432 2505445257746690432 238279741 2015.5 26.3274854150808011 1.79085767348359992 -2.61044288758950005 3.08498256998975018 \N \N \N \N \N \N \N 0.116984009999999999 \N \N \N \N \N \N \N \N \N 69 0 68 1 1.8399776000000001 85.1752014 3.64828498799937018 1.59283844176010003 3 false 0.0149308519999999997 \N \N 0.234546360000000009 8 7 7.84042700000000004 0 8 false 69 74.9574963400294934 1.30098304637921003 57.6160011 21.0013280000000009 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.964615065002988 -62.2987127085049011 23.4493454017101008 -12.5926695009009002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445189025026816 2505445189025026816 837522666 2015.5 26.3407425290969996 0.611848398289141948 -2.61732970834464984 0.43080677482180002 1.51937212737151994 0.706738086792061959 2.14983769999999996 -2.05877510004753983 1.20318005972253994 -4.19536659614483032 0.746923660668975975 -0.0518738659999999976 0.39020305999999999 -0.217445269999999996 0.165579620000000011 -0.322322639999999994 0.16261645999999999 0.147732620000000009 0.0639943899999999982 0.0898208199999999957 0.154155600000000004 161 0 160 1 1.6256564 184.669998 1.20709771607896998 0.994899710494975054 31 false 0.0629358400000000068 1.13589717968536008 0.143854603510974011 0.0133295510000000002 19 10 1.07508350000000008 0 19 false 160 181.583045608051009 1.29559868109160004 140.154007 20.0406779999999998 11 59.2294458760677003 12.4573711990686995 4.75457000000000019 20.9200440000000008 15 263.557996323516022 15.1210195556943994 17.4299089999999985 18.7097300000000004 1.77762989999999999 0 2.21031380000000022 0.879365900000000034 1.33094789999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.996720998861008 -62.2989682212608002 23.4593998991073995 -12.6039180695516002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425092872917120 2505425092872917120 635860802 2015.5 26.2140772500350003 0.0451736311257363021 -2.60601018456429978 0.0372328682673944977 1.09715605433501007 0.056447477384512397 19.4367599999999996 -4.2270913278475799 0.0855729861081755971 -12.0669687874417004 0.0785849741838938048 0.133628639999999993 0.501118999999999981 0.0322068930000000003 0.06814249 -0.249732520000000013 0.0381756759999999987 -0.0884801499999999935 -0.0431623199999999971 0.057413314 0.415754400000000024 136 9 136 0 0.0613533600000000026 131.326996 0 0 31 false 19.6647379999999998 1.53689464768697004 0.0128940107583171999 0.0609463999999999978 16 10 0.0887171499999999946 0 16 false 135 15845.1316927622993 8.58517151908768916 1845.64001 15.1886259999999993 14 7582.05563610986974 17.0639134450335987 444.332760000000007 15.6519200000000005 15 11938.4451151345002 31.9286725106229987 373.909850000000006 14.5695505000000001 1.23195579999999993 1 1.08236979999999994 0.463294030000000023 0.619075799999999954 \N \N 0 \N \N \N NOT_AVAILABLE 152.741884407642999 -62.3450877078406975 23.3429609904722 -12.5471412328595004 100002 5032.79004 4989 5147.31982 0.438300014 0.396499991 0.488799989 0.214000002 0.193000004 0.252099991 200111 0.993100050000000012 0.949400369999999993 1.01061139999999994 0.570055500000000048 0.50944482999999996 0.630666139999999986 +1635721458409799680 Gaia DR2 2505425122937621248 2505425122937621248 1485018559 2015.5 26.2321129797299015 1.99836829852463005 -2.59910527303873007 1.59017104228373007 \N \N \N \N \N \N \N -0.0621988850000000024 \N \N \N \N \N \N \N \N \N 96 0 93 3 70.6493899999999968 8276.94043 10.6195175954527006 720.184702414216986 3 false 0.00867704799999999971 \N \N 0.00938111999999999974 17 10 3.46739979999999992 0 17 false 151 1391.06535513792005 20.6873384098671984 67.2424011 17.8299960000000013 16 2000.20592351635992 39.5880513935898009 50.5254970000000014 17.0987009999999984 16 4015.32064655361 29.0149601481067982 138.387939999999986 15.7526200000000003 4.32440230000000003 0 1.34608170000000005 -0.731294629999999946 2.0773763999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.770085666471999 -62.3309145165922018 23.3627273436894001 -12.5473007454108991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425951866375808 2505425951866375808 91884005 2015.5 26.209951407137499 0.077258821353035606 -2.58149352434038004 0.061989449761466503 1.96427630085696991 0.0990542096104393005 19.8303170000000009 -17.7857168973337991 0.139414039917023003 -16.076034337643101 0.118646639964703995 0.0526818299999999989 0.534252639999999945 -0.035232287000000001 0.110434210000000005 -0.318915459999999984 0.0913998300000000014 0.0488606840000000014 0.00984944800000000023 0.0738117900000000021 0.349840280000000003 149 0 148 1 1.86458590000000002 176.139999 0.222222069799539013 1.89404338683292006 31 true 4.52735850000000006 1.32973834735087992 0.0195323435369425015 0.0886520449999999988 17 10 0.137323470000000003 0 17 false 147 5115.95452724029019 4.38924790272642973 1165.56995 16.4160499999999985 15 1514.60080990797996 11.7264494668569998 129.161069999999995 17.4006420000000013 15 5428.25736772280015 15.7079794885311994 345.573239999999998 15.4252690000000001 1.35709930000000001 0 1.9753733 0.984592440000000013 0.990780829999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.710549669308989 -62.3249286339068007 23.3482128167762006 -12.5228148708731997 100001 3726.5 3661.5 3867.5 1.42999995 1.27540004 1.65240002 0.700999975 0.609399974 0.831399977 200111 0.777619199999999955 0.72195240000000005 0.805473270000000019 0.105058970000000002 0.0941491049999999968 0.115968829999999995 +1635721458409799680 Gaia DR2 2505424882419488128 2505424882419488128 141902946 2015.5 26.2681823471381009 0.937410740944420007 -2.60298883972629014 0.699254438282343016 -1.90939534016115009 1.12633339001412991 -1.69523109999999999 17.1772730181062983 1.58072475783650002 -6.65639156362346007 1.79047224119497006 -0.0659553600000000045 0.637799140000000042 -0.0470110499999999987 -0.0392662100000000028 -0.272394599999999987 -0.0118022119999999994 -0.151945040000000003 -0.0768499799999999983 -0.0895262659999999932 0.394992530000000008 141 0 139 2 1.62971770000000005 161.733002 1.96669854393358001 1.16893439656020992 31 false 0.0309444349999999993 1.64851175481684997 0.234660241820296989 0.00057633140000000005 17 9 1.76266379999999989 0 17 false 139 116.159502107554005 1.31040254796570999 88.6440964 20.5257280000000009 11 41.1913059491986999 7.97372503167323021 5.16587969999999963 21.3143749999999983 13 144.917821613937008 14.0274115868514997 10.3310449999999996 19.3591160000000002 1.60218600000000011 0 1.95525930000000003 0.788646700000000034 1.16661260000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.843317658822002 -62.3184048873675991 23.3956341263927001 -12.5640852331339001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448624998863744 2505448624998863744 1039643676 2015.5 26.2627978966912998 0.914683253837792032 -2.58415276179648989 0.72259155560632804 3.52612379108327989 1.02835214541666997 3.42890700000000015 9.88480261527353932 1.70673733725504007 1.79778986556694997 1.6711397928049101 0.167432159999999997 0.513334630000000014 -0.251598949999999988 -0.0103592170000000004 0.103097125999999997 0.0521760199999999966 -0.314412299999999978 -0.00296246729999999998 -0.131861480000000003 0.269154850000000001 131 0 128 3 2.56544280000000002 166.966003 2.9420486604663898 3.16485534139032998 31 false 0.0329187920000000023 1.06942560474707005 0.223654200565644001 0.0675468149999999962 16 9 1.68530899999999995 0 16 false 129 150.692831126605995 1.22504444780325006 123.010002 20.2431340000000013 9 70.1623046815527971 16.3558852554088006 4.28972800000000021 20.7361280000000008 11 250.59051863098901 33.4032922741933973 7.50197100000000017 18.7645100000000014 2.12852070000000015 0 1.97161870000000006 0.492994299999999996 1.47862429999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.814944922375986 -62.3039164671411001 23.3975567653359988 -12.5445862873978005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448384484381440 2505448384484381440 197060070 2015.5 26.2899562390386983 1.33699741112679993 -2.60149527957984006 1.49374228178518997 1.43912054245570009 1.97575593689931006 0.728389859999999945 -1.69666349053307997 3.2171669282854598 -5.95462055627960041 4.24002923110661989 -0.217153239999999997 0.440708219999999984 -0.032501712000000002 0.159963219999999989 -0.621141199999999949 -0.195242849999999996 -0.47835293000000001 0.00781827199999999937 0.134186269999999996 0.673208499999999987 85 0 85 0 0.457969369999999987 85.2365036 0.934365617391319958 0.122299531687243002 31 false 0.0211778949999999987 1.03209104243099992 0.392385963100868984 0.0104765110000000009 10 8 4.35622739999999986 0 10 false 89 83.0214983657959067 1.37458236967481007 60.3975983 20.8903880000000015 6 88.598428377635102 8.80443676033311995 10.0629299999999997 20.4828219999999988 8 71.8331832220265056 12.5362236678199999 5.73004960000000008 20.1211069999999985 1.93241050000000003 0 0.361715320000000007 -0.407566070000000003 0.769281400000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.88382231163601 -62.3073977863390027 23.4169374737276996 -12.5706434001484997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448663653457920 2505448663653457920 1512682629 2015.5 26.2661893141516991 0.0274103363035185996 -2.57997651679291007 0.0214741597154024001 1.91121858606265005 0.0308485191538180013 61.9549519999999987 3.60058712718624019 0.0514072279207491989 5.23810261184062043 0.0466308655894389981 0.182022929999999999 0.511031299999999966 -0.136470910000000001 0.000288162530000000007 0.0420646999999999965 -0.00733921720000000038 -0.208186919999999998 0.00294816869999999995 0.00878109200000000076 0.242210669999999989 169 0 167 2 -1.38684279999999993 137.697998 0 0 31 false 38.9959139999999991 1.55422179919748005 0.00716408218425308024 0.0476635840000000019 19 10 0.0583720240000000015 0 19 false 168 31317.0513369621003 10.1828412305232003 3075.46997 14.4489140000000003 18 15508.5044915636008 24.1442620194233015 642.32669999999996 14.8749640000000003 19 22780.5314484131995 43.5188225188748987 523.463870000000043 13.8680105000000005 1.22262589999999993 0 1.0069532000000001 0.42605019999999999 0.580903049999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.817488094379001 -62.298670327778801 23.4023509834454018 -12.5419369579971001 100001 5325 5264.95996 5442 0.00850000046 0.00529999984 0.0414999984 0.00529999984 0.00230000005 0.0230999999 200111 0.69848980000000005 0.668778360000000016 0.714512049999999954 0.353421780000000019 0.339672419999999975 0.367171140000000007 +1635721458409799680 Gaia DR2 2505448831157135872 2505448831157135872 1080825131 2015.5 26.2619719229730002 0.539585565864757033 -2.55906899913839014 0.53485397923228295 0.759208097789853986 0.762898544978076965 0.995162600000000008 -0.311675065106213012 1.1742809893847701 -0.869858831296285051 1.07037444376400992 0.0133536000000000002 0.320562330000000006 -0.0726487700000000014 0.081436016 -0.539552800000000055 0.0998400400000000049 0.0227700039999999999 -0.0300620740000000011 0.0118782000000000002 0.426714749999999976 151 0 149 2 0.357798159999999976 149.473007 0 0 31 false 0.0636253700000000005 1.75301879374430003 0.164501112888554013 0.104125720000000005 17 10 1.18006710000000004 0 17 false 148 172.446719204287007 1.65616057042811993 104.124001 20.0967300000000009 14 120.054698936630004 12.9819187603537998 9.24783900000000081 20.152940000000001 13 105.837537177892997 8.88407924832772977 11.9131689999999999 19.7003209999999989 1.30992479999999989 0 0.452619549999999982 0.0562114699999999995 0.396408079999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.789417574455001 -62.2818030584992997 23.4061599074269004 -12.5209357666198002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448831159397120 2505448831159397120 1289864827 2015.5 26.2660434184983984 2.19744982227819019 -2.56331864024231004 2.21928046100001009 \N \N \N \N \N \N \N 0.340867640000000027 \N \N \N \N \N \N \N \N \N 94 0 94 0 7.75979500000000044 236.578003 8.65985656367450929 8.42973868379628044 3 false 0.00739631239999999964 \N \N 0.129943420000000004 11 8 7.90691949999999988 0 11 false 97 85.1994329969930959 1.62410132544211994 52.4594002 20.8622739999999993 4 35.5229879054530002 8.31264056673549945 4.27336999999999989 21.4751149999999988 7 163.754170683745002 8.6422252968649893 18.9481490000000008 19.2264389999999992 2.33894940000000018 0 2.24867630000000007 0.612840649999999987 1.63583560000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.801308300974995 -62.2838073880487997 23.4084476517178999 -12.5263778016324991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448453200172032 2505448453200172032 242794413 2015.5 26.2811234188636007 0.677048267757782041 -2.57976542421811006 0.481396741417263019 2.2695255444091802 0.750650531120168996 3.02341149999999992 -1.61373053324816995 1.25583378410415003 -9.07285958263742032 0.915410094080544967 -0.0219166990000000013 0.486915260000000016 -0.143952240000000009 0.139493549999999994 -0.214343859999999997 0.186521490000000012 0.155388849999999995 -0.0125369439999999995 0.0207067750000000002 0.181687120000000008 156 0 154 2 0.591964999999999963 158.757996 0 0 31 false 0.0515017249999999982 1.14598073326858008 0.163254147933848986 0.00235124199999999992 18 10 1.12883 0 18 false 154 147.822087631106996 1.1834866545587599 124.903999 20.2640169999999991 10 29.6402344535525017 6.24168243074470031 4.74875739999999968 21.6716839999999991 17 203.514223148387998 9.20270191880232069 22.1146160000000016 18.9904329999999995 1.577264 0 2.68125150000000012 1.4076671999999999 1.27358440000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.846038113009001 -62.2918557367163999 23.4166569350388016 -12.5471919406662007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426261104020608 2505426261104020608 363976442 2015.5 26.2097915382619995 0.0660815699053704936 -2.55760212835614986 0.0575670301965246003 0.614929350444845979 0.0804650821341981043 7.64218900000000012 15.2926900729245006 0.138291879711340993 -1.77313368700516993 0.115670864146884003 0.16452311 0.357111279999999975 -0.117457950000000005 0.0869872940000000067 -0.249873359999999989 0.0795438200000000012 0.0187986940000000012 0.0329544469999999978 0.0625566899999999981 0.340971740000000023 151 0 151 0 -1.7677366000000001 117.250999 0 0 31 true 4.92787359999999985 1.55711007095819998 0.0191368967461178 0.109212199999999995 18 10 0.136959870000000011 0 19 false 151 4501.0165792764501 3.75726240265094003 1197.94995 16.5550899999999999 16 2261.88540896883978 16.2177078886112014 139.470110000000005 16.9652120000000011 16 3320.18934978687003 20.4195654849131003 162.598430000000008 15.9590130000000006 1.24018089999999992 0 1.00619890000000001 0.410121919999999973 0.596076970000000039 \N \N 0 \N \N \N NOT_AVAILABLE 152.687497690349005 -62.3035718894457986 23.3570067344189987 -12.5005186664989996 100001 5142.20996 4960 5325 0.0553000011 0.0193000007 0.160999998 0.0170000009 0.00800000038 0.0781000033 200111 0.89518774000000001 0.834783700000000017 0.962165530000000047 0.504801900000000026 0.36695945000000002 0.642644400000000005 +1635721458409799680 Gaia DR2 2505449587071382784 2505449587071382784 1208060491 2015.5 26.2504531735430007 0.827500338834330051 -2.54764875996934004 0.953975364535629033 1.3162010827292201 1.27918270502848008 1.02893910000000011 0.0752453545247379063 2.85238618501563002 -3.99475358207812992 3.45608134411916978 0.0989699440000000041 0.186753620000000009 -0.0560379329999999981 0.0421439860000000013 -0.573273359999999954 -0.0360291400000000012 -0.19006113999999999 -0.221764879999999998 -0.179618870000000014 0.806759000000000004 118 0 116 2 -1.74622079999999991 86.3964996 0 0 31 false 0.0337851639999999995 \N \N 0.127183350000000001 14 8 3.74495999999999984 0 14 false 118 120.314429224224 1.11141660706522005 108.252998 20.4875720000000001 10 48.8244930125460002 13.5119356287907006 3.61343430000000021 21.1297929999999994 11 152.01140736295801 5.45212742082931001 27.8811190000000018 19.3072300000000006 1.66925860000000004 0 1.82256320000000005 0.642221449999999972 1.18034170000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.756359474920004 -62.2766673348585016 23.3994624409947001 -12.5061003404362996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449660085848576 2505449660085848576 805779356 2015.5 26.2439893678944998 0.31529426308154701 -2.53304613190271022 0.291907599301019005 1.62409997593269995 0.423702668853336017 3.83311249999999992 -0.426741505171817026 0.645742381932519982 0.953402107143278998 0.477714916368076004 0.201583469999999987 0.307166039999999974 -0.0062065035999999997 0.168159000000000003 -0.34602856999999998 0.110860650000000005 0.17831704000000001 0.0410236400000000001 0.144986480000000001 0.296657999999999977 148 0 147 1 22.4647140000000007 954.312988 2.07054374979326017 46.3946046032681991 31 true 0.197477889999999989 1.50800137009073998 0.0820825722463803947 0.167885780000000012 17 9 0.593770299999999973 3 17 false 148 1603.05343761946006 19.8390171018335018 80.8031006 17.6759950000000003 14 1512.7113261925299 29.841865348686099 50.6909100000000024 17.401999 14 3562.13799248092982 41.1180022622040013 86.632080000000002 15.8826429999999998 3.16573929999999981 0 1.51935580000000003 -0.27399635 1.79335209999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.730016433010007 -62.2664348839360002 23.3987713379843996 -12.4901479050317992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449831884540288 2505449831884540288 150462160 2015.5 26.211623205105699 0.0372716517402428005 -2.52900237420133989 0.0342280279036591972 0.418534863436225979 0.0454504593350492023 9.20859399999999972 -1.51642955786350009 0.0777697361047317015 -4.77637338519422006 0.0744897915242229008 0.224151800000000012 0.387585500000000027 -0.0680960599999999999 0.0362984199999999979 -0.197452829999999996 0.0212905669999999998 -0.102153809999999998 -0.00796307299999999933 0.0448064660000000031 0.41769837999999998 157 0 156 1 -1.69513620000000009 122.834 0 0 31 false 17.0451659999999983 1.58105041382008005 0.0114044083597294992 0.122835319999999998 18 10 0.0886054800000000004 0 18 false 155 14026.727401143 7.32115393263816028 1915.92004 15.3209750000000007 18 7268.26123223702962 22.1364693917475002 328.338779999999986 15.6978120000000008 17 9816.68127155231923 14.2278107669107996 689.96429999999998 14.7820079999999994 1.21802769999999994 0 0.915803900000000004 0.376836779999999982 0.538967129999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.663843433126999 -62.2771084083836968 23.3694584123835014 -12.4745668065485997 100001 5442 5406.5 5487.66992 1.39900005 0.985000014 1.704 0.686500013 0.411000013 0.837400019 200111 2.02917550000000002 1.99554370000000003 2.05591079999999993 3.25362920000000022 2.46567559999999997 4.04158300000000015 +1635721458409799680 Gaia DR2 2505449969323493376 2505449969323493376 408048946 2015.5 26.2277845099277016 0.404846273952047975 -2.50901737958685001 0.369242176567018021 -0.344155171214933997 0.540659156225820947 -0.636547399999999985 -4.3938408875482402 0.777556086594471951 -9.11425938928442037 0.599843696610207977 0.114855620000000005 0.397557600000000011 0.0362326469999999998 0.207355709999999999 -0.392048269999999976 0.241352680000000014 0.264927740000000023 -0.0526692159999999979 0.034475088000000001 0.344052100000000027 148 0 147 1 2.64460730000000011 190.580994 0.908486695787776966 1.15245568098816009 31 false 0.129285480000000008 1.45357699469463997 0.101922786151927 0.107656689999999999 17 10 0.737273449999999997 0 17 false 147 294.902055250553019 1.48392705551414994 198.731003 19.5141719999999985 14 90.7198447616281953 9.05866833033370078 10.0146999999999995 20.4571320000000014 12 318.715671600282974 19.8866270930424989 16.0266319999999993 18.5034120000000009 1.38837799999999989 0 1.95372009999999996 0.942960739999999964 1.01075939999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.675989345087999 -62.2520458542908983 23.3923304905682983 -12.4618650157465005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449934963755136 2505449934963755136 894628103 2015.5 26.2302265369023999 0.0359483373135415021 -2.52157105660417979 0.0338920135133631978 0.706391416204542044 0.0427724411080825026 16.5151059999999994 -0.61906596131590097 0.0727510521929747023 3.21269345601746981 0.0708171872683864001 0.296374919999999986 0.413407980000000008 -0.0500664499999999985 0.0528246539999999987 -0.122141879999999994 0.0347620729999999975 -0.082074229999999998 0.00777322239999999991 0.0604576130000000003 0.429133949999999986 148 0 148 0 -1.30347070000000009 121.471001 0 8.40305455069884962e-16 31 false 20.7356149999999992 1.63023099471829003 0.0111492065248891999 0.150177850000000002 17 10 0.0846960900000000017 0 17 false 147 16907.0864218907009 7.18999275831992968 2351.46997 15.1181940000000008 15 9584.98867467493983 19.4595983588679005 492.558400000000006 15.3974089999999997 15 10779.1837042812003 20.4221713319365001 527.817699999999945 14.6804550000000003 1.20447550000000003 0 0.716954230000000026 0.279215800000000014 0.437738420000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.692612419877008 -62.2622276239661971 23.3899578780889001 -12.4744419754893006 100001 6088.99023 5822.62012 6309 0.0560000017 0.0170000009 0.118699998 0.0287999995 0.0092000002 0.0513999984 200111 1.03223170000000009 0.961494269999999984 1.12883510000000009 1.31956329999999999 1.13953470000000001 1.49959179999999992 +1635721458409799680 Gaia DR2 2505449930668772864 2505449930668772864 943134262 2015.5 26.233907311852299 0.306792494562216023 -2.51766042542719992 0.255648747796817011 1.23629916025334996 0.387471586348857977 3.19068340000000017 11.5522583779276005 0.634433313388331976 -8.97230124625390069 0.425925480840292026 0.0898532640000000021 0.323289720000000003 -0.123857529999999993 0.173661050000000011 -0.367244499999999974 0.179244340000000002 0.246971350000000006 0.0309770800000000006 0.0490635339999999989 0.259543479999999993 150 0 150 0 3.68734740000000016 216.421997 1.03285544627871007 2.79155153961462998 31 false 0.23166268000000001 1.3716967193907299 0.0763964913763835046 0.0857997300000000046 17 10 0.574488800000000022 0 17 false 150 507.763538025565026 1.50991515222739991 336.286011 18.9242120000000007 14 128.02260530169201 8.52561134337742033 15.0162370000000003 20.0831720000000011 14 597.735710898813977 6.88463636277182989 86.8216859999999997 17.820646 1.42932339999999991 0 2.26252560000000003 1.15896029999999994 1.10356520000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.695982710906009 -62.2570940122016978 23.3949271407873987 -12.4721456036216995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449587071384064 2505449587071384064 1085175563 2015.5 26.2538968587850015 0.300771270903880006 -2.54103202098208003 0.27191290886474101 1.43059454208643011 0.385180660757376003 3.71408719999999981 20.1570367856432 0.640613684472035039 4.21873670154520042 0.481591590000876979 0.161138520000000007 0.260556500000000024 0.0901842900000000003 0.173219029999999996 -0.393525029999999998 0.216335090000000008 0.179402349999999988 -0.109128180000000005 0.0299327019999999985 0.348329070000000018 138 0 136 2 2.2150713999999998 169.432007 0.902916438901509966 1.85382911049715005 31 false 0.234086500000000003 1.51198868529170993 0.0819431209633617041 0.074599004999999996 16 10 0.602624500000000007 0 16 false 135 490.224195879031015 1.65360949027747006 296.457001 18.9623799999999996 15 153.645603029032998 8.31423494021472997 18.4798240000000007 19.8850879999999997 14 522.204684114083989 7.28437425855679965 71.6883399999999966 17.9673179999999988 1.37865560000000009 0 1.91777039999999999 0.922708500000000043 0.995061900000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.756687254936992 -62.2692112249293999 23.4052192130115984 -12.5011983204010004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449243474000128 2505449243474000128 372944589 2015.5 26.2954956841780003 0.149581832204621012 -2.54137331114438014 0.114267099664422001 0.807008749372806977 0.170951116705933992 4.72069899999999976 9.09129813492524974 0.297540155633660985 -8.68913903218090944 0.230024556397144003 0.0606080329999999987 0.412691650000000021 -0.0893869600000000014 0.0945218899999999973 -0.180964280000000005 0.0810899100000000012 0.00328378540000000014 0.00673587669999999982 0.0760671299999999967 0.214079510000000001 174 0 172 2 0.581456239999999958 177.158997 0.256369171097988013 0.508401987471820971 31 false 0.818474299999999988 1.34000346007015003 0.0374865271595379995 0.0147168760000000003 20 10 0.271301499999999973 0 20 false 171 1073.0254650495599 2.23362029459234002 480.397003 18.1118409999999983 17 334.130826259449975 12.3429277720527004 27.0706300000000013 19.0415969999999994 18 1143.91230740437004 12.1839891318360998 93.8865200000000044 17.1159379999999999 1.3774538999999999 0 1.9256591999999999 0.929756160000000054 0.995902999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 152.837030504562989 -62.2510814938863035 23.4447171092529985 -12.5166992883349995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449690150601088 2505449690150601088 1117107987 2015.5 26.2646037451430985 0.147846150661762987 -2.52984999992523996 0.128804326114700995 0.637749537203171957 0.185559165696474987 3.43690659999999992 12.9904555861013993 0.321879927036447022 -4.44957723955760009 0.248163800917095001 0.0831453800000000048 0.280043660000000028 -0.148099900000000007 0.108547783999999994 -0.403956829999999989 0.114851460000000002 0.0635327700000000023 0.0335483030000000015 0.0480130870000000029 0.336308779999999974 151 0 151 0 0.143594300000000008 147.794006 0.0892021031681428933 0.0592070648603100977 31 false 0.917407300000000037 1.45023562386779004 0.0402086210019306015 0.0601513570000000025 17 10 0.302641700000000013 0 17 false 151 1134.28333237828997 2.17865244343482001 520.63501 18.0515609999999995 17 440.411391481957025 11.6892521549277006 37.6766099999999966 18.7417410000000011 16 1062.34453042968994 12.4228097935804005 85.5156400000000048 17.1962569999999992 1.32485059999999999 0 1.54548449999999993 0.69017980000000001 0.855304700000000029 \N \N 0 \N \N \N NOT_AVAILABLE 152.766642934342997 -62.2544470929967986 23.4196026069781986 -12.4946977715292 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449690150601600 2505449690150601600 315292355 2015.5 26.2664229222712997 0.330048042349117998 -2.52709915149858011 0.308651754613420981 0.422062060767584013 0.435621050849700986 0.968874339999999945 -0.717880090333738008 0.684267886427698979 -8.72420280946809967 0.559742076345458028 0.126344700000000004 0.334290619999999983 0.00701886100000000037 0.146514370000000005 -0.408208850000000012 0.172813710000000009 0.157241779999999998 -0.0472985799999999998 0.0287783259999999999 0.370012600000000025 161 0 159 2 4.08881859999999975 236.591995 1.19762246780976001 2.91207209282011004 31 false 0.164441179999999992 1.4219308448255501 0.0913093626315362034 0.0939786700000000003 18 10 0.656055500000000014 0 18 false 158 410.583528970399016 1.96638215397020999 208.800995 19.1548610000000004 14 161.81442272641101 8.18416907952986072 19.7716369999999984 19.8288459999999986 16 442.796087363066022 14.5758852301539008 30.3786750000000012 18.1464099999999995 1.47256399999999998 0 1.68243600000000004 0.673984499999999986 1.00845150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.767523498315001 -62.2511756926424979 23.4223648284256001 -12.4928011054407992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450278560671744 2505450278560671744 1367919342 2015.5 26.2676240510853987 0.108554976625889005 -2.50923197813974985 0.119112210833425006 0.727592911426953037 0.152835515308630987 4.76062730000000034 6.68335622564123 0.263207698062068007 -9.65617254615222009 0.239307901618042995 0.209734570000000009 0.172727910000000012 0.0540949329999999978 0.185488239999999999 -0.536427859999999979 0.348104330000000017 0.334903700000000026 -0.239981400000000011 -0.225091979999999997 0.54496929999999999 149 0 148 1 -0.458531169999999988 134.742996 0 0 31 false 1.60946640000000007 1.43969991195002001 0.0330663203101548009 0.12944151000000001 17 9 0.285091499999999998 0 17 false 148 1745.44737403254999 2.34874730811662014 743.140015 17.5836000000000006 15 724.254345925137955 29.5578237170791986 24.5029660000000007 18.2016600000000004 13 1543.01975552584008 8.57326752976194939 179.98035999999999 16.7909900000000007 1.29896450000000008 0 1.4106692999999999 0.61806106999999999 0.792608259999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.752833721790012 -62.2346266358849007 23.4301946211671996 -12.4766074284694 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445532622248064 2505445532622248064 1310136135 2015.5 26.3106857019494988 0.583237998488465026 -2.59461893810370992 0.418173861998891006 3.67455999880150985 0.639105004570261981 5.7495402999999996 5.29380391461828026 1.09461178458546993 -50.0010727680967975 0.720433984160730012 0.0981521459999999957 0.472124429999999984 -0.146080399999999999 0.221433710000000006 -0.0845501349999999985 0.20536509 0.258225560000000021 0.0586548260000000002 0.128728029999999993 0.147798049999999986 167 0 167 0 4.79139040000000005 263.532013 2.22951677923862013 4.39390333378545961 31 false 0.065163570000000004 1.22605901332950995 0.133652738114506009 -0.00610898699999999975 19 10 0.976243850000000024 0 19 false 166 246.349058626279998 1.33095647460174993 185.091995 19.7094880000000003 14 59.7198075576192977 12.6828833755218007 4.70869349999999987 20.911093000000001 19 410.647528595421988 14.1760859031028996 28.9676250000000017 18.2282469999999996 1.90935309999999991 0 2.68284600000000006 1.20160479999999992 1.48124119999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.917132932572997 -62.2920241908663996 23.4392615307748002 -12.5718083702242005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445532622247680 2505445532622247680 705634756 2015.5 26.3153642982200999 0.765820355899204053 -2.59927558243265011 0.543468060362771954 -0.504762011176437042 0.856834642873419039 -0.589100839999999959 7.83465682590847035 1.42921741357786991 -2.04161962552560006 1.19190165274053994 -0.00557139329999999967 0.50099539999999998 -0.231443910000000003 0.0935152300000000047 -0.167868099999999992 0.194322099999999998 -0.00270604129999999984 -0.0445857679999999978 -0.0891329349999999965 0.254193749999999996 145 0 141 4 0.400091560000000013 142.018005 0 0 31 false 0.0451635680000000012 1.64983116872664004 0.175903072694442997 0.0475930199999999998 17 10 1.33290960000000003 0 17 false 141 139.286005980260995 1.17647828860844994 118.391998 20.328596000000001 14 54.5523933267007024 4.94307434415352986 11.0361259999999994 21.0093539999999983 15 147.808790749539014 8.42471233346915938 17.54467 19.3376699999999992 1.45284649999999993 0 1.6716842999999999 0.680757500000000015 0.990926740000000028 \N \N 0 \N \N \N NOT_AVAILABLE 152.930593608612014 -62.2941121236995983 23.4419762007560983 -12.5778505996504002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448487559748864 2505448487559748864 1582895283 2015.5 26.3025079481368991 0.303555484879703019 -2.58332974760035006 0.225446221237518007 0.935854442733067948 0.356755253511562009 2.62323949999999995 7.94904107217189981 0.566369321835679007 -13.3314210526008008 0.44155810517927202 0.0155196139999999993 0.479774529999999977 0.00858774200000000064 0.10314181 -0.24116862 0.0983018199999999981 0.0587217469999999978 -0.0393060100000000023 0.0617732799999999999 0.233946060000000011 170 0 169 1 -0.282345860000000004 158.287003 0 0 31 false 0.215403239999999996 1.24080953041532993 0.077025024879943102 0.00285817939999999989 20 10 0.515496729999999959 0 20 false 170 381.280984215315016 1.59995978122760008 238.307007 19.2352519999999991 17 121.979129440280005 11.6427777768130998 10.4768070000000009 20.1356740000000016 17 419.671910774412027 7.31595949755728014 57.3638899999999978 18.2046449999999993 1.4206086 0 1.93102839999999998 0.900421139999999953 1.03060719999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.890595836979003 -62.2855507381047033 23.4356957030619988 -12.5583149766411992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445566984323200 2505445566984323200 18155715 2015.5 26.3160715348566008 2.98080824860757998 -2.58659908748325984 6.47783694844949043 \N \N \N \N \N \N \N -0.751013159999999957 \N \N \N \N \N \N \N \N \N 44 0 44 0 0.0332231259999999987 38.6278992 0 0 3 false 0.0214029069999999988 \N \N 0.0255425719999999995 5 5 17.6887019999999993 0 5 false 44 75.1105874650605045 1.85343273485193993 40.5251007 20.9991130000000013 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.919813451940996 -62.2824475494790022 23.4473946824341013 -12.5663083385485006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445566985857536 2505445566985857536 983055007 2015.5 26.3278633887084013 0.918380941744370016 -2.58099144480179987 0.733271732677526988 0.750777085722684978 1.08839353879320999 0.689802939999999976 -1.66840428232301008 1.6355973576815499 0.0852828042001259057 1.91855236767797011 -0.0922418299999999969 0.581504400000000032 -0.0166294979999999995 -0.0679645499999999986 -0.306191680000000022 -0.12707331999999999 -0.255269350000000006 0.00014838587999999999 0.0118359550000000004 0.325732079999999979 121 0 121 0 0.479824419999999974 122.768997 0 0 31 false 0.0335102160000000024 1.40918254008914001 0.259538392348646008 0.0994250500000000009 14 9 1.83179690000000006 0 14 false 123 107.678211094299996 0.947186960643171982 113.681999 20.6080460000000016 11 95.6684678517149933 9.95218653878115944 9.61280900000000038 20.3994660000000003 13 84.7464930914589019 11.3593427929006996 7.46051030000000015 19.9416159999999998 1.67550109999999997 0 0.45784950000000002 -0.208580020000000005 0.666429500000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.937116476929987 -62.2721800935730982 23.4607282807151982 -12.5653911995866991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448594933548416 2505448594933548416 832604379 2015.5 26.3029141458493001 0.694654916049814997 -2.56167712692472982 0.561006212911069002 0.461378017771285009 0.811956811926925037 0.568229729999999988 19.3356081791313983 1.42838994822057996 2.1771904800815598 1.43763216298914998 0.0572409330000000008 0.434939200000000026 0.0509221700000000027 0.0215858820000000007 -0.186079670000000003 -0.0166843420000000013 -0.225328830000000008 -0.147407530000000009 -0.0720149100000000014 0.416210350000000007 149 0 148 1 1.76228279999999993 174.160004 0.914997976288220993 0.368936189292514982 31 false 0.0425550999999999985 0.979965593579021021 0.188612955378585995 0.0161830430000000011 17 9 1.49870239999999999 0 17 false 148 139.560908535008991 1.42050900941846003 98.2471008 20.3264560000000003 11 77.5739925198395071 14.3021722088055991 5.42393060000000027 20.6270980000000002 15 199.239725295326991 11.7976525632786995 16.8880830000000017 19.0134800000000013 1.98346170000000011 0 1.61361890000000008 0.30064200000000002 1.31297679999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.870676929327004 -62.2659770136662019 23.4441863870297986 -12.5383071810339999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445944941465856 2505445944941465856 1192977789 2015.5 26.3328603890056989 0.781110703241283955 -2.57190444650776984 0.629251428273258973 0.171858254056581006 0.904099704180391983 0.190087719999999988 -6.64376393368497009 1.64993108422867008 -7.59798721071139038 1.6442522151393999 0.014749814 0.393159700000000001 0.0423762570000000005 0.027780131999999999 -0.219158779999999997 -0.0194206630000000012 -0.240163979999999999 -0.146966430000000009 -0.0663858100000000034 0.395732550000000016 142 0 140 2 1.64299820000000008 163.078995 0 0 31 false 0.0349711700000000028 1.1972944042365099 0.215374583229086008 0.0420010430000000018 16 9 1.70997329999999992 0 16 false 141 116.060054921141003 1.1603354434859201 100.023003 20.5266589999999987 9 44.4335290871177975 6.17101068813686027 7.20036499999999968 21.2321109999999997 13 161.887501965098011 9.52637090923053087 16.9936180000000014 19.2388860000000008 1.7777092000000001 0 1.99322510000000008 0.705451970000000039 1.28777309999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.938020541349005 -62.2618207452649983 23.4688897513403987 -12.5587553530638996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445296399097984 2505445296399097984 667432911 2015.5 26.3509353771388 0.0848160762582185063 -2.60162848798817992 0.0751095844945080943 0.435966896549284 0.111853539783558997 3.8976586000000002 1.79952549824585994 0.177582500551531991 -0.136196945502291 0.142926497384972012 0.0964852900000000013 0.322385279999999996 -0.0830677999999999972 0.0561785299999999974 -0.374324529999999989 -0.0923375399999999957 -0.176339999999999997 0.15757562 0.286022160000000025 0.298936800000000003 169 0 169 0 3.8782833000000001 243.873993 0.354000701230478998 3.44700802261443995 31 true 2.4396460000000002 1.56101909476644996 0.0211351735241487003 0.083736060000000001 19 9 0.170512570000000002 0 19 false 169 3429.19942099001992 3.47758559202832984 986.085999 16.8503839999999983 17 1732.81233018518992 11.5725111056913992 149.735199999999992 17.2545089999999988 17 2464.22986176088989 9.52846367125187044 258.617770000000007 16.2827170000000017 1.22391310000000009 0 0.971792199999999995 0.404125200000000018 0.567667000000000033 \N \N 0 \N \N \N NOT_AVAILABLE 153.001244159322994 -62.2803729707127971 23.4749889507945007 -12.5930208122554994 100001 5351 5316 5383 0.224999994 0.0763000026 0.38409999 0.0920000002 0.0445000008 0.189999998 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445876222004736 2505445876222004736 985879855 2015.5 26.3462464759746986 1.54068795985142004 -2.58567260508121022 0.962760278791523039 3.67421100665182987 1.85303528009539997 1.98280680000000009 30.6075943835680988 2.15218415387588013 -9.86134514589256028 2.28092072470805007 0.193376450000000005 0.74957510000000005 -0.00654235530000000023 -0.137499330000000003 0.0964619899999999975 -0.0454371459999999977 -0.18558034000000001 -0.144852730000000013 -0.200725719999999996 0.356691570000000013 86 0 86 0 -1.2699050999999999 65.3087997 0 0 31 false 0.0254371670000000001 1.23413361413784006 0.331096235775831027 0.219664930000000008 10 8 2.32962099999999994 0 10 false 87 84.4540930669035959 1.01043464199549993 83.5819016 20.8718150000000016 6 25.8460915942188016 8.73803976319516984 2.95788219999999979 21.8203999999999994 6 163.408712182952996 13.5904331590917007 12.0238049999999994 19.2287309999999998 2.24091940000000012 1 2.591669 0.94858549999999997 1.64308359999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.976930354404999 -62.2681838167234005 23.4764920633699994 -12.5764564262908998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445880514649856 2505445880514649856 173900369 2015.5 26.3471220230681986 0.0293716593066036986 -2.58110544255305019 0.0241968248262941985 2.0415672630696502 0.0334418176782248014 61.048335999999999 32.9033042753443965 0.0608583489084797008 -11.8941998403750002 0.0509918622147758974 0.146906110000000006 0.369220700000000013 -0.0115376520000000007 0.00218774660000000017 -0.0916659699999999994 -0.0706052560000000051 -0.175330760000000002 0.00488775700000000039 0.170585650000000005 0.203481660000000009 154 0 153 1 -2.47497319999999998 108.828003 0 0 31 false 30.7782480000000014 1.50304369445409991 0.0076384703948758504 0.0260023979999999995 18 10 0.0655733800000000006 0 18 false 153 24639.9345027013987 7.79431459175992014 3161.27002 14.7092670000000005 14 10638.8988484890997 18.5118778104511996 574.70659999999998 15.2841459999999998 16 20001.0927103791983 37.9501013059729004 527.036600000000021 14.0092859999999995 1.24350939999999999 0 1.27486039999999989 0.574879649999999964 0.69998073999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.97423511135699 -62.2637060070549992 23.4790353144421999 -12.5725241949681994 100001 5073.00977 4935.25 5163 0.384299994 0.204899997 0.542999983 0.197699994 0.1043 0.259799987 200111 0.65238373999999999 0.629840100000000014 0.689313949999999953 0.253959099999999993 0.244116720000000009 0.263801459999999988 +1635721458409799680 Gaia DR2 2505445979298851072 2505445979298851072 1357448689 2015.5 26.3493992259470993 0.600399375031613003 -2.56169300873931016 0.475428448199567977 0.812234608172504036 0.712065277635938965 1.14067439999999998 -4.08930184163139021 1.15818480457537998 -9.40976532046646952 0.871284933619339008 0.0345526800000000023 0.439067299999999994 -0.014631448 0.141377659999999988 -0.281624800000000008 0.18472783000000001 0.233369660000000007 -0.0555895750000000022 0.0154297219999999999 0.237985499999999989 156 0 155 1 2.44782350000000015 195.720001 1.42734599563724007 1.24043011339962006 31 false 0.05785854 1.44448549890382005 0.152764592993826998 0.100060919999999998 18 10 1.0543518999999999 0 18 false 154 173.531573927833989 1.33699769097212995 129.792007 20.0899199999999993 13 61.7620560977446971 8.22715564757974072 7.50709719999999958 20.8745839999999987 14 206.736462431412008 10.2865617042811994 20.0977229999999984 18.9733769999999993 1.54726030000000003 0 1.90120700000000009 0.784664150000000005 1.11654279999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.96001497424399 -62.2453160116688977 23.488468363486799 -12.5552833739071001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449174754617472 2505449174754617472 1255999911 2015.5 26.3063691329101985 0.98349706194755504 -2.54830436914362002 0.84732596458073095 1.27940545953104001 1.25448458585422995 1.01986540000000003 -2.96667840278142014 2.33573536763221012 -6.88568618362601015 2.58955693745358984 0.0139620349999999994 0.354913120000000026 -0.126691150000000002 0.0753646639999999979 -0.346110970000000018 0.246955680000000011 0.0730230699999999955 -0.290516529999999995 -0.353311099999999989 0.5705924 127 0 126 1 -1.7144374 95.6699982 0 0 31 false 0.0247458870000000011 2.04419216924783997 0.270544219063893976 0.115700449999999996 15 9 2.73794769999999987 0 15 false 131 94.8803255328107014 1.17905833187577991 80.4712982 20.7454259999999984 11 50.6264984166412972 11.7138784030566008 4.32192470000000029 21.0904430000000005 11 78.7904609748060949 9.3915971501672395 8.38946299999999923 20.0207370000000004 1.3640021 0 1.06970600000000005 0.345016480000000014 0.724689499999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.864546747323004 -62.2524639899391019 23.4524820338295008 -12.5271193939864993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449209118750208 2505449209118750208 671483279 2015.5 26.3092219228056017 0.383168742774365023 -2.53382174522374992 0.286931237539479023 -0.433692009108431975 0.44466653207823098 -0.975319700000000012 12.7331067614939997 0.72616846388936096 2.04268330828167999 0.542668810097180043 0.0194556700000000013 0.453279350000000025 -0.0118619090000000003 0.127793710000000005 -0.236209059999999998 0.139544069999999992 0.130442620000000009 -0.0395710950000000006 0.0553049399999999969 0.211045470000000013 177 0 175 2 -0.481687370000000004 160.628998 0 1.54138360968159005e-15 31 false 0.128608749999999994 1.35427218839899011 0.0941215395029175034 0.0123747400000000004 20 10 0.654814840000000009 0 20 false 173 274.072701143529002 1.26258489933205009 217.072998 19.5936999999999983 15 85.3484386219448936 9.1965873854296003 9.28044700000000056 20.5233999999999988 18 315.870152598800018 10.6703079072480005 29.602722 18.5131499999999996 1.46391300000000002 0 2.01025000000000009 0.929698939999999974 1.0805511000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.856206227857996 -62.2382238061343003 23.4606185989735998 -12.5146784649509009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449106037400832 2505449106037400832 1049309802 2015.5 26.3377224740094995 1.84678101034587994 -2.5407533057803402 1.24026324004305999 \N \N \N \N \N \N \N 0.164265440000000013 \N \N \N \N \N \N \N \N \N 79 0 79 0 1.10501749999999999 87.5259018 3.0119406817904899 0.934021747737760033 3 false 0.0159191789999999986 \N \N 0.0338550800000000027 9 6 2.80911560000000016 0 9 false 80 74.4438491134138047 1.19368228356894002 62.3648987 21.0087930000000007 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.917565324658 -62.2317665295991986 23.4851771205377986 -12.5315299281368002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449110330055808 2505449110330055808 1355561986 2015.5 26.3399630023701015 0.0296727294772192 -2.53785314254300021 0.0232241766020742993 2.90141588470986989 0.0333411894641843023 87.0219649999999945 29.3436555573226983 0.0596401366435147032 -0.520446971001032987 0.0501265971089527029 0.0858173200000000025 0.418550499999999992 -0.0888686100000000007 0.0417165050000000009 -0.108531155000000004 0.014595495 -0.10467622 0.00323518039999999996 0.0697307999999999956 0.205955200000000005 184 0 182 2 -0.789858639999999945 161.921997 0 1.51059681301357006e-15 31 false 23.662706 1.46812586823179991 0.00755043603399532977 0.00783273699999999934 21 10 0.0643057199999999968 0 21 false 182 19083.5789398437992 9.00068680983113012 2120.23999 14.9867159999999995 20 7173.55100581120041 41.6535517262960013 172.219439999999992 15.7120519999999999 21 17374.7165024194983 35.1262019766653992 494.636930000000007 14.1621260000000007 1.28635549999999999 0 1.54992679999999994 0.725336100000000039 0.82459070000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.919095449920007 -62.2281730907466013 23.4883966335221004 -12.5296474536618998 100001 4381.75 4257.93018 4551.95996 0.234999999 0.0935999975 0.601499975 0.111000001 0.0148999998 0.270099998 200111 0.603326299999999982 0.559051159999999991 0.638926499999999953 0.120889805000000003 0.117600440000000001 0.124179170000000005 +1635721458409799680 Gaia DR2 2505449415272699776 2505449415272699776 1266831448 2015.5 26.3189312204800991 0.168269664441349998 -2.50749148453550985 0.130284157989214999 4.94234905776321032 0.191763456309267 25.7731530000000006 7.73209959598106966 0.336680572188629013 -60.3612818380016023 0.26035585410173101 0.0765096549999999959 0.407773139999999978 -0.045264699999999998 0.0933161700000000038 -0.147955969999999992 0.0839382199999999939 0.0544293080000000026 -0.0202991900000000017 0.0699899350000000031 0.190767290000000006 175 0 175 0 3.10137580000000002 233.014999 0.565592856002050004 2.17768146270655993 31 false 0.614129700000000001 1.13348093139859007 0.0420011481424411998 0.0269427840000000009 20 10 0.304652699999999999 0 20 true 173 986.355923431529959 1.95991242566002 503.265015 18.2032810000000005 16 170.445228345848989 28.4719207244064982 5.98643259999999966 19.7724270000000004 18 1389.0901342115601 9.86712891724928021 140.779570000000007 16.9050939999999983 1.58110810000000002 0 2.86733249999999984 1.56914519999999991 1.29818729999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.849746042011986 -62.2103256430612035 23.4797178432803015 -12.4937096909443994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449071675307648 2505449071675307648 101800224 2015.5 26.3555656626066011 0.464586420829920022 -2.54563865015723989 0.372696830078218022 0.0811209767602733001 0.553473622631401985 0.146567019999999992 3.37888749939950994 0.927674952291495991 -2.97773579564075019 0.66915325046063201 0.076574765000000003 0.385597740000000022 0.0028755832000000002 0.148199319999999996 -0.249979570000000012 0.156940899999999994 0.220592440000000001 -0.0409235100000000032 0.0661202740000000067 0.205850439999999996 170 0 169 1 3.96905449999999993 246.022003 1.88360980487979002 4.05286615192201971 31 false 0.0843688900000000019 1.27102555321313004 0.108579023961409005 0.0567141919999999966 20 10 0.834205569999999952 0 20 false 170 276.130803958832018 1.42629541821017991 193.600006 19.5855789999999992 14 110.151935608843999 9.61940608888166082 11.4510120000000004 20.2464079999999989 17 272.118897428460002 8.21560716211977038 33.1221900000000034 18.6750240000000005 1.38438320000000004 0 1.5713843999999999 0.660829540000000049 0.910554899999999945 \N \N 0 \N \N \N NOT_AVAILABLE 152.956488792600993 -62.2281989478686981 23.5003495645180003 -12.5425871962289008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449140397147392 2505449140397147392 903700386 2015.5 26.3445634624312 8.44930967388082976 -2.52747018197984019 4.94636358969045986 \N \N \N \N \N \N \N 0.833131700000000031 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.40857201999999998 46.1985016 0 0 3 false 0.0173857679999999994 \N \N -0.196941320000000003 6 5 69.4743100000000027 0 6 false 51 70.6748986910462946 1.43617643537261008 49.2104988 21.0652030000000003 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.918005960620007 -62.2168297679724986 23.4966634484164985 -12.5216597778124008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450617863693952 2505450617863693952 774803336 2015.5 26.354564259316799 0.704347420575762051 -2.51662672774360008 0.585004697524614037 1.53270338801404993 0.805954628542223994 1.90172410000000003 8.98827287111596007 1.45673067198025996 2.3989130853938998 1.53362190719485003 0.0220824800000000016 0.410799000000000025 -0.056000086999999997 0.0134543200000000005 -0.181902420000000009 -0.00813645399999999956 -0.233293670000000009 -0.0894883350000000022 -0.0635079900000000003 0.347491260000000024 153 0 152 1 0.968965599999999982 163.531006 0 0 31 false 0.0379192000000000001 1.49436598521543007 0.183688269801247001 0.0697028100000000039 18 9 1.52723380000000009 0 18 false 153 127.540606281625998 1.12345344226910004 113.525002 20.4242440000000016 12 43.7541551202590995 8.70885024399595942 5.02410200000000007 21.2488400000000013 17 194.754133690894008 8.98976246907298027 21.6639920000000004 19.0382040000000003 1.87005770000000004 0 2.21063609999999988 0.824596400000000007 1.38603969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.926836898604989 -62.2026717102574978 23.5102469339841988 -12.5152130400578994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462162735639040 2505462162735639040 203129004 2015.5 26.2255935314879984 0.458725449617410019 -2.4879616960512001 0.409017625161002985 2.49114305804476999 0.590467445288254011 4.21893359999999973 1.91628617415279989 0.907585627619263979 6.63670337849338043 0.690002288573609013 0.15885015999999999 0.377592739999999982 0.0113999189999999997 0.182598640000000007 -0.318014100000000022 0.16953762 0.231630379999999997 -0.00432214330000000018 0.0865501199999999943 0.303096299999999985 154 0 150 4 6.85425470000000026 294.774994 2.11516059099121012 6.75361865777121029 31 false 0.0951448399999999944 1.30007930980612008 0.118273575795476996 0.137902360000000002 18 10 0.841768559999999999 0 18 false 150 350.754660463913012 1.76848056990990998 198.337006 19.3258569999999992 14 93.3347314293096986 15.2043038307553999 6.13870499999999986 20.4262799999999984 16 536.664379356540053 12.7989632920528997 41.9303000000000026 17.9376619999999996 1.79612470000000002 0 2.48861700000000008 1.10042189999999995 1.38819500000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.651798565544993 -62.234123614466597 23.3981234499700008 -12.4414656326253006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462167030209664 2505462167030209664 1422650363 2015.5 26.2306434540757003 2.02020441992833 -2.48390658722229984 2.33190574762059022 \N \N \N \N \N \N \N 0.392423840000000024 \N \N \N \N \N \N \N \N \N 120 0 116 4 14.8170570000000001 508.635986 11.7151169606789995 33.7474176889122006 3 false 0.00545028829999999985 \N \N 0.281419580000000003 14 8 8.35233700000000034 0 14 false 119 112.744799954059999 1.61807032149137009 69.6785965 20.5581250000000004 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.657669624575988 -62.2282571438869994 23.4044500372248017 -12.4395344506051995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462162735640064 2505462162735640064 1006451312 2015.5 26.2311975723489006 1.90509570853228993 -2.48409767987102015 1.54858802374252003 \N \N \N \N \N \N \N 0.121080530000000006 \N \N \N \N \N \N \N \N \N 141 0 140 1 34.7132720000000035 1882.01001 12.1905789366307005 89.8438624772532961 3 false 0.00605442500000000043 \N \N 0.119787840000000007 17 10 3.48309500000000005 0 17 false 151 244.456972607234007 3.62706696531201001 67.3980026 19.7178600000000017 14 350.990546732009022 14.9519216369328998 23.4746109999999994 18.988150000000001 14 630.128394368021986 12.8537263184859007 49.0230140000000034 17.7633480000000006 4.01346250000000015 0 1.22480199999999995 -0.729709599999999958 1.95451160000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.658916689297001 -62.2281840460373985 23.4049062421014007 -12.4399146101001001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462128375901440 2505462128375901440 708992513 2015.5 26.2436806588397999 0.907325797391066002 -2.48573119205111981 1.14014869709399003 -0.688558473843046026 1.33131759418584994 -0.517200769999999976 6.54995262968771996 2.5871431917075598 -7.42154432014346011 3.45016869441690011 0.117819174999999998 0.284140700000000024 -0.0487990800000000016 -0.0328145800000000029 -0.531694200000000006 -0.301015440000000023 -0.496790600000000027 0.0458191339999999975 0.155790330000000005 0.738398099999999946 121 0 121 0 2.37384459999999997 155.233002 1.83446446183121004 0.661595878991039998 31 false 0.0257193539999999998 1.78397058239875994 0.292336282413031001 0.203480620000000001 15 9 3.58976050000000013 0 15 false 128 106.389554602431005 1.22097562380519009 87.134903 20.6211190000000002 11 73.3696211459192966 14.5011390587196995 5.05957650000000037 20.6875970000000002 13 95.3090417485741028 8.85722360962875044 10.7606000000000002 19.8140849999999986 1.58548139999999993 0 0.87351226999999998 0.0664787299999999998 0.807033540000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.68447435677399 -62.2241382639888982 23.4161833624367013 -12.4459919146051003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462132670874880 2505462132670874880 728003763 2015.5 26.2471717874380985 0.475774983143676999 -2.47965072145546017 0.42380603875884898 1.74516201377822999 0.629305179076819043 2.77315699999999987 5.44394838298156003 0.954662242676911021 12.0363316647587002 0.680989855411079037 0.114030875000000004 0.340457259999999984 0.00602565850000000031 0.19418495999999999 -0.393774960000000007 0.217074249999999996 0.283451200000000014 -0.0410524700000000006 0.0398636350000000014 0.292796549999999989 158 0 157 1 3.6840373999999998 224.839996 1.70721663053420003 2.98849452821791006 31 false 0.0867957300000000015 1.34504878387792992 0.118190651768220994 0.118246630000000005 18 10 0.878336499999999964 0 18 false 156 264.300065159754979 1.32812117258766005 199.003006 19.6331230000000012 15 70.6742751156635052 8.76888673884717917 8.05966399999999972 20.7282350000000015 15 337.896475191973025 7.54996739376086001 44.7546919999999986 18.4399599999999992 1.54585949999999994 0 2.28827479999999994 1.09511179999999997 1.19316289999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.685419376813002 -62.2171423193527033 23.4217831616032015 -12.4416060853874999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450446064856064 2505450446064856064 726858349 2015.5 26.2889325593007008 0.123864947790141997 -2.4873454073904302 0.109631476379398005 0.327367527928968005 0.148151716607029998 2.20967769999999986 4.08473749728694013 0.276327718094431019 -3.89947042121033016 0.209565792169114001 0.159388239999999987 0.216075259999999991 -0.129656099999999996 0.129490209999999994 -0.311118630000000007 0.131927099999999992 0.126349060000000013 0.0504165660000000029 0.0506196900000000019 0.296612350000000025 147 9 146 1 3.94356969999999984 217.242004 0.346821652899175992 1.69500142589320002 31 false 1.42413830000000008 1.59084686379474993 0.0354068043605614974 0.0720395999999999953 17 10 0.246103669999999997 0 17 false 140 1936.22661875268 4.01763162396571971 481.932007 17.4709760000000003 14 1080.08441363607994 24.4196151017045011 44.2301980000000015 17.7677440000000004 15 1334.60023134421999 11.0389346519789004 120.899370000000005 16.9485419999999998 1.24710849999999995 0 0.819202399999999997 0.296768199999999982 0.522434229999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.772970133590007 -62.2055726926798016 23.4586786128780993 -12.4640096302515992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449419567700736 2505449419567700736 1334059216 2015.5 26.326510541428199 0.251670092013565994 -2.50494057299862982 0.190120739822037005 -0.0162435293705661017 0.288209986785343986 -0.0563600500000000018 -0.65302806903134003 0.49236262000612302 -2.82768919264906016 0.359374018871364997 0.0678427199999999953 0.422445540000000008 -0.0430879070000000017 0.129243340000000012 -0.150402010000000003 0.126864179999999993 0.133934890000000001 -0.0218030479999999985 0.0748936000000000046 0.169419049999999988 177 0 174 3 2.06303899999999985 209.067001 0.297784652861641019 0.229754651296920992 31 false 0.288096960000000013 1.4970350441159701 0.057695228843374198 0.0423310660000000005 20 10 0.440405700000000011 0 20 false 172 497.814601916329991 1.52720174144576992 325.964996 18.9456960000000016 19 251.912453677575996 9.26641759523139008 27.1855280000000015 19.3482650000000014 17 362.645469245174979 10.4610968533994999 34.6661029999999997 18.3632139999999993 1.23451160000000004 0 0.985050199999999987 0.402568819999999994 0.582481400000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.861862786595992 -62.2046754682043996 23.4878920799601012 -12.4941001179998992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450897036460416 2505450897036460416 1576792592 2015.5 26.3304713455646002 0.0980027400239723012 -2.49563008578176992 0.0760693064047267969 0.976156108395016986 0.112817358146259997 8.6525344999999998 10.7331646323578003 0.186327429624503993 -31.0759096988989008 0.148822724195756012 0.185884250000000001 0.479367639999999984 -0.0507859849999999988 0.084919629999999996 0.0137333869999999997 0.056683685999999997 0.00474600769999999981 -0.00740836930000000025 0.0855367300000000053 0.192961999999999995 168 0 165 3 3.08029500000000001 220.841995 0.277719360554422978 1.57332153584567003 31 true 2.01605940000000006 1.54825084637474997 0.0228345475275581987 0.0521519699999999989 19 10 0.171680269999999996 0 20 false 170 2594.68149249814996 2.60471389599786995 996.14801 17.1531559999999992 19 1189.5862400533199 14.7775999415094006 80.4992799999999988 17.6628989999999995 19 2075.5529776704102 22.7032943503431994 91.4207839999999976 16.4690860000000008 1.25839699999999999 0 1.19381329999999997 0.509742739999999972 0.684070599999999973 \N \N 0 \N \N \N NOT_AVAILABLE 152.86059025361601 -62.1945764066573972 23.4951473686596017 -12.4868774922558998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505435808818230144 2505435808818230144 1563622919 2015.5 26.0603062453829004 1.77934058043751997 -2.62595136867513013 1.63599264916489995 1.33081218254514 2.40039838038138997 0.554413000000000045 32.0267490642153021 3.22155460757478007 -10.5092295553110997 4.16199220487463961 -0.407537670000000019 0.624485199999999963 0.170494000000000007 -0.0694175300000000051 -0.712247549999999952 -0.402034849999999999 -0.406545519999999994 0.276069019999999998 0.260876300000000005 0.399149450000000017 68 0 64 4 0.641700739999999992 65.5311966 2.13883435671134015 0.598857206901145966 31 false 0.0229788270000000003 1.86973901424317002 0.408567887802262997 -0.157068120000000006 8 7 4.08076900000000009 0 8 false 65 87.8873168727676983 1.13936375698778991 77.1371994 20.8285499999999999 3 84.6874287028986004 14.6633010629945009 5.7754683 20.531841 8 125.288398722631001 7.54828080088473996 16.5982699999999994 19.5171430000000008 2.38914820000000017 1 1.0146980000000001 -0.296709060000000024 1.31140710000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.463403445805994 -62.430730001856297 23.1890373331583994 -12.5095077296568 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424126505239040 2505424126505239040 521437208 2015.5 26.1092600827257009 0.107653984245682996 -2.62598921093203019 0.0846576504381540001 1.07547442687887007 0.136789274250569998 7.86227199999999993 13.2503903094906992 0.201943357660406997 -9.8503049288111697 0.158323192653808009 -0.0304615220000000013 0.510499950000000036 -0.100988224000000001 0.0756511099999999936 -0.369561729999999977 0.0355190449999999991 0.121527105999999996 0.0589246939999999997 0.0716192050000000052 0.238180499999999989 130 9 129 1 1.1883321 142.936996 0 0 31 false 2.90918350000000014 1.40754449654632996 0.0267811288068642989 0.0318502599999999983 15 10 0.177260119999999993 0 15 false 126 2735.33348813554994 3.48189062845233011 785.588989 17.095839999999999 14 926.41079647220397 17.0723033420457995 54.2639599999999973 17.9343800000000009 14 2720.65222944094012 12.3422489109058997 220.434079999999994 16.1752380000000002 1.33331569999999999 0 1.75914189999999993 0.838539099999999982 0.920602800000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.55830076071399 -62.4092576909716001 23.235641515142099 -12.5274393499084997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425535258264064 2505425535258264064 504336119 2015.5 26.1200359562140001 0.713652058216302954 -2.61709354136926997 0.609828606470492973 -0.281976907851938019 1.05167839718197009 -0.268120860000000016 3.88904357584709004 1.15681002624374996 2.30506683272461022 0.941132484986634044 -0.11269527 0.614708959999999971 0.0402793030000000024 0.15518193999999999 -0.530849339999999947 0.16685839999999999 0.235761179999999987 -0.0160478280000000001 0.0373673100000000008 0.354156079999999984 147 0 147 0 3.80941989999999997 215.475998 2.08347243585031983 2.73505348096137979 31 false 0.0550623280000000007 1.39367782281895991 0.158716475010677011 0.101835880000000004 17 10 1.10794830000000011 0 17 false 147 175.556711661316996 1.06092787629231 165.475006 20.0773219999999988 12 75.6632588679304945 19.7013090476322006 3.84051939999999981 20.6541749999999986 13 217.23381064201601 13.2815437383388009 16.3560659999999984 18.9196010000000001 1.66839000000000004 0 1.73457339999999993 0.576852800000000054 1.15772059999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.570703001530006 -62.3965297542674975 23.2492380436158008 -12.523099004514 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425569614353792 2505425569614353792 21600433 2015.5 26.1346291276534011 1.04985215510852004 -2.61717230024913006 1.26257780985426993 2.27469029781078014 1.6150304012718899 1.40845050000000005 2.37109055182641981 2.30379931323989018 3.30211670106320998 3.34688169235639998 -0.0789026899999999975 0.521575299999999964 0.133021040000000007 -0.0010023155000000001 -0.610481139999999978 -0.391275170000000005 -0.518427549999999959 0.217233229999999999 0.343431900000000012 0.65549636 105 0 104 1 -1.83324090000000006 74.8251038 0 0 31 false 0.0280099340000000002 1.60863795945421995 0.312186911920269983 0.102314464999999993 12 9 3.39086370000000015 0 12 false 106 99.9856889468891978 1.15338315086257004 86.689003 20.6885200000000005 8 77.3740948147942049 9.38506668641445074 8.24438400000000016 20.6298999999999992 10 88.7783617265629061 8.04400935690055974 11.036581 19.8911510000000007 1.66176239999999997 0 0.738748549999999948 -0.0586204530000000029 0.797368999999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.599015817263989 -62.390174825147902 23.2631067081181016 -12.5285054815861994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425397815661440 2505425397815661440 731759359 2015.5 26.1715910466928001 0.595523717031152033 -2.62067249832115001 0.584037540178387049 0.882924109816445979 0.951497213268221009 0.927931370000000033 1.12601102413678 1.04058228396439989 2.85188658720791999 0.997055493011265948 -0.161656190000000005 0.595557329999999996 0.0550792329999999983 0.0806639049999999941 -0.62518733999999998 0.141956169999999993 0.132289020000000007 -0.0768897699999999962 -0.0220936049999999988 0.468487649999999978 149 0 148 1 0.452029899999999984 150.091995 0.737287741772919003 0.345568531994222994 31 false 0.0709526600000000007 1.77979607301495002 0.16360698610909799 0.0952836400000000028 17 10 1.0915554999999999 0 17 false 149 181.051157281173005 1.47134908175705004 123.051003 20.0438630000000018 16 139.182122453771996 15.2710656691007998 9.11410700000000062 19.9924299999999988 15 142.841611100167 7.14604974635142032 19.9888919999999999 19.3747830000000008 1.55770199999999992 0 0.617647199999999952 -0.0514335630000000016 0.669080730000000012 \N \N 0 \N \N \N NOT_AVAILABLE 152.673820252473007 -62.3770147731462004 23.2969992155110006 -12.5452687036917006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424676261054848 2505424676261054848 1259864100 2015.5 26.1895021430593999 0.998076925620766997 -2.61484919637576985 1.21000494521260005 -0.720408719065207981 1.54044228505948011 -0.467663559999999978 -1.51867850311182995 2.47936294538689994 -5.15231715766157983 3.22206636520173006 0.00300936209999999984 0.446293700000000015 -0.121960349999999995 -0.0340467900000000004 -0.612218499999999999 -0.413151439999999981 -0.571310760000000029 0.263309540000000009 0.332795049999999981 0.722718799999999995 110 0 110 0 2.87486700000000006 151.561005 2.3031784833604898 1.33546627857810996 31 false 0.0289221009999999987 1.40839097898586996 0.307852009332658993 0.151172030000000013 13 9 3.42294600000000004 0 13 false 109 115.378367655337996 1.55944604233531003 73.9868011 20.5330539999999999 12 102.882059754427004 19.8179005089663995 5.19137049999999967 20.3205400000000012 12 126.110054935174006 18.4274105053594006 6.84361200000000025 19.5100459999999991 1.98470579999999996 0 0.810493470000000049 -0.212514879999999989 1.02300830000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.702872992283005 -62.3638801132111027 23.316241296456699 -12.5463920239360007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425054220345088 2505425054220345088 659307447 2015.5 26.1982188190666001 5.36047598466295039 -2.61532683609845984 1.80141403139517009 \N \N \N \N \N \N \N 0.48708990000000002 \N \N \N \N \N \N \N \N \N 79 0 78 1 1.59792219999999996 93.2727966 3.22330956325279994 1.47764105365281995 3 false 0.0182760790000000006 \N \N 0.191920900000000005 9 6 10.0378620000000005 0 9 false 79 83.2990953844576012 1.17131803101754994 71.1156998 20.8867650000000005 4 73.5509144413097999 26.358830470947801 2.79037099999999993 20.6849169999999987 7 150.051298134158003 14.5312013727343992 10.3261450000000004 19.3213210000000011 2.68432950000000003 0 1.36359600000000003 -0.201847080000000012 1.56544299999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.720162135100992 -62.3604554523004992 23.3243652724200992 -12.5500206226969002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425054218278400 2505425054218278400 1658716834 2015.5 26.2025909288114001 1.76408279730244999 -2.6158261787649999 2.53428981534495978 \N \N \N \N \N \N \N 0.348087199999999986 \N \N \N \N \N \N \N \N \N 75 0 73 2 0.970669299999999957 79.2192001 2.32581363245735995 0.933909621373001042 3 false 0.0236608960000000007 \N \N 0.276874330000000002 10 7 5.45638039999999958 0 10 false 73 94.3983896570862981 1.53033500116050991 61.6847992 20.7509540000000001 7 66.8821664409709058 12.6779665934011998 5.27546499999999963 20.7881129999999992 8 92.968284708694199 7.59317823909263989 12.2436589999999992 19.8410839999999986 1.69335999999999998 0 0.947029099999999957 0.0371589660000000016 0.909870150000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.729080444587993 -62.3589698487824009 23.328342863779099 -12.5520823641756003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437698605046784 2505437698605046784 590470102 2015.5 26.0688272634888989 13.1848647852729997 -2.5805126854183702 4.49359793977153998 \N \N \N \N \N \N \N 0.621455599999999997 \N \N \N \N \N \N \N \N \N 41 0 40 1 0.350031170000000003 37.3110008 0 0 3 false 0.0213191270000000002 \N \N 0.208391409999999999 5 4 12817.8680000000004 0 5 false 40 84.867069902066703 2.73887255373983018 30.9860992 20.8665179999999992 4 68.8215105916764998 21.3720736595650997 3.2201607000000001 20.7570779999999999 4 57.3200617337504994 11.0327683198363005 5.19543800000000022 20.3661540000000016 1.48634289999999991 0 0.390924449999999979 -0.109439850000000005 0.500364299999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.436853550595998 -62.3861663845807968 23.2141839465536002 -12.4703368730198996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439107353196672 2505439107353196672 1181973765 2015.5 26.1088935412719998 3.60004726546076981 -2.51364115743389993 8.26748729289008999 \N \N \N \N \N \N \N -0.909578800000000021 \N \N \N \N \N \N \N \N \N 75 0 74 1 7.384938 195.850998 2.80385054298458991 7.69787647921284002 3 false 0.0212406550000000006 \N \N 0.0667086000000000068 9 6 63.3590850000000003 0 9 false 73 86.8442381252106941 1.49774933092371998 57.9832001 20.8415129999999991 6 42.1264625483613031 8.89998476223230917 4.73331829999999965 21.2899999999999991 6 117.565074305739003 8.11964282391494052 14.4790945000000004 19.5862240000000014 1.83882710000000005 0 1.70377730000000005 0.448488239999999982 1.25528909999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.451117439948007 -62.3085125839998994 23.2773859411720991 -12.4227448578385999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505436221132552064 2505436221132552064 791919126 2015.5 26.0594979307679999 0.415181466034235003 -2.57705715548818004 0.332063774877499995 2.3424316783912702 0.556703812043306989 4.20767999999999986 32.017556328986899 0.736836642229889982 6.26200323673482995 0.567827355985768945 -0.0908482800000000035 0.557182850000000007 -0.0635725899999999983 0.10230765 -0.450577170000000027 0.0617798300000000009 0.184219689999999992 0.0583636100000000033 0.0646400200000000064 0.251702760000000025 129 0 129 0 3.31561569999999994 183.020996 1.10406630134874995 1.91351448251643008 31 false 0.169953149999999997 1.11522769948825995 0.105497016273465 0.0432983300000000029 15 10 0.672258499999999981 0 15 false 132 370.000890885077013 1.40400896842240996 263.532013 19.2678590000000014 13 82.4236015017848018 9.05025808439927992 9.10732100000000067 20.5612579999999987 13 509.738229599905992 14.5886550561424002 34.9407270000000025 17.9935510000000001 1.60043350000000006 0 2.56770699999999996 1.29339979999999999 1.27430730000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.415513439514001 -62.387148857398202 23.2065961970690999 -12.4637104012999007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505435950550276224 2505435950550276224 277037205 2015.5 26.0723584149159997 1.04519408767766997 -2.60392853692402015 1.06555631357767999 -0.26262530047678001 1.48655206346247004 -0.176667400000000002 -0.00914097764129168967 2.15812526861029985 -4.51391699639713995 2.86399854185795011 -0.107268429999999998 0.539484199999999969 0.115867904999999993 -0.0451889450000000012 -0.545030530000000013 -0.312141029999999986 -0.446192739999999977 0.093683530000000001 0.210015010000000002 0.57152780000000003 104 0 101 3 0.380867899999999981 100.684998 2.06283971807751021 1.72966892175836007 31 false 0.0306478779999999999 1.53677592669153995 0.30813748339279301 0.092982456000000005 12 9 2.87783960000000016 0 12 false 99 109.190493883122002 1.22047301753756998 89.4656982 20.5929029999999997 10 80.2162477236132929 15.7325528685626992 5.09874340000000004 20.5907330000000002 10 68.1505232826679048 9.38846327800739999 7.25896450000000026 20.1782469999999989 1.3587883999999999 0 0.412485119999999983 -0.00217056269999999982 0.414655700000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.465876833175997 -62.405657187035402 23.208769696886101 -12.4934193525895001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505435946254639488 2505435946254639488 708323947 2015.5 26.0885023410398986 0.0408758314717301979 -2.60439545746779988 0.0341442441432619967 0.630837862365499991 0.0517999243712869983 12.1783549999999998 -1.69635517625915 0.0758637055751009981 -1.52996538230923007 0.0757879606985207011 0.0389573240000000015 0.544523540000000028 -0.0134281664999999998 -0.00885365899999999983 -0.292412159999999977 -0.0246391580000000013 -0.0218671900000000016 -0.0103331010000000008 0.0295491439999999994 0.340818259999999984 141 0 141 0 -0.464951840000000005 127.834 0 8.61659632663008985e-16 31 false 20.6108800000000016 1.5987107297523 0.0119568461658079994 0.0736482100000000056 16 10 0.0840493439999999981 0 16 false 140 16745.9319766830013 8.67992435280297947 1929.27002 15.1285924999999999 15 8859.7141903749598 16.2371729517746992 545.643860000000018 15.4828390000000002 16 11453.1937358324994 16.6762163486977997 686.798099999999977 14.6146030000000007 1.21300549999999996 0 0.868235599999999996 0.354246139999999987 0.513989449999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.497591851820999 -62.3989906595561976 23.2239674997357994 -12.4997555582801994 100001 5787.29004 5544.20996 6306 0.598999977 0.344000012 0.744099975 0.262300014 0.1505 0.368999988 200111 1.28192290000000009 1.0797021 1.39679229999999999 1.66080460000000008 1.36265590000000003 1.95895339999999996 +1635721458409799680 Gaia DR2 2505437355003911680 2505437355003911680 1345291405 2015.5 26.0983403958108013 0.425778481605095016 -2.60669756845957012 0.369202678590396016 0.509792751335765959 0.621066202527888023 0.820834799999999976 5.0601454463229496 0.713715008727172973 -8.43042357125962027 0.585352334491712978 -0.118493415000000005 0.593247060000000048 0.0892102300000000015 0.120378494000000003 -0.51073959999999996 0.0516605200000000014 0.193360329999999997 0.0381070039999999999 0.0915462100000000029 0.275539599999999996 135 0 135 0 4.1103683000000002 207.268005 1.15233352129689992 2.25823561154071006 31 false 0.155017359999999993 1.30173959613557 0.0986175770266251028 0.0975957400000000003 16 10 0.667923399999999945 0 16 false 134 334.539994554860016 1.7260456306377101 193.819 19.3772449999999985 12 97.3017241987330976 8.62148065792673002 11.2859639999999999 20.3810859999999998 13 382.12884807847098 7.67422087900960026 49.7938299999999998 18.3063949999999984 1.4331039000000001 0 2.07469180000000009 1.00384139999999999 1.07085040000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.518827315919992 -62.3967365655348019 23.2324731469632013 -12.5054941568707996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437355003912448 2505437355003912448 1459384015 2015.5 26.0952686877287015 0.165158059925565009 -2.60386481166613981 0.133712884612861987 0.570518238528815003 0.221141081409948009 2.57988360000000005 7.70779121430034042 0.285285022415702028 -0.0631536804312558958 0.236084212923414 -0.063125920000000002 0.579038399999999953 0.0290623100000000009 0.0887658399999999986 -0.407775370000000026 0.0580665470000000031 0.186387300000000006 0.0181475279999999996 0.0617803450000000004 0.258031899999999981 141 0 138 3 0.697185999999999972 143.994003 0.253907906480166978 0.556061584083026972 31 false 1.01267499999999999 1.46686201035730002 0.0406365777706313991 0.0681096300000000043 16 10 0.265568379999999993 0 16 false 136 1204.1362888629601 1.98694505055486004 606.023987 17.9866770000000002 13 518.189980274021991 8.10260046330466999 63.9535399999999967 18.5651660000000014 14 994.007822228603004 9.10161354843964077 109.212265000000002 17.2684460000000009 1.25583610000000001 0 1.29672049999999994 0.578489299999999984 0.718231199999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.51019094528101 -62.395542116771999 23.2306097247301011 -12.5017350582513007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437458083131392 2505437458083131392 624425670 2015.5 26.0966842061553983 0.771845431262255022 -2.58630999263669015 0.933244966489409022 -1.53008966925455003 1.22113859005448 -1.25300250000000002 1.56326578253264992 1.71645163339441997 -1.76950382116404992 2.38670476748841009 -0.102523799999999998 0.563267900000000044 0.00925183800000000008 0.0694651450000000059 -0.626753329999999997 -0.357666729999999988 -0.520263249999999955 0.234881969999999995 0.323071449999999982 0.719973900000000055 120 0 117 3 -1.49687780000000004 90.4778976 0 0 31 false 0.0480110870000000009 1.82041639711291992 0.227222950256757011 0.169953910000000014 14 9 2.48264839999999998 0 14 false 119 128.506315632821014 1.12866180858035992 113.857002 20.416053999999999 10 82.1492144126200969 8.16556075716995977 10.0604499999999994 20.5648799999999987 9 132.479490168801988 26.4200870486155992 5.01434699999999989 19.456548999999999 1.67018019999999989 0 1.10833169999999992 0.148826600000000003 0.9595051 \N \N 0 \N \N \N NOT_AVAILABLE 152.496278737033009 -62.3791533382183019 23.238536609741999 -12.4859149290534006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437767320780672 2505437767320780672 696414151 2015.5 26.1117225671610989 0.328047814942724003 -2.56485925992768982 0.259485913234864973 0.928863430479295982 0.448652633273779022 2.07033999999999985 16.2339767694755004 0.589090081535609045 -3.82566018577024991 0.43114631672786502 -0.0415062500000000015 0.517005200000000054 0.0885843699999999956 0.144034390000000012 -0.460680699999999999 0.149601330000000005 0.177222450000000004 -0.0575167649999999975 0.0659858200000000006 0.301759999999999973 141 0 139 2 2.43863269999999988 177.214005 0.839655555802034992 1.67552168249543998 31 false 0.255203279999999977 1.54705104652866998 0.0782758032300785028 0.0538033139999999979 16 10 0.543584940000000016 0 16 false 137 487.932502339525001 1.52021658341433996 320.962006 18.9674660000000017 13 219.765778032975987 11.0274337078843008 19.9290050000000001 19.4964890000000004 14 407.148835362157001 9.79143508644784966 41.5821400000000025 18.2375369999999997 1.28483879999999995 0 1.25895120000000005 0.529022199999999998 0.72992900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.505039224916004 -62.3532821314312997 23.2608941060591015 -12.4714473875856005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438866832416512 2505438866832416512 1204077941 2015.5 26.0659041592336997 0.480346793648361026 -2.52724891234969995 0.374108606475539007 0.473757194141178006 0.666636459672179993 0.710667970000000038 -1.76101740002177998 0.769714364298035969 -11.7756193870185992 0.613248725360656999 -0.0497280500000000028 0.622313140000000042 0.0331203860000000017 0.174134719999999993 -0.426560400000000006 0.129717870000000013 0.1749917 0.0240283379999999998 0.105548760000000005 0.326450320000000016 149 0 147 2 3.0893063999999999 199.845001 1.4038639771436201 3.03225443736097011 31 false 0.123555429999999994 1.22023458593953005 0.107165427362151996 0.104020249999999995 17 10 0.726272640000000025 0 17 false 145 307.275409747046012 1.56438604016366001 196.419006 19.4695450000000001 15 74.6956259710408972 10.2914605984825993 7.25802000000000014 20.6681500000000007 16 390.68807956965901 8.49418257162047041 45.9947799999999987 18.2823449999999994 1.51454909999999998 0 2.38580509999999979 1.19860459999999991 1.1872005000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.380859128780003 -62.3395734522826004 23.2313596933847002 -12.4196984356727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438974207216256 2505438974207216256 610004069 2015.5 26.059691025667 0.17726388655028999 -2.51287630568406994 0.119292039602829997 1.6369580017099401 0.243208786228621993 6.7306695000000003 20.4395498017945982 0.246201009253646991 7.34741069089506027 0.214105553509944008 -0.206498860000000006 0.739515499999999992 -0.00745638370000000026 0.125178490000000003 -0.484970999999999985 0.06119169 -0.00165633550000000005 0.0304425730000000005 0.102421150000000002 0.370533080000000015 131 0 130 1 1.72475470000000008 153.535995 0.305888481841204984 1.13355138518545995 31 true 1.43969870000000011 1.36021694484849998 0.0428328345912089015 0.0753230700000000059 15 9 0.245356130000000006 0 16 false 128 1694.10647108651006 2.56827506552434981 659.627991 17.6160139999999998 13 542.463009417914009 14.9215471130574002 36.3543400000000005 18.5154630000000004 11 1760.94737610929997 24.2551242484230016 72.6010399999999976 16.6475539999999995 1.35966100000000001 0 1.86790849999999997 0.899448400000000037 0.968460100000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.355287579665998 -62.3293690637400033 23.2308292025800007 -12.4040513336851994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438901192155392 2505438901192155392 196874732 2015.5 26.0745069176929007 0.184686866040680991 -2.52327737491334991 0.128338510399368 0.912886916397555037 0.245223334337805993 3.72267560000000008 0.791962522068012986 0.273151019647730975 -2.86786787798956988 0.222232012087030001 0.0876461000000000046 0.682321900000000037 0.0229585190000000001 0.189649000000000012 -0.229113189999999994 0.129031630000000008 0.149464320000000012 0.0391392860000000023 0.13891690000000001 0.333377540000000028 140 0 139 1 0.523502000000000023 142.059998 0 0 31 false 1.04962120000000003 1.3557317150433299 0.040337664259118701 0.135346770000000005 16 9 0.263135699999999972 0 16 false 138 1197.50894794134001 2.38374301707986991 502.36499 17.9926679999999983 13 418.36779719483701 13.9301056340160994 30.0333539999999992 18.7974929999999993 12 1168.29103852224989 10.6987823090231995 109.198509999999999 17.0930420000000005 1.32496619999999998 0 1.70445059999999993 0.804824800000000007 0.899625800000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.393752063927991 -62.332238302814801 23.2410377496545983 -12.4191466662896008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439279149279744 2505439279149279744 1103963010 2015.5 26.0806747575366984 0.190430966099396998 -2.51238421809309997 0.144101068172337005 0.063290339801169701 0.252452320213299997 0.250702140000000018 4.31894743586716956 0.310290097732928982 -5.39646659437393961 0.254529567621068986 0.0589714530000000001 0.613677200000000034 0.00709181929999999974 0.157542139999999997 -0.296626659999999986 0.128309900000000005 0.139359769999999994 0.0143885469999999998 0.0972398200000000046 0.337140949999999995 145 0 142 3 0.912707500000000005 151.955002 0.466667439834538011 1.61286604238929998 31 false 0.806112599999999957 1.62605047972988004 0.0438021697775028973 0.120105035999999998 17 10 0.295804379999999978 0 17 false 142 1150.87903520163991 2.2412274933963201 513.504028 18.0357909999999997 15 682.517641124861029 8.38159557558437918 81.4305099999999982 18.2661039999999986 12 746.490592822083954 8.48915094766840994 87.9346599999999938 17.5793600000000012 1.24166679999999996 0 0.686744699999999986 0.230312349999999999 0.456432339999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.395400989285008 -62.3197465773351027 23.2509903549131991 -12.4112628918700008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439008566954752 2505439008566954752 1293469627 2015.5 26.1108393423128007 0.0419420554364300022 -2.53106351922800998 0.0353768831848125034 1.59150271171690005 0.0533272024269985032 29.8441070000000011 -24.5931060998976996 0.0805627894525312027 -23.8305370200189017 0.0783118233821526039 0.100461499999999995 0.510640560000000021 -0.0723874600000000007 0.0378141550000000021 -0.289203759999999976 0.0465073250000000021 -0.0593303700000000003 -0.0254339069999999987 0.000588620400000000013 0.439305219999999996 149 9 147 2 5.5987859999999996 257.799011 0.192915521107012988 5.59859018251775975 31 true 20.5236319999999992 1.52386016631848009 0.0122895876916655003 0.0869347159999999952 17 10 0.0872780159999999999 0 17 false 148 74190.130520982304 28.0685009882969005 2643.17993 13.5125010000000003 17 38023.8330461303995 65.3090582381458944 582.213750000000005 13.9012480000000007 16 51816.7822249918972 51.2967931094237031 1010.13689999999997 12.9757440000000006 1.21095109999999995 0 0.925503729999999969 0.388747220000000004 0.53675649999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.471341882220997 -62.3233122115292986 23.2727132126614009 -12.4396710184556998 100001 5457.66992 5396.33008 5922.18994 0.382699996 0.256900012 0.458099991 0.195299998 0.143900007 0.228100002 200111 1.21917439999999999 1.03541670000000008 1.24704539999999997 1.18810379999999993 1.10486510000000004 1.27134250000000004 +1635721458409799680 Gaia DR2 2505439107350588160 2505439107350588160 1253775965 2015.5 26.1013057988193005 4.46526241117896028 -2.51080311204517015 2.27708971351981004 \N \N \N \N \N \N \N -0.539043599999999956 \N \N \N \N \N \N \N \N \N 75 0 74 1 24.0454749999999997 908.534973 12.2642045337850991 61.719345253074799 3 false 0.00586575500000000027 \N \N -0.235939370000000009 9 7 14.1801309999999994 0 10 true 81 229.742713772689996 5.23720503289685002 43.8674011 19.7852609999999984 7 204.641702416475994 9.87603659456621941 20.7210350000000005 19.5739020000000004 8 499.20638655150799 18.4632283743007015 27.0378700000000016 18.0162200000000006 3.0636359999999998 0 1.55768200000000001 -0.211359020000000009 1.76904109999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.433779544759005 -62.3092887971994998 23.2712245904418005 -12.4173308446933 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439042926714240 2505439042926714240 1254111453 2015.5 26.1108686785315989 5.25237585718318023 -2.51735150245098005 3.12018234960595997 \N \N \N \N \N \N \N -0.240523979999999998 \N \N \N \N \N \N \N \N \N 84 0 83 1 31.0812680000000015 1461.67004 19.1262968494773986 105.843123887969995 3 false 0.00254820699999999982 \N \N -0.00373215900000000008 12 8 8.75114699999999957 0 12 true 102 152.461956327839005 2.28190903663431 66.8133011 20.2304609999999983 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.458437825164992 -62.3109800952602981 23.2778768927508999 -12.4269198353593993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437492443569536 2505437492443569536 45188466 2015.5 26.1319062516664005 0.787855547809933054 -2.58581383767880979 0.983547730986813029 1.02519369714695996 1.28791624321362996 0.796009599999999984 10.3300064648434997 1.75638360381945002 9.69695713626711964 2.49164610600469016 -0.123769774999999999 0.579524000000000039 0.0370408699999999966 0.0795623699999999934 -0.644736500000000046 -0.440520760000000011 -0.613020840000000011 0.280725800000000025 0.384669270000000008 0.737962659999999993 123 0 122 1 1.54538620000000004 141.509995 0 0 31 false 0.0465994600000000023 1.55753170131810004 0.230360971856962998 0.163463069999999988 14 9 2.61879300000000015 0 14 false 121 130.018724201345009 1.08397566718311 119.945999 20.4033499999999997 11 77.4429431351847057 8.13665779708360049 9.51778299999999966 20.628933 12 102.201392148935 8.98715711451743005 11.3719380000000001 19.7382770000000001 1.38168050000000009 0 0.890655500000000044 0.225582119999999997 0.665073400000000037 \N \N 0 \N \N \N NOT_AVAILABLE 152.563942145959004 -62.363224962534602 23.2722636857595013 -12.4983253875613993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486837322714752 2505486837322714752 725666364 2015.5 25.6209179962682008 0.276683084490528974 -2.48714730565537989 0.302246862625445978 1.31604270748124996 0.355256097809795002 3.70449019999999996 5.93587978103798974 0.555463219101922978 -8.30869742438489922 0.54491979015038805 0.113740809999999998 0.452612069999999977 0.124975294000000001 0.113178074000000004 -0.339815619999999985 0.278540369999999982 0.673190700000000031 -0.217297800000000013 -0.218584539999999994 0.307054969999999983 129 0 128 1 3.53833939999999991 186.380997 0.990999599664028952 3.50615230288198987 31 false 0.329657849999999975 1.32192797454185995 0.0701598481289192055 0.0471359900000000026 15 8 0.593246099999999998 0 17 false 130 648.413524529637016 2.48521009905442991 260.908997 18.6587350000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.47747381081399 -62.4953908369171032 22.8230120536318992 -12.2194850315718 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425676988469504 2505425676988469504 1271721605 2015.5 26.1480189859038994 0.150351890218476003 -2.60617293248707016 0.114778191224034001 0.569429988960367006 0.192264816720626008 2.96169610000000016 42.9050313158370997 0.293298116477960003 -30.1185132177342005 0.211604779660839987 -0.0334623199999999968 0.447655560000000008 0.130486039999999998 0.0585943869999999978 -0.37626480000000001 0.059266395999999999 0.139477770000000001 -0.087781449999999997 0.0659205100000000016 0.20369836999999999 146 0 139 7 5.38593770000000038 241.934998 0.676270121761430976 9.8293574619246904 31 false 1.14824740000000003 1.4904467658231999 0.035030218577405299 0.0236713630000000008 17 10 0.265708420000000001 0 17 false 134 2512.90221610648996 3.6793740030824198 682.969971 17.1879269999999984 11 1161.49522736857011 14.1627006743528998 82.0108599999999939 17.6888450000000006 11 1992.39118650602995 14.0305192927126008 142.004089999999991 16.5134830000000008 1.25507719999999989 0 1.17536160000000001 0.500917429999999997 0.674444200000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.614446173967991 -62.3744034580070021 23.2799807887059984 -12.5231612737548996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426153729810304 2505426153729810304 103362132 2015.5 26.1567616176335989 0.295010015308239004 -2.58052292423205021 0.241499231223270994 4.13115494895218038 0.426233763678783018 9.69222800000000007 -44.863455623840899 0.502285700765040977 -26.8755693332404988 0.399235893939027975 -0.123986479999999996 0.581652460000000038 0.00176402869999999997 0.128185419999999994 -0.525543450000000023 0.117655574999999998 0.120704569999999997 -0.00760837969999999999 0.0632082749999999943 0.339905230000000003 157 0 156 1 2.34482880000000016 194.733002 0 0.0171275005556539017 31 false 0.294829300000000016 1.14735924555213997 0.0702995732182488953 0.0656445199999999979 18 10 0.472820640000000014 0 18 false 155 460.482345593502998 1.54088834459592006 298.84201 19.0303329999999988 15 68.2576727765933953 8.11011092991011928 8.41636800000000029 20.7660100000000014 15 670.837484967792989 8.58369882809335927 78.1525000000000034 17.6953770000000006 1.60504559999999996 0 3.07063299999999995 1.7356777000000001 1.33495520000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.606951791887013 -62.347531297352603 23.2979166659553982 -12.5024826618328007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437904759735040 2505437904759735040 37615540 2015.5 26.1441001133686015 0.263248689961806004 -2.56187383364648991 0.187470338896635003 0.232358472512245007 0.376846436187870004 0.616586599999999985 7.34084592376112965 0.36096171305055802 -10.0943124953339005 0.295035450038887981 -0.255266280000000012 0.733850659999999988 0.0356765350000000023 0.171778929999999996 -0.551802339999999947 0.0952106399999999992 0.0901329200000000053 0.0418840700000000024 0.122889609999999996 0.33945763000000001 138 0 137 1 0.541281340000000055 140.296005 0.249925468452179 0.304674130488545025 31 false 0.600065599999999977 1.65579712600555995 0.0546231001138407987 0.0579350299999999985 16 9 0.368477019999999988 0 16 false 136 776.926382497818963 2.09560159073381014 370.740997 18.462416000000001 15 405.121946510580983 16.4102566161826005 24.6871189999999991 18.8324239999999996 16 561.558099284824948 9.60926239653672987 58.4392500000000013 17.8884329999999991 1.24423639999999991 0 0.94399069999999996 0.370008469999999978 0.573982239999999977 \N \N 0 \N \N \N NOT_AVAILABLE 152.564784489737008 -62.3363667907623977 23.2928443731064014 -12.4804995971334005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437909054810496 2505437909054810496 798004015 2015.5 26.1482540642274017 6.86916834597975967 -2.56025413725445006 2.73329613979628006 \N \N \N \N \N \N \N -0.313838420000000007 \N \N \N \N \N \N \N \N \N 63 0 62 1 31.6634180000000001 1498.02002 14.5356578950758006 106.602711417590001 3 false 0.00432918170000000033 \N \N -0.0957696999999999993 9 5 10.8983120000000007 0 9 false 77 246.970602472136989 4.96279629634940989 49.7644005 19.7067529999999991 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.571271405147996 -62.3330846158314031 23.2974068659849003 -12.4805097493473003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437939120072832 2505437939120072832 71393352 2015.5 26.1552477782961006 0.534553391893645036 -2.56248360825872989 0.458899121413345989 -0.612560669702250982 0.800136137521157975 -0.76557059999999999 8.98510914208550027 0.911880548252624989 -9.21254522918468055 0.717684740857326031 -0.154058190000000012 0.573283899999999957 0.0274941000000000005 0.133500200000000013 -0.578062799999999988 0.152591239999999989 0.161793720000000002 -0.0404839329999999997 0.0370228069999999979 0.346476879999999987 157 0 157 0 0.746083799999999964 164.679001 0 0 31 false 0.0877119999999999983 1.44499193918509006 0.125245129627471002 0.0612156240000000032 18 10 0.860935099999999953 0 18 false 156 205.08315506321 1.14855647087879009 178.557007 19.9085399999999986 15 116.893961538192997 6.83313181065529029 17.1069369999999985 20.181908 14 186.438415804413012 10.7985646119749994 17.26511 19.0855800000000002 1.4790702 0 1.09632679999999993 0.273366930000000008 0.822959899999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.586894082438988 -62.3320070256875027 23.3032320192763009 -12.4851398451869002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425878855674624 2505425878855674624 1161598438 2015.5 26.1845577975369004 0.835961349015580946 -2.5969943940577398 1.00381971143695004 1.65272061869528009 1.34053273225976999 1.23288350000000002 3.05503960345374992 2.03857042279951006 2.51100356299162009 2.63469614751817005 -0.10344602 0.499600619999999995 0.039291468000000003 0.0898218999999999962 -0.641065299999999949 -0.307532430000000023 -0.514093600000000039 0.131051610000000013 0.263995800000000003 0.73538709999999996 112 0 110 2 0.782627399999999973 116.041 0.315963432892200025 0.0312275531910831995 31 false 0.0420536469999999996 1.41384752355488996 0.275060572948698012 0.0994028750000000016 13 9 2.7920910000000001 0 13 false 110 124.139845126973995 1.38914251674174993 89.3644028 20.4535879999999999 8 45.0202653791686984 16.9707180291734012 2.65282030000000013 21.2178690000000003 10 202.500874210672009 13.0406576731152004 15.5284250000000004 18.9958530000000003 1.99388959999999993 0 2.22201540000000008 0.764280300000000024 1.45773510000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.676307687034011 -62.3500498033141994 23.3182202389746998 -12.5279676296649995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425810136898688 2505425810136898688 1340310355 2015.5 26.1931811883906001 1.0261058123873501 -2.60232537947605991 1.20633869351528 3.99893798336952022 1.65866259083733003 2.41094110000000006 2.51850602757316988 2.37378059526687002 -5.19087623541348009 3.05150208766431996 -0.141938449999999994 0.551650700000000049 -0.0852241100000000057 0.0649954499999999963 -0.665017659999999955 -0.369510100000000008 -0.550389099999999964 0.248592530000000006 0.33074945 0.734298169999999972 112 0 111 1 0.143704009999999993 107.431999 0 0 31 false 0.0320177859999999995 1.04260372615346997 0.306929575376424013 0.116923219999999994 13 9 3.26925599999999994 0 13 false 113 104.219004391303002 1.1472359276236499 90.8435974 20.6434999999999995 6 62.6690162941166022 14.5512672384272008 4.30677369999999993 20.8587549999999986 10 159.459900819446005 10.7025470587265001 14.899248 19.2552909999999997 2.13136670000000006 0 1.60346410000000006 0.215255740000000001 1.3882083999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.698037186665005 -62.3510224452775006 23.3244370216476007 -12.5360793847797005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425913216113920 2505425913216113920 700251424 2015.5 26.1876328652125991 0.53525788803254204 -2.58989579133764991 0.437975792896801996 2.57211302639628991 0.744122097274303007 3.45657399999999981 47.6638614772531994 0.903490311358188025 -6.4949785770866999 0.695985667734081992 -0.0411643999999999968 0.570880700000000019 0.0190391690000000016 0.179809990000000003 -0.45434424000000001 0.165561719999999996 0.221765610000000002 0.00401398799999999958 0.076938935 0.323167529999999981 147 0 147 0 8.02578450000000032 323.584015 1.95112613261024004 5.53881637970630969 31 false 0.0928959200000000068 1.33714655840068009 0.123688397787426005 0.0940004799999999974 17 10 0.845321199999999995 0 17 false 146 291.978854509894973 1.59249994592886002 183.345993 19.5249880000000005 5 92.6522504465499992 20.1513786289819983 4.59781200000000023 20.4342480000000002 5 439.339244767281002 22.2822263800804983 19.7170260000000006 18.1549200000000006 1.8220206000000001 0 2.27932740000000011 0.909259799999999951 1.37006760000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.675484615585987 -62.3423244613201035 23.3238080459421013 -12.5224838560547003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425913211640704 2505425913211640704 170312281 2015.5 26.1878939124978984 0.165188979304056988 -2.58932770897306996 0.13257927265317801 0.798522714757362029 0.220411899929475991 3.62286570000000019 9.25669507435065952 0.285705882370967001 2.4230518848122502 0.229525050712073991 0.000710335269999999987 0.559651849999999951 -0.00162061840000000002 0.153594360000000013 -0.389741630000000006 0.131867000000000012 0.149101399999999995 0.0124035199999999995 0.0853536049999999991 0.329761240000000011 148 0 148 0 1.80516760000000009 174.988007 0.418105814710022006 1.52339962707643006 31 false 0.955793739999999947 1.45879942318633993 0.0396709330719774989 0.0886789399999999978 17 10 0.270442130000000003 0 17 false 147 1293.53729772623001 2.32949721819217004 555.286011 17.9089179999999999 13 510.239009502580984 11.0787804222238009 46.0555230000000009 18.5819550000000007 13 1228.68866093050997 20.6765641225106016 59.4242169999999987 17.0383150000000008 1.34431970000000001 0 1.54364009999999996 0.673036599999999985 0.870603560000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.675447643870996 -62.341699617650697 23.3242694610510988 -12.5220504636701992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426153729811712 2505426153729811712 1261169420 2015.5 26.1608918375086006 0.312639175628865007 -2.57114405774943 0.228997153788392999 1.06119828215318002 0.459303996311387019 2.31044859999999996 -6.90149239158206029 0.448219381635860004 -16.0586923729376991 0.353084558126064985 -0.309503169999999994 0.712787500000000018 0.00924433499999999936 0.133385300000000012 -0.612046360000000012 0.0979456159999999992 0.0845005100000000009 0.00771148600000000004 0.0817183699999999985 0.331180499999999989 146 0 146 0 2.73707130000000021 191.320007 0.456920140009493991 0.718278618990683015 31 false 0.38744076999999999 1.47476273478501008 0.0650622481269391012 0.0238638600000000006 17 9 0.440090539999999975 0 17 false 144 588.552826543399988 1.86002782823700996 316.421997 18.7639029999999991 16 208.960556244863994 12.4708007507108007 16.755984999999999 19.5512279999999983 17 606.721722416398961 10.6162208282321995 57.1504440000000002 17.8044450000000012 1.38591170000000008 0 1.74678230000000001 0.787324899999999994 0.959457400000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.606017796694005 -62.3372941378594021 23.3053632609585009 -12.4952623529761997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426188091666176 2505426188091666176 728754078 2015.5 26.1691971731594997 8.00955018413596953 -2.56912214217908019 4.52291067380159983 \N \N \N \N \N \N \N 0.717777670000000034 \N \N \N \N \N \N \N \N \N 46 0 46 0 0.730947000000000013 47.2449989 0 0 3 false 0.0158596150000000005 \N \N 0.00753689979999999995 6 6 52.0668300000000031 0 6 false 47 67.573832228474501 1.47858819354530002 45.7015991 21.1139200000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.62013357891999 -62.331819450078001 23.314030281774901 -12.4964144963003996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426188089550592 2505426188089550592 1469345459 2015.5 26.1610422993913012 0.73556722670527297 -2.56466033971720986 0.603780997242721051 1.68740795543172006 1.06876828926934997 1.57883419999999997 2.75080064524812995 1.25049108540522003 -1.77873572981153005 0.943585551183514948 -0.172256569999999998 0.564293860000000036 -0.0308586960000000014 0.144955869999999987 -0.561519560000000029 0.141282920000000006 0.132480929999999997 -0.00871053500000000015 0.0644232700000000047 0.304519560000000022 149 0 147 2 2.860954 195.050995 2.09544412160480986 2.4411630144616101 31 false 0.0498459040000000034 1.19594671432460009 0.165438571833775999 0.0342522450000000006 17 10 1.15435540000000003 0 17 false 147 169.595771978631007 1.44158395259558003 117.644997 20.1148279999999993 14 51.7655796078478971 7.70828086981522986 6.71558049999999973 21.0662860000000016 15 204.105592108731003 7.18047431856815965 28.4250849999999993 18.9872820000000004 1.50871189999999999 0 2.07900429999999981 0.951458000000000026 1.12754629999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.600150062713993 -62.3314086861076007 23.3079350511717998 -12.4892826743779999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426188089550720 2505426188089550720 1075923675 2015.5 26.1763402730191004 0.132953963829514993 -2.56469484892240995 0.106749550676503005 1.28644337368360007 0.180459225719090011 7.12872030000000034 3.11940081147281001 0.236548294808906989 -10.8955618257860998 0.194290393646705001 -0.0522441270000000013 0.545827700000000027 -0.0262869199999999983 0.108263395999999998 -0.435377499999999973 0.0845124800000000009 0.0577167999999999987 0.00698708649999999973 0.0757805000000000006 0.333132949999999983 158 0 156 2 1.94412640000000003 186.598999 0.255122627662288992 0.795880161311989021 31 false 1.38252749999999991 1.42547615825132001 0.0326897780896142978 0.0697357499999999991 18 10 0.22508009000000001 0 18 false 154 1622.90173364590009 2.32214547152696982 698.880005 17.6626359999999991 14 560.74241884624405 18.3798795324631001 30.5084930000000014 18.4794790000000013 13 1634.19258581443 7.78047131117321999 210.03773000000001 16.7286619999999999 1.3524756 0 1.7508163000000001 0.816843030000000025 0.933973300000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.629715139344995 -62.3246974852326971 23.3224913358599011 -12.4949030677598998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426020585852416 2505426020585852416 365212329 2015.5 26.1989602839779998 0.0788535910246526001 -2.57814792283916994 0.0646013768389173959 0.55100258323567497 0.102307186518543994 5.38576600000000028 14.9161309068151997 0.141720481631372991 -7.70908402531547043 0.125332392664523007 0.0482563449999999991 0.541503549999999945 -0.0178285320000000011 0.104013999999999995 -0.334084119999999984 0.084759710000000002 0.0319370799999999996 0.00228251139999999979 0.0688472499999999987 0.371947399999999984 149 0 148 1 1.85778819999999989 176.007996 0.133054898816388989 0.559869790621848051 31 true 4.24133099999999974 1.56158174673683003 0.0204950528142039991 0.0941441360000000033 17 10 0.14208788 0 17 false 145 4207.50726291398041 3.4587438603349101 1216.47998 16.628304 16 2092.55322793138021 10.0649833643561006 207.904300000000006 17.0496960000000009 16 3062.63318047846997 13.0804384608702993 234.138409999999993 16.0466820000000006 1.22523530000000003 0 1.00301360000000006 0.421392439999999979 0.581621170000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.686160525987987 -62.3267844785118967 23.3389968861119002 -12.5156867171340007 100001 5338 5229.77979 5479.33008 0.153200001 0.0414999984 0.335999995 0.0909999982 0.0265999995 0.185499996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426016290856320 2505426016290856320 1210793232 2015.5 26.2028461540279984 0.378293158794599016 -2.58225716926986015 0.312909631399604982 0.407245663617465004 0.525576046356181048 0.774855850000000013 3.22292824778560982 0.640577188006970055 -6.68839292890261028 0.503401137886520966 -0.0436836999999999989 0.570550739999999945 0.029200799999999999 0.169397789999999993 -0.454470280000000004 0.155129610000000001 0.215265349999999994 0.00168132630000000002 0.073511610000000005 0.322297039999999979 149 0 148 1 2.88364960000000004 196.695007 1.14905815241918008 2.58394716344708009 31 false 0.181926549999999992 1.44658354695488001 0.0884646428248913042 0.0901817159999999951 17 10 0.601698040000000045 0 17 false 147 405.471550551214989 1.4382606823478199 281.917999 19.1684650000000012 17 135.035043483752986 9.46776476983844084 14.2626100000000005 20.0252720000000011 16 477.816591661775988 13.7079960417711 34.8567800000000005 18.0637660000000011 1.51145409999999991 0 1.96150589999999991 0.85680769999999995 1.10469820000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.697570408626007 -62.3287534852429985 23.3411591571884003 -12.5209307166818995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426222449288704 2505426222449288704 1508658812 2015.5 26.1921014631105997 0.820449636072089983 -2.56945758306012006 0.990849451071499021 -0.735133994140391045 1.3029085165055001 -0.564225300000000041 2.86205846810491016 1.87946721999783994 3.12447011367330996 2.58380108005321008 -0.105983525999999995 0.550657900000000033 0.0284382679999999992 0.0828391500000000003 -0.617322099999999985 -0.324466900000000003 -0.521086750000000043 0.155223639999999996 0.269183459999999986 0.732026999999999983 123 0 123 0 -1.43236300000000005 96.7499008 0 0 31 false 0.0400141140000000034 1.82809382797587006 0.247507638080338987 0.157137840000000001 14 9 2.6907321999999998 0 14 false 123 122.03205055043 1.11811065822008993 109.140999 20.4721809999999991 11 158.243670492662005 38.6812377889879002 4.09096700000000002 19.8530729999999984 10 92.9220090703203994 12.1830146968269002 7.62717699999999965 19.8416229999999985 2.05819440000000009 0 0.0114498140000000009 -0.619108199999999997 0.630557999999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.664657700042994 -62.3220174846525978 23.3357187151886016 -12.5050929260613994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438179641446912 2505438179641446912 929306633 2015.5 26.1184610600904996 1.43391998593943004 -2.5474653628325501 0.971192767902795961 -1.84768967595622002 1.75643484755219004 -1.05195459999999996 10.0163178191995001 2.4300736096998401 -43.6248372234208972 1.50981300032098997 -0.285126180000000007 0.570730700000000035 -0.415078759999999991 0.198431909999999989 -0.565704169999999951 0.237337199999999998 0.0506994050000000029 0.0387124900000000022 0.117663229999999994 0.271662400000000026 86 0 85 1 1.94893319999999992 106.462997 1.44879169883948 0.541670296948832952 31 false 0.0370926859999999997 1.6877901672611999 0.277779367536704014 0.0544274999999999967 11 9 2.29682610000000009 0 11 false 89 119.930849350711 1.79454375876772998 66.8308029 20.4910400000000017 5 53.8851031755944021 27.882790369218899 1.9325578000000001 21.0227170000000001 7 120.858625037132995 12.4129767113834006 9.73647399999999941 19.5562269999999998 1.45703730000000009 0 1.46648979999999995 0.53167724999999999 0.934812549999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.501589969874004 -62.3346998446540965 23.273826709520101 -12.4577213583980004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437904759735424 2505437904759735424 1510056972 2015.5 26.1450566726007985 2.30698240909589991 -2.5591737204136602 1.87664457476908009 \N \N \N \N \N \N \N -0.434810580000000002 \N \N \N \N \N \N \N \N \N 75 0 74 1 0.56040460000000003 75.0873032 0 0 3 false 0.0248950889999999987 \N \N 0.213267249999999992 9 6 6.07468749999999957 0 9 false 75 89.4251915654525931 1.42349820026210994 62.8207016 20.8097150000000006 7 85.085133645144893 11.1806269753794005 7.6100500000000002 20.5267540000000004 8 71.4991486336084989 11.6169328943382997 6.15473560000000042 20.1261669999999988 1.75100860000000003 0 0.400587079999999984 -0.282960900000000015 0.683548000000000044 \N \N 0 \N \N \N NOT_AVAILABLE 152.564070635452993 -62.333521806447699 23.2947666777515998 -12.4783360159721006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437909055327488 2505437909055327488 316552068 2015.5 26.1487137508262997 0.029463084233639001 -2.55944917331343014 0.024792830452005199 0.810005225387445016 0.0372550637346742014 21.7421509999999998 -5.75856479364843032 0.0543308824211126973 -2.53646256986532981 0.0560405619940100991 0.11351936 0.556762929999999989 -0.0840994099999999994 0.0109501689999999992 -0.255137469999999977 -0.0470155179999999992 -0.202434730000000007 0.0182495620000000004 0.0573645159999999973 0.459420229999999985 148 0 148 0 -0.691800700000000046 130.987 0 0 31 true 59.8226239999999976 1.62980908710144989 0.0082686662317917603 0.094504249999999998 17 10 0.0677258599999999988 0 17 false 148 46866.0449604637033 18.1818409102518004 2577.62988 14.0112199999999998 17 26799.7179169062983 40.5455079275317019 660.978700000000003 14.2810629999999996 17 29774.7645691582002 54.9554137677422005 541.798599999999965 13.577299 1.20715299999999992 0 0.703763959999999966 0.269843100000000002 0.433920860000000019 \N \N 0 \N \N \N NOT_AVAILABLE 152.571395474132004 -62.3321596627023027 23.2981461330469983 -12.4799284887672997 100001 6363.5 6202 8050.39014 0.433699995 0.199399993 0.620800018 0.179000005 0.0728999972 0.278499991 200111 1.36838560000000009 0.855001899999999981 1.4405789 2.76627849999999986 2.47206230000000016 3.06049470000000001 +1635721458409799680 Gaia DR2 2505438282716864128 2505438282716864128 1334964529 2015.5 26.1246487754096002 0.211069835012114987 -2.52740286254234015 0.172561708996714996 1.07194584576169993 0.283753956462055978 3.77773000000000003 2.69620684519167986 0.347865335487740013 1.61955426467734998 0.287143197159974994 0.0557535399999999973 0.588789400000000018 0.0441918970000000008 0.208314050000000001 -0.360248679999999988 0.16185157 0.181833450000000008 0.0339461799999999994 0.123717339999999995 0.366693649999999982 140 0 139 1 0.532151999999999958 142.207001 0 0 31 false 0.645586549999999981 1.53492782842638009 0.0499846488693503968 0.130367680000000014 16 10 0.337473929999999978 0 16 false 138 812.834785560591968 1.97485252681493995 411.592987 18.4133600000000008 12 321.535493861448003 12.1927461312006997 26.3710479999999983 19.083317000000001 10 750.751908182209036 8.47184723923338012 88.6172600000000017 17.5731800000000007 1.3191948 0 1.51013759999999997 0.669956200000000002 0.840181350000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.494556930670996 -62.3139622949171965 23.287233124800899 -12.4413098482391007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438213997386240 2505438213997386240 1178753492 2015.5 26.1325084857002992 0.82248788547667695 -2.5317749910582501 1.23776598478143995 1.26548219385833005 1.51341378905500989 0.836177229999999994 -0.877669831783388976 2.08090702588305998 -5.96347650414780972 3.09376976141148008 -0.167012259999999996 0.555595199999999956 0.0886367859999999952 0.146035479999999995 -0.733585400000000054 -0.57506584999999999 -0.737866640000000018 0.426075099999999984 0.540207899999999963 0.804433759999999998 116 0 116 0 1.43754460000000006 133.072006 0.535680093427090998 0.0952731938819231933 31 false 0.0448882729999999994 1.60122382487824999 0.240803236926903003 0.208211809999999997 14 9 3.32454630000000018 0 14 false 115 127.713942671574998 1.07152307966004989 119.189003 20.4227699999999999 12 77.959865116591601 10.2287367887672005 7.62165099999999995 20.6217100000000002 12 90.8545257142684051 9.79938572074209979 9.27145100000000078 19.8660530000000008 1.32181639999999989 0 0.755657200000000029 0.198940279999999997 0.556716899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.513872995755008 -62.3144369860479017 23.2930796165087983 -12.4482507509318001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317076602112 2505438317076602112 879431695 2015.5 26.1423087122087985 0.509235330023843025 -2.52799265370821002 0.414047727584338998 0.0746277046818479006 0.719547511839435994 0.103714769999999998 5.32441697106103984 0.860336611289644004 -3.99016233685529986 0.664001997842073033 -0.0971031339999999937 0.578019139999999987 -0.0379192569999999979 0.163896619999999993 -0.501377300000000026 0.144868959999999991 0.161426619999999993 0.0206652130000000017 0.0775299899999999931 0.334428039999999982 146 0 141 5 2.18745499999999993 174.572006 0.660935807732451974 0.443881112588471016 31 false 0.110205830000000005 1.50110263704900992 0.114506836030039999 0.0906710700000000064 17 10 0.804241659999999969 0 17 false 141 248.985351083792011 1.5099690942044699 164.893997 19.6979310000000005 14 122.510085696760996 6.43006388886291003 19.052702 20.1309590000000007 15 215.374111131483005 8.64943193543413003 24.9003769999999989 18.9289360000000002 1.35704449999999999 0 1.20202260000000005 0.43302727000000002 0.768995300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 152.529214164828005 -62.3067334241040029 23.3038280032167009 -12.4483108272515999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317076813952 2505438317076813952 82582226 2015.5 26.1433047817270996 1.11839970662528998 -2.52372512974327012 1.23778301792453993 2.14183009204475017 1.48785144220387 1.43954559999999998 2.59827578050740993 2.75392941432675009 0.00817887666748053077 3.63477219138749019 0.0959768740000000037 0.33521129999999999 -0.211007899999999998 -0.113863389999999995 -0.478167559999999991 -0.300577299999999992 -0.450467740000000005 0.17060903999999999 0.194512500000000005 0.604075999999999946 108 0 107 1 0.704462400000000044 111.685997 1.69335432423060994 0.904354945077822991 31 false 0.0199129939999999998 1.52261542551605 0.359862021185683001 0.160309800000000002 13 9 3.67585419999999985 0 13 false 107 88.309825801687694 0.966578771136825998 91.3632965 20.8233430000000013 9 51.2440595768288034 13.1231923867799001 3.90484710000000002 21.0772799999999982 9 63.4060314699487009 4.3682136899211903 14.5153230000000004 20.2565939999999998 1.29827110000000001 0 0.820686339999999959 0.253936769999999978 0.566749599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 152.527096968277988 -62.3024633292989023 23.3063745761388006 -12.4447027530311995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438110918170880 2505438110918170880 642048980 2015.5 26.1538690863530014 0.442121293503644985 -2.53270914491417987 0.378668273846714976 2.32891326462560988 0.577228827561171998 4.03464460000000003 -4.1818333507051797 0.91192235797030996 -0.959054477171029984 0.704927653664745968 0.0497065520000000011 0.365304530000000016 -0.179761499999999991 0.109132654999999995 -0.425152570000000007 0.0817143099999999983 0.0334185999999999997 0.082353844999999995 0.0847053299999999953 0.349805399999999989 139 0 137 2 2.33840270000000006 172.957001 1.05805642806362998 1.2086468875254599 31 false 0.120172280000000006 1.16662304448900001 0.117885107857910995 0.114066799999999996 16 10 0.855155600000000016 0 16 false 137 283.905290763740027 1.51403012325959008 187.516006 19.5554309999999987 15 69.1911628038155015 8.03530303035542026 8.61089600000000033 20.7512599999999985 13 387.799676106445986 8.27357483311505959 46.8720799999999969 18.2904009999999992 1.60965939999999996 0 2.46085930000000008 1.19582940000000004 1.26502990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.555994809427006 -62.3058847801039022 23.3130700079796007 -12.4569238377772997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317080445952 2505438317080445952 1186196322 2015.5 26.1519892520723012 3.57680820275965994 -2.52824998249605004 2.83263011092441008 \N \N \N \N \N \N \N 0.61532180000000003 \N \N \N \N \N \N \N \N \N 39 0 39 0 -0.0925474000000000019 32.5900993 0 0 3 false 0.017994454 \N \N 0.0529143600000000006 5 5 20.8566719999999997 0 6 false 43 75.5025946782444066 2.46225210813623985 30.6639996 20.993462000000001 4 50.3668883858304 18.5633431120567991 2.71324439999999978 21.0960250000000009 4 60.2898864883245977 14.3538671404688003 4.20025400000000015 20.3113080000000004 1.46560230000000002 0 0.784717560000000036 0.102563860000000007 0.682153699999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.548142531704002 -62.3027080174240027 23.3129497565592985 -12.4520867694320003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438420155819904 2505438420155819904 233733520 2015.5 26.1436297088131013 0.430188479323419026 -2.51498102442673988 0.373374106548210016 1.13359119273486009 0.605812904231631033 1.87119020000000003 6.40966177129546999 0.741665090595848953 -7.94116600592402033 0.596374282937068956 0.180187719999999996 0.523558900000000049 0.0488706299999999982 0.220694069999999992 -0.298599720000000013 0.124894119999999997 0.1696376 0.0624552560000000007 0.180396620000000008 0.352246339999999991 139 0 138 1 2.49277829999999989 177.130997 1.02780183104395006 1.48696660081758991 31 false 0.139238980000000012 1.57010696023903007 0.103980174836113007 0.234868259999999995 16 8 0.710565450000000043 0 16 false 134 310.751799983537978 1.21166320989868992 256.46701 19.4573299999999989 12 100.265891270094997 12.6802856880196995 7.90722660000000044 20.3485049999999994 13 332.655295624606993 9.50855301448092938 34.9848479999999995 18.4569340000000004 1.39314139999999997 0 1.89157099999999989 0.891174299999999975 1.00039670000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.519449361849013 -62.2944679592575028 23.3099582938393013 -12.4366829176730995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438351440194048 2505438351440194048 32343201 2015.5 26.1606658752981005 1.90526227091522005 -2.52149594739928018 1.39490507713521006 \N \N \N \N \N \N \N -0.0621041170000000003 \N \N \N \N \N \N \N \N \N 73 0 72 1 -0.757202999999999959 58.0037003 0 0 3 false 0.020092426 \N \N -0.16169420000000001 9 7 4.97706840000000028 0 9 false 73 89.2463967379295013 1.70182655697234009 52.4415016 20.8118899999999982 7 109.329015928161994 21.6863369431613009 5.04137750000000029 20.2545490000000008 7 90.5209098548839961 13.1083003543048005 6.90561769999999964 19.8700490000000016 2.23930529999999983 0 0.384500500000000023 -0.557340599999999964 0.941841099999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.558486657192987 -62.292827193208403 23.3237410732943999 -12.4489698649074008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457560453435904 2481457560453435904 1238262101 2015.5 25.5312688705705 13.9532682776579993 -2.78619568713464005 10.7298280826072006 \N \N \N \N \N \N \N 0.683099870000000053 \N \N \N \N \N \N \N \N \N 40 0 40 0 -0.945247350000000042 27.1061001 0 0 3 false 0.015412841 \N \N 0.168967410000000012 5 3 116121.589999999997 0 5 false 41 59.3447586858660969 1.79624992306325004 33.0381012 21.2549099999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.578729333119014 -62.8040749047949021 22.6253107553161996 -12.4647398079211005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426295463758848 2505426295463758848 141790974 2015.5 26.1829129307422015 0.372738937121140979 -2.54896509749577005 0.307088479911990009 -0.515666873249312041 0.490626462971288979 -1.05103769999999996 7.19057859300424962 0.753512476640586959 -4.02223407196937988 0.526430729378557949 0.00221628370000000012 0.372900520000000013 -0.170761760000000012 0.133997509999999986 -0.446234970000000009 0.135187210000000002 0.151265110000000008 0.0493854550000000017 0.0476409979999999969 0.283050240000000009 158 0 157 1 2.41001269999999979 197.216995 0.979934033988141051 1.48861416436683003 31 false 0.156162660000000009 1.58310078409217003 0.0943438618937263024 0.0646206200000000036 18 10 0.686990800000000013 0 18 false 157 351.663932618317006 1.29967802381681996 270.578003 19.3230460000000015 15 133.393385955344996 5.36084094911324982 24.8829209999999996 20.0385530000000003 13 332.851605923973977 5.57086166717656006 59.7486760000000032 18.4562929999999987 1.3258255000000001 0 1.58226010000000006 0.715507499999999963 0.866752599999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.627454534588992 -62.3076846696109996 23.334641474818401 -12.4826631106245003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438080854018944 2505438080854018944 1486237227 2015.5 26.178788312100199 0.0896730323327273038 -2.54498688413778007 0.0735599085846350004 0.887500735005229968 0.108747423254744999 8.16111899999999935 11.6003921481411005 0.194450358575282006 -9.00431880612539004 0.147524373971844008 0.103845480000000004 0.304179160000000004 -0.186708819999999998 0.0812523200000000029 -0.300446959999999985 0.0850701999999999986 0.0224631539999999991 0.0455718749999999978 0.0465447380000000022 0.299771799999999977 158 0 153 5 0.893949800000000017 163.205994 0.250072169436777014 1.50091647412823992 31 true 2.64098530000000009 1.5463411787880299 0.0252714655551314997 0.0760826599999999964 18 10 0.183641899999999997 0 18 false 153 3076.57305440834989 2.6379656601839101 1166.27002 16.968197 17 1393.85210731824009 10.9347425751111995 127.470039999999997 17.4908469999999987 16 2424.56053017381009 16.8007743597357013 144.312420000000003 16.300336999999999 1.24112529999999999 0 1.19050980000000006 0.522649770000000014 0.667860030000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.615720806651012 -62.3059328664409975 23.3322030397732014 -12.4774538140781992 100001 4950 4892 5054.66992 0.128000006 0.064000003 0.176499993 0.0643000007 0.0320000015 0.0879999995 200111 0.564303299999999952 0.541175300000000026 0.577763499999999985 0.172242640000000002 0.128982920000000001 0.215502369999999999 +1635721458409799680 Gaia DR2 2505438901194704000 2505438901194704000 936377209 2015.5 26.0723064967504996 0.849710687340463955 -2.51105121403434994 0.705358959735964963 0.198625080899538009 1.18705621622947999 0.16732575999999999 -8.30608115910166056 1.51265311616829989 0.770990260751105994 1.32160909950373995 -0.0429753469999999971 0.53725814999999999 0.151357409999999998 0.136381479999999999 -0.471620079999999997 0.0692806839999999952 -0.0695689800000000025 -0.0548719579999999985 0.121023329999999998 0.41185670000000002 113 0 110 3 0.555674699999999966 112.559998 0 0 31 false 0.0458341430000000008 1.31762619504058009 0.232894750472958989 0.0652131440000000007 13 10 1.4988923999999999 0 13 false 110 131.490000288439006 1.19738005548202997 109.815002 20.391134000000001 9 52.5538994187446988 15.5492307310233997 3.37983920000000015 21.0498750000000001 10 211.812155701159014 7.99460049670360995 26.4944020000000009 18.9470419999999997 2.01054120000000003 0 2.10283279999999984 0.658741000000000021 1.44409180000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.377965016340994 -62.3222105597205029 23.2435228619885983 -12.4069638462816005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439283444464128 2505439283444464128 1466977091 2015.5 26.0799730841086017 1.02082997010085008 -2.50681625208593983 0.914480289317341044 0.307987257400101022 1.39369471630612995 0.22098617000000001 5.86750756320515965 1.63244742523565001 -4.64095166020331984 2.20628866191299 0.159989330000000013 0.72467493999999999 -0.0843793000000000043 -0.098563189999999995 -0.242543299999999989 -0.357052599999999998 -0.553257939999999948 0.0690012400000000053 0.109523850000000006 0.670224900000000012 113 0 111 2 2.01282290000000019 137.296997 1.07643754215353993 0.414584503012335015 31 false 0.0448351650000000032 1.28411482883576999 0.247828712394677991 0.21820023999999999 13 8 2.28421239999999992 0 13 false 112 137.816475210016989 1.31173859834719009 105.064003 20.3401129999999988 10 63.335184895791997 10.6410650531945006 5.95195900000000044 20.8472749999999998 11 168.559675179946993 6.8952411595835299 24.4457990000000009 19.1950360000000018 1.68263530000000006 0 1.6522387999999999 0.507162099999999949 1.14507680000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.388793536826995 -62.3150486069693983 23.2524079326617006 -12.4058244262814998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439279149281152 2505439279149281152 683595071 2015.5 26.0812408213162001 0.764737907055810018 -2.50572324749981012 0.526571460417823989 0.00819438016808607048 1.03446686550298006 0.00792135599999999919 -1.65918285266480003 1.16958183094902002 -3.94161711053394992 0.917709460589634984 0.0160782039999999987 0.663410370000000027 -0.0920403000000000054 0.175376520000000008 -0.315514679999999992 0.123064499999999993 0.0661895099999999931 0.0658381100000000052 0.130511459999999996 0.35865414000000001 121 0 121 0 1.00142240000000005 131.205994 0.602702986452288036 0.227391243283767003 31 false 0.0700615799999999983 1.80706360195782989 0.192329850524917995 0.136227640000000011 14 9 1.10450050000000011 0 14 false 121 186.50846265316801 1.49383763777078005 124.851997 20.0116200000000006 10 117.01031885175 12.9194212368988008 9.05693149999999925 20.1808280000000018 10 138.167166079351006 16.1935565179679983 8.53223099999999945 19.4109079999999992 1.36818179999999989 0 0.769920350000000031 0.169208529999999996 0.600711800000000018 \N \N 0 \N \N \N NOT_AVAILABLE 152.39021334380999 -62.313511214556101 23.2540242474266989 -12.4052704943461993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439313509019776 2505439313509019776 933209101 2015.5 26.0887055072243008 0.407962415072969986 -2.50412072239350003 0.325942854166827001 0.728694319343407004 0.572946365287792969 1.27183690000000005 -4.63868306507611994 0.655337873449187036 -5.93202956531651004 0.523231037417033029 -0.0589676699999999998 0.617540700000000053 0.00927838299999999942 0.184779470000000001 -0.457488720000000015 0.171514620000000007 0.196396769999999998 0.00847909900000000036 0.0809140299999999979 0.355793570000000003 148 0 146 2 0.891210300000000011 155.787994 0 1.69248816682571991e-15 31 false 0.175022070000000002 1.5289821193575599 0.0902570542130164966 0.094507960000000002 17 10 0.624034170000000055 0 17 false 145 325.844025486427995 1.44692784185167 225.197006 19.4058419999999998 15 106.168992584235994 8.47001914588335048 12.5346810000000009 20.2863940000000014 14 354.188093201611991 6.85191363035421031 51.6918500000000023 18.3888360000000013 1.41281429999999997 0 1.89755819999999997 0.880552299999999954 1.01700590000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.403128403592007 -62.3088028865157995 23.2617310980731986 -12.4065070233579 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439386524075904 2505439386524075904 199278993 2015.5 26.0756658785515008 0.125289279095995992 -2.49129111069522002 0.127705352000587996 0.55698023676446895 0.188512788071695997 2.95460179999999983 6.70980304724427956 0.247664390179289012 -0.520230291459576999 0.219167711644023988 0.044001270000000002 0.467656139999999998 0.0159081369999999993 0.135314319999999988 -0.5484483 0.380483479999999985 0.431879940000000018 -0.228731829999999997 -0.223406080000000007 0.516246259999999957 141 0 141 0 0.209893469999999999 138.813995 0 0 31 false 1.68106690000000003 1.51434290272437999 0.0324974043993871003 0.137178329999999987 16 9 0.267928329999999992 0 17 false 141 1766.55731791472999 2.4719030311612098 714.655029 17.5705470000000012 13 761.234306622783038 7.89431101766975996 96.4282149999999945 18.1475930000000005 13 1502.59741211458004 12.5621712756299004 119.612880000000004 16.8198129999999999 1.28149350000000006 0 1.32777980000000007 0.577045440000000021 0.750734299999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.365838114462008 -62.3029758146975965 23.2541223565138999 -12.3898012243611007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439111645649664 2505439111645649664 1391803047 2015.5 26.1079424952040995 13.7155949447882008 -2.50820466689012012 7.97671820821291 \N \N \N \N \N \N \N -0.66672739999999997 \N \N \N \N \N \N \N \N \N 72 0 70 2 26.7271980000000013 1089.67004 15.635094589006 208.502236974742999 3 false 0.00377590770000000003 \N \N 0.0370650439999999984 9 5 34.9978520000000017 0 10 true 77 217.502767942312005 3.55958729806815999 61.1034012 19.8447040000000001 8 238.095920974091996 24.5871099091109002 9.68377000000000088 19.4095079999999989 7 519.183966437460981 13.9052492502939007 37.3372650000000021 17.9736179999999983 3.48170229999999981 0 1.43589020000000001 -0.435195920000000014 1.87108610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.444146458057986 -62.3040446608334975 23.2785164857753983 -12.4173375318015005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439416588238848 2505439416588238848 1174940639 2015.5 26.0986555110540017 0.415257402258866981 -2.48831950039997984 0.361501362222642009 0.825902755020355039 0.555662525117121997 1.4863386999999999 24.8536808350478005 0.788997683969258956 -15.2268672571848995 0.610632857992063016 0.0745639059999999992 0.438509970000000027 0.00385261500000000021 0.166823179999999988 -0.390096720000000008 0.155474830000000008 0.185407529999999987 -0.00262558439999999995 0.0801000399999999974 0.319943729999999982 158 0 157 1 1.75778710000000005 183.996002 0.842280229259131041 0.845586320944605951 31 false 0.118282109999999996 1.55763464976839994 0.106664699912072003 0.118152394999999993 18 10 0.736137750000000035 0 18 false 154 270.158424998237024 1.19429787027805001 226.207001 19.6093200000000003 14 56.4037352173397011 8.61778992497239926 6.54503500000000038 20.9731179999999995 16 368.815072579668026 9.19640815877485984 40.1042500000000004 18.3448980000000006 1.57396090000000011 0 2.62821959999999999 1.3637980999999999 1.26442150000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.407450328419998 -62.2902433300759029 23.2771214978644991 -12.3954366669806006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439416590840064 2505439416590840064 336782491 2015.5 26.1079830440002993 2.68411612246001985 -2.48556765611738006 2.60731763330459998 \N \N \N \N \N \N \N -0.623313369999999978 \N \N \N \N \N \N \N \N \N 62 0 62 0 -1.84876590000000007 38.9322014 0 0 3 false 0.0175724140000000015 \N \N -0.0296443030000000003 7 5 9.14574050000000049 0 7 false 61 76.4068498751208978 1.11155898830121003 68.7385025 20.9805360000000007 3 34.4845240021162027 15.3801648571191993 2.24214270000000004 21.5073280000000011 6 96.2104935394226004 16.4577589369762016 5.84590500000000013 19.8038640000000008 1.7105144000000001 1 1.70346449999999994 0.526792499999999997 1.17667199999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.422865708885013 -62.2836843900467017 23.2870321220419001 -12.3962836185977991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439382231053696 2505439382231053696 19347429 2015.5 26.0791691233098994 1.86071415895928993 -2.48357267316229979 1.56380477573795007 \N \N \N \N \N \N \N -0.095632700000000001 \N \N \N \N \N \N \N \N \N 70 0 70 0 1.08513140000000008 77.4225006 2.92169595666445003 0.808057558414358001 3 false 0.0146059780000000004 \N \N 0.0248401669999999998 8 7 6.12213229999999964 0 8 false 71 80.2220458436620021 1.33274978584785009 60.1929016 20.9276310000000016 5 33.8630152318905004 15.7253818136811994 2.15339850000000022 21.527075 6 98.8763190220082038 7.04548921442589027 14.033989 19.7741889999999998 1.65464900000000004 0 1.75288580000000005 0.59944344000000005 1.15344240000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.365338796701991 -62.2945040965499999 23.2603480532145994 -12.3838979967419007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439450947978880 2505439450947978880 1558875801 2015.5 26.1124992292185993 0.250889683193233015 -2.48284812113324005 0.214437174806037995 0.991737452075947989 0.316489896631789003 3.1335516000000001 37.084346867167902 0.489510978648467987 -25.0941748667505991 0.35934223132922799 0.212675470000000005 0.380028900000000003 0.132253719999999991 0.210486780000000012 -0.275590999999999975 0.210360660000000005 0.231748910000000002 -0.0722668300000000041 0.101035420000000001 0.324701279999999981 141 0 140 1 1.70718419999999993 164.279007 0.354166847867407986 0.374464382908620996 31 false 0.36681697000000002 1.38201827048472992 0.0632682937817645036 0.123135380000000003 16 10 0.45854594999999998 0 16 false 139 580.962345100213952 1.66625197105614009 348.664001 18.7779960000000017 16 203.839886329729012 8.64540838974384052 23.5778199999999991 19.5781649999999985 14 588.803606831647016 9.40437692750153964 62.6095279999999974 17.8369940000000007 1.36436299999999999 0 1.74117089999999997 0.800169000000000019 0.941001899999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.429019064866992 -62.2792615103952016 23.2923500479406016 -12.3954025243270998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439214725383936 2505439214725383936 210583997 2015.5 26.1161734490262987 0.119916324286852005 -2.49340816147764022 0.103273391867377995 7.67026117114591965 0.151239818899112005 50.7158850000000001 5.82720752655299989 0.239880977834883991 -27.3213226951755992 0.189157416724294009 0.143812180000000012 0.39755878 -0.025873844 0.139785469999999995 -0.288354200000000005 0.14810493999999999 0.173146440000000013 -0.0187036769999999984 0.0505549799999999994 0.313845839999999987 159 0 157 2 3.5969253000000001 222.873993 0.430108632977587002 2.86715326825589001 31 false 1.40564620000000007 1.14794444318399003 0.0322716037656956972 0.117319729999999997 18 10 0.226520260000000001 0 18 false 156 1967.14671308308994 3.53227344149481004 556.906982 17.4537730000000018 16 290.015488797884984 9.65132101840653078 30.0493050000000004 19.195335 15 2752.80223158918989 11.0770849332129 248.513229999999993 16.1624830000000017 1.54681789999999997 1 3.03285220000000022 1.7415619 1.2912903 \N \N 0 \N \N \N NOT_AVAILABLE 152.446072782777009 -62.2871403966976018 23.2918940561998014 -12.4065734939246006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505461926512445056 2505461926512445056 219857923 2015.5 26.1626127507877015 0.0852930107585917058 -2.49254754126471978 0.0910869879341397043 1.49665532781254007 0.114093328217116999 13.1178159999999995 13.0161362999094994 0.194725963666503993 -1.78307801999448001 0.173029181380210006 0.284322299999999972 0.238122639999999997 0.0923564600000000013 0.224436009999999991 -0.428541600000000023 0.380961400000000006 0.411859099999999978 -0.228933949999999997 -0.210181900000000005 0.530859949999999969 148 0 146 2 1.49339770000000005 166.848007 0.276172786760747024 1.97365814678750007 31 true 2.96842650000000008 1.40362938415288996 0.0249083911235799989 0.174168199999999995 17 9 0.211870399999999987 0 17 false 144 3545.68115109128985 4.39459605071493975 806.828003 16.8141169999999995 15 1094.94230702724008 13.3094248628403005 82.2681900000000041 17.75291 14 3714.18074279968005 17.9199195008642995 207.26549 15.8372620000000008 1.35633270000000006 0 1.91564850000000009 0.938793199999999994 0.976855299999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.534844599564991 -62.2659785120037981 23.3364328676645982 -12.4227366481150003 100001 3873 3769.5 4180.12012 \N \N \N \N \N \N 200111 0.748203500000000021 0.642299999999999982 0.789854759999999989 0.113481276000000006 0.0957861899999999933 0.131176349999999997 +1635721458409799680 Gaia DR2 2505461926512444928 2505461926512444928 1309629705 2015.5 26.1707067226194994 0.0344871082412204003 -2.48922822433685997 0.0274124998467910989 0.677799029112903018 0.042534867407237803 15.9351389999999995 0.00895577518757439961 0.0690916002812591995 -10.2840548821182001 0.0627869185461060048 0.0245809950000000013 0.463286460000000011 -0.180854650000000006 0.0119797180000000003 -0.324572680000000002 -0.0201443039999999983 -0.198238689999999995 0.0240435969999999999 0.0429542249999999987 0.393896939999999973 149 0 148 1 -2.47704740000000001 104.525002 0 0 31 true 32.796280000000003 1.59513692188187006 0.00962385023767069019 0.0274136269999999994 17 10 0.0775060360000000004 0 18 false 148 26364.7048645543 9.06292011253636964 2909.07007 14.6358080000000008 16 14580.4248925782995 17.508573740789501 832.759159999999952 14.9419629999999994 16 17316.8436611260004 31.1439952956806998 556.025150000000053 14.1657489999999999 1.20984730000000007 0 0.776214599999999977 0.306155200000000016 0.470059400000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.547306441915993 -62.2594388735209989 23.3453824650953017 -12.4226031973693001 100001 6056.0498 5391.52979 6850 0.431499988 0.257499993 0.734099984 0.231999993 0.1197 0.365999997 200111 1.35874070000000002 1.06202390000000002 1.7143181999999999 2.23730699999999993 1.92065240000000004 2.55396180000000017 +1635721458409799680 Gaia DR2 2505461750418776064 2505461750418776064 1514189517 2015.5 26.2034448987135988 0.40310622848057398 -2.49666717957726991 0.350605981650339016 1.56676417310537008 0.550345311514178981 2.84687469999999987 1.4194137085248999 0.839152145505146052 -36.0555697439725975 0.593701724845432044 0.0529272800000000002 0.304476650000000015 0.0745751500000000067 0.14354328999999999 -0.479851599999999989 0.197223449999999995 0.173544229999999994 -0.120143379999999994 0.0234572159999999995 0.310238330000000007 155 0 153 2 1.6731026 177.936996 0.853961592253893009 0.878636807893011018 31 false 0.124874239999999997 1.34451885534176996 0.105370849625145993 0.0601571759999999997 18 10 0.773475649999999959 0 18 false 156 287.50123484620201 1.69191839739119998 169.925995 19.5417670000000001 14 103.391311759500994 12.4187418425334002 8.32542600000000022 20.3151779999999995 14 304.637545834021978 10.2399624955454005 29.7498679999999993 18.5524619999999985 1.41922470000000001 0 1.7627162999999999 0.773410799999999954 0.989305499999999949 \N \N 0 \N \N \N NOT_AVAILABLE 152.617416226312002 -62.2517024041120024 23.3737730696566999 -12.4414825048986994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505461990940228864 2505461990940228864 140329873 2015.5 26.1978816511409001 3.21602955788825984 -2.48144152272719998 2.87065856499931016 \N \N \N \N \N \N \N -0.623780670000000037 \N \N \N \N \N \N \N \N \N 37 0 36 1 -1.45395479999999999 20.3945999 0 0 3 false 0.0211958250000000015 \N \N -0.0170764399999999983 5 5 10.5677819999999993 0 5 false 36 83.4052430720294069 1.76711474202351004 47.1985016 20.8853819999999999 3 90.1179534965719 19.4653246528549992 4.62966630000000023 20.4643599999999992 4 72.9388998813771963 14.7961422510991003 4.929589 20.1045230000000004 1.95499529999999999 0 0.359836580000000017 -0.421022420000000008 0.78085899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.592285177409991 -62.2404883866221965 23.3741736135905001 -12.4252788331156996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505424921074246016 2505424921074246016 1437024295 2015.5 26.2486684259374989 0.0488957385732895974 -2.61228749007785011 0.0350738568903756973 1.42657872133629993 0.0553144624416756978 25.7903389999999995 7.38161572091980034 0.0874665170471610048 -16.3788638368222017 0.076610426903463702 -0.000547369799999999971 0.547372159999999996 -0.0753046599999999955 0.0453121029999999994 -0.183328450000000004 0.0141144900000000004 -0.122910580000000005 0.00308927639999999988 0.0521798019999999974 0.241356910000000008 168 0 167 1 -1.73671599999999993 132.123993 0 0 31 false 10.3288679999999999 1.49122796521657008 0.0119361845133813 -0.0238819759999999992 19 10 0.0880722699999999942 0 19 false 167 8644.26115371016022 6.75827215136003012 1279.06006 15.846546 18 3548.95133998454003 19.3853753778107993 183.073640000000012 16.4761370000000014 18 7310.84860422579004 26.5920129334785003 274.926480000000026 15.1020000000000003 1.25630160000000002 0 1.37413690000000011 0.629591000000000012 0.744545939999999962 \N \N 0 \N \N \N NOT_AVAILABLE 152.814600512305987 -62.335392950687698 23.373561906804099 -12.5656159728142995 100001 4910.5 4759.31006 4990 0.338 0.209000006 0.423099995 0.160300002 0.0998999998 0.204999998 200111 0.600767550000000039 0.581777329999999981 0.639544099999999949 0.189064729999999986 0.173177959999999992 0.204951500000000009 +1635721458409799680 Gaia DR2 2505424882419486464 2505424882419486464 1305020629 2015.5 26.2731454604993004 0.334700860850632997 -2.6086081621482502 0.232486463698940993 0.474640134455700025 0.380620100661776983 1.24701810000000002 -5.83344847655892984 0.582287057593504964 -8.23159455773479998 0.451027033002847022 -0.107587083999999999 0.565586860000000025 -0.0546411050000000023 0.0658085900000000001 -0.268257020000000013 0.0558984469999999969 0.130387219999999998 0.00980729299999999991 0.0513660800000000015 0.119023660000000003 160 0 155 5 3.20557099999999995 211.813995 0.75126569049201497 1.32316204000954007 31 false 0.219165090000000007 1.54668515452297006 0.0770588068954047023 -0.05948962 18 10 0.516814769999999979 0 19 false 156 440.949288395018016 1.54841093699671006 284.774994 19.0773940000000017 16 199.332745431504009 9.81131802190519942 20.3166119999999992 19.6024419999999999 15 369.274343345625994 14.7278481136668002 25.0732040000000005 18.3435479999999984 1.28950680000000006 0 1.25889399999999996 0.525047299999999995 0.733846659999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.858254306460992 -62.3212358064766008 23.3982584826836018 -12.5711277612047994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445399478313472 2505445399478313472 901012412 2015.5 26.2906697109023995 0.0252960293199984004 -2.62086537684310983 0.0180503960829753 0.621394408607696014 0.0281162597295715015 22.1008910000000007 13.4448672930630995 0.0442165325683340979 -22.0259296804299005 0.0408039345206595017 0.0229522209999999983 0.571791770000000033 -0.114979139999999994 0.0224359820000000001 -0.124431364000000003 -0.0187173040000000006 -0.225918220000000003 0.0161004179999999983 0.0437295550000000033 0.244463340000000001 169 0 168 1 -1.34154400000000007 139.356003 0 0 31 true 68.2523350000000022 1.61905493383694998 0.00612625248901785963 -0.0214967930000000002 19 10 0.0516632720000000031 0 19 false 166 53630.5340489320006 15.0720612812247001 3558.27002 13.8648360000000004 18 29516.9030602700004 43.0132729065622001 686.227800000000002 14.1762110000000003 19 35756.8824240985996 58.3022541406375012 613.301900000000046 13.3785209999999992 1.21710120000000011 0 0.797690400000000022 0.31137562000000002 0.486314770000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.90374688697699 -62.3244277253972996 23.4103652437658987 -12.5889344751482 100001 5849.25 5685.2998 6110.66992 \N \N \N \N \N \N 200111 2.27589869999999994 2.08533640000000009 2.40905360000000002 5.46262359999999969 4.85314300000000021 6.07210400000000039 +1635721458409799680 Gaia DR2 2505445326466123648 2505445326466123648 711865821 2015.5 26.2934078512247993 1.04395577996149003 -2.61927057864676982 0.77733707935545604 1.91820051886444998 1.21995734937327005 1.57235049999999998 7.25967889719825976 1.80413307435100001 -2.42471935176128994 1.93989853805413004 -0.0690626599999999979 0.590210440000000003 -0.0347119099999999986 0.0348108369999999973 -0.240307729999999997 0.00960639299999999953 -0.234265449999999986 -0.0876587300000000041 -0.0623940149999999971 0.383503529999999981 132 0 132 0 1.09387250000000003 144.514999 2.02553729821987982 1.06006545549306996 31 false 0.0255260229999999984 1.41387099641962011 0.259127933414888989 0.00065376970000000003 16 9 1.9395865000000001 0 16 false 134 99.774321129317201 1.0978480790257501 90.8816986 20.6908190000000012 11 42.9618543942750009 7.89243022668544025 5.4434250000000004 21.2686799999999998 15 135.871671598789987 15.4728565091619998 8.78129200000000054 19.4290979999999998 1.79238030000000004 0 1.83958240000000006 0.577861799999999981 1.26172069999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.907491955714988 -62.3217821312270033 23.4135711954108992 -12.5884494626752002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445154665120768 2505445154665120768 929750071 2015.5 26.3151987444976001 0.0584610889227989011 -2.6224728461467901 0.0474701425220176026 0.604627121633939946 0.0689838450581508056 8.76476399999999956 4.95455240124768981 0.117408950595018005 -4.73086256553234996 0.0999923389381283945 0.0763616000000000017 0.408941539999999992 -0.0915801599999999938 0.0445889100000000024 -0.219749610000000012 -0.0283226970000000008 -0.156366959999999999 0.0588421400000000011 0.146225300000000002 0.25909146999999999 168 0 167 1 2.45489220000000019 209.535004 0.188005507097183999 1.8703728868290399 31 true 5.50196899999999989 1.56269121397738009 0.0143438890770193998 0.0468956229999999974 19 10 0.115465960000000006 0 19 false 162 6118.7806570354096 4.56821679713952022 1339.42004 16.2217030000000015 17 3125.39623551783006 19.2566416801575002 162.302249999999987 16.6141259999999988 17 4383.51543134120038 21.0787867885798015 207.958619999999996 15.6573639999999994 1.22719090000000008 0 0.956762299999999954 0.392423630000000023 0.564338699999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.952514731213 -62.3149529121297974 23.4331348807290993 -12.5993839373160998 100001 5381 5336 6457.56982 0.183799997 0.124300003 0.238100007 0.0920000002 0.0604999997 0.115999997 200111 0.952286599999999983 0.661234259999999963 0.968416100000000002 0.684986500000000054 0.519751370000000046 0.850221600000000022 +1635721458409799680 Gaia DR2 2505445257746690432 2505445257746690432 238279741 2015.5 26.3274854150808011 1.79085767348359992 -2.61044288758950005 3.08498256998975018 \N \N \N \N \N \N \N 0.116984009999999999 \N \N \N \N \N \N \N \N \N 69 0 68 1 1.8399776000000001 85.1752014 3.64828498799937018 1.59283844176010003 3 false 0.0149308519999999997 \N \N 0.234546360000000009 8 7 7.84042700000000004 0 8 false 69 74.9574963400294934 1.30098304637921003 57.6160011 21.0013280000000009 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.964615065002988 -62.2987127085049011 23.4493454017101008 -12.5926695009009002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445189025026816 2505445189025026816 837522666 2015.5 26.3407425290969996 0.611848398289141948 -2.61732970834464984 0.43080677482180002 1.51937212737151994 0.706738086792061959 2.14983769999999996 -2.05877510004753983 1.20318005972253994 -4.19536659614483032 0.746923660668975975 -0.0518738659999999976 0.39020305999999999 -0.217445269999999996 0.165579620000000011 -0.322322639999999994 0.16261645999999999 0.147732620000000009 0.0639943899999999982 0.0898208199999999957 0.154155600000000004 161 0 160 1 1.6256564 184.669998 1.20709771607896998 0.994899710494975054 31 false 0.0629358400000000068 1.13589717968536008 0.143854603510974011 0.0133295510000000002 19 10 1.07508350000000008 0 19 false 160 181.583045608051009 1.29559868109160004 140.154007 20.0406779999999998 11 59.2294458760677003 12.4573711990686995 4.75457000000000019 20.9200440000000008 15 263.557996323516022 15.1210195556943994 17.4299089999999985 18.7097300000000004 1.77762989999999999 0 2.21031380000000022 0.879365900000000034 1.33094789999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.996720998861008 -62.2989682212608002 23.4593998991073995 -12.6039180695516002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425092872917120 2505425092872917120 635860802 2015.5 26.2140772500350003 0.0451736311257363021 -2.60601018456429978 0.0372328682673944977 1.09715605433501007 0.056447477384512397 19.4367599999999996 -4.2270913278475799 0.0855729861081755971 -12.0669687874417004 0.0785849741838938048 0.133628639999999993 0.501118999999999981 0.0322068930000000003 0.06814249 -0.249732520000000013 0.0381756759999999987 -0.0884801499999999935 -0.0431623199999999971 0.057413314 0.415754400000000024 136 9 136 0 0.0613533600000000026 131.326996 0 0 31 false 19.6647379999999998 1.53689464768697004 0.0128940107583171999 0.0609463999999999978 16 10 0.0887171499999999946 0 16 false 135 15845.1316927622993 8.58517151908768916 1845.64001 15.1886259999999993 14 7582.05563610986974 17.0639134450335987 444.332760000000007 15.6519200000000005 15 11938.4451151345002 31.9286725106229987 373.909850000000006 14.5695505000000001 1.23195579999999993 1 1.08236979999999994 0.463294030000000023 0.619075799999999954 \N \N 0 \N \N \N NOT_AVAILABLE 152.741884407642999 -62.3450877078406975 23.3429609904722 -12.5471412328595004 100002 5032.79004 4989 5147.31982 0.438300014 0.396499991 0.488799989 0.214000002 0.193000004 0.252099991 200111 0.993100050000000012 0.949400369999999993 1.01061139999999994 0.570055500000000048 0.50944482999999996 0.630666139999999986 +1635721458409799680 Gaia DR2 2505425122937621248 2505425122937621248 1485018559 2015.5 26.2321129797299015 1.99836829852463005 -2.59910527303873007 1.59017104228373007 \N \N \N \N \N \N \N -0.0621988850000000024 \N \N \N \N \N \N \N \N \N 96 0 93 3 70.6493899999999968 8276.94043 10.6195175954527006 720.184702414216986 3 false 0.00867704799999999971 \N \N 0.00938111999999999974 17 10 3.46739979999999992 0 17 false 151 1391.06535513792005 20.6873384098671984 67.2424011 17.8299960000000013 16 2000.20592351635992 39.5880513935898009 50.5254970000000014 17.0987009999999984 16 4015.32064655361 29.0149601481067982 138.387939999999986 15.7526200000000003 4.32440230000000003 0 1.34608170000000005 -0.731294629999999946 2.0773763999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.770085666471999 -62.3309145165922018 23.3627273436894001 -12.5473007454108991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505425951866375808 2505425951866375808 91884005 2015.5 26.209951407137499 0.077258821353035606 -2.58149352434038004 0.061989449761466503 1.96427630085696991 0.0990542096104393005 19.8303170000000009 -17.7857168973337991 0.139414039917023003 -16.076034337643101 0.118646639964703995 0.0526818299999999989 0.534252639999999945 -0.035232287000000001 0.110434210000000005 -0.318915459999999984 0.0913998300000000014 0.0488606840000000014 0.00984944800000000023 0.0738117900000000021 0.349840280000000003 149 0 148 1 1.86458590000000002 176.139999 0.222222069799539013 1.89404338683292006 31 true 4.52735850000000006 1.32973834735087992 0.0195323435369425015 0.0886520449999999988 17 10 0.137323470000000003 0 17 false 147 5115.95452724029019 4.38924790272642973 1165.56995 16.4160499999999985 15 1514.60080990797996 11.7264494668569998 129.161069999999995 17.4006420000000013 15 5428.25736772280015 15.7079794885311994 345.573239999999998 15.4252690000000001 1.35709930000000001 0 1.9753733 0.984592440000000013 0.990780829999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.710549669308989 -62.3249286339068007 23.3482128167762006 -12.5228148708731997 100001 3726.5 3661.5 3867.5 1.42999995 1.27540004 1.65240002 0.700999975 0.609399974 0.831399977 200111 0.777619199999999955 0.72195240000000005 0.805473270000000019 0.105058970000000002 0.0941491049999999968 0.115968829999999995 +1635721458409799680 Gaia DR2 2505424882419488128 2505424882419488128 141902946 2015.5 26.2681823471381009 0.937410740944420007 -2.60298883972629014 0.699254438282343016 -1.90939534016115009 1.12633339001412991 -1.69523109999999999 17.1772730181062983 1.58072475783650002 -6.65639156362346007 1.79047224119497006 -0.0659553600000000045 0.637799140000000042 -0.0470110499999999987 -0.0392662100000000028 -0.272394599999999987 -0.0118022119999999994 -0.151945040000000003 -0.0768499799999999983 -0.0895262659999999932 0.394992530000000008 141 0 139 2 1.62971770000000005 161.733002 1.96669854393358001 1.16893439656020992 31 false 0.0309444349999999993 1.64851175481684997 0.234660241820296989 0.00057633140000000005 17 9 1.76266379999999989 0 17 false 139 116.159502107554005 1.31040254796570999 88.6440964 20.5257280000000009 11 41.1913059491986999 7.97372503167323021 5.16587969999999963 21.3143749999999983 13 144.917821613937008 14.0274115868514997 10.3310449999999996 19.3591160000000002 1.60218600000000011 0 1.95525930000000003 0.788646700000000034 1.16661260000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.843317658822002 -62.3184048873675991 23.3956341263927001 -12.5640852331339001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448624998863744 2505448624998863744 1039643676 2015.5 26.2627978966912998 0.914683253837792032 -2.58415276179648989 0.72259155560632804 3.52612379108327989 1.02835214541666997 3.42890700000000015 9.88480261527353932 1.70673733725504007 1.79778986556694997 1.6711397928049101 0.167432159999999997 0.513334630000000014 -0.251598949999999988 -0.0103592170000000004 0.103097125999999997 0.0521760199999999966 -0.314412299999999978 -0.00296246729999999998 -0.131861480000000003 0.269154850000000001 131 0 128 3 2.56544280000000002 166.966003 2.9420486604663898 3.16485534139032998 31 false 0.0329187920000000023 1.06942560474707005 0.223654200565644001 0.0675468149999999962 16 9 1.68530899999999995 0 16 false 129 150.692831126605995 1.22504444780325006 123.010002 20.2431340000000013 9 70.1623046815527971 16.3558852554088006 4.28972800000000021 20.7361280000000008 11 250.59051863098901 33.4032922741933973 7.50197100000000017 18.7645100000000014 2.12852070000000015 0 1.97161870000000006 0.492994299999999996 1.47862429999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.814944922375986 -62.3039164671411001 23.3975567653359988 -12.5445862873978005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448384484381440 2505448384484381440 197060070 2015.5 26.2899562390386983 1.33699741112679993 -2.60149527957984006 1.49374228178518997 1.43912054245570009 1.97575593689931006 0.728389859999999945 -1.69666349053307997 3.2171669282854598 -5.95462055627960041 4.24002923110661989 -0.217153239999999997 0.440708219999999984 -0.032501712000000002 0.159963219999999989 -0.621141199999999949 -0.195242849999999996 -0.47835293000000001 0.00781827199999999937 0.134186269999999996 0.673208499999999987 85 0 85 0 0.457969369999999987 85.2365036 0.934365617391319958 0.122299531687243002 31 false 0.0211778949999999987 1.03209104243099992 0.392385963100868984 0.0104765110000000009 10 8 4.35622739999999986 0 10 false 89 83.0214983657959067 1.37458236967481007 60.3975983 20.8903880000000015 6 88.598428377635102 8.80443676033311995 10.0629299999999997 20.4828219999999988 8 71.8331832220265056 12.5362236678199999 5.73004960000000008 20.1211069999999985 1.93241050000000003 0 0.361715320000000007 -0.407566070000000003 0.769281400000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.88382231163601 -62.3073977863390027 23.4169374737276996 -12.5706434001484997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448663653457920 2505448663653457920 1512682629 2015.5 26.2661893141516991 0.0274103363035185996 -2.57997651679291007 0.0214741597154024001 1.91121858606265005 0.0308485191538180013 61.9549519999999987 3.60058712718624019 0.0514072279207491989 5.23810261184062043 0.0466308655894389981 0.182022929999999999 0.511031299999999966 -0.136470910000000001 0.000288162530000000007 0.0420646999999999965 -0.00733921720000000038 -0.208186919999999998 0.00294816869999999995 0.00878109200000000076 0.242210669999999989 169 0 167 2 -1.38684279999999993 137.697998 0 0 31 false 38.9959139999999991 1.55422179919748005 0.00716408218425308024 0.0476635840000000019 19 10 0.0583720240000000015 0 19 false 168 31317.0513369621003 10.1828412305232003 3075.46997 14.4489140000000003 18 15508.5044915636008 24.1442620194233015 642.32669999999996 14.8749640000000003 19 22780.5314484131995 43.5188225188748987 523.463870000000043 13.8680105000000005 1.22262589999999993 0 1.0069532000000001 0.42605019999999999 0.580903049999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.817488094379001 -62.298670327778801 23.4023509834454018 -12.5419369579971001 100001 5325 5264.95996 5442 0.00850000046 0.00529999984 0.0414999984 0.00529999984 0.00230000005 0.0230999999 200111 0.69848980000000005 0.668778360000000016 0.714512049999999954 0.353421780000000019 0.339672419999999975 0.367171140000000007 +1635721458409799680 Gaia DR2 2505448831157135872 2505448831157135872 1080825131 2015.5 26.2619719229730002 0.539585565864757033 -2.55906899913839014 0.53485397923228295 0.759208097789853986 0.762898544978076965 0.995162600000000008 -0.311675065106213012 1.1742809893847701 -0.869858831296285051 1.07037444376400992 0.0133536000000000002 0.320562330000000006 -0.0726487700000000014 0.081436016 -0.539552800000000055 0.0998400400000000049 0.0227700039999999999 -0.0300620740000000011 0.0118782000000000002 0.426714749999999976 151 0 149 2 0.357798159999999976 149.473007 0 0 31 false 0.0636253700000000005 1.75301879374430003 0.164501112888554013 0.104125720000000005 17 10 1.18006710000000004 0 17 false 148 172.446719204287007 1.65616057042811993 104.124001 20.0967300000000009 14 120.054698936630004 12.9819187603537998 9.24783900000000081 20.152940000000001 13 105.837537177892997 8.88407924832772977 11.9131689999999999 19.7003209999999989 1.30992479999999989 0 0.452619549999999982 0.0562114699999999995 0.396408079999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.789417574455001 -62.2818030584992997 23.4061599074269004 -12.5209357666198002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448831159397120 2505448831159397120 1289864827 2015.5 26.2660434184983984 2.19744982227819019 -2.56331864024231004 2.21928046100001009 \N \N \N \N \N \N \N 0.340867640000000027 \N \N \N \N \N \N \N \N \N 94 0 94 0 7.75979500000000044 236.578003 8.65985656367450929 8.42973868379628044 3 false 0.00739631239999999964 \N \N 0.129943420000000004 11 8 7.90691949999999988 0 11 false 97 85.1994329969930959 1.62410132544211994 52.4594002 20.8622739999999993 4 35.5229879054530002 8.31264056673549945 4.27336999999999989 21.4751149999999988 7 163.754170683745002 8.6422252968649893 18.9481490000000008 19.2264389999999992 2.33894940000000018 0 2.24867630000000007 0.612840649999999987 1.63583560000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.801308300974995 -62.2838073880487997 23.4084476517178999 -12.5263778016324991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448453200172032 2505448453200172032 242794413 2015.5 26.2811234188636007 0.677048267757782041 -2.57976542421811006 0.481396741417263019 2.2695255444091802 0.750650531120168996 3.02341149999999992 -1.61373053324816995 1.25583378410415003 -9.07285958263742032 0.915410094080544967 -0.0219166990000000013 0.486915260000000016 -0.143952240000000009 0.139493549999999994 -0.214343859999999997 0.186521490000000012 0.155388849999999995 -0.0125369439999999995 0.0207067750000000002 0.181687120000000008 156 0 154 2 0.591964999999999963 158.757996 0 0 31 false 0.0515017249999999982 1.14598073326858008 0.163254147933848986 0.00235124199999999992 18 10 1.12883 0 18 false 154 147.822087631106996 1.1834866545587599 124.903999 20.2640169999999991 10 29.6402344535525017 6.24168243074470031 4.74875739999999968 21.6716839999999991 17 203.514223148387998 9.20270191880232069 22.1146160000000016 18.9904329999999995 1.577264 0 2.68125150000000012 1.4076671999999999 1.27358440000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.846038113009001 -62.2918557367163999 23.4166569350388016 -12.5471919406662007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426261104020608 2505426261104020608 363976442 2015.5 26.2097915382619995 0.0660815699053704936 -2.55760212835614986 0.0575670301965246003 0.614929350444845979 0.0804650821341981043 7.64218900000000012 15.2926900729245006 0.138291879711340993 -1.77313368700516993 0.115670864146884003 0.16452311 0.357111279999999975 -0.117457950000000005 0.0869872940000000067 -0.249873359999999989 0.0795438200000000012 0.0187986940000000012 0.0329544469999999978 0.0625566899999999981 0.340971740000000023 151 0 151 0 -1.7677366000000001 117.250999 0 0 31 true 4.92787359999999985 1.55711007095819998 0.0191368967461178 0.109212199999999995 18 10 0.136959870000000011 0 19 false 151 4501.0165792764501 3.75726240265094003 1197.94995 16.5550899999999999 16 2261.88540896883978 16.2177078886112014 139.470110000000005 16.9652120000000011 16 3320.18934978687003 20.4195654849131003 162.598430000000008 15.9590130000000006 1.24018089999999992 0 1.00619890000000001 0.410121919999999973 0.596076970000000039 \N \N 0 \N \N \N NOT_AVAILABLE 152.687497690349005 -62.3035718894457986 23.3570067344189987 -12.5005186664989996 100001 5142.20996 4960 5325 0.0553000011 0.0193000007 0.160999998 0.0170000009 0.00800000038 0.0781000033 200111 0.89518774000000001 0.834783700000000017 0.962165530000000047 0.504801900000000026 0.36695945000000002 0.642644400000000005 +1635721458409799680 Gaia DR2 2505449587071382784 2505449587071382784 1208060491 2015.5 26.2504531735430007 0.827500338834330051 -2.54764875996934004 0.953975364535629033 1.3162010827292201 1.27918270502848008 1.02893910000000011 0.0752453545247379063 2.85238618501563002 -3.99475358207812992 3.45608134411916978 0.0989699440000000041 0.186753620000000009 -0.0560379329999999981 0.0421439860000000013 -0.573273359999999954 -0.0360291400000000012 -0.19006113999999999 -0.221764879999999998 -0.179618870000000014 0.806759000000000004 118 0 116 2 -1.74622079999999991 86.3964996 0 0 31 false 0.0337851639999999995 \N \N 0.127183350000000001 14 8 3.74495999999999984 0 14 false 118 120.314429224224 1.11141660706522005 108.252998 20.4875720000000001 10 48.8244930125460002 13.5119356287907006 3.61343430000000021 21.1297929999999994 11 152.01140736295801 5.45212742082931001 27.8811190000000018 19.3072300000000006 1.66925860000000004 0 1.82256320000000005 0.642221449999999972 1.18034170000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.756359474920004 -62.2766673348585016 23.3994624409947001 -12.5061003404362996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449660085848576 2505449660085848576 805779356 2015.5 26.2439893678944998 0.31529426308154701 -2.53304613190271022 0.291907599301019005 1.62409997593269995 0.423702668853336017 3.83311249999999992 -0.426741505171817026 0.645742381932519982 0.953402107143278998 0.477714916368076004 0.201583469999999987 0.307166039999999974 -0.0062065035999999997 0.168159000000000003 -0.34602856999999998 0.110860650000000005 0.17831704000000001 0.0410236400000000001 0.144986480000000001 0.296657999999999977 148 0 147 1 22.4647140000000007 954.312988 2.07054374979326017 46.3946046032681991 31 true 0.197477889999999989 1.50800137009073998 0.0820825722463803947 0.167885780000000012 17 9 0.593770299999999973 3 17 false 148 1603.05343761946006 19.8390171018335018 80.8031006 17.6759950000000003 14 1512.7113261925299 29.841865348686099 50.6909100000000024 17.401999 14 3562.13799248092982 41.1180022622040013 86.632080000000002 15.8826429999999998 3.16573929999999981 0 1.51935580000000003 -0.27399635 1.79335209999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.730016433010007 -62.2664348839360002 23.3987713379843996 -12.4901479050317992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449831884540288 2505449831884540288 150462160 2015.5 26.211623205105699 0.0372716517402428005 -2.52900237420133989 0.0342280279036591972 0.418534863436225979 0.0454504593350492023 9.20859399999999972 -1.51642955786350009 0.0777697361047317015 -4.77637338519422006 0.0744897915242229008 0.224151800000000012 0.387585500000000027 -0.0680960599999999999 0.0362984199999999979 -0.197452829999999996 0.0212905669999999998 -0.102153809999999998 -0.00796307299999999933 0.0448064660000000031 0.41769837999999998 157 0 156 1 -1.69513620000000009 122.834 0 0 31 false 17.0451659999999983 1.58105041382008005 0.0114044083597294992 0.122835319999999998 18 10 0.0886054800000000004 0 18 false 155 14026.727401143 7.32115393263816028 1915.92004 15.3209750000000007 18 7268.26123223702962 22.1364693917475002 328.338779999999986 15.6978120000000008 17 9816.68127155231923 14.2278107669107996 689.96429999999998 14.7820079999999994 1.21802769999999994 0 0.915803900000000004 0.376836779999999982 0.538967129999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.663843433126999 -62.2771084083836968 23.3694584123835014 -12.4745668065485997 100001 5442 5406.5 5487.66992 1.39900005 0.985000014 1.704 0.686500013 0.411000013 0.837400019 200111 2.02917550000000002 1.99554370000000003 2.05591079999999993 3.25362920000000022 2.46567559999999997 4.04158300000000015 +1635721458409799680 Gaia DR2 2505449969323493376 2505449969323493376 408048946 2015.5 26.2277845099277016 0.404846273952047975 -2.50901737958685001 0.369242176567018021 -0.344155171214933997 0.540659156225820947 -0.636547399999999985 -4.3938408875482402 0.777556086594471951 -9.11425938928442037 0.599843696610207977 0.114855620000000005 0.397557600000000011 0.0362326469999999998 0.207355709999999999 -0.392048269999999976 0.241352680000000014 0.264927740000000023 -0.0526692159999999979 0.034475088000000001 0.344052100000000027 148 0 147 1 2.64460730000000011 190.580994 0.908486695787776966 1.15245568098816009 31 false 0.129285480000000008 1.45357699469463997 0.101922786151927 0.107656689999999999 17 10 0.737273449999999997 0 17 false 147 294.902055250553019 1.48392705551414994 198.731003 19.5141719999999985 14 90.7198447616281953 9.05866833033370078 10.0146999999999995 20.4571320000000014 12 318.715671600282974 19.8866270930424989 16.0266319999999993 18.5034120000000009 1.38837799999999989 0 1.95372009999999996 0.942960739999999964 1.01075939999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.675989345087999 -62.2520458542908983 23.3923304905682983 -12.4618650157465005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449861949293696 2505449861949293696 804094447 2015.5 26.2295483228833 2.08719354004279989 -2.5269259740991501 1.84502577362084996 \N \N \N \N \N \N \N 0.255973129999999993 \N \N \N \N \N \N \N \N \N 124 0 124 0 62.7715260000000015 6080.22998 12.8651293634403991 180.225935503827003 3 false 0.00543941929999999969 \N \N 0.150925759999999992 17 10 3.96670269999999991 0 17 false 137 229.230881771038014 2.59366509556809 88.3811035 19.7876830000000012 9 277.232929620683024 10.5384818056443006 26.3067250000000001 19.2442759999999993 9 627.189613451697028 14.6704761516469002 42.7518230000000017 17.7684229999999985 3.94546559999999991 0 1.47585300000000008 -0.543407439999999964 2.01926039999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.696395039159995 -62.2673301027219992 23.3873076567154001 -12.4791788923658995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449934963755136 2505449934963755136 894628103 2015.5 26.2302265369023999 0.0359483373135415021 -2.52157105660417979 0.0338920135133631978 0.706391416204542044 0.0427724411080825026 16.5151059999999994 -0.61906596131590097 0.0727510521929747023 3.21269345601746981 0.0708171872683864001 0.296374919999999986 0.413407980000000008 -0.0500664499999999985 0.0528246539999999987 -0.122141879999999994 0.0347620729999999975 -0.082074229999999998 0.00777322239999999991 0.0604576130000000003 0.429133949999999986 148 0 148 0 -1.30347070000000009 121.471001 0 8.40305455069884962e-16 31 false 20.7356149999999992 1.63023099471829003 0.0111492065248891999 0.150177850000000002 17 10 0.0846960900000000017 0 17 false 147 16907.0864218907009 7.18999275831992968 2351.46997 15.1181940000000008 15 9584.98867467493983 19.4595983588679005 492.558400000000006 15.3974089999999997 15 10779.1837042812003 20.4221713319365001 527.817699999999945 14.6804550000000003 1.20447550000000003 0 0.716954230000000026 0.279215800000000014 0.437738420000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.692612419877008 -62.2622276239661971 23.3899578780889001 -12.4744419754893006 100001 6088.99023 5822.62012 6309 0.0560000017 0.0170000009 0.118699998 0.0287999995 0.0092000002 0.0513999984 200111 1.03223170000000009 0.961494269999999984 1.12883510000000009 1.31956329999999999 1.13953470000000001 1.49959179999999992 +1635721458409799680 Gaia DR2 2481458071557152000 2481458071557152000 675080411 2015.5 25.5368741049049994 1.75459998027404995 -2.73535045586665015 1.4261382066441699 \N \N \N \N \N \N \N -0.470626199999999995 \N \N \N \N \N \N \N \N \N 78 0 76 2 1.02271580000000006 83.1547012 2.09708177957458997 1.00696956203221011 3 false 0.0312838100000000022 \N \N 0.0375072399999999972 9 6 5.16471530000000012 0 9 false 77 106.484267097477996 1.67713249711327994 63.4919014 20.6201520000000009 7 60.5145168407023988 15.9296163669020991 3.79886839999999992 20.8967400000000012 9 116.889443090558999 7.06493338574925023 16.5450170000000014 19.5924820000000004 1.66601099999999991 0 1.30425830000000009 0.276588439999999991 1.02766990000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.542342398311007 -62.7557058124858003 22.6497808570662009 -12.4195115735395003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449930668772864 2505449930668772864 943134262 2015.5 26.233907311852299 0.306792494562216023 -2.51766042542719992 0.255648747796817011 1.23629916025334996 0.387471586348857977 3.19068340000000017 11.5522583779276005 0.634433313388331976 -8.97230124625390069 0.425925480840292026 0.0898532640000000021 0.323289720000000003 -0.123857529999999993 0.173661050000000011 -0.367244499999999974 0.179244340000000002 0.246971350000000006 0.0309770800000000006 0.0490635339999999989 0.259543479999999993 150 0 150 0 3.68734740000000016 216.421997 1.03285544627871007 2.79155153961462998 31 false 0.23166268000000001 1.3716967193907299 0.0763964913763835046 0.0857997300000000046 17 10 0.574488800000000022 0 17 false 150 507.763538025565026 1.50991515222739991 336.286011 18.9242120000000007 14 128.02260530169201 8.52561134337742033 15.0162370000000003 20.0831720000000011 14 597.735710898813977 6.88463636277182989 86.8216859999999997 17.820646 1.42932339999999991 0 2.26252560000000003 1.15896029999999994 1.10356520000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.695982710906009 -62.2570940122016978 23.3949271407873987 -12.4721456036216995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449587071384064 2505449587071384064 1085175563 2015.5 26.2538968587850015 0.300771270903880006 -2.54103202098208003 0.27191290886474101 1.43059454208643011 0.385180660757376003 3.71408719999999981 20.1570367856432 0.640613684472035039 4.21873670154520042 0.481591590000876979 0.161138520000000007 0.260556500000000024 0.0901842900000000003 0.173219029999999996 -0.393525029999999998 0.216335090000000008 0.179402349999999988 -0.109128180000000005 0.0299327019999999985 0.348329070000000018 138 0 136 2 2.2150713999999998 169.432007 0.902916438901509966 1.85382911049715005 31 false 0.234086500000000003 1.51198868529170993 0.0819431209633617041 0.074599004999999996 16 10 0.602624500000000007 0 16 false 135 490.224195879031015 1.65360949027747006 296.457001 18.9623799999999996 15 153.645603029032998 8.31423494021472997 18.4798240000000007 19.8850879999999997 14 522.204684114083989 7.28437425855679965 71.6883399999999966 17.9673179999999988 1.37865560000000009 0 1.91777039999999999 0.922708500000000043 0.995061900000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.756687254936992 -62.2692112249293999 23.4052192130115984 -12.5011983204010004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449243474000128 2505449243474000128 372944589 2015.5 26.2954956841780003 0.149581832204621012 -2.54137331114438014 0.114267099664422001 0.807008749372806977 0.170951116705933992 4.72069899999999976 9.09129813492524974 0.297540155633660985 -8.68913903218090944 0.230024556397144003 0.0606080329999999987 0.412691650000000021 -0.0893869600000000014 0.0945218899999999973 -0.180964280000000005 0.0810899100000000012 0.00328378540000000014 0.00673587669999999982 0.0760671299999999967 0.214079510000000001 174 0 172 2 0.581456239999999958 177.158997 0.256369171097988013 0.508401987471820971 31 false 0.818474299999999988 1.34000346007015003 0.0374865271595379995 0.0147168760000000003 20 10 0.271301499999999973 0 20 false 171 1073.0254650495599 2.23362029459234002 480.397003 18.1118409999999983 17 334.130826259449975 12.3429277720527004 27.0706300000000013 19.0415969999999994 18 1143.91230740437004 12.1839891318360998 93.8865200000000044 17.1159379999999999 1.3774538999999999 0 1.9256591999999999 0.929756160000000054 0.995902999999999983 \N \N 0 \N \N \N NOT_AVAILABLE 152.837030504562989 -62.2510814938863035 23.4447171092529985 -12.5166992883349995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449690150601088 2505449690150601088 1117107987 2015.5 26.2646037451430985 0.147846150661762987 -2.52984999992523996 0.128804326114700995 0.637749537203171957 0.185559165696474987 3.43690659999999992 12.9904555861013993 0.321879927036447022 -4.44957723955760009 0.248163800917095001 0.0831453800000000048 0.280043660000000028 -0.148099900000000007 0.108547783999999994 -0.403956829999999989 0.114851460000000002 0.0635327700000000023 0.0335483030000000015 0.0480130870000000029 0.336308779999999974 151 0 151 0 0.143594300000000008 147.794006 0.0892021031681428933 0.0592070648603100977 31 false 0.917407300000000037 1.45023562386779004 0.0402086210019306015 0.0601513570000000025 17 10 0.302641700000000013 0 17 false 151 1134.28333237828997 2.17865244343482001 520.63501 18.0515609999999995 17 440.411391481957025 11.6892521549277006 37.6766099999999966 18.7417410000000011 16 1062.34453042968994 12.4228097935804005 85.5156400000000048 17.1962569999999992 1.32485059999999999 0 1.54548449999999993 0.69017980000000001 0.855304700000000029 \N \N 0 \N \N \N NOT_AVAILABLE 152.766642934342997 -62.2544470929967986 23.4196026069781986 -12.4946977715292 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449690150601600 2505449690150601600 315292355 2015.5 26.2664229222712997 0.330048042349117998 -2.52709915149858011 0.308651754613420981 0.422062060767584013 0.435621050849700986 0.968874339999999945 -0.717880090333738008 0.684267886427698979 -8.72420280946809967 0.559742076345458028 0.126344700000000004 0.334290619999999983 0.00701886100000000037 0.146514370000000005 -0.408208850000000012 0.172813710000000009 0.157241779999999998 -0.0472985799999999998 0.0287783259999999999 0.370012600000000025 161 0 159 2 4.08881859999999975 236.591995 1.19762246780976001 2.91207209282011004 31 false 0.164441179999999992 1.4219308448255501 0.0913093626315362034 0.0939786700000000003 18 10 0.656055500000000014 0 18 false 158 410.583528970399016 1.96638215397020999 208.800995 19.1548610000000004 14 161.81442272641101 8.18416907952986072 19.7716369999999984 19.8288459999999986 16 442.796087363066022 14.5758852301539008 30.3786750000000012 18.1464099999999995 1.47256399999999998 0 1.68243600000000004 0.673984499999999986 1.00845150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.767523498315001 -62.2511756926424979 23.4223648284256001 -12.4928011054407992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450278560671744 2505450278560671744 1367919342 2015.5 26.2676240510853987 0.108554976625889005 -2.50923197813974985 0.119112210833425006 0.727592911426953037 0.152835515308630987 4.76062730000000034 6.68335622564123 0.263207698062068007 -9.65617254615222009 0.239307901618042995 0.209734570000000009 0.172727910000000012 0.0540949329999999978 0.185488239999999999 -0.536427859999999979 0.348104330000000017 0.334903700000000026 -0.239981400000000011 -0.225091979999999997 0.54496929999999999 149 0 148 1 -0.458531169999999988 134.742996 0 0 31 false 1.60946640000000007 1.43969991195002001 0.0330663203101548009 0.12944151000000001 17 9 0.285091499999999998 0 17 false 148 1745.44737403254999 2.34874730811662014 743.140015 17.5836000000000006 15 724.254345925137955 29.5578237170791986 24.5029660000000007 18.2016600000000004 13 1543.01975552584008 8.57326752976194939 179.98035999999999 16.7909900000000007 1.29896450000000008 0 1.4106692999999999 0.61806106999999999 0.792608259999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.752833721790012 -62.2346266358849007 23.4301946211671996 -12.4766074284694 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445532622248064 2505445532622248064 1310136135 2015.5 26.3106857019494988 0.583237998488465026 -2.59461893810370992 0.418173861998891006 3.67455999880150985 0.639105004570261981 5.7495402999999996 5.29380391461828026 1.09461178458546993 -50.0010727680967975 0.720433984160730012 0.0981521459999999957 0.472124429999999984 -0.146080399999999999 0.221433710000000006 -0.0845501349999999985 0.20536509 0.258225560000000021 0.0586548260000000002 0.128728029999999993 0.147798049999999986 167 0 167 0 4.79139040000000005 263.532013 2.22951677923862013 4.39390333378545961 31 false 0.065163570000000004 1.22605901332950995 0.133652738114506009 -0.00610898699999999975 19 10 0.976243850000000024 0 19 false 166 246.349058626279998 1.33095647460174993 185.091995 19.7094880000000003 14 59.7198075576192977 12.6828833755218007 4.70869349999999987 20.911093000000001 19 410.647528595421988 14.1760859031028996 28.9676250000000017 18.2282469999999996 1.90935309999999991 0 2.68284600000000006 1.20160479999999992 1.48124119999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.917132932572997 -62.2920241908663996 23.4392615307748002 -12.5718083702242005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445532622247680 2505445532622247680 705634756 2015.5 26.3153642982200999 0.765820355899204053 -2.59927558243265011 0.543468060362771954 -0.504762011176437042 0.856834642873419039 -0.589100839999999959 7.83465682590847035 1.42921741357786991 -2.04161962552560006 1.19190165274053994 -0.00557139329999999967 0.50099539999999998 -0.231443910000000003 0.0935152300000000047 -0.167868099999999992 0.194322099999999998 -0.00270604129999999984 -0.0445857679999999978 -0.0891329349999999965 0.254193749999999996 145 0 141 4 0.400091560000000013 142.018005 0 0 31 false 0.0451635680000000012 1.64983116872664004 0.175903072694442997 0.0475930199999999998 17 10 1.33290960000000003 0 17 false 141 139.286005980260995 1.17647828860844994 118.391998 20.328596000000001 14 54.5523933267007024 4.94307434415352986 11.0361259999999994 21.0093539999999983 15 147.808790749539014 8.42471233346915938 17.54467 19.3376699999999992 1.45284649999999993 0 1.6716842999999999 0.680757500000000015 0.990926740000000028 \N \N 0 \N \N \N NOT_AVAILABLE 152.930593608612014 -62.2941121236995983 23.4419762007560983 -12.5778505996504002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448487559748864 2505448487559748864 1582895283 2015.5 26.3025079481368991 0.303555484879703019 -2.58332974760035006 0.225446221237518007 0.935854442733067948 0.356755253511562009 2.62323949999999995 7.94904107217189981 0.566369321835679007 -13.3314210526008008 0.44155810517927202 0.0155196139999999993 0.479774529999999977 0.00858774200000000064 0.10314181 -0.24116862 0.0983018199999999981 0.0587217469999999978 -0.0393060100000000023 0.0617732799999999999 0.233946060000000011 170 0 169 1 -0.282345860000000004 158.287003 0 0 31 false 0.215403239999999996 1.24080953041532993 0.077025024879943102 0.00285817939999999989 20 10 0.515496729999999959 0 20 false 170 381.280984215315016 1.59995978122760008 238.307007 19.2352519999999991 17 121.979129440280005 11.6427777768130998 10.4768070000000009 20.1356740000000016 17 419.671910774412027 7.31595949755728014 57.3638899999999978 18.2046449999999993 1.4206086 0 1.93102839999999998 0.900421139999999953 1.03060719999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.890595836979003 -62.2855507381047033 23.4356957030619988 -12.5583149766411992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445566984323200 2505445566984323200 18155715 2015.5 26.3160715348566008 2.98080824860757998 -2.58659908748325984 6.47783694844949043 \N \N \N \N \N \N \N -0.751013159999999957 \N \N \N \N \N \N \N \N \N 44 0 44 0 0.0332231259999999987 38.6278992 0 0 3 false 0.0214029069999999988 \N \N 0.0255425719999999995 5 5 17.6887019999999993 0 5 false 44 75.1105874650605045 1.85343273485193993 40.5251007 20.9991130000000013 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.919813451940996 -62.2824475494790022 23.4473946824341013 -12.5663083385485006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445566985857536 2505445566985857536 983055007 2015.5 26.3278633887084013 0.918380941744370016 -2.58099144480179987 0.733271732677526988 0.750777085722684978 1.08839353879320999 0.689802939999999976 -1.66840428232301008 1.6355973576815499 0.0852828042001259057 1.91855236767797011 -0.0922418299999999969 0.581504400000000032 -0.0166294979999999995 -0.0679645499999999986 -0.306191680000000022 -0.12707331999999999 -0.255269350000000006 0.00014838587999999999 0.0118359550000000004 0.325732079999999979 121 0 121 0 0.479824419999999974 122.768997 0 0 31 false 0.0335102160000000024 1.40918254008914001 0.259538392348646008 0.0994250500000000009 14 9 1.83179690000000006 0 14 false 123 107.678211094299996 0.947186960643171982 113.681999 20.6080460000000016 11 95.6684678517149933 9.95218653878115944 9.61280900000000038 20.3994660000000003 13 84.7464930914589019 11.3593427929006996 7.46051030000000015 19.9416159999999998 1.67550109999999997 0 0.45784950000000002 -0.208580020000000005 0.666429500000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.937116476929987 -62.2721800935730982 23.4607282807151982 -12.5653911995866991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505448594933548416 2505448594933548416 832604379 2015.5 26.3029141458493001 0.694654916049814997 -2.56167712692472982 0.561006212911069002 0.461378017771285009 0.811956811926925037 0.568229729999999988 19.3356081791313983 1.42838994822057996 2.1771904800815598 1.43763216298914998 0.0572409330000000008 0.434939200000000026 0.0509221700000000027 0.0215858820000000007 -0.186079670000000003 -0.0166843420000000013 -0.225328830000000008 -0.147407530000000009 -0.0720149100000000014 0.416210350000000007 149 0 148 1 1.76228279999999993 174.160004 0.914997976288220993 0.368936189292514982 31 false 0.0425550999999999985 0.979965593579021021 0.188612955378585995 0.0161830430000000011 17 9 1.49870239999999999 0 17 false 148 139.560908535008991 1.42050900941846003 98.2471008 20.3264560000000003 11 77.5739925198395071 14.3021722088055991 5.42393060000000027 20.6270980000000002 15 199.239725295326991 11.7976525632786995 16.8880830000000017 19.0134800000000013 1.98346170000000011 0 1.61361890000000008 0.30064200000000002 1.31297679999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.870676929327004 -62.2659770136662019 23.4441863870297986 -12.5383071810339999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445944941465856 2505445944941465856 1192977789 2015.5 26.3328603890056989 0.781110703241283955 -2.57190444650776984 0.629251428273258973 0.171858254056581006 0.904099704180391983 0.190087719999999988 -6.64376393368497009 1.64993108422867008 -7.59798721071139038 1.6442522151393999 0.014749814 0.393159700000000001 0.0423762570000000005 0.027780131999999999 -0.219158779999999997 -0.0194206630000000012 -0.240163979999999999 -0.146966430000000009 -0.0663858100000000034 0.395732550000000016 142 0 140 2 1.64299820000000008 163.078995 0 0 31 false 0.0349711700000000028 1.1972944042365099 0.215374583229086008 0.0420010430000000018 16 9 1.70997329999999992 0 16 false 141 116.060054921141003 1.1603354434859201 100.023003 20.5266589999999987 9 44.4335290871177975 6.17101068813686027 7.20036499999999968 21.2321109999999997 13 161.887501965098011 9.52637090923053087 16.9936180000000014 19.2388860000000008 1.7777092000000001 0 1.99322510000000008 0.705451970000000039 1.28777309999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.938020541349005 -62.2618207452649983 23.4688897513403987 -12.5587553530638996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445296399097984 2505445296399097984 667432911 2015.5 26.3509353771388 0.0848160762582185063 -2.60162848798817992 0.0751095844945080943 0.435966896549284 0.111853539783558997 3.8976586000000002 1.79952549824585994 0.177582500551531991 -0.136196945502291 0.142926497384972012 0.0964852900000000013 0.322385279999999996 -0.0830677999999999972 0.0561785299999999974 -0.374324529999999989 -0.0923375399999999957 -0.176339999999999997 0.15757562 0.286022160000000025 0.298936800000000003 169 0 169 0 3.8782833000000001 243.873993 0.354000701230478998 3.44700802261443995 31 true 2.4396460000000002 1.56101909476644996 0.0211351735241487003 0.083736060000000001 19 9 0.170512570000000002 0 19 false 169 3429.19942099001992 3.47758559202832984 986.085999 16.8503839999999983 17 1732.81233018518992 11.5725111056913992 149.735199999999992 17.2545089999999988 17 2464.22986176088989 9.52846367125187044 258.617770000000007 16.2827170000000017 1.22391310000000009 0 0.971792199999999995 0.404125200000000018 0.567667000000000033 \N \N 0 \N \N \N NOT_AVAILABLE 153.001244159322994 -62.2803729707127971 23.4749889507945007 -12.5930208122554994 100001 5351 5316 5383 0.224999994 0.0763000026 0.38409999 0.0920000002 0.0445000008 0.189999998 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445876222004736 2505445876222004736 985879855 2015.5 26.3462464759746986 1.54068795985142004 -2.58567260508121022 0.962760278791523039 3.67421100665182987 1.85303528009539997 1.98280680000000009 30.6075943835680988 2.15218415387588013 -9.86134514589256028 2.28092072470805007 0.193376450000000005 0.74957510000000005 -0.00654235530000000023 -0.137499330000000003 0.0964619899999999975 -0.0454371459999999977 -0.18558034000000001 -0.144852730000000013 -0.200725719999999996 0.356691570000000013 86 0 86 0 -1.2699050999999999 65.3087997 0 0 31 false 0.0254371670000000001 1.23413361413784006 0.331096235775831027 0.219664930000000008 10 8 2.32962099999999994 0 10 false 87 84.4540930669035959 1.01043464199549993 83.5819016 20.8718150000000016 6 25.8460915942188016 8.73803976319516984 2.95788219999999979 21.8203999999999994 6 163.408712182952996 13.5904331590917007 12.0238049999999994 19.2287309999999998 2.24091940000000012 1 2.591669 0.94858549999999997 1.64308359999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.976930354404999 -62.2681838167234005 23.4764920633699994 -12.5764564262908998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505445880514649856 2505445880514649856 173900369 2015.5 26.3471220230681986 0.0293716593066036986 -2.58110544255305019 0.0241968248262941985 2.0415672630696502 0.0334418176782248014 61.048335999999999 32.9033042753443965 0.0608583489084797008 -11.8941998403750002 0.0509918622147758974 0.146906110000000006 0.369220700000000013 -0.0115376520000000007 0.00218774660000000017 -0.0916659699999999994 -0.0706052560000000051 -0.175330760000000002 0.00488775700000000039 0.170585650000000005 0.203481660000000009 154 0 153 1 -2.47497319999999998 108.828003 0 0 31 false 30.7782480000000014 1.50304369445409991 0.0076384703948758504 0.0260023979999999995 18 10 0.0655733800000000006 0 18 false 153 24639.9345027013987 7.79431459175992014 3161.27002 14.7092670000000005 14 10638.8988484890997 18.5118778104511996 574.70659999999998 15.2841459999999998 16 20001.0927103791983 37.9501013059729004 527.036600000000021 14.0092859999999995 1.24350939999999999 0 1.27486039999999989 0.574879649999999964 0.69998073999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.97423511135699 -62.2637060070549992 23.4790353144421999 -12.5725241949681994 100001 5073.00977 4935.25 5163 0.384299994 0.204899997 0.542999983 0.197699994 0.1043 0.259799987 200111 0.65238373999999999 0.629840100000000014 0.689313949999999953 0.253959099999999993 0.244116720000000009 0.263801459999999988 +1635721458409799680 Gaia DR2 2505445979298851072 2505445979298851072 1357448689 2015.5 26.3493992259470993 0.600399375031613003 -2.56169300873931016 0.475428448199567977 0.812234608172504036 0.712065277635938965 1.14067439999999998 -4.08930184163139021 1.15818480457537998 -9.40976532046646952 0.871284933619339008 0.0345526800000000023 0.439067299999999994 -0.014631448 0.141377659999999988 -0.281624800000000008 0.18472783000000001 0.233369660000000007 -0.0555895750000000022 0.0154297219999999999 0.237985499999999989 156 0 155 1 2.44782350000000015 195.720001 1.42734599563724007 1.24043011339962006 31 false 0.05785854 1.44448549890382005 0.152764592993826998 0.100060919999999998 18 10 1.0543518999999999 0 18 false 154 173.531573927833989 1.33699769097212995 129.792007 20.0899199999999993 13 61.7620560977446971 8.22715564757974072 7.50709719999999958 20.8745839999999987 14 206.736462431412008 10.2865617042811994 20.0977229999999984 18.9733769999999993 1.54726030000000003 0 1.90120700000000009 0.784664150000000005 1.11654279999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.96001497424399 -62.2453160116688977 23.488468363486799 -12.5552833739071001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449174754617472 2505449174754617472 1255999911 2015.5 26.3063691329101985 0.98349706194755504 -2.54830436914362002 0.84732596458073095 1.27940545953104001 1.25448458585422995 1.01986540000000003 -2.96667840278142014 2.33573536763221012 -6.88568618362601015 2.58955693745358984 0.0139620349999999994 0.354913120000000026 -0.126691150000000002 0.0753646639999999979 -0.346110970000000018 0.246955680000000011 0.0730230699999999955 -0.290516529999999995 -0.353311099999999989 0.5705924 127 0 126 1 -1.7144374 95.6699982 0 0 31 false 0.0247458870000000011 2.04419216924783997 0.270544219063893976 0.115700449999999996 15 9 2.73794769999999987 0 15 false 131 94.8803255328107014 1.17905833187577991 80.4712982 20.7454259999999984 11 50.6264984166412972 11.7138784030566008 4.32192470000000029 21.0904430000000005 11 78.7904609748060949 9.3915971501672395 8.38946299999999923 20.0207370000000004 1.3640021 0 1.06970600000000005 0.345016480000000014 0.724689499999999986 \N \N 0 \N \N \N NOT_AVAILABLE 152.864546747323004 -62.2524639899391019 23.4524820338295008 -12.5271193939864993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449209118750208 2505449209118750208 671483279 2015.5 26.3092219228056017 0.383168742774365023 -2.53382174522374992 0.286931237539479023 -0.433692009108431975 0.44466653207823098 -0.975319700000000012 12.7331067614939997 0.72616846388936096 2.04268330828167999 0.542668810097180043 0.0194556700000000013 0.453279350000000025 -0.0118619090000000003 0.127793710000000005 -0.236209059999999998 0.139544069999999992 0.130442620000000009 -0.0395710950000000006 0.0553049399999999969 0.211045470000000013 177 0 175 2 -0.481687370000000004 160.628998 0 1.54138360968159005e-15 31 false 0.128608749999999994 1.35427218839899011 0.0941215395029175034 0.0123747400000000004 20 10 0.654814840000000009 0 20 false 173 274.072701143529002 1.26258489933205009 217.072998 19.5936999999999983 15 85.3484386219448936 9.1965873854296003 9.28044700000000056 20.5233999999999988 18 315.870152598800018 10.6703079072480005 29.602722 18.5131499999999996 1.46391300000000002 0 2.01025000000000009 0.929698939999999974 1.0805511000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.856206227857996 -62.2382238061343003 23.4606185989735998 -12.5146784649509009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449106037400832 2505449106037400832 1049309802 2015.5 26.3377224740094995 1.84678101034587994 -2.5407533057803402 1.24026324004305999 \N \N \N \N \N \N \N 0.164265440000000013 \N \N \N \N \N \N \N \N \N 79 0 79 0 1.10501749999999999 87.5259018 3.0119406817904899 0.934021747737760033 3 false 0.0159191789999999986 \N \N 0.0338550800000000027 9 6 2.80911560000000016 0 9 false 80 74.4438491134138047 1.19368228356894002 62.3648987 21.0087930000000007 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.917565324658 -62.2317665295991986 23.4851771205377986 -12.5315299281368002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449110330055808 2505449110330055808 1355561986 2015.5 26.3399630023701015 0.0296727294772192 -2.53785314254300021 0.0232241766020742993 2.90141588470986989 0.0333411894641843023 87.0219649999999945 29.3436555573226983 0.0596401366435147032 -0.520446971001032987 0.0501265971089527029 0.0858173200000000025 0.418550499999999992 -0.0888686100000000007 0.0417165050000000009 -0.108531155000000004 0.014595495 -0.10467622 0.00323518039999999996 0.0697307999999999956 0.205955200000000005 184 0 182 2 -0.789858639999999945 161.921997 0 1.51059681301357006e-15 31 false 23.662706 1.46812586823179991 0.00755043603399532977 0.00783273699999999934 21 10 0.0643057199999999968 0 21 false 182 19083.5789398437992 9.00068680983113012 2120.23999 14.9867159999999995 20 7173.55100581120041 41.6535517262960013 172.219439999999992 15.7120519999999999 21 17374.7165024194983 35.1262019766653992 494.636930000000007 14.1621260000000007 1.28635549999999999 0 1.54992679999999994 0.725336100000000039 0.82459070000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.919095449920007 -62.2281730907466013 23.4883966335221004 -12.5296474536618998 100001 4381.75 4257.93018 4551.95996 0.234999999 0.0935999975 0.601499975 0.111000001 0.0148999998 0.270099998 200111 0.603326299999999982 0.559051159999999991 0.638926499999999953 0.120889805000000003 0.117600440000000001 0.124179170000000005 +1635721458409799680 Gaia DR2 2505449415272699776 2505449415272699776 1266831448 2015.5 26.3189312204800991 0.168269664441349998 -2.50749148453550985 0.130284157989214999 4.94234905776321032 0.191763456309267 25.7731530000000006 7.73209959598106966 0.336680572188629013 -60.3612818380016023 0.26035585410173101 0.0765096549999999959 0.407773139999999978 -0.045264699999999998 0.0933161700000000038 -0.147955969999999992 0.0839382199999999939 0.0544293080000000026 -0.0202991900000000017 0.0699899350000000031 0.190767290000000006 175 0 175 0 3.10137580000000002 233.014999 0.565592856002050004 2.17768146270655993 31 false 0.614129700000000001 1.13348093139859007 0.0420011481424411998 0.0269427840000000009 20 10 0.304652699999999999 0 20 true 173 986.355923431529959 1.95991242566002 503.265015 18.2032810000000005 16 170.445228345848989 28.4719207244064982 5.98643259999999966 19.7724270000000004 18 1389.0901342115601 9.86712891724928021 140.779570000000007 16.9050939999999983 1.58110810000000002 0 2.86733249999999984 1.56914519999999991 1.29818729999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.849746042011986 -62.2103256430612035 23.4797178432803015 -12.4937096909443994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449071675307648 2505449071675307648 101800224 2015.5 26.3555656626066011 0.464586420829920022 -2.54563865015723989 0.372696830078218022 0.0811209767602733001 0.553473622631401985 0.146567019999999992 3.37888749939950994 0.927674952291495991 -2.97773579564075019 0.66915325046063201 0.076574765000000003 0.385597740000000022 0.0028755832000000002 0.148199319999999996 -0.249979570000000012 0.156940899999999994 0.220592440000000001 -0.0409235100000000032 0.0661202740000000067 0.205850439999999996 170 0 169 1 3.96905449999999993 246.022003 1.88360980487979002 4.05286615192201971 31 false 0.0843688900000000019 1.27102555321313004 0.108579023961409005 0.0567141919999999966 20 10 0.834205569999999952 0 20 false 170 276.130803958832018 1.42629541821017991 193.600006 19.5855789999999992 14 110.151935608843999 9.61940608888166082 11.4510120000000004 20.2464079999999989 17 272.118897428460002 8.21560716211977038 33.1221900000000034 18.6750240000000005 1.38438320000000004 0 1.5713843999999999 0.660829540000000049 0.910554899999999945 \N \N 0 \N \N \N NOT_AVAILABLE 152.956488792600993 -62.2281989478686981 23.5003495645180003 -12.5425871962289008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449140397147392 2505449140397147392 903700386 2015.5 26.3445634624312 8.44930967388082976 -2.52747018197984019 4.94636358969045986 \N \N \N \N \N \N \N 0.833131700000000031 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.40857201999999998 46.1985016 0 0 3 false 0.0173857679999999994 \N \N -0.196941320000000003 6 5 69.4743100000000027 0 6 false 51 70.6748986910462946 1.43617643537261008 49.2104988 21.0652030000000003 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.918005960620007 -62.2168297679724986 23.4966634484164985 -12.5216597778124008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450617863693952 2505450617863693952 774803336 2015.5 26.354564259316799 0.704347420575762051 -2.51662672774360008 0.585004697524614037 1.53270338801404993 0.805954628542223994 1.90172410000000003 8.98827287111596007 1.45673067198025996 2.3989130853938998 1.53362190719485003 0.0220824800000000016 0.410799000000000025 -0.056000086999999997 0.0134543200000000005 -0.181902420000000009 -0.00813645399999999956 -0.233293670000000009 -0.0894883350000000022 -0.0635079900000000003 0.347491260000000024 153 0 152 1 0.968965599999999982 163.531006 0 0 31 false 0.0379192000000000001 1.49436598521543007 0.183688269801247001 0.0697028100000000039 18 9 1.52723380000000009 0 18 false 153 127.540606281625998 1.12345344226910004 113.525002 20.4242440000000016 12 43.7541551202590995 8.70885024399595942 5.02410200000000007 21.2488400000000013 17 194.754133690894008 8.98976246907298027 21.6639920000000004 19.0382040000000003 1.87005770000000004 0 2.21063609999999988 0.824596400000000007 1.38603969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.926836898604989 -62.2026717102574978 23.5102469339841988 -12.5152130400578994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462162735639040 2505462162735639040 203129004 2015.5 26.2255935314879984 0.458725449617410019 -2.4879616960512001 0.409017625161002985 2.49114305804476999 0.590467445288254011 4.21893359999999973 1.91628617415279989 0.907585627619263979 6.63670337849338043 0.690002288573609013 0.15885015999999999 0.377592739999999982 0.0113999189999999997 0.182598640000000007 -0.318014100000000022 0.16953762 0.231630379999999997 -0.00432214330000000018 0.0865501199999999943 0.303096299999999985 154 0 150 4 6.85425470000000026 294.774994 2.11516059099121012 6.75361865777121029 31 false 0.0951448399999999944 1.30007930980612008 0.118273575795476996 0.137902360000000002 18 10 0.841768559999999999 0 18 false 150 350.754660463913012 1.76848056990990998 198.337006 19.3258569999999992 14 93.3347314293096986 15.2043038307553999 6.13870499999999986 20.4262799999999984 16 536.664379356540053 12.7989632920528997 41.9303000000000026 17.9376619999999996 1.79612470000000002 0 2.48861700000000008 1.10042189999999995 1.38819500000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.651798565544993 -62.234123614466597 23.3981234499700008 -12.4414656326253006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462167030209664 2505462167030209664 1422650363 2015.5 26.2306434540757003 2.02020441992833 -2.48390658722229984 2.33190574762059022 \N \N \N \N \N \N \N 0.392423840000000024 \N \N \N \N \N \N \N \N \N 120 0 116 4 14.8170570000000001 508.635986 11.7151169606789995 33.7474176889122006 3 false 0.00545028829999999985 \N \N 0.281419580000000003 14 8 8.35233700000000034 0 14 false 119 112.744799954059999 1.61807032149137009 69.6785965 20.5581250000000004 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.657669624575988 -62.2282571438869994 23.4044500372248017 -12.4395344506051995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462162735640064 2505462162735640064 1006451312 2015.5 26.2311975723489006 1.90509570853228993 -2.48409767987102015 1.54858802374252003 \N \N \N \N \N \N \N 0.121080530000000006 \N \N \N \N \N \N \N \N \N 141 0 140 1 34.7132720000000035 1882.01001 12.1905789366307005 89.8438624772532961 3 false 0.00605442500000000043 \N \N 0.119787840000000007 17 10 3.48309500000000005 0 17 false 151 244.456972607234007 3.62706696531201001 67.3980026 19.7178600000000017 14 350.990546732009022 14.9519216369328998 23.4746109999999994 18.988150000000001 14 630.128394368021986 12.8537263184859007 49.0230140000000034 17.7633480000000006 4.01346250000000015 0 1.22480199999999995 -0.729709599999999958 1.95451160000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.658916689297001 -62.2281840460373985 23.4049062421014007 -12.4399146101001001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462128375901440 2505462128375901440 708992513 2015.5 26.2436806588397999 0.907325797391066002 -2.48573119205111981 1.14014869709399003 -0.688558473843046026 1.33131759418584994 -0.517200769999999976 6.54995262968771996 2.5871431917075598 -7.42154432014346011 3.45016869441690011 0.117819174999999998 0.284140700000000024 -0.0487990800000000016 -0.0328145800000000029 -0.531694200000000006 -0.301015440000000023 -0.496790600000000027 0.0458191339999999975 0.155790330000000005 0.738398099999999946 121 0 121 0 2.37384459999999997 155.233002 1.83446446183121004 0.661595878991039998 31 false 0.0257193539999999998 1.78397058239875994 0.292336282413031001 0.203480620000000001 15 9 3.58976050000000013 0 15 false 128 106.389554602431005 1.22097562380519009 87.134903 20.6211190000000002 11 73.3696211459192966 14.5011390587196995 5.05957650000000037 20.6875970000000002 13 95.3090417485741028 8.85722360962875044 10.7606000000000002 19.8140849999999986 1.58548139999999993 0 0.87351226999999998 0.0664787299999999998 0.807033540000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.68447435677399 -62.2241382639888982 23.4161833624367013 -12.4459919146051003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462132670874880 2505462132670874880 728003763 2015.5 26.2471717874380985 0.475774983143676999 -2.47965072145546017 0.42380603875884898 1.74516201377822999 0.629305179076819043 2.77315699999999987 5.44394838298156003 0.954662242676911021 12.0363316647587002 0.680989855411079037 0.114030875000000004 0.340457259999999984 0.00602565850000000031 0.19418495999999999 -0.393774960000000007 0.217074249999999996 0.283451200000000014 -0.0410524700000000006 0.0398636350000000014 0.292796549999999989 158 0 157 1 3.6840373999999998 224.839996 1.70721663053420003 2.98849452821791006 31 false 0.0867957300000000015 1.34504878387792992 0.118190651768220994 0.118246630000000005 18 10 0.878336499999999964 0 18 false 156 264.300065159754979 1.32812117258766005 199.003006 19.6331230000000012 15 70.6742751156635052 8.76888673884717917 8.05966399999999972 20.7282350000000015 15 337.896475191973025 7.54996739376086001 44.7546919999999986 18.4399599999999992 1.54585949999999994 0 2.28827479999999994 1.09511179999999997 1.19316289999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.685419376813002 -62.2171423193527033 23.4217831616032015 -12.4416060853874999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450446064856064 2505450446064856064 726858349 2015.5 26.2889325593007008 0.123864947790141997 -2.4873454073904302 0.109631476379398005 0.327367527928968005 0.148151716607029998 2.20967769999999986 4.08473749728694013 0.276327718094431019 -3.89947042121033016 0.209565792169114001 0.159388239999999987 0.216075259999999991 -0.129656099999999996 0.129490209999999994 -0.311118630000000007 0.131927099999999992 0.126349060000000013 0.0504165660000000029 0.0506196900000000019 0.296612350000000025 147 9 146 1 3.94356969999999984 217.242004 0.346821652899175992 1.69500142589320002 31 false 1.42413830000000008 1.59084686379474993 0.0354068043605614974 0.0720395999999999953 17 10 0.246103669999999997 0 17 false 140 1936.22661875268 4.01763162396571971 481.932007 17.4709760000000003 14 1080.08441363607994 24.4196151017045011 44.2301980000000015 17.7677440000000004 15 1334.60023134421999 11.0389346519789004 120.899370000000005 16.9485419999999998 1.24710849999999995 0 0.819202399999999997 0.296768199999999982 0.522434229999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.772970133590007 -62.2055726926798016 23.4586786128780993 -12.4640096302515992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505449419567700736 2505449419567700736 1334059216 2015.5 26.326510541428199 0.251670092013565994 -2.50494057299862982 0.190120739822037005 -0.0162435293705661017 0.288209986785343986 -0.0563600500000000018 -0.65302806903134003 0.49236262000612302 -2.82768919264906016 0.359374018871364997 0.0678427199999999953 0.422445540000000008 -0.0430879070000000017 0.129243340000000012 -0.150402010000000003 0.126864179999999993 0.133934890000000001 -0.0218030479999999985 0.0748936000000000046 0.169419049999999988 177 0 174 3 2.06303899999999985 209.067001 0.297784652861641019 0.229754651296920992 31 false 0.288096960000000013 1.4970350441159701 0.057695228843374198 0.0423310660000000005 20 10 0.440405700000000011 0 20 false 172 497.814601916329991 1.52720174144576992 325.964996 18.9456960000000016 19 251.912453677575996 9.26641759523139008 27.1855280000000015 19.3482650000000014 17 362.645469245174979 10.4610968533994999 34.6661029999999997 18.3632139999999993 1.23451160000000004 0 0.985050199999999987 0.402568819999999994 0.582481400000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.861862786595992 -62.2046754682043996 23.4878920799601012 -12.4941001179998992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505450897036460416 2505450897036460416 1576792592 2015.5 26.3304713455646002 0.0980027400239723012 -2.49563008578176992 0.0760693064047267969 0.976156108395016986 0.112817358146259997 8.6525344999999998 10.7331646323578003 0.186327429624503993 -31.0759096988989008 0.148822724195756012 0.185884250000000001 0.479367639999999984 -0.0507859849999999988 0.084919629999999996 0.0137333869999999997 0.056683685999999997 0.00474600769999999981 -0.00740836930000000025 0.0855367300000000053 0.192961999999999995 168 0 165 3 3.08029500000000001 220.841995 0.277719360554422978 1.57332153584567003 31 true 2.01605940000000006 1.54825084637474997 0.0228345475275581987 0.0521519699999999989 19 10 0.171680269999999996 0 20 false 170 2594.68149249814996 2.60471389599786995 996.14801 17.1531559999999992 19 1189.5862400533199 14.7775999415094006 80.4992799999999988 17.6628989999999995 19 2075.5529776704102 22.7032943503431994 91.4207839999999976 16.4690860000000008 1.25839699999999999 0 1.19381329999999997 0.509742739999999972 0.684070599999999973 \N \N 0 \N \N \N NOT_AVAILABLE 152.86059025361601 -62.1945764066573972 23.4951473686596017 -12.4868774922558998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451513139640960 2481451513139640960 880722518 2015.5 25.3496486940735011 1.29603256172739001 -2.86410063462850006 1.52426236868464993 \N \N \N \N \N \N \N 0.539478840000000015 \N \N \N \N \N \N \N \N \N 71 0 71 0 1.30305219999999999 81.3625031 2.39174562470980989 1.33713753056428009 3 false 0.0315872540000000021 \N \N 0.272832100000000022 8 6 10.7064240000000002 0 9 true 72 149.294402202355002 1.88709914351224994 79.1131973 20.2532579999999989 5 127.440860586076994 9.06316895867269068 14.061401 20.0881159999999994 5 107.619559641316002 6.0637045480508398 17.7481539999999995 19.6821920000000006 1.57447580000000009 0 0.40592383999999998 -0.165142060000000007 0.571065900000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.291256422820993 -62.9517215303748969 22.4232066363803995 -12.4704482102560998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450787289914240 2481450787289914240 1068869723 2015.5 25.3788101957683985 1.8176580619176399 -2.85550631382960995 2.39740518798478019 \N \N \N \N \N \N \N 0.643391130000000033 \N \N \N \N \N \N \N \N \N 73 0 73 0 -0.66807850000000002 59.8880997 0 0 3 false 0.0190846720000000004 \N \N 0.188876669999999997 9 7 6.53918100000000013 0 9 false 74 87.7765257501281013 1.29748052757844001 67.6514969 20.8299200000000013 8 44.4696578762808983 11.5875657081029999 3.83770500000000014 21.2312280000000015 8 70.3300040994212026 7.23176005533176003 9.72515800000000041 20.1440680000000008 1.30786289999999994 0 1.08716009999999996 0.401308060000000022 0.685852050000000046 \N \N 0 \N \N \N NOT_AVAILABLE 151.341250494430994 -62.9315986055634013 22.454181272255699 -12.4731789320771007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451543204160128 2481451543204160128 1590132126 2015.5 25.3686629201608014 0.458904176151407994 -2.8503355840775999 0.324502423601941981 1.17212380791936011 0.511266330466069951 2.29258940000000022 0.927564734661531998 1.27181989991335009 -10.3946298808498003 0.691727513207191946 0.0753806159999999975 -0.0323112529999999981 0.0338610040000000001 0.00559260460000000036 -0.0310992970000000014 0.0154162050000000005 0.0414019899999999996 -0.212665230000000011 0.0949834700000000004 -0.0122537970000000003 112 0 111 1 1.34593600000000002 126.080002 0 0 31 false 0.12972844 1.6878896755166799 0.110282547550997007 0.0207343619999999992 13 9 1.11804780000000004 0 13 true 108 302.073197689381004 2.02246983189210994 149.358994 19.4880850000000017 10 169.861482771178004 14.3292618936227001 11.8541679999999996 19.7761519999999997 10 215.911288494211988 12.7261266383167992 16.9659860000000009 18.9262310000000014 1.27708379999999999 0 0.849920299999999962 0.28806685999999998 0.561853399999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.316262608789998 -62.9312100452368028 22.4464797326347991 -12.4646407889791 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451715005457664 2481451715005457664 118047223 2015.5 25.3761565998583016 2.60589418470080014 -2.8375545432816498 1.70805132084210998 \N \N \N \N \N \N \N 0.332668100000000022 \N \N \N \N \N \N \N \N \N 52 0 52 0 -0.188550429999999991 44.549099 0 0 3 false 0.0167496729999999996 \N \N 0.0810727249999999983 7 6 10.7290679999999998 0 7 false 53 77.0047985579839036 1.65603095935305 46.4995995 20.9720699999999987 5 56.3006654851377988 8.26383091575993944 6.81290149999999972 20.9751049999999992 4 54.7788715826190966 10.9264709600715992 5.01340900000000023 20.4153880000000001 1.4425015000000001 0 0.559717200000000026 0.00303459169999999992 0.556682600000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.319262066795005 -62.9164618921606973 22.4584244918837008 -12.4555118980971997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451650578551936 2481451650578551936 450706999 2015.5 25.378231547626001 0.27481515196880002 -2.83923938090646999 0.193486284781098 0.294317510783649983 0.314881140803129012 0.934694000000000025 3.11228941442774998 0.644215279364068971 -3.55791232148905978 0.337800854460257982 0.162444379999999999 0.136247499999999994 0.00483529970000000017 0.153326359999999995 -0.194818899999999989 0.196337950000000011 0.220313969999999998 -0.12036289 0.0621183500000000027 0.17897115999999999 130 0 130 0 3.75934400000000002 193.466995 0.987130139222331948 3.84367457319941019 31 false 0.350449200000000016 1.41475157931015993 0.0613329389499156982 0.022501278999999999 15 9 0.571557899999999952 0 15 false 128 783.284012890921986 2.4084752014007198 325.220001 18.4535680000000006 13 311.384922707209 9.88145007087645055 31.5120679999999993 19.1181449999999984 13 677.322977486002969 12.5724232748596005 53.873702999999999 17.6849300000000014 1.26225969999999998 0 1.4332142000000001 0.664577500000000043 0.768636699999999951 \N \N 0 \N \N \N NOT_AVAILABLE 151.324953112721005 -62.9171099868530987 22.4597628036357015 -12.4578412293026002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450821649650176 2481450821649650176 203809222 2015.5 25.4013420639923986 0.433684304156270017 -2.86337555202065008 0.314880990189856991 0.519210083618310003 0.548542810859597996 0.946526100000000037 2.96885980404214989 1.02146922087837 -5.56269902515052994 0.555810653785983044 0.236237350000000013 -0.00180914610000000001 -0.144731460000000006 0.0536288200000000007 -0.28149360000000001 0.0651338699999999965 -0.018619825999999999 0.0447089499999999973 0.173325389999999996 0.245486960000000004 117 0 113 4 0.592726470000000005 116.246002 0.813905486046400006 0.908258268968690996 31 false 0.157342149999999986 1.54042093961774995 0.0948805321360827042 0.106570004999999995 14 7 0.909162160000000052 0 15 false 113 369.315057374467983 2.05908191501965998 179.358994 19.2698730000000005 12 163.623366869877998 11.4680218847553999 14.2677940000000003 19.8167739999999988 12 331.200156266733984 7.56634975767217988 43.7727780000000024 18.4616930000000004 1.3398410999999999 0 1.35508160000000011 0.546901700000000046 0.808179859999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.393366515053998 -62.9291756979284003 22.4726454731638015 -12.4887783917842992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451032103261568 2481451032103261568 593589128 2015.5 25.4284283393327009 0.0287044907923219988 -2.85313968923757022 0.0208880825929801985 1.44521900211307996 0.0331122760775448971 43.64602 -2.08427191878574014 0.0672541206783578011 -2.82685294013284993 0.045308605848497302 0.117601230000000001 0.209399730000000006 0.0424283739999999979 0.032195933000000003 -0.167540539999999988 0.0372788350000000032 -0.100913589999999997 -0.159074870000000007 0.0307176260000000013 0.244831589999999988 139 0 139 0 -1.65132469999999998 108.165001 0 0 31 true 50.9533959999999979 1.59433275762681004 0.00747183822064787038 -0.00207714619999999984 16 9 0.0715504000000000001 0 16 false 139 41410.9450528090019 15.3308258925532996 2701.15991 14.1455769999999994 15 21782.9934910170014 45.3726059406575999 480.09129999999999 14.5060939999999992 16 28337.3040832488987 38.4931982284219032 736.163940000000025 13.6310230000000008 1.21031519999999992 0 0.875070600000000032 0.360516549999999991 0.514553999999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.437601850395993 -62.9084135852529016 22.5022673881010995 -12.4892158334530006 100001 5637.75 5419.33984 5982.6499 0.0140000004 0.00400000019 0.153600007 0.00650000013 0.00159999996 0.0659999996 200111 0.932075399999999998 0.827705800000000047 1.00871829999999996 0.790715159999999972 0.747757549999999993 0.833672760000000013 +1635721458409799680 Gaia DR2 2481452058600243968 2481452058600243968 1473261785 2015.5 25.3966239554493995 0.235924258496568007 -2.82984066467638984 0.168460645914070006 1.38422660834255007 0.267829070384537016 5.16832099999999972 -12.6976399173797994 0.567899814738878961 -12.6714338849930996 0.298447766430038008 0.179019359999999988 0.0778883550000000063 -0.0310950740000000003 0.16091989000000001 -0.189869840000000012 0.216375490000000004 0.205966430000000006 -0.111031229999999995 0.0335551720000000012 0.197266300000000006 131 0 130 1 1.90923540000000003 156.906006 0.538891216268465034 1.20101239515387004 31 false 0.467917680000000002 1.35978874024449992 0.0539124509718737974 0.0289396440000000005 15 9 0.50518525000000003 0 15 false 130 771.830946614987056 2.18046412288463998 353.976013 18.4695600000000013 14 212.337353913688986 6.12538315566879987 34.6651540000000011 19.5338230000000017 14 877.42395766045604 9.83015528426260055 89.2583999999999946 17.4038959999999996 1.41191709999999992 0 2.12992669999999995 1.06426240000000005 1.0656642999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.352738087694007 -62.9008102980996995 22.4807975859725993 -12.4558627865435998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451233966563584 2481451233966563584 1527824131 2015.5 25.4154290216396994 1.64268520969713006 -2.84794010290992006 2.04013594908149987 \N \N \N \N \N \N \N 0.257182269999999991 \N \N \N \N \N \N \N \N \N 81 0 81 0 -0.00377658700000000009 75.2890015 0 0 3 false 0.0197556930000000013 \N \N 0.155354159999999991 10 6 16.5069769999999991 0 10 false 82 92.3284882841771974 1.21451936409233996 76.0205994 20.7750260000000004 10 48.7753780827880021 5.79490954936898017 8.4169350000000005 21.1308860000000003 9 71.1657107732087013 8.24760343965698084 8.62865399999999916 20.1312430000000013 1.29906919999999992 0 0.999643300000000012 0.355859760000000025 0.643783569999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.406943383900995 -62.9092257516158 22.4918622581548 -12.4796037190823004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451268326259712 2481451268326259712 95676172 2015.5 25.4277987552823994 0.20126068354297999 -2.8336104559899602 0.139493376601419 1.66039059582478998 0.229150748295496004 7.24584399999999995 -12.0855028831306992 0.547007414196156949 -14.5324946608931 0.282416038667749003 0.0719197300000000012 -0.00830055199999999924 0.121662385999999997 -0.00291088100000000015 -0.139318529999999996 0.0268323529999999998 0.138048799999999999 -0.25122224999999998 0.100292005000000004 0.00908766899999999961 121 0 120 1 2.4217019999999998 154.960999 0.486883752661711022 1.43653278510440008 31 false 0.672495069999999973 1.27297520934004993 0.0503520459158606978 -0.0136449429999999997 14 9 0.484472599999999975 0 15 false 121 1058.27823467463008 3.69955636405804 286.054993 18.1268649999999987 14 238.763856845873988 5.15437215563868989 46.3225860000000011 19.4064669999999992 15 1315.06649294904992 13.8333459641364005 95.0649640000000034 16.9645499999999991 1.46826260000000008 0 2.4419173999999999 1.27960199999999991 1.1623154 \N \N 0 \N \N \N NOT_AVAILABLE 151.418127150407997 -62.8910044065217022 22.5090279394710002 -12.4708251926029998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450993448344704 2481450993448344704 1633209926 2015.5 25.4470949079989985 0.637971661837505977 -2.85531251543826015 0.432693152266951986 1.4849038291560599 0.721744289289056984 2.05738200000000004 11.2076885029609006 1.56912879228432001 -4.85478503247173965 0.745966160609381035 0.152338150000000006 -0.0421317370000000024 -0.157996710000000012 0.17161614 -0.262159230000000021 0.246901349999999992 0.222198010000000001 -0.046205000000000003 -0.00401645200000000022 0.189764810000000006 138 0 138 0 2.64866380000000001 180.227005 1.18558380162719001 0.783752432918132014 31 false 0.0669460149999999976 1.23986476948533997 0.13475043914627699 -0.00172263220000000005 16 9 1.39070310000000008 0 16 false 137 203.438396149988989 1.65248458132147991 123.111 19.9172839999999987 12 85.1882458644282963 12.2163601408255005 6.97329199999999982 20.5254380000000012 14 270.207534234958018 12.5808939120088006 21.4776099999999985 18.6826760000000007 1.74694550000000004 0 1.84276200000000001 0.608154300000000037 1.23460769999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.476673955222992 -62.9024463889281975 22.5192046969225999 -12.4980956414564996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450993448345344 2481450993448345344 1227378008 2015.5 25.4628395158832994 0.351567755746503008 -2.85222855102401995 0.252608367764622976 2.31741811974523992 0.381442699981027977 6.07540299999999966 -1.99491271013291005 0.854654487124565043 -0.818347936156448963 0.45372010351811598 0.176888049999999991 0.118090235000000002 -0.0104820499999999997 0.22005828999999999 -0.129815580000000014 0.306158129999999973 0.286024329999999993 -0.166485369999999994 -0.0572046859999999976 0.230538670000000001 131 0 130 1 2.35432150000000018 165.238007 0.903807341478890969 1.68131368290908001 31 false 0.215082699999999988 1.35949868953322994 0.086615315408356805 -0.00219998740000000017 15 9 0.763987799999999995 0 15 false 129 463.014768893118003 1.4213222041306699 325.763 19.0243779999999987 12 109.183270256677005 15.2748030482754995 7.14793300000000009 20.2559989999999992 13 598.665876731308003 13.7209621558259993 43.6314800000000034 17.8189579999999985 1.52878310000000006 0 2.43704030000000005 1.23162079999999996 1.20541950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.505018220141011 -62.8929573970522 22.5353440950134996 -12.5010129181698009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451027808085120 2481451027808085120 1678458581 2015.5 25.4365370848637014 0.666350266116571999 -2.84849606331607985 0.468059307180734019 0.386468892797763974 0.765806557724691972 0.504655999999999993 -2.59909326775906013 1.85238129436590993 -4.05692771201942026 0.865882241048042012 0.133559270000000008 -0.0869960399999999967 0.0600661639999999983 0.0847960700000000012 -0.141101389999999993 0.128466999999999998 0.263912599999999997 -0.239729870000000012 0.0653101799999999955 0.0298820269999999985 120 0 117 3 0.440884439999999989 118.037003 0.622429258964553034 0.17292077807855899 31 false 0.0638450760000000006 1.40346731866600005 0.159913197547365993 -0.00240856220000000001 14 9 1.63071820000000001 0 14 false 116 189.780803713580013 1.73051654181463999 109.667 19.9927349999999997 9 55.4260425879655969 5.49862898878186979 10.0799749999999992 20.9921040000000012 11 245.860071498205997 9.88769081090983981 24.8652669999999993 18.7851999999999997 1.5875478999999999 0 2.20690350000000013 0.999368669999999959 1.20753479999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.449357531960999 -62.9007661840985008 22.5117304411961001 -12.4878777475768992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451165247040512 2481451165247040512 1473281183 2015.5 25.455766158781401 0.395342408029413006 -2.84320725557200005 0.287273837178963987 0.614919270832627984 0.41834608100486298 1.46988180000000002 -4.50320252271708998 0.963149525950076968 2.2787179581832202 0.494171042800400973 0.202832970000000001 0.102007609999999999 -0.0725247700000000023 0.24570322 -0.0510568470000000024 0.326774779999999987 0.295575650000000023 -0.0885929599999999984 -0.0215327459999999984 0.216682390000000002 130 0 129 1 0.969979000000000036 139.190002 0 0 31 false 0.173769089999999987 1.34654380457778999 0.0934886370369245046 -0.00764957539999999974 15 9 0.858723800000000037 0 15 false 132 354.492013226539996 1.97679031403210992 179.326996 19.314350000000001 10 130.202167564233008 20.4834128614958004 6.35646869999999975 20.0648419999999987 13 425.85108638352699 9.02810589059389912 47.1694829999999996 18.1887760000000007 1.56859170000000003 0 1.87606619999999991 0.750492099999999995 1.12557409999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.482558418763006 -62.8878055586982967 22.5320145753605985 -12.4900253836974997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451272621429760 2481451272621429760 933182952 2015.5 25.4398546552437992 0.0583726141335074028 -2.83697259948840008 0.0415329093170576993 3.83765294701121018 0.0679100994070136049 56.510784000000001 51.8652833031457021 0.139437047748132009 -5.04301275381561975 0.0818958759573795991 0.117453050000000003 0.136108040000000013 0.0294675660000000006 0.0893242900000000006 -0.234218969999999999 0.13437963 0.0637884439999999997 -0.163077100000000003 0.0228960300000000012 0.213796569999999991 139 0 139 0 1.83228300000000011 165.520996 0.108712113124776993 0.614775857561234984 31 true 7.95549199999999956 1.31237068420825009 0.0141253401593472994 -0.00313763090000000007 16 9 0.131227719999999992 0 16 false 139 7763.93110414521016 7.03981328352819968 1102.85999 15.9631609999999995 14 1977.54328008071002 17.0398898766101006 116.053759999999997 17.1110730000000011 15 8821.59507958831091 21.9568617348486015 401.769400000000019 14.8980519999999999 1.39093700000000009 0 2.21302030000000016 1.14791109999999996 1.06510930000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.445180107731005 -62.8889278260202005 22.5192283727986009 -12.4783815856615998 100001 3580.5 3519.5 4052.83008 0.249200001 0.120899998 0.495299995 0.143199995 0.0784000009 0.277399987 200111 0.559664300000000003 0.436814959999999974 0.579232700000000045 0.0463793539999999976 0.0446410139999999997 0.0481176940000000025 +1635721458409799680 Gaia DR2 2481451371405475840 2481451371405475840 972265135 2015.5 25.4449655414465994 1.70607069707689996 -2.83141077145028985 1.36793219345493 1.06211675557634999 1.72590259121601997 0.615397900000000053 7.81883609444343008 4.6093426160210198 -7.11283257084389042 3.06464689527990997 -0.05782553 -0.445781299999999991 -0.587491749999999979 0.19783690000000001 0.309670840000000003 0.26519334 -0.52126866999999999 0.415060600000000002 -0.316461949999999992 0.0985490299999999958 79 0 78 1 0.933091899999999974 84.1300964 0 0 31 false 0.0221869869999999983 \N \N 0.028670306999999999 10 7 4.22897199999999973 0 10 false 80 95.7029003123366948 1.54009690199115989 62.1408005 20.7360529999999983 8 87.4734985407879009 11.1730330612107007 7.82898430000000012 20.496696 9 77.2041400824777071 10.7930739331442993 7.15311859999999999 20.0428180000000005 1.72071730000000001 0 0.453878400000000015 -0.239356999999999986 0.693235399999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.450124927469005 -62.8817228280853016 22.5261854481206996 -12.4750877393623991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410070999952128 2481410070999952128 753735062 2015.5 25.5001978921233992 0.728490685354230005 -2.84391087640018991 0.519836460105505993 1.5314640376867299 0.762121146853560028 2.00947599999999982 23.1000180005306994 1.84943161362835995 7.18067617850596029 0.864757777763479951 0.160607980000000011 -0.0660772250000000033 -0.128326859999999987 0.277365179999999989 -0.173446390000000006 0.39536184000000002 0.363979459999999977 -0.0913553799999999999 -0.0942364200000000013 0.213246700000000011 127 0 122 5 1.74790280000000009 145.056 1.92612077904869006 2.5661573509353599 31 false 0.0593613159999999973 1.24352293227920008 0.160135328251428011 -0.0222723699999999997 15 9 1.64853870000000002 0 15 false 123 205.714133194190993 1.68078663260241989 122.391998 19.9052049999999987 12 62.3825592727010019 10.7595795560421994 5.79786200000000029 20.8637300000000003 13 252.588953916348004 10.0668663000334995 25.0911200000000001 18.7558839999999982 1.53111269999999999 0 2.10784530000000014 0.958524700000000007 1.14932060000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.57126410333899 -62.869515757157302 22.5740174165076013 -12.5070019898662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410036640261888 2481410036640261888 137197891 2015.5 25.5180920160778015 0.571957600312405945 -2.84002158315470998 0.381312853292070986 2.63915972789230979 0.587955314825555964 4.48870799999999992 42.0406124471402975 1.41714452456338003 -6.9907133659859797 0.597166412166759031 0.0989986499999999936 -0.0616441630000000018 -0.269822600000000024 0.285790829999999996 -0.0247500559999999994 0.405941580000000024 0.341098279999999976 0.0573226179999999988 -0.0238865319999999985 0.137137580000000009 114 0 114 0 2.40784999999999982 147.738998 1.06931914114229998 1.14209215415423992 31 false 0.116147205000000003 1.35387954302161995 0.112528481494760996 -0.049281514999999998 13 7 1.26571689999999992 0 13 false 111 282.306265312656024 1.44493700785126999 195.376007 19.5615629999999996 11 58.3227859398464972 5.85146322023105014 9.96721400000000024 20.9367920000000005 12 405.43354758280401 14.5415048548947006 27.8811259999999983 18.2421199999999999 1.64274190000000009 0 2.69467159999999994 1.37522889999999998 1.31944269999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.603047029354002 -62.8583625137302988 22.5925063475560002 -12.5099572970935 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410105359697664 2481410105359697664 595742163 2015.5 25.5080181129434003 0.162624768209808007 -2.82841711778540983 0.110411827408644997 1.5849288623134099 0.161350150840348011 9.82291500000000006 -3.15318066181660983 0.404858361769835973 -13.1035816635263007 0.189232952333486998 0.0546410940000000012 -0.0274581399999999989 -0.186386820000000009 0.274409699999999979 -0.0919367199999999996 0.396808830000000001 0.290478320000000012 -0.0677037459999999952 -0.0894119099999999972 0.13857469 120 0 119 1 3.1947489 168.496994 0.34575772371722302 1.30077633688801009 31 false 1.30089879999999991 1.27991611083796997 0.034769619544740997 -0.0930607299999999943 14 8 0.364096370000000003 0 14 false 117 1689.56505843769992 3.45617102105165008 488.855011 17.6189290000000014 11 467.059752929120975 20.2582012185830997 23.0553419999999996 18.6779580000000003 11 1881.33963042158007 15.6694482642605006 120.064189999999996 16.5757520000000014 1.38994309999999999 0 2.10220530000000005 1.05902859999999999 1.04317670000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.572239878484993 -62.8521703091809982 22.5872931028061004 -12.4954660989847994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410144014602112 2481410144014602112 887882401 2015.5 25.5242427628650006 0.163546643450559998 -2.82624061386058978 0.117460751857231996 11.5433926620678999 0.174197973882229989 66.2659400000000005 105.99118098788 0.408929364943783014 9.51569790233446966 0.207605096202165995 0.148949770000000009 0.0599277500000000019 -0.0262821430000000009 0.233505249999999998 -0.0857350999999999946 0.315743739999999995 0.307112930000000006 -0.163871569999999994 -0.0501897369999999982 0.171799940000000012 129 0 127 2 5.01245299999999983 217.259995 0.569694468094776973 3.73124844111833998 31 false 1.03968330000000009 1.13061018281021997 0.035799029104849403 -0.0458187399999999967 15 9 0.366450070000000017 0 15 false 127 1758.12291974908999 3.61839534456691014 485.88501 17.5757429999999992 13 184.845735591172001 8.53235955782782973 21.6640820000000005 19.6843639999999986 13 2654.70133059001 16.4109473779673998 161.764049999999997 16.2018810000000002 1.61510160000000003 0 3.48248300000000022 2.10862160000000021 1.37386129999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.602306130031991 -62.8432780820827972 22.6035482503463001 -12.4994004692585996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410040935387776 2481410040935387776 816491488 2015.5 25.5263470187316983 0.0328066007598330003 -2.83812242040822005 0.0236384986510146007 1.30618267591097004 0.0357378172160607993 36.5490339999999989 -16.8900073378590996 0.0776563754289002067 -17.650837082489101 0.0520979341365970031 0.105254083999999998 0.192159030000000008 0.0308981280000000004 0.135174600000000006 -0.0410678459999999981 0.171474130000000002 0.00796420899999999987 -0.213215660000000001 -0.123449610000000001 0.24114932 124 0 123 1 -1.30280890000000005 98.5038986 0 0 31 false 37.7399300000000011 1.57499189591143995 0.00892457901977562057 -0.047005232000000001 14 9 0.0814873500000000001 0 14 false 123 30237.5797233365993 10.9304463055708005 2766.36011 14.4869990000000008 12 15294.5514406698003 65.0323862575518064 235.183609999999987 14.8900459999999999 11 21521.8259559770995 11.7628931596215995 1829.63709999999992 13.9297219999999999 1.21757029999999999 0 0.96032430000000002 0.403047560000000027 0.557276699999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.617602942253001 -62.8531200498185001 22.6010754167664984 -12.5112227449480002 100001 5376 5346.60986 5527.5498 0.203299999 0.104000002 0.335099995 0.0909999982 0.0469999984 0.165999994 200111 0.982052150000000013 0.928941130000000004 0.992879500000000026 0.725773099999999949 0.679459499999999994 0.772086700000000015 +1635721458409799680 Gaia DR2 2481409521244143104 2481409521244143104 1079834087 2015.5 25.5804742738509994 0.704705338616274046 -2.83301290518154003 0.47709382718486798 -0.259454195661391995 0.722549065244414979 -0.359081770000000022 7.4149364169974703 1.9035339297112599 -5.21004697198130984 0.833229348111014012 0.0458412880000000009 -0.190936949999999994 -0.332258600000000015 0.113098909999999997 0.119143929999999995 0.163862289999999994 0.120445250000000004 0.151868730000000007 0.17040037999999999 -0.0553793500000000008 119 0 118 1 0.711306870000000036 123.325996 0 0 31 false 0.0600116629999999998 1.88213312042478997 0.153825084264452988 -0.0904314400000000018 14 9 1.69172189999999989 0 14 false 118 181.739447489552987 1.78684378028203006 101.709999 20.0397430000000014 11 64.0600387699116993 10.7352879534306993 5.96724000000000032 20.8349200000000003 11 167.943060348402014 7.61292414649780991 22.060257 19.1990149999999993 1.27656980000000009 0 1.63590619999999998 0.795177460000000003 0.840728759999999964 \N \N 0 \N \N \N NOT_AVAILABLE 151.719816679106003 -62.825342437930999 22.6544995579529989 -12.5263442256570006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410277160243456 2481410277160243456 1477579911 2015.5 25.5751978278339998 1.45672553815995998 -2.82729506504548 0.98809763954458496 -0.679763769384117977 1.53433981568774991 -0.443033400000000022 -3.66188616898595987 4.22150809631394974 -3.4319239064593301 3.02388026354213002 -0.0918539500000000037 -0.121948405999999995 0.130233359999999992 0.0458532420000000024 -0.0570585300000000031 0.0161715169999999998 -0.199039710000000009 -0.333981099999999975 -0.143320589999999998 0.0522938100000000031 86 0 86 0 -1.53079959999999993 62.4742012 0 5.58255096420897958e-16 31 false 0.018294912 1.84776918753797004 0.348850085681906008 -0.16067511000000001 11 8 3.72799419999999992 0 11 false 87 90.6547383955580983 1.76415306737481004 51.3871002 20.7948899999999988 6 56.6689014427081972 13.5825656042241008 4.17217970000000005 20.9680269999999993 7 89.376893679344505 9.15918276049758973 9.75817299999999932 19.883858 1.61101110000000003 0 1.08416939999999995 0.173137659999999999 0.9110317 \N \N 0 \N \N \N NOT_AVAILABLE 151.704023007443993 -62.8224383697975028 22.6516317038110984 -12.5190896556481004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409555603883136 2481409555603883136 1217800421 2015.5 25.5921377652192987 0.291275916335332008 -2.82961166996991009 0.180756949705613013 1.19641117202188996 0.284145380040030981 4.21056000000000008 -2.33621630148393011 0.772255961779627964 -8.21378627157934993 0.347466255021721016 -0.0707120299999999952 -0.070738880000000004 -0.169817949999999995 0.0956092800000000048 -0.015882120999999999 0.121480464999999996 0.127581730000000004 -0.0493179899999999991 0.111690250000000005 -0.134015489999999987 143 0 142 1 2.12867700000000015 174.557999 0.487944277777191016 0.673367315570534974 31 false 0.315097059999999984 1.1747997232479499 0.0633215267553074029 -0.162971630000000006 16 9 0.68300419999999995 0 16 false 141 556.09187140072595 2.02086524671249013 275.174988 18.8254990000000006 11 111.081935550915006 9.85643054552276077 11.269997 20.2372799999999984 13 699.114376491006055 12.8618767045692994 54.3555500000000009 17.6505490000000016 1.4569468000000001 0 2.58673099999999989 1.41178129999999991 1.17494959999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.739654939425009 -62.817270055800698 22.6668782536875 -12.5274623352968 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409456819857920 2481409456819857920 560848393 2015.5 25.5946085265020002 2.54748332804794986 -2.84613077851708018 0.749672222559944035 \N \N \N \N \N \N \N -0.794314150000000052 \N \N \N \N \N \N \N \N \N 115 0 115 0 4.33868899999999957 186.768005 2.20626977444073979 2.90620938766425985 3 false 0.0561274599999999971 \N \N -0.34982975999999999 13 6 4.42413499999999971 0 13 false 117 215.985484079548996 2.08666163349291001 103.508003 19.8523040000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.760069715783004 -62.8311277564548973 22.6630101621591997 -12.5437323495561994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409452524660992 2481409452524660992 237815407 2015.5 25.5946286268544014 0.137798750361735001 -2.84590621017130019 0.0874648205720307964 1.12423206004720999 0.134770938550426989 8.34179899999999996 -6.27655925032715967 0.331763517865257984 -9.34259297758628016 0.167505317174209994 -0.0409150459999999966 0.0423121379999999991 -0.187679769999999996 0.153302359999999999 -0.0789471600000000023 0.201930419999999999 0.0612540000000000029 -0.0305217490000000008 0.0385975399999999996 0.0115107270000000001 151 0 149 2 0.955590500000000009 160.117004 0.217657502292630006 0.523347447018739031 31 false 1.33843800000000002 1.40210410133006991 0.0300007930140133994 -0.135316479999999989 17 9 0.297381820000000019 0 17 false 148 1612.55985558318002 3.35789069404484986 480.230011 17.6695770000000003 15 524.847702517912012 9.25894960253483035 56.6854480000000009 18.5513060000000003 17 1917.94034273937996 9.74745243187411958 196.763239999999996 16.5548320000000011 1.51485110000000001 0 1.9964732999999999 0.881729100000000043 1.11474420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.759898102075994 -62.8309163482542985 22.6631138400668988 -12.5435308752888997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409246366230144 2481409246366230144 196154951 2015.5 25.6059680307784987 0.111968824389314006 -2.84838799125639008 0.0704502236726617936 0.400688232460366001 0.108832063165653997 3.68171120000000007 1.17991031248200007 0.289044138166469011 -0.0320059457751089987 0.141408674423905006 -0.100930640000000002 0.0193705339999999983 -0.0435684000000000002 0.0475819999999999993 -0.0203873299999999986 0.0572043299999999977 0.107713564999999997 -0.126958619999999994 0.11893244 -0.148220639999999987 142 0 142 0 0.668915570000000015 147.671997 0.124957541788145998 0.258650432512498973 31 false 2.14027479999999981 1.54420028494186989 0.0246748315144708005 -0.16224675999999999 16 9 0.260569039999999974 0 16 false 141 2346.12909452443 2.73569110673262017 857.599976 17.2624859999999991 15 1099.2820368673099 11.7472186720309004 93.5780699999999968 17.7486150000000009 15 1793.29278313764007 10.6457318499699998 168.451809999999995 16.6277919999999995 1.23291369999999989 0 1.12082290000000007 0.486129760000000022 0.634693150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.784627851220989 -62.828289115036398 22.6729700302362005 -12.5500011145929005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409486884401280 2481409486884401280 58172031 2015.5 25.6093209721546984 0.618239813295159979 -2.83927414293656 0.377094238260290981 1.52231093201207002 0.604939236610035014 2.51646919999999996 2.9765993943599498 1.6697364659729601 5.90779624165803963 0.705943744531331019 -0.0389608599999999999 -0.163240689999999994 -0.257392320000000008 0.12524861000000001 -0.0379908600000000013 0.167933510000000008 0.143062600000000012 0.0185153470000000014 0.0874198149999999979 -0.102820739999999994 143 0 142 1 0.460256869999999985 144.070007 0 0 31 false 0.0732422300000000054 1.61982968065342003 0.128216494570705997 -0.162288080000000001 16 9 1.47682179999999996 0 16 false 142 194.574491983683998 1.55580152935620997 125.064003 19.9656500000000001 9 72.5998518900372005 23.6379249873738004 3.07132940000000021 20.6990489999999987 12 246.765865252063008 14.5369800941262 16.9750419999999984 18.7812079999999995 1.64135439999999999 0 1.91784099999999991 0.733398439999999985 1.18444250000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.782667349537007 -62.8186208688762022 22.6795918166858002 -12.5427555742429995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409177648676736 2481409177648676736 438721684 2015.5 25.6233667129335991 8.34697733935525932 -2.85871626781468979 4.41672998083107959 \N \N \N \N \N \N \N -0.763162140000000044 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.9556766000000001 62.9421005 3.87916446376040014 1.51326569781114006 3 false 0.0158789200000000012 \N \N -0.117868799999999996 6 4 6301.70799999999963 0 6 false 51 81.0506985489539034 1.45676248996000002 55.6375999 20.9164729999999999 5 33.4083307896961017 7.69306713558825006 4.34265399999999957 21.5417519999999989 5 102.040174734700003 12.2773213608072993 8.31127399999999916 19.7399920000000009 1.67115780000000003 0 1.80175970000000008 0.625278499999999959 1.1764812 \N \N 0 \N \N \N NOT_AVAILABLE 151.828711039119014 -62.8301348081914028 22.6856390170602005 -12.5659924163780996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409280725970432 2481409280725970432 1422856215 2015.5 25.6257644900091002 0.482278991537097024 -2.84267996970225001 0.308231986523888002 1.53316951541587998 0.469374080068765021 3.26641270000000006 33.5986690547066971 1.2086071276046999 2.72765825350085001 0.603617842549594052 -0.0352433659999999982 -0.0458666979999999974 -0.238410220000000006 0.15652640000000001 -0.060728200000000003 0.207594649999999992 0.0256452430000000016 0.00503265299999999978 0.0246542020000000001 0.000782453050000000028 141 0 140 1 3.65167740000000007 203.453995 1.53919488117687009 3.37577038064782009 31 false 0.112868830000000003 1.20336485013433991 0.118146349354954994 -0.135146139999999998 16 9 1.06952350000000007 0 16 false 140 333.375329990623015 1.8206268086578099 183.110001 19.3810329999999986 9 110.380205589632993 15.9791351547854994 6.90777100000000033 20.2441600000000008 10 450.500447781886976 7.68816335766623027 58.5966260000000005 18.1276820000000001 1.68243000000000009 0 2.11647799999999986 0.863126750000000054 1.2533512 \N \N 0 \N \N \N NOT_AVAILABLE 151.818327514960004 -62.8146298100828986 22.6939578247705995 -12.5519579071017997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409388100381056 2481409388100381056 179893739 2015.5 25.6316244629244991 0.0260934998162038016 -2.84292177952784009 0.0175650693750637986 3.24190859195886993 0.0262827671946477999 123.347305000000006 4.79205925826086965 0.0582555879144441013 -24.0164556409096015 0.0382233311449726998 -0.0311503280000000014 0.232406479999999999 -0.03984621 0.056360368000000001 -0.0293182150000000016 0.038527249999999999 -0.165387499999999993 -0.0876769399999999949 0.0508051100000000005 0.0533033870000000007 150 0 150 0 -2.90014649999999996 100.484001 0 8.34490122535248036e-16 31 true 64.5373400000000004 1.50540460263346998 0.00643429705723605992 -0.137498270000000006 17 9 0.0641326599999999941 0 17 false 149 51531.2324121295969 20.9302160369826993 2462.05005 13.9081899999999994 16 21445.9404150363007 31.0419442967878005 690.869749999999954 14.5230254999999993 15 42910.6840633660031 42.6277476623090976 1006.63739999999996 13.1805070000000004 1.24888580000000005 0 1.3425187999999999 0.614835739999999964 0.727683069999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.830117351106992 -62.8123282085229988 22.6994434917623984 -12.5543332564415007 100001 4643.2002 4548.83984 4807.39014 0.384000003 0.285699993 0.610499978 0.184200004 0.135000005 0.296299994 200111 0.750363230000000048 0.699982940000000053 0.781816359999999988 0.235780640000000014 0.230982419999999994 0.240578860000000005 +1635721458409799680 Gaia DR2 2481409383805186432 2481409383805186432 267736931 2015.5 25.6295152125353987 1.15680259069358993 -2.83891655927532005 0.713540380491237025 0.744130098307050014 1.14740436838993998 0.648533460000000006 2.56592170894858018 2.77384615679702007 2.20246486499760019 1.29729331060950992 -0.0487341300000000005 0.0515606399999999979 -0.153517189999999998 0.113561460000000003 -0.0986017700000000052 0.142805259999999989 0.137985329999999989 -0.0217222889999999988 0.123224920000000002 -0.0432474050000000027 145 0 145 0 17.3792760000000008 676.737 6.03882754543689959 23.9680073862969998 31 false 0.0197164600000000016 1.56295677134505007 0.22012507827101499 -0.118360825000000003 17 9 2.44078060000000008 0 17 true 146 242.201275858980011 2.2556571900331801 107.375 19.7279240000000016 15 256.340328023789993 6.64686358205771999 38.5656049999999979 19.329346000000001 16 499.38555095252201 6.21223027779629966 80.3874799999999965 18.0158309999999986 3.12023900000000021 0 1.31351470000000004 -0.398578639999999984 1.7120934000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.822181966637004 -62.8096203169533993 22.698943830145101 -12.5498341534516999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409383805189504 2481409383805189504 58725984 2015.5 25.6256603721164993 0.372103020561106002 -2.83330606177328992 0.242738420424430001 -0.360822006363194003 0.376514179185594988 -0.958322470000000037 8.81782517564498924 0.932287485302519037 -4.65459948058331019 0.462351897921750021 -0.0154279350000000003 0.000693550039999999974 -0.260391119999999976 0.152101349999999996 0.0855195700000000031 0.189009160000000009 -0.00828752500000000045 0.0293019540000000016 0.0403780970000000017 -0.0405180600000000016 129 0 126 3 2.23523400000000017 158.410004 0.589677404061600963 0.631013955883656052 31 false 0.20505986000000001 1.37846560648001004 0.0917838958066348048 -0.100336629999999996 15 9 0.826889160000000012 0 15 false 125 414.290693125627001 1.67395196026411996 247.492996 19.1451029999999989 12 160.548254077740012 12.0418859999271 13.3324839999999991 19.8373740000000005 12 407.053133828908017 10.1148314504327992 40.2431950000000001 18.2377929999999999 1.37005580000000005 0 1.59958080000000002 0.692270300000000005 0.90731050000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.80929262263399 -62.8062133063644978 22.6973872404910999 -12.5432014718382998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451921162801920 2481451921162801920 881521959 2015.5 25.3597929698552988 1.54777995676712998 -2.82142180177481006 0.976425833845770974 -1.43110770564179002 1.53912806929467005 -0.92981720000000001 11.4485516440133992 3.2215872042454099 -5.73295375845828037 1.75309127887276994 -0.0166559099999999995 0.190815519999999988 -0.353089360000000019 0.224441229999999992 0.102819430000000003 0.297520070000000025 -0.171867400000000004 0.145465669999999991 0.0188686810000000017 0.0673928859999999991 74 0 74 0 1.96670210000000001 93.9567032 1.4773450282287599 0.343490868829205986 31 false 0.0243149900000000016 2.25023015089674017 0.280362293215404013 -0.0240711740000000007 9 8 2.90925859999999981 0 9 false 75 99.7576117126988038 2.05997923003871009 48.4264984 20.6909999999999989 4 34.2173197623983967 1.82049964144369003 18.7955649999999999 21.5157740000000004 8 131.856628118168999 3.88742176090817981 33.9187849999999997 19.461663999999999 1.66477469999999994 0 2.05410959999999987 0.824773800000000001 1.22933580000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.271746088449987 -62.9087645129455026 22.4489433649121999 -12.4344960906850996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451753657766400 2481451753657766400 832243564 2015.5 25.3819226787077987 0.178855899145014013 -2.82447648631411008 0.128988788018586986 -1.14258696752292011 0.206124359119615991 -5.54319239999999969 2.2907887911019098 0.476169815131441021 -1.38802941608194996 0.235803413372172005 0.130638580000000004 0.0094060719999999997 0.153506370000000003 0.0496559369999999972 -0.106087189999999998 0.0632145259999999931 0.27516073000000002 -0.254662249999999979 0.141193180000000001 -0.00412336700000000018 122 0 122 0 2.51834200000000008 159.085999 0.457948450144032015 1.66259776973052009 31 false 0.843470999999999971 1.62427346053876009 0.0399125270766417031 0.00271355219999999979 14 9 0.422992829999999986 0 15 false 123 1312.36760864915004 3.80445390697419983 344.955994 17.8932269999999995 12 671.759337600460981 19.3902930553445003 34.6441039999999987 18.2833539999999992 11 1011.43215350717003 11.9739220738934993 84.4695799999999934 17.2495779999999996 1.28256100000000006 0 1.03377530000000006 0.390127180000000018 0.643648149999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.318551356911001 -62.9021756267198029 22.4688374804830993 -12.4454713891958999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455425854352768 2481455425854352768 653031886 2015.5 25.3516583569744007 0.199048634485331 -2.78191934528445994 0.134060321138848998 3.13037732733865992 0.224092418497436996 13.9691349999999996 22.3038194788309987 0.458942608422168996 -8.50600534293415045 0.241726303762946987 0.114411763999999999 0.173081929999999995 -0.0468505769999999974 0.0909358039999999951 -0.085292555000000006 0.0765858140000000021 0.102420079999999997 -0.0485230349999999991 0.169924839999999994 0.080173750000000002 142 0 142 0 4.84494450000000043 232.914001 0.77798353152111599 4.49902730657050043 31 false 0.605593399999999948 1.25652371206791003 0.0449138185464807993 -0.0172748729999999996 16 9 0.405157829999999997 0 16 false 141 1230.45312041599004 2.29153495287483011 536.955994 17.963203 15 249.675380209892012 13.9066504603739993 17.9536669999999994 19.3579480000000004 15 1574.9214866442901 10.6802121168056008 147.461620000000011 16.7687719999999985 1.4828657999999999 0 2.58917619999999982 1.39474490000000007 1.19443129999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.218947460984992 -62.8763969428044973 22.4560955064891985 -12.3947762091287004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452402197496448 2481452402197496448 1689411954 2015.5 25.3678277577900992 0.439451688118091988 -2.79509010896159982 0.302381189174011022 0.938155097912994007 0.480176731007076973 1.95377040000000002 -0.974994465445515046 1.02914273884620999 -3.57832178689844005 0.50623545549890403 0.174857810000000002 0.112600320000000004 -0.171542660000000013 0.165429090000000001 0.0306383739999999995 0.183654170000000005 0.168549900000000002 0.0529532949999999974 0.154829889999999998 0.110994990000000002 130 0 130 0 0.367413549999999978 130.214005 0 0 31 false 0.137860659999999996 1.7196848981083801 0.0986874950498242975 0.018162826 15 9 0.909846700000000008 0 15 false 130 310.50471464581301 1.95232481944915004 159.044006 19.4581949999999999 13 179.773979401644993 11.7845812521659994 15.2550159999999995 19.7145709999999994 13 201.643464497923986 9.76210933670894931 20.6557269999999988 19.0004600000000003 1.22837890000000005 0 0.714111300000000004 0.256376270000000017 0.457735060000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.26326467596499 -62.8815096409248966 22.4665079233190994 -12.4129664182748005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455391494614784 2481455391494614784 970953120 2015.5 25.3770389235703 0.804087625834143949 -2.77909677485108997 0.602315357456597034 -0.160993421415234012 0.877678234781297029 -0.183431029999999995 3.15911340247517014 1.9986422621795501 -4.8496887171485703 1.30423869880428001 0.150929690000000005 0.0226438179999999996 -0.185863090000000009 0.107127144999999993 -0.0333612449999999977 0.142051939999999988 -0.161016259999999994 -0.0352101439999999988 -0.0744701700000000022 0.250943750000000021 112 0 112 0 -1.54315080000000004 85.4011002 0 0 31 false 0.0431903969999999984 1.5210204339264799 0.212953771864507008 0.0570157769999999967 13 9 1.79539000000000004 0 13 false 113 138.993334530117011 1.48950991539490007 93.3147964 20.3308810000000015 12 83.732091681282995 8.02076778234411947 10.4394109999999998 20.5441590000000005 12 130.306034657411999 5.6159339497060099 23.2029150000000008 19.4745080000000002 1.53991649999999991 0 1.06965069999999995 0.213277820000000007 0.856372829999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.266716146815014 -62.8631260910075014 22.4812934644881004 -12.4014811439165999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452539638137344 2481452539638137344 34797273 2015.5 25.3849888314748 2.8757577176662199 -2.78288761020183983 5.19924690639251974 \N \N \N \N \N \N \N -0.483169799999999983 \N \N \N \N \N \N \N \N \N 61 0 61 0 1.2741667000000001 69.8207016 2.52063653762628004 0.617796737766107995 3 false 0.0148138569999999997 \N \N 0.0773660840000000016 7 5 19.5006500000000003 0 7 false 63 85.8707532327801033 2.05898715846692992 41.7052994 20.8537520000000001 3 30.4827600170567017 8.30051755633929922 3.67239259999999978 21.641252999999999 6 148.875546348580002 16.1368009397932006 9.22584100000000085 19.32986 2.0887007999999998 0 2.3113918 0.787500399999999989 1.5238913999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.286006564923014 -62.863201852468201 22.4874250935742985 -12.4079279066693999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455494573832448 2481455494573832448 705139832 2015.5 25.3748010095844982 0.747820319805403977 -2.77313391600335013 0.597350163600975037 0.302948580850366023 0.765006474827736982 0.396007869999999984 1.35478196128097994 1.91202771249782 -8.8824866613111908 1.34575331355767003 0.0955578759999999999 -0.035640129999999999 -0.381443699999999997 0.0472030500000000033 0.161206719999999998 0.0809938099999999994 -0.453438039999999987 0.126189369999999995 -0.116959759999999996 0.170615899999999987 102 0 101 1 -0.0420628200000000008 94.7558975 0 0 31 false 0.0604364299999999993 1.95437501072447994 0.196037707374671993 -0.0176855960000000013 12 7 1.72411800000000004 0 12 false 101 172.284094707244009 1.15740644666600989 148.854004 20.0977539999999983 11 102.101536157045004 7.78638377894533029 13.1128309999999999 20.3288079999999987 9 141.356298536113997 12.3993333892543003 11.4003139999999998 19.3861309999999989 1.41311849999999994 0 0.942676540000000007 0.23105429999999999 0.711622239999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.256748102858012 -62.8586676751195981 22.4814119916287005 -12.3951141355733991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455494576955520 2481455494576955520 587105477 2015.5 25.3707495566657997 0.118339383408934004 -2.77180653630678009 0.0798936326104083966 3.06671428751860997 0.132441008954031991 23.1553229999999992 19.8300698596278018 0.274715764399136975 26.136753576109701 0.147665757608838988 0.109996005999999993 0.163499270000000002 -0.0681157039999999991 0.0746065300000000042 -0.0834808949999999994 0.0610038999999999998 0.0493604760000000004 -0.0368286040000000009 0.166211859999999989 0.0866665840000000048 141 0 141 0 1.88664999999999994 168.778 0.193095429925834006 0.500839903008811982 31 true 1.75061430000000007 1.28094214107832993 0.0275185854986598998 -0.016029729999999999 16 9 0.245260270000000002 0 16 false 139 2032.6458192821101 2.79004108985323018 728.536011 17.4182109999999994 14 455.201253228038013 12.8262615756787 35.4897840000000002 18.7058800000000005 15 2518.37913425258012 13.9866605562275996 180.055790000000002 16.2591169999999998 1.46291119999999997 0 2.4467620000000001 1.28766819999999993 1.15909390000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.247478813773 -62.8591752734403997 22.4780595540843002 -12.3923907755805001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455808106892032 2481455808106892032 948451799 2015.5 25.3740664993494995 0.213918927534613001 -2.74343763386882999 0.121985067579804998 1.44823061828471999 0.218290031925472 6.63443330000000042 12.3267362857877991 0.450036291475874983 3.5368120329592001 0.213295742057006993 -0.0309186749999999996 0.228572200000000003 -0.242347019999999996 0.165202870000000002 -0.0747059000000000056 0.178035870000000013 0.0598077899999999996 0.0600752049999999996 0.15146728000000001 0.0425134640000000008 123 0 121 2 -1.07795039999999998 99.7396011 0 0 31 false 0.812022200000000027 1.38350718906746994 0.0445601009640785028 -0.0986021460000000016 14 9 0.401991299999999996 0 14 false 120 1031.45434477337994 2.85020139900962022 361.888 18.1547410000000013 12 287.960507556303014 10.1270999991865995 28.4346469999999982 19.2030560000000001 13 1146.13187172411995 12.2791981647678998 93.3393099999999976 17.1138340000000007 1.39035949999999997 0 2.08922199999999991 1.04831500000000011 1.04090689999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.227796073738006 -62.8320629694486996 22.491900781934401 -12.3672313366877997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461683622152448 2481461683622152448 1318335079 2015.5 25.375599838076301 0.368845348390815009 -2.73425911672714017 0.242665291626535995 2.60363351376620011 0.39430517521657199 6.60309200000000018 -0.981292086485922033 0.843012212025281982 -6.14109976176626038 0.45643847253848302 0.0362775739999999999 0.116165905999999999 -0.148985680000000009 0.0919341439999999954 -0.0635405700000000045 0.0978577000000000058 -0.0291077200000000001 0.00972741750000000009 0.1440438 0.0604928900000000005 124 0 123 1 17.889997000000001 659.315002 1.84711172623290998 20.315651218955999 31 false 0.204300969999999998 1.37665135888188006 0.081275908186512702 -0.0414519979999999968 14 9 0.743166600000000011 0 15 false 123 1078.28643046674006 5.18765195145727986 207.856003 18.1065310000000004 12 487.828294493065982 20.9417914263522 23.2944870000000002 18.6307200000000002 10 1243.04125443555995 35.5758873621590013 34.9405560000000008 17.0257049999999985 1.60520390000000002 0 1.60501479999999996 0.524189000000000016 1.08082579999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.222347968171988 -62.8230963163898011 22.4968159984357996 -12.3592601943767999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461679328527104 2481461679328527104 638978065 2015.5 25.3757889826656999 7.22698647584897014 -2.73400144155794012 2.50076195028862003 \N \N \N \N \N \N \N -0.990227700000000044 \N \N \N \N \N \N \N \N \N 70 0 69 1 3.2062816999999999 106.620003 1.17797304060144992 2.05303566448157992 3 false 0.18243624 \N \N -0.468529599999999991 8 5 9.43458099999999966 0 13 false 69 458.176241459798973 2.72340780137247007 168.235992 19.0357839999999996 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.222484687757003 -62.8227829614520985 22.4970928976097007 -12.3590901054982005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452092959837696 2481452092959837696 33104402 2015.5 25.4105369837307009 0.658940479240106014 -2.82357605935710998 0.43176535336379801 0.475839626570023988 0.72926858662281302 0.65248879999999998 0.184984228990941996 1.79067012110563994 -26.7992859417539009 0.783693795539190052 0.0446126130000000024 -0.0442885120000000021 0.0271977880000000005 0.0538529049999999995 -0.139441769999999993 0.0860655599999999993 0.279029760000000016 -0.195901240000000004 0.113844219999999996 -0.0585025100000000006 129 0 127 2 3.30316330000000002 180.345993 1.85154488592484001 2.59364812202539019 31 false 0.0660677399999999998 1.35331984620025003 0.140342959269402989 -0.0388789770000000021 15 9 1.57369099999999995 0 15 false 127 234.636022705399 2.07195399660942003 113.244003 19.7623789999999993 13 94.3435915352205967 7.03251921314403017 13.4153339999999996 20.4146080000000012 12 216.685398620976002 8.93113727960481008 24.2617930000000008 18.922346000000001 1.32558069999999995 0 1.49226189999999992 0.652229300000000012 0.840032600000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.374523232375992 -62.8892420025847017 22.4963909018667003 -12.4551511674099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905472 2481451341340905472 617108872 2015.5 25.4214860146622996 0.217211211242688995 -2.82309247649084982 0.139386393919958995 3.05867505676628992 0.234113861449031013 13.0649029999999993 -7.34345593076571035 0.557547153998130041 -20.2177010095224006 0.252433489351993001 0.0859772699999999945 -0.0025087871999999998 -0.178176919999999989 0.130643680000000012 -0.223292070000000009 0.190907959999999988 0.196962130000000013 -0.0514537249999999988 0.0212654289999999989 0.111021430000000004 130 0 129 1 8.70525199999999977 316.570007 0.949315205195486955 11.0226793476969007 31 false 0.642781099999999994 1.23010204381062005 0.0449679241462673032 -0.0434612100000000001 15 8 0.494377879999999992 0 15 false 127 1757.25183106613008 3.97429087212521992 442.154999 17.5762800000000006 12 402.897041216965988 11.9532432911060003 33.7060850000000016 18.8384040000000006 11 2283.42402593820998 11.6194796373236002 196.516889999999989 16.3654539999999997 1.5287058 0 2.47294999999999998 1.26212309999999994 1.21082690000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.395797996075999 -62.8841614761740999 22.5069868700589986 -12.4587252061981992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905728 2481451341340905728 1641406266 2015.5 25.4231034709055983 3.25269761191328 -2.8242875473520801 2.00264863999837983 \N \N \N \N \N \N \N 0.0537932699999999972 \N \N \N \N \N \N \N \N \N 81 0 81 0 51.8716470000000029 4176.77002 14.5881083255103992 325.64954478834801 3 false 0.00455886129999999966 \N \N -0.0743053899999999989 15 8 6.89024160000000041 0 15 false 130 477.457391722120974 6.87287370436250988 69.4698029 18.9910299999999985 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.400120433624011 -62.8845572766708969 22.5080749751258011 -12.4604308291066008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905600 2481451341340905600 577926155 2015.5 25.4228458877101993 0.744727519783634051 -2.8236707960653602 0.479476186056304987 1.16809730187715011 0.818682193465223973 1.42680190000000007 -0.0642554335945141053 1.85343751147273994 0.117660918998997999 0.818908142469105038 0.137590999999999991 0.0541652850000000005 -0.201429279999999988 0.173482460000000005 -0.110932139999999999 0.218472759999999988 0.248974709999999988 -0.0140653559999999993 0.0550853950000000023 0.114833779999999996 122 0 122 0 10.2442049999999991 352.687012 3.30620883124404985 13.6477943540549003 31 false 0.0578355679999999969 1.51093221372367004 0.152088533150798011 0.00549775100000000037 14 7 1.63791859999999989 0 15 false 123 357.796480286627002 2.79633034209382991 127.952003 19.3042760000000015 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.399034689021988 -62.8841081951864993 22.5080623710346011 -12.4597626833632003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451337045739904 2481451337045739904 402506974 2015.5 25.4298933652070005 0.877157489924041966 -2.82667407545230986 0.544079532041678027 1.33492082495579001 0.90885585921685097 1.46879270000000006 20.8784334940318992 2.24413752322060001 -12.1302401410213996 0.949128687819792982 0.117004070000000002 -0.156542419999999988 -0.360134120000000002 0.174700190000000005 -0.160618540000000004 0.256665919999999992 0.186893840000000006 0.120862910000000004 -0.00890893799999999993 0.15405698000000001 120 0 120 0 2.12701580000000012 149.572006 0.978657563128350949 0.409792288052794995 31 false 0.0473225400000000032 1.30588004524125001 0.189560066734852012 -0.0227892079999999983 14 8 2.00622899999999982 0 14 false 120 151.457605162139998 1.57606296159222992 96.0987015 20.2376380000000005 12 51.5754045328317972 8.26411829468739967 6.24088430000000027 21.0702819999999988 13 197.196634640819013 11.6571465964719003 16.9163719999999991 19.0246719999999989 1.64251940000000007 0 2.04561040000000016 0.832643499999999981 1.21296690000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.415814236950013 -62.8838364941221997 22.5136338882678011 -12.4651450402558002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452269053841024 2481452269053841024 112233693 2015.5 25.4061419814253 0.0932011220066621959 -2.80154512200389005 0.0640779206247996946 2.79446400686892993 0.101397253078912994 27.5595630000000007 32.5829701881102025 0.236513584698085005 -5.15538790757099008 0.116579647865376002 0.165809469999999987 0.0208317099999999998 -0.141191900000000009 0.129819629999999991 -0.18191344000000001 0.175412459999999992 0.167863160000000011 -0.0352920850000000008 0.0539689730000000034 0.168938640000000001 122 0 120 2 4.31691299999999956 192.737 0.314892427830809007 3.52668561479729004 31 false 3.65928839999999989 1.39611966971661006 0.0208151842479366994 -0.00994066149999999968 14 8 0.214751410000000004 0 14 false 120 5312.90424598840036 5.76678104803649028 921.294983 16.3750360000000015 13 1638.67601446223989 12.6966305782974 129.063839999999999 17.3151550000000007 13 5557.85936937460974 11.3974587511984993 487.640229999999974 15.3996519999999997 1.3545389000000001 0 1.91550350000000003 0.940118800000000032 0.975384699999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.345302004101001 -62.8711534941984027 22.5005121460215989 -12.4330505845895001 100001 3868.43994 3783.37012 4462.56982 0.0333000012 0.00400000019 0.194100007 0.0160000008 0.00260000001 0.104999997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452299120042112 2481452299120042112 1374121287 2015.5 25.4288943509438994 3.55897791526551011 -2.79128548708799018 5.86811439222254982 \N \N \N \N \N \N \N -0.611928299999999981 \N \N \N \N \N \N \N \N \N 40 0 40 0 -1.33073339999999996 24.4761009 0 0 3 false 0.0164379699999999997 \N \N 0.157594499999999998 5 4 590.571199999999976 0 5 false 41 94.1882586298359001 1.78313285771638008 52.8218002 20.7533740000000009 2 37.4589012089666014 1.29717268432294008 28.8773440000000008 21.4175010000000015 3 101.372396400306997 33.6924279380959035 3.00875899999999996 19.7471199999999989 1.47397669999999992 1 1.67038149999999996 0.664127350000000005 1.0062542000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.380875533773008 -62.852222075740201 22.5260161711549998 -12.4318711576673007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451199606640384 2481451199606640384 264835219 2015.5 25.4624008938990016 0.533747255213100957 -2.82265742598060987 0.362305546122590028 -1.00036295581554002 0.54192778305579703 -1.84593399999999996 -0.483019123239896986 1.3531795427014699 -2.20080215147507996 0.610643691911301967 0.093335849999999998 -0.056496567999999997 -0.222939880000000007 0.259523449999999989 -0.0569150900000000015 0.367217630000000017 0.285026900000000027 -0.00846843899999999948 -0.0505833180000000021 0.131912169999999995 132 0 132 0 1.76499640000000002 156.490005 0 0 31 false 0.104485385 1.76584637150106993 0.112526555288504998 -0.0569703000000000015 15 9 1.20337580000000011 0 15 false 131 250.525593082695991 1.56117255353073991 160.473007 19.6912349999999989 13 141.293788171757001 12.6305828674165994 11.1866409999999998 19.9760799999999996 13 170.376088796393987 9.36649555211931073 18.1899499999999996 19.1833999999999989 1.24406400000000006 0 0.792680739999999995 0.284845349999999997 0.507835400000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.476515259664012 -62.8663902088123976 22.5460678678268991 -12.4733539149980004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458105914067584 2481458105914067584 1673243446 2015.5 25.4487998807023992 0.255037767274220006 -2.79191678472637994 0.166270439299352008 4.0445806031922702 0.277612105939278986 14.5691799999999994 18.9626322515990005 0.687173841944091035 -14.5915532751642001 0.305174669818021993 0.0386165399999999978 -0.0980017499999999986 -0.0323278499999999983 0.0860154600000000019 -0.126540530000000012 0.134345369999999992 0.243103950000000013 -0.168820529999999996 0.0784380600000000039 -0.0376843659999999969 122 0 121 1 2.71499230000000003 161.628998 0.325260572616870025 0.517260655385148982 31 false 0.46876066999999999 1.12869419741341992 0.0566085955923781997 -0.0583073829999999974 14 9 0.605730349999999973 0 14 false 120 714.813243977248021 3.00265175727296008 238.061005 18.5528849999999998 14 84.2912731146555956 7.13187030585616988 11.8189569999999993 20.5369320000000002 13 1058.49256941710996 11.4176597563201998 92.7066099999999977 17.2002009999999999 1.59871659999999993 0 3.33673099999999989 1.98404690000000006 1.352684 \N \N 0 \N \N \N NOT_AVAILABLE 151.420905233264989 -62.8443488359504983 22.5447105295164008 -12.4397715655157999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458449511337600 2481458449511337600 535192567 2015.5 25.4103572960679998 0.412233896496095986 -2.7584837090497798 0.270513780534888004 1.18180007043508994 0.429400556890736973 2.75220900000000013 13.5168488512695006 1.03082806013478989 -7.53820094120309037 0.462770209508530983 0.0952099400000000068 -0.0959308700000000014 -0.269895700000000016 0.202139740000000012 -0.0653476100000000004 0.282712799999999986 0.199915950000000009 0.0622620700000000027 0.0178916250000000013 0.104042456000000005 122 0 121 1 -1.3414235000000001 96.1547012 0 9.32988320270471914e-16 31 false 0.188601999999999992 1.57571752997688996 0.0888919035688670034 -0.00477669060000000031 14 9 0.916939260000000034 0 14 false 120 340.309558120500981 1.99912616591323 170.229004 19.3586799999999997 14 147.592312410332994 13.9092640243529004 10.6110799999999994 19.9287279999999996 14 307.644035584503001 13.9033847875913992 22.1272750000000009 18.5417999999999985 1.33771250000000008 0 1.38692860000000007 0.570047399999999982 0.816881199999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.313669295325013 -62.8303654686245991 22.5207425942038988 -12.3945583161159991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458483871076096 2481458483871076096 1520725038 2015.5 25.4224616006472992 0.370196934738991013 -2.75810065570657015 0.228133836640402987 0.719633285593605954 0.387788679421064986 1.8557357000000001 14.8910369088183998 1.01262266681313995 1.64696210497136009 0.417420208804262005 0.00887870299999999994 -0.226269109999999996 -0.176909580000000011 0.100562940000000003 -0.0848353649999999959 0.15143203999999999 0.214502990000000004 -0.0573668000000000025 0.0878902750000000038 -0.0857330599999999998 112 0 111 1 1.99792560000000008 137.039993 0.843294599807334011 1.67062143784875006 31 false 0.264667030000000025 1.39810279086227007 0.0770304768580774984 -0.0952113299999999968 13 8 0.892867740000000021 0 13 false 111 520.695928336103975 2.00213886497558979 260.070007 18.8969060000000013 11 125.729694523966003 8.12325106722479973 15.4777559999999994 20.1027929999999984 11 618.81902048081804 13.8075676763905992 44.8173829999999995 17.7830100000000009 1.42991080000000004 0 2.31978229999999996 1.20588680000000004 1.11389540000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.337294923758009 -62.8248958124612003 22.5323977982866985 -12.3986495740769005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461408744246272 2481461408744246272 91437112 2015.5 25.3995165343769997 0.85571349381719497 -2.74698038542929002 0.743241049386160979 2.65910494088188987 0.834022219860072966 3.18829040000000008 2.82022147929692979 2.5543017356687101 -17.9446468290022985 1.06416985448052004 0.348598840000000021 -0.389021600000000023 -0.0774672899999999942 0.481098120000000018 -0.330449849999999989 0.663971069999999997 0.691311360000000041 -0.106431869999999998 -0.348685149999999999 0.465012499999999995 97 0 96 1 1.61579800000000007 113.809998 1.09586128399287008 0.838413375387267013 31 false 0.0821415900000000004 1.06097945790534998 0.172484589904585012 0.019341309000000001 11 7 2.34816000000000003 0 11 false 96 214.675588873137997 1.84761615433144999 116.191002 19.8589100000000016 9 57.6247189297028015 16.8114679667025015 3.42770300000000017 20.9498649999999991 8 316.851343264051025 11.9106979714029002 26.6022469999999984 18.5097799999999992 1.74438120000000008 0 2.44008450000000021 1.09095570000000008 1.34912870000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.281524186539002 -62.8245274889721017 22.5147663341045998 -12.3798782147324005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458488166484864 2481458488166484864 1112210488 2015.5 25.4237184189829009 0.930429064864274014 -2.74793445000624015 0.458981445484068995 -0.247081497530152988 0.796513456103067008 -0.310203799999999974 3.86938089440258004 2.2096027213374998 -4.78472617896428964 0.765609736359635029 -0.161331119999999995 -0.087184049999999999 -0.547885359999999988 0.24645373000000001 -0.097079600000000002 0.382162869999999988 0.14595377000000001 0.178296060000000006 -0.0303719040000000016 -0.010466342 109 0 108 1 1.97690779999999999 133.266006 1.46973436983834005 1.36658022094636 31 false 0.0715647340000000048 1.50608677319093998 0.15394957487729799 -0.129380149999999999 13 8 2.02343399999999995 0 13 false 109 217.433553412375005 1.86615199782037999 116.514 19.8450489999999995 9 123.530769661063005 16.0612056136455017 7.69125130000000024 20.1219499999999982 10 117.534553103055003 17.8473824052368002 6.58553459999999991 19.586506 1.10868499999999992 0 0.535444260000000005 0.276901249999999988 0.258543000000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.330351769235989 -62.8151557404812024 22.5374216744704015 -12.3896578505384998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458243352902016 2481458243352902016 1357493722 2015.5 25.4700406699380011 0.235021620703245004 -2.77275310261895003 0.154775618504337992 3.26232331587520985 0.256082912085947023 12.7393249999999991 21.4572692004007983 0.574822860756250997 -0.777070614689057027 0.273558655510575011 0.08652783 -0.033552613000000002 -0.163431689999999991 0.168999060000000006 -0.214668649999999989 0.245734449999999993 0.194298429999999994 -0.0543835199999999977 -5.26138699999999991e-05 0.133914279999999997 132 0 131 1 2.65256289999999995 172.151001 0.598910447366729048 1.8335834739888901 31 false 0.527453060000000029 1.22973369022303003 0.0508480204906925012 -0.0403957259999999999 15 9 0.510378499999999957 0 15 false 131 870.095568576810024 2.30404328398809 377.639008 18.3394489999999983 14 140.62990998252701 8.47417917982870961 16.5951060000000012 19.9811939999999986 15 1146.15047572775006 9.56485758310638978 119.829329999999999 17.1138149999999989 1.47889540000000008 0 2.8673782000000001 1.6417446 1.2256336000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.445114951123003 -62.817983084547599 22.5721305283565989 -12.4297536296899001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458621310036608 2481458621310036608 225103927 2015.5 25.4373358893496011 0.157931882316381 -2.73464252991748991 0.107363381284558995 1.72132640263582992 0.170358746456166998 10.1041270000000001 99.0912798451633989 0.393532345277144979 15.4985825922919993 0.211361605565799998 0.0897419899999999937 -0.0597764480000000029 -0.182706279999999999 0.142336889999999994 -0.167920010000000008 0.203357399999999994 0.0369924829999999996 -0.0400714539999999994 -0.0209855289999999993 0.165357919999999992 122 0 122 0 -0.0323052370000000005 115.843002 0 0 31 true 1.16656530000000003 1.35394921565993998 0.0397376242214076969 -0.0218473060000000004 14 9 0.352169300000000018 0 14 false 122 1327.80867255433009 2.50399849094918014 530.275024 17.8805270000000007 13 339.486835749286001 10.8345979737782994 31.3335900000000009 19.0243299999999991 14 1488.99980792502993 10.5282331317488005 141.429210000000012 16.8296829999999993 1.3770709000000001 0 2.19464680000000012 1.14380259999999989 1.05084420000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.344981120108002 -62.7973515585300035 22.5553767778758001 -12.3823003181105999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458964907422080 2481458964907422080 491619313 2015.5 25.477689203545701 0.169490503350095995 -2.7282054451199298 0.0998771583426052018 -0.0948414983811492057 0.156891202556236009 -0.604504900000000012 -0.672937750332592954 0.433038802251068999 -2.41846757814901014 0.199690411273758001 -0.0484995949999999995 -0.176615450000000007 -0.588625799999999977 0.19349733999999999 -0.100089915000000002 0.26379370000000002 0.015651410000000001 0.291557579999999983 -0.0799745840000000013 0.0501671839999999966 122 0 122 0 0.583814399999999956 125.459999 0.216782337686230009 0.496474000492115985 31 false 1.46263919999999992 1.60347262543565994 0.0343583570607364011 -0.0141418429999999994 14 9 0.400930999999999982 0 14 false 122 1688.51596613446009 3.0506411643256599 553.494995 17.6196020000000004 12 930.347189148251005 21.1692127524153015 43.948124 17.9297749999999994 12 1123.74412103903001 11.0932672498502001 101.29965 17.1352520000000013 1.21650680000000011 0 0.794523239999999964 0.310173030000000016 0.484350200000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.418811427468 -62.7744140302118012 22.5961770135145983 -12.3911358484948 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456628445513088 2481456628445513088 63163844 2015.5 25.351903355498699 0.84911283906052204 -2.72122477490011994 0.737387929940163001 1.64215156332437995 0.914644147889389969 1.79539939999999998 -8.0465728815230193 2.14690779009732013 -14.8545281906804991 1.65210856568284004 0.0671632699999999971 -0.0455399800000000007 -0.323365330000000006 0.0753471849999999971 0.235410239999999993 0.096923200000000001 -0.494949040000000007 0.0856620399999999949 -0.174054149999999991 0.122296039999999995 103 0 102 1 1.0765165000000001 112.043999 0 0 31 false 0.042457037000000003 1.30084293855660005 0.239085098535716994 0.020105946999999999 12 8 1.92119219999999991 0 12 false 101 137.141368878647995 1.70881415866305009 80.2553024 20.3454440000000005 10 64.6637587625864967 13.8860608414001998 4.65673880000000029 20.8247360000000015 10 212.560961229215991 11.3153357772192003 18.7852099999999993 18.9432100000000005 2.02145220000000014 0 1.88152499999999989 0.479291919999999982 1.4022330999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.163324820483012 -62.8212643411250014 22.4791951250995012 -12.3384310873162004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461782405972608 2481461782405972608 417446767 2015.5 25.3745173783688003 1.06017083466671003 -2.71634814590123996 0.633198516080662022 -0.244389594053845 1.06324258830327989 -0.229853100000000005 13.6047593450582003 2.30634829231677996 -14.9686540840058004 1.20192356249934007 -0.0462987799999999977 0.171442420000000012 -0.280413750000000017 0.170975700000000008 -0.0482339859999999995 0.213554169999999988 -0.0663936100000000057 0.036175866000000001 0.0425380100000000011 0.0587581400000000004 113 0 113 0 4.30200099999999974 183.416 2.65469948829914992 2.30116071137467992 31 false 0.0326327939999999997 1.11654766902804004 0.206170247287058989 -0.100783209999999998 13 9 2.05418250000000002 0 13 false 111 153.283667980882996 1.75170806133757995 87.5053024 20.2246270000000017 8 64.2309252776353929 11.8813821162002995 5.40601440000000011 20.8320270000000001 7 183.597974221101992 6.03154600813441988 30.4396209999999989 19.102250999999999 1.61679909999999993 0 1.72977639999999999 0.607400900000000021 1.12237549999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.203652358065 -62.8073160136550968 22.5025326187815011 -12.3422077066456009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461610610146944 2481461610610146944 1161489483 2015.5 25.417753743619901 0.908664874490392016 -2.72307295119095016 0.639153150379422996 1.62694376580991995 0.925758981663834968 1.75741609999999993 0.627261785896051971 2.3342418711429298 4.32735834057877966 1.30736082004979992 0.0270400290000000001 -0.157187219999999989 -0.364887740000000016 0.180901349999999989 0.0916798100000000005 0.24546599999999999 -0.176905139999999989 0.138195000000000012 -0.100351869999999996 0.0832550100000000043 102 0 101 1 0.874243499999999951 107.907997 1.54402783307330993 0.878113395150776022 31 false 0.0432236159999999994 1.09895938218600997 0.193311687875340005 0.0191716419999999992 12 9 2.08658620000000017 0 12 false 103 140.979980209877994 1.34882413004581991 104.521004 20.3154719999999998 5 185.592098494172006 134.055893467443013 1.38443819999999995 19.6799889999999991 10 185.007047996580013 11.2932958533451 16.3820249999999987 19.093948000000001 2.62873599999999996 1 0.586040499999999964 -0.635482800000000014 1.22152330000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.295502868350013 -62.7951573700034018 22.5411115792809014 -12.3643477621247992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461644967018752 2481461644967018752 1032596111 2015.5 25.4250647992820014 0.173554050005802013 -2.71780612770470986 0.100215640728605004 0.310781702675825999 0.164722883079889998 1.88669419999999999 5.6422839847155597 0.453389712029384995 -1.70026683471863005 0.179043342504502989 -0.000851582039999999982 -0.20061176 -0.441576719999999978 0.190754380000000001 -0.0688570899999999958 0.276790560000000019 0.130514230000000009 0.178609849999999987 -0.00215901299999999999 0.0357539399999999979 113 0 111 2 0.890515999999999974 118.780998 0.319389981174288018 1.22979035591963992 31 false 1.47744330000000001 1.55799879901823002 0.0345631009963068975 -0.0609396170000000015 13 8 0.411684300000000003 0 13 false 110 1850.72146466460003 3.06286495525230018 604.244995 17.5200139999999998 12 985.163130824989025 12.4722736119940993 78.9882599999999968 17.8676190000000013 11 1279.21625721048008 9.97082206600670951 128.295960000000008 16.9945599999999999 1.22351169999999998 0 0.873058299999999954 0.347604750000000018 0.525453570000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.305096289446993 -62.7872941834886973 22.5500468308606017 -12.3621360112536003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461954204663680 2481461954204663680 86730548 2015.5 25.4497123569477992 0.0931162932687436967 -2.71907679334581021 0.0538672773546282971 1.1348759765651899 0.0867162736468665984 13.0872320000000002 12.0505301716393003 0.247363140515370006 15.5290232266501 0.106271879058749005 -0.0427647599999999989 -0.155923370000000006 -0.555973649999999986 0.151625779999999988 -0.12945777 0.154048729999999995 0.0830386500000000055 0.27672285000000002 0.00295392819999999983 -0.0417281099999999988 120 0 120 0 0.216724919999999988 117.639999 0 0 31 true 5.06142950000000003 1.51294281283896992 0.0193958521522062007 -0.0577945630000000002 14 9 0.232900720000000006 0 15 false 118 4637.16801402779038 5.26734892579417036 880.361023 16.5227339999999998 12 1967.02921805435994 19.2725010801370011 102.064030000000002 17.1168610000000001 12 3824.3805959863198 16.0657914592786994 238.04495 15.805517 1.24891090000000005 0 1.3113440999999999 0.594127659999999946 0.717216500000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.355031119110009 -62.7780124415317005 22.5730069357082996 -12.3723715299265997 100001 4815.43994 4741.47998 4960.81006 0.147499993 0.0688999966 0.192100003 0.0764999986 0.0419999994 0.0930999964 200111 0.582283499999999954 0.548656699999999997 0.60058993000000005 0.164250430000000003 0.138198500000000002 0.190302369999999998 +1635721458409799680 Gaia DR2 2481457109481647360 2481457109481647360 625779198 2015.5 25.4824552166791989 0.371794065441573007 -2.80659591253560015 0.221532501273341009 0.406792077482586001 0.355560096391471014 1.14408810000000005 8.06225525639709062 0.817084554661503981 -24.2847315816843015 0.373971480018956026 -0.0751676599999999973 0.17748775 -0.225385069999999993 0.243838040000000006 -0.166205450000000005 0.389165040000000018 0.259735349999999976 -0.107793509999999995 -0.0588628539999999992 0.106816549999999996 113 0 113 0 3.37329580000000018 164.664993 1.02540774358255993 3.72583127555787019 31 false 0.308196799999999993 1.49586170156045006 0.0725530089544502987 -0.146271149999999989 13 8 0.730834540000000032 0 13 false 106 667.620104450316035 2.20174168063569997 303.223999 18.6270430000000005 13 305.785132773636008 12.2126948701498002 25.0383010000000006 19.1378480000000017 12 587.697800464438956 28.3368948987581994 20.7396680000000018 17.8390349999999991 1.3383103999999999 0 1.29881289999999994 0.510805130000000052 0.788007739999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.501240114643991 -62.8433266886611008 22.5711939974580993 -12.4657849401954 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457143841387904 2481457143841387904 555010442 2015.5 25.5098319916478005 0.317541329222170987 -2.80137984148815988 0.214472085577847998 3.62427465653883019 0.320236235474559983 11.3175030000000003 40.5481995421272003 0.744830401574595014 -4.63367967000731973 0.349350286442299984 0.101402080000000006 0.120473880000000005 -0.129194439999999994 0.274726000000000026 -0.101157083999999994 0.392174960000000017 0.361311229999999983 -0.0862258149999999973 -0.0267246629999999992 0.177485480000000001 118 0 117 1 1.20814200000000005 130.332993 0.483337141242471013 0.619998141094009969 31 false 0.350318550000000006 1.26368642201914994 0.0649112371242265979 -0.0656372300000000047 14 9 0.664852259999999973 0 14 false 116 582.787663025839038 1.62341154865583004 358.989014 18.7745899999999999 8 132.681655572580013 7.81235430785211005 16.9835680000000018 20.0443609999999985 9 758.570300028694987 20.4637720345745997 37.0689399999999978 17.5619300000000003 1.52929099999999996 0 2.48243139999999984 1.26977159999999989 1.21265979999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.550540930052989 -62.826947636307203 22.5992008147103007 -12.4709890101608991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457216856165760 2481457216856165760 213385960 2015.5 25.5017404254804987 1.18617337188733996 -2.79244600296277001 0.61878199559985203 1.02991905863948996 0.994131498111246015 1.0359988 24.6475944391032016 2.84953278679638 -6.05928769672649992 1.02627754497615009 -0.169948769999999999 -0.0612857679999999974 -0.525399570000000038 0.279022869999999978 -0.0909622499999999945 0.453614000000000017 0.184891830000000007 0.114847093999999997 -0.0938981299999999963 0.016862437000000001 106 0 103 3 1.88489740000000006 126.038002 1.80202250598053992 1.59675096356868007 31 false 0.0446693260000000023 1.41661997977566001 0.220283015398111987 -0.146561789999999997 12 8 2.6024153000000001 0 13 false 105 157.339283745172992 1.79307064542996009 87.748497 20.1962720000000004 10 44.1634055194957966 9.51745307458842937 4.64025450000000017 21.2387310000000014 10 209.518235700914005 15.3771819276822992 13.6252689999999994 18.9588660000000004 1.61232229999999999 0 2.27986529999999998 1.04245950000000009 1.23740579999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.526191131155997 -62.8223155836565965 22.5948676254956986 -12.4597094133492998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457453078914944 2481457453078914944 613288247 2015.5 25.5008433732614002 0.220697647645162004 -2.78507540291420996 0.152768408938233013 0.786400398878314033 0.226176274401338001 3.47693589999999997 1.80758427111358011 0.563476563438944034 -1.40036597358945003 0.261088939178848012 0.108320109999999997 -0.0390410500000000008 -0.158510420000000013 0.254947629999999981 -0.0977758900000000042 0.359613269999999985 0.310152140000000021 -0.0731043400000000038 -0.0611336199999999996 0.145926269999999997 132 0 131 1 0.550658199999999987 134.248001 0 0 31 false 0.603589530000000041 1.35936837763085006 0.0479684658963544022 -0.0604524130000000035 15 9 0.502656639999999988 0 15 false 130 817.654137815315949 2.00081603604836999 408.660004 18.4069420000000008 13 241.970388927817993 5.02522999754903044 48.1511080000000007 19.3919829999999997 14 858.261687709275975 12.1387393285388008 70.7043500000000051 17.4278699999999986 1.34559600000000001 0 1.96411319999999989 0.985040660000000012 0.97907259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.517536882639007 -62.8160306608957981 22.5967896486759017 -12.4525256654676006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457453078917888 2481457453078917888 571805393 2015.5 25.5012361678138006 0.655386216585413961 -2.77678020134317993 0.467138681768742015 -0.69078418549692 0.674665803394400965 -1.02389100000000011 5.4597385668453402 1.72558721068880994 -4.48052881165166994 0.769245748314471012 0.151245099999999993 -0.122761324000000005 -0.162295650000000014 0.282582549999999988 -0.114183809999999997 0.395084619999999997 0.372914399999999979 -0.0579875629999999989 -0.0800277600000000033 0.171258240000000006 130 0 130 0 2.14553139999999987 161.294006 1.30666948176667996 1.03314072253145994 31 false 0.0697541599999999956 1.57151633061953011 0.141556126320740994 -0.0487585899999999975 15 9 1.5339408000000001 0 15 false 130 208.088759417631991 1.4802521680690901 140.576996 19.8927440000000004 11 63.4302981077433969 6.28528631023081985 10.0918709999999994 20.8456459999999986 12 233.750019901589013 10.2855932423912009 22.7259640000000012 18.8400399999999983 1.42814210000000008 0 2.00560569999999982 0.95290184 1.05270390000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.510574330840996 -62.8083596803153981 22.6002866022121012 -12.4449557340940995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457212563905536 2481457212563905536 361189012 2015.5 25.5041021959510985 1.35966377173107 -2.79705049218690016 1.02971639385050007 2.99580873290409011 1.38696288378124999 2.15997769999999978 -4.5497642112426 2.81918771985866989 -8.63192866827817085 2.17731945675416982 0.0483004859999999966 0.257530800000000004 -0.21606568000000001 0.21947818999999999 0.207324759999999997 0.280175750000000001 -0.31659967 0.00375573520000000013 -0.216974510000000009 0.190238669999999999 82 0 81 1 -0.482097300000000006 69.5793991 0 0 31 false 0.0250417479999999991 1.9755630097800001 0.355697457721934007 -0.0855904200000000004 10 8 2.54872940000000003 0 11 false 83 111.827881155797002 1.55612670416859 71.862999 20.5669900000000005 6 33.236980458424398 8.70902933356311948 3.81638169999999999 21.5473350000000003 10 156.33209092004401 12.7112609521888995 12.2987079999999995 19.2768000000000015 1.69518609999999992 0 2.27053450000000012 0.980344800000000016 1.29018969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.535162655671996 -62.825474097456997 22.5953804397789 -12.4648587130979003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457246923644288 2481457246923644288 285674515 2015.5 25.5150798954552016 1.41812200871971994 -2.78986099762808015 1.14792809991398004 -1.22670459437745993 1.49853060043997011 -0.818604949999999998 9.65255743924297072 3.91472908733596014 5.19329160278476021 3.23997758023251992 0.104701699999999995 -0.399504099999999973 -0.375732960000000005 0.143896250000000003 0.0523774200000000009 0.0432487729999999973 -0.462146100000000004 0.112652450000000001 -0.273465369999999985 0.351845300000000027 81 0 81 0 -0.585332329999999956 68.3862991 0 0 31 false 0.0245463920000000002 1.17067981000013011 0.343470215151309988 0.0595155600000000021 11 8 3.7364196999999999 0 11 false 84 90.8937338396781058 1.20439546924458996 75.4682999 20.7920300000000005 5 97.1477865100420956 36.7848698518131982 2.64097140000000019 20.3828069999999997 8 118.135571471724006 11.0767759039989002 10.6651579999999999 19.5809689999999996 2.36851719999999988 0 0.801837899999999992 -0.409223559999999986 1.21106150000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.550156016500011 -62.8142934737162975 22.6085303285852994 -12.4622040814152992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457624879617280 2481457624879617280 1275986981 2015.5 25.5105999070297003 1.1489051133564101 -2.77982918473087004 0.895369727504154 3.27730979212042017 1.2289687207548099 2.66671540000000018 21.4986024667415982 3.02265249462889019 -13.8859117525165008 2.40495543876600992 -0.00558607229999999975 -0.20058759000000001 -0.261655570000000004 0.24078949999999999 0.125533310000000009 0.184197400000000011 -0.355275359999999985 -0.0272611799999999994 -0.334970769999999973 0.224698989999999987 104 0 104 0 1.06094500000000003 113.958 1.64465668802716003 0.551508947573904007 31 false 0.0248830430000000005 1.28458400884910007 0.297916048197658989 -0.0239541570000000002 12 8 2.7522411 0 12 false 104 105.715950785977995 1.3771165485913599 76.7661972 20.6280140000000003 9 51.1137090852995968 9.71178135692806066 5.26306199999999968 21.0800440000000009 11 131.225424346842004 14.0354763055575003 9.3495519999999992 19.4668750000000017 1.72480250000000002 0 1.6131686999999999 0.452030180000000004 1.16113850000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.531931997324989 -62.8071297400192989 22.6080457354958 -12.4512297347507008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410212734078720 2481410212734078720 744634611 2015.5 25.5269062428451008 0.186106740887487992 -2.81768833467008006 0.131811662994673007 3.79636698160092001 0.200738215583182 18.9120300000000015 141.175592262532007 0.445968933598534012 -139.936525041482014 0.225369964434906006 0.159717799999999993 0.0955046340000000049 -0.0553199430000000034 0.24333363999999999 -0.0982579900000000034 0.329647840000000025 0.305456159999999977 -0.124156069999999993 -0.0302127259999999988 0.191361759999999992 122 0 122 0 1.75136179999999997 145.117004 0.477416097587072985 1.75795364351122996 31 false 0.873032800000000053 1.29926019780223001 0.0451796905578012026 -0.0279276869999999997 15 9 0.399328300000000025 0 16 false 122 1316.64237372152002 2.49097204396043015 528.565979 17.8896960000000007 13 286.085221945369028 11.3545670476755003 25.195608 19.2101499999999987 14 1641.68460272809011 10.1515840599784006 161.717090000000013 16.7236960000000003 1.46415600000000001 0 2.48645400000000016 1.32045360000000001 1.16600039999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.599565489615003 -62.8344094188161009 22.6093028295358991 -12.4924252597734 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410174079175552 2481410174079175552 628337992 2015.5 25.545836805015 1.31908208611070998 -2.82278286684480983 0.772790349278920985 1.50913888935866991 1.28565524114711005 1.1738286 -3.30404064313189982 2.61421503445573 -7.61688644251190983 2.11539138396583981 -0.297891860000000008 0.250028279999999992 -0.325188370000000004 0.288287279999999979 -0.210605349999999997 0.314420370000000005 -0.271114919999999981 -0.24298763000000001 -0.310028250000000005 0.285301919999999987 91 0 90 1 -1.17471060000000005 69.9978027 0 0 31 false 0.036459382999999998 1.56494675402277994 0.263682062293822017 -0.142918829999999997 11 8 2.46138859999999982 0 11 false 91 133.23651918054901 1.70555290590245989 78.1193008 20.3768080000000005 6 58.4689596847510984 10.7793087853907998 5.42418430000000029 20.934073999999999 8 151.185629409732996 20.4784080569299007 7.38268470000000043 19.3131430000000002 1.57355200000000006 0 1.62093160000000003 0.557266240000000024 1.06366540000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.641768953798987 -62.8309264414336965 22.6253948295933007 -12.5041140587957003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410620755637504 2481410620755637504 1444252900 2015.5 25.5366952028500016 0.143422425785837998 -2.80245695259569016 0.100746475691066997 2.07824670847720006 0.150109977352999996 13.8448279999999997 9.71564623206364963 0.353182341662161003 1.18490167349535991 0.17136293896718599 0.12486034 0.0436658099999999993 -0.0603192199999999998 0.244239700000000004 -0.151036019999999993 0.345312699999999972 0.340986999999999985 -0.141168669999999996 -0.0470379299999999986 0.171385630000000011 141 0 139 2 1.6248914000000001 161.643005 0.305704527749705024 1.07123178299248001 31 false 1.34913679999999991 1.37327398354411989 0.0306984873388886984 -0.0618508759999999991 16 9 0.317641620000000013 0 16 false 138 1743.91683575854995 2.80414637627188013 621.906006 17.5845500000000001 13 465.479879974753999 8.36453851660601977 55.6492000000000004 18.6816369999999985 14 1938.93695512568002 19.1749768141865005 101.118089999999995 16.5430099999999989 1.37874509999999995 0 2.13862599999999992 1.09708600000000001 1.04154009999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.604661342920991 -62.8164602645196979 22.624350810488 -12.4818548699622998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410174079030528 2481410174079030528 2428618 2015.5 25.5506509138729996 8.24618923740895937 -2.81933766163291022 2.25139677299070984 \N \N \N \N \N \N \N -0.604146500000000031 \N \N \N \N \N \N \N \N \N 50 0 50 0 -1.00002170000000001 35.5908012 0 7.48977806629696005e-16 3 false 0.0153931069999999996 \N \N 0.0560349299999999967 6 4 4071.10989999999993 0 6 false 53 63.5393278421715024 1.23535927326701001 51.4338989 21.1807599999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.648054970374005 -62.8257545139681 22.6312723030963987 -12.5026776049455002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410590691200512 2481410590691200512 956330044 2015.5 25.5666633856170016 0.0627250391797026935 -2.80173270035958 0.0424334573645536034 0.796853864341874996 0.0646438509135322942 12.3268319999999996 -6.82028906368598964 0.170377612460346994 -2.21142352969033018 0.0849064948646339052 0.00401920100000000002 -0.0403535140000000001 0.123830850000000006 0.094733830000000005 -0.166815550000000007 0.164780129999999997 0.255880800000000019 -0.288117530000000011 -0.0231700729999999994 0.0191142369999999992 142 0 141 1 -2.04856630000000006 104.375 0 0 31 true 7.53027149999999956 1.53759188715441009 0.0138667359464942994 -0.136208090000000004 16 9 0.159872299999999995 0 16 false 141 6928.23745272092037 5.81604366015085983 1191.22998 16.0868099999999998 13 3243.85692822354986 19.3200760833959997 167.900830000000013 16.5737340000000017 15 5309.79733953501 16.9598630304162015 313.080199999999991 15.4492250000000002 1.23460759999999992 0 1.12450889999999992 0.486925129999999984 0.637583730000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.663187299074991 -62.8029966606096011 22.6531348980449998 -12.4921834866535004 100001 4977 4922.62012 5098.81006 0.333999991 0.195899993 0.521099985 0.172499999 0.101999998 0.273099989 200111 0.930093700000000023 0.886186000000000029 0.950756599999999952 0.478210030000000008 0.395654380000000028 0.560765700000000034 +1635721458409799680 Gaia DR2 2481457178201130496 2481457178201130496 880410730 2015.5 25.5263899433738999 0.228098279564174 -2.79391948491667019 0.158717483373892992 0.12643335789259999 0.268309286235021982 0.471222430000000025 7.59870721773858993 0.593633023575687035 -2.61996140177271997 0.270795947236299017 0.241469319999999987 -0.310418159999999999 -0.111754300000000001 0.0582360180000000005 -0.288275269999999972 0.122742989999999996 0.187787800000000005 -0.0303494389999999989 0.134560719999999995 0.0862946299999999972 105 0 104 1 2.13877080000000008 131.440994 0.267987712900200015 0.37143473197492699 31 false 0.695619169999999953 1.70818229875435001 0.0475963833054222005 0.0123071059999999999 12 8 0.523669599999999957 0 12 false 102 978.791962366203052 2.59571452287653992 377.079987 18.2116399999999992 12 534.36778729863704 12.9865292720789007 41.1478540000000024 18.5317879999999988 12 612.965335665267958 9.54282505230029088 64.2331099999999964 17.7933309999999985 1.17219300000000004 0 0.738456699999999966 0.320148470000000018 0.418308259999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.576307040869011 -62.8131401875692035 22.6177614623207006 -12.4701313688795992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410762489892096 2481410762489892096 904168119 2015.5 25.5696780106130994 0.0991848519490519942 -2.77871384504258989 0.0601868428916216003 0.509036940325728993 0.0887664653391635056 5.73456399999999977 8.06322027297061084 0.264892203579232988 -13.5553082785339996 0.110614751747181994 -0.0703971099999999989 -0.106167139999999993 -0.329121470000000027 0.253766900000000017 -0.152201410000000009 0.383599369999999995 0.226477850000000008 -0.0298676980000000016 -0.123701249999999999 0.0391522870000000009 139 0 138 1 0.739344200000000007 144.720001 0.154975272973719991 0.658813594802341029 31 true 3.80744999999999978 1.57217390353237008 0.0201891962218852007 -0.153766740000000013 16 8 0.244398100000000007 0 16 false 137 4064.37693524206998 4.04027463905400008 1005.96997 16.6658800000000014 14 2093.22489490871021 18.3515480788515006 114.062579999999997 17.0493489999999994 15 2884.66953326884004 12.9962449178879993 221.961780000000005 16.1116799999999998 1.22476199999999991 0 0.937669749999999969 0.383468629999999977 0.554201100000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.647579731098006 -62.7809057193537967 22.6646674832148989 -12.4718820938118 100001 5269 4907.66016 5493.39014 0.0450000018 0.0170000009 0.248600006 0.0248000007 0.00789999962 0.108099997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457899755520256 2481457899755520256 80255952 2015.5 25.4992877366744999 0.725991540312414974 -2.76767507311524996 0.617409158018317972 0.498870003876792978 0.815215711252716968 0.611948500000000006 -2.76987787922722006 1.96277701566307994 -2.25709759453447001 1.23704793049860995 0.308614580000000027 -0.181744700000000009 0.0505474500000000007 0.267253279999999982 -0.0801927449999999958 0.325018320000000027 0.163451370000000012 -0.196734999999999993 -0.190061320000000006 0.33850849999999999 109 0 106 3 1.38823389999999991 121.288002 0 0 31 false 0.052580412 2.08434929289356985 0.187863342063682992 -0.0358071920000000016 13 9 1.79684620000000006 0 13 false 101 143.298973705223005 1.84769705545778007 77.5554962 20.2977580000000017 9 102.941246286628001 17.9465342675635995 5.73599600000000009 20.3199140000000007 10 108.651751002775995 16.6259396065647991 6.53507399999999983 19.6718270000000004 1.47658420000000001 0 0.648086550000000039 0.022155761999999999 0.625930800000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.49823198416999 -62.8009520768723988 22.6018613157131014 -12.4357728033136006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457766611979392 2481457766611979392 39039234 2015.5 25.5362634046162995 0.121066244897024 -2.75949038332670993 0.0826803689798249059 0.861899070872875983 0.113844139039784006 7.57086900000000007 13.3709862717059007 0.324322543047963985 -10.8793270694346997 0.143236114865935987 0.0321504319999999996 -0.0426199700000000001 -0.282869280000000001 0.284707500000000002 0.0502102859999999998 0.403480000000000005 0.247527639999999993 0.0221879430000000016 -0.0710641800000000046 0.0715377499999999972 113 0 111 2 0.992611350000000003 120.391998 0.188301207852343999 0.642444752766694993 31 true 2.66034479999999984 1.46140142789612004 0.0311819574965431015 -0.0856162099999999981 13 8 0.295123670000000005 0 14 false 110 2971.28477290176988 3.2796931129623399 905.963989 17.0060040000000008 11 1199.79927872409007 11.345079525849 105.755035000000007 17.6536159999999995 12 2565.74091513858002 15.9822696049726005 160.536709999999999 16.2388879999999993 1.26731039999999995 0 1.4147282000000001 0.647611599999999954 0.767116550000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.563651775255011 -62.7777969208512019 22.6401147030127987 -12.4417377522264001 100001 4705.3501 4450.5 4962 0.474999994 0.293199986 0.853999972 0.224999994 0.133000001 0.379999995 200111 0.653273459999999973 0.587442499999999979 0.730232699999999957 0.18847446000000001 0.137549969999999994 0.239398959999999994 +1635721458409799680 Gaia DR2 2481457800971716992 2481457800971716992 752507774 2015.5 25.562954502204601 0.0463109087186183987 -2.75309120501295013 0.0296673680443171987 1.28553505310060001 0.0430696649730284986 29.8478069999999995 -4.34014899890576977 0.110727517818177995 -4.29497864820318043 0.0583805377277986995 -0.0635983600000000066 0.120491269999999998 -0.428736400000000017 0.223519529999999994 -0.0365198740000000008 0.331581000000000015 0.108327514999999999 0.075708225000000004 -0.100878364999999998 0.0402949449999999987 140 0 140 0 -3.48276800000000009 84.9871979 0 1.72969015309883997e-15 31 true 19.4710619999999999 1.57096617808072003 0.0108363104132490999 -0.0735751540000000037 16 9 0.112415660000000001 0 16 false 139 16271.7673522459008 9.62874198786673929 1689.92004 15.1597790000000003 15 8151.71825203838034 23.4965527850085998 346.932529999999986 15.5732649999999992 15 11664.8382555160006 11.9493273781549991 976.192000000000007 14.5947230000000001 1.21784899999999996 0 0.978542299999999976 0.41348647999999999 0.565055850000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.61035412551999 -62.7606200297312 22.6679140311654983 -12.4455843664079993 100001 5364 5346.66992 5394.25 \N \N \N \N \N \N 200111 0.735812099999999969 0.727582630000000008 0.740590749999999964 0.403816100000000011 0.373368680000000008 0.434263530000000009 +1635721458409799680 Gaia DR2 2481458002834743296 2481458002834743296 98123785 2015.5 25.5394508718347986 0.53599101758133505 -2.74050818116083006 0.341261442190116004 1.19031194542106999 0.475408823687404003 2.50376490000000018 21.534634844084799 1.51292032967802004 2.93388581423204986 0.571866859090183977 -0.0325868870000000019 -0.220176230000000001 -0.599187429999999965 0.290839579999999986 0.0478217640000000027 0.31066450000000001 0.386551499999999992 0.321527479999999977 -0.0443440270000000011 -0.0983038499999999982 130 0 129 1 0.133956330000000012 125.447998 0 0 31 false 0.139756010000000014 1.27237231009165996 0.104783225348341003 -0.0820757700000000062 15 9 1.37884279999999992 0 15 false 129 289.796032428813021 1.47920501433813989 195.912994 19.5331340000000004 12 104.260240878608997 12.1927370650636995 8.55101200000000006 20.3060909999999986 11 379.683636239550992 22.2762707238245987 17.0443099999999994 18.3133659999999985 1.66994660000000006 0 1.99272540000000009 0.772956850000000029 1.21976850000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.552235529812009 -62.7592720390085006 22.650290944081199 -12.4252542697128003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458071557152000 2481458071557152000 675080411 2015.5 25.5368741049049994 1.75459998027404995 -2.73535045586665015 1.4261382066441699 \N \N \N \N \N \N \N -0.470626199999999995 \N \N \N \N \N \N \N \N \N 78 0 76 2 1.02271580000000006 83.1547012 2.09708177957458997 1.00696956203221011 3 false 0.0312838100000000022 \N \N 0.0375072399999999972 9 6 5.16471530000000012 0 9 false 77 106.484267097477996 1.67713249711327994 63.4919014 20.6201520000000009 7 60.5145168407023988 15.9296163669020991 3.79886839999999992 20.8967400000000012 9 116.889443090558999 7.06493338574925023 16.5450170000000014 19.5924820000000004 1.66601099999999991 0 1.30425830000000009 0.276588439999999991 1.02766990000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.542342398311007 -62.7557058124858003 22.6497808570662009 -12.4195115735395003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459553318373376 2481459553318373376 11486391 2015.5 25.5441414923295014 0.0709039957502977936 -2.73097310313191022 0.0387146175095193987 0.637881391016966948 0.0500590275674911989 12.7425840000000008 19.7913021665221009 0.161242125848588991 0.0784815978139571935 0.074315940812222897 -0.468819170000000007 -0.0763204799999999961 -0.730221699999999974 0.479560729999999991 0.271403200000000011 0.609529100000000046 -0.356501220000000008 0.320245439999999992 -0.268481140000000007 -0.375848230000000005 127 127 125 2 4.37363429999999997 200.369003 0 0 31 true 403.02285999999998 1.55922469536118991 0.0127796460838399996 -0.114201469999999999 15 8 0.107440649999999999 0 15 false 121 353826.558525409026 88.7760215106801951 3985.61011 11.8163900000000002 14 155406.884546977992 319.861216393290988 485.85723999999999 12.3727119999999999 12 282117.724360316992 290.718130439982986 970.416699999999992 11.1358440000000005 1.23655099999999996 0 1.23686790000000002 0.556322100000000042 0.680545799999999979 79.822818635004495 1.64178818096136991 7 5000 3 0 NOT_AVAILABLE 151.552601586151013 -62.748649354506199 22.6583409873334993 -12.4181083082007007 100001 4888.68018 4769 5120 \N \N \N \N \N \N 200111 8.69620899999999963 7.92817500000000042 9.13815499999999936 38.9153560000000027 34.7199480000000023 43.1107640000000032 +1635721458409799680 Gaia DR2 2481459480303496960 2481459480303496960 931493796 2015.5 25.5497518039048011 0.373930255281774981 -2.73160826653928979 0.178724691844662997 0.856579179255940959 0.253342955026290007 3.38110519999999992 -2.47844720510097005 0.885091648139716969 -10.4039022191296997 0.277208133507027998 -0.388678100000000026 -0.0544995259999999995 -0.74940859999999998 0.34739819999999999 0.00483932529999999989 0.565286399999999967 0.123886949999999996 0.250488370000000016 -0.112096379999999995 -0.158737729999999994 118 0 118 0 0.254999430000000027 116.195999 0 0 31 false 0.612800000000000011 1.4391018774937101 0.0543962919565939007 -0.158044739999999989 14 8 0.841280000000000028 0 14 false 118 806.399788404079004 2.21234509250643985 364.5 18.421990000000001 14 254.008881187170999 8.84073500656650957 28.7316469999999988 19.3392659999999985 14 872.765236187037999 14.4172477016828005 60.5361899999999977 17.409676000000001 1.39728980000000003 0 1.92959020000000003 0.917276399999999992 1.01231380000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.564260744802993 -62.7468315495624012 22.6634386866751001 -12.4207584006221001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459308507948800 2481459308507948800 808980628 2015.5 25.5714169190115008 0.316894992098496975 -2.73392984808406014 0.200325924982378001 1.42733282791888993 0.260509911133037009 5.47899630000000037 -4.68798714594364974 0.892774343838189988 -15.4343038423625991 0.293310948220250001 -0.199168070000000003 -0.291924179999999978 -0.679999099999999967 0.335525330000000011 0.260729280000000008 0.552061299999999977 0.279036159999999978 0.462494220000000011 -0.068415180000000006 -0.0490618830000000006 118 0 115 3 0.756560499999999969 120.896004 0.321982467630427982 0.462106057812373017 31 false 0.58353759999999999 1.59480827633553002 0.0597431148817358995 -0.0725462600000000013 14 8 0.829121600000000014 0 14 false 116 803.242250627469957 2.12919683261964998 377.251007 18.4262489999999985 13 248.281958972674005 10.3981619139215997 23.8774850000000001 19.3640250000000016 13 821.571384619277978 13.2575161163836004 61.9702339999999978 17.4753070000000008 1.3319186999999999 0 1.88871769999999994 0.937776570000000032 0.950941099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.609148602813008 -62.7396843818391972 22.6831744625321008 -12.4308694434899003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410384532793472 2481410384532793472 318707809 2015.5 25.5796788525583985 0.0879252550028340046 -2.8047949788669202 0.0612533579482658005 0.672239997704538017 0.0908986062863001987 7.39549300000000009 6.64185667587539008 0.22256709784463799 2.63316286888080997 0.121658371657139996 0.0605110199999999987 -0.00205676420000000006 -0.0457787659999999985 0.217460870000000001 -0.213092460000000011 0.315847549999999977 0.20510964000000001 -0.193943379999999999 -0.132269649999999989 0.192307769999999989 142 0 142 0 0.392758400000000008 142.917999 0 0 31 true 3.41564200000000007 1.56939422155210995 0.0193291116162055999 -0.101399600000000006 16 9 0.204863610000000002 0 16 false 139 3387.58368994105012 3.72816537118277003 908.645996 16.8636400000000002 14 1625.98388413752991 16.6769478749613995 97.4988859999999988 17.3235969999999995 14 2480.53777588284993 11.9162591747068003 208.164140000000003 16.2755550000000007 1.2122272999999999 0 1.04804230000000009 0.459957119999999997 0.588085199999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.691756138021987 -62.8001927205669972 22.6643656396894002 -12.4998091104960007 100001 5159 5077.72998 5386.1499 0.129500002 0.0489999987 0.238999993 0.0719999969 0.0306000002 0.140499994 200111 0.70474939999999997 0.646560130000000011 0.727490659999999956 0.316975920000000022 0.228277389999999997 0.405674460000000014 +1635721458409799680 Gaia DR2 2481410487612008448 2481410487612008448 959980519 2015.5 25.5859152574583 0.0393070580498695032 -2.80359366078678995 0.0272689460938408991 1.98804708689379006 0.0407299668891700009 48.8104299999999967 27.2750170761461987 0.0953211523395346982 -6.29108626547346983 0.0635412162988655965 -0.0049243430000000003 0.161160379999999992 0.120146126000000006 0.0474086599999999983 -0.0459028449999999977 0.0528119059999999987 -0.0122034550000000002 -0.231552110000000005 -0.0574574949999999973 0.0988530299999999945 133 133 132 1 7.19643969999999999 278.556 0 0 31 true 384.017819999999972 1.61134564333736008 0.0101332836997598992 -0.13207677000000001 15 9 0.0612601639999999989 0 15 false 131 307739.125638260972 77.9828458108696054 3946.23999 11.9679090000000006 13 174045.624427854986 275.681337015955023 631.328999999999951 12.2497299999999996 14 194083.779875581997 296.836529107394028 653.840640000000008 11.5419459999999994 1.19623849999999998 0 0.707783700000000016 0.281821250000000023 0.425962449999999992 -7.79422414470468983 1.60140480930985007 6 6500 3.5 0 NOT_AVAILABLE 151.70293932085599 -62.7964364945420996 22.6707515747764994 -12.5009809327256995 100001 6297.5 6138 6880.7002 0.446999997 0.140000001 0.860099971 0.223000005 0.0983000025 0.426999986 200111 1.45942959999999999 1.22251519999999991 1.53626360000000006 3.01810050000000007 2.92818470000000008 3.10801630000000007 +1635721458409799680 Gaia DR2 2481412205598925696 2481412205598925696 1546990199 2015.5 25.5943273808309009 0.0626027422476850975 -2.77431166950777008 0.0324424985161863993 1.40254410022639009 0.0414328964135765032 33.8509799999999998 21.9786989099348986 0.150999554363955013 -12.2881093456424999 0.0719149085639047003 -0.481708939999999974 -0.263164640000000005 -0.753413299999999952 0.491066000000000003 0.159734669999999995 0.580776929999999969 -0.314182669999999997 0.345607429999999993 -0.327583400000000025 -0.332452030000000009 122 0 121 1 -0.91952526999999995 101.936996 0 0 31 false 27.2526800000000016 1.58525053430261997 0.0116649525613670008 -0.139910850000000003 14 8 0.164402999999999994 0 14 false 120 21677.5758887494012 10.6098127025056002 2043.16003 14.8483389999999993 11 11091.3879748797008 30.6867012636879011 361.439579999999978 15.2389229999999998 14 15339.5846272154995 25.4889749611424001 601.812559999999962 14.2973859999999995 1.2192771 0 0.94153690000000001 0.390583999999999987 0.550952899999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.692083232745006 -62.766380283432099 22.6897758339676017 -12.4768348373294007 100001 5389.5 5308.91016 6244.77979 0.0122999996 0 0.137600005 0.0107000005 0 0.0494999997 200111 0.769864439999999983 0.573425949999999962 0.793416499999999969 0.450523139999999989 0.420364830000000023 0.48068145000000001 +1635721458409799680 Gaia DR2 2481411926425698816 2481411926425698816 1592781078 2015.5 25.6170048903723 5.77220745388741019 -2.79480727252862016 2.23147753926670012 \N \N \N \N \N \N \N 0.467889400000000011 \N \N \N \N \N \N \N \N \N 54 0 54 0 2.02371670000000003 71.0307999 3.06883556950774006 0.578587485536652957 3 false 0.0146079820000000003 \N \N -0.0759962649999999934 8 6 18.0718689999999995 0 8 false 58 75.6756192224759019 2.11050419882203988 35.8567009 20.9909759999999999 5 54.5713178769869032 9.83939611453888041 5.54620599999999975 21.008977999999999 3 71.4205544476130996 1.18830052157186006 60.1031070000000014 20.1273610000000005 1.66489390000000004 0 0.881616599999999973 0.0180015559999999984 0.86361504 \N \N 0 \N \N \N NOT_AVAILABLE 151.756020578539989 -62.775171881708701 22.7036402986675014 -12.5042190220943006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409697338026240 2481409697338026240 524111339 2015.5 25.6209061724516012 0.0232716949406711997 -2.81640892191289982 0.0157124042696115997 2.07710234413890982 0.0234342088757742012 88.6354800000000012 1.6367936965379899 0.0513547975722124031 5.38143356637780013 0.034080010267192401 -0.0303591580000000007 0.246611340000000012 -0.0444363430000000031 0.0491533999999999999 -0.0134229380000000006 0.0244084040000000016 -0.191886899999999999 -0.0763438699999999942 0.0630626100000000051 0.0443656560000000033 150 0 150 0 -1.478966 120.653 0 0 31 true 109.652079999999998 1.58502212397831999 0.00569762723611914011 -0.137597799999999992 17 9 0.0583430799999999986 0 17 false 148 87637.3865193006059 34.5073377427927994 2539.66992 13.3316420000000004 16 45438.7091950820031 63.8104917932530995 712.088399999999979 13.7078229999999994 16 60530.9801645268017 63.5355626295275968 952.710199999999986 12.8069749999999996 1.20918360000000003 0 0.900847430000000005 0.376180650000000005 0.524666799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.784013683799003 -62.793001931675299 22.6992229603625013 -12.5257415260144001 100001 5481.66992 5431 6137.8501 0.0995000005 0.0199999996 0.224099994 0.0460000001 0.0113000004 0.1175 200111 1.00512090000000009 0.801699300000000004 1.0239621000000001 0.821829440000000022 0.797804529999999956 0.845854340000000038 +1635721458409799680 Gaia DR2 2481409693042700544 2481409693042700544 1036436457 2015.5 25.6209951256122999 0.337454199348140027 -2.80375598251968006 0.208323272533879 1.77447679412093007 0.326617392941932982 5.43289139999999993 16.6680645108861007 0.865567346144814009 5.69274054466768042 0.393778672055036028 -0.03505722 -0.109349935999999995 -0.288562600000000002 0.153851180000000004 -0.0615336079999999966 0.209550340000000002 0.073423505 0.0489487160000000032 0.046963412000000003 -0.0281832300000000001 150 0 150 0 1.05567910000000009 163.009003 0.122206583291556994 0.0269994835368679992 31 false 0.230569319999999994 1.2255345391238901 0.0707194712059446978 -0.137708130000000012 17 9 0.76922579999999996 0 17 false 150 419.672367631676991 2.05854157562245987 203.869003 19.1310900000000004 14 104.400183053790002 9.3093689142635796 11.2145279999999996 20.3046340000000001 14 556.462262679771015 14.1353798370346997 39.3666300000000007 17.8983300000000014 1.57471040000000007 0 2.40630340000000009 1.17354390000000008 1.23275950000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.772294136645996 -62.781539701833502 22.7040695534150991 -12.5140061461460004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411106087298688 2481411106087298688 1508624274 2015.5 25.6428639931672997 0.128800868593125006 -2.80493809147965001 0.0608174319459962032 1.11295253292990992 0.0894694867521236004 12.4394650000000002 21.9739725341227015 0.334432355343675991 -7.06065434109976042 0.115312712406355003 -0.399847540000000001 -0.297715159999999979 -0.66524386000000002 0.377410650000000014 0.156509129999999996 0.471052320000000024 -0.163013829999999998 0.308067949999999979 -0.137744709999999992 -0.31565169999999998 129 0 129 0 -0.132750730000000011 121.263 0 0 31 false 4.05763300000000005 1.53571019693524002 0.0200424190656503 -0.225367469999999986 15 7 0.321687200000000006 0 15 false 128 3701.92210398884981 3.44932622682062018 1073.22998 16.7672980000000003 15 1542.42221979856004 12.2601793928315992 125.807469999999995 17.3808800000000012 15 3107.43561887734995 10.7467259650548996 289.151859999999999 16.0309139999999992 1.25606580000000001 0 1.349966 0.613582599999999978 0.73638344 \N \N 0 \N \N \N NOT_AVAILABLE 151.816511947999004 -62.7732118946290996 22.7244348132103013 -12.5231298588798001 100001 4863.25977 4499 4967.56006 0.167300001 0.00400000019 0.372999996 0.104000002 0.000899999985 0.207699999 200111 0.51682360000000005 0.495348779999999989 0.603901149999999998 0.134614070000000002 0.112196879999999999 0.157031250000000011 +1635721458409799680 Gaia DR2 2481411926425700864 2481411926425700864 1505842485 2015.5 25.6209810416554014 0.225196809014208993 -2.79235605302105983 0.104374267546889998 1.19357437310076997 0.155144616101623001 7.69330200000000008 5.08982823844810994 0.576534446494654018 0.0338377745642748987 0.184553841215487013 -0.400255799999999995 -0.229316369999999992 -0.653924759999999994 0.363258330000000018 0.154652879999999993 0.470278350000000012 -0.0813620199999999932 0.272623329999999997 -0.0832099500000000047 -0.319197420000000009 131 0 130 1 15.4269339999999993 560.16803 0.776669789957147971 22.4198153571399992 31 false 1.27969679999999997 1.52943775197171994 0.0331523335690680973 -0.222809150000000011 15 7 0.541329740000000004 0 15 false 130 5566.06825079278042 9.18673630892179993 605.880981 16.3244949999999989 15 3131.58888219895016 27.1662846705420016 115.274829999999994 16.6119769999999995 15 3908.12431324281988 21.0146869145660986 185.971100000000007 15.7819990000000008 1.26475509999999991 0 0.829977999999999994 0.287481299999999995 0.542496700000000054 \N \N 0 \N \N \N NOT_AVAILABLE 151.761557231371995 -62.7712521707953996 22.7083461552896999 -12.5033982611134995 100001 5797 5579.72998 6092.6001 0.109999999 0.00800000038 0.184300005 0.0485000014 0.0046000001 0.0869000033 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411960785314816 2481411960785314816 1192987934 2015.5 25.6320676934466007 0.930801890445719038 -2.78627808393701004 0.481063768102497014 -0.527750447533183009 0.752485991189668968 -0.701342600000000038 -4.81898212114878977 2.5708207701241399 -0.963320422554169054 1.08525704640673992 -0.180343869999999989 -0.55433416000000002 -0.767424100000000053 0.374149620000000016 0.0700869600000000037 0.39768618 -0.00842278699999999929 0.54508829999999997 -0.314667819999999987 -0.150952279999999994 115 0 115 0 0.598332700000000051 118.414001 0.434335872926424005 0.115314018524937001 31 false 0.0792662650000000024 1.16711194159345011 0.184451806459389994 -0.136472729999999987 13 8 2.40451309999999996 0 13 false 114 183.93764000733799 1.57854846039775998 116.523003 20.0266899999999985 12 73.5971951316478936 7.28481644374367043 10.1028199999999995 20.684235000000001 11 204.39616595520701 10.3178270457781007 19.8100009999999997 18.9857389999999988 1.5113456999999999 0 1.69849589999999995 0.657545099999999993 1.04095080000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.777698203949001 -62.7610050132946995 22.7211826030045998 -12.5018132390831997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411204873262592 2481411204873262592 1188533772 2015.5 25.6417771987538003 13.6812507826422998 -2.78256384823963021 10.5899172350260997 \N \N \N \N \N \N \N 0.717544199999999965 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.693425799999999981 49.0252991 0 0 3 false 0.0305021010000000002 \N \N 0.218780770000000013 6 3 37524.5500000000029 0 6 false 47 80.8912337236995 1.75690821189019997 46.0418015 20.9186119999999995 4 34.4352706966415028 4.9219845227072998 6.99621699999999969 21.5088790000000003 6 87.0493909373052048 12.8013179495864993 6.8000335999999999 19.9125060000000005 1.50182719999999992 0 1.59637260000000003 0.590267199999999992 1.00610540000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.793336515725002 -62.7534815988206987 22.7318192173632987 -12.5019210120423008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412235663228288 2481412235663228288 508943078 2015.5 25.6089988909007999 1.27234838375360004 -2.76942035497391004 0.509855222676762976 \N \N \N \N \N \N \N -0.485096599999999989 \N \N \N \N \N \N \N \N \N 131 0 129 2 7.3800454000000002 279.165985 2.85465172967011016 9.39338055724862997 3 false 0.0589024870000000034 \N \N -0.229384769999999988 15 8 2.77721099999999987 0 15 false 130 273.311728282879017 2.13076936370881009 128.268997 19.5967200000000012 13 74.433297014047497 9.91499369178655954 7.50714539999999975 20.6719700000000017 11 387.426748982609979 11.6624195334775003 33.2201000000000022 18.2914470000000016 1.68986550000000002 0 2.38052369999999991 1.07525059999999995 1.30527299999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.716423004297013 -62.7556767008079035 22.7055755257839991 -12.4776696211041003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459308504801152 2481459308504801152 1320916307 2015.5 25.5756164708143992 0.147151393643208006 -2.74218493442189004 0.0796771589896421023 1.46101316521509994 0.110187016820616004 13.2593949999999996 -0.152039793057458988 0.384678126168426004 -7.62538791143505978 0.143113439209259008 -0.315308660000000018 -0.256935999999999998 -0.705669100000000049 0.388145830000000025 0.133172850000000009 0.531802100000000055 0.0280087660000000009 0.351133379999999995 -0.219249310000000003 -0.193450640000000007 123 0 123 0 2.04723480000000002 151.537994 0.146885981823823009 0.439513143544989993 31 false 2.94082430000000006 1.39334861534754006 0.0242444068885387005 -0.102019760000000001 14 8 0.367461199999999988 0 14 false 121 2958.9499746260999 4.22714210237695998 699.987976 17.0105199999999996 14 889.992709792275946 11.7757979081179993 75.578125 17.9779219999999995 14 3152.30514741323987 46.8499864991024992 67.2850799999999936 16.0153479999999995 1.36612580000000006 0 1.96257400000000004 0.967401500000000025 0.995172500000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.625136515023996 -62.745352389173398 22.6840635153644001 -12.4400883739122996 100001 4312.10986 3757 5209.83984 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459415879442944 2481459415879442944 788292022 2015.5 25.5865682488090016 0.0739207544619237961 -2.73077143475962014 0.0344891628000065023 0.569622072556969949 0.0432218625938253984 13.1790269999999996 6.73453369634150967 0.16521422395850599 -2.4960558550732399 0.0672421844319130019 -0.548993300000000017 -0.0810654759999999974 -0.780674700000000055 0.472713739999999993 0.0122716349999999995 0.615954000000000002 -0.264249559999999994 0.221858460000000007 -0.21768077999999999 -0.336240170000000005 123 0 122 1 -0.353670660000000026 111.028 0 0 31 false 24.6326220000000013 1.59417070567252006 0.0109866777830258007 -0.18960921 14 8 0.180074170000000006 0 14 false 121 20269.7527464289997 10.7990532896101001 1876.98999 14.9212450000000008 14 10963.7493163385006 30.8979087274765014 354.837919999999997 15.2514909999999997 14 13543.3937039616994 23.8330384325151989 568.261300000000006 14.432601 1.2090498999999999 0 0.818889599999999995 0.33024597 0.488643649999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.636060772299999 -62.7303558527977998 22.6987763577459987 -12.4334922931638001 100001 5806 5783.66992 5844.33008 0.744000018 0.587400019 0.97329998 0.370700002 0.300599992 0.47299999 200111 1.55102399999999996 1.53074409999999994 1.56302560000000001 2.46286080000000007 2.04256100000000007 2.88316060000000007 +1635721458409799680 Gaia DR2 2481412132586189056 2481412132586189056 1148768543 2015.5 25.6324286738162002 5.16604836729526973 -2.76138322724892005 2.06763268508515985 \N \N \N \N \N \N \N 0.481054599999999999 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.68601310000000004 59.7728996 0 0 3 false 0.0335594270000000028 \N \N 0.16113654999999999 7 5 15.6171465000000005 0 7 false 48 82.3433003494339033 1.89484655434110993 43.4564018 20.8992959999999997 5 58.1162120184674009 15.8390188269355008 3.6691802 20.940645 6 91.214875132486597 11.9920789589160002 7.60626029999999975 19.8617549999999987 1.81351839999999997 0 1.07888980000000001 0.0413494100000000031 1.03754039999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.755044971851987 -62.7383710448378977 22.7308922604441008 -12.4787911576189998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412136879478400 2481412136879478400 1271272039 2015.5 25.6362644182591985 5.44542400123702031 -2.76289772997653982 3.19858051796405007 \N \N \N \N \N \N \N -0.544222300000000048 \N \N \N \N \N \N \N \N \N 107 0 107 0 22.5752370000000013 880.729004 17.6064203032237003 50.6159290118360019 3 false 0.00268980489999999994 \N \N -0.146539909999999995 13 7 13.6575989999999994 0 13 false 109 104.790338150690999 1.82209519881033 57.5108986 20.6375619999999991 11 125.120771729078996 14.6183678369357004 8.55914800000000042 20.1080649999999999 12 256.885017883092985 7.9326775618190899 32.3831399999999974 18.7375739999999986 3.64542959999999994 0 1.3704909999999999 -0.529497149999999972 1.8999881999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.764018424114994 -62.7380926122315969 22.7339722391484997 -12.4816070461527993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412441821668736 2481412441821668736 321499462 2015.5 25.6222967803707 0.80569534571351098 -2.7373712368241998 0.404886166628709021 1.52538974887401002 0.643872268638824963 2.36908750000000001 8.85816680609882923 2.22715141702770003 -14.4064821051540992 0.729391197675690051 -0.175909399999999994 -0.502887670000000009 -0.768723799999999957 0.34385275999999998 0.0477661860000000021 0.41461435000000002 0.180654260000000011 0.535239099999999968 -0.224073589999999989 -0.134571899999999994 133 0 132 1 0.426273640000000009 133.225998 0 0 31 false 0.09839175 1.35967430579694004 0.128600155017830009 -0.14186333000000001 15 8 2.07852719999999991 0 15 false 132 218.219133563435008 1.63525869921158007 133.445999 19.8411329999999992 12 62.9271297879885978 8.6651822466185795 7.26206640000000014 20.8542939999999994 11 292.216258518311008 10.7681401300208996 27.1371150000000014 18.5976579999999991 1.62746210000000002 0 2.25663569999999991 1.01316070000000003 1.24347500000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.712599426946014 -62.7210284057803023 22.7302848389659005 -12.4527403806129993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412819778793600 2481412819778793600 1357678296 2015.5 25.6307274118300015 0.19971906001717199 -2.72839100072732998 0.0956162377144205017 2.28303498892646983 0.142244424279333009 16.0500849999999993 15.0740761426148993 0.521847672161152021 15.6235476626982006 0.174680874515722007 -0.362431049999999977 -0.303408679999999986 -0.743971799999999961 0.371261000000000008 0.175789030000000013 0.466920259999999976 -0.0942478600000000027 0.426040470000000004 -0.132070700000000013 -0.289602250000000006 143 0 142 1 1.90458170000000004 170.235001 0.282738243448593995 1.01906519728381006 31 false 1.46752719999999992 1.35386038408716991 0.0317079129734453014 -0.166056680000000012 16 8 0.496206370000000008 0 16 false 141 1717.52274766710002 2.75255319513980989 623.973999 17.601109000000001 15 466.257885239448001 12.2696701899265008 38.0008499999999998 18.679822999999999 15 1938.33139041545996 11.2277553039085998 172.637480000000011 16.5433500000000002 1.40003349999999993 0 2.13647270000000011 1.07871439999999996 1.05775829999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.720788048141998 -62.7093037422791966 22.7416836862762999 -12.4474807179436002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459514663474816 2481459514663474816 287669511 2015.5 25.5650049809351003 2.32533390411954022 -2.71933646173396015 1.40114494161101 \N \N \N \N \N \N \N -0.530906600000000006 \N \N \N \N \N \N \N \N \N 86 0 86 0 1.9835948000000001 108.151001 3.29492818286770994 1.83735793461157004 3 false 0.0195718000000000003 \N \N -0.133922650000000004 10 7 5.66647619999999996 0 10 false 86 92.7996213949590043 1.44970328074620003 64.0128021 20.7695000000000007 8 49.4382130025111977 12.1923293144557991 4.05486199999999997 21.1162320000000001 10 123.605602338424006 9.58526985859220915 12.8953705000000003 19.5318240000000003 1.86470390000000008 0 1.58440779999999992 0.346731200000000017 1.2376765999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.582894710700003 -62.7292282445826999 22.6825655097715995 -12.4149435785194004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459377224284928 2481459377224284928 476008674 2015.5 25.6107531449024997 0.533791471511726012 -2.72179445385748986 0.286441015095763973 0.395191024656778023 0.420689045443089993 0.9393899 3.04158409593661982 1.50502100818692996 -0.0937937306760833062 0.464287712190528001 -0.191349689999999989 -0.484519540000000026 -0.75121389999999999 0.32351464000000002 0.127893150000000011 0.459287900000000027 0.234500349999999996 0.542762700000000042 -0.138465389999999994 -0.10059427 118 0 118 0 2.99616719999999992 163.438004 1.0543657740391601 3.14369643016814004 31 false 0.23668204000000001 1.41858108407558992 0.0828480567872773993 -0.0994237599999999999 14 8 1.40073859999999994 0 14 false 115 523.145341918459053 2.42928969030527009 215.348999 18.8918099999999995 11 249.58564975524601 9.39712321122643068 26.5597929999999991 19.3583399999999983 12 397.966854993882976 8.49206576047576966 46.8633730000000028 18.2623019999999983 1.23780610000000002 0 1.09603690000000009 0.466529850000000024 0.629507060000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.675305664153996 -62.7118992153700034 22.7251613937260011 -12.4340171718814005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451543204160128 2481451543204160128 1590132126 2015.5 25.3686629201608014 0.458904176151407994 -2.8503355840775999 0.324502423601941981 1.17212380791936011 0.511266330466069951 2.29258940000000022 0.927564734661531998 1.27181989991335009 -10.3946298808498003 0.691727513207191946 0.0753806159999999975 -0.0323112529999999981 0.0338610040000000001 0.00559260460000000036 -0.0310992970000000014 0.0154162050000000005 0.0414019899999999996 -0.212665230000000011 0.0949834700000000004 -0.0122537970000000003 112 0 111 1 1.34593600000000002 126.080002 0 0 31 false 0.12972844 1.6878896755166799 0.110282547550997007 0.0207343619999999992 13 9 1.11804780000000004 0 13 true 108 302.073197689381004 2.02246983189210994 149.358994 19.4880850000000017 10 169.861482771178004 14.3292618936227001 11.8541679999999996 19.7761519999999997 10 215.911288494211988 12.7261266383167992 16.9659860000000009 18.9262310000000014 1.27708379999999999 0 0.849920299999999962 0.28806685999999998 0.561853399999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.316262608789998 -62.9312100452368028 22.4464797326347991 -12.4646407889791 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451715005457664 2481451715005457664 118047223 2015.5 25.3761565998583016 2.60589418470080014 -2.8375545432816498 1.70805132084210998 \N \N \N \N \N \N \N 0.332668100000000022 \N \N \N \N \N \N \N \N \N 52 0 52 0 -0.188550429999999991 44.549099 0 0 3 false 0.0167496729999999996 \N \N 0.0810727249999999983 7 6 10.7290679999999998 0 7 false 53 77.0047985579839036 1.65603095935305 46.4995995 20.9720699999999987 5 56.3006654851377988 8.26383091575993944 6.81290149999999972 20.9751049999999992 4 54.7788715826190966 10.9264709600715992 5.01340900000000023 20.4153880000000001 1.4425015000000001 0 0.559717200000000026 0.00303459169999999992 0.556682600000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.319262066795005 -62.9164618921606973 22.4584244918837008 -12.4555118980971997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451650578551936 2481451650578551936 450706999 2015.5 25.378231547626001 0.27481515196880002 -2.83923938090646999 0.193486284781098 0.294317510783649983 0.314881140803129012 0.934694000000000025 3.11228941442774998 0.644215279364068971 -3.55791232148905978 0.337800854460257982 0.162444379999999999 0.136247499999999994 0.00483529970000000017 0.153326359999999995 -0.194818899999999989 0.196337950000000011 0.220313969999999998 -0.12036289 0.0621183500000000027 0.17897115999999999 130 0 130 0 3.75934400000000002 193.466995 0.987130139222331948 3.84367457319941019 31 false 0.350449200000000016 1.41475157931015993 0.0613329389499156982 0.022501278999999999 15 9 0.571557899999999952 0 15 false 128 783.284012890921986 2.4084752014007198 325.220001 18.4535680000000006 13 311.384922707209 9.88145007087645055 31.5120679999999993 19.1181449999999984 13 677.322977486002969 12.5724232748596005 53.873702999999999 17.6849300000000014 1.26225969999999998 0 1.4332142000000001 0.664577500000000043 0.768636699999999951 \N \N 0 \N \N \N NOT_AVAILABLE 151.324953112721005 -62.9171099868530987 22.4597628036357015 -12.4578412293026002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451032103261568 2481451032103261568 593589128 2015.5 25.4284283393327009 0.0287044907923219988 -2.85313968923757022 0.0208880825929801985 1.44521900211307996 0.0331122760775448971 43.64602 -2.08427191878574014 0.0672541206783578011 -2.82685294013284993 0.045308605848497302 0.117601230000000001 0.209399730000000006 0.0424283739999999979 0.032195933000000003 -0.167540539999999988 0.0372788350000000032 -0.100913589999999997 -0.159074870000000007 0.0307176260000000013 0.244831589999999988 139 0 139 0 -1.65132469999999998 108.165001 0 0 31 true 50.9533959999999979 1.59433275762681004 0.00747183822064787038 -0.00207714619999999984 16 9 0.0715504000000000001 0 16 false 139 41410.9450528090019 15.3308258925532996 2701.15991 14.1455769999999994 15 21782.9934910170014 45.3726059406575999 480.09129999999999 14.5060939999999992 16 28337.3040832488987 38.4931982284219032 736.163940000000025 13.6310230000000008 1.21031519999999992 0 0.875070600000000032 0.360516549999999991 0.514553999999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.437601850395993 -62.9084135852529016 22.5022673881010995 -12.4892158334530006 100001 5637.75 5419.33984 5982.6499 0.0140000004 0.00400000019 0.153600007 0.00650000013 0.00159999996 0.0659999996 200111 0.932075399999999998 0.827705800000000047 1.00871829999999996 0.790715159999999972 0.747757549999999993 0.833672760000000013 +1635721458409799680 Gaia DR2 2481452058600243968 2481452058600243968 1473261785 2015.5 25.3966239554493995 0.235924258496568007 -2.82984066467638984 0.168460645914070006 1.38422660834255007 0.267829070384537016 5.16832099999999972 -12.6976399173797994 0.567899814738878961 -12.6714338849930996 0.298447766430038008 0.179019359999999988 0.0778883550000000063 -0.0310950740000000003 0.16091989000000001 -0.189869840000000012 0.216375490000000004 0.205966430000000006 -0.111031229999999995 0.0335551720000000012 0.197266300000000006 131 0 130 1 1.90923540000000003 156.906006 0.538891216268465034 1.20101239515387004 31 false 0.467917680000000002 1.35978874024449992 0.0539124509718737974 0.0289396440000000005 15 9 0.50518525000000003 0 15 false 130 771.830946614987056 2.18046412288463998 353.976013 18.4695600000000013 14 212.337353913688986 6.12538315566879987 34.6651540000000011 19.5338230000000017 14 877.42395766045604 9.83015528426260055 89.2583999999999946 17.4038959999999996 1.41191709999999992 0 2.12992669999999995 1.06426240000000005 1.0656642999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.352738087694007 -62.9008102980996995 22.4807975859725993 -12.4558627865435998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451233966563584 2481451233966563584 1527824131 2015.5 25.4154290216396994 1.64268520969713006 -2.84794010290992006 2.04013594908149987 \N \N \N \N \N \N \N 0.257182269999999991 \N \N \N \N \N \N \N \N \N 81 0 81 0 -0.00377658700000000009 75.2890015 0 0 3 false 0.0197556930000000013 \N \N 0.155354159999999991 10 6 16.5069769999999991 0 10 false 82 92.3284882841771974 1.21451936409233996 76.0205994 20.7750260000000004 10 48.7753780827880021 5.79490954936898017 8.4169350000000005 21.1308860000000003 9 71.1657107732087013 8.24760343965698084 8.62865399999999916 20.1312430000000013 1.29906919999999992 0 0.999643300000000012 0.355859760000000025 0.643783569999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.406943383900995 -62.9092257516158 22.4918622581548 -12.4796037190823004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451268326259712 2481451268326259712 95676172 2015.5 25.4277987552823994 0.20126068354297999 -2.8336104559899602 0.139493376601419 1.66039059582478998 0.229150748295496004 7.24584399999999995 -12.0855028831306992 0.547007414196156949 -14.5324946608931 0.282416038667749003 0.0719197300000000012 -0.00830055199999999924 0.121662385999999997 -0.00291088100000000015 -0.139318529999999996 0.0268323529999999998 0.138048799999999999 -0.25122224999999998 0.100292005000000004 0.00908766899999999961 121 0 120 1 2.4217019999999998 154.960999 0.486883752661711022 1.43653278510440008 31 false 0.672495069999999973 1.27297520934004993 0.0503520459158606978 -0.0136449429999999997 14 9 0.484472599999999975 0 15 false 121 1058.27823467463008 3.69955636405804 286.054993 18.1268649999999987 14 238.763856845873988 5.15437215563868989 46.3225860000000011 19.4064669999999992 15 1315.06649294904992 13.8333459641364005 95.0649640000000034 16.9645499999999991 1.46826260000000008 0 2.4419173999999999 1.27960199999999991 1.1623154 \N \N 0 \N \N \N NOT_AVAILABLE 151.418127150407997 -62.8910044065217022 22.5090279394710002 -12.4708251926029998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450993448344704 2481450993448344704 1633209926 2015.5 25.4470949079989985 0.637971661837505977 -2.85531251543826015 0.432693152266951986 1.4849038291560599 0.721744289289056984 2.05738200000000004 11.2076885029609006 1.56912879228432001 -4.85478503247173965 0.745966160609381035 0.152338150000000006 -0.0421317370000000024 -0.157996710000000012 0.17161614 -0.262159230000000021 0.246901349999999992 0.222198010000000001 -0.046205000000000003 -0.00401645200000000022 0.189764810000000006 138 0 138 0 2.64866380000000001 180.227005 1.18558380162719001 0.783752432918132014 31 false 0.0669460149999999976 1.23986476948533997 0.13475043914627699 -0.00172263220000000005 16 9 1.39070310000000008 0 16 false 137 203.438396149988989 1.65248458132147991 123.111 19.9172839999999987 12 85.1882458644282963 12.2163601408255005 6.97329199999999982 20.5254380000000012 14 270.207534234958018 12.5808939120088006 21.4776099999999985 18.6826760000000007 1.74694550000000004 0 1.84276200000000001 0.608154300000000037 1.23460769999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.476673955222992 -62.9024463889281975 22.5192046969225999 -12.4980956414564996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450993448345344 2481450993448345344 1227378008 2015.5 25.4628395158832994 0.351567755746503008 -2.85222855102401995 0.252608367764622976 2.31741811974523992 0.381442699981027977 6.07540299999999966 -1.99491271013291005 0.854654487124565043 -0.818347936156448963 0.45372010351811598 0.176888049999999991 0.118090235000000002 -0.0104820499999999997 0.22005828999999999 -0.129815580000000014 0.306158129999999973 0.286024329999999993 -0.166485369999999994 -0.0572046859999999976 0.230538670000000001 131 0 130 1 2.35432150000000018 165.238007 0.903807341478890969 1.68131368290908001 31 false 0.215082699999999988 1.35949868953322994 0.086615315408356805 -0.00219998740000000017 15 9 0.763987799999999995 0 15 false 129 463.014768893118003 1.4213222041306699 325.763 19.0243779999999987 12 109.183270256677005 15.2748030482754995 7.14793300000000009 20.2559989999999992 13 598.665876731308003 13.7209621558259993 43.6314800000000034 17.8189579999999985 1.52878310000000006 0 2.43704030000000005 1.23162079999999996 1.20541950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.505018220141011 -62.8929573970522 22.5353440950134996 -12.5010129181698009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451027808085120 2481451027808085120 1678458581 2015.5 25.4365370848637014 0.666350266116571999 -2.84849606331607985 0.468059307180734019 0.386468892797763974 0.765806557724691972 0.504655999999999993 -2.59909326775906013 1.85238129436590993 -4.05692771201942026 0.865882241048042012 0.133559270000000008 -0.0869960399999999967 0.0600661639999999983 0.0847960700000000012 -0.141101389999999993 0.128466999999999998 0.263912599999999997 -0.239729870000000012 0.0653101799999999955 0.0298820269999999985 120 0 117 3 0.440884439999999989 118.037003 0.622429258964553034 0.17292077807855899 31 false 0.0638450760000000006 1.40346731866600005 0.159913197547365993 -0.00240856220000000001 14 9 1.63071820000000001 0 14 false 116 189.780803713580013 1.73051654181463999 109.667 19.9927349999999997 9 55.4260425879655969 5.49862898878186979 10.0799749999999992 20.9921040000000012 11 245.860071498205997 9.88769081090983981 24.8652669999999993 18.7851999999999997 1.5875478999999999 0 2.20690350000000013 0.999368669999999959 1.20753479999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.449357531960999 -62.9007661840985008 22.5117304411961001 -12.4878777475768992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451165247040512 2481451165247040512 1473281183 2015.5 25.455766158781401 0.395342408029413006 -2.84320725557200005 0.287273837178963987 0.614919270832627984 0.41834608100486298 1.46988180000000002 -4.50320252271708998 0.963149525950076968 2.2787179581832202 0.494171042800400973 0.202832970000000001 0.102007609999999999 -0.0725247700000000023 0.24570322 -0.0510568470000000024 0.326774779999999987 0.295575650000000023 -0.0885929599999999984 -0.0215327459999999984 0.216682390000000002 130 0 129 1 0.969979000000000036 139.190002 0 0 31 false 0.173769089999999987 1.34654380457778999 0.0934886370369245046 -0.00764957539999999974 15 9 0.858723800000000037 0 15 false 132 354.492013226539996 1.97679031403210992 179.326996 19.314350000000001 10 130.202167564233008 20.4834128614958004 6.35646869999999975 20.0648419999999987 13 425.85108638352699 9.02810589059389912 47.1694829999999996 18.1887760000000007 1.56859170000000003 0 1.87606619999999991 0.750492099999999995 1.12557409999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.482558418763006 -62.8878055586982967 22.5320145753605985 -12.4900253836974997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451272621429760 2481451272621429760 933182952 2015.5 25.4398546552437992 0.0583726141335074028 -2.83697259948840008 0.0415329093170576993 3.83765294701121018 0.0679100994070136049 56.510784000000001 51.8652833031457021 0.139437047748132009 -5.04301275381561975 0.0818958759573795991 0.117453050000000003 0.136108040000000013 0.0294675660000000006 0.0893242900000000006 -0.234218969999999999 0.13437963 0.0637884439999999997 -0.163077100000000003 0.0228960300000000012 0.213796569999999991 139 0 139 0 1.83228300000000011 165.520996 0.108712113124776993 0.614775857561234984 31 true 7.95549199999999956 1.31237068420825009 0.0141253401593472994 -0.00313763090000000007 16 9 0.131227719999999992 0 16 false 139 7763.93110414521016 7.03981328352819968 1102.85999 15.9631609999999995 14 1977.54328008071002 17.0398898766101006 116.053759999999997 17.1110730000000011 15 8821.59507958831091 21.9568617348486015 401.769400000000019 14.8980519999999999 1.39093700000000009 0 2.21302030000000016 1.14791109999999996 1.06510930000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.445180107731005 -62.8889278260202005 22.5192283727986009 -12.4783815856615998 100001 3580.5 3519.5 4052.83008 0.249200001 0.120899998 0.495299995 0.143199995 0.0784000009 0.277399987 200111 0.559664300000000003 0.436814959999999974 0.579232700000000045 0.0463793539999999976 0.0446410139999999997 0.0481176940000000025 +1635721458409799680 Gaia DR2 2481451371405475840 2481451371405475840 972265135 2015.5 25.4449655414465994 1.70607069707689996 -2.83141077145028985 1.36793219345493 1.06211675557634999 1.72590259121601997 0.615397900000000053 7.81883609444343008 4.6093426160210198 -7.11283257084389042 3.06464689527990997 -0.05782553 -0.445781299999999991 -0.587491749999999979 0.19783690000000001 0.309670840000000003 0.26519334 -0.52126866999999999 0.415060600000000002 -0.316461949999999992 0.0985490299999999958 79 0 78 1 0.933091899999999974 84.1300964 0 0 31 false 0.0221869869999999983 \N \N 0.028670306999999999 10 7 4.22897199999999973 0 10 false 80 95.7029003123366948 1.54009690199115989 62.1408005 20.7360529999999983 8 87.4734985407879009 11.1730330612107007 7.82898430000000012 20.496696 9 77.2041400824777071 10.7930739331442993 7.15311859999999999 20.0428180000000005 1.72071730000000001 0 0.453878400000000015 -0.239356999999999986 0.693235399999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.450124927469005 -62.8817228280853016 22.5261854481206996 -12.4750877393623991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410070999952128 2481410070999952128 753735062 2015.5 25.5001978921233992 0.728490685354230005 -2.84391087640018991 0.519836460105505993 1.5314640376867299 0.762121146853560028 2.00947599999999982 23.1000180005306994 1.84943161362835995 7.18067617850596029 0.864757777763479951 0.160607980000000011 -0.0660772250000000033 -0.128326859999999987 0.277365179999999989 -0.173446390000000006 0.39536184000000002 0.363979459999999977 -0.0913553799999999999 -0.0942364200000000013 0.213246700000000011 127 0 122 5 1.74790280000000009 145.056 1.92612077904869006 2.5661573509353599 31 false 0.0593613159999999973 1.24352293227920008 0.160135328251428011 -0.0222723699999999997 15 9 1.64853870000000002 0 15 false 123 205.714133194190993 1.68078663260241989 122.391998 19.9052049999999987 12 62.3825592727010019 10.7595795560421994 5.79786200000000029 20.8637300000000003 13 252.588953916348004 10.0668663000334995 25.0911200000000001 18.7558839999999982 1.53111269999999999 0 2.10784530000000014 0.958524700000000007 1.14932060000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.57126410333899 -62.869515757157302 22.5740174165076013 -12.5070019898662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410036640261888 2481410036640261888 137197891 2015.5 25.5180920160778015 0.571957600312405945 -2.84002158315470998 0.381312853292070986 2.63915972789230979 0.587955314825555964 4.48870799999999992 42.0406124471402975 1.41714452456338003 -6.9907133659859797 0.597166412166759031 0.0989986499999999936 -0.0616441630000000018 -0.269822600000000024 0.285790829999999996 -0.0247500559999999994 0.405941580000000024 0.341098279999999976 0.0573226179999999988 -0.0238865319999999985 0.137137580000000009 114 0 114 0 2.40784999999999982 147.738998 1.06931914114229998 1.14209215415423992 31 false 0.116147205000000003 1.35387954302161995 0.112528481494760996 -0.049281514999999998 13 7 1.26571689999999992 0 13 false 111 282.306265312656024 1.44493700785126999 195.376007 19.5615629999999996 11 58.3227859398464972 5.85146322023105014 9.96721400000000024 20.9367920000000005 12 405.43354758280401 14.5415048548947006 27.8811259999999983 18.2421199999999999 1.64274190000000009 0 2.69467159999999994 1.37522889999999998 1.31944269999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.603047029354002 -62.8583625137302988 22.5925063475560002 -12.5099572970935 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410105359697664 2481410105359697664 595742163 2015.5 25.5080181129434003 0.162624768209808007 -2.82841711778540983 0.110411827408644997 1.5849288623134099 0.161350150840348011 9.82291500000000006 -3.15318066181660983 0.404858361769835973 -13.1035816635263007 0.189232952333486998 0.0546410940000000012 -0.0274581399999999989 -0.186386820000000009 0.274409699999999979 -0.0919367199999999996 0.396808830000000001 0.290478320000000012 -0.0677037459999999952 -0.0894119099999999972 0.13857469 120 0 119 1 3.1947489 168.496994 0.34575772371722302 1.30077633688801009 31 false 1.30089879999999991 1.27991611083796997 0.034769619544740997 -0.0930607299999999943 14 8 0.364096370000000003 0 14 false 117 1689.56505843769992 3.45617102105165008 488.855011 17.6189290000000014 11 467.059752929120975 20.2582012185830997 23.0553419999999996 18.6779580000000003 11 1881.33963042158007 15.6694482642605006 120.064189999999996 16.5757520000000014 1.38994309999999999 0 2.10220530000000005 1.05902859999999999 1.04317670000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.572239878484993 -62.8521703091809982 22.5872931028061004 -12.4954660989847994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410144014602112 2481410144014602112 887882401 2015.5 25.5242427628650006 0.163546643450559998 -2.82624061386058978 0.117460751857231996 11.5433926620678999 0.174197973882229989 66.2659400000000005 105.99118098788 0.408929364943783014 9.51569790233446966 0.207605096202165995 0.148949770000000009 0.0599277500000000019 -0.0262821430000000009 0.233505249999999998 -0.0857350999999999946 0.315743739999999995 0.307112930000000006 -0.163871569999999994 -0.0501897369999999982 0.171799940000000012 129 0 127 2 5.01245299999999983 217.259995 0.569694468094776973 3.73124844111833998 31 false 1.03968330000000009 1.13061018281021997 0.035799029104849403 -0.0458187399999999967 15 9 0.366450070000000017 0 15 false 127 1758.12291974908999 3.61839534456691014 485.88501 17.5757429999999992 13 184.845735591172001 8.53235955782782973 21.6640820000000005 19.6843639999999986 13 2654.70133059001 16.4109473779673998 161.764049999999997 16.2018810000000002 1.61510160000000003 0 3.48248300000000022 2.10862160000000021 1.37386129999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.602306130031991 -62.8432780820827972 22.6035482503463001 -12.4994004692585996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410040935387776 2481410040935387776 816491488 2015.5 25.5263470187316983 0.0328066007598330003 -2.83812242040822005 0.0236384986510146007 1.30618267591097004 0.0357378172160607993 36.5490339999999989 -16.8900073378590996 0.0776563754289002067 -17.650837082489101 0.0520979341365970031 0.105254083999999998 0.192159030000000008 0.0308981280000000004 0.135174600000000006 -0.0410678459999999981 0.171474130000000002 0.00796420899999999987 -0.213215660000000001 -0.123449610000000001 0.24114932 124 0 123 1 -1.30280890000000005 98.5038986 0 0 31 false 37.7399300000000011 1.57499189591143995 0.00892457901977562057 -0.047005232000000001 14 9 0.0814873500000000001 0 14 false 123 30237.5797233365993 10.9304463055708005 2766.36011 14.4869990000000008 12 15294.5514406698003 65.0323862575518064 235.183609999999987 14.8900459999999999 11 21521.8259559770995 11.7628931596215995 1829.63709999999992 13.9297219999999999 1.21757029999999999 0 0.96032430000000002 0.403047560000000027 0.557276699999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.617602942253001 -62.8531200498185001 22.6010754167664984 -12.5112227449480002 100001 5376 5346.60986 5527.5498 0.203299999 0.104000002 0.335099995 0.0909999982 0.0469999984 0.165999994 200111 0.982052150000000013 0.928941130000000004 0.992879500000000026 0.725773099999999949 0.679459499999999994 0.772086700000000015 +1635721458409799680 Gaia DR2 2481409521244143104 2481409521244143104 1079834087 2015.5 25.5804742738509994 0.704705338616274046 -2.83301290518154003 0.47709382718486798 -0.259454195661391995 0.722549065244414979 -0.359081770000000022 7.4149364169974703 1.9035339297112599 -5.21004697198130984 0.833229348111014012 0.0458412880000000009 -0.190936949999999994 -0.332258600000000015 0.113098909999999997 0.119143929999999995 0.163862289999999994 0.120445250000000004 0.151868730000000007 0.17040037999999999 -0.0553793500000000008 119 0 118 1 0.711306870000000036 123.325996 0 0 31 false 0.0600116629999999998 1.88213312042478997 0.153825084264452988 -0.0904314400000000018 14 9 1.69172189999999989 0 14 false 118 181.739447489552987 1.78684378028203006 101.709999 20.0397430000000014 11 64.0600387699116993 10.7352879534306993 5.96724000000000032 20.8349200000000003 11 167.943060348402014 7.61292414649780991 22.060257 19.1990149999999993 1.27656980000000009 0 1.63590619999999998 0.795177460000000003 0.840728759999999964 \N \N 0 \N \N \N NOT_AVAILABLE 151.719816679106003 -62.825342437930999 22.6544995579529989 -12.5263442256570006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410277160243456 2481410277160243456 1477579911 2015.5 25.5751978278339998 1.45672553815995998 -2.82729506504548 0.98809763954458496 -0.679763769384117977 1.53433981568774991 -0.443033400000000022 -3.66188616898595987 4.22150809631394974 -3.4319239064593301 3.02388026354213002 -0.0918539500000000037 -0.121948405999999995 0.130233359999999992 0.0458532420000000024 -0.0570585300000000031 0.0161715169999999998 -0.199039710000000009 -0.333981099999999975 -0.143320589999999998 0.0522938100000000031 86 0 86 0 -1.53079959999999993 62.4742012 0 5.58255096420897958e-16 31 false 0.018294912 1.84776918753797004 0.348850085681906008 -0.16067511000000001 11 8 3.72799419999999992 0 11 false 87 90.6547383955580983 1.76415306737481004 51.3871002 20.7948899999999988 6 56.6689014427081972 13.5825656042241008 4.17217970000000005 20.9680269999999993 7 89.376893679344505 9.15918276049758973 9.75817299999999932 19.883858 1.61101110000000003 0 1.08416939999999995 0.173137659999999999 0.9110317 \N \N 0 \N \N \N NOT_AVAILABLE 151.704023007443993 -62.8224383697975028 22.6516317038110984 -12.5190896556481004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409555603883136 2481409555603883136 1217800421 2015.5 25.5921377652192987 0.291275916335332008 -2.82961166996991009 0.180756949705613013 1.19641117202188996 0.284145380040030981 4.21056000000000008 -2.33621630148393011 0.772255961779627964 -8.21378627157934993 0.347466255021721016 -0.0707120299999999952 -0.070738880000000004 -0.169817949999999995 0.0956092800000000048 -0.015882120999999999 0.121480464999999996 0.127581730000000004 -0.0493179899999999991 0.111690250000000005 -0.134015489999999987 143 0 142 1 2.12867700000000015 174.557999 0.487944277777191016 0.673367315570534974 31 false 0.315097059999999984 1.1747997232479499 0.0633215267553074029 -0.162971630000000006 16 9 0.68300419999999995 0 16 false 141 556.09187140072595 2.02086524671249013 275.174988 18.8254990000000006 11 111.081935550915006 9.85643054552276077 11.269997 20.2372799999999984 13 699.114376491006055 12.8618767045692994 54.3555500000000009 17.6505490000000016 1.4569468000000001 0 2.58673099999999989 1.41178129999999991 1.17494959999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.739654939425009 -62.817270055800698 22.6668782536875 -12.5274623352968 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409456819857920 2481409456819857920 560848393 2015.5 25.5946085265020002 2.54748332804794986 -2.84613077851708018 0.749672222559944035 \N \N \N \N \N \N \N -0.794314150000000052 \N \N \N \N \N \N \N \N \N 115 0 115 0 4.33868899999999957 186.768005 2.20626977444073979 2.90620938766425985 3 false 0.0561274599999999971 \N \N -0.34982975999999999 13 6 4.42413499999999971 0 13 false 117 215.985484079548996 2.08666163349291001 103.508003 19.8523040000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.760069715783004 -62.8311277564548973 22.6630101621591997 -12.5437323495561994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409452524660992 2481409452524660992 237815407 2015.5 25.5946286268544014 0.137798750361735001 -2.84590621017130019 0.0874648205720307964 1.12423206004720999 0.134770938550426989 8.34179899999999996 -6.27655925032715967 0.331763517865257984 -9.34259297758628016 0.167505317174209994 -0.0409150459999999966 0.0423121379999999991 -0.187679769999999996 0.153302359999999999 -0.0789471600000000023 0.201930419999999999 0.0612540000000000029 -0.0305217490000000008 0.0385975399999999996 0.0115107270000000001 151 0 149 2 0.955590500000000009 160.117004 0.217657502292630006 0.523347447018739031 31 false 1.33843800000000002 1.40210410133006991 0.0300007930140133994 -0.135316479999999989 17 9 0.297381820000000019 0 17 false 148 1612.55985558318002 3.35789069404484986 480.230011 17.6695770000000003 15 524.847702517912012 9.25894960253483035 56.6854480000000009 18.5513060000000003 17 1917.94034273937996 9.74745243187411958 196.763239999999996 16.5548320000000011 1.51485110000000001 0 1.9964732999999999 0.881729100000000043 1.11474420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.759898102075994 -62.8309163482542985 22.6631138400668988 -12.5435308752888997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409246366230144 2481409246366230144 196154951 2015.5 25.6059680307784987 0.111968824389314006 -2.84838799125639008 0.0704502236726617936 0.400688232460366001 0.108832063165653997 3.68171120000000007 1.17991031248200007 0.289044138166469011 -0.0320059457751089987 0.141408674423905006 -0.100930640000000002 0.0193705339999999983 -0.0435684000000000002 0.0475819999999999993 -0.0203873299999999986 0.0572043299999999977 0.107713564999999997 -0.126958619999999994 0.11893244 -0.148220639999999987 142 0 142 0 0.668915570000000015 147.671997 0.124957541788145998 0.258650432512498973 31 false 2.14027479999999981 1.54420028494186989 0.0246748315144708005 -0.16224675999999999 16 9 0.260569039999999974 0 16 false 141 2346.12909452443 2.73569110673262017 857.599976 17.2624859999999991 15 1099.2820368673099 11.7472186720309004 93.5780699999999968 17.7486150000000009 15 1793.29278313764007 10.6457318499699998 168.451809999999995 16.6277919999999995 1.23291369999999989 0 1.12082290000000007 0.486129760000000022 0.634693150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.784627851220989 -62.828289115036398 22.6729700302362005 -12.5500011145929005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409486884401280 2481409486884401280 58172031 2015.5 25.6093209721546984 0.618239813295159979 -2.83927414293656 0.377094238260290981 1.52231093201207002 0.604939236610035014 2.51646919999999996 2.9765993943599498 1.6697364659729601 5.90779624165803963 0.705943744531331019 -0.0389608599999999999 -0.163240689999999994 -0.257392320000000008 0.12524861000000001 -0.0379908600000000013 0.167933510000000008 0.143062600000000012 0.0185153470000000014 0.0874198149999999979 -0.102820739999999994 143 0 142 1 0.460256869999999985 144.070007 0 0 31 false 0.0732422300000000054 1.61982968065342003 0.128216494570705997 -0.162288080000000001 16 9 1.47682179999999996 0 16 false 142 194.574491983683998 1.55580152935620997 125.064003 19.9656500000000001 9 72.5998518900372005 23.6379249873738004 3.07132940000000021 20.6990489999999987 12 246.765865252063008 14.5369800941262 16.9750419999999984 18.7812079999999995 1.64135439999999999 0 1.91784099999999991 0.733398439999999985 1.18444250000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.782667349537007 -62.8186208688762022 22.6795918166858002 -12.5427555742429995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409177648676736 2481409177648676736 438721684 2015.5 25.6233667129335991 8.34697733935525932 -2.85871626781468979 4.41672998083107959 \N \N \N \N \N \N \N -0.763162140000000044 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.9556766000000001 62.9421005 3.87916446376040014 1.51326569781114006 3 false 0.0158789200000000012 \N \N -0.117868799999999996 6 4 6301.70799999999963 0 6 false 51 81.0506985489539034 1.45676248996000002 55.6375999 20.9164729999999999 5 33.4083307896961017 7.69306713558825006 4.34265399999999957 21.5417519999999989 5 102.040174734700003 12.2773213608072993 8.31127399999999916 19.7399920000000009 1.67115780000000003 0 1.80175970000000008 0.625278499999999959 1.1764812 \N \N 0 \N \N \N NOT_AVAILABLE 151.828711039119014 -62.8301348081914028 22.6856390170602005 -12.5659924163780996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409280725970432 2481409280725970432 1422856215 2015.5 25.6257644900091002 0.482278991537097024 -2.84267996970225001 0.308231986523888002 1.53316951541587998 0.469374080068765021 3.26641270000000006 33.5986690547066971 1.2086071276046999 2.72765825350085001 0.603617842549594052 -0.0352433659999999982 -0.0458666979999999974 -0.238410220000000006 0.15652640000000001 -0.060728200000000003 0.207594649999999992 0.0256452430000000016 0.00503265299999999978 0.0246542020000000001 0.000782453050000000028 141 0 140 1 3.65167740000000007 203.453995 1.53919488117687009 3.37577038064782009 31 false 0.112868830000000003 1.20336485013433991 0.118146349354954994 -0.135146139999999998 16 9 1.06952350000000007 0 16 false 140 333.375329990623015 1.8206268086578099 183.110001 19.3810329999999986 9 110.380205589632993 15.9791351547854994 6.90777100000000033 20.2441600000000008 10 450.500447781886976 7.68816335766623027 58.5966260000000005 18.1276820000000001 1.68243000000000009 0 2.11647799999999986 0.863126750000000054 1.2533512 \N \N 0 \N \N \N NOT_AVAILABLE 151.818327514960004 -62.8146298100828986 22.6939578247705995 -12.5519579071017997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409388100381056 2481409388100381056 179893739 2015.5 25.6316244629244991 0.0260934998162038016 -2.84292177952784009 0.0175650693750637986 3.24190859195886993 0.0262827671946477999 123.347305000000006 4.79205925826086965 0.0582555879144441013 -24.0164556409096015 0.0382233311449726998 -0.0311503280000000014 0.232406479999999999 -0.03984621 0.056360368000000001 -0.0293182150000000016 0.038527249999999999 -0.165387499999999993 -0.0876769399999999949 0.0508051100000000005 0.0533033870000000007 150 0 150 0 -2.90014649999999996 100.484001 0 8.34490122535248036e-16 31 true 64.5373400000000004 1.50540460263346998 0.00643429705723605992 -0.137498270000000006 17 9 0.0641326599999999941 0 17 false 149 51531.2324121295969 20.9302160369826993 2462.05005 13.9081899999999994 16 21445.9404150363007 31.0419442967878005 690.869749999999954 14.5230254999999993 15 42910.6840633660031 42.6277476623090976 1006.63739999999996 13.1805070000000004 1.24888580000000005 0 1.3425187999999999 0.614835739999999964 0.727683069999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.830117351106992 -62.8123282085229988 22.6994434917623984 -12.5543332564415007 100001 4643.2002 4548.83984 4807.39014 0.384000003 0.285699993 0.610499978 0.184200004 0.135000005 0.296299994 200111 0.750363230000000048 0.699982940000000053 0.781816359999999988 0.235780640000000014 0.230982419999999994 0.240578860000000005 +1635721458409799680 Gaia DR2 2481409383805186432 2481409383805186432 267736931 2015.5 25.6295152125353987 1.15680259069358993 -2.83891655927532005 0.713540380491237025 0.744130098307050014 1.14740436838993998 0.648533460000000006 2.56592170894858018 2.77384615679702007 2.20246486499760019 1.29729331060950992 -0.0487341300000000005 0.0515606399999999979 -0.153517189999999998 0.113561460000000003 -0.0986017700000000052 0.142805259999999989 0.137985329999999989 -0.0217222889999999988 0.123224920000000002 -0.0432474050000000027 145 0 145 0 17.3792760000000008 676.737 6.03882754543689959 23.9680073862969998 31 false 0.0197164600000000016 1.56295677134505007 0.22012507827101499 -0.118360825000000003 17 9 2.44078060000000008 0 17 true 146 242.201275858980011 2.2556571900331801 107.375 19.7279240000000016 15 256.340328023789993 6.64686358205771999 38.5656049999999979 19.329346000000001 16 499.38555095252201 6.21223027779629966 80.3874799999999965 18.0158309999999986 3.12023900000000021 0 1.31351470000000004 -0.398578639999999984 1.7120934000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.822181966637004 -62.8096203169533993 22.698943830145101 -12.5498341534516999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409383805189504 2481409383805189504 58725984 2015.5 25.6256603721164993 0.372103020561106002 -2.83330606177328992 0.242738420424430001 -0.360822006363194003 0.376514179185594988 -0.958322470000000037 8.81782517564498924 0.932287485302519037 -4.65459948058331019 0.462351897921750021 -0.0154279350000000003 0.000693550039999999974 -0.260391119999999976 0.152101349999999996 0.0855195700000000031 0.189009160000000009 -0.00828752500000000045 0.0293019540000000016 0.0403780970000000017 -0.0405180600000000016 129 0 126 3 2.23523400000000017 158.410004 0.589677404061600963 0.631013955883656052 31 false 0.20505986000000001 1.37846560648001004 0.0917838958066348048 -0.100336629999999996 15 9 0.826889160000000012 0 15 false 125 414.290693125627001 1.67395196026411996 247.492996 19.1451029999999989 12 160.548254077740012 12.0418859999271 13.3324839999999991 19.8373740000000005 12 407.053133828908017 10.1148314504327992 40.2431950000000001 18.2377929999999999 1.37005580000000005 0 1.59958080000000002 0.692270300000000005 0.90731050000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.80929262263399 -62.8062133063644978 22.6973872404910999 -12.5432014718382998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451921162801920 2481451921162801920 881521959 2015.5 25.3597929698552988 1.54777995676712998 -2.82142180177481006 0.976425833845770974 -1.43110770564179002 1.53912806929467005 -0.92981720000000001 11.4485516440133992 3.2215872042454099 -5.73295375845828037 1.75309127887276994 -0.0166559099999999995 0.190815519999999988 -0.353089360000000019 0.224441229999999992 0.102819430000000003 0.297520070000000025 -0.171867400000000004 0.145465669999999991 0.0188686810000000017 0.0673928859999999991 74 0 74 0 1.96670210000000001 93.9567032 1.4773450282287599 0.343490868829205986 31 false 0.0243149900000000016 2.25023015089674017 0.280362293215404013 -0.0240711740000000007 9 8 2.90925859999999981 0 9 false 75 99.7576117126988038 2.05997923003871009 48.4264984 20.6909999999999989 4 34.2173197623983967 1.82049964144369003 18.7955649999999999 21.5157740000000004 8 131.856628118168999 3.88742176090817981 33.9187849999999997 19.461663999999999 1.66477469999999994 0 2.05410959999999987 0.824773800000000001 1.22933580000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.271746088449987 -62.9087645129455026 22.4489433649121999 -12.4344960906850996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451753657766400 2481451753657766400 832243564 2015.5 25.3819226787077987 0.178855899145014013 -2.82447648631411008 0.128988788018586986 -1.14258696752292011 0.206124359119615991 -5.54319239999999969 2.2907887911019098 0.476169815131441021 -1.38802941608194996 0.235803413372172005 0.130638580000000004 0.0094060719999999997 0.153506370000000003 0.0496559369999999972 -0.106087189999999998 0.0632145259999999931 0.27516073000000002 -0.254662249999999979 0.141193180000000001 -0.00412336700000000018 122 0 122 0 2.51834200000000008 159.085999 0.457948450144032015 1.66259776973052009 31 false 0.843470999999999971 1.62427346053876009 0.0399125270766417031 0.00271355219999999979 14 9 0.422992829999999986 0 15 false 123 1312.36760864915004 3.80445390697419983 344.955994 17.8932269999999995 12 671.759337600460981 19.3902930553445003 34.6441039999999987 18.2833539999999992 11 1011.43215350717003 11.9739220738934993 84.4695799999999934 17.2495779999999996 1.28256100000000006 0 1.03377530000000006 0.390127180000000018 0.643648149999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.318551356911001 -62.9021756267198029 22.4688374804830993 -12.4454713891958999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455425854352768 2481455425854352768 653031886 2015.5 25.3516583569744007 0.199048634485331 -2.78191934528445994 0.134060321138848998 3.13037732733865992 0.224092418497436996 13.9691349999999996 22.3038194788309987 0.458942608422168996 -8.50600534293415045 0.241726303762946987 0.114411763999999999 0.173081929999999995 -0.0468505769999999974 0.0909358039999999951 -0.085292555000000006 0.0765858140000000021 0.102420079999999997 -0.0485230349999999991 0.169924839999999994 0.080173750000000002 142 0 142 0 4.84494450000000043 232.914001 0.77798353152111599 4.49902730657050043 31 false 0.605593399999999948 1.25652371206791003 0.0449138185464807993 -0.0172748729999999996 16 9 0.405157829999999997 0 16 false 141 1230.45312041599004 2.29153495287483011 536.955994 17.963203 15 249.675380209892012 13.9066504603739993 17.9536669999999994 19.3579480000000004 15 1574.9214866442901 10.6802121168056008 147.461620000000011 16.7687719999999985 1.4828657999999999 0 2.58917619999999982 1.39474490000000007 1.19443129999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.218947460984992 -62.8763969428044973 22.4560955064891985 -12.3947762091287004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452402197496448 2481452402197496448 1689411954 2015.5 25.3678277577900992 0.439451688118091988 -2.79509010896159982 0.302381189174011022 0.938155097912994007 0.480176731007076973 1.95377040000000002 -0.974994465445515046 1.02914273884620999 -3.57832178689844005 0.50623545549890403 0.174857810000000002 0.112600320000000004 -0.171542660000000013 0.165429090000000001 0.0306383739999999995 0.183654170000000005 0.168549900000000002 0.0529532949999999974 0.154829889999999998 0.110994990000000002 130 0 130 0 0.367413549999999978 130.214005 0 0 31 false 0.137860659999999996 1.7196848981083801 0.0986874950498242975 0.018162826 15 9 0.909846700000000008 0 15 false 130 310.50471464581301 1.95232481944915004 159.044006 19.4581949999999999 13 179.773979401644993 11.7845812521659994 15.2550159999999995 19.7145709999999994 13 201.643464497923986 9.76210933670894931 20.6557269999999988 19.0004600000000003 1.22837890000000005 0 0.714111300000000004 0.256376270000000017 0.457735060000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.26326467596499 -62.8815096409248966 22.4665079233190994 -12.4129664182748005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455391494614784 2481455391494614784 970953120 2015.5 25.3770389235703 0.804087625834143949 -2.77909677485108997 0.602315357456597034 -0.160993421415234012 0.877678234781297029 -0.183431029999999995 3.15911340247517014 1.9986422621795501 -4.8496887171485703 1.30423869880428001 0.150929690000000005 0.0226438179999999996 -0.185863090000000009 0.107127144999999993 -0.0333612449999999977 0.142051939999999988 -0.161016259999999994 -0.0352101439999999988 -0.0744701700000000022 0.250943750000000021 112 0 112 0 -1.54315080000000004 85.4011002 0 0 31 false 0.0431903969999999984 1.5210204339264799 0.212953771864507008 0.0570157769999999967 13 9 1.79539000000000004 0 13 false 113 138.993334530117011 1.48950991539490007 93.3147964 20.3308810000000015 12 83.732091681282995 8.02076778234411947 10.4394109999999998 20.5441590000000005 12 130.306034657411999 5.6159339497060099 23.2029150000000008 19.4745080000000002 1.53991649999999991 0 1.06965069999999995 0.213277820000000007 0.856372829999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.266716146815014 -62.8631260910075014 22.4812934644881004 -12.4014811439165999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452539638137344 2481452539638137344 34797273 2015.5 25.3849888314748 2.8757577176662199 -2.78288761020183983 5.19924690639251974 \N \N \N \N \N \N \N -0.483169799999999983 \N \N \N \N \N \N \N \N \N 61 0 61 0 1.2741667000000001 69.8207016 2.52063653762628004 0.617796737766107995 3 false 0.0148138569999999997 \N \N 0.0773660840000000016 7 5 19.5006500000000003 0 7 false 63 85.8707532327801033 2.05898715846692992 41.7052994 20.8537520000000001 3 30.4827600170567017 8.30051755633929922 3.67239259999999978 21.641252999999999 6 148.875546348580002 16.1368009397932006 9.22584100000000085 19.32986 2.0887007999999998 0 2.3113918 0.787500399999999989 1.5238913999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.286006564923014 -62.863201852468201 22.4874250935742985 -12.4079279066693999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455494573832448 2481455494573832448 705139832 2015.5 25.3748010095844982 0.747820319805403977 -2.77313391600335013 0.597350163600975037 0.302948580850366023 0.765006474827736982 0.396007869999999984 1.35478196128097994 1.91202771249782 -8.8824866613111908 1.34575331355767003 0.0955578759999999999 -0.035640129999999999 -0.381443699999999997 0.0472030500000000033 0.161206719999999998 0.0809938099999999994 -0.453438039999999987 0.126189369999999995 -0.116959759999999996 0.170615899999999987 102 0 101 1 -0.0420628200000000008 94.7558975 0 0 31 false 0.0604364299999999993 1.95437501072447994 0.196037707374671993 -0.0176855960000000013 12 7 1.72411800000000004 0 12 false 101 172.284094707244009 1.15740644666600989 148.854004 20.0977539999999983 11 102.101536157045004 7.78638377894533029 13.1128309999999999 20.3288079999999987 9 141.356298536113997 12.3993333892543003 11.4003139999999998 19.3861309999999989 1.41311849999999994 0 0.942676540000000007 0.23105429999999999 0.711622239999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.256748102858012 -62.8586676751195981 22.4814119916287005 -12.3951141355733991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455494576955520 2481455494576955520 587105477 2015.5 25.3707495566657997 0.118339383408934004 -2.77180653630678009 0.0798936326104083966 3.06671428751860997 0.132441008954031991 23.1553229999999992 19.8300698596278018 0.274715764399136975 26.136753576109701 0.147665757608838988 0.109996005999999993 0.163499270000000002 -0.0681157039999999991 0.0746065300000000042 -0.0834808949999999994 0.0610038999999999998 0.0493604760000000004 -0.0368286040000000009 0.166211859999999989 0.0866665840000000048 141 0 141 0 1.88664999999999994 168.778 0.193095429925834006 0.500839903008811982 31 true 1.75061430000000007 1.28094214107832993 0.0275185854986598998 -0.016029729999999999 16 9 0.245260270000000002 0 16 false 139 2032.6458192821101 2.79004108985323018 728.536011 17.4182109999999994 14 455.201253228038013 12.8262615756787 35.4897840000000002 18.7058800000000005 15 2518.37913425258012 13.9866605562275996 180.055790000000002 16.2591169999999998 1.46291119999999997 0 2.4467620000000001 1.28766819999999993 1.15909390000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.247478813773 -62.8591752734403997 22.4780595540843002 -12.3923907755805001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455808106892032 2481455808106892032 948451799 2015.5 25.3740664993494995 0.213918927534613001 -2.74343763386882999 0.121985067579804998 1.44823061828471999 0.218290031925472 6.63443330000000042 12.3267362857877991 0.450036291475874983 3.5368120329592001 0.213295742057006993 -0.0309186749999999996 0.228572200000000003 -0.242347019999999996 0.165202870000000002 -0.0747059000000000056 0.178035870000000013 0.0598077899999999996 0.0600752049999999996 0.15146728000000001 0.0425134640000000008 123 0 121 2 -1.07795039999999998 99.7396011 0 0 31 false 0.812022200000000027 1.38350718906746994 0.0445601009640785028 -0.0986021460000000016 14 9 0.401991299999999996 0 14 false 120 1031.45434477337994 2.85020139900962022 361.888 18.1547410000000013 12 287.960507556303014 10.1270999991865995 28.4346469999999982 19.2030560000000001 13 1146.13187172411995 12.2791981647678998 93.3393099999999976 17.1138340000000007 1.39035949999999997 0 2.08922199999999991 1.04831500000000011 1.04090689999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.227796073738006 -62.8320629694486996 22.491900781934401 -12.3672313366877997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461683622152448 2481461683622152448 1318335079 2015.5 25.375599838076301 0.368845348390815009 -2.73425911672714017 0.242665291626535995 2.60363351376620011 0.39430517521657199 6.60309200000000018 -0.981292086485922033 0.843012212025281982 -6.14109976176626038 0.45643847253848302 0.0362775739999999999 0.116165905999999999 -0.148985680000000009 0.0919341439999999954 -0.0635405700000000045 0.0978577000000000058 -0.0291077200000000001 0.00972741750000000009 0.1440438 0.0604928900000000005 124 0 123 1 17.889997000000001 659.315002 1.84711172623290998 20.315651218955999 31 false 0.204300969999999998 1.37665135888188006 0.081275908186512702 -0.0414519979999999968 14 9 0.743166600000000011 0 15 false 123 1078.28643046674006 5.18765195145727986 207.856003 18.1065310000000004 12 487.828294493065982 20.9417914263522 23.2944870000000002 18.6307200000000002 10 1243.04125443555995 35.5758873621590013 34.9405560000000008 17.0257049999999985 1.60520390000000002 0 1.60501479999999996 0.524189000000000016 1.08082579999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.222347968171988 -62.8230963163898011 22.4968159984357996 -12.3592601943767999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461679328527104 2481461679328527104 638978065 2015.5 25.3757889826656999 7.22698647584897014 -2.73400144155794012 2.50076195028862003 \N \N \N \N \N \N \N -0.990227700000000044 \N \N \N \N \N \N \N \N \N 70 0 69 1 3.2062816999999999 106.620003 1.17797304060144992 2.05303566448157992 3 false 0.18243624 \N \N -0.468529599999999991 8 5 9.43458099999999966 0 13 false 69 458.176241459798973 2.72340780137247007 168.235992 19.0357839999999996 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.222484687757003 -62.8227829614520985 22.4970928976097007 -12.3590901054982005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452092959837696 2481452092959837696 33104402 2015.5 25.4105369837307009 0.658940479240106014 -2.82357605935710998 0.43176535336379801 0.475839626570023988 0.72926858662281302 0.65248879999999998 0.184984228990941996 1.79067012110563994 -26.7992859417539009 0.783693795539190052 0.0446126130000000024 -0.0442885120000000021 0.0271977880000000005 0.0538529049999999995 -0.139441769999999993 0.0860655599999999993 0.279029760000000016 -0.195901240000000004 0.113844219999999996 -0.0585025100000000006 129 0 127 2 3.30316330000000002 180.345993 1.85154488592484001 2.59364812202539019 31 false 0.0660677399999999998 1.35331984620025003 0.140342959269402989 -0.0388789770000000021 15 9 1.57369099999999995 0 15 false 127 234.636022705399 2.07195399660942003 113.244003 19.7623789999999993 13 94.3435915352205967 7.03251921314403017 13.4153339999999996 20.4146080000000012 12 216.685398620976002 8.93113727960481008 24.2617930000000008 18.922346000000001 1.32558069999999995 0 1.49226189999999992 0.652229300000000012 0.840032600000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.374523232375992 -62.8892420025847017 22.4963909018667003 -12.4551511674099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905472 2481451341340905472 617108872 2015.5 25.4214860146622996 0.217211211242688995 -2.82309247649084982 0.139386393919958995 3.05867505676628992 0.234113861449031013 13.0649029999999993 -7.34345593076571035 0.557547153998130041 -20.2177010095224006 0.252433489351993001 0.0859772699999999945 -0.0025087871999999998 -0.178176919999999989 0.130643680000000012 -0.223292070000000009 0.190907959999999988 0.196962130000000013 -0.0514537249999999988 0.0212654289999999989 0.111021430000000004 130 0 129 1 8.70525199999999977 316.570007 0.949315205195486955 11.0226793476969007 31 false 0.642781099999999994 1.23010204381062005 0.0449679241462673032 -0.0434612100000000001 15 8 0.494377879999999992 0 15 false 127 1757.25183106613008 3.97429087212521992 442.154999 17.5762800000000006 12 402.897041216965988 11.9532432911060003 33.7060850000000016 18.8384040000000006 11 2283.42402593820998 11.6194796373236002 196.516889999999989 16.3654539999999997 1.5287058 0 2.47294999999999998 1.26212309999999994 1.21082690000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.395797996075999 -62.8841614761740999 22.5069868700589986 -12.4587252061981992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905728 2481451341340905728 1641406266 2015.5 25.4231034709055983 3.25269761191328 -2.8242875473520801 2.00264863999837983 \N \N \N \N \N \N \N 0.0537932699999999972 \N \N \N \N \N \N \N \N \N 81 0 81 0 51.8716470000000029 4176.77002 14.5881083255103992 325.64954478834801 3 false 0.00455886129999999966 \N \N -0.0743053899999999989 15 8 6.89024160000000041 0 15 false 130 477.457391722120974 6.87287370436250988 69.4698029 18.9910299999999985 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.400120433624011 -62.8845572766708969 22.5080749751258011 -12.4604308291066008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905600 2481451341340905600 577926155 2015.5 25.4228458877101993 0.744727519783634051 -2.8236707960653602 0.479476186056304987 1.16809730187715011 0.818682193465223973 1.42680190000000007 -0.0642554335945141053 1.85343751147273994 0.117660918998997999 0.818908142469105038 0.137590999999999991 0.0541652850000000005 -0.201429279999999988 0.173482460000000005 -0.110932139999999999 0.218472759999999988 0.248974709999999988 -0.0140653559999999993 0.0550853950000000023 0.114833779999999996 122 0 122 0 10.2442049999999991 352.687012 3.30620883124404985 13.6477943540549003 31 false 0.0578355679999999969 1.51093221372367004 0.152088533150798011 0.00549775100000000037 14 7 1.63791859999999989 0 15 false 123 357.796480286627002 2.79633034209382991 127.952003 19.3042760000000015 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.399034689021988 -62.8841081951864993 22.5080623710346011 -12.4597626833632003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451337045739904 2481451337045739904 402506974 2015.5 25.4298933652070005 0.877157489924041966 -2.82667407545230986 0.544079532041678027 1.33492082495579001 0.90885585921685097 1.46879270000000006 20.8784334940318992 2.24413752322060001 -12.1302401410213996 0.949128687819792982 0.117004070000000002 -0.156542419999999988 -0.360134120000000002 0.174700190000000005 -0.160618540000000004 0.256665919999999992 0.186893840000000006 0.120862910000000004 -0.00890893799999999993 0.15405698000000001 120 0 120 0 2.12701580000000012 149.572006 0.978657563128350949 0.409792288052794995 31 false 0.0473225400000000032 1.30588004524125001 0.189560066734852012 -0.0227892079999999983 14 8 2.00622899999999982 0 14 false 120 151.457605162139998 1.57606296159222992 96.0987015 20.2376380000000005 12 51.5754045328317972 8.26411829468739967 6.24088430000000027 21.0702819999999988 13 197.196634640819013 11.6571465964719003 16.9163719999999991 19.0246719999999989 1.64251940000000007 0 2.04561040000000016 0.832643499999999981 1.21296690000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.415814236950013 -62.8838364941221997 22.5136338882678011 -12.4651450402558002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452269053841024 2481452269053841024 112233693 2015.5 25.4061419814253 0.0932011220066621959 -2.80154512200389005 0.0640779206247996946 2.79446400686892993 0.101397253078912994 27.5595630000000007 32.5829701881102025 0.236513584698085005 -5.15538790757099008 0.116579647865376002 0.165809469999999987 0.0208317099999999998 -0.141191900000000009 0.129819629999999991 -0.18191344000000001 0.175412459999999992 0.167863160000000011 -0.0352920850000000008 0.0539689730000000034 0.168938640000000001 122 0 120 2 4.31691299999999956 192.737 0.314892427830809007 3.52668561479729004 31 false 3.65928839999999989 1.39611966971661006 0.0208151842479366994 -0.00994066149999999968 14 8 0.214751410000000004 0 14 false 120 5312.90424598840036 5.76678104803649028 921.294983 16.3750360000000015 13 1638.67601446223989 12.6966305782974 129.063839999999999 17.3151550000000007 13 5557.85936937460974 11.3974587511984993 487.640229999999974 15.3996519999999997 1.3545389000000001 0 1.91550350000000003 0.940118800000000032 0.975384699999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.345302004101001 -62.8711534941984027 22.5005121460215989 -12.4330505845895001 100001 3868.43994 3783.37012 4462.56982 0.0333000012 0.00400000019 0.194100007 0.0160000008 0.00260000001 0.104999997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452299120042112 2481452299120042112 1374121287 2015.5 25.4288943509438994 3.55897791526551011 -2.79128548708799018 5.86811439222254982 \N \N \N \N \N \N \N -0.611928299999999981 \N \N \N \N \N \N \N \N \N 40 0 40 0 -1.33073339999999996 24.4761009 0 0 3 false 0.0164379699999999997 \N \N 0.157594499999999998 5 4 590.571199999999976 0 5 false 41 94.1882586298359001 1.78313285771638008 52.8218002 20.7533740000000009 2 37.4589012089666014 1.29717268432294008 28.8773440000000008 21.4175010000000015 3 101.372396400306997 33.6924279380959035 3.00875899999999996 19.7471199999999989 1.47397669999999992 1 1.67038149999999996 0.664127350000000005 1.0062542000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.380875533773008 -62.852222075740201 22.5260161711549998 -12.4318711576673007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451199606640384 2481451199606640384 264835219 2015.5 25.4624008938990016 0.533747255213100957 -2.82265742598060987 0.362305546122590028 -1.00036295581554002 0.54192778305579703 -1.84593399999999996 -0.483019123239896986 1.3531795427014699 -2.20080215147507996 0.610643691911301967 0.093335849999999998 -0.056496567999999997 -0.222939880000000007 0.259523449999999989 -0.0569150900000000015 0.367217630000000017 0.285026900000000027 -0.00846843899999999948 -0.0505833180000000021 0.131912169999999995 132 0 132 0 1.76499640000000002 156.490005 0 0 31 false 0.104485385 1.76584637150106993 0.112526555288504998 -0.0569703000000000015 15 9 1.20337580000000011 0 15 false 131 250.525593082695991 1.56117255353073991 160.473007 19.6912349999999989 13 141.293788171757001 12.6305828674165994 11.1866409999999998 19.9760799999999996 13 170.376088796393987 9.36649555211931073 18.1899499999999996 19.1833999999999989 1.24406400000000006 0 0.792680739999999995 0.284845349999999997 0.507835400000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.476515259664012 -62.8663902088123976 22.5460678678268991 -12.4733539149980004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458105914067584 2481458105914067584 1673243446 2015.5 25.4487998807023992 0.255037767274220006 -2.79191678472637994 0.166270439299352008 4.0445806031922702 0.277612105939278986 14.5691799999999994 18.9626322515990005 0.687173841944091035 -14.5915532751642001 0.305174669818021993 0.0386165399999999978 -0.0980017499999999986 -0.0323278499999999983 0.0860154600000000019 -0.126540530000000012 0.134345369999999992 0.243103950000000013 -0.168820529999999996 0.0784380600000000039 -0.0376843659999999969 122 0 121 1 2.71499230000000003 161.628998 0.325260572616870025 0.517260655385148982 31 false 0.46876066999999999 1.12869419741341992 0.0566085955923781997 -0.0583073829999999974 14 9 0.605730349999999973 0 14 false 120 714.813243977248021 3.00265175727296008 238.061005 18.5528849999999998 14 84.2912731146555956 7.13187030585616988 11.8189569999999993 20.5369320000000002 13 1058.49256941710996 11.4176597563201998 92.7066099999999977 17.2002009999999999 1.59871659999999993 0 3.33673099999999989 1.98404690000000006 1.352684 \N \N 0 \N \N \N NOT_AVAILABLE 151.420905233264989 -62.8443488359504983 22.5447105295164008 -12.4397715655157999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458449511337600 2481458449511337600 535192567 2015.5 25.4103572960679998 0.412233896496095986 -2.7584837090497798 0.270513780534888004 1.18180007043508994 0.429400556890736973 2.75220900000000013 13.5168488512695006 1.03082806013478989 -7.53820094120309037 0.462770209508530983 0.0952099400000000068 -0.0959308700000000014 -0.269895700000000016 0.202139740000000012 -0.0653476100000000004 0.282712799999999986 0.199915950000000009 0.0622620700000000027 0.0178916250000000013 0.104042456000000005 122 0 121 1 -1.3414235000000001 96.1547012 0 9.32988320270471914e-16 31 false 0.188601999999999992 1.57571752997688996 0.0888919035688670034 -0.00477669060000000031 14 9 0.916939260000000034 0 14 false 120 340.309558120500981 1.99912616591323 170.229004 19.3586799999999997 14 147.592312410332994 13.9092640243529004 10.6110799999999994 19.9287279999999996 14 307.644035584503001 13.9033847875913992 22.1272750000000009 18.5417999999999985 1.33771250000000008 0 1.38692860000000007 0.570047399999999982 0.816881199999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.313669295325013 -62.8303654686245991 22.5207425942038988 -12.3945583161159991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458483871076096 2481458483871076096 1520725038 2015.5 25.4224616006472992 0.370196934738991013 -2.75810065570657015 0.228133836640402987 0.719633285593605954 0.387788679421064986 1.8557357000000001 14.8910369088183998 1.01262266681313995 1.64696210497136009 0.417420208804262005 0.00887870299999999994 -0.226269109999999996 -0.176909580000000011 0.100562940000000003 -0.0848353649999999959 0.15143203999999999 0.214502990000000004 -0.0573668000000000025 0.0878902750000000038 -0.0857330599999999998 112 0 111 1 1.99792560000000008 137.039993 0.843294599807334011 1.67062143784875006 31 false 0.264667030000000025 1.39810279086227007 0.0770304768580774984 -0.0952113299999999968 13 8 0.892867740000000021 0 13 false 111 520.695928336103975 2.00213886497558979 260.070007 18.8969060000000013 11 125.729694523966003 8.12325106722479973 15.4777559999999994 20.1027929999999984 11 618.81902048081804 13.8075676763905992 44.8173829999999995 17.7830100000000009 1.42991080000000004 0 2.31978229999999996 1.20588680000000004 1.11389540000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.337294923758009 -62.8248958124612003 22.5323977982866985 -12.3986495740769005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461408744246272 2481461408744246272 91437112 2015.5 25.3995165343769997 0.85571349381719497 -2.74698038542929002 0.743241049386160979 2.65910494088188987 0.834022219860072966 3.18829040000000008 2.82022147929692979 2.5543017356687101 -17.9446468290022985 1.06416985448052004 0.348598840000000021 -0.389021600000000023 -0.0774672899999999942 0.481098120000000018 -0.330449849999999989 0.663971069999999997 0.691311360000000041 -0.106431869999999998 -0.348685149999999999 0.465012499999999995 97 0 96 1 1.61579800000000007 113.809998 1.09586128399287008 0.838413375387267013 31 false 0.0821415900000000004 1.06097945790534998 0.172484589904585012 0.019341309000000001 11 7 2.34816000000000003 0 11 false 96 214.675588873137997 1.84761615433144999 116.191002 19.8589100000000016 9 57.6247189297028015 16.8114679667025015 3.42770300000000017 20.9498649999999991 8 316.851343264051025 11.9106979714029002 26.6022469999999984 18.5097799999999992 1.74438120000000008 0 2.44008450000000021 1.09095570000000008 1.34912870000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.281524186539002 -62.8245274889721017 22.5147663341045998 -12.3798782147324005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458488166484864 2481458488166484864 1112210488 2015.5 25.4237184189829009 0.930429064864274014 -2.74793445000624015 0.458981445484068995 -0.247081497530152988 0.796513456103067008 -0.310203799999999974 3.86938089440258004 2.2096027213374998 -4.78472617896428964 0.765609736359635029 -0.161331119999999995 -0.087184049999999999 -0.547885359999999988 0.24645373000000001 -0.097079600000000002 0.382162869999999988 0.14595377000000001 0.178296060000000006 -0.0303719040000000016 -0.010466342 109 0 108 1 1.97690779999999999 133.266006 1.46973436983834005 1.36658022094636 31 false 0.0715647340000000048 1.50608677319093998 0.15394957487729799 -0.129380149999999999 13 8 2.02343399999999995 0 13 false 109 217.433553412375005 1.86615199782037999 116.514 19.8450489999999995 9 123.530769661063005 16.0612056136455017 7.69125130000000024 20.1219499999999982 10 117.534553103055003 17.8473824052368002 6.58553459999999991 19.586506 1.10868499999999992 0 0.535444260000000005 0.276901249999999988 0.258543000000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.330351769235989 -62.8151557404812024 22.5374216744704015 -12.3896578505384998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458243352902016 2481458243352902016 1357493722 2015.5 25.4700406699380011 0.235021620703245004 -2.77275310261895003 0.154775618504337992 3.26232331587520985 0.256082912085947023 12.7393249999999991 21.4572692004007983 0.574822860756250997 -0.777070614689057027 0.273558655510575011 0.08652783 -0.033552613000000002 -0.163431689999999991 0.168999060000000006 -0.214668649999999989 0.245734449999999993 0.194298429999999994 -0.0543835199999999977 -5.26138699999999991e-05 0.133914279999999997 132 0 131 1 2.65256289999999995 172.151001 0.598910447366729048 1.8335834739888901 31 false 0.527453060000000029 1.22973369022303003 0.0508480204906925012 -0.0403957259999999999 15 9 0.510378499999999957 0 15 false 131 870.095568576810024 2.30404328398809 377.639008 18.3394489999999983 14 140.62990998252701 8.47417917982870961 16.5951060000000012 19.9811939999999986 15 1146.15047572775006 9.56485758310638978 119.829329999999999 17.1138149999999989 1.47889540000000008 0 2.8673782000000001 1.6417446 1.2256336000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.445114951123003 -62.817983084547599 22.5721305283565989 -12.4297536296899001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458621310036608 2481458621310036608 225103927 2015.5 25.4373358893496011 0.157931882316381 -2.73464252991748991 0.107363381284558995 1.72132640263582992 0.170358746456166998 10.1041270000000001 99.0912798451633989 0.393532345277144979 15.4985825922919993 0.211361605565799998 0.0897419899999999937 -0.0597764480000000029 -0.182706279999999999 0.142336889999999994 -0.167920010000000008 0.203357399999999994 0.0369924829999999996 -0.0400714539999999994 -0.0209855289999999993 0.165357919999999992 122 0 122 0 -0.0323052370000000005 115.843002 0 0 31 true 1.16656530000000003 1.35394921565993998 0.0397376242214076969 -0.0218473060000000004 14 9 0.352169300000000018 0 14 false 122 1327.80867255433009 2.50399849094918014 530.275024 17.8805270000000007 13 339.486835749286001 10.8345979737782994 31.3335900000000009 19.0243299999999991 14 1488.99980792502993 10.5282331317488005 141.429210000000012 16.8296829999999993 1.3770709000000001 0 2.19464680000000012 1.14380259999999989 1.05084420000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.344981120108002 -62.7973515585300035 22.5553767778758001 -12.3823003181105999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458964907422080 2481458964907422080 491619313 2015.5 25.477689203545701 0.169490503350095995 -2.7282054451199298 0.0998771583426052018 -0.0948414983811492057 0.156891202556236009 -0.604504900000000012 -0.672937750332592954 0.433038802251068999 -2.41846757814901014 0.199690411273758001 -0.0484995949999999995 -0.176615450000000007 -0.588625799999999977 0.19349733999999999 -0.100089915000000002 0.26379370000000002 0.015651410000000001 0.291557579999999983 -0.0799745840000000013 0.0501671839999999966 122 0 122 0 0.583814399999999956 125.459999 0.216782337686230009 0.496474000492115985 31 false 1.46263919999999992 1.60347262543565994 0.0343583570607364011 -0.0141418429999999994 14 9 0.400930999999999982 0 14 false 122 1688.51596613446009 3.0506411643256599 553.494995 17.6196020000000004 12 930.347189148251005 21.1692127524153015 43.948124 17.9297749999999994 12 1123.74412103903001 11.0932672498502001 101.29965 17.1352520000000013 1.21650680000000011 0 0.794523239999999964 0.310173030000000016 0.484350200000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.418811427468 -62.7744140302118012 22.5961770135145983 -12.3911358484948 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456628445513088 2481456628445513088 63163844 2015.5 25.351903355498699 0.84911283906052204 -2.72122477490011994 0.737387929940163001 1.64215156332437995 0.914644147889389969 1.79539939999999998 -8.0465728815230193 2.14690779009732013 -14.8545281906804991 1.65210856568284004 0.0671632699999999971 -0.0455399800000000007 -0.323365330000000006 0.0753471849999999971 0.235410239999999993 0.096923200000000001 -0.494949040000000007 0.0856620399999999949 -0.174054149999999991 0.122296039999999995 103 0 102 1 1.0765165000000001 112.043999 0 0 31 false 0.042457037000000003 1.30084293855660005 0.239085098535716994 0.020105946999999999 12 8 1.92119219999999991 0 12 false 101 137.141368878647995 1.70881415866305009 80.2553024 20.3454440000000005 10 64.6637587625864967 13.8860608414001998 4.65673880000000029 20.8247360000000015 10 212.560961229215991 11.3153357772192003 18.7852099999999993 18.9432100000000005 2.02145220000000014 0 1.88152499999999989 0.479291919999999982 1.4022330999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.163324820483012 -62.8212643411250014 22.4791951250995012 -12.3384310873162004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461782405972608 2481461782405972608 417446767 2015.5 25.3745173783688003 1.06017083466671003 -2.71634814590123996 0.633198516080662022 -0.244389594053845 1.06324258830327989 -0.229853100000000005 13.6047593450582003 2.30634829231677996 -14.9686540840058004 1.20192356249934007 -0.0462987799999999977 0.171442420000000012 -0.280413750000000017 0.170975700000000008 -0.0482339859999999995 0.213554169999999988 -0.0663936100000000057 0.036175866000000001 0.0425380100000000011 0.0587581400000000004 113 0 113 0 4.30200099999999974 183.416 2.65469948829914992 2.30116071137467992 31 false 0.0326327939999999997 1.11654766902804004 0.206170247287058989 -0.100783209999999998 13 9 2.05418250000000002 0 13 false 111 153.283667980882996 1.75170806133757995 87.5053024 20.2246270000000017 8 64.2309252776353929 11.8813821162002995 5.40601440000000011 20.8320270000000001 7 183.597974221101992 6.03154600813441988 30.4396209999999989 19.102250999999999 1.61679909999999993 0 1.72977639999999999 0.607400900000000021 1.12237549999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.203652358065 -62.8073160136550968 22.5025326187815011 -12.3422077066456009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461610610146944 2481461610610146944 1161489483 2015.5 25.417753743619901 0.908664874490392016 -2.72307295119095016 0.639153150379422996 1.62694376580991995 0.925758981663834968 1.75741609999999993 0.627261785896051971 2.3342418711429298 4.32735834057877966 1.30736082004979992 0.0270400290000000001 -0.157187219999999989 -0.364887740000000016 0.180901349999999989 0.0916798100000000005 0.24546599999999999 -0.176905139999999989 0.138195000000000012 -0.100351869999999996 0.0832550100000000043 102 0 101 1 0.874243499999999951 107.907997 1.54402783307330993 0.878113395150776022 31 false 0.0432236159999999994 1.09895938218600997 0.193311687875340005 0.0191716419999999992 12 9 2.08658620000000017 0 12 false 103 140.979980209877994 1.34882413004581991 104.521004 20.3154719999999998 5 185.592098494172006 134.055893467443013 1.38443819999999995 19.6799889999999991 10 185.007047996580013 11.2932958533451 16.3820249999999987 19.093948000000001 2.62873599999999996 1 0.586040499999999964 -0.635482800000000014 1.22152330000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.295502868350013 -62.7951573700034018 22.5411115792809014 -12.3643477621247992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461644967018752 2481461644967018752 1032596111 2015.5 25.4250647992820014 0.173554050005802013 -2.71780612770470986 0.100215640728605004 0.310781702675825999 0.164722883079889998 1.88669419999999999 5.6422839847155597 0.453389712029384995 -1.70026683471863005 0.179043342504502989 -0.000851582039999999982 -0.20061176 -0.441576719999999978 0.190754380000000001 -0.0688570899999999958 0.276790560000000019 0.130514230000000009 0.178609849999999987 -0.00215901299999999999 0.0357539399999999979 113 0 111 2 0.890515999999999974 118.780998 0.319389981174288018 1.22979035591963992 31 false 1.47744330000000001 1.55799879901823002 0.0345631009963068975 -0.0609396170000000015 13 8 0.411684300000000003 0 13 false 110 1850.72146466460003 3.06286495525230018 604.244995 17.5200139999999998 12 985.163130824989025 12.4722736119940993 78.9882599999999968 17.8676190000000013 11 1279.21625721048008 9.97082206600670951 128.295960000000008 16.9945599999999999 1.22351169999999998 0 0.873058299999999954 0.347604750000000018 0.525453570000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.305096289446993 -62.7872941834886973 22.5500468308606017 -12.3621360112536003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461954204663680 2481461954204663680 86730548 2015.5 25.4497123569477992 0.0931162932687436967 -2.71907679334581021 0.0538672773546282971 1.1348759765651899 0.0867162736468665984 13.0872320000000002 12.0505301716393003 0.247363140515370006 15.5290232266501 0.106271879058749005 -0.0427647599999999989 -0.155923370000000006 -0.555973649999999986 0.151625779999999988 -0.12945777 0.154048729999999995 0.0830386500000000055 0.27672285000000002 0.00295392819999999983 -0.0417281099999999988 120 0 120 0 0.216724919999999988 117.639999 0 0 31 true 5.06142950000000003 1.51294281283896992 0.0193958521522062007 -0.0577945630000000002 14 9 0.232900720000000006 0 15 false 118 4637.16801402779038 5.26734892579417036 880.361023 16.5227339999999998 12 1967.02921805435994 19.2725010801370011 102.064030000000002 17.1168610000000001 12 3824.3805959863198 16.0657914592786994 238.04495 15.805517 1.24891090000000005 0 1.3113440999999999 0.594127659999999946 0.717216500000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.355031119110009 -62.7780124415317005 22.5730069357082996 -12.3723715299265997 100001 4815.43994 4741.47998 4960.81006 0.147499993 0.0688999966 0.192100003 0.0764999986 0.0419999994 0.0930999964 200111 0.582283499999999954 0.548656699999999997 0.60058993000000005 0.164250430000000003 0.138198500000000002 0.190302369999999998 +1635721458409799680 Gaia DR2 2481457109481647360 2481457109481647360 625779198 2015.5 25.4824552166791989 0.371794065441573007 -2.80659591253560015 0.221532501273341009 0.406792077482586001 0.355560096391471014 1.14408810000000005 8.06225525639709062 0.817084554661503981 -24.2847315816843015 0.373971480018956026 -0.0751676599999999973 0.17748775 -0.225385069999999993 0.243838040000000006 -0.166205450000000005 0.389165040000000018 0.259735349999999976 -0.107793509999999995 -0.0588628539999999992 0.106816549999999996 113 0 113 0 3.37329580000000018 164.664993 1.02540774358255993 3.72583127555787019 31 false 0.308196799999999993 1.49586170156045006 0.0725530089544502987 -0.146271149999999989 13 8 0.730834540000000032 0 13 false 106 667.620104450316035 2.20174168063569997 303.223999 18.6270430000000005 13 305.785132773636008 12.2126948701498002 25.0383010000000006 19.1378480000000017 12 587.697800464438956 28.3368948987581994 20.7396680000000018 17.8390349999999991 1.3383103999999999 0 1.29881289999999994 0.510805130000000052 0.788007739999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.501240114643991 -62.8433266886611008 22.5711939974580993 -12.4657849401954 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457143841387904 2481457143841387904 555010442 2015.5 25.5098319916478005 0.317541329222170987 -2.80137984148815988 0.214472085577847998 3.62427465653883019 0.320236235474559983 11.3175030000000003 40.5481995421272003 0.744830401574595014 -4.63367967000731973 0.349350286442299984 0.101402080000000006 0.120473880000000005 -0.129194439999999994 0.274726000000000026 -0.101157083999999994 0.392174960000000017 0.361311229999999983 -0.0862258149999999973 -0.0267246629999999992 0.177485480000000001 118 0 117 1 1.20814200000000005 130.332993 0.483337141242471013 0.619998141094009969 31 false 0.350318550000000006 1.26368642201914994 0.0649112371242265979 -0.0656372300000000047 14 9 0.664852259999999973 0 14 false 116 582.787663025839038 1.62341154865583004 358.989014 18.7745899999999999 8 132.681655572580013 7.81235430785211005 16.9835680000000018 20.0443609999999985 9 758.570300028694987 20.4637720345745997 37.0689399999999978 17.5619300000000003 1.52929099999999996 0 2.48243139999999984 1.26977159999999989 1.21265979999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.550540930052989 -62.826947636307203 22.5992008147103007 -12.4709890101608991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457216856165760 2481457216856165760 213385960 2015.5 25.5017404254804987 1.18617337188733996 -2.79244600296277001 0.61878199559985203 1.02991905863948996 0.994131498111246015 1.0359988 24.6475944391032016 2.84953278679638 -6.05928769672649992 1.02627754497615009 -0.169948769999999999 -0.0612857679999999974 -0.525399570000000038 0.279022869999999978 -0.0909622499999999945 0.453614000000000017 0.184891830000000007 0.114847093999999997 -0.0938981299999999963 0.016862437000000001 106 0 103 3 1.88489740000000006 126.038002 1.80202250598053992 1.59675096356868007 31 false 0.0446693260000000023 1.41661997977566001 0.220283015398111987 -0.146561789999999997 12 8 2.6024153000000001 0 13 false 105 157.339283745172992 1.79307064542996009 87.748497 20.1962720000000004 10 44.1634055194957966 9.51745307458842937 4.64025450000000017 21.2387310000000014 10 209.518235700914005 15.3771819276822992 13.6252689999999994 18.9588660000000004 1.61232229999999999 0 2.27986529999999998 1.04245950000000009 1.23740579999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.526191131155997 -62.8223155836565965 22.5948676254956986 -12.4597094133492998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457453078914944 2481457453078914944 613288247 2015.5 25.5008433732614002 0.220697647645162004 -2.78507540291420996 0.152768408938233013 0.786400398878314033 0.226176274401338001 3.47693589999999997 1.80758427111358011 0.563476563438944034 -1.40036597358945003 0.261088939178848012 0.108320109999999997 -0.0390410500000000008 -0.158510420000000013 0.254947629999999981 -0.0977758900000000042 0.359613269999999985 0.310152140000000021 -0.0731043400000000038 -0.0611336199999999996 0.145926269999999997 132 0 131 1 0.550658199999999987 134.248001 0 0 31 false 0.603589530000000041 1.35936837763085006 0.0479684658963544022 -0.0604524130000000035 15 9 0.502656639999999988 0 15 false 130 817.654137815315949 2.00081603604836999 408.660004 18.4069420000000008 13 241.970388927817993 5.02522999754903044 48.1511080000000007 19.3919829999999997 14 858.261687709275975 12.1387393285388008 70.7043500000000051 17.4278699999999986 1.34559600000000001 0 1.96411319999999989 0.985040660000000012 0.97907259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.517536882639007 -62.8160306608957981 22.5967896486759017 -12.4525256654676006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457453078917888 2481457453078917888 571805393 2015.5 25.5012361678138006 0.655386216585413961 -2.77678020134317993 0.467138681768742015 -0.69078418549692 0.674665803394400965 -1.02389100000000011 5.4597385668453402 1.72558721068880994 -4.48052881165166994 0.769245748314471012 0.151245099999999993 -0.122761324000000005 -0.162295650000000014 0.282582549999999988 -0.114183809999999997 0.395084619999999997 0.372914399999999979 -0.0579875629999999989 -0.0800277600000000033 0.171258240000000006 130 0 130 0 2.14553139999999987 161.294006 1.30666948176667996 1.03314072253145994 31 false 0.0697541599999999956 1.57151633061953011 0.141556126320740994 -0.0487585899999999975 15 9 1.5339408000000001 0 15 false 130 208.088759417631991 1.4802521680690901 140.576996 19.8927440000000004 11 63.4302981077433969 6.28528631023081985 10.0918709999999994 20.8456459999999986 12 233.750019901589013 10.2855932423912009 22.7259640000000012 18.8400399999999983 1.42814210000000008 0 2.00560569999999982 0.95290184 1.05270390000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.510574330840996 -62.8083596803153981 22.6002866022121012 -12.4449557340940995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457212563905536 2481457212563905536 361189012 2015.5 25.5041021959510985 1.35966377173107 -2.79705049218690016 1.02971639385050007 2.99580873290409011 1.38696288378124999 2.15997769999999978 -4.5497642112426 2.81918771985866989 -8.63192866827817085 2.17731945675416982 0.0483004859999999966 0.257530800000000004 -0.21606568000000001 0.21947818999999999 0.207324759999999997 0.280175750000000001 -0.31659967 0.00375573520000000013 -0.216974510000000009 0.190238669999999999 82 0 81 1 -0.482097300000000006 69.5793991 0 0 31 false 0.0250417479999999991 1.9755630097800001 0.355697457721934007 -0.0855904200000000004 10 8 2.54872940000000003 0 11 false 83 111.827881155797002 1.55612670416859 71.862999 20.5669900000000005 6 33.236980458424398 8.70902933356311948 3.81638169999999999 21.5473350000000003 10 156.33209092004401 12.7112609521888995 12.2987079999999995 19.2768000000000015 1.69518609999999992 0 2.27053450000000012 0.980344800000000016 1.29018969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.535162655671996 -62.825474097456997 22.5953804397789 -12.4648587130979003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457246923644288 2481457246923644288 285674515 2015.5 25.5150798954552016 1.41812200871971994 -2.78986099762808015 1.14792809991398004 -1.22670459437745993 1.49853060043997011 -0.818604949999999998 9.65255743924297072 3.91472908733596014 5.19329160278476021 3.23997758023251992 0.104701699999999995 -0.399504099999999973 -0.375732960000000005 0.143896250000000003 0.0523774200000000009 0.0432487729999999973 -0.462146100000000004 0.112652450000000001 -0.273465369999999985 0.351845300000000027 81 0 81 0 -0.585332329999999956 68.3862991 0 0 31 false 0.0245463920000000002 1.17067981000013011 0.343470215151309988 0.0595155600000000021 11 8 3.7364196999999999 0 11 false 84 90.8937338396781058 1.20439546924458996 75.4682999 20.7920300000000005 5 97.1477865100420956 36.7848698518131982 2.64097140000000019 20.3828069999999997 8 118.135571471724006 11.0767759039989002 10.6651579999999999 19.5809689999999996 2.36851719999999988 0 0.801837899999999992 -0.409223559999999986 1.21106150000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.550156016500011 -62.8142934737162975 22.6085303285852994 -12.4622040814152992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457624879617280 2481457624879617280 1275986981 2015.5 25.5105999070297003 1.1489051133564101 -2.77982918473087004 0.895369727504154 3.27730979212042017 1.2289687207548099 2.66671540000000018 21.4986024667415982 3.02265249462889019 -13.8859117525165008 2.40495543876600992 -0.00558607229999999975 -0.20058759000000001 -0.261655570000000004 0.24078949999999999 0.125533310000000009 0.184197400000000011 -0.355275359999999985 -0.0272611799999999994 -0.334970769999999973 0.224698989999999987 104 0 104 0 1.06094500000000003 113.958 1.64465668802716003 0.551508947573904007 31 false 0.0248830430000000005 1.28458400884910007 0.297916048197658989 -0.0239541570000000002 12 8 2.7522411 0 12 false 104 105.715950785977995 1.3771165485913599 76.7661972 20.6280140000000003 9 51.1137090852995968 9.71178135692806066 5.26306199999999968 21.0800440000000009 11 131.225424346842004 14.0354763055575003 9.3495519999999992 19.4668750000000017 1.72480250000000002 0 1.6131686999999999 0.452030180000000004 1.16113850000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.531931997324989 -62.8071297400192989 22.6080457354958 -12.4512297347507008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410212734078720 2481410212734078720 744634611 2015.5 25.5269062428451008 0.186106740887487992 -2.81768833467008006 0.131811662994673007 3.79636698160092001 0.200738215583182 18.9120300000000015 141.175592262532007 0.445968933598534012 -139.936525041482014 0.225369964434906006 0.159717799999999993 0.0955046340000000049 -0.0553199430000000034 0.24333363999999999 -0.0982579900000000034 0.329647840000000025 0.305456159999999977 -0.124156069999999993 -0.0302127259999999988 0.191361759999999992 122 0 122 0 1.75136179999999997 145.117004 0.477416097587072985 1.75795364351122996 31 false 0.873032800000000053 1.29926019780223001 0.0451796905578012026 -0.0279276869999999997 15 9 0.399328300000000025 0 16 false 122 1316.64237372152002 2.49097204396043015 528.565979 17.8896960000000007 13 286.085221945369028 11.3545670476755003 25.195608 19.2101499999999987 14 1641.68460272809011 10.1515840599784006 161.717090000000013 16.7236960000000003 1.46415600000000001 0 2.48645400000000016 1.32045360000000001 1.16600039999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.599565489615003 -62.8344094188161009 22.6093028295358991 -12.4924252597734 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410174079175552 2481410174079175552 628337992 2015.5 25.545836805015 1.31908208611070998 -2.82278286684480983 0.772790349278920985 1.50913888935866991 1.28565524114711005 1.1738286 -3.30404064313189982 2.61421503445573 -7.61688644251190983 2.11539138396583981 -0.297891860000000008 0.250028279999999992 -0.325188370000000004 0.288287279999999979 -0.210605349999999997 0.314420370000000005 -0.271114919999999981 -0.24298763000000001 -0.310028250000000005 0.285301919999999987 91 0 90 1 -1.17471060000000005 69.9978027 0 0 31 false 0.036459382999999998 1.56494675402277994 0.263682062293822017 -0.142918829999999997 11 8 2.46138859999999982 0 11 false 91 133.23651918054901 1.70555290590245989 78.1193008 20.3768080000000005 6 58.4689596847510984 10.7793087853907998 5.42418430000000029 20.934073999999999 8 151.185629409732996 20.4784080569299007 7.38268470000000043 19.3131430000000002 1.57355200000000006 0 1.62093160000000003 0.557266240000000024 1.06366540000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.641768953798987 -62.8309264414336965 22.6253948295933007 -12.5041140587957003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410620755637504 2481410620755637504 1444252900 2015.5 25.5366952028500016 0.143422425785837998 -2.80245695259569016 0.100746475691066997 2.07824670847720006 0.150109977352999996 13.8448279999999997 9.71564623206364963 0.353182341662161003 1.18490167349535991 0.17136293896718599 0.12486034 0.0436658099999999993 -0.0603192199999999998 0.244239700000000004 -0.151036019999999993 0.345312699999999972 0.340986999999999985 -0.141168669999999996 -0.0470379299999999986 0.171385630000000011 141 0 139 2 1.6248914000000001 161.643005 0.305704527749705024 1.07123178299248001 31 false 1.34913679999999991 1.37327398354411989 0.0306984873388886984 -0.0618508759999999991 16 9 0.317641620000000013 0 16 false 138 1743.91683575854995 2.80414637627188013 621.906006 17.5845500000000001 13 465.479879974753999 8.36453851660601977 55.6492000000000004 18.6816369999999985 14 1938.93695512568002 19.1749768141865005 101.118089999999995 16.5430099999999989 1.37874509999999995 0 2.13862599999999992 1.09708600000000001 1.04154009999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.604661342920991 -62.8164602645196979 22.624350810488 -12.4818548699622998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410174079030528 2481410174079030528 2428618 2015.5 25.5506509138729996 8.24618923740895937 -2.81933766163291022 2.25139677299070984 \N \N \N \N \N \N \N -0.604146500000000031 \N \N \N \N \N \N \N \N \N 50 0 50 0 -1.00002170000000001 35.5908012 0 7.48977806629696005e-16 3 false 0.0153931069999999996 \N \N 0.0560349299999999967 6 4 4071.10989999999993 0 6 false 53 63.5393278421715024 1.23535927326701001 51.4338989 21.1807599999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.648054970374005 -62.8257545139681 22.6312723030963987 -12.5026776049455002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410590691200512 2481410590691200512 956330044 2015.5 25.5666633856170016 0.0627250391797026935 -2.80173270035958 0.0424334573645536034 0.796853864341874996 0.0646438509135322942 12.3268319999999996 -6.82028906368598964 0.170377612460346994 -2.21142352969033018 0.0849064948646339052 0.00401920100000000002 -0.0403535140000000001 0.123830850000000006 0.094733830000000005 -0.166815550000000007 0.164780129999999997 0.255880800000000019 -0.288117530000000011 -0.0231700729999999994 0.0191142369999999992 142 0 141 1 -2.04856630000000006 104.375 0 0 31 true 7.53027149999999956 1.53759188715441009 0.0138667359464942994 -0.136208090000000004 16 9 0.159872299999999995 0 16 false 141 6928.23745272092037 5.81604366015085983 1191.22998 16.0868099999999998 13 3243.85692822354986 19.3200760833959997 167.900830000000013 16.5737340000000017 15 5309.79733953501 16.9598630304162015 313.080199999999991 15.4492250000000002 1.23460759999999992 0 1.12450889999999992 0.486925129999999984 0.637583730000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.663187299074991 -62.8029966606096011 22.6531348980449998 -12.4921834866535004 100001 4977 4922.62012 5098.81006 0.333999991 0.195899993 0.521099985 0.172499999 0.101999998 0.273099989 200111 0.930093700000000023 0.886186000000000029 0.950756599999999952 0.478210030000000008 0.395654380000000028 0.560765700000000034 +1635721458409799680 Gaia DR2 2481457178201130496 2481457178201130496 880410730 2015.5 25.5263899433738999 0.228098279564174 -2.79391948491667019 0.158717483373892992 0.12643335789259999 0.268309286235021982 0.471222430000000025 7.59870721773858993 0.593633023575687035 -2.61996140177271997 0.270795947236299017 0.241469319999999987 -0.310418159999999999 -0.111754300000000001 0.0582360180000000005 -0.288275269999999972 0.122742989999999996 0.187787800000000005 -0.0303494389999999989 0.134560719999999995 0.0862946299999999972 105 0 104 1 2.13877080000000008 131.440994 0.267987712900200015 0.37143473197492699 31 false 0.695619169999999953 1.70818229875435001 0.0475963833054222005 0.0123071059999999999 12 8 0.523669599999999957 0 12 false 102 978.791962366203052 2.59571452287653992 377.079987 18.2116399999999992 12 534.36778729863704 12.9865292720789007 41.1478540000000024 18.5317879999999988 12 612.965335665267958 9.54282505230029088 64.2331099999999964 17.7933309999999985 1.17219300000000004 0 0.738456699999999966 0.320148470000000018 0.418308259999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.576307040869011 -62.8131401875692035 22.6177614623207006 -12.4701313688795992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457560453435904 2481457560453435904 1238262101 2015.5 25.5312688705705 13.9532682776579993 -2.78619568713464005 10.7298280826072006 \N \N \N \N \N \N \N 0.683099870000000053 \N \N \N \N \N \N \N \N \N 40 0 40 0 -0.945247350000000042 27.1061001 0 0 3 false 0.015412841 \N \N 0.168967410000000012 5 3 116121.589999999997 0 5 false 41 59.3447586858660969 1.79624992306325004 33.0381012 21.2549099999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.578729333119014 -62.8040749047949021 22.6253107553161996 -12.4647398079211005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410762489892096 2481410762489892096 904168119 2015.5 25.5696780106130994 0.0991848519490519942 -2.77871384504258989 0.0601868428916216003 0.509036940325728993 0.0887664653391635056 5.73456399999999977 8.06322027297061084 0.264892203579232988 -13.5553082785339996 0.110614751747181994 -0.0703971099999999989 -0.106167139999999993 -0.329121470000000027 0.253766900000000017 -0.152201410000000009 0.383599369999999995 0.226477850000000008 -0.0298676980000000016 -0.123701249999999999 0.0391522870000000009 139 0 138 1 0.739344200000000007 144.720001 0.154975272973719991 0.658813594802341029 31 true 3.80744999999999978 1.57217390353237008 0.0201891962218852007 -0.153766740000000013 16 8 0.244398100000000007 0 16 false 137 4064.37693524206998 4.04027463905400008 1005.96997 16.6658800000000014 14 2093.22489490871021 18.3515480788515006 114.062579999999997 17.0493489999999994 15 2884.66953326884004 12.9962449178879993 221.961780000000005 16.1116799999999998 1.22476199999999991 0 0.937669749999999969 0.383468629999999977 0.554201100000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.647579731098006 -62.7809057193537967 22.6646674832148989 -12.4718820938118 100001 5269 4907.66016 5493.39014 0.0450000018 0.0170000009 0.248600006 0.0248000007 0.00789999962 0.108099997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457899755520256 2481457899755520256 80255952 2015.5 25.4992877366744999 0.725991540312414974 -2.76767507311524996 0.617409158018317972 0.498870003876792978 0.815215711252716968 0.611948500000000006 -2.76987787922722006 1.96277701566307994 -2.25709759453447001 1.23704793049860995 0.308614580000000027 -0.181744700000000009 0.0505474500000000007 0.267253279999999982 -0.0801927449999999958 0.325018320000000027 0.163451370000000012 -0.196734999999999993 -0.190061320000000006 0.33850849999999999 109 0 106 3 1.38823389999999991 121.288002 0 0 31 false 0.052580412 2.08434929289356985 0.187863342063682992 -0.0358071920000000016 13 9 1.79684620000000006 0 13 false 101 143.298973705223005 1.84769705545778007 77.5554962 20.2977580000000017 9 102.941246286628001 17.9465342675635995 5.73599600000000009 20.3199140000000007 10 108.651751002775995 16.6259396065647991 6.53507399999999983 19.6718270000000004 1.47658420000000001 0 0.648086550000000039 0.022155761999999999 0.625930800000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.49823198416999 -62.8009520768723988 22.6018613157131014 -12.4357728033136006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457766611979392 2481457766611979392 39039234 2015.5 25.5362634046162995 0.121066244897024 -2.75949038332670993 0.0826803689798249059 0.861899070872875983 0.113844139039784006 7.57086900000000007 13.3709862717059007 0.324322543047963985 -10.8793270694346997 0.143236114865935987 0.0321504319999999996 -0.0426199700000000001 -0.282869280000000001 0.284707500000000002 0.0502102859999999998 0.403480000000000005 0.247527639999999993 0.0221879430000000016 -0.0710641800000000046 0.0715377499999999972 113 0 111 2 0.992611350000000003 120.391998 0.188301207852343999 0.642444752766694993 31 true 2.66034479999999984 1.46140142789612004 0.0311819574965431015 -0.0856162099999999981 13 8 0.295123670000000005 0 14 false 110 2971.28477290176988 3.2796931129623399 905.963989 17.0060040000000008 11 1199.79927872409007 11.345079525849 105.755035000000007 17.6536159999999995 12 2565.74091513858002 15.9822696049726005 160.536709999999999 16.2388879999999993 1.26731039999999995 0 1.4147282000000001 0.647611599999999954 0.767116550000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.563651775255011 -62.7777969208512019 22.6401147030127987 -12.4417377522264001 100001 4705.3501 4450.5 4962 0.474999994 0.293199986 0.853999972 0.224999994 0.133000001 0.379999995 200111 0.653273459999999973 0.587442499999999979 0.730232699999999957 0.18847446000000001 0.137549969999999994 0.239398959999999994 +1635721458409799680 Gaia DR2 2481457800971716992 2481457800971716992 752507774 2015.5 25.562954502204601 0.0463109087186183987 -2.75309120501295013 0.0296673680443171987 1.28553505310060001 0.0430696649730284986 29.8478069999999995 -4.34014899890576977 0.110727517818177995 -4.29497864820318043 0.0583805377277986995 -0.0635983600000000066 0.120491269999999998 -0.428736400000000017 0.223519529999999994 -0.0365198740000000008 0.331581000000000015 0.108327514999999999 0.075708225000000004 -0.100878364999999998 0.0402949449999999987 140 0 140 0 -3.48276800000000009 84.9871979 0 1.72969015309883997e-15 31 true 19.4710619999999999 1.57096617808072003 0.0108363104132490999 -0.0735751540000000037 16 9 0.112415660000000001 0 16 false 139 16271.7673522459008 9.62874198786673929 1689.92004 15.1597790000000003 15 8151.71825203838034 23.4965527850085998 346.932529999999986 15.5732649999999992 15 11664.8382555160006 11.9493273781549991 976.192000000000007 14.5947230000000001 1.21784899999999996 0 0.978542299999999976 0.41348647999999999 0.565055850000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.61035412551999 -62.7606200297312 22.6679140311654983 -12.4455843664079993 100001 5364 5346.66992 5394.25 \N \N \N \N \N \N 200111 0.735812099999999969 0.727582630000000008 0.740590749999999964 0.403816100000000011 0.373368680000000008 0.434263530000000009 +1635721458409799680 Gaia DR2 2481458002834743296 2481458002834743296 98123785 2015.5 25.5394508718347986 0.53599101758133505 -2.74050818116083006 0.341261442190116004 1.19031194542106999 0.475408823687404003 2.50376490000000018 21.534634844084799 1.51292032967802004 2.93388581423204986 0.571866859090183977 -0.0325868870000000019 -0.220176230000000001 -0.599187429999999965 0.290839579999999986 0.0478217640000000027 0.31066450000000001 0.386551499999999992 0.321527479999999977 -0.0443440270000000011 -0.0983038499999999982 130 0 129 1 0.133956330000000012 125.447998 0 0 31 false 0.139756010000000014 1.27237231009165996 0.104783225348341003 -0.0820757700000000062 15 9 1.37884279999999992 0 15 false 129 289.796032428813021 1.47920501433813989 195.912994 19.5331340000000004 12 104.260240878608997 12.1927370650636995 8.55101200000000006 20.3060909999999986 11 379.683636239550992 22.2762707238245987 17.0443099999999994 18.3133659999999985 1.66994660000000006 0 1.99272540000000009 0.772956850000000029 1.21976850000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.552235529812009 -62.7592720390085006 22.650290944081199 -12.4252542697128003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459553318373376 2481459553318373376 11486391 2015.5 25.5441414923295014 0.0709039957502977936 -2.73097310313191022 0.0387146175095193987 0.637881391016966948 0.0500590275674911989 12.7425840000000008 19.7913021665221009 0.161242125848588991 0.0784815978139571935 0.074315940812222897 -0.468819170000000007 -0.0763204799999999961 -0.730221699999999974 0.479560729999999991 0.271403200000000011 0.609529100000000046 -0.356501220000000008 0.320245439999999992 -0.268481140000000007 -0.375848230000000005 127 127 125 2 4.37363429999999997 200.369003 0 0 31 true 403.02285999999998 1.55922469536118991 0.0127796460838399996 -0.114201469999999999 15 8 0.107440649999999999 0 15 false 121 353826.558525409026 88.7760215106801951 3985.61011 11.8163900000000002 14 155406.884546977992 319.861216393290988 485.85723999999999 12.3727119999999999 12 282117.724360316992 290.718130439982986 970.416699999999992 11.1358440000000005 1.23655099999999996 0 1.23686790000000002 0.556322100000000042 0.680545799999999979 79.822818635004495 1.64178818096136991 7 5000 3 0 NOT_AVAILABLE 151.552601586151013 -62.748649354506199 22.6583409873334993 -12.4181083082007007 100001 4888.68018 4769 5120 \N \N \N \N \N \N 200111 8.69620899999999963 7.92817500000000042 9.13815499999999936 38.9153560000000027 34.7199480000000023 43.1107640000000032 +1635721458409799680 Gaia DR2 2481459480303496960 2481459480303496960 931493796 2015.5 25.5497518039048011 0.373930255281774981 -2.73160826653928979 0.178724691844662997 0.856579179255940959 0.253342955026290007 3.38110519999999992 -2.47844720510097005 0.885091648139716969 -10.4039022191296997 0.277208133507027998 -0.388678100000000026 -0.0544995259999999995 -0.74940859999999998 0.34739819999999999 0.00483932529999999989 0.565286399999999967 0.123886949999999996 0.250488370000000016 -0.112096379999999995 -0.158737729999999994 118 0 118 0 0.254999430000000027 116.195999 0 0 31 false 0.612800000000000011 1.4391018774937101 0.0543962919565939007 -0.158044739999999989 14 8 0.841280000000000028 0 14 false 118 806.399788404079004 2.21234509250643985 364.5 18.421990000000001 14 254.008881187170999 8.84073500656650957 28.7316469999999988 19.3392659999999985 14 872.765236187037999 14.4172477016828005 60.5361899999999977 17.409676000000001 1.39728980000000003 0 1.92959020000000003 0.917276399999999992 1.01231380000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.564260744802993 -62.7468315495624012 22.6634386866751001 -12.4207584006221001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459308507948800 2481459308507948800 808980628 2015.5 25.5714169190115008 0.316894992098496975 -2.73392984808406014 0.200325924982378001 1.42733282791888993 0.260509911133037009 5.47899630000000037 -4.68798714594364974 0.892774343838189988 -15.4343038423625991 0.293310948220250001 -0.199168070000000003 -0.291924179999999978 -0.679999099999999967 0.335525330000000011 0.260729280000000008 0.552061299999999977 0.279036159999999978 0.462494220000000011 -0.068415180000000006 -0.0490618830000000006 118 0 115 3 0.756560499999999969 120.896004 0.321982467630427982 0.462106057812373017 31 false 0.58353759999999999 1.59480827633553002 0.0597431148817358995 -0.0725462600000000013 14 8 0.829121600000000014 0 14 false 116 803.242250627469957 2.12919683261964998 377.251007 18.4262489999999985 13 248.281958972674005 10.3981619139215997 23.8774850000000001 19.3640250000000016 13 821.571384619277978 13.2575161163836004 61.9702339999999978 17.4753070000000008 1.3319186999999999 0 1.88871769999999994 0.937776570000000032 0.950941099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.609148602813008 -62.7396843818391972 22.6831744625321008 -12.4308694434899003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410384532793472 2481410384532793472 318707809 2015.5 25.5796788525583985 0.0879252550028340046 -2.8047949788669202 0.0612533579482658005 0.672239997704538017 0.0908986062863001987 7.39549300000000009 6.64185667587539008 0.22256709784463799 2.63316286888080997 0.121658371657139996 0.0605110199999999987 -0.00205676420000000006 -0.0457787659999999985 0.217460870000000001 -0.213092460000000011 0.315847549999999977 0.20510964000000001 -0.193943379999999999 -0.132269649999999989 0.192307769999999989 142 0 142 0 0.392758400000000008 142.917999 0 0 31 true 3.41564200000000007 1.56939422155210995 0.0193291116162055999 -0.101399600000000006 16 9 0.204863610000000002 0 16 false 139 3387.58368994105012 3.72816537118277003 908.645996 16.8636400000000002 14 1625.98388413752991 16.6769478749613995 97.4988859999999988 17.3235969999999995 14 2480.53777588284993 11.9162591747068003 208.164140000000003 16.2755550000000007 1.2122272999999999 0 1.04804230000000009 0.459957119999999997 0.588085199999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.691756138021987 -62.8001927205669972 22.6643656396894002 -12.4998091104960007 100001 5159 5077.72998 5386.1499 0.129500002 0.0489999987 0.238999993 0.0719999969 0.0306000002 0.140499994 200111 0.70474939999999997 0.646560130000000011 0.727490659999999956 0.316975920000000022 0.228277389999999997 0.405674460000000014 +1635721458409799680 Gaia DR2 2481410487612008448 2481410487612008448 959980519 2015.5 25.5859152574583 0.0393070580498695032 -2.80359366078678995 0.0272689460938408991 1.98804708689379006 0.0407299668891700009 48.8104299999999967 27.2750170761461987 0.0953211523395346982 -6.29108626547346983 0.0635412162988655965 -0.0049243430000000003 0.161160379999999992 0.120146126000000006 0.0474086599999999983 -0.0459028449999999977 0.0528119059999999987 -0.0122034550000000002 -0.231552110000000005 -0.0574574949999999973 0.0988530299999999945 133 133 132 1 7.19643969999999999 278.556 0 0 31 true 384.017819999999972 1.61134564333736008 0.0101332836997598992 -0.13207677000000001 15 9 0.0612601639999999989 0 15 false 131 307739.125638260972 77.9828458108696054 3946.23999 11.9679090000000006 13 174045.624427854986 275.681337015955023 631.328999999999951 12.2497299999999996 14 194083.779875581997 296.836529107394028 653.840640000000008 11.5419459999999994 1.19623849999999998 0 0.707783700000000016 0.281821250000000023 0.425962449999999992 -7.79422414470468983 1.60140480930985007 6 6500 3.5 0 NOT_AVAILABLE 151.70293932085599 -62.7964364945420996 22.6707515747764994 -12.5009809327256995 100001 6297.5 6138 6880.7002 0.446999997 0.140000001 0.860099971 0.223000005 0.0983000025 0.426999986 200111 1.45942959999999999 1.22251519999999991 1.53626360000000006 3.01810050000000007 2.92818470000000008 3.10801630000000007 +1635721458409799680 Gaia DR2 2481412205598925696 2481412205598925696 1546990199 2015.5 25.5943273808309009 0.0626027422476850975 -2.77431166950777008 0.0324424985161863993 1.40254410022639009 0.0414328964135765032 33.8509799999999998 21.9786989099348986 0.150999554363955013 -12.2881093456424999 0.0719149085639047003 -0.481708939999999974 -0.263164640000000005 -0.753413299999999952 0.491066000000000003 0.159734669999999995 0.580776929999999969 -0.314182669999999997 0.345607429999999993 -0.327583400000000025 -0.332452030000000009 122 0 121 1 -0.91952526999999995 101.936996 0 0 31 false 27.2526800000000016 1.58525053430261997 0.0116649525613670008 -0.139910850000000003 14 8 0.164402999999999994 0 14 false 120 21677.5758887494012 10.6098127025056002 2043.16003 14.8483389999999993 11 11091.3879748797008 30.6867012636879011 361.439579999999978 15.2389229999999998 14 15339.5846272154995 25.4889749611424001 601.812559999999962 14.2973859999999995 1.2192771 0 0.94153690000000001 0.390583999999999987 0.550952899999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.692083232745006 -62.766380283432099 22.6897758339676017 -12.4768348373294007 100001 5389.5 5308.91016 6244.77979 0.0122999996 0 0.137600005 0.0107000005 0 0.0494999997 200111 0.769864439999999983 0.573425949999999962 0.793416499999999969 0.450523139999999989 0.420364830000000023 0.48068145000000001 +1635721458409799680 Gaia DR2 2481411926425698816 2481411926425698816 1592781078 2015.5 25.6170048903723 5.77220745388741019 -2.79480727252862016 2.23147753926670012 \N \N \N \N \N \N \N 0.467889400000000011 \N \N \N \N \N \N \N \N \N 54 0 54 0 2.02371670000000003 71.0307999 3.06883556950774006 0.578587485536652957 3 false 0.0146079820000000003 \N \N -0.0759962649999999934 8 6 18.0718689999999995 0 8 false 58 75.6756192224759019 2.11050419882203988 35.8567009 20.9909759999999999 5 54.5713178769869032 9.83939611453888041 5.54620599999999975 21.008977999999999 3 71.4205544476130996 1.18830052157186006 60.1031070000000014 20.1273610000000005 1.66489390000000004 0 0.881616599999999973 0.0180015559999999984 0.86361504 \N \N 0 \N \N \N NOT_AVAILABLE 151.756020578539989 -62.775171881708701 22.7036402986675014 -12.5042190220943006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409697338026240 2481409697338026240 524111339 2015.5 25.6209061724516012 0.0232716949406711997 -2.81640892191289982 0.0157124042696115997 2.07710234413890982 0.0234342088757742012 88.6354800000000012 1.6367936965379899 0.0513547975722124031 5.38143356637780013 0.034080010267192401 -0.0303591580000000007 0.246611340000000012 -0.0444363430000000031 0.0491533999999999999 -0.0134229380000000006 0.0244084040000000016 -0.191886899999999999 -0.0763438699999999942 0.0630626100000000051 0.0443656560000000033 150 0 150 0 -1.478966 120.653 0 0 31 true 109.652079999999998 1.58502212397831999 0.00569762723611914011 -0.137597799999999992 17 9 0.0583430799999999986 0 17 false 148 87637.3865193006059 34.5073377427927994 2539.66992 13.3316420000000004 16 45438.7091950820031 63.8104917932530995 712.088399999999979 13.7078229999999994 16 60530.9801645268017 63.5355626295275968 952.710199999999986 12.8069749999999996 1.20918360000000003 0 0.900847430000000005 0.376180650000000005 0.524666799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.784013683799003 -62.793001931675299 22.6992229603625013 -12.5257415260144001 100001 5481.66992 5431 6137.8501 0.0995000005 0.0199999996 0.224099994 0.0460000001 0.0113000004 0.1175 200111 1.00512090000000009 0.801699300000000004 1.0239621000000001 0.821829440000000022 0.797804529999999956 0.845854340000000038 +1635721458409799680 Gaia DR2 2481409693042700544 2481409693042700544 1036436457 2015.5 25.6209951256122999 0.337454199348140027 -2.80375598251968006 0.208323272533879 1.77447679412093007 0.326617392941932982 5.43289139999999993 16.6680645108861007 0.865567346144814009 5.69274054466768042 0.393778672055036028 -0.03505722 -0.109349935999999995 -0.288562600000000002 0.153851180000000004 -0.0615336079999999966 0.209550340000000002 0.073423505 0.0489487160000000032 0.046963412000000003 -0.0281832300000000001 150 0 150 0 1.05567910000000009 163.009003 0.122206583291556994 0.0269994835368679992 31 false 0.230569319999999994 1.2255345391238901 0.0707194712059446978 -0.137708130000000012 17 9 0.76922579999999996 0 17 false 150 419.672367631676991 2.05854157562245987 203.869003 19.1310900000000004 14 104.400183053790002 9.3093689142635796 11.2145279999999996 20.3046340000000001 14 556.462262679771015 14.1353798370346997 39.3666300000000007 17.8983300000000014 1.57471040000000007 0 2.40630340000000009 1.17354390000000008 1.23275950000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.772294136645996 -62.781539701833502 22.7040695534150991 -12.5140061461460004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411106087298688 2481411106087298688 1508624274 2015.5 25.6428639931672997 0.128800868593125006 -2.80493809147965001 0.0608174319459962032 1.11295253292990992 0.0894694867521236004 12.4394650000000002 21.9739725341227015 0.334432355343675991 -7.06065434109976042 0.115312712406355003 -0.399847540000000001 -0.297715159999999979 -0.66524386000000002 0.377410650000000014 0.156509129999999996 0.471052320000000024 -0.163013829999999998 0.308067949999999979 -0.137744709999999992 -0.31565169999999998 129 0 129 0 -0.132750730000000011 121.263 0 0 31 false 4.05763300000000005 1.53571019693524002 0.0200424190656503 -0.225367469999999986 15 7 0.321687200000000006 0 15 false 128 3701.92210398884981 3.44932622682062018 1073.22998 16.7672980000000003 15 1542.42221979856004 12.2601793928315992 125.807469999999995 17.3808800000000012 15 3107.43561887734995 10.7467259650548996 289.151859999999999 16.0309139999999992 1.25606580000000001 0 1.349966 0.613582599999999978 0.73638344 \N \N 0 \N \N \N NOT_AVAILABLE 151.816511947999004 -62.7732118946290996 22.7244348132103013 -12.5231298588798001 100001 4863.25977 4499 4967.56006 0.167300001 0.00400000019 0.372999996 0.104000002 0.000899999985 0.207699999 200111 0.51682360000000005 0.495348779999999989 0.603901149999999998 0.134614070000000002 0.112196879999999999 0.157031250000000011 +1635721458409799680 Gaia DR2 2481411926425700864 2481411926425700864 1505842485 2015.5 25.6209810416554014 0.225196809014208993 -2.79235605302105983 0.104374267546889998 1.19357437310076997 0.155144616101623001 7.69330200000000008 5.08982823844810994 0.576534446494654018 0.0338377745642748987 0.184553841215487013 -0.400255799999999995 -0.229316369999999992 -0.653924759999999994 0.363258330000000018 0.154652879999999993 0.470278350000000012 -0.0813620199999999932 0.272623329999999997 -0.0832099500000000047 -0.319197420000000009 131 0 130 1 15.4269339999999993 560.16803 0.776669789957147971 22.4198153571399992 31 false 1.27969679999999997 1.52943775197171994 0.0331523335690680973 -0.222809150000000011 15 7 0.541329740000000004 0 15 false 130 5566.06825079278042 9.18673630892179993 605.880981 16.3244949999999989 15 3131.58888219895016 27.1662846705420016 115.274829999999994 16.6119769999999995 15 3908.12431324281988 21.0146869145660986 185.971100000000007 15.7819990000000008 1.26475509999999991 0 0.829977999999999994 0.287481299999999995 0.542496700000000054 \N \N 0 \N \N \N NOT_AVAILABLE 151.761557231371995 -62.7712521707953996 22.7083461552896999 -12.5033982611134995 100001 5797 5579.72998 6092.6001 0.109999999 0.00800000038 0.184300005 0.0485000014 0.0046000001 0.0869000033 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411960785314816 2481411960785314816 1192987934 2015.5 25.6320676934466007 0.930801890445719038 -2.78627808393701004 0.481063768102497014 -0.527750447533183009 0.752485991189668968 -0.701342600000000038 -4.81898212114878977 2.5708207701241399 -0.963320422554169054 1.08525704640673992 -0.180343869999999989 -0.55433416000000002 -0.767424100000000053 0.374149620000000016 0.0700869600000000037 0.39768618 -0.00842278699999999929 0.54508829999999997 -0.314667819999999987 -0.150952279999999994 115 0 115 0 0.598332700000000051 118.414001 0.434335872926424005 0.115314018524937001 31 false 0.0792662650000000024 1.16711194159345011 0.184451806459389994 -0.136472729999999987 13 8 2.40451309999999996 0 13 false 114 183.93764000733799 1.57854846039775998 116.523003 20.0266899999999985 12 73.5971951316478936 7.28481644374367043 10.1028199999999995 20.684235000000001 11 204.39616595520701 10.3178270457781007 19.8100009999999997 18.9857389999999988 1.5113456999999999 0 1.69849589999999995 0.657545099999999993 1.04095080000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.777698203949001 -62.7610050132946995 22.7211826030045998 -12.5018132390831997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411204873262592 2481411204873262592 1188533772 2015.5 25.6417771987538003 13.6812507826422998 -2.78256384823963021 10.5899172350260997 \N \N \N \N \N \N \N 0.717544199999999965 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.693425799999999981 49.0252991 0 0 3 false 0.0305021010000000002 \N \N 0.218780770000000013 6 3 37524.5500000000029 0 6 false 47 80.8912337236995 1.75690821189019997 46.0418015 20.9186119999999995 4 34.4352706966415028 4.9219845227072998 6.99621699999999969 21.5088790000000003 6 87.0493909373052048 12.8013179495864993 6.8000335999999999 19.9125060000000005 1.50182719999999992 0 1.59637260000000003 0.590267199999999992 1.00610540000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.793336515725002 -62.7534815988206987 22.7318192173632987 -12.5019210120423008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459308504801152 2481459308504801152 1320916307 2015.5 25.5756164708143992 0.147151393643208006 -2.74218493442189004 0.0796771589896421023 1.46101316521509994 0.110187016820616004 13.2593949999999996 -0.152039793057458988 0.384678126168426004 -7.62538791143505978 0.143113439209259008 -0.315308660000000018 -0.256935999999999998 -0.705669100000000049 0.388145830000000025 0.133172850000000009 0.531802100000000055 0.0280087660000000009 0.351133379999999995 -0.219249310000000003 -0.193450640000000007 123 0 123 0 2.04723480000000002 151.537994 0.146885981823823009 0.439513143544989993 31 false 2.94082430000000006 1.39334861534754006 0.0242444068885387005 -0.102019760000000001 14 8 0.367461199999999988 0 14 false 121 2958.9499746260999 4.22714210237695998 699.987976 17.0105199999999996 14 889.992709792275946 11.7757979081179993 75.578125 17.9779219999999995 14 3152.30514741323987 46.8499864991024992 67.2850799999999936 16.0153479999999995 1.36612580000000006 0 1.96257400000000004 0.967401500000000025 0.995172500000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.625136515023996 -62.745352389173398 22.6840635153644001 -12.4400883739122996 100001 4312.10986 3757 5209.83984 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459415879442944 2481459415879442944 788292022 2015.5 25.5865682488090016 0.0739207544619237961 -2.73077143475962014 0.0344891628000065023 0.569622072556969949 0.0432218625938253984 13.1790269999999996 6.73453369634150967 0.16521422395850599 -2.4960558550732399 0.0672421844319130019 -0.548993300000000017 -0.0810654759999999974 -0.780674700000000055 0.472713739999999993 0.0122716349999999995 0.615954000000000002 -0.264249559999999994 0.221858460000000007 -0.21768077999999999 -0.336240170000000005 123 0 122 1 -0.353670660000000026 111.028 0 0 31 false 24.6326220000000013 1.59417070567252006 0.0109866777830258007 -0.18960921 14 8 0.180074170000000006 0 14 false 121 20269.7527464289997 10.7990532896101001 1876.98999 14.9212450000000008 14 10963.7493163385006 30.8979087274765014 354.837919999999997 15.2514909999999997 14 13543.3937039616994 23.8330384325151989 568.261300000000006 14.432601 1.2090498999999999 0 0.818889599999999995 0.33024597 0.488643649999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.636060772299999 -62.7303558527977998 22.6987763577459987 -12.4334922931638001 100001 5806 5783.66992 5844.33008 0.744000018 0.587400019 0.97329998 0.370700002 0.300599992 0.47299999 200111 1.55102399999999996 1.53074409999999994 1.56302560000000001 2.46286080000000007 2.04256100000000007 2.88316060000000007 +1635721458409799680 Gaia DR2 2481412132586189056 2481412132586189056 1148768543 2015.5 25.6324286738162002 5.16604836729526973 -2.76138322724892005 2.06763268508515985 \N \N \N \N \N \N \N 0.481054599999999999 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.68601310000000004 59.7728996 0 0 3 false 0.0335594270000000028 \N \N 0.16113654999999999 7 5 15.6171465000000005 0 7 false 48 82.3433003494339033 1.89484655434110993 43.4564018 20.8992959999999997 5 58.1162120184674009 15.8390188269355008 3.6691802 20.940645 6 91.214875132486597 11.9920789589160002 7.60626029999999975 19.8617549999999987 1.81351839999999997 0 1.07888980000000001 0.0413494100000000031 1.03754039999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.755044971851987 -62.7383710448378977 22.7308922604441008 -12.4787911576189998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412136879478400 2481412136879478400 1271272039 2015.5 25.6362644182591985 5.44542400123702031 -2.76289772997653982 3.19858051796405007 \N \N \N \N \N \N \N -0.544222300000000048 \N \N \N \N \N \N \N \N \N 107 0 107 0 22.5752370000000013 880.729004 17.6064203032237003 50.6159290118360019 3 false 0.00268980489999999994 \N \N -0.146539909999999995 13 7 13.6575989999999994 0 13 false 109 104.790338150690999 1.82209519881033 57.5108986 20.6375619999999991 11 125.120771729078996 14.6183678369357004 8.55914800000000042 20.1080649999999999 12 256.885017883092985 7.9326775618190899 32.3831399999999974 18.7375739999999986 3.64542959999999994 0 1.3704909999999999 -0.529497149999999972 1.8999881999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.764018424114994 -62.7380926122315969 22.7339722391484997 -12.4816070461527993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412441821668736 2481412441821668736 321499462 2015.5 25.6222967803707 0.80569534571351098 -2.7373712368241998 0.404886166628709021 1.52538974887401002 0.643872268638824963 2.36908750000000001 8.85816680609882923 2.22715141702770003 -14.4064821051540992 0.729391197675690051 -0.175909399999999994 -0.502887670000000009 -0.768723799999999957 0.34385275999999998 0.0477661860000000021 0.41461435000000002 0.180654260000000011 0.535239099999999968 -0.224073589999999989 -0.134571899999999994 133 0 132 1 0.426273640000000009 133.225998 0 0 31 false 0.09839175 1.35967430579694004 0.128600155017830009 -0.14186333000000001 15 8 2.07852719999999991 0 15 false 132 218.219133563435008 1.63525869921158007 133.445999 19.8411329999999992 12 62.9271297879885978 8.6651822466185795 7.26206640000000014 20.8542939999999994 11 292.216258518311008 10.7681401300208996 27.1371150000000014 18.5976579999999991 1.62746210000000002 0 2.25663569999999991 1.01316070000000003 1.24347500000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.712599426946014 -62.7210284057803023 22.7302848389659005 -12.4527403806129993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412819778793600 2481412819778793600 1357678296 2015.5 25.6307274118300015 0.19971906001717199 -2.72839100072732998 0.0956162377144205017 2.28303498892646983 0.142244424279333009 16.0500849999999993 15.0740761426148993 0.521847672161152021 15.6235476626982006 0.174680874515722007 -0.362431049999999977 -0.303408679999999986 -0.743971799999999961 0.371261000000000008 0.175789030000000013 0.466920259999999976 -0.0942478600000000027 0.426040470000000004 -0.132070700000000013 -0.289602250000000006 143 0 142 1 1.90458170000000004 170.235001 0.282738243448593995 1.01906519728381006 31 false 1.46752719999999992 1.35386038408716991 0.0317079129734453014 -0.166056680000000012 16 8 0.496206370000000008 0 16 false 141 1717.52274766710002 2.75255319513980989 623.973999 17.601109000000001 15 466.257885239448001 12.2696701899265008 38.0008499999999998 18.679822999999999 15 1938.33139041545996 11.2277553039085998 172.637480000000011 16.5433500000000002 1.40003349999999993 0 2.13647270000000011 1.07871439999999996 1.05775829999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.720788048141998 -62.7093037422791966 22.7416836862762999 -12.4474807179436002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459514663474816 2481459514663474816 287669511 2015.5 25.5650049809351003 2.32533390411954022 -2.71933646173396015 1.40114494161101 \N \N \N \N \N \N \N -0.530906600000000006 \N \N \N \N \N \N \N \N \N 86 0 86 0 1.9835948000000001 108.151001 3.29492818286770994 1.83735793461157004 3 false 0.0195718000000000003 \N \N -0.133922650000000004 10 7 5.66647619999999996 0 10 false 86 92.7996213949590043 1.44970328074620003 64.0128021 20.7695000000000007 8 49.4382130025111977 12.1923293144557991 4.05486199999999997 21.1162320000000001 10 123.605602338424006 9.58526985859220915 12.8953705000000003 19.5318240000000003 1.86470390000000008 0 1.58440779999999992 0.346731200000000017 1.2376765999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.582894710700003 -62.7292282445826999 22.6825655097715995 -12.4149435785194004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459377224284928 2481459377224284928 476008674 2015.5 25.6107531449024997 0.533791471511726012 -2.72179445385748986 0.286441015095763973 0.395191024656778023 0.420689045443089993 0.9393899 3.04158409593661982 1.50502100818692996 -0.0937937306760833062 0.464287712190528001 -0.191349689999999989 -0.484519540000000026 -0.75121389999999999 0.32351464000000002 0.127893150000000011 0.459287900000000027 0.234500349999999996 0.542762700000000042 -0.138465389999999994 -0.10059427 118 0 118 0 2.99616719999999992 163.438004 1.0543657740391601 3.14369643016814004 31 false 0.23668204000000001 1.41858108407558992 0.0828480567872773993 -0.0994237599999999999 14 8 1.40073859999999994 0 14 false 115 523.145341918459053 2.42928969030527009 215.348999 18.8918099999999995 11 249.58564975524601 9.39712321122643068 26.5597929999999991 19.3583399999999983 12 397.966854993882976 8.49206576047576966 46.8633730000000028 18.2623019999999983 1.23780610000000002 0 1.09603690000000009 0.466529850000000024 0.629507060000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.675305664153996 -62.7118992153700034 22.7251613937260011 -12.4340171718814005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412785419058944 2481412785419058944 1675211493 2015.5 25.6488326495146985 0.431589612655774002 -2.71880525287856001 0.296631642967862985 1.19270097131972008 0.435012780003032007 2.74176069999999994 10.5609198888635998 1.12535568096815997 -0.314118008009529992 0.552492359264954991 0.0870911500000000061 -0.0417626460000000005 -0.416252759999999999 0.146284500000000012 -0.0839493500000000059 0.145299210000000012 0.164849859999999987 0.194921690000000009 0.0635147699999999982 0.0418714619999999982 151 0 151 0 0.0453626440000000006 146.108994 0 0 31 false 0.12789120000000001 1.19233013009436006 0.102322837319417007 -0.128557250000000012 17 9 1.00894930000000005 0 17 false 151 253.249026700379005 1.41277430977696006 179.257004 19.6794970000000013 15 97.687402818123104 11.3801908590251006 8.58398599999999945 20.3767910000000008 14 286.763156294084013 7.0159380351667302 40.8731039999999979 18.6181100000000015 1.5180731999999999 0 1.75868029999999997 0.697294239999999954 1.0613861 \N \N 0 \N \N \N NOT_AVAILABLE 151.747430025471999 -62.6928828701202008 22.7625146522999984 -12.4452062089604993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450787289914240 2481450787289914240 1068869723 2015.5 25.3788101957683985 1.8176580619176399 -2.85550631382960995 2.39740518798478019 \N \N \N \N \N \N \N 0.643391130000000033 \N \N \N \N \N \N \N \N \N 73 0 73 0 -0.66807850000000002 59.8880997 0 0 3 false 0.0190846720000000004 \N \N 0.188876669999999997 9 7 6.53918100000000013 0 9 false 74 87.7765257501281013 1.29748052757844001 67.6514969 20.8299200000000013 8 44.4696578762808983 11.5875657081029999 3.83770500000000014 21.2312280000000015 8 70.3300040994212026 7.23176005533176003 9.72515800000000041 20.1440680000000008 1.30786289999999994 0 1.08716009999999996 0.401308060000000022 0.685852050000000046 \N \N 0 \N \N \N NOT_AVAILABLE 151.341250494430994 -62.9315986055634013 22.454181272255699 -12.4731789320771007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451543204160128 2481451543204160128 1590132126 2015.5 25.3686629201608014 0.458904176151407994 -2.8503355840775999 0.324502423601941981 1.17212380791936011 0.511266330466069951 2.29258940000000022 0.927564734661531998 1.27181989991335009 -10.3946298808498003 0.691727513207191946 0.0753806159999999975 -0.0323112529999999981 0.0338610040000000001 0.00559260460000000036 -0.0310992970000000014 0.0154162050000000005 0.0414019899999999996 -0.212665230000000011 0.0949834700000000004 -0.0122537970000000003 112 0 111 1 1.34593600000000002 126.080002 0 0 31 false 0.12972844 1.6878896755166799 0.110282547550997007 0.0207343619999999992 13 9 1.11804780000000004 0 13 true 108 302.073197689381004 2.02246983189210994 149.358994 19.4880850000000017 10 169.861482771178004 14.3292618936227001 11.8541679999999996 19.7761519999999997 10 215.911288494211988 12.7261266383167992 16.9659860000000009 18.9262310000000014 1.27708379999999999 0 0.849920299999999962 0.28806685999999998 0.561853399999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.316262608789998 -62.9312100452368028 22.4464797326347991 -12.4646407889791 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451715005457664 2481451715005457664 118047223 2015.5 25.3761565998583016 2.60589418470080014 -2.8375545432816498 1.70805132084210998 \N \N \N \N \N \N \N 0.332668100000000022 \N \N \N \N \N \N \N \N \N 52 0 52 0 -0.188550429999999991 44.549099 0 0 3 false 0.0167496729999999996 \N \N 0.0810727249999999983 7 6 10.7290679999999998 0 7 false 53 77.0047985579839036 1.65603095935305 46.4995995 20.9720699999999987 5 56.3006654851377988 8.26383091575993944 6.81290149999999972 20.9751049999999992 4 54.7788715826190966 10.9264709600715992 5.01340900000000023 20.4153880000000001 1.4425015000000001 0 0.559717200000000026 0.00303459169999999992 0.556682600000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.319262066795005 -62.9164618921606973 22.4584244918837008 -12.4555118980971997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451650578551936 2481451650578551936 450706999 2015.5 25.378231547626001 0.27481515196880002 -2.83923938090646999 0.193486284781098 0.294317510783649983 0.314881140803129012 0.934694000000000025 3.11228941442774998 0.644215279364068971 -3.55791232148905978 0.337800854460257982 0.162444379999999999 0.136247499999999994 0.00483529970000000017 0.153326359999999995 -0.194818899999999989 0.196337950000000011 0.220313969999999998 -0.12036289 0.0621183500000000027 0.17897115999999999 130 0 130 0 3.75934400000000002 193.466995 0.987130139222331948 3.84367457319941019 31 false 0.350449200000000016 1.41475157931015993 0.0613329389499156982 0.022501278999999999 15 9 0.571557899999999952 0 15 false 128 783.284012890921986 2.4084752014007198 325.220001 18.4535680000000006 13 311.384922707209 9.88145007087645055 31.5120679999999993 19.1181449999999984 13 677.322977486002969 12.5724232748596005 53.873702999999999 17.6849300000000014 1.26225969999999998 0 1.4332142000000001 0.664577500000000043 0.768636699999999951 \N \N 0 \N \N \N NOT_AVAILABLE 151.324953112721005 -62.9171099868530987 22.4597628036357015 -12.4578412293026002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450821649650176 2481450821649650176 203809222 2015.5 25.4013420639923986 0.433684304156270017 -2.86337555202065008 0.314880990189856991 0.519210083618310003 0.548542810859597996 0.946526100000000037 2.96885980404214989 1.02146922087837 -5.56269902515052994 0.555810653785983044 0.236237350000000013 -0.00180914610000000001 -0.144731460000000006 0.0536288200000000007 -0.28149360000000001 0.0651338699999999965 -0.018619825999999999 0.0447089499999999973 0.173325389999999996 0.245486960000000004 117 0 113 4 0.592726470000000005 116.246002 0.813905486046400006 0.908258268968690996 31 false 0.157342149999999986 1.54042093961774995 0.0948805321360827042 0.106570004999999995 14 7 0.909162160000000052 0 15 false 113 369.315057374467983 2.05908191501965998 179.358994 19.2698730000000005 12 163.623366869877998 11.4680218847553999 14.2677940000000003 19.8167739999999988 12 331.200156266733984 7.56634975767217988 43.7727780000000024 18.4616930000000004 1.3398410999999999 0 1.35508160000000011 0.546901700000000046 0.808179859999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.393366515053998 -62.9291756979284003 22.4726454731638015 -12.4887783917842992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465458898046336 2481465458898046336 1423849734 2015.5 25.5006369341788002 14.7413408226704004 -2.5682232303075998 5.90579877437771028 \N \N \N \N \N \N \N 0.259402899999999992 \N \N \N \N \N \N \N \N \N 43 0 43 0 19.118739999999999 563.085022 15.2281814484364997 37.5136489683505019 3 false 0.0037039693000000002 \N \N -0.136194260000000011 6 5 844.134699999999953 0 7 true 53 121.204349389704007 3.42329360154867013 35.4057999 20.4795699999999989 6 171.673425194536009 26.3811481398721988 6.50742799999999999 19.7646310000000014 5 358.441513579327989 6.81612198025374028 52.5873100000000022 18.3758739999999996 4.37372880000000031 0 1.38875769999999998 -0.71493910000000005 2.10369679999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.316101357842001 -62.619817102378498 22.6781821939825008 -12.2507750689825006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451032103261568 2481451032103261568 593589128 2015.5 25.4284283393327009 0.0287044907923219988 -2.85313968923757022 0.0208880825929801985 1.44521900211307996 0.0331122760775448971 43.64602 -2.08427191878574014 0.0672541206783578011 -2.82685294013284993 0.045308605848497302 0.117601230000000001 0.209399730000000006 0.0424283739999999979 0.032195933000000003 -0.167540539999999988 0.0372788350000000032 -0.100913589999999997 -0.159074870000000007 0.0307176260000000013 0.244831589999999988 139 0 139 0 -1.65132469999999998 108.165001 0 0 31 true 50.9533959999999979 1.59433275762681004 0.00747183822064787038 -0.00207714619999999984 16 9 0.0715504000000000001 0 16 false 139 41410.9450528090019 15.3308258925532996 2701.15991 14.1455769999999994 15 21782.9934910170014 45.3726059406575999 480.09129999999999 14.5060939999999992 16 28337.3040832488987 38.4931982284219032 736.163940000000025 13.6310230000000008 1.21031519999999992 0 0.875070600000000032 0.360516549999999991 0.514553999999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.437601850395993 -62.9084135852529016 22.5022673881010995 -12.4892158334530006 100001 5637.75 5419.33984 5982.6499 0.0140000004 0.00400000019 0.153600007 0.00650000013 0.00159999996 0.0659999996 200111 0.932075399999999998 0.827705800000000047 1.00871829999999996 0.790715159999999972 0.747757549999999993 0.833672760000000013 +1635721458409799680 Gaia DR2 2481452058600243968 2481452058600243968 1473261785 2015.5 25.3966239554493995 0.235924258496568007 -2.82984066467638984 0.168460645914070006 1.38422660834255007 0.267829070384537016 5.16832099999999972 -12.6976399173797994 0.567899814738878961 -12.6714338849930996 0.298447766430038008 0.179019359999999988 0.0778883550000000063 -0.0310950740000000003 0.16091989000000001 -0.189869840000000012 0.216375490000000004 0.205966430000000006 -0.111031229999999995 0.0335551720000000012 0.197266300000000006 131 0 130 1 1.90923540000000003 156.906006 0.538891216268465034 1.20101239515387004 31 false 0.467917680000000002 1.35978874024449992 0.0539124509718737974 0.0289396440000000005 15 9 0.50518525000000003 0 15 false 130 771.830946614987056 2.18046412288463998 353.976013 18.4695600000000013 14 212.337353913688986 6.12538315566879987 34.6651540000000011 19.5338230000000017 14 877.42395766045604 9.83015528426260055 89.2583999999999946 17.4038959999999996 1.41191709999999992 0 2.12992669999999995 1.06426240000000005 1.0656642999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.352738087694007 -62.9008102980996995 22.4807975859725993 -12.4558627865435998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451233966563584 2481451233966563584 1527824131 2015.5 25.4154290216396994 1.64268520969713006 -2.84794010290992006 2.04013594908149987 \N \N \N \N \N \N \N 0.257182269999999991 \N \N \N \N \N \N \N \N \N 81 0 81 0 -0.00377658700000000009 75.2890015 0 0 3 false 0.0197556930000000013 \N \N 0.155354159999999991 10 6 16.5069769999999991 0 10 false 82 92.3284882841771974 1.21451936409233996 76.0205994 20.7750260000000004 10 48.7753780827880021 5.79490954936898017 8.4169350000000005 21.1308860000000003 9 71.1657107732087013 8.24760343965698084 8.62865399999999916 20.1312430000000013 1.29906919999999992 0 0.999643300000000012 0.355859760000000025 0.643783569999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.406943383900995 -62.9092257516158 22.4918622581548 -12.4796037190823004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451268326259712 2481451268326259712 95676172 2015.5 25.4277987552823994 0.20126068354297999 -2.8336104559899602 0.139493376601419 1.66039059582478998 0.229150748295496004 7.24584399999999995 -12.0855028831306992 0.547007414196156949 -14.5324946608931 0.282416038667749003 0.0719197300000000012 -0.00830055199999999924 0.121662385999999997 -0.00291088100000000015 -0.139318529999999996 0.0268323529999999998 0.138048799999999999 -0.25122224999999998 0.100292005000000004 0.00908766899999999961 121 0 120 1 2.4217019999999998 154.960999 0.486883752661711022 1.43653278510440008 31 false 0.672495069999999973 1.27297520934004993 0.0503520459158606978 -0.0136449429999999997 14 9 0.484472599999999975 0 15 false 121 1058.27823467463008 3.69955636405804 286.054993 18.1268649999999987 14 238.763856845873988 5.15437215563868989 46.3225860000000011 19.4064669999999992 15 1315.06649294904992 13.8333459641364005 95.0649640000000034 16.9645499999999991 1.46826260000000008 0 2.4419173999999999 1.27960199999999991 1.1623154 \N \N 0 \N \N \N NOT_AVAILABLE 151.418127150407997 -62.8910044065217022 22.5090279394710002 -12.4708251926029998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450993448344704 2481450993448344704 1633209926 2015.5 25.4470949079989985 0.637971661837505977 -2.85531251543826015 0.432693152266951986 1.4849038291560599 0.721744289289056984 2.05738200000000004 11.2076885029609006 1.56912879228432001 -4.85478503247173965 0.745966160609381035 0.152338150000000006 -0.0421317370000000024 -0.157996710000000012 0.17161614 -0.262159230000000021 0.246901349999999992 0.222198010000000001 -0.046205000000000003 -0.00401645200000000022 0.189764810000000006 138 0 138 0 2.64866380000000001 180.227005 1.18558380162719001 0.783752432918132014 31 false 0.0669460149999999976 1.23986476948533997 0.13475043914627699 -0.00172263220000000005 16 9 1.39070310000000008 0 16 false 137 203.438396149988989 1.65248458132147991 123.111 19.9172839999999987 12 85.1882458644282963 12.2163601408255005 6.97329199999999982 20.5254380000000012 14 270.207534234958018 12.5808939120088006 21.4776099999999985 18.6826760000000007 1.74694550000000004 0 1.84276200000000001 0.608154300000000037 1.23460769999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.476673955222992 -62.9024463889281975 22.5192046969225999 -12.4980956414564996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450993448345344 2481450993448345344 1227378008 2015.5 25.4628395158832994 0.351567755746503008 -2.85222855102401995 0.252608367764622976 2.31741811974523992 0.381442699981027977 6.07540299999999966 -1.99491271013291005 0.854654487124565043 -0.818347936156448963 0.45372010351811598 0.176888049999999991 0.118090235000000002 -0.0104820499999999997 0.22005828999999999 -0.129815580000000014 0.306158129999999973 0.286024329999999993 -0.166485369999999994 -0.0572046859999999976 0.230538670000000001 131 0 130 1 2.35432150000000018 165.238007 0.903807341478890969 1.68131368290908001 31 false 0.215082699999999988 1.35949868953322994 0.086615315408356805 -0.00219998740000000017 15 9 0.763987799999999995 0 15 false 129 463.014768893118003 1.4213222041306699 325.763 19.0243779999999987 12 109.183270256677005 15.2748030482754995 7.14793300000000009 20.2559989999999992 13 598.665876731308003 13.7209621558259993 43.6314800000000034 17.8189579999999985 1.52878310000000006 0 2.43704030000000005 1.23162079999999996 1.20541950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.505018220141011 -62.8929573970522 22.5353440950134996 -12.5010129181698009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451027808085120 2481451027808085120 1678458581 2015.5 25.4365370848637014 0.666350266116571999 -2.84849606331607985 0.468059307180734019 0.386468892797763974 0.765806557724691972 0.504655999999999993 -2.59909326775906013 1.85238129436590993 -4.05692771201942026 0.865882241048042012 0.133559270000000008 -0.0869960399999999967 0.0600661639999999983 0.0847960700000000012 -0.141101389999999993 0.128466999999999998 0.263912599999999997 -0.239729870000000012 0.0653101799999999955 0.0298820269999999985 120 0 117 3 0.440884439999999989 118.037003 0.622429258964553034 0.17292077807855899 31 false 0.0638450760000000006 1.40346731866600005 0.159913197547365993 -0.00240856220000000001 14 9 1.63071820000000001 0 14 false 116 189.780803713580013 1.73051654181463999 109.667 19.9927349999999997 9 55.4260425879655969 5.49862898878186979 10.0799749999999992 20.9921040000000012 11 245.860071498205997 9.88769081090983981 24.8652669999999993 18.7851999999999997 1.5875478999999999 0 2.20690350000000013 0.999368669999999959 1.20753479999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.449357531960999 -62.9007661840985008 22.5117304411961001 -12.4878777475768992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451165247040512 2481451165247040512 1473281183 2015.5 25.455766158781401 0.395342408029413006 -2.84320725557200005 0.287273837178963987 0.614919270832627984 0.41834608100486298 1.46988180000000002 -4.50320252271708998 0.963149525950076968 2.2787179581832202 0.494171042800400973 0.202832970000000001 0.102007609999999999 -0.0725247700000000023 0.24570322 -0.0510568470000000024 0.326774779999999987 0.295575650000000023 -0.0885929599999999984 -0.0215327459999999984 0.216682390000000002 130 0 129 1 0.969979000000000036 139.190002 0 0 31 false 0.173769089999999987 1.34654380457778999 0.0934886370369245046 -0.00764957539999999974 15 9 0.858723800000000037 0 15 false 132 354.492013226539996 1.97679031403210992 179.326996 19.314350000000001 10 130.202167564233008 20.4834128614958004 6.35646869999999975 20.0648419999999987 13 425.85108638352699 9.02810589059389912 47.1694829999999996 18.1887760000000007 1.56859170000000003 0 1.87606619999999991 0.750492099999999995 1.12557409999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.482558418763006 -62.8878055586982967 22.5320145753605985 -12.4900253836974997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451272621429760 2481451272621429760 933182952 2015.5 25.4398546552437992 0.0583726141335074028 -2.83697259948840008 0.0415329093170576993 3.83765294701121018 0.0679100994070136049 56.510784000000001 51.8652833031457021 0.139437047748132009 -5.04301275381561975 0.0818958759573795991 0.117453050000000003 0.136108040000000013 0.0294675660000000006 0.0893242900000000006 -0.234218969999999999 0.13437963 0.0637884439999999997 -0.163077100000000003 0.0228960300000000012 0.213796569999999991 139 0 139 0 1.83228300000000011 165.520996 0.108712113124776993 0.614775857561234984 31 true 7.95549199999999956 1.31237068420825009 0.0141253401593472994 -0.00313763090000000007 16 9 0.131227719999999992 0 16 false 139 7763.93110414521016 7.03981328352819968 1102.85999 15.9631609999999995 14 1977.54328008071002 17.0398898766101006 116.053759999999997 17.1110730000000011 15 8821.59507958831091 21.9568617348486015 401.769400000000019 14.8980519999999999 1.39093700000000009 0 2.21302030000000016 1.14791109999999996 1.06510930000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.445180107731005 -62.8889278260202005 22.5192283727986009 -12.4783815856615998 100001 3580.5 3519.5 4052.83008 0.249200001 0.120899998 0.495299995 0.143199995 0.0784000009 0.277399987 200111 0.559664300000000003 0.436814959999999974 0.579232700000000045 0.0463793539999999976 0.0446410139999999997 0.0481176940000000025 +1635721458409799680 Gaia DR2 2481451371405475840 2481451371405475840 972265135 2015.5 25.4449655414465994 1.70607069707689996 -2.83141077145028985 1.36793219345493 1.06211675557634999 1.72590259121601997 0.615397900000000053 7.81883609444343008 4.6093426160210198 -7.11283257084389042 3.06464689527990997 -0.05782553 -0.445781299999999991 -0.587491749999999979 0.19783690000000001 0.309670840000000003 0.26519334 -0.52126866999999999 0.415060600000000002 -0.316461949999999992 0.0985490299999999958 79 0 78 1 0.933091899999999974 84.1300964 0 0 31 false 0.0221869869999999983 \N \N 0.028670306999999999 10 7 4.22897199999999973 0 10 false 80 95.7029003123366948 1.54009690199115989 62.1408005 20.7360529999999983 8 87.4734985407879009 11.1730330612107007 7.82898430000000012 20.496696 9 77.2041400824777071 10.7930739331442993 7.15311859999999999 20.0428180000000005 1.72071730000000001 0 0.453878400000000015 -0.239356999999999986 0.693235399999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.450124927469005 -62.8817228280853016 22.5261854481206996 -12.4750877393623991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410070999952128 2481410070999952128 753735062 2015.5 25.5001978921233992 0.728490685354230005 -2.84391087640018991 0.519836460105505993 1.5314640376867299 0.762121146853560028 2.00947599999999982 23.1000180005306994 1.84943161362835995 7.18067617850596029 0.864757777763479951 0.160607980000000011 -0.0660772250000000033 -0.128326859999999987 0.277365179999999989 -0.173446390000000006 0.39536184000000002 0.363979459999999977 -0.0913553799999999999 -0.0942364200000000013 0.213246700000000011 127 0 122 5 1.74790280000000009 145.056 1.92612077904869006 2.5661573509353599 31 false 0.0593613159999999973 1.24352293227920008 0.160135328251428011 -0.0222723699999999997 15 9 1.64853870000000002 0 15 false 123 205.714133194190993 1.68078663260241989 122.391998 19.9052049999999987 12 62.3825592727010019 10.7595795560421994 5.79786200000000029 20.8637300000000003 13 252.588953916348004 10.0668663000334995 25.0911200000000001 18.7558839999999982 1.53111269999999999 0 2.10784530000000014 0.958524700000000007 1.14932060000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.57126410333899 -62.869515757157302 22.5740174165076013 -12.5070019898662999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410036640261888 2481410036640261888 137197891 2015.5 25.5180920160778015 0.571957600312405945 -2.84002158315470998 0.381312853292070986 2.63915972789230979 0.587955314825555964 4.48870799999999992 42.0406124471402975 1.41714452456338003 -6.9907133659859797 0.597166412166759031 0.0989986499999999936 -0.0616441630000000018 -0.269822600000000024 0.285790829999999996 -0.0247500559999999994 0.405941580000000024 0.341098279999999976 0.0573226179999999988 -0.0238865319999999985 0.137137580000000009 114 0 114 0 2.40784999999999982 147.738998 1.06931914114229998 1.14209215415423992 31 false 0.116147205000000003 1.35387954302161995 0.112528481494760996 -0.049281514999999998 13 7 1.26571689999999992 0 13 false 111 282.306265312656024 1.44493700785126999 195.376007 19.5615629999999996 11 58.3227859398464972 5.85146322023105014 9.96721400000000024 20.9367920000000005 12 405.43354758280401 14.5415048548947006 27.8811259999999983 18.2421199999999999 1.64274190000000009 0 2.69467159999999994 1.37522889999999998 1.31944269999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.603047029354002 -62.8583625137302988 22.5925063475560002 -12.5099572970935 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410105359697664 2481410105359697664 595742163 2015.5 25.5080181129434003 0.162624768209808007 -2.82841711778540983 0.110411827408644997 1.5849288623134099 0.161350150840348011 9.82291500000000006 -3.15318066181660983 0.404858361769835973 -13.1035816635263007 0.189232952333486998 0.0546410940000000012 -0.0274581399999999989 -0.186386820000000009 0.274409699999999979 -0.0919367199999999996 0.396808830000000001 0.290478320000000012 -0.0677037459999999952 -0.0894119099999999972 0.13857469 120 0 119 1 3.1947489 168.496994 0.34575772371722302 1.30077633688801009 31 false 1.30089879999999991 1.27991611083796997 0.034769619544740997 -0.0930607299999999943 14 8 0.364096370000000003 0 14 false 117 1689.56505843769992 3.45617102105165008 488.855011 17.6189290000000014 11 467.059752929120975 20.2582012185830997 23.0553419999999996 18.6779580000000003 11 1881.33963042158007 15.6694482642605006 120.064189999999996 16.5757520000000014 1.38994309999999999 0 2.10220530000000005 1.05902859999999999 1.04317670000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.572239878484993 -62.8521703091809982 22.5872931028061004 -12.4954660989847994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479793576352384 2505479793576352384 1346898223 2015.5 25.7143367524239004 1.62337755938248995 -2.61786538813806002 1.00542325932172005 \N \N \N \N \N \N \N 0.0175475889999999989 \N \N \N \N \N \N \N \N \N 119 0 119 0 34.7780079999999998 1853.90002 8.2360616959208901 108.799296010066996 3 false 0.0133810860000000004 \N \N -0.0541880429999999982 16 9 3.63612409999999997 0 16 false 141 389.94754460707702 5.02860159587403999 77.5458984 19.2108500000000006 11 391.316494149687003 9.24638972568839002 42.3210029999999975 18.8700679999999998 11 859.081185678021029 13.8527947502771003 62.0150069999999971 17.4268339999999995 3.20657920000000018 0 1.44323350000000006 -0.340782169999999995 1.78401570000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.781616571860013 -62.5736210475994028 22.8627739857371992 -12.3753300757866 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410144014602112 2481410144014602112 887882401 2015.5 25.5242427628650006 0.163546643450559998 -2.82624061386058978 0.117460751857231996 11.5433926620678999 0.174197973882229989 66.2659400000000005 105.99118098788 0.408929364943783014 9.51569790233446966 0.207605096202165995 0.148949770000000009 0.0599277500000000019 -0.0262821430000000009 0.233505249999999998 -0.0857350999999999946 0.315743739999999995 0.307112930000000006 -0.163871569999999994 -0.0501897369999999982 0.171799940000000012 129 0 127 2 5.01245299999999983 217.259995 0.569694468094776973 3.73124844111833998 31 false 1.03968330000000009 1.13061018281021997 0.035799029104849403 -0.0458187399999999967 15 9 0.366450070000000017 0 15 false 127 1758.12291974908999 3.61839534456691014 485.88501 17.5757429999999992 13 184.845735591172001 8.53235955782782973 21.6640820000000005 19.6843639999999986 13 2654.70133059001 16.4109473779673998 161.764049999999997 16.2018810000000002 1.61510160000000003 0 3.48248300000000022 2.10862160000000021 1.37386129999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.602306130031991 -62.8432780820827972 22.6035482503463001 -12.4994004692585996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410040935387776 2481410040935387776 816491488 2015.5 25.5263470187316983 0.0328066007598330003 -2.83812242040822005 0.0236384986510146007 1.30618267591097004 0.0357378172160607993 36.5490339999999989 -16.8900073378590996 0.0776563754289002067 -17.650837082489101 0.0520979341365970031 0.105254083999999998 0.192159030000000008 0.0308981280000000004 0.135174600000000006 -0.0410678459999999981 0.171474130000000002 0.00796420899999999987 -0.213215660000000001 -0.123449610000000001 0.24114932 124 0 123 1 -1.30280890000000005 98.5038986 0 0 31 false 37.7399300000000011 1.57499189591143995 0.00892457901977562057 -0.047005232000000001 14 9 0.0814873500000000001 0 14 false 123 30237.5797233365993 10.9304463055708005 2766.36011 14.4869990000000008 12 15294.5514406698003 65.0323862575518064 235.183609999999987 14.8900459999999999 11 21521.8259559770995 11.7628931596215995 1829.63709999999992 13.9297219999999999 1.21757029999999999 0 0.96032430000000002 0.403047560000000027 0.557276699999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.617602942253001 -62.8531200498185001 22.6010754167664984 -12.5112227449480002 100001 5376 5346.60986 5527.5498 0.203299999 0.104000002 0.335099995 0.0909999982 0.0469999984 0.165999994 200111 0.982052150000000013 0.928941130000000004 0.992879500000000026 0.725773099999999949 0.679459499999999994 0.772086700000000015 +1635721458409799680 Gaia DR2 2481409521244143104 2481409521244143104 1079834087 2015.5 25.5804742738509994 0.704705338616274046 -2.83301290518154003 0.47709382718486798 -0.259454195661391995 0.722549065244414979 -0.359081770000000022 7.4149364169974703 1.9035339297112599 -5.21004697198130984 0.833229348111014012 0.0458412880000000009 -0.190936949999999994 -0.332258600000000015 0.113098909999999997 0.119143929999999995 0.163862289999999994 0.120445250000000004 0.151868730000000007 0.17040037999999999 -0.0553793500000000008 119 0 118 1 0.711306870000000036 123.325996 0 0 31 false 0.0600116629999999998 1.88213312042478997 0.153825084264452988 -0.0904314400000000018 14 9 1.69172189999999989 0 14 false 118 181.739447489552987 1.78684378028203006 101.709999 20.0397430000000014 11 64.0600387699116993 10.7352879534306993 5.96724000000000032 20.8349200000000003 11 167.943060348402014 7.61292414649780991 22.060257 19.1990149999999993 1.27656980000000009 0 1.63590619999999998 0.795177460000000003 0.840728759999999964 \N \N 0 \N \N \N NOT_AVAILABLE 151.719816679106003 -62.825342437930999 22.6544995579529989 -12.5263442256570006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410277160243456 2481410277160243456 1477579911 2015.5 25.5751978278339998 1.45672553815995998 -2.82729506504548 0.98809763954458496 -0.679763769384117977 1.53433981568774991 -0.443033400000000022 -3.66188616898595987 4.22150809631394974 -3.4319239064593301 3.02388026354213002 -0.0918539500000000037 -0.121948405999999995 0.130233359999999992 0.0458532420000000024 -0.0570585300000000031 0.0161715169999999998 -0.199039710000000009 -0.333981099999999975 -0.143320589999999998 0.0522938100000000031 86 0 86 0 -1.53079959999999993 62.4742012 0 5.58255096420897958e-16 31 false 0.018294912 1.84776918753797004 0.348850085681906008 -0.16067511000000001 11 8 3.72799419999999992 0 11 false 87 90.6547383955580983 1.76415306737481004 51.3871002 20.7948899999999988 6 56.6689014427081972 13.5825656042241008 4.17217970000000005 20.9680269999999993 7 89.376893679344505 9.15918276049758973 9.75817299999999932 19.883858 1.61101110000000003 0 1.08416939999999995 0.173137659999999999 0.9110317 \N \N 0 \N \N \N NOT_AVAILABLE 151.704023007443993 -62.8224383697975028 22.6516317038110984 -12.5190896556481004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409555603883136 2481409555603883136 1217800421 2015.5 25.5921377652192987 0.291275916335332008 -2.82961166996991009 0.180756949705613013 1.19641117202188996 0.284145380040030981 4.21056000000000008 -2.33621630148393011 0.772255961779627964 -8.21378627157934993 0.347466255021721016 -0.0707120299999999952 -0.070738880000000004 -0.169817949999999995 0.0956092800000000048 -0.015882120999999999 0.121480464999999996 0.127581730000000004 -0.0493179899999999991 0.111690250000000005 -0.134015489999999987 143 0 142 1 2.12867700000000015 174.557999 0.487944277777191016 0.673367315570534974 31 false 0.315097059999999984 1.1747997232479499 0.0633215267553074029 -0.162971630000000006 16 9 0.68300419999999995 0 16 false 141 556.09187140072595 2.02086524671249013 275.174988 18.8254990000000006 11 111.081935550915006 9.85643054552276077 11.269997 20.2372799999999984 13 699.114376491006055 12.8618767045692994 54.3555500000000009 17.6505490000000016 1.4569468000000001 0 2.58673099999999989 1.41178129999999991 1.17494959999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.739654939425009 -62.817270055800698 22.6668782536875 -12.5274623352968 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409456819857920 2481409456819857920 560848393 2015.5 25.5946085265020002 2.54748332804794986 -2.84613077851708018 0.749672222559944035 \N \N \N \N \N \N \N -0.794314150000000052 \N \N \N \N \N \N \N \N \N 115 0 115 0 4.33868899999999957 186.768005 2.20626977444073979 2.90620938766425985 3 false 0.0561274599999999971 \N \N -0.34982975999999999 13 6 4.42413499999999971 0 13 false 117 215.985484079548996 2.08666163349291001 103.508003 19.8523040000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.760069715783004 -62.8311277564548973 22.6630101621591997 -12.5437323495561994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409452524660992 2481409452524660992 237815407 2015.5 25.5946286268544014 0.137798750361735001 -2.84590621017130019 0.0874648205720307964 1.12423206004720999 0.134770938550426989 8.34179899999999996 -6.27655925032715967 0.331763517865257984 -9.34259297758628016 0.167505317174209994 -0.0409150459999999966 0.0423121379999999991 -0.187679769999999996 0.153302359999999999 -0.0789471600000000023 0.201930419999999999 0.0612540000000000029 -0.0305217490000000008 0.0385975399999999996 0.0115107270000000001 151 0 149 2 0.955590500000000009 160.117004 0.217657502292630006 0.523347447018739031 31 false 1.33843800000000002 1.40210410133006991 0.0300007930140133994 -0.135316479999999989 17 9 0.297381820000000019 0 17 false 148 1612.55985558318002 3.35789069404484986 480.230011 17.6695770000000003 15 524.847702517912012 9.25894960253483035 56.6854480000000009 18.5513060000000003 17 1917.94034273937996 9.74745243187411958 196.763239999999996 16.5548320000000011 1.51485110000000001 0 1.9964732999999999 0.881729100000000043 1.11474420000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.759898102075994 -62.8309163482542985 22.6631138400668988 -12.5435308752888997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409246366230144 2481409246366230144 196154951 2015.5 25.6059680307784987 0.111968824389314006 -2.84838799125639008 0.0704502236726617936 0.400688232460366001 0.108832063165653997 3.68171120000000007 1.17991031248200007 0.289044138166469011 -0.0320059457751089987 0.141408674423905006 -0.100930640000000002 0.0193705339999999983 -0.0435684000000000002 0.0475819999999999993 -0.0203873299999999986 0.0572043299999999977 0.107713564999999997 -0.126958619999999994 0.11893244 -0.148220639999999987 142 0 142 0 0.668915570000000015 147.671997 0.124957541788145998 0.258650432512498973 31 false 2.14027479999999981 1.54420028494186989 0.0246748315144708005 -0.16224675999999999 16 9 0.260569039999999974 0 16 false 141 2346.12909452443 2.73569110673262017 857.599976 17.2624859999999991 15 1099.2820368673099 11.7472186720309004 93.5780699999999968 17.7486150000000009 15 1793.29278313764007 10.6457318499699998 168.451809999999995 16.6277919999999995 1.23291369999999989 0 1.12082290000000007 0.486129760000000022 0.634693150000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.784627851220989 -62.828289115036398 22.6729700302362005 -12.5500011145929005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409486884401280 2481409486884401280 58172031 2015.5 25.6093209721546984 0.618239813295159979 -2.83927414293656 0.377094238260290981 1.52231093201207002 0.604939236610035014 2.51646919999999996 2.9765993943599498 1.6697364659729601 5.90779624165803963 0.705943744531331019 -0.0389608599999999999 -0.163240689999999994 -0.257392320000000008 0.12524861000000001 -0.0379908600000000013 0.167933510000000008 0.143062600000000012 0.0185153470000000014 0.0874198149999999979 -0.102820739999999994 143 0 142 1 0.460256869999999985 144.070007 0 0 31 false 0.0732422300000000054 1.61982968065342003 0.128216494570705997 -0.162288080000000001 16 9 1.47682179999999996 0 16 false 142 194.574491983683998 1.55580152935620997 125.064003 19.9656500000000001 9 72.5998518900372005 23.6379249873738004 3.07132940000000021 20.6990489999999987 12 246.765865252063008 14.5369800941262 16.9750419999999984 18.7812079999999995 1.64135439999999999 0 1.91784099999999991 0.733398439999999985 1.18444250000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.782667349537007 -62.8186208688762022 22.6795918166858002 -12.5427555742429995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409177648676736 2481409177648676736 438721684 2015.5 25.6233667129335991 8.34697733935525932 -2.85871626781468979 4.41672998083107959 \N \N \N \N \N \N \N -0.763162140000000044 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.9556766000000001 62.9421005 3.87916446376040014 1.51326569781114006 3 false 0.0158789200000000012 \N \N -0.117868799999999996 6 4 6301.70799999999963 0 6 false 51 81.0506985489539034 1.45676248996000002 55.6375999 20.9164729999999999 5 33.4083307896961017 7.69306713558825006 4.34265399999999957 21.5417519999999989 5 102.040174734700003 12.2773213608072993 8.31127399999999916 19.7399920000000009 1.67115780000000003 0 1.80175970000000008 0.625278499999999959 1.1764812 \N \N 0 \N \N \N NOT_AVAILABLE 151.828711039119014 -62.8301348081914028 22.6856390170602005 -12.5659924163780996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409280725970432 2481409280725970432 1422856215 2015.5 25.6257644900091002 0.482278991537097024 -2.84267996970225001 0.308231986523888002 1.53316951541587998 0.469374080068765021 3.26641270000000006 33.5986690547066971 1.2086071276046999 2.72765825350085001 0.603617842549594052 -0.0352433659999999982 -0.0458666979999999974 -0.238410220000000006 0.15652640000000001 -0.060728200000000003 0.207594649999999992 0.0256452430000000016 0.00503265299999999978 0.0246542020000000001 0.000782453050000000028 141 0 140 1 3.65167740000000007 203.453995 1.53919488117687009 3.37577038064782009 31 false 0.112868830000000003 1.20336485013433991 0.118146349354954994 -0.135146139999999998 16 9 1.06952350000000007 0 16 false 140 333.375329990623015 1.8206268086578099 183.110001 19.3810329999999986 9 110.380205589632993 15.9791351547854994 6.90777100000000033 20.2441600000000008 10 450.500447781886976 7.68816335766623027 58.5966260000000005 18.1276820000000001 1.68243000000000009 0 2.11647799999999986 0.863126750000000054 1.2533512 \N \N 0 \N \N \N NOT_AVAILABLE 151.818327514960004 -62.8146298100828986 22.6939578247705995 -12.5519579071017997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409388100381056 2481409388100381056 179893739 2015.5 25.6316244629244991 0.0260934998162038016 -2.84292177952784009 0.0175650693750637986 3.24190859195886993 0.0262827671946477999 123.347305000000006 4.79205925826086965 0.0582555879144441013 -24.0164556409096015 0.0382233311449726998 -0.0311503280000000014 0.232406479999999999 -0.03984621 0.056360368000000001 -0.0293182150000000016 0.038527249999999999 -0.165387499999999993 -0.0876769399999999949 0.0508051100000000005 0.0533033870000000007 150 0 150 0 -2.90014649999999996 100.484001 0 8.34490122535248036e-16 31 true 64.5373400000000004 1.50540460263346998 0.00643429705723605992 -0.137498270000000006 17 9 0.0641326599999999941 0 17 false 149 51531.2324121295969 20.9302160369826993 2462.05005 13.9081899999999994 16 21445.9404150363007 31.0419442967878005 690.869749999999954 14.5230254999999993 15 42910.6840633660031 42.6277476623090976 1006.63739999999996 13.1805070000000004 1.24888580000000005 0 1.3425187999999999 0.614835739999999964 0.727683069999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.830117351106992 -62.8123282085229988 22.6994434917623984 -12.5543332564415007 100001 4643.2002 4548.83984 4807.39014 0.384000003 0.285699993 0.610499978 0.184200004 0.135000005 0.296299994 200111 0.750363230000000048 0.699982940000000053 0.781816359999999988 0.235780640000000014 0.230982419999999994 0.240578860000000005 +1635721458409799680 Gaia DR2 2481409383805186432 2481409383805186432 267736931 2015.5 25.6295152125353987 1.15680259069358993 -2.83891655927532005 0.713540380491237025 0.744130098307050014 1.14740436838993998 0.648533460000000006 2.56592170894858018 2.77384615679702007 2.20246486499760019 1.29729331060950992 -0.0487341300000000005 0.0515606399999999979 -0.153517189999999998 0.113561460000000003 -0.0986017700000000052 0.142805259999999989 0.137985329999999989 -0.0217222889999999988 0.123224920000000002 -0.0432474050000000027 145 0 145 0 17.3792760000000008 676.737 6.03882754543689959 23.9680073862969998 31 false 0.0197164600000000016 1.56295677134505007 0.22012507827101499 -0.118360825000000003 17 9 2.44078060000000008 0 17 true 146 242.201275858980011 2.2556571900331801 107.375 19.7279240000000016 15 256.340328023789993 6.64686358205771999 38.5656049999999979 19.329346000000001 16 499.38555095252201 6.21223027779629966 80.3874799999999965 18.0158309999999986 3.12023900000000021 0 1.31351470000000004 -0.398578639999999984 1.7120934000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.822181966637004 -62.8096203169533993 22.698943830145101 -12.5498341534516999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409383805189504 2481409383805189504 58725984 2015.5 25.6256603721164993 0.372103020561106002 -2.83330606177328992 0.242738420424430001 -0.360822006363194003 0.376514179185594988 -0.958322470000000037 8.81782517564498924 0.932287485302519037 -4.65459948058331019 0.462351897921750021 -0.0154279350000000003 0.000693550039999999974 -0.260391119999999976 0.152101349999999996 0.0855195700000000031 0.189009160000000009 -0.00828752500000000045 0.0293019540000000016 0.0403780970000000017 -0.0405180600000000016 129 0 126 3 2.23523400000000017 158.410004 0.589677404061600963 0.631013955883656052 31 false 0.20505986000000001 1.37846560648001004 0.0917838958066348048 -0.100336629999999996 15 9 0.826889160000000012 0 15 false 125 414.290693125627001 1.67395196026411996 247.492996 19.1451029999999989 12 160.548254077740012 12.0418859999271 13.3324839999999991 19.8373740000000005 12 407.053133828908017 10.1148314504327992 40.2431950000000001 18.2377929999999999 1.37005580000000005 0 1.59958080000000002 0.692270300000000005 0.90731050000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.80929262263399 -62.8062133063644978 22.6973872404910999 -12.5432014718382998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451921162801920 2481451921162801920 881521959 2015.5 25.3597929698552988 1.54777995676712998 -2.82142180177481006 0.976425833845770974 -1.43110770564179002 1.53912806929467005 -0.92981720000000001 11.4485516440133992 3.2215872042454099 -5.73295375845828037 1.75309127887276994 -0.0166559099999999995 0.190815519999999988 -0.353089360000000019 0.224441229999999992 0.102819430000000003 0.297520070000000025 -0.171867400000000004 0.145465669999999991 0.0188686810000000017 0.0673928859999999991 74 0 74 0 1.96670210000000001 93.9567032 1.4773450282287599 0.343490868829205986 31 false 0.0243149900000000016 2.25023015089674017 0.280362293215404013 -0.0240711740000000007 9 8 2.90925859999999981 0 9 false 75 99.7576117126988038 2.05997923003871009 48.4264984 20.6909999999999989 4 34.2173197623983967 1.82049964144369003 18.7955649999999999 21.5157740000000004 8 131.856628118168999 3.88742176090817981 33.9187849999999997 19.461663999999999 1.66477469999999994 0 2.05410959999999987 0.824773800000000001 1.22933580000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.271746088449987 -62.9087645129455026 22.4489433649121999 -12.4344960906850996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451753657766400 2481451753657766400 832243564 2015.5 25.3819226787077987 0.178855899145014013 -2.82447648631411008 0.128988788018586986 -1.14258696752292011 0.206124359119615991 -5.54319239999999969 2.2907887911019098 0.476169815131441021 -1.38802941608194996 0.235803413372172005 0.130638580000000004 0.0094060719999999997 0.153506370000000003 0.0496559369999999972 -0.106087189999999998 0.0632145259999999931 0.27516073000000002 -0.254662249999999979 0.141193180000000001 -0.00412336700000000018 122 0 122 0 2.51834200000000008 159.085999 0.457948450144032015 1.66259776973052009 31 false 0.843470999999999971 1.62427346053876009 0.0399125270766417031 0.00271355219999999979 14 9 0.422992829999999986 0 15 false 123 1312.36760864915004 3.80445390697419983 344.955994 17.8932269999999995 12 671.759337600460981 19.3902930553445003 34.6441039999999987 18.2833539999999992 11 1011.43215350717003 11.9739220738934993 84.4695799999999934 17.2495779999999996 1.28256100000000006 0 1.03377530000000006 0.390127180000000018 0.643648149999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.318551356911001 -62.9021756267198029 22.4688374804830993 -12.4454713891958999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455425854352768 2481455425854352768 653031886 2015.5 25.3516583569744007 0.199048634485331 -2.78191934528445994 0.134060321138848998 3.13037732733865992 0.224092418497436996 13.9691349999999996 22.3038194788309987 0.458942608422168996 -8.50600534293415045 0.241726303762946987 0.114411763999999999 0.173081929999999995 -0.0468505769999999974 0.0909358039999999951 -0.085292555000000006 0.0765858140000000021 0.102420079999999997 -0.0485230349999999991 0.169924839999999994 0.080173750000000002 142 0 142 0 4.84494450000000043 232.914001 0.77798353152111599 4.49902730657050043 31 false 0.605593399999999948 1.25652371206791003 0.0449138185464807993 -0.0172748729999999996 16 9 0.405157829999999997 0 16 false 141 1230.45312041599004 2.29153495287483011 536.955994 17.963203 15 249.675380209892012 13.9066504603739993 17.9536669999999994 19.3579480000000004 15 1574.9214866442901 10.6802121168056008 147.461620000000011 16.7687719999999985 1.4828657999999999 0 2.58917619999999982 1.39474490000000007 1.19443129999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.218947460984992 -62.8763969428044973 22.4560955064891985 -12.3947762091287004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452402197496448 2481452402197496448 1689411954 2015.5 25.3678277577900992 0.439451688118091988 -2.79509010896159982 0.302381189174011022 0.938155097912994007 0.480176731007076973 1.95377040000000002 -0.974994465445515046 1.02914273884620999 -3.57832178689844005 0.50623545549890403 0.174857810000000002 0.112600320000000004 -0.171542660000000013 0.165429090000000001 0.0306383739999999995 0.183654170000000005 0.168549900000000002 0.0529532949999999974 0.154829889999999998 0.110994990000000002 130 0 130 0 0.367413549999999978 130.214005 0 0 31 false 0.137860659999999996 1.7196848981083801 0.0986874950498242975 0.018162826 15 9 0.909846700000000008 0 15 false 130 310.50471464581301 1.95232481944915004 159.044006 19.4581949999999999 13 179.773979401644993 11.7845812521659994 15.2550159999999995 19.7145709999999994 13 201.643464497923986 9.76210933670894931 20.6557269999999988 19.0004600000000003 1.22837890000000005 0 0.714111300000000004 0.256376270000000017 0.457735060000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.26326467596499 -62.8815096409248966 22.4665079233190994 -12.4129664182748005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455391494614784 2481455391494614784 970953120 2015.5 25.3770389235703 0.804087625834143949 -2.77909677485108997 0.602315357456597034 -0.160993421415234012 0.877678234781297029 -0.183431029999999995 3.15911340247517014 1.9986422621795501 -4.8496887171485703 1.30423869880428001 0.150929690000000005 0.0226438179999999996 -0.185863090000000009 0.107127144999999993 -0.0333612449999999977 0.142051939999999988 -0.161016259999999994 -0.0352101439999999988 -0.0744701700000000022 0.250943750000000021 112 0 112 0 -1.54315080000000004 85.4011002 0 0 31 false 0.0431903969999999984 1.5210204339264799 0.212953771864507008 0.0570157769999999967 13 9 1.79539000000000004 0 13 false 113 138.993334530117011 1.48950991539490007 93.3147964 20.3308810000000015 12 83.732091681282995 8.02076778234411947 10.4394109999999998 20.5441590000000005 12 130.306034657411999 5.6159339497060099 23.2029150000000008 19.4745080000000002 1.53991649999999991 0 1.06965069999999995 0.213277820000000007 0.856372829999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.266716146815014 -62.8631260910075014 22.4812934644881004 -12.4014811439165999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452539638137344 2481452539638137344 34797273 2015.5 25.3849888314748 2.8757577176662199 -2.78288761020183983 5.19924690639251974 \N \N \N \N \N \N \N -0.483169799999999983 \N \N \N \N \N \N \N \N \N 61 0 61 0 1.2741667000000001 69.8207016 2.52063653762628004 0.617796737766107995 3 false 0.0148138569999999997 \N \N 0.0773660840000000016 7 5 19.5006500000000003 0 7 false 63 85.8707532327801033 2.05898715846692992 41.7052994 20.8537520000000001 3 30.4827600170567017 8.30051755633929922 3.67239259999999978 21.641252999999999 6 148.875546348580002 16.1368009397932006 9.22584100000000085 19.32986 2.0887007999999998 0 2.3113918 0.787500399999999989 1.5238913999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.286006564923014 -62.863201852468201 22.4874250935742985 -12.4079279066693999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455494573832448 2481455494573832448 705139832 2015.5 25.3748010095844982 0.747820319805403977 -2.77313391600335013 0.597350163600975037 0.302948580850366023 0.765006474827736982 0.396007869999999984 1.35478196128097994 1.91202771249782 -8.8824866613111908 1.34575331355767003 0.0955578759999999999 -0.035640129999999999 -0.381443699999999997 0.0472030500000000033 0.161206719999999998 0.0809938099999999994 -0.453438039999999987 0.126189369999999995 -0.116959759999999996 0.170615899999999987 102 0 101 1 -0.0420628200000000008 94.7558975 0 0 31 false 0.0604364299999999993 1.95437501072447994 0.196037707374671993 -0.0176855960000000013 12 7 1.72411800000000004 0 12 false 101 172.284094707244009 1.15740644666600989 148.854004 20.0977539999999983 11 102.101536157045004 7.78638377894533029 13.1128309999999999 20.3288079999999987 9 141.356298536113997 12.3993333892543003 11.4003139999999998 19.3861309999999989 1.41311849999999994 0 0.942676540000000007 0.23105429999999999 0.711622239999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.256748102858012 -62.8586676751195981 22.4814119916287005 -12.3951141355733991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455494576955520 2481455494576955520 587105477 2015.5 25.3707495566657997 0.118339383408934004 -2.77180653630678009 0.0798936326104083966 3.06671428751860997 0.132441008954031991 23.1553229999999992 19.8300698596278018 0.274715764399136975 26.136753576109701 0.147665757608838988 0.109996005999999993 0.163499270000000002 -0.0681157039999999991 0.0746065300000000042 -0.0834808949999999994 0.0610038999999999998 0.0493604760000000004 -0.0368286040000000009 0.166211859999999989 0.0866665840000000048 141 0 141 0 1.88664999999999994 168.778 0.193095429925834006 0.500839903008811982 31 true 1.75061430000000007 1.28094214107832993 0.0275185854986598998 -0.016029729999999999 16 9 0.245260270000000002 0 16 false 139 2032.6458192821101 2.79004108985323018 728.536011 17.4182109999999994 14 455.201253228038013 12.8262615756787 35.4897840000000002 18.7058800000000005 15 2518.37913425258012 13.9866605562275996 180.055790000000002 16.2591169999999998 1.46291119999999997 0 2.4467620000000001 1.28766819999999993 1.15909390000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.247478813773 -62.8591752734403997 22.4780595540843002 -12.3923907755805001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455808106892032 2481455808106892032 948451799 2015.5 25.3740664993494995 0.213918927534613001 -2.74343763386882999 0.121985067579804998 1.44823061828471999 0.218290031925472 6.63443330000000042 12.3267362857877991 0.450036291475874983 3.5368120329592001 0.213295742057006993 -0.0309186749999999996 0.228572200000000003 -0.242347019999999996 0.165202870000000002 -0.0747059000000000056 0.178035870000000013 0.0598077899999999996 0.0600752049999999996 0.15146728000000001 0.0425134640000000008 123 0 121 2 -1.07795039999999998 99.7396011 0 0 31 false 0.812022200000000027 1.38350718906746994 0.0445601009640785028 -0.0986021460000000016 14 9 0.401991299999999996 0 14 false 120 1031.45434477337994 2.85020139900962022 361.888 18.1547410000000013 12 287.960507556303014 10.1270999991865995 28.4346469999999982 19.2030560000000001 13 1146.13187172411995 12.2791981647678998 93.3393099999999976 17.1138340000000007 1.39035949999999997 0 2.08922199999999991 1.04831500000000011 1.04090689999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.227796073738006 -62.8320629694486996 22.491900781934401 -12.3672313366877997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461683622152448 2481461683622152448 1318335079 2015.5 25.375599838076301 0.368845348390815009 -2.73425911672714017 0.242665291626535995 2.60363351376620011 0.39430517521657199 6.60309200000000018 -0.981292086485922033 0.843012212025281982 -6.14109976176626038 0.45643847253848302 0.0362775739999999999 0.116165905999999999 -0.148985680000000009 0.0919341439999999954 -0.0635405700000000045 0.0978577000000000058 -0.0291077200000000001 0.00972741750000000009 0.1440438 0.0604928900000000005 124 0 123 1 17.889997000000001 659.315002 1.84711172623290998 20.315651218955999 31 false 0.204300969999999998 1.37665135888188006 0.081275908186512702 -0.0414519979999999968 14 9 0.743166600000000011 0 15 false 123 1078.28643046674006 5.18765195145727986 207.856003 18.1065310000000004 12 487.828294493065982 20.9417914263522 23.2944870000000002 18.6307200000000002 10 1243.04125443555995 35.5758873621590013 34.9405560000000008 17.0257049999999985 1.60520390000000002 0 1.60501479999999996 0.524189000000000016 1.08082579999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.222347968171988 -62.8230963163898011 22.4968159984357996 -12.3592601943767999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461679328527104 2481461679328527104 638978065 2015.5 25.3757889826656999 7.22698647584897014 -2.73400144155794012 2.50076195028862003 \N \N \N \N \N \N \N -0.990227700000000044 \N \N \N \N \N \N \N \N \N 70 0 69 1 3.2062816999999999 106.620003 1.17797304060144992 2.05303566448157992 3 false 0.18243624 \N \N -0.468529599999999991 8 5 9.43458099999999966 0 13 false 69 458.176241459798973 2.72340780137247007 168.235992 19.0357839999999996 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.222484687757003 -62.8227829614520985 22.4970928976097007 -12.3590901054982005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452092959837696 2481452092959837696 33104402 2015.5 25.4105369837307009 0.658940479240106014 -2.82357605935710998 0.43176535336379801 0.475839626570023988 0.72926858662281302 0.65248879999999998 0.184984228990941996 1.79067012110563994 -26.7992859417539009 0.783693795539190052 0.0446126130000000024 -0.0442885120000000021 0.0271977880000000005 0.0538529049999999995 -0.139441769999999993 0.0860655599999999993 0.279029760000000016 -0.195901240000000004 0.113844219999999996 -0.0585025100000000006 129 0 127 2 3.30316330000000002 180.345993 1.85154488592484001 2.59364812202539019 31 false 0.0660677399999999998 1.35331984620025003 0.140342959269402989 -0.0388789770000000021 15 9 1.57369099999999995 0 15 false 127 234.636022705399 2.07195399660942003 113.244003 19.7623789999999993 13 94.3435915352205967 7.03251921314403017 13.4153339999999996 20.4146080000000012 12 216.685398620976002 8.93113727960481008 24.2617930000000008 18.922346000000001 1.32558069999999995 0 1.49226189999999992 0.652229300000000012 0.840032600000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.374523232375992 -62.8892420025847017 22.4963909018667003 -12.4551511674099 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905472 2481451341340905472 617108872 2015.5 25.4214860146622996 0.217211211242688995 -2.82309247649084982 0.139386393919958995 3.05867505676628992 0.234113861449031013 13.0649029999999993 -7.34345593076571035 0.557547153998130041 -20.2177010095224006 0.252433489351993001 0.0859772699999999945 -0.0025087871999999998 -0.178176919999999989 0.130643680000000012 -0.223292070000000009 0.190907959999999988 0.196962130000000013 -0.0514537249999999988 0.0212654289999999989 0.111021430000000004 130 0 129 1 8.70525199999999977 316.570007 0.949315205195486955 11.0226793476969007 31 false 0.642781099999999994 1.23010204381062005 0.0449679241462673032 -0.0434612100000000001 15 8 0.494377879999999992 0 15 false 127 1757.25183106613008 3.97429087212521992 442.154999 17.5762800000000006 12 402.897041216965988 11.9532432911060003 33.7060850000000016 18.8384040000000006 11 2283.42402593820998 11.6194796373236002 196.516889999999989 16.3654539999999997 1.5287058 0 2.47294999999999998 1.26212309999999994 1.21082690000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.395797996075999 -62.8841614761740999 22.5069868700589986 -12.4587252061981992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905728 2481451341340905728 1641406266 2015.5 25.4231034709055983 3.25269761191328 -2.8242875473520801 2.00264863999837983 \N \N \N \N \N \N \N 0.0537932699999999972 \N \N \N \N \N \N \N \N \N 81 0 81 0 51.8716470000000029 4176.77002 14.5881083255103992 325.64954478834801 3 false 0.00455886129999999966 \N \N -0.0743053899999999989 15 8 6.89024160000000041 0 15 false 130 477.457391722120974 6.87287370436250988 69.4698029 18.9910299999999985 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.400120433624011 -62.8845572766708969 22.5080749751258011 -12.4604308291066008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451341340905600 2481451341340905600 577926155 2015.5 25.4228458877101993 0.744727519783634051 -2.8236707960653602 0.479476186056304987 1.16809730187715011 0.818682193465223973 1.42680190000000007 -0.0642554335945141053 1.85343751147273994 0.117660918998997999 0.818908142469105038 0.137590999999999991 0.0541652850000000005 -0.201429279999999988 0.173482460000000005 -0.110932139999999999 0.218472759999999988 0.248974709999999988 -0.0140653559999999993 0.0550853950000000023 0.114833779999999996 122 0 122 0 10.2442049999999991 352.687012 3.30620883124404985 13.6477943540549003 31 false 0.0578355679999999969 1.51093221372367004 0.152088533150798011 0.00549775100000000037 14 7 1.63791859999999989 0 15 false 123 357.796480286627002 2.79633034209382991 127.952003 19.3042760000000015 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.399034689021988 -62.8841081951864993 22.5080623710346011 -12.4597626833632003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451337045739904 2481451337045739904 402506974 2015.5 25.4298933652070005 0.877157489924041966 -2.82667407545230986 0.544079532041678027 1.33492082495579001 0.90885585921685097 1.46879270000000006 20.8784334940318992 2.24413752322060001 -12.1302401410213996 0.949128687819792982 0.117004070000000002 -0.156542419999999988 -0.360134120000000002 0.174700190000000005 -0.160618540000000004 0.256665919999999992 0.186893840000000006 0.120862910000000004 -0.00890893799999999993 0.15405698000000001 120 0 120 0 2.12701580000000012 149.572006 0.978657563128350949 0.409792288052794995 31 false 0.0473225400000000032 1.30588004524125001 0.189560066734852012 -0.0227892079999999983 14 8 2.00622899999999982 0 14 false 120 151.457605162139998 1.57606296159222992 96.0987015 20.2376380000000005 12 51.5754045328317972 8.26411829468739967 6.24088430000000027 21.0702819999999988 13 197.196634640819013 11.6571465964719003 16.9163719999999991 19.0246719999999989 1.64251940000000007 0 2.04561040000000016 0.832643499999999981 1.21296690000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.415814236950013 -62.8838364941221997 22.5136338882678011 -12.4651450402558002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452269053841024 2481452269053841024 112233693 2015.5 25.4061419814253 0.0932011220066621959 -2.80154512200389005 0.0640779206247996946 2.79446400686892993 0.101397253078912994 27.5595630000000007 32.5829701881102025 0.236513584698085005 -5.15538790757099008 0.116579647865376002 0.165809469999999987 0.0208317099999999998 -0.141191900000000009 0.129819629999999991 -0.18191344000000001 0.175412459999999992 0.167863160000000011 -0.0352920850000000008 0.0539689730000000034 0.168938640000000001 122 0 120 2 4.31691299999999956 192.737 0.314892427830809007 3.52668561479729004 31 false 3.65928839999999989 1.39611966971661006 0.0208151842479366994 -0.00994066149999999968 14 8 0.214751410000000004 0 14 false 120 5312.90424598840036 5.76678104803649028 921.294983 16.3750360000000015 13 1638.67601446223989 12.6966305782974 129.063839999999999 17.3151550000000007 13 5557.85936937460974 11.3974587511984993 487.640229999999974 15.3996519999999997 1.3545389000000001 0 1.91550350000000003 0.940118800000000032 0.975384699999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.345302004101001 -62.8711534941984027 22.5005121460215989 -12.4330505845895001 100001 3868.43994 3783.37012 4462.56982 0.0333000012 0.00400000019 0.194100007 0.0160000008 0.00260000001 0.104999997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481452299120042112 2481452299120042112 1374121287 2015.5 25.4288943509438994 3.55897791526551011 -2.79128548708799018 5.86811439222254982 \N \N \N \N \N \N \N -0.611928299999999981 \N \N \N \N \N \N \N \N \N 40 0 40 0 -1.33073339999999996 24.4761009 0 0 3 false 0.0164379699999999997 \N \N 0.157594499999999998 5 4 590.571199999999976 0 5 false 41 94.1882586298359001 1.78313285771638008 52.8218002 20.7533740000000009 2 37.4589012089666014 1.29717268432294008 28.8773440000000008 21.4175010000000015 3 101.372396400306997 33.6924279380959035 3.00875899999999996 19.7471199999999989 1.47397669999999992 1 1.67038149999999996 0.664127350000000005 1.0062542000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.380875533773008 -62.852222075740201 22.5260161711549998 -12.4318711576673007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451199606640384 2481451199606640384 264835219 2015.5 25.4624008938990016 0.533747255213100957 -2.82265742598060987 0.362305546122590028 -1.00036295581554002 0.54192778305579703 -1.84593399999999996 -0.483019123239896986 1.3531795427014699 -2.20080215147507996 0.610643691911301967 0.093335849999999998 -0.056496567999999997 -0.222939880000000007 0.259523449999999989 -0.0569150900000000015 0.367217630000000017 0.285026900000000027 -0.00846843899999999948 -0.0505833180000000021 0.131912169999999995 132 0 132 0 1.76499640000000002 156.490005 0 0 31 false 0.104485385 1.76584637150106993 0.112526555288504998 -0.0569703000000000015 15 9 1.20337580000000011 0 15 false 131 250.525593082695991 1.56117255353073991 160.473007 19.6912349999999989 13 141.293788171757001 12.6305828674165994 11.1866409999999998 19.9760799999999996 13 170.376088796393987 9.36649555211931073 18.1899499999999996 19.1833999999999989 1.24406400000000006 0 0.792680739999999995 0.284845349999999997 0.507835400000000048 \N \N 0 \N \N \N NOT_AVAILABLE 151.476515259664012 -62.8663902088123976 22.5460678678268991 -12.4733539149980004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458105914067584 2481458105914067584 1673243446 2015.5 25.4487998807023992 0.255037767274220006 -2.79191678472637994 0.166270439299352008 4.0445806031922702 0.277612105939278986 14.5691799999999994 18.9626322515990005 0.687173841944091035 -14.5915532751642001 0.305174669818021993 0.0386165399999999978 -0.0980017499999999986 -0.0323278499999999983 0.0860154600000000019 -0.126540530000000012 0.134345369999999992 0.243103950000000013 -0.168820529999999996 0.0784380600000000039 -0.0376843659999999969 122 0 121 1 2.71499230000000003 161.628998 0.325260572616870025 0.517260655385148982 31 false 0.46876066999999999 1.12869419741341992 0.0566085955923781997 -0.0583073829999999974 14 9 0.605730349999999973 0 14 false 120 714.813243977248021 3.00265175727296008 238.061005 18.5528849999999998 14 84.2912731146555956 7.13187030585616988 11.8189569999999993 20.5369320000000002 13 1058.49256941710996 11.4176597563201998 92.7066099999999977 17.2002009999999999 1.59871659999999993 0 3.33673099999999989 1.98404690000000006 1.352684 \N \N 0 \N \N \N NOT_AVAILABLE 151.420905233264989 -62.8443488359504983 22.5447105295164008 -12.4397715655157999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458449511337600 2481458449511337600 535192567 2015.5 25.4103572960679998 0.412233896496095986 -2.7584837090497798 0.270513780534888004 1.18180007043508994 0.429400556890736973 2.75220900000000013 13.5168488512695006 1.03082806013478989 -7.53820094120309037 0.462770209508530983 0.0952099400000000068 -0.0959308700000000014 -0.269895700000000016 0.202139740000000012 -0.0653476100000000004 0.282712799999999986 0.199915950000000009 0.0622620700000000027 0.0178916250000000013 0.104042456000000005 122 0 121 1 -1.3414235000000001 96.1547012 0 9.32988320270471914e-16 31 false 0.188601999999999992 1.57571752997688996 0.0888919035688670034 -0.00477669060000000031 14 9 0.916939260000000034 0 14 false 120 340.309558120500981 1.99912616591323 170.229004 19.3586799999999997 14 147.592312410332994 13.9092640243529004 10.6110799999999994 19.9287279999999996 14 307.644035584503001 13.9033847875913992 22.1272750000000009 18.5417999999999985 1.33771250000000008 0 1.38692860000000007 0.570047399999999982 0.816881199999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.313669295325013 -62.8303654686245991 22.5207425942038988 -12.3945583161159991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458483871076096 2481458483871076096 1520725038 2015.5 25.4224616006472992 0.370196934738991013 -2.75810065570657015 0.228133836640402987 0.719633285593605954 0.387788679421064986 1.8557357000000001 14.8910369088183998 1.01262266681313995 1.64696210497136009 0.417420208804262005 0.00887870299999999994 -0.226269109999999996 -0.176909580000000011 0.100562940000000003 -0.0848353649999999959 0.15143203999999999 0.214502990000000004 -0.0573668000000000025 0.0878902750000000038 -0.0857330599999999998 112 0 111 1 1.99792560000000008 137.039993 0.843294599807334011 1.67062143784875006 31 false 0.264667030000000025 1.39810279086227007 0.0770304768580774984 -0.0952113299999999968 13 8 0.892867740000000021 0 13 false 111 520.695928336103975 2.00213886497558979 260.070007 18.8969060000000013 11 125.729694523966003 8.12325106722479973 15.4777559999999994 20.1027929999999984 11 618.81902048081804 13.8075676763905992 44.8173829999999995 17.7830100000000009 1.42991080000000004 0 2.31978229999999996 1.20588680000000004 1.11389540000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.337294923758009 -62.8248958124612003 22.5323977982866985 -12.3986495740769005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461408744246272 2481461408744246272 91437112 2015.5 25.3995165343769997 0.85571349381719497 -2.74698038542929002 0.743241049386160979 2.65910494088188987 0.834022219860072966 3.18829040000000008 2.82022147929692979 2.5543017356687101 -17.9446468290022985 1.06416985448052004 0.348598840000000021 -0.389021600000000023 -0.0774672899999999942 0.481098120000000018 -0.330449849999999989 0.663971069999999997 0.691311360000000041 -0.106431869999999998 -0.348685149999999999 0.465012499999999995 97 0 96 1 1.61579800000000007 113.809998 1.09586128399287008 0.838413375387267013 31 false 0.0821415900000000004 1.06097945790534998 0.172484589904585012 0.019341309000000001 11 7 2.34816000000000003 0 11 false 96 214.675588873137997 1.84761615433144999 116.191002 19.8589100000000016 9 57.6247189297028015 16.8114679667025015 3.42770300000000017 20.9498649999999991 8 316.851343264051025 11.9106979714029002 26.6022469999999984 18.5097799999999992 1.74438120000000008 0 2.44008450000000021 1.09095570000000008 1.34912870000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.281524186539002 -62.8245274889721017 22.5147663341045998 -12.3798782147324005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458488166484864 2481458488166484864 1112210488 2015.5 25.4237184189829009 0.930429064864274014 -2.74793445000624015 0.458981445484068995 -0.247081497530152988 0.796513456103067008 -0.310203799999999974 3.86938089440258004 2.2096027213374998 -4.78472617896428964 0.765609736359635029 -0.161331119999999995 -0.087184049999999999 -0.547885359999999988 0.24645373000000001 -0.097079600000000002 0.382162869999999988 0.14595377000000001 0.178296060000000006 -0.0303719040000000016 -0.010466342 109 0 108 1 1.97690779999999999 133.266006 1.46973436983834005 1.36658022094636 31 false 0.0715647340000000048 1.50608677319093998 0.15394957487729799 -0.129380149999999999 13 8 2.02343399999999995 0 13 false 109 217.433553412375005 1.86615199782037999 116.514 19.8450489999999995 9 123.530769661063005 16.0612056136455017 7.69125130000000024 20.1219499999999982 10 117.534553103055003 17.8473824052368002 6.58553459999999991 19.586506 1.10868499999999992 0 0.535444260000000005 0.276901249999999988 0.258543000000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.330351769235989 -62.8151557404812024 22.5374216744704015 -12.3896578505384998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458243352902016 2481458243352902016 1357493722 2015.5 25.4700406699380011 0.235021620703245004 -2.77275310261895003 0.154775618504337992 3.26232331587520985 0.256082912085947023 12.7393249999999991 21.4572692004007983 0.574822860756250997 -0.777070614689057027 0.273558655510575011 0.08652783 -0.033552613000000002 -0.163431689999999991 0.168999060000000006 -0.214668649999999989 0.245734449999999993 0.194298429999999994 -0.0543835199999999977 -5.26138699999999991e-05 0.133914279999999997 132 0 131 1 2.65256289999999995 172.151001 0.598910447366729048 1.8335834739888901 31 false 0.527453060000000029 1.22973369022303003 0.0508480204906925012 -0.0403957259999999999 15 9 0.510378499999999957 0 15 false 131 870.095568576810024 2.30404328398809 377.639008 18.3394489999999983 14 140.62990998252701 8.47417917982870961 16.5951060000000012 19.9811939999999986 15 1146.15047572775006 9.56485758310638978 119.829329999999999 17.1138149999999989 1.47889540000000008 0 2.8673782000000001 1.6417446 1.2256336000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.445114951123003 -62.817983084547599 22.5721305283565989 -12.4297536296899001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458621310036608 2481458621310036608 225103927 2015.5 25.4373358893496011 0.157931882316381 -2.73464252991748991 0.107363381284558995 1.72132640263582992 0.170358746456166998 10.1041270000000001 99.0912798451633989 0.393532345277144979 15.4985825922919993 0.211361605565799998 0.0897419899999999937 -0.0597764480000000029 -0.182706279999999999 0.142336889999999994 -0.167920010000000008 0.203357399999999994 0.0369924829999999996 -0.0400714539999999994 -0.0209855289999999993 0.165357919999999992 122 0 122 0 -0.0323052370000000005 115.843002 0 0 31 true 1.16656530000000003 1.35394921565993998 0.0397376242214076969 -0.0218473060000000004 14 9 0.352169300000000018 0 14 false 122 1327.80867255433009 2.50399849094918014 530.275024 17.8805270000000007 13 339.486835749286001 10.8345979737782994 31.3335900000000009 19.0243299999999991 14 1488.99980792502993 10.5282331317488005 141.429210000000012 16.8296829999999993 1.3770709000000001 0 2.19464680000000012 1.14380259999999989 1.05084420000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.344981120108002 -62.7973515585300035 22.5553767778758001 -12.3823003181105999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458964907422080 2481458964907422080 491619313 2015.5 25.477689203545701 0.169490503350095995 -2.7282054451199298 0.0998771583426052018 -0.0948414983811492057 0.156891202556236009 -0.604504900000000012 -0.672937750332592954 0.433038802251068999 -2.41846757814901014 0.199690411273758001 -0.0484995949999999995 -0.176615450000000007 -0.588625799999999977 0.19349733999999999 -0.100089915000000002 0.26379370000000002 0.015651410000000001 0.291557579999999983 -0.0799745840000000013 0.0501671839999999966 122 0 122 0 0.583814399999999956 125.459999 0.216782337686230009 0.496474000492115985 31 false 1.46263919999999992 1.60347262543565994 0.0343583570607364011 -0.0141418429999999994 14 9 0.400930999999999982 0 14 false 122 1688.51596613446009 3.0506411643256599 553.494995 17.6196020000000004 12 930.347189148251005 21.1692127524153015 43.948124 17.9297749999999994 12 1123.74412103903001 11.0932672498502001 101.29965 17.1352520000000013 1.21650680000000011 0 0.794523239999999964 0.310173030000000016 0.484350200000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.418811427468 -62.7744140302118012 22.5961770135145983 -12.3911358484948 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456628445513088 2481456628445513088 63163844 2015.5 25.351903355498699 0.84911283906052204 -2.72122477490011994 0.737387929940163001 1.64215156332437995 0.914644147889389969 1.79539939999999998 -8.0465728815230193 2.14690779009732013 -14.8545281906804991 1.65210856568284004 0.0671632699999999971 -0.0455399800000000007 -0.323365330000000006 0.0753471849999999971 0.235410239999999993 0.096923200000000001 -0.494949040000000007 0.0856620399999999949 -0.174054149999999991 0.122296039999999995 103 0 102 1 1.0765165000000001 112.043999 0 0 31 false 0.042457037000000003 1.30084293855660005 0.239085098535716994 0.020105946999999999 12 8 1.92119219999999991 0 12 false 101 137.141368878647995 1.70881415866305009 80.2553024 20.3454440000000005 10 64.6637587625864967 13.8860608414001998 4.65673880000000029 20.8247360000000015 10 212.560961229215991 11.3153357772192003 18.7852099999999993 18.9432100000000005 2.02145220000000014 0 1.88152499999999989 0.479291919999999982 1.4022330999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.163324820483012 -62.8212643411250014 22.4791951250995012 -12.3384310873162004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461782405972608 2481461782405972608 417446767 2015.5 25.3745173783688003 1.06017083466671003 -2.71634814590123996 0.633198516080662022 -0.244389594053845 1.06324258830327989 -0.229853100000000005 13.6047593450582003 2.30634829231677996 -14.9686540840058004 1.20192356249934007 -0.0462987799999999977 0.171442420000000012 -0.280413750000000017 0.170975700000000008 -0.0482339859999999995 0.213554169999999988 -0.0663936100000000057 0.036175866000000001 0.0425380100000000011 0.0587581400000000004 113 0 113 0 4.30200099999999974 183.416 2.65469948829914992 2.30116071137467992 31 false 0.0326327939999999997 1.11654766902804004 0.206170247287058989 -0.100783209999999998 13 9 2.05418250000000002 0 13 false 111 153.283667980882996 1.75170806133757995 87.5053024 20.2246270000000017 8 64.2309252776353929 11.8813821162002995 5.40601440000000011 20.8320270000000001 7 183.597974221101992 6.03154600813441988 30.4396209999999989 19.102250999999999 1.61679909999999993 0 1.72977639999999999 0.607400900000000021 1.12237549999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.203652358065 -62.8073160136550968 22.5025326187815011 -12.3422077066456009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461610610146944 2481461610610146944 1161489483 2015.5 25.417753743619901 0.908664874490392016 -2.72307295119095016 0.639153150379422996 1.62694376580991995 0.925758981663834968 1.75741609999999993 0.627261785896051971 2.3342418711429298 4.32735834057877966 1.30736082004979992 0.0270400290000000001 -0.157187219999999989 -0.364887740000000016 0.180901349999999989 0.0916798100000000005 0.24546599999999999 -0.176905139999999989 0.138195000000000012 -0.100351869999999996 0.0832550100000000043 102 0 101 1 0.874243499999999951 107.907997 1.54402783307330993 0.878113395150776022 31 false 0.0432236159999999994 1.09895938218600997 0.193311687875340005 0.0191716419999999992 12 9 2.08658620000000017 0 12 false 103 140.979980209877994 1.34882413004581991 104.521004 20.3154719999999998 5 185.592098494172006 134.055893467443013 1.38443819999999995 19.6799889999999991 10 185.007047996580013 11.2932958533451 16.3820249999999987 19.093948000000001 2.62873599999999996 1 0.586040499999999964 -0.635482800000000014 1.22152330000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.295502868350013 -62.7951573700034018 22.5411115792809014 -12.3643477621247992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461644967018752 2481461644967018752 1032596111 2015.5 25.4250647992820014 0.173554050005802013 -2.71780612770470986 0.100215640728605004 0.310781702675825999 0.164722883079889998 1.88669419999999999 5.6422839847155597 0.453389712029384995 -1.70026683471863005 0.179043342504502989 -0.000851582039999999982 -0.20061176 -0.441576719999999978 0.190754380000000001 -0.0688570899999999958 0.276790560000000019 0.130514230000000009 0.178609849999999987 -0.00215901299999999999 0.0357539399999999979 113 0 111 2 0.890515999999999974 118.780998 0.319389981174288018 1.22979035591963992 31 false 1.47744330000000001 1.55799879901823002 0.0345631009963068975 -0.0609396170000000015 13 8 0.411684300000000003 0 13 false 110 1850.72146466460003 3.06286495525230018 604.244995 17.5200139999999998 12 985.163130824989025 12.4722736119940993 78.9882599999999968 17.8676190000000013 11 1279.21625721048008 9.97082206600670951 128.295960000000008 16.9945599999999999 1.22351169999999998 0 0.873058299999999954 0.347604750000000018 0.525453570000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.305096289446993 -62.7872941834886973 22.5500468308606017 -12.3621360112536003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461954204663680 2481461954204663680 86730548 2015.5 25.4497123569477992 0.0931162932687436967 -2.71907679334581021 0.0538672773546282971 1.1348759765651899 0.0867162736468665984 13.0872320000000002 12.0505301716393003 0.247363140515370006 15.5290232266501 0.106271879058749005 -0.0427647599999999989 -0.155923370000000006 -0.555973649999999986 0.151625779999999988 -0.12945777 0.154048729999999995 0.0830386500000000055 0.27672285000000002 0.00295392819999999983 -0.0417281099999999988 120 0 120 0 0.216724919999999988 117.639999 0 0 31 true 5.06142950000000003 1.51294281283896992 0.0193958521522062007 -0.0577945630000000002 14 9 0.232900720000000006 0 15 false 118 4637.16801402779038 5.26734892579417036 880.361023 16.5227339999999998 12 1967.02921805435994 19.2725010801370011 102.064030000000002 17.1168610000000001 12 3824.3805959863198 16.0657914592786994 238.04495 15.805517 1.24891090000000005 0 1.3113440999999999 0.594127659999999946 0.717216500000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.355031119110009 -62.7780124415317005 22.5730069357082996 -12.3723715299265997 100001 4815.43994 4741.47998 4960.81006 0.147499993 0.0688999966 0.192100003 0.0764999986 0.0419999994 0.0930999964 200111 0.582283499999999954 0.548656699999999997 0.60058993000000005 0.164250430000000003 0.138198500000000002 0.190302369999999998 +1635721458409799680 Gaia DR2 2481457109481647360 2481457109481647360 625779198 2015.5 25.4824552166791989 0.371794065441573007 -2.80659591253560015 0.221532501273341009 0.406792077482586001 0.355560096391471014 1.14408810000000005 8.06225525639709062 0.817084554661503981 -24.2847315816843015 0.373971480018956026 -0.0751676599999999973 0.17748775 -0.225385069999999993 0.243838040000000006 -0.166205450000000005 0.389165040000000018 0.259735349999999976 -0.107793509999999995 -0.0588628539999999992 0.106816549999999996 113 0 113 0 3.37329580000000018 164.664993 1.02540774358255993 3.72583127555787019 31 false 0.308196799999999993 1.49586170156045006 0.0725530089544502987 -0.146271149999999989 13 8 0.730834540000000032 0 13 false 106 667.620104450316035 2.20174168063569997 303.223999 18.6270430000000005 13 305.785132773636008 12.2126948701498002 25.0383010000000006 19.1378480000000017 12 587.697800464438956 28.3368948987581994 20.7396680000000018 17.8390349999999991 1.3383103999999999 0 1.29881289999999994 0.510805130000000052 0.788007739999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.501240114643991 -62.8433266886611008 22.5711939974580993 -12.4657849401954 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457143841387904 2481457143841387904 555010442 2015.5 25.5098319916478005 0.317541329222170987 -2.80137984148815988 0.214472085577847998 3.62427465653883019 0.320236235474559983 11.3175030000000003 40.5481995421272003 0.744830401574595014 -4.63367967000731973 0.349350286442299984 0.101402080000000006 0.120473880000000005 -0.129194439999999994 0.274726000000000026 -0.101157083999999994 0.392174960000000017 0.361311229999999983 -0.0862258149999999973 -0.0267246629999999992 0.177485480000000001 118 0 117 1 1.20814200000000005 130.332993 0.483337141242471013 0.619998141094009969 31 false 0.350318550000000006 1.26368642201914994 0.0649112371242265979 -0.0656372300000000047 14 9 0.664852259999999973 0 14 false 116 582.787663025839038 1.62341154865583004 358.989014 18.7745899999999999 8 132.681655572580013 7.81235430785211005 16.9835680000000018 20.0443609999999985 9 758.570300028694987 20.4637720345745997 37.0689399999999978 17.5619300000000003 1.52929099999999996 0 2.48243139999999984 1.26977159999999989 1.21265979999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.550540930052989 -62.826947636307203 22.5992008147103007 -12.4709890101608991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457216856165760 2481457216856165760 213385960 2015.5 25.5017404254804987 1.18617337188733996 -2.79244600296277001 0.61878199559985203 1.02991905863948996 0.994131498111246015 1.0359988 24.6475944391032016 2.84953278679638 -6.05928769672649992 1.02627754497615009 -0.169948769999999999 -0.0612857679999999974 -0.525399570000000038 0.279022869999999978 -0.0909622499999999945 0.453614000000000017 0.184891830000000007 0.114847093999999997 -0.0938981299999999963 0.016862437000000001 106 0 103 3 1.88489740000000006 126.038002 1.80202250598053992 1.59675096356868007 31 false 0.0446693260000000023 1.41661997977566001 0.220283015398111987 -0.146561789999999997 12 8 2.6024153000000001 0 13 false 105 157.339283745172992 1.79307064542996009 87.748497 20.1962720000000004 10 44.1634055194957966 9.51745307458842937 4.64025450000000017 21.2387310000000014 10 209.518235700914005 15.3771819276822992 13.6252689999999994 18.9588660000000004 1.61232229999999999 0 2.27986529999999998 1.04245950000000009 1.23740579999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.526191131155997 -62.8223155836565965 22.5948676254956986 -12.4597094133492998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457453078914944 2481457453078914944 613288247 2015.5 25.5008433732614002 0.220697647645162004 -2.78507540291420996 0.152768408938233013 0.786400398878314033 0.226176274401338001 3.47693589999999997 1.80758427111358011 0.563476563438944034 -1.40036597358945003 0.261088939178848012 0.108320109999999997 -0.0390410500000000008 -0.158510420000000013 0.254947629999999981 -0.0977758900000000042 0.359613269999999985 0.310152140000000021 -0.0731043400000000038 -0.0611336199999999996 0.145926269999999997 132 0 131 1 0.550658199999999987 134.248001 0 0 31 false 0.603589530000000041 1.35936837763085006 0.0479684658963544022 -0.0604524130000000035 15 9 0.502656639999999988 0 15 false 130 817.654137815315949 2.00081603604836999 408.660004 18.4069420000000008 13 241.970388927817993 5.02522999754903044 48.1511080000000007 19.3919829999999997 14 858.261687709275975 12.1387393285388008 70.7043500000000051 17.4278699999999986 1.34559600000000001 0 1.96411319999999989 0.985040660000000012 0.97907259999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.517536882639007 -62.8160306608957981 22.5967896486759017 -12.4525256654676006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457453078917888 2481457453078917888 571805393 2015.5 25.5012361678138006 0.655386216585413961 -2.77678020134317993 0.467138681768742015 -0.69078418549692 0.674665803394400965 -1.02389100000000011 5.4597385668453402 1.72558721068880994 -4.48052881165166994 0.769245748314471012 0.151245099999999993 -0.122761324000000005 -0.162295650000000014 0.282582549999999988 -0.114183809999999997 0.395084619999999997 0.372914399999999979 -0.0579875629999999989 -0.0800277600000000033 0.171258240000000006 130 0 130 0 2.14553139999999987 161.294006 1.30666948176667996 1.03314072253145994 31 false 0.0697541599999999956 1.57151633061953011 0.141556126320740994 -0.0487585899999999975 15 9 1.5339408000000001 0 15 false 130 208.088759417631991 1.4802521680690901 140.576996 19.8927440000000004 11 63.4302981077433969 6.28528631023081985 10.0918709999999994 20.8456459999999986 12 233.750019901589013 10.2855932423912009 22.7259640000000012 18.8400399999999983 1.42814210000000008 0 2.00560569999999982 0.95290184 1.05270390000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.510574330840996 -62.8083596803153981 22.6002866022121012 -12.4449557340940995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457212563905536 2481457212563905536 361189012 2015.5 25.5041021959510985 1.35966377173107 -2.79705049218690016 1.02971639385050007 2.99580873290409011 1.38696288378124999 2.15997769999999978 -4.5497642112426 2.81918771985866989 -8.63192866827817085 2.17731945675416982 0.0483004859999999966 0.257530800000000004 -0.21606568000000001 0.21947818999999999 0.207324759999999997 0.280175750000000001 -0.31659967 0.00375573520000000013 -0.216974510000000009 0.190238669999999999 82 0 81 1 -0.482097300000000006 69.5793991 0 0 31 false 0.0250417479999999991 1.9755630097800001 0.355697457721934007 -0.0855904200000000004 10 8 2.54872940000000003 0 11 false 83 111.827881155797002 1.55612670416859 71.862999 20.5669900000000005 6 33.236980458424398 8.70902933356311948 3.81638169999999999 21.5473350000000003 10 156.33209092004401 12.7112609521888995 12.2987079999999995 19.2768000000000015 1.69518609999999992 0 2.27053450000000012 0.980344800000000016 1.29018969999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.535162655671996 -62.825474097456997 22.5953804397789 -12.4648587130979003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457246923644288 2481457246923644288 285674515 2015.5 25.5150798954552016 1.41812200871971994 -2.78986099762808015 1.14792809991398004 -1.22670459437745993 1.49853060043997011 -0.818604949999999998 9.65255743924297072 3.91472908733596014 5.19329160278476021 3.23997758023251992 0.104701699999999995 -0.399504099999999973 -0.375732960000000005 0.143896250000000003 0.0523774200000000009 0.0432487729999999973 -0.462146100000000004 0.112652450000000001 -0.273465369999999985 0.351845300000000027 81 0 81 0 -0.585332329999999956 68.3862991 0 0 31 false 0.0245463920000000002 1.17067981000013011 0.343470215151309988 0.0595155600000000021 11 8 3.7364196999999999 0 11 false 84 90.8937338396781058 1.20439546924458996 75.4682999 20.7920300000000005 5 97.1477865100420956 36.7848698518131982 2.64097140000000019 20.3828069999999997 8 118.135571471724006 11.0767759039989002 10.6651579999999999 19.5809689999999996 2.36851719999999988 0 0.801837899999999992 -0.409223559999999986 1.21106150000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.550156016500011 -62.8142934737162975 22.6085303285852994 -12.4622040814152992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457624879617280 2481457624879617280 1275986981 2015.5 25.5105999070297003 1.1489051133564101 -2.77982918473087004 0.895369727504154 3.27730979212042017 1.2289687207548099 2.66671540000000018 21.4986024667415982 3.02265249462889019 -13.8859117525165008 2.40495543876600992 -0.00558607229999999975 -0.20058759000000001 -0.261655570000000004 0.24078949999999999 0.125533310000000009 0.184197400000000011 -0.355275359999999985 -0.0272611799999999994 -0.334970769999999973 0.224698989999999987 104 0 104 0 1.06094500000000003 113.958 1.64465668802716003 0.551508947573904007 31 false 0.0248830430000000005 1.28458400884910007 0.297916048197658989 -0.0239541570000000002 12 8 2.7522411 0 12 false 104 105.715950785977995 1.3771165485913599 76.7661972 20.6280140000000003 9 51.1137090852995968 9.71178135692806066 5.26306199999999968 21.0800440000000009 11 131.225424346842004 14.0354763055575003 9.3495519999999992 19.4668750000000017 1.72480250000000002 0 1.6131686999999999 0.452030180000000004 1.16113850000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.531931997324989 -62.8071297400192989 22.6080457354958 -12.4512297347507008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410212734078720 2481410212734078720 744634611 2015.5 25.5269062428451008 0.186106740887487992 -2.81768833467008006 0.131811662994673007 3.79636698160092001 0.200738215583182 18.9120300000000015 141.175592262532007 0.445968933598534012 -139.936525041482014 0.225369964434906006 0.159717799999999993 0.0955046340000000049 -0.0553199430000000034 0.24333363999999999 -0.0982579900000000034 0.329647840000000025 0.305456159999999977 -0.124156069999999993 -0.0302127259999999988 0.191361759999999992 122 0 122 0 1.75136179999999997 145.117004 0.477416097587072985 1.75795364351122996 31 false 0.873032800000000053 1.29926019780223001 0.0451796905578012026 -0.0279276869999999997 15 9 0.399328300000000025 0 16 false 122 1316.64237372152002 2.49097204396043015 528.565979 17.8896960000000007 13 286.085221945369028 11.3545670476755003 25.195608 19.2101499999999987 14 1641.68460272809011 10.1515840599784006 161.717090000000013 16.7236960000000003 1.46415600000000001 0 2.48645400000000016 1.32045360000000001 1.16600039999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.599565489615003 -62.8344094188161009 22.6093028295358991 -12.4924252597734 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410174079175552 2481410174079175552 628337992 2015.5 25.545836805015 1.31908208611070998 -2.82278286684480983 0.772790349278920985 1.50913888935866991 1.28565524114711005 1.1738286 -3.30404064313189982 2.61421503445573 -7.61688644251190983 2.11539138396583981 -0.297891860000000008 0.250028279999999992 -0.325188370000000004 0.288287279999999979 -0.210605349999999997 0.314420370000000005 -0.271114919999999981 -0.24298763000000001 -0.310028250000000005 0.285301919999999987 91 0 90 1 -1.17471060000000005 69.9978027 0 0 31 false 0.036459382999999998 1.56494675402277994 0.263682062293822017 -0.142918829999999997 11 8 2.46138859999999982 0 11 false 91 133.23651918054901 1.70555290590245989 78.1193008 20.3768080000000005 6 58.4689596847510984 10.7793087853907998 5.42418430000000029 20.934073999999999 8 151.185629409732996 20.4784080569299007 7.38268470000000043 19.3131430000000002 1.57355200000000006 0 1.62093160000000003 0.557266240000000024 1.06366540000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.641768953798987 -62.8309264414336965 22.6253948295933007 -12.5041140587957003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410620755637504 2481410620755637504 1444252900 2015.5 25.5366952028500016 0.143422425785837998 -2.80245695259569016 0.100746475691066997 2.07824670847720006 0.150109977352999996 13.8448279999999997 9.71564623206364963 0.353182341662161003 1.18490167349535991 0.17136293896718599 0.12486034 0.0436658099999999993 -0.0603192199999999998 0.244239700000000004 -0.151036019999999993 0.345312699999999972 0.340986999999999985 -0.141168669999999996 -0.0470379299999999986 0.171385630000000011 141 0 139 2 1.6248914000000001 161.643005 0.305704527749705024 1.07123178299248001 31 false 1.34913679999999991 1.37327398354411989 0.0306984873388886984 -0.0618508759999999991 16 9 0.317641620000000013 0 16 false 138 1743.91683575854995 2.80414637627188013 621.906006 17.5845500000000001 13 465.479879974753999 8.36453851660601977 55.6492000000000004 18.6816369999999985 14 1938.93695512568002 19.1749768141865005 101.118089999999995 16.5430099999999989 1.37874509999999995 0 2.13862599999999992 1.09708600000000001 1.04154009999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.604661342920991 -62.8164602645196979 22.624350810488 -12.4818548699622998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410174079030528 2481410174079030528 2428618 2015.5 25.5506509138729996 8.24618923740895937 -2.81933766163291022 2.25139677299070984 \N \N \N \N \N \N \N -0.604146500000000031 \N \N \N \N \N \N \N \N \N 50 0 50 0 -1.00002170000000001 35.5908012 0 7.48977806629696005e-16 3 false 0.0153931069999999996 \N \N 0.0560349299999999967 6 4 4071.10989999999993 0 6 false 53 63.5393278421715024 1.23535927326701001 51.4338989 21.1807599999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.648054970374005 -62.8257545139681 22.6312723030963987 -12.5026776049455002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410590691200512 2481410590691200512 956330044 2015.5 25.5666633856170016 0.0627250391797026935 -2.80173270035958 0.0424334573645536034 0.796853864341874996 0.0646438509135322942 12.3268319999999996 -6.82028906368598964 0.170377612460346994 -2.21142352969033018 0.0849064948646339052 0.00401920100000000002 -0.0403535140000000001 0.123830850000000006 0.094733830000000005 -0.166815550000000007 0.164780129999999997 0.255880800000000019 -0.288117530000000011 -0.0231700729999999994 0.0191142369999999992 142 0 141 1 -2.04856630000000006 104.375 0 0 31 true 7.53027149999999956 1.53759188715441009 0.0138667359464942994 -0.136208090000000004 16 9 0.159872299999999995 0 16 false 141 6928.23745272092037 5.81604366015085983 1191.22998 16.0868099999999998 13 3243.85692822354986 19.3200760833959997 167.900830000000013 16.5737340000000017 15 5309.79733953501 16.9598630304162015 313.080199999999991 15.4492250000000002 1.23460759999999992 0 1.12450889999999992 0.486925129999999984 0.637583730000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.663187299074991 -62.8029966606096011 22.6531348980449998 -12.4921834866535004 100001 4977 4922.62012 5098.81006 0.333999991 0.195899993 0.521099985 0.172499999 0.101999998 0.273099989 200111 0.930093700000000023 0.886186000000000029 0.950756599999999952 0.478210030000000008 0.395654380000000028 0.560765700000000034 +1635721458409799680 Gaia DR2 2481457178201130496 2481457178201130496 880410730 2015.5 25.5263899433738999 0.228098279564174 -2.79391948491667019 0.158717483373892992 0.12643335789259999 0.268309286235021982 0.471222430000000025 7.59870721773858993 0.593633023575687035 -2.61996140177271997 0.270795947236299017 0.241469319999999987 -0.310418159999999999 -0.111754300000000001 0.0582360180000000005 -0.288275269999999972 0.122742989999999996 0.187787800000000005 -0.0303494389999999989 0.134560719999999995 0.0862946299999999972 105 0 104 1 2.13877080000000008 131.440994 0.267987712900200015 0.37143473197492699 31 false 0.695619169999999953 1.70818229875435001 0.0475963833054222005 0.0123071059999999999 12 8 0.523669599999999957 0 12 false 102 978.791962366203052 2.59571452287653992 377.079987 18.2116399999999992 12 534.36778729863704 12.9865292720789007 41.1478540000000024 18.5317879999999988 12 612.965335665267958 9.54282505230029088 64.2331099999999964 17.7933309999999985 1.17219300000000004 0 0.738456699999999966 0.320148470000000018 0.418308259999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.576307040869011 -62.8131401875692035 22.6177614623207006 -12.4701313688795992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457560453435904 2481457560453435904 1238262101 2015.5 25.5312688705705 13.9532682776579993 -2.78619568713464005 10.7298280826072006 \N \N \N \N \N \N \N 0.683099870000000053 \N \N \N \N \N \N \N \N \N 40 0 40 0 -0.945247350000000042 27.1061001 0 0 3 false 0.015412841 \N \N 0.168967410000000012 5 3 116121.589999999997 0 5 false 41 59.3447586858660969 1.79624992306325004 33.0381012 21.2549099999999989 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.578729333119014 -62.8040749047949021 22.6253107553161996 -12.4647398079211005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410762489892096 2481410762489892096 904168119 2015.5 25.5696780106130994 0.0991848519490519942 -2.77871384504258989 0.0601868428916216003 0.509036940325728993 0.0887664653391635056 5.73456399999999977 8.06322027297061084 0.264892203579232988 -13.5553082785339996 0.110614751747181994 -0.0703971099999999989 -0.106167139999999993 -0.329121470000000027 0.253766900000000017 -0.152201410000000009 0.383599369999999995 0.226477850000000008 -0.0298676980000000016 -0.123701249999999999 0.0391522870000000009 139 0 138 1 0.739344200000000007 144.720001 0.154975272973719991 0.658813594802341029 31 true 3.80744999999999978 1.57217390353237008 0.0201891962218852007 -0.153766740000000013 16 8 0.244398100000000007 0 16 false 137 4064.37693524206998 4.04027463905400008 1005.96997 16.6658800000000014 14 2093.22489490871021 18.3515480788515006 114.062579999999997 17.0493489999999994 15 2884.66953326884004 12.9962449178879993 221.961780000000005 16.1116799999999998 1.22476199999999991 0 0.937669749999999969 0.383468629999999977 0.554201100000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.647579731098006 -62.7809057193537967 22.6646674832148989 -12.4718820938118 100001 5269 4907.66016 5493.39014 0.0450000018 0.0170000009 0.248600006 0.0248000007 0.00789999962 0.108099997 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457899755520256 2481457899755520256 80255952 2015.5 25.4992877366744999 0.725991540312414974 -2.76767507311524996 0.617409158018317972 0.498870003876792978 0.815215711252716968 0.611948500000000006 -2.76987787922722006 1.96277701566307994 -2.25709759453447001 1.23704793049860995 0.308614580000000027 -0.181744700000000009 0.0505474500000000007 0.267253279999999982 -0.0801927449999999958 0.325018320000000027 0.163451370000000012 -0.196734999999999993 -0.190061320000000006 0.33850849999999999 109 0 106 3 1.38823389999999991 121.288002 0 0 31 false 0.052580412 2.08434929289356985 0.187863342063682992 -0.0358071920000000016 13 9 1.79684620000000006 0 13 false 101 143.298973705223005 1.84769705545778007 77.5554962 20.2977580000000017 9 102.941246286628001 17.9465342675635995 5.73599600000000009 20.3199140000000007 10 108.651751002775995 16.6259396065647991 6.53507399999999983 19.6718270000000004 1.47658420000000001 0 0.648086550000000039 0.022155761999999999 0.625930800000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.49823198416999 -62.8009520768723988 22.6018613157131014 -12.4357728033136006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481457766611979392 2481457766611979392 39039234 2015.5 25.5362634046162995 0.121066244897024 -2.75949038332670993 0.0826803689798249059 0.861899070872875983 0.113844139039784006 7.57086900000000007 13.3709862717059007 0.324322543047963985 -10.8793270694346997 0.143236114865935987 0.0321504319999999996 -0.0426199700000000001 -0.282869280000000001 0.284707500000000002 0.0502102859999999998 0.403480000000000005 0.247527639999999993 0.0221879430000000016 -0.0710641800000000046 0.0715377499999999972 113 0 111 2 0.992611350000000003 120.391998 0.188301207852343999 0.642444752766694993 31 true 2.66034479999999984 1.46140142789612004 0.0311819574965431015 -0.0856162099999999981 13 8 0.295123670000000005 0 14 false 110 2971.28477290176988 3.2796931129623399 905.963989 17.0060040000000008 11 1199.79927872409007 11.345079525849 105.755035000000007 17.6536159999999995 12 2565.74091513858002 15.9822696049726005 160.536709999999999 16.2388879999999993 1.26731039999999995 0 1.4147282000000001 0.647611599999999954 0.767116550000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.563651775255011 -62.7777969208512019 22.6401147030127987 -12.4417377522264001 100001 4705.3501 4450.5 4962 0.474999994 0.293199986 0.853999972 0.224999994 0.133000001 0.379999995 200111 0.653273459999999973 0.587442499999999979 0.730232699999999957 0.18847446000000001 0.137549969999999994 0.239398959999999994 +1635721458409799680 Gaia DR2 2481457800971716992 2481457800971716992 752507774 2015.5 25.562954502204601 0.0463109087186183987 -2.75309120501295013 0.0296673680443171987 1.28553505310060001 0.0430696649730284986 29.8478069999999995 -4.34014899890576977 0.110727517818177995 -4.29497864820318043 0.0583805377277986995 -0.0635983600000000066 0.120491269999999998 -0.428736400000000017 0.223519529999999994 -0.0365198740000000008 0.331581000000000015 0.108327514999999999 0.075708225000000004 -0.100878364999999998 0.0402949449999999987 140 0 140 0 -3.48276800000000009 84.9871979 0 1.72969015309883997e-15 31 true 19.4710619999999999 1.57096617808072003 0.0108363104132490999 -0.0735751540000000037 16 9 0.112415660000000001 0 16 false 139 16271.7673522459008 9.62874198786673929 1689.92004 15.1597790000000003 15 8151.71825203838034 23.4965527850085998 346.932529999999986 15.5732649999999992 15 11664.8382555160006 11.9493273781549991 976.192000000000007 14.5947230000000001 1.21784899999999996 0 0.978542299999999976 0.41348647999999999 0.565055850000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.61035412551999 -62.7606200297312 22.6679140311654983 -12.4455843664079993 100001 5364 5346.66992 5394.25 \N \N \N \N \N \N 200111 0.735812099999999969 0.727582630000000008 0.740590749999999964 0.403816100000000011 0.373368680000000008 0.434263530000000009 +1635721458409799680 Gaia DR2 2481458002834743296 2481458002834743296 98123785 2015.5 25.5394508718347986 0.53599101758133505 -2.74050818116083006 0.341261442190116004 1.19031194542106999 0.475408823687404003 2.50376490000000018 21.534634844084799 1.51292032967802004 2.93388581423204986 0.571866859090183977 -0.0325868870000000019 -0.220176230000000001 -0.599187429999999965 0.290839579999999986 0.0478217640000000027 0.31066450000000001 0.386551499999999992 0.321527479999999977 -0.0443440270000000011 -0.0983038499999999982 130 0 129 1 0.133956330000000012 125.447998 0 0 31 false 0.139756010000000014 1.27237231009165996 0.104783225348341003 -0.0820757700000000062 15 9 1.37884279999999992 0 15 false 129 289.796032428813021 1.47920501433813989 195.912994 19.5331340000000004 12 104.260240878608997 12.1927370650636995 8.55101200000000006 20.3060909999999986 11 379.683636239550992 22.2762707238245987 17.0443099999999994 18.3133659999999985 1.66994660000000006 0 1.99272540000000009 0.772956850000000029 1.21976850000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.552235529812009 -62.7592720390085006 22.650290944081199 -12.4252542697128003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481458071557152000 2481458071557152000 675080411 2015.5 25.5368741049049994 1.75459998027404995 -2.73535045586665015 1.4261382066441699 \N \N \N \N \N \N \N -0.470626199999999995 \N \N \N \N \N \N \N \N \N 78 0 76 2 1.02271580000000006 83.1547012 2.09708177957458997 1.00696956203221011 3 false 0.0312838100000000022 \N \N 0.0375072399999999972 9 6 5.16471530000000012 0 9 false 77 106.484267097477996 1.67713249711327994 63.4919014 20.6201520000000009 7 60.5145168407023988 15.9296163669020991 3.79886839999999992 20.8967400000000012 9 116.889443090558999 7.06493338574925023 16.5450170000000014 19.5924820000000004 1.66601099999999991 0 1.30425830000000009 0.276588439999999991 1.02766990000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.542342398311007 -62.7557058124858003 22.6497808570662009 -12.4195115735395003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459553318373376 2481459553318373376 11486391 2015.5 25.5441414923295014 0.0709039957502977936 -2.73097310313191022 0.0387146175095193987 0.637881391016966948 0.0500590275674911989 12.7425840000000008 19.7913021665221009 0.161242125848588991 0.0784815978139571935 0.074315940812222897 -0.468819170000000007 -0.0763204799999999961 -0.730221699999999974 0.479560729999999991 0.271403200000000011 0.609529100000000046 -0.356501220000000008 0.320245439999999992 -0.268481140000000007 -0.375848230000000005 127 127 125 2 4.37363429999999997 200.369003 0 0 31 true 403.02285999999998 1.55922469536118991 0.0127796460838399996 -0.114201469999999999 15 8 0.107440649999999999 0 15 false 121 353826.558525409026 88.7760215106801951 3985.61011 11.8163900000000002 14 155406.884546977992 319.861216393290988 485.85723999999999 12.3727119999999999 12 282117.724360316992 290.718130439982986 970.416699999999992 11.1358440000000005 1.23655099999999996 0 1.23686790000000002 0.556322100000000042 0.680545799999999979 79.822818635004495 1.64178818096136991 7 5000 3 0 NOT_AVAILABLE 151.552601586151013 -62.748649354506199 22.6583409873334993 -12.4181083082007007 100001 4888.68018 4769 5120 \N \N \N \N \N \N 200111 8.69620899999999963 7.92817500000000042 9.13815499999999936 38.9153560000000027 34.7199480000000023 43.1107640000000032 +1635721458409799680 Gaia DR2 2481459480303496960 2481459480303496960 931493796 2015.5 25.5497518039048011 0.373930255281774981 -2.73160826653928979 0.178724691844662997 0.856579179255940959 0.253342955026290007 3.38110519999999992 -2.47844720510097005 0.885091648139716969 -10.4039022191296997 0.277208133507027998 -0.388678100000000026 -0.0544995259999999995 -0.74940859999999998 0.34739819999999999 0.00483932529999999989 0.565286399999999967 0.123886949999999996 0.250488370000000016 -0.112096379999999995 -0.158737729999999994 118 0 118 0 0.254999430000000027 116.195999 0 0 31 false 0.612800000000000011 1.4391018774937101 0.0543962919565939007 -0.158044739999999989 14 8 0.841280000000000028 0 14 false 118 806.399788404079004 2.21234509250643985 364.5 18.421990000000001 14 254.008881187170999 8.84073500656650957 28.7316469999999988 19.3392659999999985 14 872.765236187037999 14.4172477016828005 60.5361899999999977 17.409676000000001 1.39728980000000003 0 1.92959020000000003 0.917276399999999992 1.01231380000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.564260744802993 -62.7468315495624012 22.6634386866751001 -12.4207584006221001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459308507948800 2481459308507948800 808980628 2015.5 25.5714169190115008 0.316894992098496975 -2.73392984808406014 0.200325924982378001 1.42733282791888993 0.260509911133037009 5.47899630000000037 -4.68798714594364974 0.892774343838189988 -15.4343038423625991 0.293310948220250001 -0.199168070000000003 -0.291924179999999978 -0.679999099999999967 0.335525330000000011 0.260729280000000008 0.552061299999999977 0.279036159999999978 0.462494220000000011 -0.068415180000000006 -0.0490618830000000006 118 0 115 3 0.756560499999999969 120.896004 0.321982467630427982 0.462106057812373017 31 false 0.58353759999999999 1.59480827633553002 0.0597431148817358995 -0.0725462600000000013 14 8 0.829121600000000014 0 14 false 116 803.242250627469957 2.12919683261964998 377.251007 18.4262489999999985 13 248.281958972674005 10.3981619139215997 23.8774850000000001 19.3640250000000016 13 821.571384619277978 13.2575161163836004 61.9702339999999978 17.4753070000000008 1.3319186999999999 0 1.88871769999999994 0.937776570000000032 0.950941099999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.609148602813008 -62.7396843818391972 22.6831744625321008 -12.4308694434899003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481410384532793472 2481410384532793472 318707809 2015.5 25.5796788525583985 0.0879252550028340046 -2.8047949788669202 0.0612533579482658005 0.672239997704538017 0.0908986062863001987 7.39549300000000009 6.64185667587539008 0.22256709784463799 2.63316286888080997 0.121658371657139996 0.0605110199999999987 -0.00205676420000000006 -0.0457787659999999985 0.217460870000000001 -0.213092460000000011 0.315847549999999977 0.20510964000000001 -0.193943379999999999 -0.132269649999999989 0.192307769999999989 142 0 142 0 0.392758400000000008 142.917999 0 0 31 true 3.41564200000000007 1.56939422155210995 0.0193291116162055999 -0.101399600000000006 16 9 0.204863610000000002 0 16 false 139 3387.58368994105012 3.72816537118277003 908.645996 16.8636400000000002 14 1625.98388413752991 16.6769478749613995 97.4988859999999988 17.3235969999999995 14 2480.53777588284993 11.9162591747068003 208.164140000000003 16.2755550000000007 1.2122272999999999 0 1.04804230000000009 0.459957119999999997 0.588085199999999975 \N \N 0 \N \N \N NOT_AVAILABLE 151.691756138021987 -62.8001927205669972 22.6643656396894002 -12.4998091104960007 100001 5159 5077.72998 5386.1499 0.129500002 0.0489999987 0.238999993 0.0719999969 0.0306000002 0.140499994 200111 0.70474939999999997 0.646560130000000011 0.727490659999999956 0.316975920000000022 0.228277389999999997 0.405674460000000014 +1635721458409799680 Gaia DR2 2481410487612008448 2481410487612008448 959980519 2015.5 25.5859152574583 0.0393070580498695032 -2.80359366078678995 0.0272689460938408991 1.98804708689379006 0.0407299668891700009 48.8104299999999967 27.2750170761461987 0.0953211523395346982 -6.29108626547346983 0.0635412162988655965 -0.0049243430000000003 0.161160379999999992 0.120146126000000006 0.0474086599999999983 -0.0459028449999999977 0.0528119059999999987 -0.0122034550000000002 -0.231552110000000005 -0.0574574949999999973 0.0988530299999999945 133 133 132 1 7.19643969999999999 278.556 0 0 31 true 384.017819999999972 1.61134564333736008 0.0101332836997598992 -0.13207677000000001 15 9 0.0612601639999999989 0 15 false 131 307739.125638260972 77.9828458108696054 3946.23999 11.9679090000000006 13 174045.624427854986 275.681337015955023 631.328999999999951 12.2497299999999996 14 194083.779875581997 296.836529107394028 653.840640000000008 11.5419459999999994 1.19623849999999998 0 0.707783700000000016 0.281821250000000023 0.425962449999999992 -7.79422414470468983 1.60140480930985007 6 6500 3.5 0 NOT_AVAILABLE 151.70293932085599 -62.7964364945420996 22.6707515747764994 -12.5009809327256995 100001 6297.5 6138 6880.7002 0.446999997 0.140000001 0.860099971 0.223000005 0.0983000025 0.426999986 200111 1.45942959999999999 1.22251519999999991 1.53626360000000006 3.01810050000000007 2.92818470000000008 3.10801630000000007 +1635721458409799680 Gaia DR2 2481412205598925696 2481412205598925696 1546990199 2015.5 25.5943273808309009 0.0626027422476850975 -2.77431166950777008 0.0324424985161863993 1.40254410022639009 0.0414328964135765032 33.8509799999999998 21.9786989099348986 0.150999554363955013 -12.2881093456424999 0.0719149085639047003 -0.481708939999999974 -0.263164640000000005 -0.753413299999999952 0.491066000000000003 0.159734669999999995 0.580776929999999969 -0.314182669999999997 0.345607429999999993 -0.327583400000000025 -0.332452030000000009 122 0 121 1 -0.91952526999999995 101.936996 0 0 31 false 27.2526800000000016 1.58525053430261997 0.0116649525613670008 -0.139910850000000003 14 8 0.164402999999999994 0 14 false 120 21677.5758887494012 10.6098127025056002 2043.16003 14.8483389999999993 11 11091.3879748797008 30.6867012636879011 361.439579999999978 15.2389229999999998 14 15339.5846272154995 25.4889749611424001 601.812559999999962 14.2973859999999995 1.2192771 0 0.94153690000000001 0.390583999999999987 0.550952899999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.692083232745006 -62.766380283432099 22.6897758339676017 -12.4768348373294007 100001 5389.5 5308.91016 6244.77979 0.0122999996 0 0.137600005 0.0107000005 0 0.0494999997 200111 0.769864439999999983 0.573425949999999962 0.793416499999999969 0.450523139999999989 0.420364830000000023 0.48068145000000001 +1635721458409799680 Gaia DR2 2481411926425698816 2481411926425698816 1592781078 2015.5 25.6170048903723 5.77220745388741019 -2.79480727252862016 2.23147753926670012 \N \N \N \N \N \N \N 0.467889400000000011 \N \N \N \N \N \N \N \N \N 54 0 54 0 2.02371670000000003 71.0307999 3.06883556950774006 0.578587485536652957 3 false 0.0146079820000000003 \N \N -0.0759962649999999934 8 6 18.0718689999999995 0 8 false 58 75.6756192224759019 2.11050419882203988 35.8567009 20.9909759999999999 5 54.5713178769869032 9.83939611453888041 5.54620599999999975 21.008977999999999 3 71.4205544476130996 1.18830052157186006 60.1031070000000014 20.1273610000000005 1.66489390000000004 0 0.881616599999999973 0.0180015559999999984 0.86361504 \N \N 0 \N \N \N NOT_AVAILABLE 151.756020578539989 -62.775171881708701 22.7036402986675014 -12.5042190220943006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481409697338026240 2481409697338026240 524111339 2015.5 25.6209061724516012 0.0232716949406711997 -2.81640892191289982 0.0157124042696115997 2.07710234413890982 0.0234342088757742012 88.6354800000000012 1.6367936965379899 0.0513547975722124031 5.38143356637780013 0.034080010267192401 -0.0303591580000000007 0.246611340000000012 -0.0444363430000000031 0.0491533999999999999 -0.0134229380000000006 0.0244084040000000016 -0.191886899999999999 -0.0763438699999999942 0.0630626100000000051 0.0443656560000000033 150 0 150 0 -1.478966 120.653 0 0 31 true 109.652079999999998 1.58502212397831999 0.00569762723611914011 -0.137597799999999992 17 9 0.0583430799999999986 0 17 false 148 87637.3865193006059 34.5073377427927994 2539.66992 13.3316420000000004 16 45438.7091950820031 63.8104917932530995 712.088399999999979 13.7078229999999994 16 60530.9801645268017 63.5355626295275968 952.710199999999986 12.8069749999999996 1.20918360000000003 0 0.900847430000000005 0.376180650000000005 0.524666799999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.784013683799003 -62.793001931675299 22.6992229603625013 -12.5257415260144001 100001 5481.66992 5431 6137.8501 0.0995000005 0.0199999996 0.224099994 0.0460000001 0.0113000004 0.1175 200111 1.00512090000000009 0.801699300000000004 1.0239621000000001 0.821829440000000022 0.797804529999999956 0.845854340000000038 +1635721458409799680 Gaia DR2 2481409693042700544 2481409693042700544 1036436457 2015.5 25.6209951256122999 0.337454199348140027 -2.80375598251968006 0.208323272533879 1.77447679412093007 0.326617392941932982 5.43289139999999993 16.6680645108861007 0.865567346144814009 5.69274054466768042 0.393778672055036028 -0.03505722 -0.109349935999999995 -0.288562600000000002 0.153851180000000004 -0.0615336079999999966 0.209550340000000002 0.073423505 0.0489487160000000032 0.046963412000000003 -0.0281832300000000001 150 0 150 0 1.05567910000000009 163.009003 0.122206583291556994 0.0269994835368679992 31 false 0.230569319999999994 1.2255345391238901 0.0707194712059446978 -0.137708130000000012 17 9 0.76922579999999996 0 17 false 150 419.672367631676991 2.05854157562245987 203.869003 19.1310900000000004 14 104.400183053790002 9.3093689142635796 11.2145279999999996 20.3046340000000001 14 556.462262679771015 14.1353798370346997 39.3666300000000007 17.8983300000000014 1.57471040000000007 0 2.40630340000000009 1.17354390000000008 1.23275950000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.772294136645996 -62.781539701833502 22.7040695534150991 -12.5140061461460004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411106087298688 2481411106087298688 1508624274 2015.5 25.6428639931672997 0.128800868593125006 -2.80493809147965001 0.0608174319459962032 1.11295253292990992 0.0894694867521236004 12.4394650000000002 21.9739725341227015 0.334432355343675991 -7.06065434109976042 0.115312712406355003 -0.399847540000000001 -0.297715159999999979 -0.66524386000000002 0.377410650000000014 0.156509129999999996 0.471052320000000024 -0.163013829999999998 0.308067949999999979 -0.137744709999999992 -0.31565169999999998 129 0 129 0 -0.132750730000000011 121.263 0 0 31 false 4.05763300000000005 1.53571019693524002 0.0200424190656503 -0.225367469999999986 15 7 0.321687200000000006 0 15 false 128 3701.92210398884981 3.44932622682062018 1073.22998 16.7672980000000003 15 1542.42221979856004 12.2601793928315992 125.807469999999995 17.3808800000000012 15 3107.43561887734995 10.7467259650548996 289.151859999999999 16.0309139999999992 1.25606580000000001 0 1.349966 0.613582599999999978 0.73638344 \N \N 0 \N \N \N NOT_AVAILABLE 151.816511947999004 -62.7732118946290996 22.7244348132103013 -12.5231298588798001 100001 4863.25977 4499 4967.56006 0.167300001 0.00400000019 0.372999996 0.104000002 0.000899999985 0.207699999 200111 0.51682360000000005 0.495348779999999989 0.603901149999999998 0.134614070000000002 0.112196879999999999 0.157031250000000011 +1635721458409799680 Gaia DR2 2481411926425700864 2481411926425700864 1505842485 2015.5 25.6209810416554014 0.225196809014208993 -2.79235605302105983 0.104374267546889998 1.19357437310076997 0.155144616101623001 7.69330200000000008 5.08982823844810994 0.576534446494654018 0.0338377745642748987 0.184553841215487013 -0.400255799999999995 -0.229316369999999992 -0.653924759999999994 0.363258330000000018 0.154652879999999993 0.470278350000000012 -0.0813620199999999932 0.272623329999999997 -0.0832099500000000047 -0.319197420000000009 131 0 130 1 15.4269339999999993 560.16803 0.776669789957147971 22.4198153571399992 31 false 1.27969679999999997 1.52943775197171994 0.0331523335690680973 -0.222809150000000011 15 7 0.541329740000000004 0 15 false 130 5566.06825079278042 9.18673630892179993 605.880981 16.3244949999999989 15 3131.58888219895016 27.1662846705420016 115.274829999999994 16.6119769999999995 15 3908.12431324281988 21.0146869145660986 185.971100000000007 15.7819990000000008 1.26475509999999991 0 0.829977999999999994 0.287481299999999995 0.542496700000000054 \N \N 0 \N \N \N NOT_AVAILABLE 151.761557231371995 -62.7712521707953996 22.7083461552896999 -12.5033982611134995 100001 5797 5579.72998 6092.6001 0.109999999 0.00800000038 0.184300005 0.0485000014 0.0046000001 0.0869000033 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411960785314816 2481411960785314816 1192987934 2015.5 25.6320676934466007 0.930801890445719038 -2.78627808393701004 0.481063768102497014 -0.527750447533183009 0.752485991189668968 -0.701342600000000038 -4.81898212114878977 2.5708207701241399 -0.963320422554169054 1.08525704640673992 -0.180343869999999989 -0.55433416000000002 -0.767424100000000053 0.374149620000000016 0.0700869600000000037 0.39768618 -0.00842278699999999929 0.54508829999999997 -0.314667819999999987 -0.150952279999999994 115 0 115 0 0.598332700000000051 118.414001 0.434335872926424005 0.115314018524937001 31 false 0.0792662650000000024 1.16711194159345011 0.184451806459389994 -0.136472729999999987 13 8 2.40451309999999996 0 13 false 114 183.93764000733799 1.57854846039775998 116.523003 20.0266899999999985 12 73.5971951316478936 7.28481644374367043 10.1028199999999995 20.684235000000001 11 204.39616595520701 10.3178270457781007 19.8100009999999997 18.9857389999999988 1.5113456999999999 0 1.69849589999999995 0.657545099999999993 1.04095080000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.777698203949001 -62.7610050132946995 22.7211826030045998 -12.5018132390831997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481411204873262592 2481411204873262592 1188533772 2015.5 25.6417771987538003 13.6812507826422998 -2.78256384823963021 10.5899172350260997 \N \N \N \N \N \N \N 0.717544199999999965 \N \N \N \N \N \N \N \N \N 48 0 48 0 0.693425799999999981 49.0252991 0 0 3 false 0.0305021010000000002 \N \N 0.218780770000000013 6 3 37524.5500000000029 0 6 false 47 80.8912337236995 1.75690821189019997 46.0418015 20.9186119999999995 4 34.4352706966415028 4.9219845227072998 6.99621699999999969 21.5088790000000003 6 87.0493909373052048 12.8013179495864993 6.8000335999999999 19.9125060000000005 1.50182719999999992 0 1.59637260000000003 0.590267199999999992 1.00610540000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.793336515725002 -62.7534815988206987 22.7318192173632987 -12.5019210120423008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412235663228288 2481412235663228288 508943078 2015.5 25.6089988909007999 1.27234838375360004 -2.76942035497391004 0.509855222676762976 \N \N \N \N \N \N \N -0.485096599999999989 \N \N \N \N \N \N \N \N \N 131 0 129 2 7.3800454000000002 279.165985 2.85465172967011016 9.39338055724862997 3 false 0.0589024870000000034 \N \N -0.229384769999999988 15 8 2.77721099999999987 0 15 false 130 273.311728282879017 2.13076936370881009 128.268997 19.5967200000000012 13 74.433297014047497 9.91499369178655954 7.50714539999999975 20.6719700000000017 11 387.426748982609979 11.6624195334775003 33.2201000000000022 18.2914470000000016 1.68986550000000002 0 2.38052369999999991 1.07525059999999995 1.30527299999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.716423004297013 -62.7556767008079035 22.7055755257839991 -12.4776696211041003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459308504801152 2481459308504801152 1320916307 2015.5 25.5756164708143992 0.147151393643208006 -2.74218493442189004 0.0796771589896421023 1.46101316521509994 0.110187016820616004 13.2593949999999996 -0.152039793057458988 0.384678126168426004 -7.62538791143505978 0.143113439209259008 -0.315308660000000018 -0.256935999999999998 -0.705669100000000049 0.388145830000000025 0.133172850000000009 0.531802100000000055 0.0280087660000000009 0.351133379999999995 -0.219249310000000003 -0.193450640000000007 123 0 123 0 2.04723480000000002 151.537994 0.146885981823823009 0.439513143544989993 31 false 2.94082430000000006 1.39334861534754006 0.0242444068885387005 -0.102019760000000001 14 8 0.367461199999999988 0 14 false 121 2958.9499746260999 4.22714210237695998 699.987976 17.0105199999999996 14 889.992709792275946 11.7757979081179993 75.578125 17.9779219999999995 14 3152.30514741323987 46.8499864991024992 67.2850799999999936 16.0153479999999995 1.36612580000000006 0 1.96257400000000004 0.967401500000000025 0.995172500000000015 \N \N 0 \N \N \N NOT_AVAILABLE 151.625136515023996 -62.745352389173398 22.6840635153644001 -12.4400883739122996 100001 4312.10986 3757 5209.83984 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459415879442944 2481459415879442944 788292022 2015.5 25.5865682488090016 0.0739207544619237961 -2.73077143475962014 0.0344891628000065023 0.569622072556969949 0.0432218625938253984 13.1790269999999996 6.73453369634150967 0.16521422395850599 -2.4960558550732399 0.0672421844319130019 -0.548993300000000017 -0.0810654759999999974 -0.780674700000000055 0.472713739999999993 0.0122716349999999995 0.615954000000000002 -0.264249559999999994 0.221858460000000007 -0.21768077999999999 -0.336240170000000005 123 0 122 1 -0.353670660000000026 111.028 0 0 31 false 24.6326220000000013 1.59417070567252006 0.0109866777830258007 -0.18960921 14 8 0.180074170000000006 0 14 false 121 20269.7527464289997 10.7990532896101001 1876.98999 14.9212450000000008 14 10963.7493163385006 30.8979087274765014 354.837919999999997 15.2514909999999997 14 13543.3937039616994 23.8330384325151989 568.261300000000006 14.432601 1.2090498999999999 0 0.818889599999999995 0.33024597 0.488643649999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.636060772299999 -62.7303558527977998 22.6987763577459987 -12.4334922931638001 100001 5806 5783.66992 5844.33008 0.744000018 0.587400019 0.97329998 0.370700002 0.300599992 0.47299999 200111 1.55102399999999996 1.53074409999999994 1.56302560000000001 2.46286080000000007 2.04256100000000007 2.88316060000000007 +1635721458409799680 Gaia DR2 2481412441821668736 2481412441821668736 321499462 2015.5 25.6222967803707 0.80569534571351098 -2.7373712368241998 0.404886166628709021 1.52538974887401002 0.643872268638824963 2.36908750000000001 8.85816680609882923 2.22715141702770003 -14.4064821051540992 0.729391197675690051 -0.175909399999999994 -0.502887670000000009 -0.768723799999999957 0.34385275999999998 0.0477661860000000021 0.41461435000000002 0.180654260000000011 0.535239099999999968 -0.224073589999999989 -0.134571899999999994 133 0 132 1 0.426273640000000009 133.225998 0 0 31 false 0.09839175 1.35967430579694004 0.128600155017830009 -0.14186333000000001 15 8 2.07852719999999991 0 15 false 132 218.219133563435008 1.63525869921158007 133.445999 19.8411329999999992 12 62.9271297879885978 8.6651822466185795 7.26206640000000014 20.8542939999999994 11 292.216258518311008 10.7681401300208996 27.1371150000000014 18.5976579999999991 1.62746210000000002 0 2.25663569999999991 1.01316070000000003 1.24347500000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.712599426946014 -62.7210284057803023 22.7302848389659005 -12.4527403806129993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412819778793600 2481412819778793600 1357678296 2015.5 25.6307274118300015 0.19971906001717199 -2.72839100072732998 0.0956162377144205017 2.28303498892646983 0.142244424279333009 16.0500849999999993 15.0740761426148993 0.521847672161152021 15.6235476626982006 0.174680874515722007 -0.362431049999999977 -0.303408679999999986 -0.743971799999999961 0.371261000000000008 0.175789030000000013 0.466920259999999976 -0.0942478600000000027 0.426040470000000004 -0.132070700000000013 -0.289602250000000006 143 0 142 1 1.90458170000000004 170.235001 0.282738243448593995 1.01906519728381006 31 false 1.46752719999999992 1.35386038408716991 0.0317079129734453014 -0.166056680000000012 16 8 0.496206370000000008 0 16 false 141 1717.52274766710002 2.75255319513980989 623.973999 17.601109000000001 15 466.257885239448001 12.2696701899265008 38.0008499999999998 18.679822999999999 15 1938.33139041545996 11.2277553039085998 172.637480000000011 16.5433500000000002 1.40003349999999993 0 2.13647270000000011 1.07871439999999996 1.05775829999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.720788048141998 -62.7093037422791966 22.7416836862762999 -12.4474807179436002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459514663474816 2481459514663474816 287669511 2015.5 25.5650049809351003 2.32533390411954022 -2.71933646173396015 1.40114494161101 \N \N \N \N \N \N \N -0.530906600000000006 \N \N \N \N \N \N \N \N \N 86 0 86 0 1.9835948000000001 108.151001 3.29492818286770994 1.83735793461157004 3 false 0.0195718000000000003 \N \N -0.133922650000000004 10 7 5.66647619999999996 0 10 false 86 92.7996213949590043 1.44970328074620003 64.0128021 20.7695000000000007 8 49.4382130025111977 12.1923293144557991 4.05486199999999997 21.1162320000000001 10 123.605602338424006 9.58526985859220915 12.8953705000000003 19.5318240000000003 1.86470390000000008 0 1.58440779999999992 0.346731200000000017 1.2376765999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.582894710700003 -62.7292282445826999 22.6825655097715995 -12.4149435785194004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481459377224284928 2481459377224284928 476008674 2015.5 25.6107531449024997 0.533791471511726012 -2.72179445385748986 0.286441015095763973 0.395191024656778023 0.420689045443089993 0.9393899 3.04158409593661982 1.50502100818692996 -0.0937937306760833062 0.464287712190528001 -0.191349689999999989 -0.484519540000000026 -0.75121389999999999 0.32351464000000002 0.127893150000000011 0.459287900000000027 0.234500349999999996 0.542762700000000042 -0.138465389999999994 -0.10059427 118 0 118 0 2.99616719999999992 163.438004 1.0543657740391601 3.14369643016814004 31 false 0.23668204000000001 1.41858108407558992 0.0828480567872773993 -0.0994237599999999999 14 8 1.40073859999999994 0 14 false 115 523.145341918459053 2.42928969030527009 215.348999 18.8918099999999995 11 249.58564975524601 9.39712321122643068 26.5597929999999991 19.3583399999999983 12 397.966854993882976 8.49206576047576966 46.8633730000000028 18.2623019999999983 1.23780610000000002 0 1.09603690000000009 0.466529850000000024 0.629507060000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.675305664153996 -62.7118992153700034 22.7251613937260011 -12.4340171718814005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481412785419058944 2481412785419058944 1675211493 2015.5 25.6488326495146985 0.431589612655774002 -2.71880525287856001 0.296631642967862985 1.19270097131972008 0.435012780003032007 2.74176069999999994 10.5609198888635998 1.12535568096815997 -0.314118008009529992 0.552492359264954991 0.0870911500000000061 -0.0417626460000000005 -0.416252759999999999 0.146284500000000012 -0.0839493500000000059 0.145299210000000012 0.164849859999999987 0.194921690000000009 0.0635147699999999982 0.0418714619999999982 151 0 151 0 0.0453626440000000006 146.108994 0 0 31 false 0.12789120000000001 1.19233013009436006 0.102322837319417007 -0.128557250000000012 17 9 1.00894930000000005 0 17 false 151 253.249026700379005 1.41277430977696006 179.257004 19.6794970000000013 15 97.687402818123104 11.3801908590251006 8.58398599999999945 20.3767910000000008 14 286.763156294084013 7.0159380351667302 40.8731039999999979 18.6181100000000015 1.5180731999999999 0 1.75868029999999997 0.697294239999999954 1.0613861 \N \N 0 \N \N \N NOT_AVAILABLE 151.747430025471999 -62.6928828701202008 22.7625146522999984 -12.4452062089604993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442132930986240 2481442132930986240 711253033 2015.5 25.0554186055446984 0.180154797617899987 -2.84858639770307986 0.126166985841096008 1.79729731849845997 0.207402369882634996 8.6657510000000002 -5.35058763392656989 0.460962576811554003 11.1797942107438004 0.233414952235355994 0.0653797500000000004 0.0708093939999999977 0.385912540000000026 -0.00770160930000000042 -0.184047760000000005 0.0356224029999999969 0.315754399999999991 -0.363471600000000006 0.0943478400000000023 0.0148462260000000006 134 0 132 2 1.79721320000000007 157.080994 0.486612539087576013 2.01319903747147988 31 false 0.897067550000000047 1.29236882587688995 0.0402286135595330968 0.0410594420000000015 15 9 0.417184679999999974 0 15 false 125 1299.36003068631999 2.8944015792674298 448.921997 17.9040409999999994 13 408.855963571454026 25.9027136385372998 15.7842900000000004 18.8224620000000016 11 1403.83922615840993 13.0848350341706006 107.287499999999994 16.8936269999999986 1.39506770000000002 0 1.92883490000000002 0.918420800000000037 1.01041409999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.689111797538004 -63.0608083308840008 22.1493437510305995 -12.3477306697401996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442506593979904 2481442506593979904 361555044 2015.5 25.0531642471049985 0.849679854305693039 -2.83944568869554992 0.567212214218973054 0.216755136536420007 0.907503220396438048 0.238847790000000004 5.61757380440885967 1.93147874624359006 -2.95916783889901014 1.15220898446166009 -0.115147529999999998 0.254138299999999984 0.202153159999999998 -0.00280496079999999984 -0.314829079999999983 0.0925408300000000045 0.259904100000000027 -0.248959540000000007 -0.0883046900000000051 0.111401059999999996 119 0 119 0 -0.105329140000000002 111.758003 0 0 31 false 0.0445869159999999973 1.2706949264812899 0.217132184839954001 0.097966789999999998 14 10 1.71745309999999995 0 14 false 119 138.184448136485003 1.35383511907126008 102.069 20.337216999999999 12 46.914350931641998 9.99696053496496972 4.69286159999999963 21.1731240000000014 10 165.745914931691004 10.0612147851350997 16.4737469999999995 19.2133119999999984 1.53895950000000004 0 1.9598122 0.835906999999999956 1.12390520000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.676220169599986 -63.0534257638434994 22.1506529988797993 -12.3384040208496994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442270369939456 2481442270369939456 1028659238 2015.5 25.0997804295652998 0.0363872854403265028 -2.84831559474028984 0.030531184641034801 1.57655482104222 0.0438475683645302011 35.9553530000000023 1.78491647290065991 0.0825600046141482941 -3.60134452053469989 0.0717298716748766968 0.0371519920000000017 0.283471169999999995 0.0449038329999999972 0.00632652799999999967 -0.346891159999999976 0.0227643439999999989 -0.0298121959999999991 -0.0995080839999999966 0.00671671900000000033 0.312387199999999976 183 183 176 7 13.5192599999999992 561.182983 0.0546435090232689977 1.18495530152147999 31 true 164.73997 1.69689493742231989 0.0103070152169833992 -0.024738373000000001 21 10 0.0558186000000000029 0 23 false 178 673061.828241292969 621.340666177679054 1083.23999 11.1182280000000002 19 419576.635006623983 720.547035417714028 582.302900000000022 11.2943599999999993 19 373003.779697382008 372.870897929725004 1000.35640000000001 10.8326370000000001 1.17757439999999991 0 0.461723329999999987 0.176132199999999989 0.285591130000000026 -17.0548635067134988 9.29794954551682018 5 6750 3.5 0.25 NOT_AVAILABLE 150.777786618660002 -63.042147446636001 22.1916058678963992 -12.3638204086588992 100001 7204.8501 7077 7344.85986 \N \N \N \N \N \N 200111 2.08591579999999999 2.00714730000000019 2.16196300000000008 10.5630179999999996 10.1446729999999992 10.9813620000000007 +1635721458409799680 Gaia DR2 2481443262507076864 2481443262507076864 456905230 2015.5 25.0430423914339997 0.368104759517498992 -2.82430376011225981 0.260590755496765025 1.13220096961283989 0.41425087181869602 2.7331287999999998 2.44778882424246014 0.846593581792723038 -52.1778461751411982 0.47691387509660299 0.0147495839999999996 0.279607600000000012 0.204717310000000013 0.0579881000000000008 -0.259098349999999977 0.144623799999999997 0.398559500000000011 -0.257925660000000001 -0.0562147419999999981 0.129428459999999995 161 0 160 1 1.57423510000000011 183.654999 0 0 31 false 0.17466103999999999 1.36872695872041006 0.0834701905314090969 0.0544814699999999971 18 10 0.755821999999999994 0 18 false 159 361.085674789319 1.72439932567115006 209.397995 19.2943399999999983 15 138.907651844881002 11.5087952723966005 12.0696949999999994 19.9945740000000001 13 357.967208547531015 9.82649995933667952 36.4287599999999969 18.3773119999999999 1.37605810000000006 0 1.61726189999999992 0.700233459999999974 0.917028399999999966 \N \N 0 \N \N \N NOT_AVAILABLE 150.642071457697995 -63.0438376856112015 22.1467519374452984 -12.3206007765100995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443296866816768 2481443296866816768 1234230556 2015.5 25.0547673911739999 0.150999892882307002 -2.82099160878540012 0.113785790098462999 2.57724542536539003 0.174103918554888992 14.8029150000000005 24.6357760777586989 0.356835815982764981 -19.6232966966145987 0.211406376617245012 0.0231607500000000008 0.237833509999999998 0.228384100000000007 -0.00572661260000000005 -0.169263959999999991 -0.00850640299999999919 0.350425719999999996 -0.222643509999999989 0.081755750000000002 0.00246536360000000013 141 0 140 1 0.568798840000000028 143.867004 0.133907648023449011 0.148558584079092004 31 false 1.08251940000000002 1.30429456286661005 0.0355032470089666 0.0824444740000000037 16 10 0.319200460000000019 0 16 false 140 1318.3386394393001 2.30832848500183996 571.122986 17.8882979999999989 15 259.09771514529001 7.77149612052364969 33.3394899999999978 19.317730000000001 15 1685.62839903911004 10.6201747285882 158.719470000000001 16.6950150000000015 1.47513399999999995 0 2.62271499999999991 1.42943189999999998 1.19328309999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.662550557557012 -63.0359694793829988 22.1591440782640987 -12.3218418287826008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443576040083712 2481443576040083712 149609893 2015.5 25.0415155003629017 1.40622645452760997 -2.80277140352930987 1.41176761479066992 \N \N \N \N \N \N \N 0.244294790000000012 \N \N \N \N \N \N \N \N \N 90 0 90 0 -0.599780100000000038 76.7925034 0 0 3 false 0.0193584670000000007 \N \N 0.12486999 11 8 5.89890429999999988 0 11 false 94 95.3993200888058936 1.41980345528842 67.1919022 20.7395020000000017 6 48.6914538503008032 10.1853956043399005 4.78051660000000034 21.1327570000000016 9 62.1948748231459021 8.95702718754835914 6.94369600000000009 20.2775329999999983 1.16233870000000006 0 0.855224600000000001 0.393255230000000011 0.461969379999999985 \N \N 0 \N \N \N NOT_AVAILABLE 150.619342690417 -63.024870760916599 22.1534305308930008 -12.3000242828584998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443468665520512 2481443468665520512 1098320668 2015.5 25.0664766607022003 0.396005795338857991 -2.79537111217454992 0.294622917761109993 3.02232828479227988 0.457786055654398005 6.60205399999999987 13.2114744751713005 0.940773913245052995 -12.6688922845708003 0.522516011045557005 0.0687009840000000066 0.18317984000000001 0.148631320000000011 0.0795689200000000013 -0.260308299999999992 0.130577100000000002 0.342109949999999996 -0.20889569999999999 0.0228145200000000013 0.109661649999999999 159 0 158 1 1.96340899999999996 189.210999 1.09424145054823008 1.89299764803434001 31 false 0.135435150000000004 1.6836918270472101 0.091549257175321197 0.0781887799999999994 18 10 0.834270500000000026 0 18 false 158 370.57529409796399 1.77701060527967991 208.539001 19.2661739999999995 13 297.822869608669976 12.5751354918731995 23.6834719999999983 19.1664920000000016 12 156.614238312139008 9.77880256649124924 16.0156859999999988 19.2748409999999986 1.22630170000000005 0 -0.108348849999999997 -0.0996818540000000003 -0.0086669920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.662593993956989 -63.0078058972734993 22.1799423311477 -12.3023408238819005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442644031789312 2481442644031789312 139443906 2015.5 25.0816148354840998 1.20325041012059009 -2.81698746702684 1.58607937133962995 \N \N \N \N \N \N \N 0.203475249999999996 \N \N \N \N \N \N \N \N \N 106 0 103 3 2.23071980000000014 131.850998 3.33555455042986981 3.7040751392320499 3 false 0.0192732330000000007 \N \N 0.155401590000000006 13 8 5.28455799999999964 0 13 false 104 119.090711176010998 1.64442837997636992 72.4207001 20.4986700000000006 9 79.5973415475622943 7.84291126200541999 10.1489530000000006 20.5991420000000005 10 72.8859563528569936 9.06848491681694924 8.03728000000000087 20.1053099999999993 1.28039619999999998 0 0.493831630000000021 0.100471500000000005 0.393360140000000025 \N \N 0 \N \N \N NOT_AVAILABLE 150.712679020798987 -63.0211989219291979 22.1861683225771991 -12.3280095267604999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442575312308608 2481442575312308608 1339380324 2015.5 25.0955578738177998 0.782933683159355964 -2.8246711597148999 0.566665717754795017 0.732130399717757951 0.886556698232414009 0.825813400000000031 -1.8061656672425499 1.99287961681815995 -6.79208125497252002 1.69102612794877993 -0.0412160300000000007 0.19432756000000001 0.170572859999999993 -0.0177045899999999992 -0.262670870000000001 0.0258402749999999994 -0.0509271849999999998 -0.313847780000000021 -0.194184290000000009 0.31300306 133 0 133 0 1.16728450000000006 146.867996 1.45025301146705998 0.717766342957510961 31 false 0.0391410329999999987 1.22930542073587001 0.213335003433497011 0.122672829999999997 15 9 1.89551910000000001 0 15 false 132 152.183657697428004 1.18938631092560998 127.950996 20.2324449999999985 13 59.998465099887099 8.00806579747682079 7.49225429999999992 20.9060379999999988 13 169.507222325533007 10.1951724768241991 16.6262250000000016 19.1889499999999984 1.50808370000000003 0 1.71708869999999991 0.673593499999999956 1.04349519999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.747639288291992 -63.022400634417302 22.1965184818028014 -12.3402871082224994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466081668627712 2481466081668627712 640781528 2015.5 25.111031467918199 0.203623559437664997 -2.81134994980958997 0.150571936934987993 3.26381038391898981 0.234959850284650995 13.8909280000000006 75.0441469318684966 0.490234093203752996 34.6521072428843979 0.286499542930842011 0.025748146999999999 0.163720580000000004 0.153414489999999987 0.0589986600000000014 -0.327976600000000007 0.146461829999999987 0.277403620000000017 -0.235869600000000013 -0.0396095740000000016 0.155397439999999998 168 0 165 3 1.38671060000000002 185.373993 0.201395266929578987 0.18252804092279501 31 false 0.491659080000000026 1.21355788758082994 0.0506799790849652987 0.0300241730000000012 19 10 0.438601999999999992 0 19 true 167 780.405001298404954 1.77882880331243998 438.717987 18.4575649999999989 17 162.905846109820004 13.3973222045122 12.1595820000000003 19.8215469999999989 15 1020.94380224902 13.2195739368517007 77.2297059999999931 17.2394159999999985 1.51696830000000005 0 2.58213040000000005 1.3639812 1.21814920000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.766401425917991 -63.0038582555733981 22.2162518952635004 -12.3336030104062999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443399946037376 2481443399946037376 861939120 2015.5 25.0690558318548007 0.943371982621857952 -2.80792372981311011 0.581637002506023015 0.825634522282858052 0.968431931473676011 0.852547799999999967 20.9137039424907982 2.07737667520034996 -6.96506217237951031 1.24369491123691001 -0.204212009999999999 0.35304907000000002 0.122601694999999997 -0.0224587200000000015 -0.384221319999999977 0.118838979999999997 0.244029099999999999 -0.229615999999999987 -0.164864719999999992 0.136406749999999993 117 0 110 7 0.0897715399999999969 105.636002 0 0 31 false 0.0456022700000000003 1.56327627660573998 0.220924746321987997 0.0390165099999999973 13 10 1.84282459999999992 0 14 false 111 145.915479504074995 1.15252266835268991 126.605003 20.2781120000000001 10 49.2582116663929028 11.3173910739270998 4.35243499999999983 21.1201919999999994 10 136.316147843939007 4.82712804425309994 28.2395969999999998 19.4255519999999997 1.27179350000000002 0 1.6946391999999999 0.842079160000000049 0.852560039999999963 \N \N 0 \N \N \N NOT_AVAILABLE 150.679231940562005 -63.0181596538995024 22.1776550297621 -12.3149586861781994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466146094041728 2481466146094041728 1241565082 2015.5 25.0945699910945983 0.922875173347756039 -2.79815415881944007 0.60048974225938101 2.4619287944052699 0.962235259314444979 2.55855180000000004 14.1917775194057008 2.22644040154525991 1.07432328048298009 1.21759470479081999 -0.11606234 0.152015609999999995 0.065653939999999994 0.061006427000000002 -0.30733729999999998 0.176447099999999996 0.251169150000000008 -0.254738569999999998 -0.115555000000000005 0.0857814199999999971 141 0 141 0 2.54490779999999983 181.628006 1.42977421135862004 0.704861123936204037 31 false 0.0322094519999999995 1.1690691783726499 0.191258075604370997 0.0614738099999999968 16 10 1.9667832999999999 0 17 false 142 132.670810509874997 1.2333782742886501 107.567001 20.3814279999999997 9 48.5377924662917977 11.0994549704604992 4.37298869999999962 21.1361890000000017 14 176.594958894258014 4.83333459507829044 36.5368769999999969 19.1444739999999989 1.69692749999999992 0 1.99171450000000005 0.754760740000000041 1.23695369999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.721377522299008 -62.9986924203673979 22.2055880817495996 -12.3152747734329004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466146094059392 2481466146094059392 946295524 2015.5 25.1069036619392989 1.10112666528493008 -2.80453866918771988 0.706991855585101026 0.72492651104860395 1.1186487930909399 0.648037599999999991 6.20495388996245989 2.69840797478445005 -7.85592762141900991 2.09948351431933 -0.233315660000000008 0.228648860000000009 0.0744177800000000028 -0.0235508500000000016 -0.383618999999999988 0.0473070500000000033 -0.0240011569999999987 -0.238739570000000012 -0.197570069999999987 0.194210539999999987 115 0 115 0 -1.32449890000000003 90.9123993 0 0 31 false 0.0291317500000000014 1.35795927448243003 0.284511313682336009 0.0432968099999999981 13 9 2.4345216999999999 0 13 false 115 114.447450124018005 1.49457934167485007 76.5749969 20.5418510000000012 8 47.972780353763099 8.54395747700690045 5.6148195000000003 21.1489009999999986 9 150.458365588074997 4.63080114009410959 32.4907839999999979 19.3183779999999992 1.73381889999999994 0 1.83052250000000005 0.60704994000000001 1.22347260000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.751901572681987 -62.9993790767538968 22.2148995651637016 -12.3257515119630998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443709183569408 2481443709183569408 1308269709 2015.5 25.057255466934599 0.127122545657168989 -2.78263554289654014 0.0872832785762768931 5.49088403493840982 0.146395928246417006 37.507080000000002 52.3148828684351983 0.251872973097265973 -32.3076992241785987 0.160654796353400992 0.0432248260000000009 0.443665919999999991 0.105196713999999997 0.0979723259999999985 -0.213959919999999998 0.154660450000000005 0.285636999999999974 -0.156409400000000004 -0.0106157930000000001 0.201300160000000006 151 0 150 1 3.97823480000000007 222.955994 0.474287098254157991 4.36139748403455041 31 false 1.65770670000000009 1.22572473653510006 0.0267225786926320007 0.0149898540000000004 17 10 0.228561760000000003 0 17 false 148 2803.81858780715993 3.14545575849084003 891.387024 17.0689899999999994 14 497.989558942507983 7.69451646000024958 64.7200600000000037 18.6083369999999988 15 3677.97431983906017 13.8263880201321996 266.011230000000012 15.8478984999999994 1.48938449999999989 0 2.76043899999999987 1.53934670000000007 1.22109219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.63250138837401 -63.0000322024974011 22.1759872193603016 -12.2871063164314993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443782198425344 2481443782198425344 938111540 2015.5 25.0557967051488006 0.462922611905713988 -2.76985599357028001 0.394997670542935997 1.29712828863276997 0.575280663139899007 2.25477479999999986 3.27754990065293006 1.28388489598924993 -9.77872832321570939 0.722162159991385999 0.141574339999999993 0.0440306700000000009 0.274672399999999983 0.186478640000000001 -0.500472800000000051 0.430713500000000027 0.595478599999999969 -0.474555600000000022 -0.352512500000000006 0.388011500000000009 148 0 146 2 0.60505679999999995 150.709 0.261724405973594976 0.0659846441544943013 31 false 0.119616879999999995 1.31912123518485003 0.102615917556869995 0.0935530440000000019 17 9 1.20587599999999995 0 17 false 146 286.705557184453028 1.39982673464946994 204.815002 19.5447750000000013 12 72.5316167447269038 16.0799584188000999 4.51068449999999999 20.7000700000000002 14 365.255492432377991 8.9261514769600403 40.919704000000003 18.3554290000000009 1.52695720000000001 0 2.3446406999999998 1.15529440000000005 1.18934629999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.617926208964008 -62.9890032027901015 22.1794243811880989 -12.2746901857598996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470239196968192 2481470239196968192 1664111330 2015.5 25.0601005725077997 0.318159063094950012 -2.73946309010436018 0.215869587523660006 1.94816619723734008 0.350243005470006974 5.56232740000000003 -5.79100632829325956 0.822897312008909032 -21.6069148497240988 0.391397681693646027 0.0483943339999999972 0.0666478399999999999 0.29025757000000002 0.0514185799999999985 -0.205848859999999995 0.121239126000000003 0.371443499999999982 -0.343614069999999994 0.0172488470000000012 0.0494215000000000002 150 0 150 0 1.69665650000000001 175.098007 0.478670341366417007 0.524373179614836982 31 false 0.253707400000000027 1.44885776925966003 0.0684078328607860969 0.0208106119999999992 17 9 0.735537499999999955 0 18 false 151 484.851899571371973 1.66737313915541008 290.787994 18.974342 12 88.2179480271529997 10.2853955567340005 8.57701100000000061 20.4874949999999991 12 631.753192973858972 22.8180034944012995 27.6866109999999992 17.7605509999999995 1.48493000000000008 0 2.72694400000000003 1.51315310000000003 1.21379090000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.598856923820989 -62.959556155587002 22.1949825982459998 -12.2480243243033993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467009381325312 2481467009381325312 531091173 2015.5 25.0868136393179988 5.39083425942961991 -2.77451604095772986 8.2336920830870497 \N \N \N \N \N \N \N -0.80705300000000002 \N \N \N \N \N \N \N \N \N 43 0 43 0 0.941011900000000012 46.0461998 0 0 3 false 0.0144790140000000001 \N \N -0.0832715259999999985 5 4 603.739259999999945 0 5 false 43 72.2666746124505011 2.11794487475623017 34.1211014 21.0410210000000006 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.684249559507009 -62.9804041736435991 22.2071379134470988 -12.2904456268356004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466936366829568 2481466936366829568 490959250 2015.5 25.1062742454645011 0.897916584325358036 -2.78174436195260988 0.601618144198928007 0.0757913945059042055 0.922019494933838946 0.0822015100000000054 4.72328318038143991 2.49887182172310007 -0.234718554528571988 1.95633175595518005 -0.142263670000000009 0.0275427720000000001 0.330707939999999978 -0.159495400000000009 -0.206145610000000007 -0.0780678499999999942 0.0511942170000000002 -0.364614199999999999 -0.119952574000000006 0.029576617999999999 118 0 116 2 -0.376806299999999983 104.836998 0 0 31 false 0.0385995729999999981 1.54413799455305001 0.227779889496387999 0.0959949799999999936 14 9 2.22662160000000009 0 14 false 116 136.535498966538 1.28576832860375001 106.190002 20.3502520000000011 9 100.994565676662006 6.69826758096088959 15.0777140000000003 20.340643 12 106.420891633264006 6.54429174247408962 16.2616370000000003 19.6943529999999996 1.51913209999999999 0 0.646289800000000025 -0.0096092220000000006 0.655899050000000039 \N \N 0 \N \N \N NOT_AVAILABLE 150.729778816336989 -62.9789088952363016 22.2229031156316985 -12.3043311274005998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467284259468800 2481467284259468800 1690714291 2015.5 25.073770224661601 0.123942921659059999 -2.75537206745408003 0.0941125399808010049 0.507554145194497042 0.141372419506111013 3.59019200000000005 3.41594683084277007 0.28896608761519299 -2.05506100744642017 0.172017000985508012 0.120743199999999995 0.233464959999999999 0.137955999999999995 0.124006749999999999 -0.18834519999999999 0.180208950000000007 0.359650000000000025 -0.224854770000000009 -0.0167503770000000003 0.168532979999999999 167 0 167 0 0.000280454169999999994 161.339005 0 0 31 true 1.32254990000000006 1.5730502185942199 0.0290268023884308994 0.0439053959999999993 19 10 0.26160319999999998 0 19 false 167 1613.89247771647001 2.43980081004109017 661.484985 17.6686779999999999 18 646.248197206354007 9.92596995336240084 65.1068039999999968 18.3253899999999987 18 1402.46134661214001 9.29277603880839997 150.919530000000009 16.8946930000000002 1.26942130000000009 0 1.43069650000000004 0.656711599999999951 0.773984899999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.640690113161014 -62.9683847338420009 22.2019678274014005 -12.2678468279480999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467348683577472 2481467348683577472 321023808 2015.5 25.0993206645050009 0.397179283998160992 -2.74716011072725985 0.240563900060652008 0.734520507543723 0.416339490733295015 1.76423449999999993 12.1094113564015 0.959099949929292039 -17.8699312821127982 0.412717126562219982 -0.103402294000000006 0.165028449999999993 0.134096670000000001 0.0352744499999999989 -0.344555649999999991 0.152830469999999996 0.354472339999999997 -0.249600660000000002 -0.0281246300000000012 0.0275914129999999987 136 0 136 0 4.21880800000000011 210.923004 0.708357276651180978 1.11710230769210006 31 false 0.221661639999999993 1.44371723272710994 0.0812719253667705949 -0.0631121840000000017 16 9 0.847883339999999985 0 16 false 135 469.562362914778987 1.81926676687873989 258.105011 19.009132000000001 13 152.767718633853008 4.91979402559498968 31.0516499999999986 19.8913100000000007 12 479.881100184173988 13.5103031232061994 35.5196380000000005 18.0590860000000006 1.3473158999999999 0 1.83222390000000002 0.882177349999999971 0.950046539999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.684285580513006 -62.9503307732911992 22.2293438431886017 -12.2696222534633996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467726640701824 2481467726640701824 1470254283 2015.5 25.1143822476557013 0.536168325788582978 -2.74181431520896979 0.409911047416206986 2.51658438400354978 0.700483727521191035 3.59263779999999988 -22.5890045547568015 1.34977689910200005 -5.34383325950039989 0.696898216747554033 0.219161149999999999 -0.0544847799999999965 0.140014680000000002 0.0419691950000000008 -0.393539299999999981 0.110941590000000007 0.13969144 -0.187479730000000011 0.140330270000000007 0.161387470000000005 132 0 132 0 16.0199759999999998 589.77002 3.00110653702425001 28.1350536500926012 31 false 0.0870081199999999944 1.3873795909925899 0.119829001192136006 0.0512400800000000003 15 8 1.19656089999999993 0 15 false 132 730.812361038516997 5.1934608794388204 140.718002 18.5288499999999985 15 196.962037391863987 10.5521319029372993 18.665614999999999 19.6154329999999995 15 1005.22611981279999 18.035435224067399 55.7361700000000013 17.256260000000001 1.64500249999999992 0 2.35917280000000007 1.08658220000000005 1.27259060000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.709498853138001 -62.9392227426432029 22.2456722893142995 -12.2701984435441993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470303621321984 2481470303621321984 556695403 2015.5 25.0534586445713998 0.903609070172688988 -2.73220069514484987 0.587201748479194041 0.501490471258849047 0.966419708410993006 0.518915829999999967 10.8746618279279001 2.49682147035957014 4.0392902658317702 1.73192535844272011 -0.0652639099999999944 0.0601927270000000014 0.267471400000000026 0.0168437770000000007 -0.169823959999999996 0.038229550000000001 0.00701546700000000006 -0.404656139999999998 -0.232177810000000012 0.216524440000000012 121 0 117 4 0.618349099999999985 120.808998 0 0 31 false 0.0374009800000000003 1.46491088589634 0.218477334710492993 0.0633800800000000053 14 8 2.26417299999999999 0 14 false 118 134.389947942137013 1.7152977348729499 78.3479004 20.3674490000000006 10 49.333794510132698 12.7120157027387997 3.88087900000000019 21.1185259999999992 10 157.608465231169987 11.7018590430652996 13.4686690000000002 19.2679709999999993 1.53986420000000002 0 1.85055539999999996 0.751077650000000041 1.09947780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.578964747972009 -62.9556878528293993 22.1914123613156988 -12.2388273831465 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470441060040320 2481470441060040320 1059340879 2015.5 25.0686556712220998 0.141642481102582013 -2.72106299979822008 0.0967744407103480059 0.223961072870080991 0.154417667682632986 1.45035910000000001 2.89989729612398994 0.375510828866715995 -5.70175262484825041 0.184481016088568012 0.0721065550000000027 0.051394585999999999 0.169145750000000011 0.0800579339999999973 -0.172591309999999998 0.140177040000000003 0.289844749999999984 -0.294103320000000001 0.00190048429999999991 0.0782587099999999952 140 0 139 1 1.02470820000000007 150.763 0.0195727332552513983 0.00380970994427848016 31 false 1.31142819999999993 1.57527742025784989 0.0309781182965042992 -0.0234604550000000016 16 9 0.336441900000000016 0 16 false 139 1582.85516105206989 2.58271658546384009 612.864014 17.6897620000000018 14 863.803044012277951 14.8133679924275992 58.3123999999999967 18.010351 15 1085.73748204077992 15.1607388987833005 71.615074000000007 17.1726069999999993 1.23166069999999994 0 0.837743759999999948 0.320589069999999976 0.517154699999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.599224670789994 -62.9392692386493025 22.2100527229325984 -12.2340712640844007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470372340561536 2481470372340561536 384973995 2015.5 25.0788635438728988 0.203566197164353008 -2.72581553949463995 0.188053461924926002 1.36493643494452011 0.234039433505850991 5.83207900000000024 13.1577296932116994 0.630479236722343961 -1.17922479919352008 0.325054102895904973 0.509392599999999973 -0.248158679999999993 0.500410600000000039 0.479664399999999991 -0.486428470000000002 0.617360200000000026 0.705316100000000001 -0.589340569999999953 -0.415985969999999983 0.577165900000000009 126 0 123 3 3.07142690000000007 170.897995 0.552137418437632976 2.82119317362537014 31 false 0.897979900000000053 1.33732327782455007 0.0452691492116020014 0.0462100579999999983 14 8 0.617394099999999946 0 14 false 123 1530.5798846585401 2.57507696274453979 594.382019 17.7262249999999995 12 434.090461633691007 14.1586836521157995 30.6589570000000009 18.7574369999999995 10 1714.61630500592992 20.0433192204150004 85.5455249999999978 16.6765019999999993 1.40385139999999997 0 2.08093450000000013 1.03121189999999996 1.04972270000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.623951418382006 -62.9393754177870974 22.2179583797693994 -12.2422481195727997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467834015282176 2481467834015282176 1418560974 2015.5 25.1126005886940007 0.0540028861463801024 -2.71746558466342991 0.037077896372672503 0.357257917718419027 0.0616645909577865983 5.7935667000000004 2.44668326449715012 0.150622767029891996 -6.64290327881732967 0.0769489599826088944 0.0448625569999999974 -0.0323372599999999996 0.268602220000000003 -0.052067490000000001 -0.154043750000000007 -0.00679861199999999988 0.169438329999999998 -0.343492950000000019 0.105355509999999999 -0.0190480760000000006 142 0 142 0 -0.964745599999999981 121.028 0 0 31 true 10.4843910000000005 1.61485270128281 0.0130241422462611996 -0.0378321900000000017 16 9 0.143032700000000013 0 16 false 142 9471.0977824176698 7.13149430742711044 1328.06995 15.7473650000000003 15 5050.36710140108971 37.116177011823801 136.069170000000014 16.0930800000000005 15 6383.20084508628042 11.2058287023684997 569.632200000000012 15.2493239999999997 1.2072061999999999 0 0.843756700000000026 0.345715519999999998 0.498041149999999988 \N \N 0 \N \N \N NOT_AVAILABLE 150.683734529421997 -62.9178091245315017 22.2531631578712989 -12.2469080092590996 100001 5765 5718 5795 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481430450619960192 2481430450619960192 437348893 2015.5 25.1218764649173991 0.74643016459176903 -2.86343249971177016 0.519721117093137952 -0.284731882580592011 0.838524179703455053 -0.339563100000000007 15.6559249465713002 1.88231157910525004 -5.94112060270170961 1.22834715597267996 -0.103470690000000004 0.189309370000000005 0.15821534000000001 -0.00281770480000000014 -0.404969399999999979 0.14348865999999999 0.225990360000000001 -0.305315229999999993 -0.202010720000000005 0.212770390000000004 135 0 134 1 0.0330567319999999984 128.863998 0 0 31 false 0.0487397349999999993 1.32409209158422003 0.175955215230857998 0.0379822959999999987 16 10 1.69399940000000004 0 16 true 134 160.868882076847001 1.3220320512430801 121.682999 20.172186 11 83.8725366365565037 13.4894171668174998 6.21765469999999976 20.5423399999999994 10 201.504369485150988 10.6144588877060997 18.9839519999999986 19.0012100000000004 1.7739720000000001 0 1.54113009999999995 0.370153430000000006 1.17097659999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.835938373169 -63.04669556124 22.2069002450980015 -12.3860097970904999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481430519339436544 2481430519339436544 1057571324 2015.5 25.143087604049601 0.362900606783699009 -2.85948417842462987 0.255894334108683008 1.3733064350114299 0.384825053799424999 3.56865120000000013 17.9128704141024002 0.792435694298475046 5.57372128402209999 0.499703529008943992 0.0141689020000000006 0.316882300000000006 0.143644930000000004 0.0187401789999999992 -0.0743316039999999956 -0.0231336840000000016 0.158536179999999999 -0.122765479999999996 0.135185360000000004 0.0122275319999999993 152 0 152 0 0.639074559999999958 157.533005 0 0 31 false 0.162983340000000004 1.29034565226391007 0.0865981323252446034 0.0479222200000000015 17 10 0.698702000000000045 0 17 true 151 370.700979055906998 1.52303501330090008 243.395996 19.2658060000000013 14 69.2406735991855982 9.48271297074552955 7.3017789999999998 20.7504840000000002 14 471.424147333822987 8.65501960102067969 54.4682919999999982 18.0783899999999988 1.4584931000000001 0 2.67209429999999992 1.4846782999999999 1.18741610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.874769330496008 -63.0342671953328022 22.2285523009668999 -12.3901505102569995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481430480684536576 2481430480684536576 1171826506 2015.5 25.1454201548998988 1.78303977679034009 -2.86232758733225001 1.07124338268844999 -0.396855265696278992 1.39337205601861003 -0.284816440000000004 16.6480021976088999 4.5110259762679199 -11.4589765892441999 2.80470912534318995 -0.320294999999999996 0.0613895699999999975 0.581272000000000011 -0.335621500000000017 0.0192675850000000003 -0.330697200000000024 0.275315580000000004 -0.326540680000000028 0.0934830999999999995 -0.30921605000000002 85 0 84 1 -0.0819334899999999977 77.3155975 0 0 31 false 0.0190649799999999987 \N \N 0.0218015889999999997 10 7 4.24371299999999962 0 10 false 86 88.8090985809414946 1.39158910240905009 63.8185005 20.8172229999999985 8 54.3950225939360976 14.9034171757393992 3.64983559999999985 21.0124899999999997 8 102.925004313759999 7.32326866858975034 14.0545170000000006 19.7306179999999998 1.77144039999999992 0 1.28187180000000001 0.195266720000000005 1.0866051000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.882056239918995 -63.0358779071543012 22.2296962041583015 -12.3936525038330991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442304729677696 2481442304729677696 1611066269 2015.5 25.1194466408327983 0.077990342522491804 -2.84269224350956007 0.0613029530124747993 1.07929356467241999 0.0946124874218863959 11.4075170000000004 6.78511635281290015 0.180481747124116992 7.47400040095155038 0.114800462872951994 0.0832894740000000022 0.215531269999999997 0.115749240000000003 0.0892784999999999968 -0.339509000000000005 0.166633100000000006 0.252565470000000014 -0.197446349999999993 -0.029630842000000001 0.228361850000000005 175 0 174 1 2.22577880000000006 212.533997 0.139203432707703995 0.52369708091425804 31 false 3.21294740000000001 1.5526861977750499 0.0193734067361896987 0.0214658850000000005 20 10 0.167413740000000005 0 20 false 174 3565.07942460655022 3.83387690145812021 929.888977 16.8081929999999993 19 1476.52137223501995 11.8099261962859003 125.023759999999996 17.4282900000000005 17 2982.82176691657014 13.4069097132052999 222.483920000000012 16.0753519999999988 1.25083980000000006 0 1.35293770000000002 0.620096199999999986 0.732841500000000035 \N \N 0 \N \N \N NOT_AVAILABLE 150.81200452893799 -63.0288549112805967 22.2124200767999014 -12.3658360844792998 100001 4735.74023 4611.00977 4805.10986 0.176300004 0.063000001 0.375999987 0.104000002 0.0308999997 0.189600006 200111 0.561491430000000014 0.545397160000000047 0.592280499999999988 0.142867600000000011 0.117011530000000002 0.168723659999999998 +1635721458409799680 Gaia DR2 2481453982745583616 2481453982745583616 944840508 2015.5 25.1606861625575995 0.175940631038592005 -2.85141710392672998 0.125234581350251006 0.576874142049840999 0.197309208005641001 2.92370600000000014 22.7154773113554 0.389780757710946002 -14.1823571709226002 0.238109236903306987 0.0289653469999999989 0.278797860000000008 0.118268289999999998 0.0308636280000000006 -0.156147499999999995 0.00592631400000000023 0.150810870000000014 -0.120951420000000004 0.132982180000000005 0.0559821900000000011 168 0 168 0 3.74484370000000011 239.531998 0.394939653030293991 1.03615279842439989 31 false 0.630855440000000045 1.54605150462595997 0.0409068279963772999 0.0131937689999999993 19 10 0.345538740000000011 0 19 false 162 1038.60098298417006 2.29936730003282008 451.690002 18.1472429999999996 18 504.173204269967016 7.84800044236698024 64.2422499999999985 18.5949379999999991 17 754.461885191955957 8.84140193557776044 85.3328300000000013 17.5678270000000012 1.21185619999999994 0 1.02711100000000011 0.447694780000000014 0.579416299999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.902547786409997 -63.0195950970946015 22.2483254702469004 -12.3891312009483006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454051465064448 2481454051465064448 1240581809 2015.5 25.1478419535811 0.423178906882827 -2.83879316750183008 0.263914231930580001 1.66266914148125 0.436654270359218 3.80774739999999978 20.7513694739480989 0.860223105168572033 8.22001341762157978 0.477133228192236025 -0.137179600000000013 0.386217680000000008 0.165314800000000012 -0.000557572350000000005 -0.210691989999999996 -0.0386275000000000021 0.239686220000000005 -0.0799871899999999997 0.122303999999999996 -0.0424393860000000026 160 0 159 1 0.881356699999999993 169.279999 0 0 31 false 0.14694850000000001 1.21880524824812997 0.0873679908809883998 -0.0176433029999999991 18 10 0.759709199999999973 0 18 false 159 340.302880631805976 1.54817109462450997 219.809998 19.358702000000001 15 52.5271817809490003 4.86765901195355966 10.7910570000000003 21.0504280000000001 15 453.762684287378988 11.1356368835609008 40.7486949999999979 18.1198480000000011 1.4877625000000001 0 2.9305800999999998 1.69172670000000003 1.23885350000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.865238300418014 -63.0134832198281032 22.2408808975451002 -12.3726673867234993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454051465066624 2481454051465066624 1209067434 2015.5 25.1490273327655984 1.12118190145505991 -2.83491109431192001 0.77749546403069103 0.153824831495586012 1.00237651184375998 0.15346013 -1.44717117380370008 2.84259269557643002 2.02926230935200014 2.0208844619953501 -0.181895780000000007 0.165138690000000005 0.00520260860000000026 -0.0636057099999999959 0.0265959069999999985 -0.0722370999999999985 -0.124809674999999995 -0.0835615549999999957 0.113376013999999997 -0.278472160000000024 104 0 104 0 1.22514900000000004 116.514999 0.317991284574771993 0.0203243618185499006 31 false 0.0253651600000000012 1.90677554308552 0.274258715463812974 -0.0144456029999999996 12 9 2.57610749999999999 0 12 false 105 116.862608745152997 1.70435295850400004 68.5671005 20.5191760000000016 12 70.3080711411032979 5.71124110013518038 12.3104720000000007 20.7338750000000012 12 80.3211729347338945 6.90678674665452963 11.6293120000000005 19.9998460000000016 1.28894299999999995 0 0.734029770000000026 0.21469879 0.519330999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.864038306120989 -63.0094613277763003 22.2434726794108997 -12.3694951374984008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453776587150464 2481453776587150464 89445631 2015.5 25.1724884900613013 0.293960658414562981 -2.86150494239211994 0.229092675160704001 -0.314894761861042982 0.336566260465287981 -0.935610000000000053 0.664743434511864018 0.713811480975451995 0.459371495321519996 0.441785282581926009 0.0674734899999999971 0.142213200000000012 0.147045430000000005 0.0984140099999999962 -0.31977435999999998 0.195163530000000002 0.305588069999999989 -0.246664390000000011 -0.0727283700000000005 0.200060920000000003 157 0 156 1 1.10847399999999996 170.369995 0 0 31 true 0.232431949999999998 1.72654537415089004 0.0701693528309634967 0.0372296999999999975 18 10 0.641814100000000054 3 19 false 157 481.828189006280013 2.77192841385216004 173.824005 18.9811340000000008 17 307.415586150552997 12.3168898390420001 24.9588639999999984 19.1320739999999994 18 312.710953450975978 8.14627088875987937 38.387005000000002 18.5240630000000017 1.28702830000000001 0 0.608011250000000003 0.150939939999999995 0.457071300000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.935449511414987 -63.0238293862148993 22.2557373885321006 -12.4028537567987005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453780882311296 2481453780882311296 895572174 2015.5 25.1611517961773004 0.0339780352495981028 -2.8540113886754499 0.0266130124032349993 0.406402835913228011 0.0389913588618683998 10.4228945 1.39902315189940007 0.0725139868549677935 -10.0513426758110995 0.056563112701523803 0.0907988849999999958 0.328098300000000009 0.0320780349999999978 -0.00214459349999999993 -0.163818479999999989 -0.0634395549999999947 -0.152548669999999997 -0.0355104840000000019 0.159923370000000009 0.194360749999999999 169 0 168 1 -1.33858440000000001 139.404999 0 0 31 false 19.0047320000000006 1.55486424798390011 0.0088624293487030506 0.0169735890000000007 19 10 0.0746974499999999986 0 19 false 167 16202.5521969369001 7.51570060952935037 2155.83008 15.1644070000000006 19 7603.76269165844042 16.6195280818881983 457.519780000000026 15.6488169999999993 17 12438.4605630778005 20.8011567349822002 597.969669999999951 14.5250029999999999 1.23697940000000006 1 1.12381360000000008 0.484410300000000016 0.639403339999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.905869150493999 -63.0217575368420029 22.2477889746717992 -12.3917142254168997 100002 4965.66992 4900 5033.1001 \N \N \N \N \N \N 200111 2.80518249999999991 2.73052099999999998 2.88087269999999984 4.31049500000000041 3.36269859999999987 5.25829120000000039 +1635721458409799680 Gaia DR2 2481452853169375488 2481452853169375488 977879658 2015.5 25.2456354862686005 0.0918587808725516985 -2.86449249050793986 0.0744889711169545027 0.440245903108374026 0.108619075918119007 4.05311779999999988 -4.74671049557444036 0.20503618874788801 -4.01065153967299981 0.136849706075562988 0.166005480000000011 0.323787060000000015 0.141085760000000004 0.0254664310000000012 0.095124070000000005 -0.106608439999999999 0.238576979999999994 -0.163955089999999998 0.2484962 -0.0357878579999999988 143 0 139 4 -0.313901160000000012 128.278 0.103476501423915998 0.21701526209331401 31 false 2.6434445000000002 1.61873680164981004 0.022802541239047399 0.0824610900000000008 16 10 0.185438400000000003 0 16 false 140 3009.9560256653499 3.78796121991927981 794.611023 16.9919660000000015 15 1496.5880207355101 16.1943055537884995 92.4144600000000054 17.4136330000000008 15 2181.58020091194021 10.9815248502016001 198.659130000000005 16.4149910000000006 1.2220006000000001 0 0.99864196999999999 0.421667100000000017 0.576974870000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.084341169325995 -62.9959006728982018 22.3241511252896991 -12.4325530639379007 100001 5327.66992 5310.66992 5391.10986 0.252999991 0.0476000011 0.379999995 0.133000001 0.0305000003 0.184100002 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453020672907776 2481453020672907776 589591510 2015.5 25.2230784035039015 0.278508737556606989 -2.85682143342692996 0.159899798211075 4.82411366749488035 0.276240915225117012 17.4634280000000004 7.57016418942787972 0.639056438165895968 -33.093688574400602 0.296764890856402008 -0.265230599999999983 0.26124130000000001 0.474579130000000016 -0.24177535 0.0897820000000000007 -0.386826000000000003 0.422858659999999997 -0.255923000000000012 0.311459240000000026 -0.410478830000000017 131 0 129 2 0.655920150000000035 133.916 0 0 31 false 0.584923450000000011 1.2429531206803599 0.0521413753347559003 -0.0599154530000000005 15 9 0.598295200000000027 0 15 false 129 885.370161904496968 2.54498423221550985 347.888 18.3205530000000003 14 138.424788582345997 6.78841201684242002 20.391335999999999 19.9983539999999991 15 1262.85404576788005 10.3146872588113006 122.432609999999997 17.0085370000000005 1.58270400000000011 0 2.98981669999999999 1.67780109999999993 1.3120155 \N \N 0 \N \N \N NOT_AVAILABLE 151.032214741117002 -62.9984032475760998 22.3055989639494001 -12.4171209411234003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453432989772160 2481453432989772160 97743781 2015.5 25.2395338921351993 0.0695656827033095948 -2.84534802304458001 0.0560667326288500009 0.466264689291161993 0.0834919772478538019 5.58454470000000036 -5.30289990897713981 0.154895807429519 -5.36195152129571007 0.108213646199435007 0.183176310000000009 0.280153240000000026 0.0846741049999999995 0.0688685599999999953 -0.14563683999999999 0.0636042099999999944 0.130190639999999996 -0.133622350000000001 0.0834170899999999993 0.204048990000000013 150 0 149 1 0.278626859999999976 148.100006 0 0 31 false 4.36575839999999982 1.61582342855729011 0.0173323030887429994 0.0990128140000000045 17 10 0.144211499999999992 0 17 false 148 4434.14091266040032 3.70507714503230012 1196.77002 16.5713420000000013 16 2204.02362528529011 14.9803618979300008 147.127530000000007 16.993347 14 3207.66964958853987 11.3583335061035999 282.406700000000001 15.9964460000000006 1.22046039999999989 0 0.996901499999999996 0.42200470000000001 0.574896799999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.054451658763014 -62.9810895351173983 22.3255722121304991 -12.4125100677846003 100001 5335.75 5308.06982 5356.5 0.377499998 0.166500002 0.463 0.189300001 0.0909999982 0.231299996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453501709252608 2481453501709252608 1473345065 2015.5 25.2312464391193991 0.163165935218548996 -2.83531061798063 0.120389476482103006 1.06071067183792 0.190407478713785994 5.57074069999999999 14.6473918667480003 0.363104308811756982 -5.34729333294667963 0.220557148787586005 0.123316460000000003 0.312112700000000021 0.0821796500000000069 0.0478659530000000027 0.0166231129999999984 -0.0380132999999999999 0.206635430000000009 -0.127014889999999991 0.197294789999999998 0.00125609010000000011 156 0 154 2 2.85936119999999994 203.190994 0.310301408289586023 0.676480246015542019 31 false 0.777906399999999998 1.41010552449301008 0.0381522972973354982 0.0623266440000000005 18 10 0.32151318000000001 0 18 false 153 1200.9606472288599 2.33294673346183989 514.78302 17.9895439999999986 16 424.205707921783016 8.79379498886845035 48.2392099999999999 18.7824479999999987 17 1145.87864785820989 11.3314250160933003 101.12397 17.1140730000000012 1.30735709999999994 0 1.66837499999999994 0.792903899999999995 0.875471099999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.028640905471008 -62.9754547687625035 22.3214795491054012 -12.4001291964943992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453467349512064 2481453467349512064 274435485 2015.5 25.2513022874045987 0.444871146469713985 -2.83964348346715001 0.322774108483986022 0.404259202032917986 0.511771425821297976 0.789921399999999996 -1.07077036422836991 0.905156650441896971 -5.15313384844816014 0.535946450081693948 0.240448600000000012 0.405134400000000006 0.0492603370000000013 0.174584949999999989 0.14401101999999999 0.0738214249999999961 0.284793350000000001 -0.0765018100000000034 0.226207459999999999 0.0684594439999999943 151 0 150 1 0.436670180000000019 151.875 0 0 31 false 0.115764339999999993 1.62303931826518011 0.102307938772612003 0.0870878199999999963 17 10 0.79599120000000001 0 17 false 149 303.785838269508986 1.6147857596450701 188.128006 19.4819470000000017 15 133.403641880035991 11.2931924881686996 11.8127490000000002 20.0384700000000002 16 268.430699460141 10.4084036423406001 25.7898040000000002 18.6898400000000002 1.32275530000000008 0 1.34862900000000008 0.556522370000000044 0.792106599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.072651716841989 -62.9709745594258976 22.3389127987512985 -12.4115368215607003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453536068991488 2481453536068991488 1047577166 2015.5 25.2483584156851997 0.927646400612853972 -2.83430323303843013 0.791919526874052981 0.968121541074919989 1.08280039019770991 0.89409050000000001 -2.04089759958303985 2.09551151650578005 -14.7158409085883992 1.85218690387500007 0.302274260000000017 0.354956539999999987 0.0133284779999999995 -0.0011971315000000001 0.139059249999999995 0.0101110430000000001 -0.179384719999999998 -0.216888770000000008 -0.160771520000000001 0.366139900000000018 125 0 124 1 0.872950140000000041 132.264999 0 0 31 false 0.0265504480000000008 1.47692308117227999 0.248003077026629992 0.144757579999999997 15 9 2.04746030000000001 0 15 false 124 127.367004076678995 1.58178882247371999 80.5208969 20.4257239999999989 8 45.4384545837926979 5.04164367234849031 9.01262799999999942 21.2078290000000003 11 189.972874210554011 13.1932031534865004 14.3992989999999992 19.0651909999999987 1.84829130000000008 0 2.14263730000000008 0.78210449999999998 1.3605328000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.061843438233012 -62.9673641138687969 22.3381282026014993 -12.4054889906790997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453162407020544 2481453162407020544 902462956 2015.5 25.2655966032759984 0.0833486984805174996 -2.86134246114886981 0.0635684845513847935 3.8641172927370202 0.0967779795013073013 39.9276499999999999 18.5151372856794012 0.182255491034812006 1.44280746702216001 0.121039191975723007 0.197181400000000007 0.284591760000000027 0.15153293000000001 0.0176612509999999993 0.0199837739999999993 -0.044282402999999998 -0.024082137 -0.153893129999999989 0.195760220000000013 0.112166039999999995 135 0 135 0 5.57296200000000042 241.149002 0.358115266717020986 5.38209484754724965 31 false 3.43957949999999979 1.26401133388642006 0.0226780619179304983 0.0602002400000000021 15 9 0.166279380000000004 0 15 false 135 5921.49764044221956 5.30028390796884974 1117.19995 16.2572860000000006 14 1437.14507448804011 17.3678547577769002 82.7474100000000021 17.4576360000000008 14 6915.88341781305007 22.8869559280846993 302.175749999999994 15.1623009999999994 1.41062770000000004 0 2.29533480000000001 1.20034979999999991 1.0949850000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.121248190441008 -62.9846559746386987 22.3443187455407006 -12.4369690114201994 100001 3498 3447 3846.28003 0.0719999969 0.0489000008 0.34799999 0.0403000005 0.0249000005 0.202999994 200111 0.524879399999999996 0.434128139999999996 0.540525999999999951 0.0371614730000000004 0.0352421960000000034 0.0390807499999999974 +1635721458409799680 Gaia DR2 2481450237534098048 2481450237534098048 255772490 2015.5 25.2945365165224985 0.39212562863070699 -2.86313238573392015 0.266432339810305008 0.069002193240256901 0.450768323296521001 0.153076839999999992 4.88844761865301969 0.824142000188956003 -8.1203597389918496 0.476782282212374009 0.0893807400000000002 0.347416200000000008 0.0245807060000000008 0.0935600600000000004 -0.045057576000000002 0.0403202469999999966 0.177249400000000001 -0.077483620000000003 0.165743439999999992 0.0543359070000000027 160 0 155 5 -0.369759300000000013 143.039001 0 0 31 false 0.143811300000000003 1.49280538412993002 0.0964903459386071971 0.0504202799999999979 18 10 0.723892800000000003 0 18 false 157 345.606565549909988 1.87699016154172993 184.128006 19.3419109999999996 16 204.622444098288014 14.1123583685170004 14.4995209999999997 19.5740049999999997 17 250.086303385918995 6.84353491165347982 36.5434380000000019 18.7666949999999986 1.31568320000000005 0 0.80731010000000003 0.232093810000000011 0.575216300000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.180606169769987 -62.9741006215213019 22.3711616665184998 -12.4492793584054997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453471644665344 2481453471644665344 1263704835 2015.5 25.2630557604935007 0.0380975293279489022 -2.83158637286856019 0.0303691322897713008 0.715867480550908986 0.0449777966767632015 15.9160190000000004 -2.14690415781007005 0.0813040001272272994 1.37821858190358992 0.0627058843987200049 0.173140899999999986 0.343617530000000004 0.0324136469999999968 0.020928973 -0.107157215 -0.0103735359999999992 -0.0672072999999999976 -0.0811769900000000044 0.100903220000000002 0.235251949999999987 161 0 157 4 0.879557299999999986 167.145996 0 0 31 true 16.1077210000000015 1.60640548128628002 0.0101088293419847996 0.0751159899999999936 18 10 0.0822666499999999967 0 18 false 155 14223.6095760314001 7.15527817442005976 1987.84998 15.3058409999999991 14 7968.36848312394977 11.2849001014623003 706.108899999999949 15.5979639999999993 17 9265.02760101738022 18.4612964055917992 501.862239999999986 14.8448030000000006 1.21160500000000004 0 0.753161430000000021 0.292122839999999995 0.461038600000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.088633748159992 -62.9587291026195999 22.3531264349179004 -12.4083704215055999 100001 6426.5 5573.12012 7933 0.0173000004 0.00850000046 0.125699997 0.00980000012 0.00389999989 0.0716999993 200111 0.836076599999999948 0.548681399999999986 1.11172739999999992 1.07419939999999992 0.923425700000000016 1.22497319999999998 +1635721458409799680 Gaia DR2 2481453467352040064 2481453467352040064 510377241 2015.5 25.2661611325391995 0.996573320516658034 -2.83591396080898983 0.802519493200740008 -0.792211208008837042 1.10314182929174009 -0.718140840000000003 -1.42247114240059003 2.51847269534559004 -1.93075365667128995 2.01730284898988987 0.064240469999999994 0.202798919999999994 0.156656030000000002 -0.209709000000000007 0.192996899999999999 -0.229074880000000008 -0.148571850000000005 -0.267538580000000026 0.103495180000000006 -0.120439199999999996 123 0 123 0 1.51309990000000005 142.048996 0 0 31 false 0.0236059610000000017 1.93838214403263009 0.272480163518810992 0.0783603600000000039 14 9 2.25891799999999998 0 14 false 122 120.802267880683999 1.33948833644191989 90.1854019 20.4831770000000013 12 81.7583054456993068 7.52744853818551007 10.8613569999999999 20.5700590000000005 11 78.7027185968162968 14.5704675928312994 5.40152300000000007 20.0219459999999998 1.32829480000000011 0 0.548112869999999974 0.0868816399999999961 0.461231229999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.098826945788005 -62.961350993069999 22.3544467970334004 -12.4135361698030007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453329910560128 2481453329910560128 761987306 2015.5 25.2932519904396997 0.293220478280921015 -2.83709343708009021 0.204166703977040009 0.672702307541249045 0.340913132423309007 1.97323669999999995 -0.218709952248203998 0.675420212312279 -1.91567367551016998 0.368418287362591024 0.115019663999999994 0.210901530000000004 0.124548629999999994 0.0490929219999999972 -0.0423116269999999975 0.00282049439999999992 0.163481039999999994 -0.15890362999999999 0.207774530000000013 0.0199262950000000001 152 0 148 4 4.47001500000000007 231.776993 1.16309770274976998 5.82762675374825978 31 false 0.258204759999999978 1.54234485411660005 0.0715712886083991057 0.0197320879999999983 17 9 0.595794099999999993 0 17 false 148 690.012233939811949 2.79827844649433999 246.585007 18.5912250000000014 14 283.951622135345985 8.43506541765616014 33.6632400000000018 19.2182770000000005 15 673.362727354097956 31.0977347348927999 21.6531120000000001 17.6912979999999997 1.3873875 0 1.5269794000000001 0.627052300000000007 0.899927139999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.153898458863011 -62.9510294529534988 22.3797604009852016 -12.4245981114928004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450070030588032 2481450070030588032 503575652 2015.5 25.3234462276258014 0.110093372722651003 -2.86590692015544013 0.0845202694689559941 2.4118184598168102 0.129928078975621003 18.5627199999999988 4.37265570319610042 0.245380817680523 -47.4546919816682973 0.168131272327098014 0.112468650000000003 0.278485800000000006 0.0675664599999999949 -0.017276940000000001 -0.0768551100000000043 -0.0838712900000000011 -0.00304815700000000012 -0.0874472260000000029 0.204136939999999989 0.0691770899999999966 143 0 142 1 1.67602809999999991 165.899994 0.142038231974387003 0.284451642924589021 31 false 1.73870290000000005 1.28743139465178991 0.0312615247238624966 0.0641607200000000044 16 10 0.219524639999999993 0 16 false 139 2035.14727807890995 2.88746204216342983 704.822021 17.4168759999999985 14 483.885441720409005 21.310172695963999 22.7067809999999994 18.6395319999999991 14 2451.27562684780014 17.5456238570199012 139.708660000000009 16.2884390000000003 1.44223520000000005 0 2.35109330000000005 1.22265620000000008 1.12843699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.240776941937014 -62.9644262196429025 22.3976067406474009 -12.4624920214001005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450310548756096 2481450310548756096 1325544890 2015.5 25.3233945563961989 0.113135974959683999 -2.85695238213669001 0.0872964658900998031 0.469240814632211012 0.132606554981282987 3.53859449999999987 3.96008314705751996 0.248902974621379003 -5.8909735967278003 0.174217109693348998 0.120399030000000004 0.30481142 0.0699183500000000041 -0.0169754480000000006 -0.0413291159999999991 -0.0892989599999999967 -0.00187373089999999997 -0.091997560000000006 0.197713909999999993 0.0636883149999999953 141 0 137 4 1.71293990000000007 161.070999 0.318579488793059973 1.59538011997624007 31 true 1.69300460000000008 1.63769610684079003 0.0318627465069478977 0.0709416400000000003 16 10 0.222549130000000012 0 16 false 133 2308.28730964984015 3.01831380678415995 764.760986 17.2801420000000014 16 1243.94255099256998 15.4570857784020994 80.477170000000001 17.6143880000000017 16 1577.19526444744997 19.7122477089904002 80.0109300000000019 16.7672060000000016 1.22217799999999999 0 0.847181300000000026 0.334245679999999989 0.512935640000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.232351471691004 -62.9563320602011984 22.4009343928359996 -12.4541476528887003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450340613315968 2481450340613315968 54746279 2015.5 25.3114520486476984 0.644155506738574024 -2.85472757159502999 0.450142377685283979 -0.529010081163863055 0.729392969832304949 -0.725274439999999965 0.0784729550147277022 1.4643754725754301 -2.11168226643835011 0.840012830745684003 0.060895734 0.259030199999999988 0.0370749569999999987 0.0401989670000000021 0.0071637580000000001 -0.018009072000000001 0.160019860000000014 -0.116373389999999993 0.179047390000000001 -0.0285918450000000011 136 0 133 3 1.59179770000000009 154.438995 1.11417770679890005 0.603739659260084993 31 false 0.0579977259999999994 1.68016473384760001 0.172225075044559001 0.0438880999999999993 16 10 1.28516209999999997 0 16 false 132 202.599809950382991 1.72179324229797004 117.667999 19.9217680000000001 7 124.327933497995005 5.58124138350761001 22.2760350000000003 20.1149650000000015 6 123.503401102463002 3.80412856783240994 32.4656220000000033 19.5327219999999997 1.22325550000000005 0 0.582242970000000026 0.193197249999999987 0.389045719999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.206503893097988 -62.9593522489582966 22.3904167088524986 -12.4476870201807994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454807379312256 2481454807379312256 352129653 2015.5 25.3113369996743991 0.736141558366807947 -2.83176284965434011 0.480197059202075005 2.86543569608005999 0.823428531525766005 3.4798840000000002 35.4002709173621 1.71017051221618011 -5.30687905610263044 0.864848210304595022 0.0998227599999999965 0.246166620000000003 -0.0409354599999999999 0.0862409249999999961 0.0936240599999999951 0.0325281840000000017 0.150858180000000008 -0.102917135000000007 0.176777419999999991 -0.0271166410000000004 114 0 112 2 1.94534410000000002 137.266998 1.20732444933707006 0.680546966982375046 31 false 0.0579412200000000016 1.31051962036283998 0.196950915932126991 0.0207657940000000006 13 8 1.50029520000000005 0 13 false 114 188.073522041199993 1.71927699916958998 109.390999 20.0025459999999988 11 64.4283385607937049 7.99083775759693982 8.06277700000000053 20.8286949999999997 12 227.809159757331003 8.26674863851119923 27.5572869999999988 18.867992000000001 1.55384710000000004 0 1.96070290000000003 0.826149000000000022 1.1345539 \N \N 0 \N \N \N NOT_AVAILABLE 151.184967711013002 -62.9385805574762998 22.3989668280775014 -12.4262936126342005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451783722328448 2481451783722328448 658551078 2015.5 25.3334540639650996 0.204695541985521007 -2.85129296140424993 0.138451290111214986 1.66501246076583009 0.235244089143521989 7.0778080000000001 -5.33033762850831039 0.478601597395685974 -15.8182639042397994 0.259266095888120995 0.0360245800000000005 0.204484780000000005 0.196860160000000006 -0.0155344899999999998 -0.0357804999999999998 -0.0735989699999999997 0.162630479999999994 -0.199358339999999995 0.234048590000000001 -0.071049970000000004 142 0 139 3 4.82350000000000012 228.537003 0.531819551454324024 1.75377366135323998 31 false 0.595367300000000044 1.41257882322332007 0.0486108837873144017 -0.00517068660000000006 16 9 0.425887169999999982 0 16 false 136 1012.99440407745999 2.3262316001910901 435.466003 18.1743489999999994 16 282.393987264576992 9.87660732109836026 28.5922049999999999 19.2242490000000004 15 1125.77266485778 13.2633476268205008 84.878469999999993 17.1332929999999983 1.39010309999999992 0 2.09095569999999986 1.04990000000000006 1.04105570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.24711695197999 -62.9469572277809988 22.4126346721238008 -12.4525851654533 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451852441809408 2481451852441809408 15337327 2015.5 25.3233226179968014 0.869613499453963046 -2.83833802967004978 0.534423325447912045 -0.340114045954171995 0.903906829302407955 -0.376271130000000009 2.14243863651606992 2.27259207831450993 -1.4554243002326801 1.01171027789519008 0.0237920099999999989 0.0589752499999999999 -0.197175619999999996 0.0628168900000000002 0.0117390540000000005 0.0418426250000000013 0.102936104 -0.0160040860000000007 0.15609205000000001 -0.0707570700000000052 114 0 113 1 0.848983000000000043 120.247002 1.4175017953862501 0.61459482444802005 31 false 0.0437418899999999986 1.3061875146586801 0.224861873265609996 -0.0748053199999999946 13 8 2.00106099999999998 0 13 false 111 160.507304051022004 1.31085291021215999 122.445 20.1746300000000005 13 92.1163868395837966 12.7941250914145996 7.19989729999999994 20.4405460000000012 13 114.229050303297001 9.80206045593440045 11.653575 19.6174800000000005 1.28558290000000008 0 0.82306670000000004 0.265916819999999998 0.557149899999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.214922432560002 -62.9394896675994033 22.4078848349885007 -12.4368146116259997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451822377266176 2481451822377266176 1311081225 2015.5 25.3401605994107015 0.762041695740823033 -2.8346456366273598 0.521115858185962955 0.773617943483269954 0.840418396088008945 0.920515239999999957 -12.9605120345942009 1.93264044703479998 -16.4684228871578995 1.01584368871885 0.0709985199999999955 0.102404120000000001 -0.0201519799999999999 0.0240213420000000011 0.0220367609999999985 -0.00154776039999999994 0.0679393199999999975 -0.124410935 0.168147760000000007 -0.0403107549999999967 123 0 121 2 3.49929999999999986 176.994995 2.16562710917858992 1.94924059866712995 31 false 0.045226622000000001 1.36844142523284007 0.181401386737286008 -0.0367380569999999976 14 9 1.69546590000000008 0 15 false 121 191.251033031296004 1.62244262038181009 117.877998 19.9843559999999982 11 62.4173879708266028 8.25960980801706945 7.55694149999999976 20.8631250000000001 13 265.496099964021994 11.3815453080735995 23.3268950000000004 18.7017750000000014 1.7145710999999999 0 2.16135030000000006 0.878768899999999964 1.28258129999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.244995168640003 -62.9290388416839974 22.4252888287027012 -12.4395732280492997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465871214925952 2481465871214925952 1448732930 2015.5 25.1360077846896992 0.836611808693049963 -2.81731294542381017 0.599986876903411015 -0.756709529242494017 0.919644138330632965 -0.82282865000000005 6.62499638026026982 2.43117913890983983 -19.6450664499715018 1.96327198955266002 -0.0532599699999999968 -0.0145141149999999993 0.335244859999999978 -0.0630742200000000003 -0.218031059999999999 0.0152740240000000006 0.129624010000000012 -0.434536429999999974 -0.216297550000000005 0.175131800000000004 125 0 122 3 0.241623539999999998 120.056 0 0 31 false 0.0377754939999999997 1.95095171889061003 0.233774459258945994 0.0970052599999999959 15 9 2.2191860000000001 0 16 false 126 145.754514422375991 1.72413286689385004 84.5379028 20.2793099999999988 11 92.0783364421406958 22.3096421797757003 4.12728900000000021 20.4409939999999999 12 135.333330931335013 6.56209827412325986 20.6234840000000013 19.433409000000001 1.56023749999999994 0 1.00758550000000002 0.161684040000000001 0.845901499999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.821831225154 -62.9988911324301029 22.2377391126352997 -12.3483427476573997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454051465068416 2481454051465068416 968258347 2015.5 25.150193138854199 0.838452061711935981 -2.83153299852002016 0.60013607457792395 0.541093959841830952 0.891806781827942041 0.606739000000000028 1.33941191633918999 1.9007728851632899 -4.54497226853268987 1.14943926850427003 0.0295278019999999988 0.263941619999999988 0.124142340000000004 0.0259336049999999985 -0.0536007660000000011 -0.0151421690000000005 0.187289029999999995 -0.130924970000000002 0.15226540999999999 -0.00760020270000000015 152 0 152 0 2.60224799999999989 195.479004 2.52499013785361992 2.19323334365174016 31 false 0.0295436199999999996 1.55236047310590997 0.212642758909454999 0.047984930000000002 17 10 1.6712937000000001 0 17 false 152 157.576140204859001 1.35559856808060997 116.240997 20.1946399999999997 14 94.084721618558504 16.8894791299743012 5.57061100000000042 20.4175910000000016 13 99.2990395176439051 5.08776786078055032 19.5172120000000007 19.769558 1.22724009999999994 0 0.648033140000000007 0.222951890000000014 0.425081250000000022 \N \N 0 \N \N \N NOT_AVAILABLE 150.86326295703401 -63.0059055613530035 22.2458556125621989 -12.3667841491187005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465905575935104 2481465905575935104 875677173 2015.5 25.1382791649071997 1.61453011037345995 -2.81119132006738015 1.31592178425628004 \N \N \N \N \N \N \N 0.0517580659999999984 \N \N \N \N \N \N \N \N \N 77 0 77 0 1.19925959999999998 86.6149979 0 0 3 false 0.0176288040000000014 \N \N 0.209024999999999989 9 7 5.39764999999999961 0 10 false 87 98.2643649957394985 1.62475256251449007 60.479599 20.707376 6 66.6841493682923954 8.25494999540046948 8.07807999999999993 20.7913320000000006 7 124.043638221170994 15.0643355754636001 8.23425899999999977 19.527985000000001 1.94096599999999997 0 1.2633475999999999 0.0839557650000000016 1.17939189999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.820753465807002 -62.9923810211030002 22.2422079438808993 -12.3434885178211005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466081668646144 2481466081668646144 485775342 2015.5 25.1247170511059004 0.21734314149443501 -2.80755028880810986 0.156079536837074012 1.02051966782493997 0.242166079841473009 4.2141314000000003 21.2903290303441004 0.544613191716237011 3.00033934767497001 0.326276505919853022 0.00315996029999999995 0.13222123999999999 0.036244883999999998 0.054844335000000001 -0.316677800000000009 0.135557580000000011 0.186765459999999994 -0.19267513 -0.0576668160000000027 0.150409500000000002 149 0 148 1 1.53109359999999994 169.738998 0 0 31 false 0.472170350000000016 1.40950846452309997 0.0530312273277408971 0.00161854610000000004 17 10 0.484424829999999973 0 17 true 146 753.78788541978895 2.27219351756551013 331.744995 18.4952429999999985 16 220.436903399290998 10.1746897653836008 21.6652200000000015 19.4931769999999993 15 811.960953437368971 11.0978499834599997 73.163809999999998 17.4880829999999996 1.36961320000000009 0 2.00509449999999978 0.997934340000000031 1.00716019999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.790294270828014 -62.9947140340673002 22.2306923174856017 -12.3351104191022998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465909869954048 2481465909869954048 1619071133 2015.5 25.1341118946727988 0.631730085382677053 -2.80308462750679022 0.461183613244839974 0.850865233447473002 0.720693161809239036 1.18062069999999997 -1.97549816640510989 1.61650859970536009 -5.58991431312942044 0.986237855201785973 0.00609197500000000034 0.0872758000000000006 0.148017170000000003 0.049777799999999997 -0.341932179999999974 0.152331460000000002 0.214235719999999991 -0.280056360000000004 -0.0966928499999999969 0.17037796999999999 155 0 152 3 1.65792610000000007 176.544998 0 0.196836252715832993 31 false 0.0548546540000000027 1.84823071179576992 0.148922187697380998 0.0575273069999999997 18 10 1.4425557 0 18 true 153 189.557084431072013 1.87846762212497009 100.910004 19.994015000000001 16 115.364925350440998 9.43872921213232985 12.2225064999999997 20.1962030000000006 16 134.119459105294993 7.73752231520701983 17.3336450000000006 19.4431900000000013 1.31614389999999992 0 0.75301359999999995 0.202188489999999998 0.550825099999999956 \N \N 0 \N \N \N NOT_AVAILABLE 150.804984134141989 -62.9867460226039029 22.2413062677409989 -12.3344183987346998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466111733106816 2481466111733106816 895579292 2015.5 25.1304512678242986 0.199447711473384998 -2.79351778930257 0.158379653954727001 0.188432479591366997 0.232928515753137999 0.808971299999999949 0.63740825127864098 0.481753869577449978 -2.63874661877324002 0.293623256035871028 0.127773999999999999 0.14706016999999999 0.153475699999999993 0.111848320000000001 -0.286321129999999979 0.184043449999999997 0.312552779999999975 -0.228761120000000012 -0.0239946449999999985 0.198203269999999987 160 0 157 3 1.92669439999999992 187.360992 0.544598050245071019 1.59934970096069007 31 false 0.497635959999999988 1.6295313906520601 0.0470297623327081971 0.0472679920000000017 18 10 0.433951379999999998 0 18 false 156 916.739045633335991 2.29949281250440007 398.670013 18.2827510000000011 16 500.204322038406019 15.9375101120356994 31.385349999999999 18.6035199999999996 15 613.449874812561006 5.19444671129700009 118.097250000000003 17.7924730000000011 1.21479950000000003 0 0.811046599999999951 0.320768359999999975 0.490278239999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.788895333298996 -62.9795710463730032 22.2414370334297011 -12.3241774845176995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466043016156288 2481466043016156288 1462682544 2015.5 25.1534721963415002 1.07667661648341006 -2.78972384722509981 0.866782493388538966 -0.073087987384318695 1.21750643384773993 -0.0600308849999999991 4.86818009922486983 2.88647149025760008 -5.43784259442132978 2.56292513020436985 0.0761826260000000033 0.122524590000000003 0.13745273999999999 0.0456647300000000006 -0.214814300000000014 0.0992387899999999934 0.0508361719999999989 -0.31004103999999999 -0.20562896 0.34029195000000001 123 0 123 0 2.28368450000000012 155.869995 2.87946564375369007 1.38321858706752998 31 false 0.0189346449999999999 1.59477864013680004 0.287135174818200001 0.107154529999999998 15 9 2.80592780000000008 0 15 false 125 115.028153931456998 1.37082500752241998 83.9115982 20.5363560000000014 10 62.0214111308361993 16.4636714617702999 3.76716760000000006 20.8700329999999994 10 136.519262612223002 8.29646121867159003 16.4551200000000009 19.4239350000000002 1.72601810000000011 0 1.44609830000000006 0.33367730000000001 1.1124210000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.831416498927013 -62.9665418619811987 22.2647475208606984 -12.3291258313567003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454120184546816 2481454120184546816 889470716 2015.5 25.1885183946656994 0.452553636173289975 -2.82839130445840015 0.31755065113238401 0.279173849937511986 0.477810412784064997 0.584277449999999976 37.930775689497203 1.11620199655751007 -30.5903902558939009 0.61917406976838496 -0.108338706000000007 0.157723379999999996 0.227559939999999988 -0.109353475000000006 -0.0856378799999999996 -0.156327369999999993 0.28529294999999999 -0.184830679999999997 0.203845799999999994 -0.190560759999999996 159 0 156 3 4.45710799999999985 241.542007 1.53810905960752997 2.89740620943357019 31 false 0.107578813999999995 1.59352575538963004 0.0989287954769938055 -0.00733943699999999987 18 10 0.997333800000000048 0 18 false 155 356.187993752072998 1.43875667976774002 247.567001 19.3091679999999997 16 137.094183960113014 12.3907730981516 11.0642160000000001 20.0088399999999993 16 344.556292280735988 9.6948974711862892 35.5399630000000002 18.4187699999999985 1.35223669999999996 0 1.59007070000000006 0.699672700000000036 0.890398000000000023 \N \N 0 \N \N \N NOT_AVAILABLE 150.936962457091994 -62.9870548537202026 22.2834708479409009 -12.3779719289022996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454605516030592 2481454605516030592 1310469488 2015.5 25.1925356056642009 0.0941451054707715951 -2.79980933699224011 0.0707509744732967016 4.38699294016285002 0.106698968611074002 41.1156099999999967 -2.33601648418598007 0.216651181281701993 -51.1640272748548028 0.138981553562966986 0.0116081929999999993 0.241309880000000004 0.142510739999999997 -0.0372529549999999973 -0.143545759999999994 -0.0920513200000000059 0.13974257000000001 -0.110202014000000001 0.194131579999999998 -0.0166168400000000008 161 0 158 3 4.15860840000000032 236.990997 0.394222823969128 4.19055714485173958 31 true 2.25535320000000006 1.25892302934209011 0.0215266426317029004 0.00937329599999999971 18 10 0.195554050000000007 0 18 false 158 3641.4507337437899 4.40973062201068 825.776001 16.7851800000000004 15 736.132857110818009 10.2350692473922997 71.9226100000000059 18.183997999999999 17 4512.89442163706008 18.5366839188204011 243.457490000000007 15.6257819999999992 1.44146599999999991 0 2.55821599999999982 1.39881900000000003 1.15939710000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.918673720008996 -62.9594149703185977 22.2980719179033002 -12.3528798318252004 100001 3728.37012 3319.66992 3946.83008 0.389299989 0.321500003 0.493299991 0.217999995 0.173600003 0.25999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466390906028288 2481466390906028288 111197698 2015.5 25.1938088384742009 1.2003282533538 -2.7857238952232799 0.86163678302556701 -0.341280302726848006 1.18088408070282003 -0.289004060000000007 -7.18664994206841978 2.96127272467656022 -5.90011217431395973 2.16355151238215981 -0.0320328920000000003 0.0985286400000000007 -0.0937442599999999959 0.0567241760000000012 -0.0742468299999999998 0.0315136300000000008 -0.295894299999999999 -0.0881889240000000019 0.000419192949999999979 0.116848599999999997 120 0 118 2 2.99249270000000012 163.367004 3.58708677284680988 2.3795811565569398 31 false 0.0186087339999999983 1.21579514214010009 0.285943488908111998 -0.043400550000000003 14 8 2.61660480000000017 0 14 false 117 110.333862856886995 1.27318654092182992 86.6595993 20.5815939999999991 7 31.4361706047337996 4.75145919394183025 6.6161089999999998 21.6078149999999987 10 139.113703435834992 8.08396940784792051 17.2085879999999989 19.4034960000000005 1.54576179999999996 0 2.20431899999999992 1.02622030000000009 1.17809870000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.908264321012012 -62.9460878653801004 22.304594968027299 -12.3402539777156992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454635580366720 2481454635580366720 970428151 2015.5 25.2056393335592013 0.467376467923771022 -2.79119682916903988 0.303976315354585025 1.87635640540441995 0.490313788821874985 3.82684800000000003 11.5857002264514009 1.15283792366230009 3.85864383870057015 0.567071634437326999 0.00885241299999999995 0.0990335199999999999 0.0152701409999999992 0.0445020120000000005 -0.141260219999999992 0.0529679129999999984 0.169796699999999995 -0.114442730000000006 0.137590689999999988 -0.00765997540000000043 151 0 150 1 4.1474713999999997 226.817993 1.60318703156292997 3.44654746232095022 31 false 0.107923514999999998 1.33175275694054007 0.101658826350690998 -0.0593771969999999996 17 9 1.01177779999999995 0 17 false 149 346.352458784206021 1.60274835411455996 216.098999 19.3395699999999984 11 92.710054922451107 6.75855834682390988 13.7174300000000002 20.4335699999999996 13 462.187531181320992 10.4068318900388004 44.4119340000000022 18.0998739999999998 1.60211830000000011 0 2.3336964 1.09400180000000002 1.23969459999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.936895655857001 -62.9461177040576985 22.3137760279702988 -12.3496955578146004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466287827075584 2481466287827075584 869252692 2015.5 25.1322929169956986 0.17823674417202201 -2.78106830125246018 0.135202673734383993 0.112177890985293002 0.205839831183111999 0.544976600000000033 -0.875638716141119988 0.440242761674194016 -2.68776930008456016 0.30222935523960498 0.034195215000000001 0.147739890000000013 0.11676069 0.0312341540000000001 -0.305231960000000024 0.0971845600000000032 0.105016366 -0.223342449999999998 -0.0456311959999999989 0.205967000000000011 159 0 157 2 1.03320590000000001 170.016006 0 3.260193663416e-15 31 false 0.607508060000000016 1.6427780909607399 0.0442431007739388996 0.0399709099999999984 18 10 0.397593379999999996 0 18 true 155 929.783839182288034 2.67962227905991979 346.983002 18.2674100000000017 17 457.118896989510972 12.7887550750907995 35.7438160000000025 18.701315000000001 17 711.972686253237953 15.6376177267040006 45.5294839999999965 17.6307620000000007 1.25737999999999994 0 1.07055279999999997 0.433904650000000003 0.636648199999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.78117038212801 -62.9674858628363978 22.2478844133211986 -12.3132826772054003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467078101057536 2481467078101057536 46927276 2015.5 25.1325432126823998 0.309198677499703978 -2.76021062767555003 0.194697299589073003 -0.143771280234524013 0.323945653157315994 -0.443812969999999973 7.01470954733555985 0.925619008352960959 -1.83785427057626993 0.448395515452019999 -0.0801393700000000014 -0.138274709999999995 0.38042189999999998 -0.147546320000000009 -0.189589960000000002 -0.0611743100000000026 0.182670379999999993 -0.406022800000000017 0.105386785999999996 -0.131978679999999987 129 0 127 2 2.25660749999999988 159.953003 0.798539757460444033 2.24993902384604993 31 false 0.329819980000000013 1.58088411435928 0.0723357661160155957 -0.0517700050000000009 15 9 0.830550600000000028 0 15 true 124 702.706599163298961 2.09553398039546979 335.334991 18.5714299999999994 13 420.247495783446027 15.6722221955115 26.8148000000000017 18.792625000000001 12 473.249733520133987 7.83741087862726982 60.3834269999999975 18.0741939999999985 1.27150819999999998 0 0.718431500000000001 0.221195219999999998 0.497236249999999991 \N \N 0 \N \N \N NOT_AVAILABLE 150.762580383567013 -62.9484156893861027 22.2559908170941014 -12.2939856509639007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467490417917440 2481467490417917440 314752378 2015.5 25.1481137470348983 0.0812366687927643938 -2.74067679535101005 0.0547070067390647979 0.264878589727245983 0.0897572124973984031 2.95105620000000002 14.2398450098145997 0.234605819471777 -5.65088891491831014 0.117335568069760005 0.0170742870000000005 -0.110158876000000003 0.308709500000000026 -0.0654660199999999998 -0.242970240000000004 0.0220645299999999989 0.180709750000000002 -0.365758499999999986 0.0752611200000000008 -0.0211917809999999998 142 0 142 0 1.59060399999999991 164.298004 0.155061958888704998 0.807268877519994987 31 false 4.23616270000000039 1.65356329021274995 0.0183756537903661012 -0.0653634200000000054 16 9 0.216035110000000002 0 16 false 137 4724.29809021317033 4.71909616100325024 1001.09998 16.5025230000000001 16 2794.59152358867004 15.3549187601864006 181.999760000000009 16.7355920000000005 15 2938.55163247631981 16.7767543663760001 175.156139999999994 16.0915870000000005 1.2135438999999999 0 0.644004800000000044 0.23306847 0.410936360000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.775800819486989 -62.9241819705770027 22.2781554422914994 -12.2815584843558003 100001 6559.24023 6384 6807 0.1655 0.0432999991 0.314599991 0.0850000009 0.0219000001 0.167600006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466420970632320 2481466420970632320 1487531781 2015.5 25.169532186981499 0.282832282996841988 -2.77656545354646989 0.18592943677628701 2.7259822943139902 0.297561149528001001 9.16108200000000039 3.87876531066992003 0.878999513522899956 -32.4591702886958018 0.364556241427355987 -0.0292213430000000003 -0.177487950000000005 0.410609539999999995 -0.0928267799999999976 -0.155112429999999996 -0.00637887000000000003 0.407566250000000019 -0.455352749999999973 0.110486550000000003 -0.163512350000000001 134 0 133 1 1.07333269999999992 145.225998 0.388257381018226988 0.492774939864770001 31 false 0.395092759999999987 1.19221913255300005 0.0595060506304080986 -0.0463205279999999997 15 9 0.790476859999999948 0 15 false 130 697.61172722646495 2.17971209936421007 320.048004 18.5793299999999988 11 142.410844482778998 14.4357129155000994 9.86517500000000069 19.967531000000001 11 907.717966013794012 11.8139783422255 76.8342360000000042 17.3670429999999989 1.5053198000000001 0 2.6004887000000001 1.3882007999999999 1.21228789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.851412374061994 -62.9478922529805018 22.2849750482209998 -12.3228051449865994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466661488805760 2481466661488805760 320303650 2015.5 25.1731978557656007 0.299749145415732998 -2.76325662109583003 0.21031963808071899 1.2425360454107699 0.326513961712333989 3.80546069999999981 22.4028784045096003 0.844424561973263987 -9.47688157896589978 0.398208702610313992 0.0802437740000000038 -0.0634106549999999963 0.232056259999999986 0.0655196599999999935 -0.254028619999999983 0.156911760000000011 0.340946640000000023 -0.340966580000000019 -0.00979134199999999975 0.0585248770000000029 139 0 137 2 2.1946428 170.175003 0.658905733205833011 1.22915012244737998 31 false 0.291582969999999997 1.41123400396554999 0.0653474561522385949 -0.0345504359999999969 16 9 0.751224800000000026 0 16 false 135 591.753292671742997 2.50328914084182985 236.389999 18.7580150000000003 13 175.31422375713899 26.7662322705335995 6.54982799999999976 19.7418459999999989 14 705.611864825836051 9.33017731496826919 75.6268500000000046 17.640505000000001 1.48867119999999997 0 2.1013411999999998 0.983831400000000023 1.11750980000000011 \N \N 0 \N \N \N NOT_AVAILABLE 150.846522304969 -62.9342693949572975 22.2934786559772995 -12.3117819809598004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466386611208960 2481466386611208960 982257823 2015.5 25.1988827030410008 1.10410662875330989 -2.7784174195007898 0.685701810831475966 4.51654424976749969 1.1112620186578599 4.06433770000000028 12.7372190322169008 2.61341757150283982 3.92554970009951987 1.27258599824369001 -0.0145405949999999999 0.151115159999999998 -0.137640060000000009 0.109817885000000004 0.0146215110000000002 0.116659159999999998 0.102103579999999999 -0.0488061399999999979 0.112827640000000007 -0.0347756300000000018 129 0 128 1 3.23132010000000003 180.100006 3.21624827671032998 2.84383701903405006 31 false 0.0238000319999999987 1.08572047517344994 0.245768256773953003 -0.0631570899999999991 15 9 2.29784999999999995 0 15 false 129 131.947569620863987 1.44946462187228997 91.0318985 20.3873619999999995 13 35.6939268440293986 4.68864160611354031 7.61284999999999989 21.4699020000000012 15 196.457624233916988 9.61999670731701961 20.4217970000000015 19.0287480000000002 1.75942270000000001 0 2.44115450000000012 1.08254049999999991 1.35861399999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.911670910802997 -62.9373319168234033 22.3121733526195989 -12.3353287071221001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466558411046272 2481466558411046272 1632157601 2015.5 25.1937610537044989 1.3049160905221 -2.7600627499233199 0.853480367609220969 3.55815426898492015 1.18868649965462003 2.99334960000000017 -3.21034303090713991 3.25984145770935996 1.61167466348785005 2.12088815788031004 -0.129108319999999999 0.0663895760000000057 -0.231167330000000004 0.181417849999999992 0.0189800780000000009 0.193537879999999995 -0.227151020000000009 -0.0660983849999999956 -0.135884749999999999 0.0150866309999999997 97 0 97 0 0.731120600000000009 101.564003 0 0 31 false 0.0222948599999999997 1.60099084197915009 0.345484822333882002 -0.0628987550000000006 11 7 2.88066999999999984 0 11 false 97 89.3490186821012031 1.29561343886715008 68.9626999 20.8106399999999994 8 38.4203883361874006 6.3664022664400699 6.0348670000000002 21.3899839999999983 9 138.126643415307001 8.61229174718656054 16.0383150000000008 19.4112259999999992 1.97592579999999995 0 1.97875789999999996 0.579343799999999964 1.39941409999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.884604889604987 -62.9227939688309021 22.3142271446291005 -12.3163804060545008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466734503673600 2481466734503673600 310399265 2015.5 25.164950625972299 0.0272872284977002007 -2.75586973913629008 0.0202422338868328 1.00339034814545003 0.0305761642054842991 32.8160969999999992 9.15758418506857019 0.0724867175673941933 -5.24620303516219 0.0467261945075050991 0.103553099999999995 0.0458821839999999995 0.23919934000000001 0.00265053570000000011 -0.207863959999999987 0.0422265120000000008 0.0299981589999999999 -0.3019154 0.0106759590000000005 0.186195019999999989 134 0 134 0 -2.74910280000000018 89.1673965 0 1.76945834017684e-15 31 false 72.0312650000000048 1.60693277516817989 0.0071252494466296501 -0.0462617170000000008 15 9 0.0784115499999999965 0 15 false 132 58791.2498798188972 25.7190397185657993 2285.8999 13.7650839999999999 14 31561.6152902354988 48.9821576991571987 644.349240000000009 14.1034900000000007 14 39273.6565311016966 39.2718129092352015 1000.04693999999995 13.2766669999999998 1.20486080000000007 0 0.82682323000000002 0.338405599999999973 0.488417629999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.82329893331999 -62.9309902441207001 22.2884264282538993 -12.3018794659801998 100001 5815.5 5784.25 5851 0.735000014 0.495000005 0.943499982 0.3917 0.351900011 0.47209999 200111 1.4942702000000001 1.47619269999999991 1.51045969999999996 2.30091830000000019 2.13156679999999987 2.47027000000000019 +1635721458409799680 Gaia DR2 2481466592769332352 2481466592769332352 1612485939 2015.5 25.2007062916118016 0.353225040569419002 -2.75255978828832015 0.199685422613294999 -0.331286463170668011 0.331544434460196991 -0.999221899999999996 0.243162637913917012 0.769713864963258998 -9.0245590184408595 0.365970193582319026 -0.152318160000000008 0.21450263 -0.112125050000000004 0.0938202900000000006 -0.168518869999999987 0.116621440000000007 0.108567469999999999 -0.0472691000000000014 0.106829980000000005 -0.036153051999999998 132 0 130 2 1.4741690999999999 149.037003 0.749424121085422001 1.51646322828801994 31 false 0.277241259999999989 1.57704096800859994 0.0700477453558099039 -0.145248829999999995 15 9 0.678235900000000003 0 15 false 129 587.239116265311964 2.03732876647200012 288.23999 18.7663289999999989 12 286.975861389666022 12.4633973219316996 23.0254919999999998 19.2067760000000014 13 431.375716667640006 13.4352153162123997 32.107838000000001 18.1747799999999984 1.22326929999999989 0 1.03199580000000002 0.440446850000000001 0.591548900000000044 \N \N 0 \N \N \N NOT_AVAILABLE 150.89156562382999 -62.9130791997018974 22.3236575089959004 -12.3119608468508996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466798927764992 2481466798927764992 759207928 2015.5 25.1936419208571998 0.333368698538234975 -2.74362764248157998 0.20947750546435201 0.155786599747141014 0.320437665919510006 0.486168180000000005 9.54693421494656924 0.821336582127126014 -13.0271240299042006 0.387837290434335014 -0.0453124800000000022 0.0527164450000000007 -0.145187989999999989 0.112841259999999999 -0.0388495140000000017 0.143360760000000004 0.142582089999999995 -0.0414829099999999978 0.107088420000000004 -0.0466755100000000034 131 0 130 1 2.52501499999999979 168.509995 0.521836646598983989 0.609984836603509994 31 false 0.258053719999999986 1.54572879503149996 0.0679949437486842001 -0.0826918100000000045 15 9 0.724394259999999957 0 15 false 127 502.379870527894013 2.02098764398702002 248.580994 18.9357849999999992 14 199.723046727644999 9.1292110376703306 21.8773610000000005 19.6003170000000004 14 470.529067774604016 12.6490069134319008 37.1988950000000003 18.0804539999999996 1.33415400000000006 0 1.51986310000000002 0.664531699999999947 0.855331399999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.869295133609995 -62.9079098415002989 22.3203111711369004 -12.3010574261314005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466798929212288 2481466798929212288 113636928 2015.5 25.1923722916232009 2.83346858898597009 -2.73569133935632003 6.94196737002056974 \N \N \N \N \N \N \N -0.150561080000000014 \N \N \N \N \N \N \N \N \N 51 0 50 1 3.20311950000000012 81.7441025 8.25890094789298956 3.80653705267774001 3 false 0.0065170829999999999 \N \N 0.200665100000000013 6 5 37.2382130000000018 0 6 false 52 78.1919365273023033 1.86778839083749992 41.8633995 20.9554620000000007 3 16.0352018970307988 8.29950387709052961 1.93206750000000005 22.3387010000000004 5 136.657854744826011 17.4437092512984009 7.83422000000000018 19.4228340000000017 1.95279800000000003 1 2.91586690000000015 1.38323970000000007 1.53262710000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.859492487837997 -62.9012271547753983 22.3220968262292985 -12.2932120927594006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454261918647680 2481454261918647680 907561923 2015.5 25.2170649576850998 0.128292038667520009 -2.82585449494975016 0.0940708059905327049 3.31918954169290981 0.142236227036022012 23.3357540000000014 1.06413249799665 0.306606645050451987 -2.40491057243974993 0.184847567296989007 -0.0227170850000000014 0.201406499999999988 0.180902389999999996 -0.065876870000000004 -0.0920083800000000007 -0.120990819999999999 0.203385619999999989 -0.156901800000000008 0.203593240000000009 -0.0975542400000000004 161 0 161 0 1.36448680000000011 180.628006 0.260047012372779995 0.753298409700961957 31 true 1.21660339999999989 1.32552313094296004 0.0295865851875108006 -0.0009970262000000001 18 10 0.275355640000000013 0 18 false 161 1643.03502119523 2.51599752388644005 653.034973 17.649248 15 315.184372866676995 10.7005389935459991 29.4549999999999983 19.1049770000000017 15 2077.20568687920013 10.2660825729026008 202.336749999999995 16.4682220000000008 1.45607970000000009 0 2.63675499999999996 1.45572849999999998 1.18102649999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.991615256410995 -62.9728110912967978 22.3115646726699985 -12.3861197189039007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454738659584128 2481454738659584128 287430289 2015.5 25.218451610642699 0.590310669666347043 -2.78479323080457997 0.395466117055879973 0.433250488232149011 0.682990912699199981 0.63434296999999995 1.80247253062252 1.45725410041594006 2.45405559798525008 0.715231631644696053 0.0864681300000000042 -0.0461578440000000034 -0.10141058 -0.0261226950000000013 -0.317976270000000005 -0.0407726470000000021 0.00867924200000000021 0.063926860000000002 0.267293800000000026 0.0802527100000000049 141 0 140 1 1.62606840000000008 162.764008 1.42402546444435996 1.57510492840604011 31 false 0.0728259599999999951 1.37748653599461002 0.125746951551227004 -0.0149026490000000005 16 8 1.28057529999999997 0 16 false 139 242.722484084170986 1.73503567774442002 139.895004 19.7255900000000004 11 74.9895251687666047 8.90780901052593954 8.41840299999999964 20.663886999999999 12 248.413801849189014 11.0083793654125 22.5658840000000005 18.7739809999999991 1.33239949999999996 0 1.88990590000000003 0.938297300000000001 0.951608659999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.956552884849003 -62.9349460354083021 22.3283698420439016 -12.3484569148135996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528550045130880 2505528550045130880 840236276 2015.5 26.1357124587323995 2.26316023954667989 -2.07598175447885014 1.74977691819132009 \N \N \N \N \N \N \N 0.142208780000000007 \N \N \N \N \N \N \N \N \N 115 0 114 1 34.3508530000000007 1805.20996 13.1868500388679006 124.219777692058997 3 false 0.00526413649999999973 \N \N 0.0377894679999999997 15 10 4.59858269999999969 0 15 true 128 274.006869999854985 3.11314636842317993 88.016098 19.5939620000000012 10 274.295976282787024 8.26312164774592084 33.1951999999999998 19.2558399999999992 12 800.974431197430022 11.5486931782048998 69.3562849999999997 17.502872 3.92424600000000012 0 1.75296779999999996 -0.338121400000000016 2.09108919999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.094359093750995 -61.9030404604795024 23.4665543001375987 -12.0251475712966993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454498142956928 2481454498142956928 1677850280 2015.5 25.2425864818253984 1.81179874409363006 -2.79062232249403985 1.05258822632052995 -0.525790550153277025 1.36255931145010001 -0.385884520000000009 10.4239434456476996 3.98715363815909996 7.71558485497913971 2.44432370544117994 -0.340513349999999992 0.0781463000000000019 -0.440365820000000019 0.300092220000000021 -0.0237782500000000008 0.308919339999999987 -0.388898200000000027 0.0634309400000000051 -0.0602384730000000007 -0.131195160000000005 87 0 86 1 -0.645943049999999963 72.4329987 0 0 31 false 0.0187460560000000005 1.27435493766859009 0.350935757955457006 -0.179872069999999995 10 7 3.6523447 0 10 false 85 85.0419810533935987 1.24145926588938993 68.5016022 20.8642830000000004 7 25.9111891469862989 6.57727837692401973 3.93949999999999978 21.8176689999999986 9 132.223363750288001 19.3102131647195989 6.84732800000000008 19.4586490000000012 1.85948810000000009 0 2.35902019999999979 0.95338630000000002 1.40563389999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.010021811114996 -62.9301375748582998 22.3491143322032002 -12.3627559437671 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455975610290048 2481455975610290048 592363562 2015.5 25.2497448945243015 1.93367600449348997 -2.78223400427149992 1.22497160351330003 \N \N \N \N \N \N \N -0.255256800000000006 \N \N \N \N \N \N \N \N \N 80 0 80 0 -1.03455279999999994 62.4376984 0 0 3 false 0.0160153199999999996 \N \N -0.131002410000000014 10 8 4.89703800000000022 0 10 false 82 90.2449349155381952 1.48018652645707993 60.9686012 20.7998089999999998 7 50.6266979238735004 11.3591787763102996 4.45689769999999985 21.0904389999999999 9 88.1112240031056047 16.3210665793253007 5.39861900000000006 19.8993420000000008 1.53734860000000007 0 1.19109730000000003 0.290630339999999987 0.900466899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.01655196509401 -62.9195238416016025 22.359082261930201 -12.3575908005854007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453677803094784 2481453677803094784 652562411 2015.5 25.2636589116949999 0.0723242519453184962 -2.81097713328632981 0.0504422392388869031 1.01443315785593002 0.0814842450330526963 12.4494389999999999 4.23970092973589008 0.17148399032650799 -2.58895762338918001 0.0982686510490202031 0.103727736000000001 0.189063150000000013 0.0422815419999999983 0.00291757290000000009 -0.0357997529999999967 -0.0377334880000000025 0.00851215699999999936 -0.114561179999999999 0.190652490000000008 0.038471459999999999 143 0 143 0 2.52499319999999994 183.535004 0.190803532672572995 1.39032679845436991 31 true 4.6740636999999996 1.54129208874903001 0.0177103812317167993 -0.0158510450000000011 16 9 0.156785859999999999 0 16 false 141 5394.87156671466983 4.80169721288083995 1123.53003 16.3584139999999998 14 2228.90828631431987 14.4912592412498 153.81053 16.9811569999999996 14 4538.00442148748971 17.4016655273346998 260.779879999999991 15.6197579999999991 1.25432319999999997 1 1.36139969999999999 0.622743599999999953 0.738656039999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.070786259074993 -62.9397759153316017 22.3614719978852001 -12.3894319352436995 100002 4833 4636.02979 5000.97021 0.60799998 0.326000005 0.772800028 0.296999991 0.153600007 0.372599989 200111 0.695866100000000043 0.649906459999999964 0.756251450000000047 0.238019910000000001 0.198159680000000005 0.277880130000000003 +1635721458409799680 Gaia DR2 2481455082258610816 2481455082258610816 989796424 2015.5 25.296497709307399 6.02049955709749973 -2.80599939186721015 2.20405053107942983 \N \N \N \N \N \N \N 0.0634602699999999992 \N \N \N \N \N \N \N \N \N 41 0 41 0 -0.263989839999999976 33.1707993 0 0 3 false 0.0162538329999999988 \N \N 0.205102580000000007 5 4 9432.86599999999999 0 5 false 42 75.9095540855192041 1.74336321337100997 43.5419998 20.9876250000000013 4 48.7722916843046974 17.294038134796299 2.82017950000000006 21.1309550000000002 5 138.208999986623013 12.3322726298505003 11.2070989999999995 19.4105799999999995 2.46321149999999989 0 1.72037510000000005 0.143329619999999991 1.57704540000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.131573653536009 -62.9214629763835021 22.3945706491527012 -12.3968828301093001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455116618347904 2481455116618347904 1270196939 2015.5 25.2960060657071004 8.97118082333989086 -2.80004870498100011 7.16845780629182983 \N \N \N \N \N \N \N 0.877870499999999998 \N \N \N \N \N \N \N \N \N 41 0 41 0 1.38676519999999992 48.2803993 4.94507795442816978 1.22780763797006998 3 false 0.00910222599999999972 \N \N 0.142269699999999999 5 4 29357.2099999999991 0 5 false 42 68.3915382543629988 1.43603888132789992 47.6250992 21.1008600000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.125092039816991 -62.9162721392107969 22.3963466211108013 -12.3911694218499004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454777314721920 2481454777314721920 793666575 2015.5 25.2246261984522988 0.126576352972489009 -2.77438269519453984 0.0853153460793737023 0.288367464139829 0.137061179896327989 2.10393240000000015 -0.873816235984998024 0.314773441511840002 -0.753389679393981049 0.162790803045502003 0.0677618999999999999 0.105098456000000007 -0.012519535 0.0431783050000000002 -0.0649925600000000048 0.0354621599999999995 0.104147315000000004 -0.108081943999999999 0.150148350000000014 0.0132438750000000004 142 0 141 1 -0.272827099999999989 130.899002 0 0 31 false 1.5082530999999999 1.63061435250419007 0.0290220674528074984 -0.0164778879999999996 16 9 0.280277549999999986 0 16 false 140 1773.99187021887997 3.36847140861479 526.645996 17.5659869999999998 16 865.323765844438981 8.20673676809042085 105.440669999999997 18.0084419999999987 16 1335.71108284142997 11.2504430509192996 118.725200000000001 16.9476399999999998 1.24072429999999989 0 1.06080250000000009 0.442455299999999996 0.618347169999999946 \N \N 0 \N \N \N NOT_AVAILABLE 150.959282339177008 -62.9229097502147994 22.3381648989252994 -12.3410503417384998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466524049852800 2481466524049852800 9698154 2015.5 25.2139688971303997 0.521988353086941026 -2.76079571964513004 0.313458698590732998 0.156015050190881993 0.574810737092261048 0.271419850000000018 4.01325558534024029 1.17168617342827996 -3.05936605309352005 0.54316990167097301 -0.0717656099999999936 0.0707051000000000068 -0.145045790000000008 0.0161989760000000003 -0.355128849999999996 -0.0315419099999999994 0.000853062259999999963 0.128239870000000006 0.269616960000000017 0.0494427159999999977 124 0 124 0 2.85668230000000012 167.895004 1.19229883782964996 1.68809736258560994 31 false 0.12678028999999999 1.48672458007308994 0.101711514258132005 -0.100226015000000002 14 8 1.03252509999999997 0 14 false 124 367.226062230358991 2.01166963500728979 182.548004 19.2760309999999997 13 140.573314674212014 10.5941820783982994 13.2689160000000008 19.9816299999999991 13 301.123598531161008 10.1869349168553001 29.5597840000000005 18.5650580000000005 1.20279289999999994 0 1.41657260000000007 0.70559883000000001 0.710973740000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.925556665577005 -62.9150239680717007 22.333157946178499 -12.3244975992163006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466524049852544 2481466524049852544 532802562 2015.5 25.2231391843463015 0.226676574606565012 -2.76181888478113002 0.148290204947205989 2.35097195874539011 0.237139985693626987 9.91385700000000014 36.0293675671893965 0.558803492830967974 3.92607997932642006 0.279377331102684978 0.0182994060000000007 0.0975930400000000059 -0.0081152499999999992 0.0526567699999999986 -0.117618390000000003 0.0603130299999999966 0.145569859999999995 -0.105089290000000002 0.134283860000000005 0.000830363370000000017 150 0 150 0 0.518496700000000033 153.317001 0 0 31 false 0.455438969999999999 1.25062344754261989 0.0488801757703450981 -0.0570508730000000019 17 9 0.492418199999999973 0 17 false 149 708.736836036493969 2.05144923654020994 345.480988 18.5621529999999986 16 168.935793981601989 12.2398528649362994 13.8021100000000008 19.7820840000000011 15 848.603075934278991 8.83132296774683923 96.0901400000000052 17.4401590000000013 1.43570759999999997 0 2.34192469999999986 1.21993060000000009 1.12199399999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.944768054539992 -62.9121213177022014 22.3414886870152003 -12.3288228323148008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468005813993088 2481468005813993088 1173943856 2015.5 25.2238710809408992 0.0591837766723481012 -2.75841544067767019 0.0420991642889178008 1.75033880391091001 0.0638654037962790022 27.406680999999999 37.9333963088634007 0.142058447577376012 -13.4824140754972994 0.0905675805017961966 0.0518489199999999997 0.139918160000000014 0.0331962400000000019 -0.0149806095000000004 -0.15293372999999999 -0.0338413939999999969 -0.131084160000000005 -0.0952966400000000019 0.154095989999999988 0.106268899999999999 143 0 142 1 0.66974144999999996 147.686005 0.0907981017388236056 0.389383977819083016 31 false 6.91328299999999984 1.46598608825707011 0.0149735152657922994 -0.057960763999999998 16 9 0.133119089999999995 0 16 false 142 6760.99021491154963 5.08833237733407007 1328.71997 16.1133400000000009 15 2492.49607490103017 12.7554205376709007 195.406810000000007 16.8598019999999984 16 6208.96027150854025 16.3203091783102998 380.44380000000001 15.2793729999999996 1.28700909999999991 0 1.58042909999999992 0.746461869999999972 0.83396720000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.943098480244004 -62.9087242877173978 22.3434675939666008 -12.3259279595680002 100001 4335.33008 4230 4396 0.406500012 0.282000005 0.664399981 0.199699998 0.137899995 0.345999986 200111 0.614724399999999949 0.597874640000000013 0.645720799999999984 0.120266780000000004 0.110916200000000006 0.129617359999999987 +1635721458409799680 Gaia DR2 2481455979905564928 2481455979905564928 909999045 2015.5 25.2486669955384997 0.130271230003282001 -2.78001798315791016 0.0791753058252716024 0.413222577835336002 0.141852419207887992 2.91304559999999979 4.9820772612949904 0.276198190709106006 -2.69248727786879982 0.148089947686959988 -0.000763434799999999957 0.343323350000000027 0.0628982599999999975 0.0366176329999999967 -0.0689955399999999941 -0.0347101900000000019 0.0784305260000000004 -0.0792687499999999989 0.193534960000000006 -0.006562254 133 0 133 0 0.780728639999999974 140.192993 0 0 31 true 1.83307970000000009 1.65029834264266007 0.0284100692231166012 -0.0637289199999999945 15 9 0.245796500000000001 0 15 false 133 2157.35860078027008 3.15721053475663016 683.312012 17.3535600000000017 15 1258.07897647820005 20.4738466304538989 61.4480999999999966 17.6021180000000008 15 1406.25392377065009 13.3114429005022998 105.642489999999995 16.8917600000000014 1.23499770000000009 0 0.710357670000000052 0.248558040000000008 0.461799620000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.012363419893006 -62.9179637770040969 22.3588931050162003 -12.3551340265650005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456284849359872 2481456284849359872 658510728 2015.5 25.2471735240643014 1.64698437499665995 -2.7591279554651198 1.65021465528347999 \N \N \N \N \N \N \N -0.223855360000000003 \N \N \N \N \N \N \N \N \N 76 0 76 0 0.751356400000000035 79.6134033 1.21518486756385991 0.128727880211645995 3 false 0.0169470590000000004 \N \N -0.0693035300000000021 9 7 6.68945260000000008 0 9 false 78 94.1686172636014049 1.65453773224011003 56.9154015 20.7536009999999997 7 74.0011656199820038 23.0735964027470999 3.20717950000000007 20.6782910000000015 7 84.8848401898370071 7.76028231323940965 10.9383700000000008 19.9398440000000008 1.68724999999999992 0 0.73844719999999997 -0.0753097499999999948 0.813756939999999984 \N \N 0 \N \N \N NOT_AVAILABLE 150.990157558107995 -62.8996238983983034 22.3653491738435015 -12.3351629741389992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468070238082944 2481468070238082944 884959899 2015.5 25.2147645131169007 0.399571446825971011 -2.74786381202980978 0.257282844093279006 1.22101828431573001 0.406186500561660002 3.00605339999999988 7.9005739597478799 1.00010795504747008 -2.20881020626379998 0.477026460836328992 0.000438154730000000017 0.0832718399999999997 -0.0327654900000000013 0.0806602800000000009 -0.0934272399999999947 0.102463100000000001 0.202708319999999997 -0.117150283999999993 0.104945099999999999 -0.020283836999999999 149 0 149 0 1.48881609999999998 170.026993 0.44515613640412699 0.278145845100607025 31 false 0.151802169999999986 1.43331019814473004 0.0875209894877841954 -0.0679884250000000051 17 9 0.878674269999999979 0 17 false 147 338.49666530252 1.43723848769985008 235.518997 19.3644800000000004 14 80.4875117306360011 7.79130883899130033 10.3304220000000004 20.5870670000000011 14 388.803354586415026 9.92448856153128034 39.176160000000003 18.2875960000000006 1.38639739999999989 0 2.29947100000000004 1.2225876 1.07688329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.915267846004014 -62.9029446017843981 22.3387900038768983 -12.3127677433054004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468001518604928 2481468001518604928 1252789329 2015.5 25.2255635709011017 0.350793192836996004 -2.75450005828156019 0.218769014272834988 0.679759973366454995 0.351624871780134018 1.93319649999999998 8.24815898457173979 0.907592917518255993 0.650426993424277011 0.41382425143836099 0.00439386440000000007 0.0340945299999999979 -0.154469789999999996 0.0639796900000000057 -0.0837789550000000022 0.0693934900000000021 0.126896229999999999 -0.0234305320000000004 0.139602110000000001 -0.0350681249999999986 141 0 139 2 2.31705210000000017 174.826004 0.958189340258332023 1.91706640663532002 31 false 0.217078720000000003 1.56701944334877008 0.0737029298842006991 -0.0841920500000000044 17 9 0.799264850000000027 0 17 false 146 509.092454703624981 1.9781641968002901 257.355988 18.9213729999999991 16 191.271456770107989 7.00835659366270036 27.2919119999999999 19.6472629999999988 16 477.224394656017012 11.3041581923873 42.2167129999999986 18.0651130000000002 1.31311289999999992 0 1.5821495000000001 0.725889200000000012 0.856260299999999974 \N \N 0 \N \N \N NOT_AVAILABLE 150.94287225941099 -62.9044607796025019 22.3465525342387998 -12.3229105362045992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468070239565696 2481468070239565696 661104429 2015.5 25.2135481370208012 1.13539597090650002 -2.74046482299648009 0.791405789046662034 1.86520569895597998 1.10753135277091008 1.68411099999999991 -2.56298550948694004 2.66695512921400013 -6.41720657018148 1.8915115477248301 -0.0340097399999999966 0.189750050000000003 -0.0767380599999999968 0.102153610000000006 0.0315337499999999993 0.0956334550000000061 -0.213692999999999994 -0.117802374000000001 -0.075994389999999995 0.0866655000000000064 101 0 99 2 -1.8481342999999999 70.3177032 0 0 31 false 0.0254424879999999992 1.30573231240712007 0.269225339810354014 -0.0208772249999999993 13 8 2.34931199999999984 0 13 false 101 102.099970406295995 1.29863036010428989 78.6212997 20.6658019999999993 6 45.5467428634636988 8.01812120651771032 5.68047569999999968 21.2052440000000004 9 121.927005853534993 8.20295953854824944 14.8637829999999997 19.5466699999999989 1.64029179999999997 0 1.65857319999999997 0.539442059999999945 1.11913109999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.906055622691014 -62.8967309291263987 22.3404233789111011 -12.3054414512149002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468070238086144 2481468070238086144 683595862 2015.5 25.2196289357083003 0.605583401963083023 -2.7388415239927002 0.37370020136333898 0.216476446669115002 0.615549903545855037 0.351679770000000003 3.40721562182371995 1.5733927885458201 5.64821266208095007 0.650606046154244 0.0222939220000000007 0.104907766 -0.22121629000000001 0.146830860000000007 0.135358570000000011 0.124101180000000005 0.245624809999999999 -0.0305956920000000007 0.159360269999999998 -0.112709396000000003 123 0 123 0 1.12844159999999993 135.466003 0.697975626683667971 0.354781884032893013 31 false 0.0885143060000000009 1.51019139437190009 0.131147884851632007 -0.088903220000000005 14 8 1.3895147000000001 0 14 false 123 235.070590889692994 1.61617501039971989 145.449005 19.7603700000000018 11 84.9719033389485929 10.9678208758324001 7.7473825999999999 20.5281999999999982 12 288.110036163934012 11.1813067241052995 25.7671169999999989 18.6130239999999993 1.58710599999999991 0 1.9151764 0.767829899999999954 1.14734650000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.916676467820992 -62.8927172729664008 22.346814966752099 -12.3061694796072008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468040173731200 2481468040173731200 73147648 2015.5 25.2298714427230983 0.0409706610206643021 -2.74485268811580996 0.0298665627409034004 2.76281450974977005 0.0430282997184840976 64.2092399999999941 -14.7926229096752007 0.0998094970683664068 -16.6408953072606991 0.0669634811348894937 0.0234451139999999995 0.171777999999999986 0.210086230000000013 -0.150103099999999989 0.012222241 -0.19829519000000001 -0.094116749999999999 -0.179402260000000008 0.230343309999999996 -0.0714752800000000021 129 129 128 1 4.03819100000000031 196.916 0 0 31 true 321.991899999999987 1.62923418379949991 0.0110865787369601003 -0.0573353399999999985 15 9 0.063354439999999998 0 16 false 126 257419.802091616002 56.1263900214458999 4586.43018 12.1617610000000003 16 144712.680492624 183.696660644708004 787.780700000000024 12.4501220000000004 14 164447.012199647987 200.61731652796999 819.704960000000028 11.7218549999999997 1.20099430000000007 0 0.728266700000000045 0.288360600000000022 0.439906120000000012 -0.611311061455594995 2.62268573383119996 7 6000 3.5 0 NOT_AVAILABLE 150.942589278349999 -62.8938981007868989 22.3542842836788012 -12.3155262192458999 100001 6388.66992 6002.7002 6830.45996 0.0560000017 0.0170000009 0.107600003 0.0295000002 0.00789999962 0.0546999983 200111 0.93271269999999995 0.815957999999999961 1.05651350000000011 1.30566380000000004 1.27655919999999989 1.33476839999999997 +1635721458409799680 Gaia DR2 2481468138957563776 2481468138957563776 726677138 2015.5 25.2407188407970011 0.114812780477510007 -2.73768406941593989 0.0754858859745008021 0.0681559461584557991 0.119454391251261005 0.570560399999999968 -0.186702243921292005 0.298564320684676976 0.268569954789719012 0.150678651077155001 -0.0339033119999999979 0.0105445550000000006 0.0285540580000000002 -0.0249635609999999987 -0.0354951729999999979 -0.0338553099999999996 0.0987860859999999952 -0.139184609999999986 0.199420970000000003 -0.119984720000000003 132 0 131 1 0.589270799999999983 134.889008 0 0 31 true 2.04697849999999981 1.67899336853822989 0.0265208278820293006 -0.119360839999999996 15 9 0.267880139999999989 3 15 false 131 2251.25223543252014 5.95871583209472 377.808014 17.3073039999999985 12 1422.94009928090009 11.5950411579488009 122.719710000000006 17.4684220000000003 12 1337.26432157686008 11.0237060482636995 121.308049999999994 16.9463769999999982 1.22607519999999992 0 0.522045140000000019 0.161117549999999998 0.360927580000000026 \N \N 0 \N \N \N NOT_AVAILABLE 150.957597902329013 -62.8828526057060984 22.3672972047461016 -12.3128518682433992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456387929789056 2481456387929789056 1045423249 2015.5 25.2499959465206985 1.01904382160789009 -2.74289769851829002 0.78759101041596502 -1.0723087454518001 1.03069814148634009 -1.04037130000000011 -0.100969043678488996 2.65868471168107989 0.0829934695180724047 1.87211423832589996 0.00773905540000000003 0.00880373700000000071 -0.187694610000000012 0.0687267260000000019 0.126901199999999992 0.0693284400000000051 -0.33900085000000002 -0.0398783570000000032 -0.0490155099999999982 0.019243940000000001 103 0 101 2 -0.336245120000000008 90.7721024 0 0 31 false 0.0284144380000000002 1.3702661619732599 0.268767267933950005 -0.0584909360000000003 13 8 2.33925960000000011 0 13 false 106 112.357993201523001 1.59103280232981992 70.6194992 20.5618550000000013 9 74.2596642878796018 5.2725542456526604 14.0841910000000006 20.6745049999999999 9 93.8840225815989982 18.3368544158723985 5.11996300000000026 19.8304399999999994 1.49649950000000009 0 0.844064700000000001 0.112649920000000001 0.731414800000000032 \N \N 0 \N \N \N NOT_AVAILABLE 150.980849503488997 -62.8837060113675008 22.3741502336851994 -12.3211115905469999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456284847822080 2481456284847822080 461353720 2015.5 25.2542019737526999 1.28431596072373 -2.75169481310866004 0.880528478853444985 -0.593622468996245045 1.18763897011863007 -0.499834119999999993 9.82582754702720962 3.48024737932728989 -19.2545183957078017 2.23043949690213994 -0.0898546699999999976 -0.0549433299999999986 -0.265044180000000018 0.108975169999999996 0.0305144840000000014 0.110843609999999995 -0.314953060000000007 6.71500299999999945e-05 -0.0347438300000000033 -0.0452907349999999986 97 0 97 0 2.73370399999999991 133.431 3.21090691429112995 2.01146208467732013 31 false 0.021762100999999999 1.68960756944152002 0.31645464997214201 -0.142779010000000012 12 7 3.07533300000000009 0 12 false 98 112.566796587373005 1.29401460706763993 86.9904022 20.5598400000000012 6 63.0146814420072019 16.5757923520877988 3.80160900000000002 20.8527829999999987 8 161.865970495753999 8.4479941682543096 19.1602840000000008 19.2390299999999996 1.99775299999999989 0 1.61375240000000009 0.292943950000000009 1.32080839999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.997308605014013 -62.8899326310247986 22.3748323411604986 -12.3308375959008991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456387927039232 2481456387927039232 1651001695 2015.5 25.2629063382018018 0.154959948803509995 -2.74351291459477986 0.105614309854408006 0.267420304677604026 0.173112230290842994 1.54478000000000004 2.07903516871966021 0.395064876461497017 -0.126293321446280998 0.196456338330432995 0.0608006940000000023 0.112968996000000002 0.0430395859999999977 0.0113622830000000008 0.0534651900000000027 -0.0454749700000000034 0.18618404999999999 -0.161099300000000001 0.227974900000000008 -0.0998468549999999982 133 0 133 0 0.179829660000000002 130.223007 0 0 31 false 1.06372669999999991 1.56842859353514008 0.0377788703296422015 -0.0460996740000000002 15 9 0.350813299999999995 0 15 false 131 1331.13024363783006 2.73955085043720992 485.894012 17.8778149999999982 10 683.161830737989021 5.59754943830051044 122.046589999999995 18.2650800000000011 12 933.164558315269005 10.9304161288503003 85.3731999999999971 17.3370250000000006 1.21425120000000009 0 0.928054799999999958 0.387264249999999977 0.540790560000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.007100128202012 -62.8788593175093027 22.3861905784951993 -12.3264322196367004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456319207560576 2481456319207560576 1625147820 2015.5 25.2757419040606983 4.17107927987566995 -2.75082338932267989 3.7518426891910801 \N \N \N \N \N \N \N 0.172971769999999997 \N \N \N \N \N \N \N \N \N 68 0 68 0 14.5442169999999997 405.575012 16.9264440654616983 28.0129473977671992 3 false 0.00274718650000000016 \N \N -0.0616586999999999968 8 6 7.1742309999999998 0 8 false 69 101.817235875777996 2.62308581468583979 38.8157997 20.6688119999999991 8 119.802537080785001 13.1017722015679006 9.14399500000000032 20.1552240000000005 7 212.001343816993 10.8188993444874999 19.5954629999999987 18.9460739999999994 3.2588184 0 1.2091502999999999 -0.513587950000000015 1.72273830000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.039357558419994 -62.8801161679666976 22.3956368074677989 -12.3379498352955004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456147408868224 2481456147408868224 674394900 2015.5 25.2881927036332996 0.154608828925120012 -2.75397906119698987 0.113353427192180001 1.03989260033462005 0.180130132910510998 5.77300740000000001 -4.37246496430851028 0.429310017051090009 -1.26853354073895996 0.207776556143718011 0.165144220000000008 -0.0377681549999999977 0.199360979999999993 0.0893316940000000032 -0.139201660000000005 0.131356210000000001 0.329379140000000015 -0.329289639999999995 0.0573459799999999978 0.0560803259999999998 125 0 125 0 2.07592679999999996 154.328995 0 0 31 false 1.14376490000000008 1.50318939978876998 0.036258103940518302 -0.00657495339999999984 14 9 0.384108749999999999 0 14 false 124 1449.61507138819002 2.35510531971171 615.52002 17.7852339999999991 12 611.883537598213024 8.92510425120715922 68.5575800000000015 18.3847160000000009 13 1227.42621896116998 10.7053257348612991 114.655659999999997 17.0394299999999994 1.26882640000000002 0 1.34528540000000008 0.599481599999999948 0.745803829999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.067022823157004 -62.8777571178584012 22.4062837908810017 -12.3454627423408994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467761000445440 2481467761000445440 253995234 2015.5 25.1346041682967005 0.908582371701654012 -2.72551296998681991 0.524982146905411007 0.989622749995922035 0.894856147806213031 1.10590150000000009 -4.11706521815219961 3.02668114907995012 -1.00498238858480993 1.3351233922454 -0.166937620000000009 -0.225434909999999988 0.403892670000000009 -0.14646344 -0.128688990000000003 -0.0638361000000000067 0.224327599999999988 -0.481741850000000027 0.043940350000000003 -0.211099160000000008 116 0 115 1 0.235188900000000006 112.846001 0 0 31 false 0.0481314099999999995 1.59937694906455996 0.207297973981192013 0.00420264900000000014 13 9 2.7114098000000002 0 13 false 114 152.759033914148006 1.50102529141309993 101.769997 20.2283480000000004 11 104.460763169423998 15.9811052599069008 6.53651669999999996 20.3040050000000001 11 119.467900454149003 12.643627154632 9.44886299999999935 19.5687919999999984 1.46589469999999999 0 0.735212300000000041 0.0756568900000000044 0.659555439999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.734990529197006 -62.916003544719203 22.2710363135971008 -12.2624890557155002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467627856941056 2481467627856941056 534360525 2015.5 25.1694511623342017 0.942453257160268953 -2.72733507165508993 0.667899838000615031 -0.476102785392640004 0.939995233606273017 -0.50649489999999997 -2.99287748546327004 2.55890430249004996 -4.81792980638604984 1.9388814969324899 -0.0250021279999999985 -0.139454710000000009 -0.072276644000000001 0.241867959999999993 -0.172420280000000009 0.21009702999999999 -0.133910799999999997 -0.204696280000000008 -0.243447109999999994 0.269187779999999988 93 0 91 2 -1.09601389999999999 71.8190002 0 0 31 false 0.0414708550000000009 1.98856954210326009 0.244698296979405011 -0.0692572000000000049 11 8 2.34010430000000014 0 12 false 92 139.469003930033011 1.5267095828858801 91.3526993 20.3271709999999999 6 50.872094598008097 11.9591974299175998 4.25380499999999984 21.0851900000000008 8 196.468132076735998 11.9108460417724995 16.4948939999999986 19.028690000000001 1.77344229999999992 0 2.05649950000000015 0.758018500000000039 1.298481 \N \N 0 \N \N \N NOT_AVAILABLE 150.806158525335007 -62.9031776858371998 22.3034639948341002 -12.2770087574724993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468349411376384 2481468349411376384 1232228050 2015.5 25.1890500110891011 0.216988656850457012 -2.72648094785640982 0.144529395957058993 0.566083404900110998 0.223005724608188988 2.53842539999999994 0.520924221309120972 0.594616418879704955 -2.03188240392886987 0.266580447755403016 0.0708332960000000039 -0.048607174000000003 -0.0824692199999999959 0.152420479999999997 -0.263399239999999979 0.252376229999999979 0.291799550000000019 -0.161228139999999992 -0.0562857760000000026 0.118205260000000006 131 0 130 1 0.761767569999999949 136.727005 0.310017697765942013 0.467265580962922977 31 false 0.635458300000000031 1.69265319159514993 0.0476026119028110026 -0.0765298459999999986 15 8 0.52726839999999997 0 16 false 130 954.620887153315948 2.27836726537332002 418.993011 18.2387890000000006 11 402.363644896367987 16.7067497128395992 24.0838970000000003 18.8398420000000009 12 807.026915824363982 9.81052314120968028 82.2613499999999931 17.4947000000000017 1.26688050000000008 0 1.34514240000000007 0.601053240000000044 0.744089099999999948 \N \N 0 \N \N \N NOT_AVAILABLE 150.844438075571986 -62.8942411040520994 22.3224119078129988 -12.2834269499029993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468349411396224 2481468349411396224 1361592110 2015.5 25.1857781881268004 0.965673141947766989 -2.72250383247734007 0.710293308406382051 0.41623535049704502 1.05566528602484011 0.394287229999999989 8.80192302814482019 2.91540305768958996 -12.1786499836666007 1.33365545370331007 0.0654935539999999955 -0.206589600000000012 -0.113706719999999997 0.317516030000000005 -0.591576600000000008 0.595200839999999953 0.521403900000000031 -0.407320650000000006 -0.483594750000000018 0.408384399999999981 96 0 93 3 1.73236440000000003 112.254997 1.85328879612141995 2.15970596608078003 31 false 0.0598502900000000004 \N \N -0.122628109999999999 11 7 2.66873620000000011 0 11 false 92 219.580333063774987 1.49177859119741996 147.194 19.834382999999999 9 85.0522484107267047 16.1806416979504988 5.25642000000000031 20.5271739999999987 9 274.674397247173999 8.91216662122170078 30.8201600000000013 18.6648749999999986 1.63824619999999999 0 1.86229899999999993 0.692791000000000046 1.16950799999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.834279135951988 -62.8919892157147018 22.3208018944395015 -12.2785256010210997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468310756373376 2481468310756373376 1256675984 2015.5 25.2127232330641 1.61750971884775008 -2.72251440345420992 0.977370433157565999 \N \N \N \N \N \N \N -0.372434399999999999 \N \N \N \N \N \N \N \N \N 83 0 82 1 0.33049489999999998 80.4860001 0 0 3 false 0.0225228519999999995 \N \N -0.124662480000000006 11 7 5.46435739999999992 0 11 false 85 98.6343249205816051 1.77817697776351991 55.4693985 20.7032950000000007 8 71.1273123444760955 13.6403911448300992 5.21446279999999973 20.7212959999999988 9 73.5081708425107934 9.39949395759943052 7.82043930000000032 20.0960800000000006 1.46638080000000004 0 0.625215529999999964 0.0180015559999999984 0.607214000000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.887955372795005 -62.8807667061066979 22.3464063068340018 -12.2884495493652004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468207677158144 2481468207677158144 899702071 2015.5 25.2291962680874988 0.935727596708890053 -2.72389526530899007 0.667864048986841041 0.533030669141881019 0.907526745055425965 0.587344300000000041 -2.15307996126067014 2.51857299309149019 -2.67981473028503014 1.74230046087561008 -0.0699696840000000042 -0.0387645770000000014 -0.106373350000000005 0.113167173999999995 0.0193432550000000002 0.101627949999999995 -0.238713619999999987 -0.12456652 -0.0791503340000000027 0.00568265470000000033 111 0 110 1 -0.036146774999999999 103.814003 0 0 31 false 0.0325573399999999971 1.59238093433871009 0.240449136910350997 -0.0639587340000000032 13 8 2.21148400000000001 0 13 false 111 119.563701138940004 1.16757613147038009 102.403 20.4943680000000015 8 92.8646458333932969 10.4554222755667006 8.88195999999999941 20.4317630000000001 8 80.9182180932970994 9.62940345761692917 8.4032429999999998 19.9918039999999984 1.45347509999999991 0 0.439958569999999993 -0.0626049040000000029 0.502563500000000052 \N \N 0 \N \N \N NOT_AVAILABLE 150.922011228792996 -62.8751444479476973 22.3615425308716986 -12.2957935248610006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468207677044480 2481468207677044480 19759198 2015.5 25.2298895253484012 0.554965122716215009 -2.72502254621548978 0.377586546169720982 2.01065504899136993 0.609388457019179985 3.29946349999999988 4.49078731413704979 1.44881330112492002 -3.85801133277982 0.710661757640275948 0.0603590719999999997 -0.0324774530000000033 0.0188942890000000016 -0.0115505309999999993 -0.148561300000000007 -0.00553607600000000002 0.140391600000000005 -0.106132729999999995 0.210856349999999998 -0.0338112399999999994 138 0 138 0 4.70372439999999958 224.464005 2.04015706927095986 4.03508463706656961 31 false 0.0777575149999999993 1.43801397565923006 0.125940148943184005 -0.0701105800000000057 16 9 1.2708695000000001 0 16 false 138 293.834175711513012 2.13492708316673996 137.632004 19.5181100000000001 11 122.449227755560003 9.38969573358327025 13.0408089999999994 20.1314980000000006 12 293.591533793962981 10.9528184040017997 26.8051129999999986 18.5925620000000009 1.41590320000000003 0 1.53893659999999999 0.613388060000000013 0.925548550000000025 \N \N 0 \N \N \N NOT_AVAILABLE 150.924424831202998 -62.8758788540364009 22.3617765464769001 -12.2970965991305992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468555569806336 2481468555569806336 971731421 2015.5 25.2697427573191007 0.0483988469467915988 -2.71950514696343015 0.0361503669223564028 0.914873204202337975 0.0535749676737835995 17.0765059999999984 14.2870361106678008 0.117837406933365002 -11.0269007879265004 0.0806162681055028058 0.103406206000000001 0.121268550000000003 0.0167221099999999984 0.0158401040000000007 -0.207437559999999993 0.0109995460000000007 -0.153749030000000009 -0.112651210000000002 0.0848159339999999956 0.231927319999999992 142 0 136 6 -0.591333030000000037 121.026001 0.0765158614930191022 0.413888438459877994 31 false 11.0114239999999999 1.58640681910221004 0.0125621790413518002 -0.0307268930000000016 16 9 0.11476836 0 16 false 135 10186.2849078918007 5.83355768223457982 1746.15002 15.6683260000000004 16 5005.77273962244999 24.6522288317638001 203.055589999999995 16.1027099999999983 15 7504.74388917150009 16.7275499561210985 448.645719999999983 15.0735810000000008 1.22817270000000001 0 1.0291300000000001 0.434384349999999975 0.594745639999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.998622494571009 -62.854200551835703 22.4017369131994002 -12.3066253468933002 100001 5270.66992 5012 5576.81006 0.1875 0.102499999 0.280999988 0.0967999995 0.057500001 0.137999997 200111 0.852697000000000038 0.761646869999999976 0.942982699999999952 0.505529340000000049 0.441105999999999998 0.56995267000000005 +1635721458409799680 Gaia DR2 2481454876098644864 2481454876098644864 66208804 2015.5 25.2999912594282996 0.240303527882180012 -2.82454399111465015 0.162885217602562998 1.44899979263247003 0.270451777623840983 5.35770130000000044 -17.0247539616558008 0.615735983659693953 -12.0470967596878999 0.308555164279520011 0.0445429830000000013 0.111645839999999996 0.0872367399999999932 -0.0226812199999999985 0.0236897709999999984 -0.0816460999999999992 0.174828829999999991 -0.180025309999999994 0.240550099999999989 -0.113138340000000004 132 0 129 3 2.10439899999999991 159.391006 0.598869235420394053 1.47115354141965993 31 false 0.449786399999999975 1.36887335057642989 0.0649999243551503958 -0.0349624749999999998 15 9 0.544602600000000048 0 15 false 132 792.104632006994052 2.94701033457956996 268.782013 18.4414100000000012 14 166.103855325853999 17.9502216997080986 9.25358199999999975 19.8004399999999983 14 1028.58150036753 11.5842946852321997 88.7910300000000063 17.2313229999999997 1.50824190000000002 0 2.56911660000000008 1.35902980000000007 1.21008680000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.155692422111997 -62.9368122205704026 22.3909004892562002 -12.4154092778396006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454876100190336 2481454876100190336 1400234759 2015.5 25.3014856734021016 1.0509535168431301 -2.81705484142691986 0.818637719780033968 2.34276332794350006 1.13857431565434997 2.05762890000000009 0.381775571002352987 2.43086503421716005 8.36416537738836041 1.89758135193550004 0.13153340999999999 0.249733750000000004 -0.0869654900000000064 -0.0727391800000000005 0.0792223700000000003 -0.10405681 -0.409799960000000019 -0.0929667349999999948 0.0178398500000000008 0.160811530000000008 102 0 102 0 0.807045800000000035 107.962997 0 0 31 false 0.0275493469999999983 2.02313224301181993 0.299923258529186998 -0.0158594119999999998 12 8 2.17909070000000016 0 12 false 101 119.226621062210995 1.37480900609047008 86.7222977 20.4974330000000009 10 47.857782338014303 13.5426274016651007 3.53386239999999985 21.1515060000000013 10 150.674551580600991 15.1706686277826996 9.93196499999999993 19.3168199999999999 1.66516780000000009 0 1.83468629999999999 0.65407369999999998 1.1806125999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.151732015926996 -62.9293914630206004 22.3951451407623985 -12.4089959666024008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455219696044416 2481455219696044416 737065452 2015.5 25.3083326483616986 1.40507965484777997 -2.7925960257940301 1.78634181792261004 \N \N \N \N \N \N \N 0.41517759999999998 \N \N \N \N \N \N \N \N \N 88 0 84 4 1.5156582999999999 98.8479004 2.48202377890630022 1.33759406739235009 3 false 0.0270934380000000009 \N \N -0.0203727600000000002 10 7 4.98265799999999981 0 10 false 82 135.283048946952988 1.91151252748369993 70.7727966 20.3602580000000017 7 93.3762725258349064 8.04120001498051984 11.6122309999999995 20.4257969999999993 6 75.9774067905253929 8.93339219605512014 8.50487700000000046 20.0602100000000014 1.25184699999999993 0 0.365587229999999985 0.0655384100000000053 0.300048829999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.142722928141012 -62.9043279704086018 22.4108760208604991 -12.3887734399755001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455254055660288 2481455254055660288 1145599396 2015.5 25.3309539745241992 0.259336355518118011 -2.78298864838629978 0.162285812748807989 1.66044881237486996 0.266314839007216975 6.23490900000000003 40.3814320549958978 0.637218228125842945 21.2416227451513002 0.30335911053092901 0.0710491699999999948 0.0451210500000000028 -0.31121053999999998 0.108875100000000002 -0.00907552900000000058 0.141271549999999996 -0.00549189500000000011 0.0967872699999999947 0.0953122799999999992 0.075155034999999995 123 0 122 1 0.116515644000000002 118.119003 0.0721593078995667048 0.0182187030821150016 31 false 0.469601600000000008 1.32270666013911997 0.0654773832928465943 -0.0470873799999999981 14 8 0.568627829999999945 0 14 false 122 677.053041493968976 1.85407810977128995 365.170013 18.6118090000000009 10 147.563959057527995 6.68901613848036991 22.0606369999999998 19.9289379999999987 13 859.463895530273021 18.7178412289570986 45.9168299999999974 17.4263520000000014 1.48736920000000006 0 2.50258640000000021 1.31712910000000005 1.1854572000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.178807253212995 -62.8860928809598008 22.4360057595242992 -12.3881586591668995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455288415389952 2481455288415389952 1263920220 2015.5 25.3008834225040005 0.0396132679504695023 -2.77580699707597001 0.0286395846246510002 1.70673558359486011 0.0436945219865288031 39.0606300000000033 -4.15888026387230969 0.0839133023250001053 4.95869759258954002 0.0602397173647592002 0.122827569999999997 0.342414260000000026 0.0208985039999999983 -0.0403019930000000012 0.00896961150000000033 -0.106640730000000003 -0.25443650000000001 -0.0619274039999999984 0.142658220000000002 0.132994090000000009 142 142 142 0 3.7190354000000001 207.362 0 0 31 true 259.938480000000027 1.62967017106914991 0.0103413198376140995 -0.0239856539999999986 16 9 0.0529200199999999982 0 16 false 139 190581.119959539006 40.8912300873926 4660.68018 12.4881659999999997 16 107212.176273157995 115.918968800760993 924.88900000000001 12.7757780000000007 16 121151.819052452003 98.1482960831718998 1234.37509999999997 12.0535960000000006 1.1982508999999999 0 0.722182300000000055 0.28761196 0.43457030000000002 -15.6783146836014993 2.19986304597329996 6 6500 3.5 0 NOT_AVAILABLE 151.112393715768007 -62.892231752595201 22.4101218970329015 -12.3704243539608996 100001 6128 5950 6825.0498 \N \N \N \N \N \N 200111 1.41537519999999994 1.14103099999999991 1.50132660000000007 2.54514720000000016 2.45229339999999985 2.63800100000000004 +1635721458409799680 Gaia DR2 2481456078689387904 2481456078689387904 1169892353 2015.5 25.2990412523251997 0.484521392514256022 -2.76451358724917995 0.32285675438757 1.75068281378506008 0.528361561812511038 3.31341809999999981 -5.03390769302334995 1.23727561269368991 -1.18839424718323006 0.569126792214652011 0.0633476600000000001 0.119809559999999996 -0.0254202299999999985 0.0881922249999999991 0.0891075659999999992 0.041637417000000003 0.2853155 -0.143487649999999994 0.19538432 -0.0969804400000000011 131 0 130 1 -1.09557499999999997 107.860001 0 0 31 false 0.115170404000000004 1.34977980911336992 0.111353939608352007 -0.0474880229999999973 15 9 1.0876733999999999 0 15 false 128 271.761266056093007 1.60250009273493998 169.585999 19.6028979999999997 9 103.363243001273005 18.0421782947047014 5.72897799999999968 20.3154739999999983 10 339.401331604125005 12.8355787635012994 26.4422299999999986 18.435137000000001 1.6292409000000001 0 1.88033680000000003 0.71257590000000004 1.16776079999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.098306005285991 -62.8827604146213019 22.4126270486063994 -12.3592467533061008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456491006372224 2481456491006372224 1628246314 2015.5 25.3276649161787013 1.14269293916204995 -2.74167454744278993 0.935842682588834962 0.758622680581697018 1.34515150293593 0.563968200000000031 -2.83682531450098985 3.59962020026565011 -0.330060958165501017 2.39207724278444989 0.0817844499999999947 -0.0749430100000000043 0.0890104850000000003 0.0535960700000000026 0.229235529999999993 -0.0163515379999999988 -0.105064329999999997 -0.349770799999999993 -0.12841147 0.0213797540000000008 95 0 92 3 0.695281860000000029 95.7848969 1.23874835596874999 0.224309451629198991 31 false 0.0219047500000000006 1.84263741183308993 0.310651790010189999 0.0371425900000000031 11 8 3.17416210000000021 0 11 false 93 99.229057263322801 1.57318831196562003 63.0750999 20.6967679999999987 9 66.4716444982748982 17.0419978370855993 3.9004607 20.7947980000000001 9 95.6576984727287964 12.451989421136 7.6821218 19.8101200000000013 1.63388979999999995 0 0.984678269999999967 0.0980300900000000003 0.886648199999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.134099312522011 -62.8500103327532997 22.4484467653348005 -12.3485358082930006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456491007947648 2481456491007947648 1110174848 2015.5 25.3299670332484013 5.13564761732737995 -2.74157101520130997 9.71868857480684056 \N \N \N \N \N \N \N -0.887055499999999997 \N \N \N \N \N \N \N \N \N 52 0 52 0 1.02982679999999993 56.9472008 2.89797295013072009 0.879349961480496045 3 false 0.016031051000000001 \N \N 0.0991804399999999947 6 4 2664.84180000000015 0 6 false 52 70.732023225849801 1.29204907328216989 54.7440987 21.0643250000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.138574272967986 -62.8489480998508014 22.4506744818949002 -12.3492858751612005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456598380874240 2481456598380874240 565852296 2015.5 25.3265433215413012 0.316683417796708999 -2.73352871043163015 0.215153989506646992 0.0775669206250142046 0.339282566065362001 0.228620409999999996 3.4477458699313801 0.768939176200573948 -2.88446345694987993 0.399275993298122023 0.112728529999999993 0.0937758499999999939 -0.174801679999999987 0.118489380000000005 0.0182784460000000003 0.143240420000000007 0.0470783379999999974 -0.00738407530000000003 0.0819396099999999961 0.0842696400000000068 134 0 133 1 0.668111600000000028 138.287003 0.381400372957080014 0.303895319266903996 31 false 0.251782059999999974 1.60784097375744994 0.0795766839994768993 -0.0148943749999999996 15 9 0.679440400000000055 0 15 false 133 467.600617126879001 1.64305100198191001 284.592987 19.0136779999999987 15 270.497700528617997 12.9070915080717992 20.9572929999999999 19.2709790000000005 14 292.283208664048004 8.99837919549826992 32.4817620000000034 18.59741 1.20355049999999997 0 0.67356870000000002 0.257301329999999995 0.41626740000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.124358087155997 -62.8430932571965002 22.4504494881316994 -12.3405494330544006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456594085474560 2481456594085474560 1391013137 2015.5 25.3359189097967992 0.180629002236591008 -2.72913852078897001 0.119384956800034997 0.741851000450853948 0.18933160542718 3.91826300000000005 1.48853971440859989 0.430308839042817026 -13.9259881203484994 0.225045072688674991 0.0550440999999999986 0.0494052660000000032 -0.244186669999999995 0.111819630000000003 0.0025806894999999999 0.143106309999999987 -0.0475163499999999989 0.0578229050000000008 0.0923830939999999989 0.0675335999999999992 124 0 124 0 1.34463639999999995 140.227997 0.221153246250329005 0.349697379971647015 31 false 0.874403200000000047 1.54445672058718997 0.0441219580915351989 -0.0425261779999999978 14 9 0.383981000000000017 0 14 false 123 1143.40931336830999 2.84037289468429988 402.556 18.0428619999999995 11 504.626513115926002 12.0038178727730998 42.0388340000000014 18.5939639999999997 12 945.446974286566046 15.8742037809234997 59.5587000000000018 17.3228259999999992 1.26820160000000004 0 1.27113720000000008 0.551101700000000028 0.720035549999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.138916894123014 -62.835168164596098 22.461017015896001 -12.3399139916473999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456667100350592 2481456667100350592 60221526 2015.5 25.3243742391208997 0.073575997773422594 -2.72343373272551981 0.0507666358768254986 1.04154066122449995 0.0787758516115433932 13.2215729999999994 14.3966347815470996 0.170547853514625009 -23.7104967035054983 0.100995821838773994 0.0633836700000000031 0.133376140000000004 -0.142372820000000011 0.0585478769999999982 -0.0215756539999999997 0.0556539149999999982 -0.134519680000000003 -0.00434568060000000041 0.121070810000000001 0.083189435000000006 125 0 125 0 -1.67530920000000005 95.2994995 0 0 31 false 5.17703999999999986 1.6059325554494801 0.0184898642243574995 -0.0477587169999999991 14 9 0.156851039999999997 0 14 false 124 4767.83913748529994 4.68073706968654957 1018.60999 16.4925609999999985 14 2324.32433059859022 14.3275317150955992 162.227830000000012 16.9356459999999984 13 3603.88389676708994 10.3623897936634997 347.785000000000025 15.8699929999999991 1.2433742000000001 0 1.06565280000000007 0.443084719999999987 0.622568129999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.110745968734989 -62.8348475864116978 22.4521905392425012 -12.3303656263354 100001 5077.31006 4989.02979 5213.77002 0.0399999991 0.0132999998 0.176499993 0.023 0.00389999989 0.0909999982 200111 0.561324999999999963 0.532326500000000036 0.581365299999999974 0.188650280000000004 0.158826259999999997 0.21847430000000001 +1635721458409799680 Gaia DR2 2481442132930986240 2481442132930986240 711253033 2015.5 25.0554186055446984 0.180154797617899987 -2.84858639770307986 0.126166985841096008 1.79729731849845997 0.207402369882634996 8.6657510000000002 -5.35058763392656989 0.460962576811554003 11.1797942107438004 0.233414952235355994 0.0653797500000000004 0.0708093939999999977 0.385912540000000026 -0.00770160930000000042 -0.184047760000000005 0.0356224029999999969 0.315754399999999991 -0.363471600000000006 0.0943478400000000023 0.0148462260000000006 134 0 132 2 1.79721320000000007 157.080994 0.486612539087576013 2.01319903747147988 31 false 0.897067550000000047 1.29236882587688995 0.0402286135595330968 0.0410594420000000015 15 9 0.417184679999999974 0 15 false 125 1299.36003068631999 2.8944015792674298 448.921997 17.9040409999999994 13 408.855963571454026 25.9027136385372998 15.7842900000000004 18.8224620000000016 11 1403.83922615840993 13.0848350341706006 107.287499999999994 16.8936269999999986 1.39506770000000002 0 1.92883490000000002 0.918420800000000037 1.01041409999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.689111797538004 -63.0608083308840008 22.1493437510305995 -12.3477306697401996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442506593979904 2481442506593979904 361555044 2015.5 25.0531642471049985 0.849679854305693039 -2.83944568869554992 0.567212214218973054 0.216755136536420007 0.907503220396438048 0.238847790000000004 5.61757380440885967 1.93147874624359006 -2.95916783889901014 1.15220898446166009 -0.115147529999999998 0.254138299999999984 0.202153159999999998 -0.00280496079999999984 -0.314829079999999983 0.0925408300000000045 0.259904100000000027 -0.248959540000000007 -0.0883046900000000051 0.111401059999999996 119 0 119 0 -0.105329140000000002 111.758003 0 0 31 false 0.0445869159999999973 1.2706949264812899 0.217132184839954001 0.097966789999999998 14 10 1.71745309999999995 0 14 false 119 138.184448136485003 1.35383511907126008 102.069 20.337216999999999 12 46.914350931641998 9.99696053496496972 4.69286159999999963 21.1731240000000014 10 165.745914931691004 10.0612147851350997 16.4737469999999995 19.2133119999999984 1.53895950000000004 0 1.9598122 0.835906999999999956 1.12390520000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.676220169599986 -63.0534257638434994 22.1506529988797993 -12.3384040208496994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442270369939456 2481442270369939456 1028659238 2015.5 25.0997804295652998 0.0363872854403265028 -2.84831559474028984 0.030531184641034801 1.57655482104222 0.0438475683645302011 35.9553530000000023 1.78491647290065991 0.0825600046141482941 -3.60134452053469989 0.0717298716748766968 0.0371519920000000017 0.283471169999999995 0.0449038329999999972 0.00632652799999999967 -0.346891159999999976 0.0227643439999999989 -0.0298121959999999991 -0.0995080839999999966 0.00671671900000000033 0.312387199999999976 183 183 176 7 13.5192599999999992 561.182983 0.0546435090232689977 1.18495530152147999 31 true 164.73997 1.69689493742231989 0.0103070152169833992 -0.024738373000000001 21 10 0.0558186000000000029 0 23 false 178 673061.828241292969 621.340666177679054 1083.23999 11.1182280000000002 19 419576.635006623983 720.547035417714028 582.302900000000022 11.2943599999999993 19 373003.779697382008 372.870897929725004 1000.35640000000001 10.8326370000000001 1.17757439999999991 0 0.461723329999999987 0.176132199999999989 0.285591130000000026 -17.0548635067134988 9.29794954551682018 5 6750 3.5 0.25 NOT_AVAILABLE 150.777786618660002 -63.042147446636001 22.1916058678963992 -12.3638204086588992 100001 7204.8501 7077 7344.85986 \N \N \N \N \N \N 200111 2.08591579999999999 2.00714730000000019 2.16196300000000008 10.5630179999999996 10.1446729999999992 10.9813620000000007 +1635721458409799680 Gaia DR2 2481443262507076864 2481443262507076864 456905230 2015.5 25.0430423914339997 0.368104759517498992 -2.82430376011225981 0.260590755496765025 1.13220096961283989 0.41425087181869602 2.7331287999999998 2.44778882424246014 0.846593581792723038 -52.1778461751411982 0.47691387509660299 0.0147495839999999996 0.279607600000000012 0.204717310000000013 0.0579881000000000008 -0.259098349999999977 0.144623799999999997 0.398559500000000011 -0.257925660000000001 -0.0562147419999999981 0.129428459999999995 161 0 160 1 1.57423510000000011 183.654999 0 0 31 false 0.17466103999999999 1.36872695872041006 0.0834701905314090969 0.0544814699999999971 18 10 0.755821999999999994 0 18 false 159 361.085674789319 1.72439932567115006 209.397995 19.2943399999999983 15 138.907651844881002 11.5087952723966005 12.0696949999999994 19.9945740000000001 13 357.967208547531015 9.82649995933667952 36.4287599999999969 18.3773119999999999 1.37605810000000006 0 1.61726189999999992 0.700233459999999974 0.917028399999999966 \N \N 0 \N \N \N NOT_AVAILABLE 150.642071457697995 -63.0438376856112015 22.1467519374452984 -12.3206007765100995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443296866816768 2481443296866816768 1234230556 2015.5 25.0547673911739999 0.150999892882307002 -2.82099160878540012 0.113785790098462999 2.57724542536539003 0.174103918554888992 14.8029150000000005 24.6357760777586989 0.356835815982764981 -19.6232966966145987 0.211406376617245012 0.0231607500000000008 0.237833509999999998 0.228384100000000007 -0.00572661260000000005 -0.169263959999999991 -0.00850640299999999919 0.350425719999999996 -0.222643509999999989 0.081755750000000002 0.00246536360000000013 141 0 140 1 0.568798840000000028 143.867004 0.133907648023449011 0.148558584079092004 31 false 1.08251940000000002 1.30429456286661005 0.0355032470089666 0.0824444740000000037 16 10 0.319200460000000019 0 16 false 140 1318.3386394393001 2.30832848500183996 571.122986 17.8882979999999989 15 259.09771514529001 7.77149612052364969 33.3394899999999978 19.317730000000001 15 1685.62839903911004 10.6201747285882 158.719470000000001 16.6950150000000015 1.47513399999999995 0 2.62271499999999991 1.42943189999999998 1.19328309999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.662550557557012 -63.0359694793829988 22.1591440782640987 -12.3218418287826008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443576040083712 2481443576040083712 149609893 2015.5 25.0415155003629017 1.40622645452760997 -2.80277140352930987 1.41176761479066992 \N \N \N \N \N \N \N 0.244294790000000012 \N \N \N \N \N \N \N \N \N 90 0 90 0 -0.599780100000000038 76.7925034 0 0 3 false 0.0193584670000000007 \N \N 0.12486999 11 8 5.89890429999999988 0 11 false 94 95.3993200888058936 1.41980345528842 67.1919022 20.7395020000000017 6 48.6914538503008032 10.1853956043399005 4.78051660000000034 21.1327570000000016 9 62.1948748231459021 8.95702718754835914 6.94369600000000009 20.2775329999999983 1.16233870000000006 0 0.855224600000000001 0.393255230000000011 0.461969379999999985 \N \N 0 \N \N \N NOT_AVAILABLE 150.619342690417 -63.024870760916599 22.1534305308930008 -12.3000242828584998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443468665520512 2481443468665520512 1098320668 2015.5 25.0664766607022003 0.396005795338857991 -2.79537111217454992 0.294622917761109993 3.02232828479227988 0.457786055654398005 6.60205399999999987 13.2114744751713005 0.940773913245052995 -12.6688922845708003 0.522516011045557005 0.0687009840000000066 0.18317984000000001 0.148631320000000011 0.0795689200000000013 -0.260308299999999992 0.130577100000000002 0.342109949999999996 -0.20889569999999999 0.0228145200000000013 0.109661649999999999 159 0 158 1 1.96340899999999996 189.210999 1.09424145054823008 1.89299764803434001 31 false 0.135435150000000004 1.6836918270472101 0.091549257175321197 0.0781887799999999994 18 10 0.834270500000000026 0 18 false 158 370.57529409796399 1.77701060527967991 208.539001 19.2661739999999995 13 297.822869608669976 12.5751354918731995 23.6834719999999983 19.1664920000000016 12 156.614238312139008 9.77880256649124924 16.0156859999999988 19.2748409999999986 1.22630170000000005 0 -0.108348849999999997 -0.0996818540000000003 -0.0086669920000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.662593993956989 -63.0078058972734993 22.1799423311477 -12.3023408238819005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442644031789312 2481442644031789312 139443906 2015.5 25.0816148354840998 1.20325041012059009 -2.81698746702684 1.58607937133962995 \N \N \N \N \N \N \N 0.203475249999999996 \N \N \N \N \N \N \N \N \N 106 0 103 3 2.23071980000000014 131.850998 3.33555455042986981 3.7040751392320499 3 false 0.0192732330000000007 \N \N 0.155401590000000006 13 8 5.28455799999999964 0 13 false 104 119.090711176010998 1.64442837997636992 72.4207001 20.4986700000000006 9 79.5973415475622943 7.84291126200541999 10.1489530000000006 20.5991420000000005 10 72.8859563528569936 9.06848491681694924 8.03728000000000087 20.1053099999999993 1.28039619999999998 0 0.493831630000000021 0.100471500000000005 0.393360140000000025 \N \N 0 \N \N \N NOT_AVAILABLE 150.712679020798987 -63.0211989219291979 22.1861683225771991 -12.3280095267604999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442575312308608 2481442575312308608 1339380324 2015.5 25.0955578738177998 0.782933683159355964 -2.8246711597148999 0.566665717754795017 0.732130399717757951 0.886556698232414009 0.825813400000000031 -1.8061656672425499 1.99287961681815995 -6.79208125497252002 1.69102612794877993 -0.0412160300000000007 0.19432756000000001 0.170572859999999993 -0.0177045899999999992 -0.262670870000000001 0.0258402749999999994 -0.0509271849999999998 -0.313847780000000021 -0.194184290000000009 0.31300306 133 0 133 0 1.16728450000000006 146.867996 1.45025301146705998 0.717766342957510961 31 false 0.0391410329999999987 1.22930542073587001 0.213335003433497011 0.122672829999999997 15 9 1.89551910000000001 0 15 false 132 152.183657697428004 1.18938631092560998 127.950996 20.2324449999999985 13 59.998465099887099 8.00806579747682079 7.49225429999999992 20.9060379999999988 13 169.507222325533007 10.1951724768241991 16.6262250000000016 19.1889499999999984 1.50808370000000003 0 1.71708869999999991 0.673593499999999956 1.04349519999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.747639288291992 -63.022400634417302 22.1965184818028014 -12.3402871082224994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442575313518720 2481442575313518720 426525436 2015.5 25.0925617879095988 1.67556836761667993 -2.82177403153210005 1.97133151688183994 \N \N \N \N \N \N \N 0.180821509999999991 \N \N \N \N \N \N \N \N \N 78 0 78 0 -1.96973470000000006 51.1646004 0 0 3 false 0.0164221699999999998 \N \N 0.237078669999999991 9 6 11.7944019999999998 0 9 false 79 84.4360224733144946 1.26050878596509008 66.9857025 20.872046000000001 8 38.3072496298588021 6.28583256733606976 6.09422059999999988 21.3931870000000011 7 58.4874894652747983 4.14046317551200005 14.1258330000000001 20.3442630000000015 1.14636779999999994 0 1.0489234999999999 0.521141049999999995 0.527782439999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.73898501817601 -63.0210098236531024 22.1947647191175008 -12.3364906807794998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442609673274752 2481442609673274752 1103299083 2015.5 25.1049673121639998 2.24888734852279004 -2.81358174318167986 1.36160272773955993 \N \N \N \N \N \N \N -0.432744179999999978 \N \N \N \N \N \N \N \N \N 71 0 71 0 0.00255050600000000013 65.3647003 0 6.18448069487335049e-16 3 false 0.0165038459999999991 \N \N 0.102642639999999993 9 7 7.01987079999999963 0 9 false 73 83.8674727754832929 1.54193160475341995 54.391201 20.8793809999999986 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.756312002362989 -63.008407339258298 22.2096464475954001 -12.3334444083636008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466081668627712 2481466081668627712 640781528 2015.5 25.111031467918199 0.203623559437664997 -2.81134994980958997 0.150571936934987993 3.26381038391898981 0.234959850284650995 13.8909280000000006 75.0441469318684966 0.490234093203752996 34.6521072428843979 0.286499542930842011 0.025748146999999999 0.163720580000000004 0.153414489999999987 0.0589986600000000014 -0.327976600000000007 0.146461829999999987 0.277403620000000017 -0.235869600000000013 -0.0396095740000000016 0.155397439999999998 168 0 165 3 1.38671060000000002 185.373993 0.201395266929578987 0.18252804092279501 31 false 0.491659080000000026 1.21355788758082994 0.0506799790849652987 0.0300241730000000012 19 10 0.438601999999999992 0 19 true 167 780.405001298404954 1.77882880331243998 438.717987 18.4575649999999989 17 162.905846109820004 13.3973222045122 12.1595820000000003 19.8215469999999989 15 1020.94380224902 13.2195739368517007 77.2297059999999931 17.2394159999999985 1.51696830000000005 0 2.58213040000000005 1.3639812 1.21814920000000004 \N \N 0 \N \N \N NOT_AVAILABLE 150.766401425917991 -63.0038582555733981 22.2162518952635004 -12.3336030104062999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443399946037376 2481443399946037376 861939120 2015.5 25.0690558318548007 0.943371982621857952 -2.80792372981311011 0.581637002506023015 0.825634522282858052 0.968431931473676011 0.852547799999999967 20.9137039424907982 2.07737667520034996 -6.96506217237951031 1.24369491123691001 -0.204212009999999999 0.35304907000000002 0.122601694999999997 -0.0224587200000000015 -0.384221319999999977 0.118838979999999997 0.244029099999999999 -0.229615999999999987 -0.164864719999999992 0.136406749999999993 117 0 110 7 0.0897715399999999969 105.636002 0 0 31 false 0.0456022700000000003 1.56327627660573998 0.220924746321987997 0.0390165099999999973 13 10 1.84282459999999992 0 14 false 111 145.915479504074995 1.15252266835268991 126.605003 20.2781120000000001 10 49.2582116663929028 11.3173910739270998 4.35243499999999983 21.1201919999999994 10 136.316147843939007 4.82712804425309994 28.2395969999999998 19.4255519999999997 1.27179350000000002 0 1.6946391999999999 0.842079160000000049 0.852560039999999963 \N \N 0 \N \N \N NOT_AVAILABLE 150.679231940562005 -63.0181596538995024 22.1776550297621 -12.3149586861781994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466146094041728 2481466146094041728 1241565082 2015.5 25.0945699910945983 0.922875173347756039 -2.79815415881944007 0.60048974225938101 2.4619287944052699 0.962235259314444979 2.55855180000000004 14.1917775194057008 2.22644040154525991 1.07432328048298009 1.21759470479081999 -0.11606234 0.152015609999999995 0.065653939999999994 0.061006427000000002 -0.30733729999999998 0.176447099999999996 0.251169150000000008 -0.254738569999999998 -0.115555000000000005 0.0857814199999999971 141 0 141 0 2.54490779999999983 181.628006 1.42977421135862004 0.704861123936204037 31 false 0.0322094519999999995 1.1690691783726499 0.191258075604370997 0.0614738099999999968 16 10 1.9667832999999999 0 17 false 142 132.670810509874997 1.2333782742886501 107.567001 20.3814279999999997 9 48.5377924662917977 11.0994549704604992 4.37298869999999962 21.1361890000000017 14 176.594958894258014 4.83333459507829044 36.5368769999999969 19.1444739999999989 1.69692749999999992 0 1.99171450000000005 0.754760740000000041 1.23695369999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.721377522299008 -62.9986924203673979 22.2055880817495996 -12.3152747734329004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466146094059392 2481466146094059392 946295524 2015.5 25.1069036619392989 1.10112666528493008 -2.80453866918771988 0.706991855585101026 0.72492651104860395 1.1186487930909399 0.648037599999999991 6.20495388996245989 2.69840797478445005 -7.85592762141900991 2.09948351431933 -0.233315660000000008 0.228648860000000009 0.0744177800000000028 -0.0235508500000000016 -0.383618999999999988 0.0473070500000000033 -0.0240011569999999987 -0.238739570000000012 -0.197570069999999987 0.194210539999999987 115 0 115 0 -1.32449890000000003 90.9123993 0 0 31 false 0.0291317500000000014 1.35795927448243003 0.284511313682336009 0.0432968099999999981 13 9 2.4345216999999999 0 13 false 115 114.447450124018005 1.49457934167485007 76.5749969 20.5418510000000012 8 47.972780353763099 8.54395747700690045 5.6148195000000003 21.1489009999999986 9 150.458365588074997 4.63080114009410959 32.4907839999999979 19.3183779999999992 1.73381889999999994 0 1.83052250000000005 0.60704994000000001 1.22347260000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.751901572681987 -62.9993790767538968 22.2148995651637016 -12.3257515119630998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505477865138468096 2505477865138468096 1086902489 2015.5 26.3877504111426013 3.96242905498721987 -2.16059783379887005 2.68250183178468982 \N \N \N \N \N \N \N -0.280370059999999977 \N \N \N \N \N \N \N \N \N 54 0 52 2 4.96319680000000041 112.214996 6.8083874147634198 82.7173824334768 3 false 0.00894672600000000033 \N \N -0.0364031459999999973 7 5 15.8558660000000007 0 7 false 50 75.6870942514492953 1.78953558943807001 42.2943001 20.9908099999999997 6 56.7393550462099014 8.06541014819804936 7.03490000000000038 20.9666770000000007 6 104.334952785574998 14.7661774048743997 7.0658063999999996 19.7158450000000016 2.12816070000000002 0 1.25083159999999993 -0.0241336820000000001 1.27496530000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.653520329509007 -61.8688593523484016 23.6748230149560008 -12.1958214640551006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443709183569408 2481443709183569408 1308269709 2015.5 25.057255466934599 0.127122545657168989 -2.78263554289654014 0.0872832785762768931 5.49088403493840982 0.146395928246417006 37.507080000000002 52.3148828684351983 0.251872973097265973 -32.3076992241785987 0.160654796353400992 0.0432248260000000009 0.443665919999999991 0.105196713999999997 0.0979723259999999985 -0.213959919999999998 0.154660450000000005 0.285636999999999974 -0.156409400000000004 -0.0106157930000000001 0.201300160000000006 151 0 150 1 3.97823480000000007 222.955994 0.474287098254157991 4.36139748403455041 31 false 1.65770670000000009 1.22572473653510006 0.0267225786926320007 0.0149898540000000004 17 10 0.228561760000000003 0 17 false 148 2803.81858780715993 3.14545575849084003 891.387024 17.0689899999999994 14 497.989558942507983 7.69451646000024958 64.7200600000000037 18.6083369999999988 15 3677.97431983906017 13.8263880201321996 266.011230000000012 15.8478984999999994 1.48938449999999989 0 2.76043899999999987 1.53934670000000007 1.22109219999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.63250138837401 -63.0000322024974011 22.1759872193603016 -12.2871063164314993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481443782198425344 2481443782198425344 938111540 2015.5 25.0557967051488006 0.462922611905713988 -2.76985599357028001 0.394997670542935997 1.29712828863276997 0.575280663139899007 2.25477479999999986 3.27754990065293006 1.28388489598924993 -9.77872832321570939 0.722162159991385999 0.141574339999999993 0.0440306700000000009 0.274672399999999983 0.186478640000000001 -0.500472800000000051 0.430713500000000027 0.595478599999999969 -0.474555600000000022 -0.352512500000000006 0.388011500000000009 148 0 146 2 0.60505679999999995 150.709 0.261724405973594976 0.0659846441544943013 31 false 0.119616879999999995 1.31912123518485003 0.102615917556869995 0.0935530440000000019 17 9 1.20587599999999995 0 17 false 146 286.705557184453028 1.39982673464946994 204.815002 19.5447750000000013 12 72.5316167447269038 16.0799584188000999 4.51068449999999999 20.7000700000000002 14 365.255492432377991 8.9261514769600403 40.919704000000003 18.3554290000000009 1.52695720000000001 0 2.3446406999999998 1.15529440000000005 1.18934629999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.617926208964008 -62.9890032027901015 22.1794243811880989 -12.2746901857598996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470239196968192 2481470239196968192 1664111330 2015.5 25.0601005725077997 0.318159063094950012 -2.73946309010436018 0.215869587523660006 1.94816619723734008 0.350243005470006974 5.56232740000000003 -5.79100632829325956 0.822897312008909032 -21.6069148497240988 0.391397681693646027 0.0483943339999999972 0.0666478399999999999 0.29025757000000002 0.0514185799999999985 -0.205848859999999995 0.121239126000000003 0.371443499999999982 -0.343614069999999994 0.0172488470000000012 0.0494215000000000002 150 0 150 0 1.69665650000000001 175.098007 0.478670341366417007 0.524373179614836982 31 false 0.253707400000000027 1.44885776925966003 0.0684078328607860969 0.0208106119999999992 17 9 0.735537499999999955 0 18 false 151 484.851899571371973 1.66737313915541008 290.787994 18.974342 12 88.2179480271529997 10.2853955567340005 8.57701100000000061 20.4874949999999991 12 631.753192973858972 22.8180034944012995 27.6866109999999992 17.7605509999999995 1.48493000000000008 0 2.72694400000000003 1.51315310000000003 1.21379090000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.598856923820989 -62.959556155587002 22.1949825982459998 -12.2480243243033993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467009381325312 2481467009381325312 531091173 2015.5 25.0868136393179988 5.39083425942961991 -2.77451604095772986 8.2336920830870497 \N \N \N \N \N \N \N -0.80705300000000002 \N \N \N \N \N \N \N \N \N 43 0 43 0 0.941011900000000012 46.0461998 0 0 3 false 0.0144790140000000001 \N \N -0.0832715259999999985 5 4 603.739259999999945 0 5 false 43 72.2666746124505011 2.11794487475623017 34.1211014 21.0410210000000006 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.684249559507009 -62.9804041736435991 22.2071379134470988 -12.2904456268356004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466936366829568 2481466936366829568 490959250 2015.5 25.1062742454645011 0.897916584325358036 -2.78174436195260988 0.601618144198928007 0.0757913945059042055 0.922019494933838946 0.0822015100000000054 4.72328318038143991 2.49887182172310007 -0.234718554528571988 1.95633175595518005 -0.142263670000000009 0.0275427720000000001 0.330707939999999978 -0.159495400000000009 -0.206145610000000007 -0.0780678499999999942 0.0511942170000000002 -0.364614199999999999 -0.119952574000000006 0.029576617999999999 118 0 116 2 -0.376806299999999983 104.836998 0 0 31 false 0.0385995729999999981 1.54413799455305001 0.227779889496387999 0.0959949799999999936 14 9 2.22662160000000009 0 14 false 116 136.535498966538 1.28576832860375001 106.190002 20.3502520000000011 9 100.994565676662006 6.69826758096088959 15.0777140000000003 20.340643 12 106.420891633264006 6.54429174247408962 16.2616370000000003 19.6943529999999996 1.51913209999999999 0 0.646289800000000025 -0.0096092220000000006 0.655899050000000039 \N \N 0 \N \N \N NOT_AVAILABLE 150.729778816336989 -62.9789088952363016 22.2229031156316985 -12.3043311274005998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467284259468800 2481467284259468800 1690714291 2015.5 25.073770224661601 0.123942921659059999 -2.75537206745408003 0.0941125399808010049 0.507554145194497042 0.141372419506111013 3.59019200000000005 3.41594683084277007 0.28896608761519299 -2.05506100744642017 0.172017000985508012 0.120743199999999995 0.233464959999999999 0.137955999999999995 0.124006749999999999 -0.18834519999999999 0.180208950000000007 0.359650000000000025 -0.224854770000000009 -0.0167503770000000003 0.168532979999999999 167 0 167 0 0.000280454169999999994 161.339005 0 0 31 true 1.32254990000000006 1.5730502185942199 0.0290268023884308994 0.0439053959999999993 19 10 0.26160319999999998 0 19 false 167 1613.89247771647001 2.43980081004109017 661.484985 17.6686779999999999 18 646.248197206354007 9.92596995336240084 65.1068039999999968 18.3253899999999987 18 1402.46134661214001 9.29277603880839997 150.919530000000009 16.8946930000000002 1.26942130000000009 0 1.43069650000000004 0.656711599999999951 0.773984899999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.640690113161014 -62.9683847338420009 22.2019678274014005 -12.2678468279480999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467348683577472 2481467348683577472 321023808 2015.5 25.0993206645050009 0.397179283998160992 -2.74716011072725985 0.240563900060652008 0.734520507543723 0.416339490733295015 1.76423449999999993 12.1094113564015 0.959099949929292039 -17.8699312821127982 0.412717126562219982 -0.103402294000000006 0.165028449999999993 0.134096670000000001 0.0352744499999999989 -0.344555649999999991 0.152830469999999996 0.354472339999999997 -0.249600660000000002 -0.0281246300000000012 0.0275914129999999987 136 0 136 0 4.21880800000000011 210.923004 0.708357276651180978 1.11710230769210006 31 false 0.221661639999999993 1.44371723272710994 0.0812719253667705949 -0.0631121840000000017 16 9 0.847883339999999985 0 16 false 135 469.562362914778987 1.81926676687873989 258.105011 19.009132000000001 13 152.767718633853008 4.91979402559498968 31.0516499999999986 19.8913100000000007 12 479.881100184173988 13.5103031232061994 35.5196380000000005 18.0590860000000006 1.3473158999999999 0 1.83222390000000002 0.882177349999999971 0.950046539999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.684285580513006 -62.9503307732911992 22.2293438431886017 -12.2696222534633996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467726640701824 2481467726640701824 1470254283 2015.5 25.1143822476557013 0.536168325788582978 -2.74181431520896979 0.409911047416206986 2.51658438400354978 0.700483727521191035 3.59263779999999988 -22.5890045547568015 1.34977689910200005 -5.34383325950039989 0.696898216747554033 0.219161149999999999 -0.0544847799999999965 0.140014680000000002 0.0419691950000000008 -0.393539299999999981 0.110941590000000007 0.13969144 -0.187479730000000011 0.140330270000000007 0.161387470000000005 132 0 132 0 16.0199759999999998 589.77002 3.00110653702425001 28.1350536500926012 31 false 0.0870081199999999944 1.3873795909925899 0.119829001192136006 0.0512400800000000003 15 8 1.19656089999999993 0 15 false 132 730.812361038516997 5.1934608794388204 140.718002 18.5288499999999985 15 196.962037391863987 10.5521319029372993 18.665614999999999 19.6154329999999995 15 1005.22611981279999 18.035435224067399 55.7361700000000013 17.256260000000001 1.64500249999999992 0 2.35917280000000007 1.08658220000000005 1.27259060000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.709498853138001 -62.9392227426432029 22.2456722893142995 -12.2701984435441993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470303621321984 2481470303621321984 556695403 2015.5 25.0534586445713998 0.903609070172688988 -2.73220069514484987 0.587201748479194041 0.501490471258849047 0.966419708410993006 0.518915829999999967 10.8746618279279001 2.49682147035957014 4.0392902658317702 1.73192535844272011 -0.0652639099999999944 0.0601927270000000014 0.267471400000000026 0.0168437770000000007 -0.169823959999999996 0.038229550000000001 0.00701546700000000006 -0.404656139999999998 -0.232177810000000012 0.216524440000000012 121 0 117 4 0.618349099999999985 120.808998 0 0 31 false 0.0374009800000000003 1.46491088589634 0.218477334710492993 0.0633800800000000053 14 8 2.26417299999999999 0 14 false 118 134.389947942137013 1.7152977348729499 78.3479004 20.3674490000000006 10 49.333794510132698 12.7120157027387997 3.88087900000000019 21.1185259999999992 10 157.608465231169987 11.7018590430652996 13.4686690000000002 19.2679709999999993 1.53986420000000002 0 1.85055539999999996 0.751077650000000041 1.09947780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.578964747972009 -62.9556878528293993 22.1914123613156988 -12.2388273831465 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470441060040320 2481470441060040320 1059340879 2015.5 25.0686556712220998 0.141642481102582013 -2.72106299979822008 0.0967744407103480059 0.223961072870080991 0.154417667682632986 1.45035910000000001 2.89989729612398994 0.375510828866715995 -5.70175262484825041 0.184481016088568012 0.0721065550000000027 0.051394585999999999 0.169145750000000011 0.0800579339999999973 -0.172591309999999998 0.140177040000000003 0.289844749999999984 -0.294103320000000001 0.00190048429999999991 0.0782587099999999952 140 0 139 1 1.02470820000000007 150.763 0.0195727332552513983 0.00380970994427848016 31 false 1.31142819999999993 1.57527742025784989 0.0309781182965042992 -0.0234604550000000016 16 9 0.336441900000000016 0 16 false 139 1582.85516105206989 2.58271658546384009 612.864014 17.6897620000000018 14 863.803044012277951 14.8133679924275992 58.3123999999999967 18.010351 15 1085.73748204077992 15.1607388987833005 71.615074000000007 17.1726069999999993 1.23166069999999994 0 0.837743759999999948 0.320589069999999976 0.517154699999999967 \N \N 0 \N \N \N NOT_AVAILABLE 150.599224670789994 -62.9392692386493025 22.2100527229325984 -12.2340712640844007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481470372340561536 2481470372340561536 384973995 2015.5 25.0788635438728988 0.203566197164353008 -2.72581553949463995 0.188053461924926002 1.36493643494452011 0.234039433505850991 5.83207900000000024 13.1577296932116994 0.630479236722343961 -1.17922479919352008 0.325054102895904973 0.509392599999999973 -0.248158679999999993 0.500410600000000039 0.479664399999999991 -0.486428470000000002 0.617360200000000026 0.705316100000000001 -0.589340569999999953 -0.415985969999999983 0.577165900000000009 126 0 123 3 3.07142690000000007 170.897995 0.552137418437632976 2.82119317362537014 31 false 0.897979900000000053 1.33732327782455007 0.0452691492116020014 0.0462100579999999983 14 8 0.617394099999999946 0 14 false 123 1530.5798846585401 2.57507696274453979 594.382019 17.7262249999999995 12 434.090461633691007 14.1586836521157995 30.6589570000000009 18.7574369999999995 10 1714.61630500592992 20.0433192204150004 85.5455249999999978 16.6765019999999993 1.40385139999999997 0 2.08093450000000013 1.03121189999999996 1.04972270000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.623951418382006 -62.9393754177870974 22.2179583797693994 -12.2422481195727997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467834015282176 2481467834015282176 1418560974 2015.5 25.1126005886940007 0.0540028861463801024 -2.71746558466342991 0.037077896372672503 0.357257917718419027 0.0616645909577865983 5.7935667000000004 2.44668326449715012 0.150622767029891996 -6.64290327881732967 0.0769489599826088944 0.0448625569999999974 -0.0323372599999999996 0.268602220000000003 -0.052067490000000001 -0.154043750000000007 -0.00679861199999999988 0.169438329999999998 -0.343492950000000019 0.105355509999999999 -0.0190480760000000006 142 0 142 0 -0.964745599999999981 121.028 0 0 31 true 10.4843910000000005 1.61485270128281 0.0130241422462611996 -0.0378321900000000017 16 9 0.143032700000000013 0 16 false 142 9471.0977824176698 7.13149430742711044 1328.06995 15.7473650000000003 15 5050.36710140108971 37.116177011823801 136.069170000000014 16.0930800000000005 15 6383.20084508628042 11.2058287023684997 569.632200000000012 15.2493239999999997 1.2072061999999999 0 0.843756700000000026 0.345715519999999998 0.498041149999999988 \N \N 0 \N \N \N NOT_AVAILABLE 150.683734529421997 -62.9178091245315017 22.2531631578712989 -12.2469080092590996 100001 5765 5718 5795 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481430450619960192 2481430450619960192 437348893 2015.5 25.1218764649173991 0.74643016459176903 -2.86343249971177016 0.519721117093137952 -0.284731882580592011 0.838524179703455053 -0.339563100000000007 15.6559249465713002 1.88231157910525004 -5.94112060270170961 1.22834715597267996 -0.103470690000000004 0.189309370000000005 0.15821534000000001 -0.00281770480000000014 -0.404969399999999979 0.14348865999999999 0.225990360000000001 -0.305315229999999993 -0.202010720000000005 0.212770390000000004 135 0 134 1 0.0330567319999999984 128.863998 0 0 31 false 0.0487397349999999993 1.32409209158422003 0.175955215230857998 0.0379822959999999987 16 10 1.69399940000000004 0 16 true 134 160.868882076847001 1.3220320512430801 121.682999 20.172186 11 83.8725366365565037 13.4894171668174998 6.21765469999999976 20.5423399999999994 10 201.504369485150988 10.6144588877060997 18.9839519999999986 19.0012100000000004 1.7739720000000001 0 1.54113009999999995 0.370153430000000006 1.17097659999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.835938373169 -63.04669556124 22.2069002450980015 -12.3860097970904999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481430519339436544 2481430519339436544 1057571324 2015.5 25.143087604049601 0.362900606783699009 -2.85948417842462987 0.255894334108683008 1.3733064350114299 0.384825053799424999 3.56865120000000013 17.9128704141024002 0.792435694298475046 5.57372128402209999 0.499703529008943992 0.0141689020000000006 0.316882300000000006 0.143644930000000004 0.0187401789999999992 -0.0743316039999999956 -0.0231336840000000016 0.158536179999999999 -0.122765479999999996 0.135185360000000004 0.0122275319999999993 152 0 152 0 0.639074559999999958 157.533005 0 0 31 false 0.162983340000000004 1.29034565226391007 0.0865981323252446034 0.0479222200000000015 17 10 0.698702000000000045 0 17 true 151 370.700979055906998 1.52303501330090008 243.395996 19.2658060000000013 14 69.2406735991855982 9.48271297074552955 7.3017789999999998 20.7504840000000002 14 471.424147333822987 8.65501960102067969 54.4682919999999982 18.0783899999999988 1.4584931000000001 0 2.67209429999999992 1.4846782999999999 1.18741610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.874769330496008 -63.0342671953328022 22.2285523009668999 -12.3901505102569995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481430480684536576 2481430480684536576 1171826506 2015.5 25.1454201548998988 1.78303977679034009 -2.86232758733225001 1.07124338268844999 -0.396855265696278992 1.39337205601861003 -0.284816440000000004 16.6480021976088999 4.5110259762679199 -11.4589765892441999 2.80470912534318995 -0.320294999999999996 0.0613895699999999975 0.581272000000000011 -0.335621500000000017 0.0192675850000000003 -0.330697200000000024 0.275315580000000004 -0.326540680000000028 0.0934830999999999995 -0.30921605000000002 85 0 84 1 -0.0819334899999999977 77.3155975 0 0 31 false 0.0190649799999999987 \N \N 0.0218015889999999997 10 7 4.24371299999999962 0 10 false 86 88.8090985809414946 1.39158910240905009 63.8185005 20.8172229999999985 8 54.3950225939360976 14.9034171757393992 3.64983559999999985 21.0124899999999997 8 102.925004313759999 7.32326866858975034 14.0545170000000006 19.7306179999999998 1.77144039999999992 0 1.28187180000000001 0.195266720000000005 1.0866051000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.882056239918995 -63.0358779071543012 22.2296962041583015 -12.3936525038330991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481442304729677696 2481442304729677696 1611066269 2015.5 25.1194466408327983 0.077990342522491804 -2.84269224350956007 0.0613029530124747993 1.07929356467241999 0.0946124874218863959 11.4075170000000004 6.78511635281290015 0.180481747124116992 7.47400040095155038 0.114800462872951994 0.0832894740000000022 0.215531269999999997 0.115749240000000003 0.0892784999999999968 -0.339509000000000005 0.166633100000000006 0.252565470000000014 -0.197446349999999993 -0.029630842000000001 0.228361850000000005 175 0 174 1 2.22577880000000006 212.533997 0.139203432707703995 0.52369708091425804 31 false 3.21294740000000001 1.5526861977750499 0.0193734067361896987 0.0214658850000000005 20 10 0.167413740000000005 0 20 false 174 3565.07942460655022 3.83387690145812021 929.888977 16.8081929999999993 19 1476.52137223501995 11.8099261962859003 125.023759999999996 17.4282900000000005 17 2982.82176691657014 13.4069097132052999 222.483920000000012 16.0753519999999988 1.25083980000000006 0 1.35293770000000002 0.620096199999999986 0.732841500000000035 \N \N 0 \N \N \N NOT_AVAILABLE 150.81200452893799 -63.0288549112805967 22.2124200767999014 -12.3658360844792998 100001 4735.74023 4611.00977 4805.10986 0.176300004 0.063000001 0.375999987 0.104000002 0.0308999997 0.189600006 200111 0.561491430000000014 0.545397160000000047 0.592280499999999988 0.142867600000000011 0.117011530000000002 0.168723659999999998 +1635721458409799680 Gaia DR2 2481453982745583616 2481453982745583616 944840508 2015.5 25.1606861625575995 0.175940631038592005 -2.85141710392672998 0.125234581350251006 0.576874142049840999 0.197309208005641001 2.92370600000000014 22.7154773113554 0.389780757710946002 -14.1823571709226002 0.238109236903306987 0.0289653469999999989 0.278797860000000008 0.118268289999999998 0.0308636280000000006 -0.156147499999999995 0.00592631400000000023 0.150810870000000014 -0.120951420000000004 0.132982180000000005 0.0559821900000000011 168 0 168 0 3.74484370000000011 239.531998 0.394939653030293991 1.03615279842439989 31 false 0.630855440000000045 1.54605150462595997 0.0409068279963772999 0.0131937689999999993 19 10 0.345538740000000011 0 19 false 162 1038.60098298417006 2.29936730003282008 451.690002 18.1472429999999996 18 504.173204269967016 7.84800044236698024 64.2422499999999985 18.5949379999999991 17 754.461885191955957 8.84140193557776044 85.3328300000000013 17.5678270000000012 1.21185619999999994 0 1.02711100000000011 0.447694780000000014 0.579416299999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.902547786409997 -63.0195950970946015 22.2483254702469004 -12.3891312009483006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454051465064448 2481454051465064448 1240581809 2015.5 25.1478419535811 0.423178906882827 -2.83879316750183008 0.263914231930580001 1.66266914148125 0.436654270359218 3.80774739999999978 20.7513694739480989 0.860223105168572033 8.22001341762157978 0.477133228192236025 -0.137179600000000013 0.386217680000000008 0.165314800000000012 -0.000557572350000000005 -0.210691989999999996 -0.0386275000000000021 0.239686220000000005 -0.0799871899999999997 0.122303999999999996 -0.0424393860000000026 160 0 159 1 0.881356699999999993 169.279999 0 0 31 false 0.14694850000000001 1.21880524824812997 0.0873679908809883998 -0.0176433029999999991 18 10 0.759709199999999973 0 18 false 159 340.302880631805976 1.54817109462450997 219.809998 19.358702000000001 15 52.5271817809490003 4.86765901195355966 10.7910570000000003 21.0504280000000001 15 453.762684287378988 11.1356368835609008 40.7486949999999979 18.1198480000000011 1.4877625000000001 0 2.9305800999999998 1.69172670000000003 1.23885350000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.865238300418014 -63.0134832198281032 22.2408808975451002 -12.3726673867234993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454051465066624 2481454051465066624 1209067434 2015.5 25.1490273327655984 1.12118190145505991 -2.83491109431192001 0.77749546403069103 0.153824831495586012 1.00237651184375998 0.15346013 -1.44717117380370008 2.84259269557643002 2.02926230935200014 2.0208844619953501 -0.181895780000000007 0.165138690000000005 0.00520260860000000026 -0.0636057099999999959 0.0265959069999999985 -0.0722370999999999985 -0.124809674999999995 -0.0835615549999999957 0.113376013999999997 -0.278472160000000024 104 0 104 0 1.22514900000000004 116.514999 0.317991284574771993 0.0203243618185499006 31 false 0.0253651600000000012 1.90677554308552 0.274258715463812974 -0.0144456029999999996 12 9 2.57610749999999999 0 12 false 105 116.862608745152997 1.70435295850400004 68.5671005 20.5191760000000016 12 70.3080711411032979 5.71124110013518038 12.3104720000000007 20.7338750000000012 12 80.3211729347338945 6.90678674665452963 11.6293120000000005 19.9998460000000016 1.28894299999999995 0 0.734029770000000026 0.21469879 0.519330999999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.864038306120989 -63.0094613277763003 22.2434726794108997 -12.3694951374984008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453776587150464 2481453776587150464 89445631 2015.5 25.1724884900613013 0.293960658414562981 -2.86150494239211994 0.229092675160704001 -0.314894761861042982 0.336566260465287981 -0.935610000000000053 0.664743434511864018 0.713811480975451995 0.459371495321519996 0.441785282581926009 0.0674734899999999971 0.142213200000000012 0.147045430000000005 0.0984140099999999962 -0.31977435999999998 0.195163530000000002 0.305588069999999989 -0.246664390000000011 -0.0727283700000000005 0.200060920000000003 157 0 156 1 1.10847399999999996 170.369995 0 0 31 true 0.232431949999999998 1.72654537415089004 0.0701693528309634967 0.0372296999999999975 18 10 0.641814100000000054 3 19 false 157 481.828189006280013 2.77192841385216004 173.824005 18.9811340000000008 17 307.415586150552997 12.3168898390420001 24.9588639999999984 19.1320739999999994 18 312.710953450975978 8.14627088875987937 38.387005000000002 18.5240630000000017 1.28702830000000001 0 0.608011250000000003 0.150939939999999995 0.457071300000000014 \N \N 0 \N \N \N NOT_AVAILABLE 150.935449511414987 -63.0238293862148993 22.2557373885321006 -12.4028537567987005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453780882311296 2481453780882311296 895572174 2015.5 25.1611517961773004 0.0339780352495981028 -2.8540113886754499 0.0266130124032349993 0.406402835913228011 0.0389913588618683998 10.4228945 1.39902315189940007 0.0725139868549677935 -10.0513426758110995 0.056563112701523803 0.0907988849999999958 0.328098300000000009 0.0320780349999999978 -0.00214459349999999993 -0.163818479999999989 -0.0634395549999999947 -0.152548669999999997 -0.0355104840000000019 0.159923370000000009 0.194360749999999999 169 0 168 1 -1.33858440000000001 139.404999 0 0 31 false 19.0047320000000006 1.55486424798390011 0.0088624293487030506 0.0169735890000000007 19 10 0.0746974499999999986 0 19 false 167 16202.5521969369001 7.51570060952935037 2155.83008 15.1644070000000006 19 7603.76269165844042 16.6195280818881983 457.519780000000026 15.6488169999999993 17 12438.4605630778005 20.8011567349822002 597.969669999999951 14.5250029999999999 1.23697940000000006 1 1.12381360000000008 0.484410300000000016 0.639403339999999987 \N \N 0 \N \N \N NOT_AVAILABLE 150.905869150493999 -63.0217575368420029 22.2477889746717992 -12.3917142254168997 100002 4965.66992 4900 5033.1001 \N \N \N \N \N \N 200111 2.80518249999999991 2.73052099999999998 2.88087269999999984 4.31049500000000041 3.36269859999999987 5.25829120000000039 +1635721458409799680 Gaia DR2 2481452853169375488 2481452853169375488 977879658 2015.5 25.2456354862686005 0.0918587808725516985 -2.86449249050793986 0.0744889711169545027 0.440245903108374026 0.108619075918119007 4.05311779999999988 -4.74671049557444036 0.20503618874788801 -4.01065153967299981 0.136849706075562988 0.166005480000000011 0.323787060000000015 0.141085760000000004 0.0254664310000000012 0.095124070000000005 -0.106608439999999999 0.238576979999999994 -0.163955089999999998 0.2484962 -0.0357878579999999988 143 0 139 4 -0.313901160000000012 128.278 0.103476501423915998 0.21701526209331401 31 false 2.6434445000000002 1.61873680164981004 0.022802541239047399 0.0824610900000000008 16 10 0.185438400000000003 0 16 false 140 3009.9560256653499 3.78796121991927981 794.611023 16.9919660000000015 15 1496.5880207355101 16.1943055537884995 92.4144600000000054 17.4136330000000008 15 2181.58020091194021 10.9815248502016001 198.659130000000005 16.4149910000000006 1.2220006000000001 0 0.99864196999999999 0.421667100000000017 0.576974870000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.084341169325995 -62.9959006728982018 22.3241511252896991 -12.4325530639379007 100001 5327.66992 5310.66992 5391.10986 0.252999991 0.0476000011 0.379999995 0.133000001 0.0305000003 0.184100002 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453020672907776 2481453020672907776 589591510 2015.5 25.2230784035039015 0.278508737556606989 -2.85682143342692996 0.159899798211075 4.82411366749488035 0.276240915225117012 17.4634280000000004 7.57016418942787972 0.639056438165895968 -33.093688574400602 0.296764890856402008 -0.265230599999999983 0.26124130000000001 0.474579130000000016 -0.24177535 0.0897820000000000007 -0.386826000000000003 0.422858659999999997 -0.255923000000000012 0.311459240000000026 -0.410478830000000017 131 0 129 2 0.655920150000000035 133.916 0 0 31 false 0.584923450000000011 1.2429531206803599 0.0521413753347559003 -0.0599154530000000005 15 9 0.598295200000000027 0 15 false 129 885.370161904496968 2.54498423221550985 347.888 18.3205530000000003 14 138.424788582345997 6.78841201684242002 20.391335999999999 19.9983539999999991 15 1262.85404576788005 10.3146872588113006 122.432609999999997 17.0085370000000005 1.58270400000000011 0 2.98981669999999999 1.67780109999999993 1.3120155 \N \N 0 \N \N \N NOT_AVAILABLE 151.032214741117002 -62.9984032475760998 22.3055989639494001 -12.4171209411234003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453432989772160 2481453432989772160 97743781 2015.5 25.2395338921351993 0.0695656827033095948 -2.84534802304458001 0.0560667326288500009 0.466264689291161993 0.0834919772478538019 5.58454470000000036 -5.30289990897713981 0.154895807429519 -5.36195152129571007 0.108213646199435007 0.183176310000000009 0.280153240000000026 0.0846741049999999995 0.0688685599999999953 -0.14563683999999999 0.0636042099999999944 0.130190639999999996 -0.133622350000000001 0.0834170899999999993 0.204048990000000013 150 0 149 1 0.278626859999999976 148.100006 0 0 31 false 4.36575839999999982 1.61582342855729011 0.0173323030887429994 0.0990128140000000045 17 10 0.144211499999999992 0 17 false 148 4434.14091266040032 3.70507714503230012 1196.77002 16.5713420000000013 16 2204.02362528529011 14.9803618979300008 147.127530000000007 16.993347 14 3207.66964958853987 11.3583335061035999 282.406700000000001 15.9964460000000006 1.22046039999999989 0 0.996901499999999996 0.42200470000000001 0.574896799999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.054451658763014 -62.9810895351173983 22.3255722121304991 -12.4125100677846003 100001 5335.75 5308.06982 5356.5 0.377499998 0.166500002 0.463 0.189300001 0.0909999982 0.231299996 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453501709252608 2481453501709252608 1473345065 2015.5 25.2312464391193991 0.163165935218548996 -2.83531061798063 0.120389476482103006 1.06071067183792 0.190407478713785994 5.57074069999999999 14.6473918667480003 0.363104308811756982 -5.34729333294667963 0.220557148787586005 0.123316460000000003 0.312112700000000021 0.0821796500000000069 0.0478659530000000027 0.0166231129999999984 -0.0380132999999999999 0.206635430000000009 -0.127014889999999991 0.197294789999999998 0.00125609010000000011 156 0 154 2 2.85936119999999994 203.190994 0.310301408289586023 0.676480246015542019 31 false 0.777906399999999998 1.41010552449301008 0.0381522972973354982 0.0623266440000000005 18 10 0.32151318000000001 0 18 false 153 1200.9606472288599 2.33294673346183989 514.78302 17.9895439999999986 16 424.205707921783016 8.79379498886845035 48.2392099999999999 18.7824479999999987 17 1145.87864785820989 11.3314250160933003 101.12397 17.1140730000000012 1.30735709999999994 0 1.66837499999999994 0.792903899999999995 0.875471099999999947 \N \N 0 \N \N \N NOT_AVAILABLE 151.028640905471008 -62.9754547687625035 22.3214795491054012 -12.4001291964943992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453467349512064 2481453467349512064 274435485 2015.5 25.2513022874045987 0.444871146469713985 -2.83964348346715001 0.322774108483986022 0.404259202032917986 0.511771425821297976 0.789921399999999996 -1.07077036422836991 0.905156650441896971 -5.15313384844816014 0.535946450081693948 0.240448600000000012 0.405134400000000006 0.0492603370000000013 0.174584949999999989 0.14401101999999999 0.0738214249999999961 0.284793350000000001 -0.0765018100000000034 0.226207459999999999 0.0684594439999999943 151 0 150 1 0.436670180000000019 151.875 0 0 31 false 0.115764339999999993 1.62303931826518011 0.102307938772612003 0.0870878199999999963 17 10 0.79599120000000001 0 17 false 149 303.785838269508986 1.6147857596450701 188.128006 19.4819470000000017 15 133.403641880035991 11.2931924881686996 11.8127490000000002 20.0384700000000002 16 268.430699460141 10.4084036423406001 25.7898040000000002 18.6898400000000002 1.32275530000000008 0 1.34862900000000008 0.556522370000000044 0.792106599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.072651716841989 -62.9709745594258976 22.3389127987512985 -12.4115368215607003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453536068991488 2481453536068991488 1047577166 2015.5 25.2483584156851997 0.927646400612853972 -2.83430323303843013 0.791919526874052981 0.968121541074919989 1.08280039019770991 0.89409050000000001 -2.04089759958303985 2.09551151650578005 -14.7158409085883992 1.85218690387500007 0.302274260000000017 0.354956539999999987 0.0133284779999999995 -0.0011971315000000001 0.139059249999999995 0.0101110430000000001 -0.179384719999999998 -0.216888770000000008 -0.160771520000000001 0.366139900000000018 125 0 124 1 0.872950140000000041 132.264999 0 0 31 false 0.0265504480000000008 1.47692308117227999 0.248003077026629992 0.144757579999999997 15 9 2.04746030000000001 0 15 false 124 127.367004076678995 1.58178882247371999 80.5208969 20.4257239999999989 8 45.4384545837926979 5.04164367234849031 9.01262799999999942 21.2078290000000003 11 189.972874210554011 13.1932031534865004 14.3992989999999992 19.0651909999999987 1.84829130000000008 0 2.14263730000000008 0.78210449999999998 1.3605328000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.061843438233012 -62.9673641138687969 22.3381282026014993 -12.4054889906790997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453162407020544 2481453162407020544 902462956 2015.5 25.2655966032759984 0.0833486984805174996 -2.86134246114886981 0.0635684845513847935 3.8641172927370202 0.0967779795013073013 39.9276499999999999 18.5151372856794012 0.182255491034812006 1.44280746702216001 0.121039191975723007 0.197181400000000007 0.284591760000000027 0.15153293000000001 0.0176612509999999993 0.0199837739999999993 -0.044282402999999998 -0.024082137 -0.153893129999999989 0.195760220000000013 0.112166039999999995 135 0 135 0 5.57296200000000042 241.149002 0.358115266717020986 5.38209484754724965 31 false 3.43957949999999979 1.26401133388642006 0.0226780619179304983 0.0602002400000000021 15 9 0.166279380000000004 0 15 false 135 5921.49764044221956 5.30028390796884974 1117.19995 16.2572860000000006 14 1437.14507448804011 17.3678547577769002 82.7474100000000021 17.4576360000000008 14 6915.88341781305007 22.8869559280846993 302.175749999999994 15.1623009999999994 1.41062770000000004 0 2.29533480000000001 1.20034979999999991 1.0949850000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.121248190441008 -62.9846559746386987 22.3443187455407006 -12.4369690114201994 100001 3498 3447 3846.28003 0.0719999969 0.0489000008 0.34799999 0.0403000005 0.0249000005 0.202999994 200111 0.524879399999999996 0.434128139999999996 0.540525999999999951 0.0371614730000000004 0.0352421960000000034 0.0390807499999999974 +1635721458409799680 Gaia DR2 2481450237534098048 2481450237534098048 255772490 2015.5 25.2945365165224985 0.39212562863070699 -2.86313238573392015 0.266432339810305008 0.069002193240256901 0.450768323296521001 0.153076839999999992 4.88844761865301969 0.824142000188956003 -8.1203597389918496 0.476782282212374009 0.0893807400000000002 0.347416200000000008 0.0245807060000000008 0.0935600600000000004 -0.045057576000000002 0.0403202469999999966 0.177249400000000001 -0.077483620000000003 0.165743439999999992 0.0543359070000000027 160 0 155 5 -0.369759300000000013 143.039001 0 0 31 false 0.143811300000000003 1.49280538412993002 0.0964903459386071971 0.0504202799999999979 18 10 0.723892800000000003 0 18 false 157 345.606565549909988 1.87699016154172993 184.128006 19.3419109999999996 16 204.622444098288014 14.1123583685170004 14.4995209999999997 19.5740049999999997 17 250.086303385918995 6.84353491165347982 36.5434380000000019 18.7666949999999986 1.31568320000000005 0 0.80731010000000003 0.232093810000000011 0.575216300000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.180606169769987 -62.9741006215213019 22.3711616665184998 -12.4492793584054997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453471644665344 2481453471644665344 1263704835 2015.5 25.2630557604935007 0.0380975293279489022 -2.83158637286856019 0.0303691322897713008 0.715867480550908986 0.0449777966767632015 15.9160190000000004 -2.14690415781007005 0.0813040001272272994 1.37821858190358992 0.0627058843987200049 0.173140899999999986 0.343617530000000004 0.0324136469999999968 0.020928973 -0.107157215 -0.0103735359999999992 -0.0672072999999999976 -0.0811769900000000044 0.100903220000000002 0.235251949999999987 161 0 157 4 0.879557299999999986 167.145996 0 0 31 true 16.1077210000000015 1.60640548128628002 0.0101088293419847996 0.0751159899999999936 18 10 0.0822666499999999967 0 18 false 155 14223.6095760314001 7.15527817442005976 1987.84998 15.3058409999999991 14 7968.36848312394977 11.2849001014623003 706.108899999999949 15.5979639999999993 17 9265.02760101738022 18.4612964055917992 501.862239999999986 14.8448030000000006 1.21160500000000004 0 0.753161430000000021 0.292122839999999995 0.461038600000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.088633748159992 -62.9587291026195999 22.3531264349179004 -12.4083704215055999 100001 6426.5 5573.12012 7933 0.0173000004 0.00850000046 0.125699997 0.00980000012 0.00389999989 0.0716999993 200111 0.836076599999999948 0.548681399999999986 1.11172739999999992 1.07419939999999992 0.923425700000000016 1.22497319999999998 +1635721458409799680 Gaia DR2 2481453467352040064 2481453467352040064 510377241 2015.5 25.2661611325391995 0.996573320516658034 -2.83591396080898983 0.802519493200740008 -0.792211208008837042 1.10314182929174009 -0.718140840000000003 -1.42247114240059003 2.51847269534559004 -1.93075365667128995 2.01730284898988987 0.064240469999999994 0.202798919999999994 0.156656030000000002 -0.209709000000000007 0.192996899999999999 -0.229074880000000008 -0.148571850000000005 -0.267538580000000026 0.103495180000000006 -0.120439199999999996 123 0 123 0 1.51309990000000005 142.048996 0 0 31 false 0.0236059610000000017 1.93838214403263009 0.272480163518810992 0.0783603600000000039 14 9 2.25891799999999998 0 14 false 122 120.802267880683999 1.33948833644191989 90.1854019 20.4831770000000013 12 81.7583054456993068 7.52744853818551007 10.8613569999999999 20.5700590000000005 11 78.7027185968162968 14.5704675928312994 5.40152300000000007 20.0219459999999998 1.32829480000000011 0 0.548112869999999974 0.0868816399999999961 0.461231229999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.098826945788005 -62.961350993069999 22.3544467970334004 -12.4135361698030007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453329910560128 2481453329910560128 761987306 2015.5 25.2932519904396997 0.293220478280921015 -2.83709343708009021 0.204166703977040009 0.672702307541249045 0.340913132423309007 1.97323669999999995 -0.218709952248203998 0.675420212312279 -1.91567367551016998 0.368418287362591024 0.115019663999999994 0.210901530000000004 0.124548629999999994 0.0490929219999999972 -0.0423116269999999975 0.00282049439999999992 0.163481039999999994 -0.15890362999999999 0.207774530000000013 0.0199262950000000001 152 0 148 4 4.47001500000000007 231.776993 1.16309770274976998 5.82762675374825978 31 false 0.258204759999999978 1.54234485411660005 0.0715712886083991057 0.0197320879999999983 17 9 0.595794099999999993 0 17 false 148 690.012233939811949 2.79827844649433999 246.585007 18.5912250000000014 14 283.951622135345985 8.43506541765616014 33.6632400000000018 19.2182770000000005 15 673.362727354097956 31.0977347348927999 21.6531120000000001 17.6912979999999997 1.3873875 0 1.5269794000000001 0.627052300000000007 0.899927139999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.153898458863011 -62.9510294529534988 22.3797604009852016 -12.4245981114928004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450070030588032 2481450070030588032 503575652 2015.5 25.3234462276258014 0.110093372722651003 -2.86590692015544013 0.0845202694689559941 2.4118184598168102 0.129928078975621003 18.5627199999999988 4.37265570319610042 0.245380817680523 -47.4546919816682973 0.168131272327098014 0.112468650000000003 0.278485800000000006 0.0675664599999999949 -0.017276940000000001 -0.0768551100000000043 -0.0838712900000000011 -0.00304815700000000012 -0.0874472260000000029 0.204136939999999989 0.0691770899999999966 143 0 142 1 1.67602809999999991 165.899994 0.142038231974387003 0.284451642924589021 31 false 1.73870290000000005 1.28743139465178991 0.0312615247238624966 0.0641607200000000044 16 10 0.219524639999999993 0 16 false 139 2035.14727807890995 2.88746204216342983 704.822021 17.4168759999999985 14 483.885441720409005 21.310172695963999 22.7067809999999994 18.6395319999999991 14 2451.27562684780014 17.5456238570199012 139.708660000000009 16.2884390000000003 1.44223520000000005 0 2.35109330000000005 1.22265620000000008 1.12843699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.240776941937014 -62.9644262196429025 22.3976067406474009 -12.4624920214001005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450310548756096 2481450310548756096 1325544890 2015.5 25.3233945563961989 0.113135974959683999 -2.85695238213669001 0.0872964658900998031 0.469240814632211012 0.132606554981282987 3.53859449999999987 3.96008314705751996 0.248902974621379003 -5.8909735967278003 0.174217109693348998 0.120399030000000004 0.30481142 0.0699183500000000041 -0.0169754480000000006 -0.0413291159999999991 -0.0892989599999999967 -0.00187373089999999997 -0.091997560000000006 0.197713909999999993 0.0636883149999999953 141 0 137 4 1.71293990000000007 161.070999 0.318579488793059973 1.59538011997624007 31 true 1.69300460000000008 1.63769610684079003 0.0318627465069478977 0.0709416400000000003 16 10 0.222549130000000012 0 16 false 133 2308.28730964984015 3.01831380678415995 764.760986 17.2801420000000014 16 1243.94255099256998 15.4570857784020994 80.477170000000001 17.6143880000000017 16 1577.19526444744997 19.7122477089904002 80.0109300000000019 16.7672060000000016 1.22217799999999999 0 0.847181300000000026 0.334245679999999989 0.512935640000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.232351471691004 -62.9563320602011984 22.4009343928359996 -12.4541476528887003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481450340613315968 2481450340613315968 54746279 2015.5 25.3114520486476984 0.644155506738574024 -2.85472757159502999 0.450142377685283979 -0.529010081163863055 0.729392969832304949 -0.725274439999999965 0.0784729550147277022 1.4643754725754301 -2.11168226643835011 0.840012830745684003 0.060895734 0.259030199999999988 0.0370749569999999987 0.0401989670000000021 0.0071637580000000001 -0.018009072000000001 0.160019860000000014 -0.116373389999999993 0.179047390000000001 -0.0285918450000000011 136 0 133 3 1.59179770000000009 154.438995 1.11417770679890005 0.603739659260084993 31 false 0.0579977259999999994 1.68016473384760001 0.172225075044559001 0.0438880999999999993 16 10 1.28516209999999997 0 16 false 132 202.599809950382991 1.72179324229797004 117.667999 19.9217680000000001 7 124.327933497995005 5.58124138350761001 22.2760350000000003 20.1149650000000015 6 123.503401102463002 3.80412856783240994 32.4656220000000033 19.5327219999999997 1.22325550000000005 0 0.582242970000000026 0.193197249999999987 0.389045719999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.206503893097988 -62.9593522489582966 22.3904167088524986 -12.4476870201807994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454807379312256 2481454807379312256 352129653 2015.5 25.3113369996743991 0.736141558366807947 -2.83176284965434011 0.480197059202075005 2.86543569608005999 0.823428531525766005 3.4798840000000002 35.4002709173621 1.71017051221618011 -5.30687905610263044 0.864848210304595022 0.0998227599999999965 0.246166620000000003 -0.0409354599999999999 0.0862409249999999961 0.0936240599999999951 0.0325281840000000017 0.150858180000000008 -0.102917135000000007 0.176777419999999991 -0.0271166410000000004 114 0 112 2 1.94534410000000002 137.266998 1.20732444933707006 0.680546966982375046 31 false 0.0579412200000000016 1.31051962036283998 0.196950915932126991 0.0207657940000000006 13 8 1.50029520000000005 0 13 false 114 188.073522041199993 1.71927699916958998 109.390999 20.0025459999999988 11 64.4283385607937049 7.99083775759693982 8.06277700000000053 20.8286949999999997 12 227.809159757331003 8.26674863851119923 27.5572869999999988 18.867992000000001 1.55384710000000004 0 1.96070290000000003 0.826149000000000022 1.1345539 \N \N 0 \N \N \N NOT_AVAILABLE 151.184967711013002 -62.9385805574762998 22.3989668280775014 -12.4262936126342005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451783722328448 2481451783722328448 658551078 2015.5 25.3334540639650996 0.204695541985521007 -2.85129296140424993 0.138451290111214986 1.66501246076583009 0.235244089143521989 7.0778080000000001 -5.33033762850831039 0.478601597395685974 -15.8182639042397994 0.259266095888120995 0.0360245800000000005 0.204484780000000005 0.196860160000000006 -0.0155344899999999998 -0.0357804999999999998 -0.0735989699999999997 0.162630479999999994 -0.199358339999999995 0.234048590000000001 -0.071049970000000004 142 0 139 3 4.82350000000000012 228.537003 0.531819551454324024 1.75377366135323998 31 false 0.595367300000000044 1.41257882322332007 0.0486108837873144017 -0.00517068660000000006 16 9 0.425887169999999982 0 16 false 136 1012.99440407745999 2.3262316001910901 435.466003 18.1743489999999994 16 282.393987264576992 9.87660732109836026 28.5922049999999999 19.2242490000000004 15 1125.77266485778 13.2633476268205008 84.878469999999993 17.1332929999999983 1.39010309999999992 0 2.09095569999999986 1.04990000000000006 1.04105570000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.24711695197999 -62.9469572277809988 22.4126346721238008 -12.4525851654533 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451852441809408 2481451852441809408 15337327 2015.5 25.3233226179968014 0.869613499453963046 -2.83833802967004978 0.534423325447912045 -0.340114045954171995 0.903906829302407955 -0.376271130000000009 2.14243863651606992 2.27259207831450993 -1.4554243002326801 1.01171027789519008 0.0237920099999999989 0.0589752499999999999 -0.197175619999999996 0.0628168900000000002 0.0117390540000000005 0.0418426250000000013 0.102936104 -0.0160040860000000007 0.15609205000000001 -0.0707570700000000052 114 0 113 1 0.848983000000000043 120.247002 1.4175017953862501 0.61459482444802005 31 false 0.0437418899999999986 1.3061875146586801 0.224861873265609996 -0.0748053199999999946 13 8 2.00106099999999998 0 13 false 111 160.507304051022004 1.31085291021215999 122.445 20.1746300000000005 13 92.1163868395837966 12.7941250914145996 7.19989729999999994 20.4405460000000012 13 114.229050303297001 9.80206045593440045 11.653575 19.6174800000000005 1.28558290000000008 0 0.82306670000000004 0.265916819999999998 0.557149899999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.214922432560002 -62.9394896675994033 22.4078848349885007 -12.4368146116259997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481451822377266176 2481451822377266176 1311081225 2015.5 25.3401605994107015 0.762041695740823033 -2.8346456366273598 0.521115858185962955 0.773617943483269954 0.840418396088008945 0.920515239999999957 -12.9605120345942009 1.93264044703479998 -16.4684228871578995 1.01584368871885 0.0709985199999999955 0.102404120000000001 -0.0201519799999999999 0.0240213420000000011 0.0220367609999999985 -0.00154776039999999994 0.0679393199999999975 -0.124410935 0.168147760000000007 -0.0403107549999999967 123 0 121 2 3.49929999999999986 176.994995 2.16562710917858992 1.94924059866712995 31 false 0.045226622000000001 1.36844142523284007 0.181401386737286008 -0.0367380569999999976 14 9 1.69546590000000008 0 15 false 121 191.251033031296004 1.62244262038181009 117.877998 19.9843559999999982 11 62.4173879708266028 8.25960980801706945 7.55694149999999976 20.8631250000000001 13 265.496099964021994 11.3815453080735995 23.3268950000000004 18.7017750000000014 1.7145710999999999 0 2.16135030000000006 0.878768899999999964 1.28258129999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.244995168640003 -62.9290388416839974 22.4252888287027012 -12.4395732280492997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465871214925952 2481465871214925952 1448732930 2015.5 25.1360077846896992 0.836611808693049963 -2.81731294542381017 0.599986876903411015 -0.756709529242494017 0.919644138330632965 -0.82282865000000005 6.62499638026026982 2.43117913890983983 -19.6450664499715018 1.96327198955266002 -0.0532599699999999968 -0.0145141149999999993 0.335244859999999978 -0.0630742200000000003 -0.218031059999999999 0.0152740240000000006 0.129624010000000012 -0.434536429999999974 -0.216297550000000005 0.175131800000000004 125 0 122 3 0.241623539999999998 120.056 0 0 31 false 0.0377754939999999997 1.95095171889061003 0.233774459258945994 0.0970052599999999959 15 9 2.2191860000000001 0 16 false 126 145.754514422375991 1.72413286689385004 84.5379028 20.2793099999999988 11 92.0783364421406958 22.3096421797757003 4.12728900000000021 20.4409939999999999 12 135.333330931335013 6.56209827412325986 20.6234840000000013 19.433409000000001 1.56023749999999994 0 1.00758550000000002 0.161684040000000001 0.845901499999999973 \N \N 0 \N \N \N NOT_AVAILABLE 150.821831225154 -62.9988911324301029 22.2377391126352997 -12.3483427476573997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454051465068416 2481454051465068416 968258347 2015.5 25.150193138854199 0.838452061711935981 -2.83153299852002016 0.60013607457792395 0.541093959841830952 0.891806781827942041 0.606739000000000028 1.33941191633918999 1.9007728851632899 -4.54497226853268987 1.14943926850427003 0.0295278019999999988 0.263941619999999988 0.124142340000000004 0.0259336049999999985 -0.0536007660000000011 -0.0151421690000000005 0.187289029999999995 -0.130924970000000002 0.15226540999999999 -0.00760020270000000015 152 0 152 0 2.60224799999999989 195.479004 2.52499013785361992 2.19323334365174016 31 false 0.0295436199999999996 1.55236047310590997 0.212642758909454999 0.047984930000000002 17 10 1.6712937000000001 0 17 false 152 157.576140204859001 1.35559856808060997 116.240997 20.1946399999999997 14 94.084721618558504 16.8894791299743012 5.57061100000000042 20.4175910000000016 13 99.2990395176439051 5.08776786078055032 19.5172120000000007 19.769558 1.22724009999999994 0 0.648033140000000007 0.222951890000000014 0.425081250000000022 \N \N 0 \N \N \N NOT_AVAILABLE 150.86326295703401 -63.0059055613530035 22.2458556125621989 -12.3667841491187005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465905575935104 2481465905575935104 875677173 2015.5 25.1382791649071997 1.61453011037345995 -2.81119132006738015 1.31592178425628004 \N \N \N \N \N \N \N 0.0517580659999999984 \N \N \N \N \N \N \N \N \N 77 0 77 0 1.19925959999999998 86.6149979 0 0 3 false 0.0176288040000000014 \N \N 0.209024999999999989 9 7 5.39764999999999961 0 10 false 87 98.2643649957394985 1.62475256251449007 60.479599 20.707376 6 66.6841493682923954 8.25494999540046948 8.07807999999999993 20.7913320000000006 7 124.043638221170994 15.0643355754636001 8.23425899999999977 19.527985000000001 1.94096599999999997 0 1.2633475999999999 0.0839557650000000016 1.17939189999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.820753465807002 -62.9923810211030002 22.2422079438808993 -12.3434885178211005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466081668646144 2481466081668646144 485775342 2015.5 25.1247170511059004 0.21734314149443501 -2.80755028880810986 0.156079536837074012 1.02051966782493997 0.242166079841473009 4.2141314000000003 21.2903290303441004 0.544613191716237011 3.00033934767497001 0.326276505919853022 0.00315996029999999995 0.13222123999999999 0.036244883999999998 0.054844335000000001 -0.316677800000000009 0.135557580000000011 0.186765459999999994 -0.19267513 -0.0576668160000000027 0.150409500000000002 149 0 148 1 1.53109359999999994 169.738998 0 0 31 false 0.472170350000000016 1.40950846452309997 0.0530312273277408971 0.00161854610000000004 17 10 0.484424829999999973 0 17 true 146 753.78788541978895 2.27219351756551013 331.744995 18.4952429999999985 16 220.436903399290998 10.1746897653836008 21.6652200000000015 19.4931769999999993 15 811.960953437368971 11.0978499834599997 73.163809999999998 17.4880829999999996 1.36961320000000009 0 2.00509449999999978 0.997934340000000031 1.00716019999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.790294270828014 -62.9947140340673002 22.2306923174856017 -12.3351104191022998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465909869954048 2481465909869954048 1619071133 2015.5 25.1341118946727988 0.631730085382677053 -2.80308462750679022 0.461183613244839974 0.850865233447473002 0.720693161809239036 1.18062069999999997 -1.97549816640510989 1.61650859970536009 -5.58991431312942044 0.986237855201785973 0.00609197500000000034 0.0872758000000000006 0.148017170000000003 0.049777799999999997 -0.341932179999999974 0.152331460000000002 0.214235719999999991 -0.280056360000000004 -0.0966928499999999969 0.17037796999999999 155 0 152 3 1.65792610000000007 176.544998 0 0.196836252715832993 31 false 0.0548546540000000027 1.84823071179576992 0.148922187697380998 0.0575273069999999997 18 10 1.4425557 0 18 true 153 189.557084431072013 1.87846762212497009 100.910004 19.994015000000001 16 115.364925350440998 9.43872921213232985 12.2225064999999997 20.1962030000000006 16 134.119459105294993 7.73752231520701983 17.3336450000000006 19.4431900000000013 1.31614389999999992 0 0.75301359999999995 0.202188489999999998 0.550825099999999956 \N \N 0 \N \N \N NOT_AVAILABLE 150.804984134141989 -62.9867460226039029 22.2413062677409989 -12.3344183987346998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466111733106816 2481466111733106816 895579292 2015.5 25.1304512678242986 0.199447711473384998 -2.79351778930257 0.158379653954727001 0.188432479591366997 0.232928515753137999 0.808971299999999949 0.63740825127864098 0.481753869577449978 -2.63874661877324002 0.293623256035871028 0.127773999999999999 0.14706016999999999 0.153475699999999993 0.111848320000000001 -0.286321129999999979 0.184043449999999997 0.312552779999999975 -0.228761120000000012 -0.0239946449999999985 0.198203269999999987 160 0 157 3 1.92669439999999992 187.360992 0.544598050245071019 1.59934970096069007 31 false 0.497635959999999988 1.6295313906520601 0.0470297623327081971 0.0472679920000000017 18 10 0.433951379999999998 0 18 false 156 916.739045633335991 2.29949281250440007 398.670013 18.2827510000000011 16 500.204322038406019 15.9375101120356994 31.385349999999999 18.6035199999999996 15 613.449874812561006 5.19444671129700009 118.097250000000003 17.7924730000000011 1.21479950000000003 0 0.811046599999999951 0.320768359999999975 0.490278239999999976 \N \N 0 \N \N \N NOT_AVAILABLE 150.788895333298996 -62.9795710463730032 22.2414370334297011 -12.3241774845176995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466043016156288 2481466043016156288 1462682544 2015.5 25.1534721963415002 1.07667661648341006 -2.78972384722509981 0.866782493388538966 -0.073087987384318695 1.21750643384773993 -0.0600308849999999991 4.86818009922486983 2.88647149025760008 -5.43784259442132978 2.56292513020436985 0.0761826260000000033 0.122524590000000003 0.13745273999999999 0.0456647300000000006 -0.214814300000000014 0.0992387899999999934 0.0508361719999999989 -0.31004103999999999 -0.20562896 0.34029195000000001 123 0 123 0 2.28368450000000012 155.869995 2.87946564375369007 1.38321858706752998 31 false 0.0189346449999999999 1.59477864013680004 0.287135174818200001 0.107154529999999998 15 9 2.80592780000000008 0 15 false 125 115.028153931456998 1.37082500752241998 83.9115982 20.5363560000000014 10 62.0214111308361993 16.4636714617702999 3.76716760000000006 20.8700329999999994 10 136.519262612223002 8.29646121867159003 16.4551200000000009 19.4239350000000002 1.72601810000000011 0 1.44609830000000006 0.33367730000000001 1.1124210000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.831416498927013 -62.9665418619811987 22.2647475208606984 -12.3291258313567003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454120184546816 2481454120184546816 889470716 2015.5 25.1885183946656994 0.452553636173289975 -2.82839130445840015 0.31755065113238401 0.279173849937511986 0.477810412784064997 0.584277449999999976 37.930775689497203 1.11620199655751007 -30.5903902558939009 0.61917406976838496 -0.108338706000000007 0.157723379999999996 0.227559939999999988 -0.109353475000000006 -0.0856378799999999996 -0.156327369999999993 0.28529294999999999 -0.184830679999999997 0.203845799999999994 -0.190560759999999996 159 0 156 3 4.45710799999999985 241.542007 1.53810905960752997 2.89740620943357019 31 false 0.107578813999999995 1.59352575538963004 0.0989287954769938055 -0.00733943699999999987 18 10 0.997333800000000048 0 18 false 155 356.187993752072998 1.43875667976774002 247.567001 19.3091679999999997 16 137.094183960113014 12.3907730981516 11.0642160000000001 20.0088399999999993 16 344.556292280735988 9.6948974711862892 35.5399630000000002 18.4187699999999985 1.35223669999999996 0 1.59007070000000006 0.699672700000000036 0.890398000000000023 \N \N 0 \N \N \N NOT_AVAILABLE 150.936962457091994 -62.9870548537202026 22.2834708479409009 -12.3779719289022996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454605516030592 2481454605516030592 1310469488 2015.5 25.1925356056642009 0.0941451054707715951 -2.79980933699224011 0.0707509744732967016 4.38699294016285002 0.106698968611074002 41.1156099999999967 -2.33601648418598007 0.216651181281701993 -51.1640272748548028 0.138981553562966986 0.0116081929999999993 0.241309880000000004 0.142510739999999997 -0.0372529549999999973 -0.143545759999999994 -0.0920513200000000059 0.13974257000000001 -0.110202014000000001 0.194131579999999998 -0.0166168400000000008 161 0 158 3 4.15860840000000032 236.990997 0.394222823969128 4.19055714485173958 31 true 2.25535320000000006 1.25892302934209011 0.0215266426317029004 0.00937329599999999971 18 10 0.195554050000000007 0 18 false 158 3641.4507337437899 4.40973062201068 825.776001 16.7851800000000004 15 736.132857110818009 10.2350692473922997 71.9226100000000059 18.183997999999999 17 4512.89442163706008 18.5366839188204011 243.457490000000007 15.6257819999999992 1.44146599999999991 0 2.55821599999999982 1.39881900000000003 1.15939710000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.918673720008996 -62.9594149703185977 22.2980719179033002 -12.3528798318252004 100001 3728.37012 3319.66992 3946.83008 0.389299989 0.321500003 0.493299991 0.217999995 0.173600003 0.25999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466390906028288 2481466390906028288 111197698 2015.5 25.1938088384742009 1.2003282533538 -2.7857238952232799 0.86163678302556701 -0.341280302726848006 1.18088408070282003 -0.289004060000000007 -7.18664994206841978 2.96127272467656022 -5.90011217431395973 2.16355151238215981 -0.0320328920000000003 0.0985286400000000007 -0.0937442599999999959 0.0567241760000000012 -0.0742468299999999998 0.0315136300000000008 -0.295894299999999999 -0.0881889240000000019 0.000419192949999999979 0.116848599999999997 120 0 118 2 2.99249270000000012 163.367004 3.58708677284680988 2.3795811565569398 31 false 0.0186087339999999983 1.21579514214010009 0.285943488908111998 -0.043400550000000003 14 8 2.61660480000000017 0 14 false 117 110.333862856886995 1.27318654092182992 86.6595993 20.5815939999999991 7 31.4361706047337996 4.75145919394183025 6.6161089999999998 21.6078149999999987 10 139.113703435834992 8.08396940784792051 17.2085879999999989 19.4034960000000005 1.54576179999999996 0 2.20431899999999992 1.02622030000000009 1.17809870000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.908264321012012 -62.9460878653801004 22.304594968027299 -12.3402539777156992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454635580366720 2481454635580366720 970428151 2015.5 25.2056393335592013 0.467376467923771022 -2.79119682916903988 0.303976315354585025 1.87635640540441995 0.490313788821874985 3.82684800000000003 11.5857002264514009 1.15283792366230009 3.85864383870057015 0.567071634437326999 0.00885241299999999995 0.0990335199999999999 0.0152701409999999992 0.0445020120000000005 -0.141260219999999992 0.0529679129999999984 0.169796699999999995 -0.114442730000000006 0.137590689999999988 -0.00765997540000000043 151 0 150 1 4.1474713999999997 226.817993 1.60318703156292997 3.44654746232095022 31 false 0.107923514999999998 1.33175275694054007 0.101658826350690998 -0.0593771969999999996 17 9 1.01177779999999995 0 17 false 149 346.352458784206021 1.60274835411455996 216.098999 19.3395699999999984 11 92.710054922451107 6.75855834682390988 13.7174300000000002 20.4335699999999996 13 462.187531181320992 10.4068318900388004 44.4119340000000022 18.0998739999999998 1.60211830000000011 0 2.3336964 1.09400180000000002 1.23969459999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.936895655857001 -62.9461177040576985 22.3137760279702988 -12.3496955578146004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466287827075584 2481466287827075584 869252692 2015.5 25.1322929169956986 0.17823674417202201 -2.78106830125246018 0.135202673734383993 0.112177890985293002 0.205839831183111999 0.544976600000000033 -0.875638716141119988 0.440242761674194016 -2.68776930008456016 0.30222935523960498 0.034195215000000001 0.147739890000000013 0.11676069 0.0312341540000000001 -0.305231960000000024 0.0971845600000000032 0.105016366 -0.223342449999999998 -0.0456311959999999989 0.205967000000000011 159 0 157 2 1.03320590000000001 170.016006 0 3.260193663416e-15 31 false 0.607508060000000016 1.6427780909607399 0.0442431007739388996 0.0399709099999999984 18 10 0.397593379999999996 0 18 true 155 929.783839182288034 2.67962227905991979 346.983002 18.2674100000000017 17 457.118896989510972 12.7887550750907995 35.7438160000000025 18.701315000000001 17 711.972686253237953 15.6376177267040006 45.5294839999999965 17.6307620000000007 1.25737999999999994 0 1.07055279999999997 0.433904650000000003 0.636648199999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.78117038212801 -62.9674858628363978 22.2478844133211986 -12.3132826772054003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467078101057536 2481467078101057536 46927276 2015.5 25.1325432126823998 0.309198677499703978 -2.76021062767555003 0.194697299589073003 -0.143771280234524013 0.323945653157315994 -0.443812969999999973 7.01470954733555985 0.925619008352960959 -1.83785427057626993 0.448395515452019999 -0.0801393700000000014 -0.138274709999999995 0.38042189999999998 -0.147546320000000009 -0.189589960000000002 -0.0611743100000000026 0.182670379999999993 -0.406022800000000017 0.105386785999999996 -0.131978679999999987 129 0 127 2 2.25660749999999988 159.953003 0.798539757460444033 2.24993902384604993 31 false 0.329819980000000013 1.58088411435928 0.0723357661160155957 -0.0517700050000000009 15 9 0.830550600000000028 0 15 true 124 702.706599163298961 2.09553398039546979 335.334991 18.5714299999999994 13 420.247495783446027 15.6722221955115 26.8148000000000017 18.792625000000001 12 473.249733520133987 7.83741087862726982 60.3834269999999975 18.0741939999999985 1.27150819999999998 0 0.718431500000000001 0.221195219999999998 0.497236249999999991 \N \N 0 \N \N \N NOT_AVAILABLE 150.762580383567013 -62.9484156893861027 22.2559908170941014 -12.2939856509639007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467490417917440 2481467490417917440 314752378 2015.5 25.1481137470348983 0.0812366687927643938 -2.74067679535101005 0.0547070067390647979 0.264878589727245983 0.0897572124973984031 2.95105620000000002 14.2398450098145997 0.234605819471777 -5.65088891491831014 0.117335568069760005 0.0170742870000000005 -0.110158876000000003 0.308709500000000026 -0.0654660199999999998 -0.242970240000000004 0.0220645299999999989 0.180709750000000002 -0.365758499999999986 0.0752611200000000008 -0.0211917809999999998 142 0 142 0 1.59060399999999991 164.298004 0.155061958888704998 0.807268877519994987 31 false 4.23616270000000039 1.65356329021274995 0.0183756537903661012 -0.0653634200000000054 16 9 0.216035110000000002 0 16 false 137 4724.29809021317033 4.71909616100325024 1001.09998 16.5025230000000001 16 2794.59152358867004 15.3549187601864006 181.999760000000009 16.7355920000000005 15 2938.55163247631981 16.7767543663760001 175.156139999999994 16.0915870000000005 1.2135438999999999 0 0.644004800000000044 0.23306847 0.410936360000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.775800819486989 -62.9241819705770027 22.2781554422914994 -12.2815584843558003 100001 6559.24023 6384 6807 0.1655 0.0432999991 0.314599991 0.0850000009 0.0219000001 0.167600006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466420970632320 2481466420970632320 1487531781 2015.5 25.169532186981499 0.282832282996841988 -2.77656545354646989 0.18592943677628701 2.7259822943139902 0.297561149528001001 9.16108200000000039 3.87876531066992003 0.878999513522899956 -32.4591702886958018 0.364556241427355987 -0.0292213430000000003 -0.177487950000000005 0.410609539999999995 -0.0928267799999999976 -0.155112429999999996 -0.00637887000000000003 0.407566250000000019 -0.455352749999999973 0.110486550000000003 -0.163512350000000001 134 0 133 1 1.07333269999999992 145.225998 0.388257381018226988 0.492774939864770001 31 false 0.395092759999999987 1.19221913255300005 0.0595060506304080986 -0.0463205279999999997 15 9 0.790476859999999948 0 15 false 130 697.61172722646495 2.17971209936421007 320.048004 18.5793299999999988 11 142.410844482778998 14.4357129155000994 9.86517500000000069 19.967531000000001 11 907.717966013794012 11.8139783422255 76.8342360000000042 17.3670429999999989 1.5053198000000001 0 2.6004887000000001 1.3882007999999999 1.21228789999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.851412374061994 -62.9478922529805018 22.2849750482209998 -12.3228051449865994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466661488805760 2481466661488805760 320303650 2015.5 25.1731978557656007 0.299749145415732998 -2.76325662109583003 0.21031963808071899 1.2425360454107699 0.326513961712333989 3.80546069999999981 22.4028784045096003 0.844424561973263987 -9.47688157896589978 0.398208702610313992 0.0802437740000000038 -0.0634106549999999963 0.232056259999999986 0.0655196599999999935 -0.254028619999999983 0.156911760000000011 0.340946640000000023 -0.340966580000000019 -0.00979134199999999975 0.0585248770000000029 139 0 137 2 2.1946428 170.175003 0.658905733205833011 1.22915012244737998 31 false 0.291582969999999997 1.41123400396554999 0.0653474561522385949 -0.0345504359999999969 16 9 0.751224800000000026 0 16 false 135 591.753292671742997 2.50328914084182985 236.389999 18.7580150000000003 13 175.31422375713899 26.7662322705335995 6.54982799999999976 19.7418459999999989 14 705.611864825836051 9.33017731496826919 75.6268500000000046 17.640505000000001 1.48867119999999997 0 2.1013411999999998 0.983831400000000023 1.11750980000000011 \N \N 0 \N \N \N NOT_AVAILABLE 150.846522304969 -62.9342693949572975 22.2934786559772995 -12.3117819809598004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466386611208960 2481466386611208960 982257823 2015.5 25.1988827030410008 1.10410662875330989 -2.7784174195007898 0.685701810831475966 4.51654424976749969 1.1112620186578599 4.06433770000000028 12.7372190322169008 2.61341757150283982 3.92554970009951987 1.27258599824369001 -0.0145405949999999999 0.151115159999999998 -0.137640060000000009 0.109817885000000004 0.0146215110000000002 0.116659159999999998 0.102103579999999999 -0.0488061399999999979 0.112827640000000007 -0.0347756300000000018 129 0 128 1 3.23132010000000003 180.100006 3.21624827671032998 2.84383701903405006 31 false 0.0238000319999999987 1.08572047517344994 0.245768256773953003 -0.0631570899999999991 15 9 2.29784999999999995 0 15 false 129 131.947569620863987 1.44946462187228997 91.0318985 20.3873619999999995 13 35.6939268440293986 4.68864160611354031 7.61284999999999989 21.4699020000000012 15 196.457624233916988 9.61999670731701961 20.4217970000000015 19.0287480000000002 1.75942270000000001 0 2.44115450000000012 1.08254049999999991 1.35861399999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.911670910802997 -62.9373319168234033 22.3121733526195989 -12.3353287071221001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466558411046272 2481466558411046272 1632157601 2015.5 25.1937610537044989 1.3049160905221 -2.7600627499233199 0.853480367609220969 3.55815426898492015 1.18868649965462003 2.99334960000000017 -3.21034303090713991 3.25984145770935996 1.61167466348785005 2.12088815788031004 -0.129108319999999999 0.0663895760000000057 -0.231167330000000004 0.181417849999999992 0.0189800780000000009 0.193537879999999995 -0.227151020000000009 -0.0660983849999999956 -0.135884749999999999 0.0150866309999999997 97 0 97 0 0.731120600000000009 101.564003 0 0 31 false 0.0222948599999999997 1.60099084197915009 0.345484822333882002 -0.0628987550000000006 11 7 2.88066999999999984 0 11 false 97 89.3490186821012031 1.29561343886715008 68.9626999 20.8106399999999994 8 38.4203883361874006 6.3664022664400699 6.0348670000000002 21.3899839999999983 9 138.126643415307001 8.61229174718656054 16.0383150000000008 19.4112259999999992 1.97592579999999995 0 1.97875789999999996 0.579343799999999964 1.39941409999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.884604889604987 -62.9227939688309021 22.3142271446291005 -12.3163804060545008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466734503673600 2481466734503673600 310399265 2015.5 25.164950625972299 0.0272872284977002007 -2.75586973913629008 0.0202422338868328 1.00339034814545003 0.0305761642054842991 32.8160969999999992 9.15758418506857019 0.0724867175673941933 -5.24620303516219 0.0467261945075050991 0.103553099999999995 0.0458821839999999995 0.23919934000000001 0.00265053570000000011 -0.207863959999999987 0.0422265120000000008 0.0299981589999999999 -0.3019154 0.0106759590000000005 0.186195019999999989 134 0 134 0 -2.74910280000000018 89.1673965 0 1.76945834017684e-15 31 false 72.0312650000000048 1.60693277516817989 0.0071252494466296501 -0.0462617170000000008 15 9 0.0784115499999999965 0 15 false 132 58791.2498798188972 25.7190397185657993 2285.8999 13.7650839999999999 14 31561.6152902354988 48.9821576991571987 644.349240000000009 14.1034900000000007 14 39273.6565311016966 39.2718129092352015 1000.04693999999995 13.2766669999999998 1.20486080000000007 0 0.82682323000000002 0.338405599999999973 0.488417629999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.82329893331999 -62.9309902441207001 22.2884264282538993 -12.3018794659801998 100001 5815.5 5784.25 5851 0.735000014 0.495000005 0.943499982 0.3917 0.351900011 0.47209999 200111 1.4942702000000001 1.47619269999999991 1.51045969999999996 2.30091830000000019 2.13156679999999987 2.47027000000000019 +1635721458409799680 Gaia DR2 2481466592769332352 2481466592769332352 1612485939 2015.5 25.2007062916118016 0.353225040569419002 -2.75255978828832015 0.199685422613294999 -0.331286463170668011 0.331544434460196991 -0.999221899999999996 0.243162637913917012 0.769713864963258998 -9.0245590184408595 0.365970193582319026 -0.152318160000000008 0.21450263 -0.112125050000000004 0.0938202900000000006 -0.168518869999999987 0.116621440000000007 0.108567469999999999 -0.0472691000000000014 0.106829980000000005 -0.036153051999999998 132 0 130 2 1.4741690999999999 149.037003 0.749424121085422001 1.51646322828801994 31 false 0.277241259999999989 1.57704096800859994 0.0700477453558099039 -0.145248829999999995 15 9 0.678235900000000003 0 15 false 129 587.239116265311964 2.03732876647200012 288.23999 18.7663289999999989 12 286.975861389666022 12.4633973219316996 23.0254919999999998 19.2067760000000014 13 431.375716667640006 13.4352153162123997 32.107838000000001 18.1747799999999984 1.22326929999999989 0 1.03199580000000002 0.440446850000000001 0.591548900000000044 \N \N 0 \N \N \N NOT_AVAILABLE 150.89156562382999 -62.9130791997018974 22.3236575089959004 -12.3119608468508996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466798927764992 2481466798927764992 759207928 2015.5 25.1936419208571998 0.333368698538234975 -2.74362764248157998 0.20947750546435201 0.155786599747141014 0.320437665919510006 0.486168180000000005 9.54693421494656924 0.821336582127126014 -13.0271240299042006 0.387837290434335014 -0.0453124800000000022 0.0527164450000000007 -0.145187989999999989 0.112841259999999999 -0.0388495140000000017 0.143360760000000004 0.142582089999999995 -0.0414829099999999978 0.107088420000000004 -0.0466755100000000034 131 0 130 1 2.52501499999999979 168.509995 0.521836646598983989 0.609984836603509994 31 false 0.258053719999999986 1.54572879503149996 0.0679949437486842001 -0.0826918100000000045 15 9 0.724394259999999957 0 15 false 127 502.379870527894013 2.02098764398702002 248.580994 18.9357849999999992 14 199.723046727644999 9.1292110376703306 21.8773610000000005 19.6003170000000004 14 470.529067774604016 12.6490069134319008 37.1988950000000003 18.0804539999999996 1.33415400000000006 0 1.51986310000000002 0.664531699999999947 0.855331399999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.869295133609995 -62.9079098415002989 22.3203111711369004 -12.3010574261314005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466798929212288 2481466798929212288 113636928 2015.5 25.1923722916232009 2.83346858898597009 -2.73569133935632003 6.94196737002056974 \N \N \N \N \N \N \N -0.150561080000000014 \N \N \N \N \N \N \N \N \N 51 0 50 1 3.20311950000000012 81.7441025 8.25890094789298956 3.80653705267774001 3 false 0.0065170829999999999 \N \N 0.200665100000000013 6 5 37.2382130000000018 0 6 false 52 78.1919365273023033 1.86778839083749992 41.8633995 20.9554620000000007 3 16.0352018970307988 8.29950387709052961 1.93206750000000005 22.3387010000000004 5 136.657854744826011 17.4437092512984009 7.83422000000000018 19.4228340000000017 1.95279800000000003 1 2.91586690000000015 1.38323970000000007 1.53262710000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.859492487837997 -62.9012271547753983 22.3220968262292985 -12.2932120927594006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454261918647680 2481454261918647680 907561923 2015.5 25.2170649576850998 0.128292038667520009 -2.82585449494975016 0.0940708059905327049 3.31918954169290981 0.142236227036022012 23.3357540000000014 1.06413249799665 0.306606645050451987 -2.40491057243974993 0.184847567296989007 -0.0227170850000000014 0.201406499999999988 0.180902389999999996 -0.065876870000000004 -0.0920083800000000007 -0.120990819999999999 0.203385619999999989 -0.156901800000000008 0.203593240000000009 -0.0975542400000000004 161 0 161 0 1.36448680000000011 180.628006 0.260047012372779995 0.753298409700961957 31 true 1.21660339999999989 1.32552313094296004 0.0295865851875108006 -0.0009970262000000001 18 10 0.275355640000000013 0 18 false 161 1643.03502119523 2.51599752388644005 653.034973 17.649248 15 315.184372866676995 10.7005389935459991 29.4549999999999983 19.1049770000000017 15 2077.20568687920013 10.2660825729026008 202.336749999999995 16.4682220000000008 1.45607970000000009 0 2.63675499999999996 1.45572849999999998 1.18102649999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.991615256410995 -62.9728110912967978 22.3115646726699985 -12.3861197189039007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454738659584128 2481454738659584128 287430289 2015.5 25.218451610642699 0.590310669666347043 -2.78479323080457997 0.395466117055879973 0.433250488232149011 0.682990912699199981 0.63434296999999995 1.80247253062252 1.45725410041594006 2.45405559798525008 0.715231631644696053 0.0864681300000000042 -0.0461578440000000034 -0.10141058 -0.0261226950000000013 -0.317976270000000005 -0.0407726470000000021 0.00867924200000000021 0.063926860000000002 0.267293800000000026 0.0802527100000000049 141 0 140 1 1.62606840000000008 162.764008 1.42402546444435996 1.57510492840604011 31 false 0.0728259599999999951 1.37748653599461002 0.125746951551227004 -0.0149026490000000005 16 8 1.28057529999999997 0 16 false 139 242.722484084170986 1.73503567774442002 139.895004 19.7255900000000004 11 74.9895251687666047 8.90780901052593954 8.41840299999999964 20.663886999999999 12 248.413801849189014 11.0083793654125 22.5658840000000005 18.7739809999999991 1.33239949999999996 0 1.88990590000000003 0.938297300000000001 0.951608659999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.956552884849003 -62.9349460354083021 22.3283698420439016 -12.3484569148135996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454498142956928 2481454498142956928 1677850280 2015.5 25.2425864818253984 1.81179874409363006 -2.79062232249403985 1.05258822632052995 -0.525790550153277025 1.36255931145010001 -0.385884520000000009 10.4239434456476996 3.98715363815909996 7.71558485497913971 2.44432370544117994 -0.340513349999999992 0.0781463000000000019 -0.440365820000000019 0.300092220000000021 -0.0237782500000000008 0.308919339999999987 -0.388898200000000027 0.0634309400000000051 -0.0602384730000000007 -0.131195160000000005 87 0 86 1 -0.645943049999999963 72.4329987 0 0 31 false 0.0187460560000000005 1.27435493766859009 0.350935757955457006 -0.179872069999999995 10 7 3.6523447 0 10 false 85 85.0419810533935987 1.24145926588938993 68.5016022 20.8642830000000004 7 25.9111891469862989 6.57727837692401973 3.93949999999999978 21.8176689999999986 9 132.223363750288001 19.3102131647195989 6.84732800000000008 19.4586490000000012 1.85948810000000009 0 2.35902019999999979 0.95338630000000002 1.40563389999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.010021811114996 -62.9301375748582998 22.3491143322032002 -12.3627559437671 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455975610290048 2481455975610290048 592363562 2015.5 25.2497448945243015 1.93367600449348997 -2.78223400427149992 1.22497160351330003 \N \N \N \N \N \N \N -0.255256800000000006 \N \N \N \N \N \N \N \N \N 80 0 80 0 -1.03455279999999994 62.4376984 0 0 3 false 0.0160153199999999996 \N \N -0.131002410000000014 10 8 4.89703800000000022 0 10 false 82 90.2449349155381952 1.48018652645707993 60.9686012 20.7998089999999998 7 50.6266979238735004 11.3591787763102996 4.45689769999999985 21.0904389999999999 9 88.1112240031056047 16.3210665793253007 5.39861900000000006 19.8993420000000008 1.53734860000000007 0 1.19109730000000003 0.290630339999999987 0.900466899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.01655196509401 -62.9195238416016025 22.359082261930201 -12.3575908005854007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481453677803094784 2481453677803094784 652562411 2015.5 25.2636589116949999 0.0723242519453184962 -2.81097713328632981 0.0504422392388869031 1.01443315785593002 0.0814842450330526963 12.4494389999999999 4.23970092973589008 0.17148399032650799 -2.58895762338918001 0.0982686510490202031 0.103727736000000001 0.189063150000000013 0.0422815419999999983 0.00291757290000000009 -0.0357997529999999967 -0.0377334880000000025 0.00851215699999999936 -0.114561179999999999 0.190652490000000008 0.038471459999999999 143 0 143 0 2.52499319999999994 183.535004 0.190803532672572995 1.39032679845436991 31 true 4.6740636999999996 1.54129208874903001 0.0177103812317167993 -0.0158510450000000011 16 9 0.156785859999999999 0 16 false 141 5394.87156671466983 4.80169721288083995 1123.53003 16.3584139999999998 14 2228.90828631431987 14.4912592412498 153.81053 16.9811569999999996 14 4538.00442148748971 17.4016655273346998 260.779879999999991 15.6197579999999991 1.25432319999999997 1 1.36139969999999999 0.622743599999999953 0.738656039999999958 \N \N 0 \N \N \N NOT_AVAILABLE 151.070786259074993 -62.9397759153316017 22.3614719978852001 -12.3894319352436995 100002 4833 4636.02979 5000.97021 0.60799998 0.326000005 0.772800028 0.296999991 0.153600007 0.372599989 200111 0.695866100000000043 0.649906459999999964 0.756251450000000047 0.238019910000000001 0.198159680000000005 0.277880130000000003 +1635721458409799680 Gaia DR2 2481455082258610816 2481455082258610816 989796424 2015.5 25.296497709307399 6.02049955709749973 -2.80599939186721015 2.20405053107942983 \N \N \N \N \N \N \N 0.0634602699999999992 \N \N \N \N \N \N \N \N \N 41 0 41 0 -0.263989839999999976 33.1707993 0 0 3 false 0.0162538329999999988 \N \N 0.205102580000000007 5 4 9432.86599999999999 0 5 false 42 75.9095540855192041 1.74336321337100997 43.5419998 20.9876250000000013 4 48.7722916843046974 17.294038134796299 2.82017950000000006 21.1309550000000002 5 138.208999986623013 12.3322726298505003 11.2070989999999995 19.4105799999999995 2.46321149999999989 0 1.72037510000000005 0.143329619999999991 1.57704540000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.131573653536009 -62.9214629763835021 22.3945706491527012 -12.3968828301093001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455116618347904 2481455116618347904 1270196939 2015.5 25.2960060657071004 8.97118082333989086 -2.80004870498100011 7.16845780629182983 \N \N \N \N \N \N \N 0.877870499999999998 \N \N \N \N \N \N \N \N \N 41 0 41 0 1.38676519999999992 48.2803993 4.94507795442816978 1.22780763797006998 3 false 0.00910222599999999972 \N \N 0.142269699999999999 5 4 29357.2099999999991 0 5 false 42 68.3915382543629988 1.43603888132789992 47.6250992 21.1008600000000008 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.125092039816991 -62.9162721392107969 22.3963466211108013 -12.3911694218499004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454777314721920 2481454777314721920 793666575 2015.5 25.2246261984522988 0.126576352972489009 -2.77438269519453984 0.0853153460793737023 0.288367464139829 0.137061179896327989 2.10393240000000015 -0.873816235984998024 0.314773441511840002 -0.753389679393981049 0.162790803045502003 0.0677618999999999999 0.105098456000000007 -0.012519535 0.0431783050000000002 -0.0649925600000000048 0.0354621599999999995 0.104147315000000004 -0.108081943999999999 0.150148350000000014 0.0132438750000000004 142 0 141 1 -0.272827099999999989 130.899002 0 0 31 false 1.5082530999999999 1.63061435250419007 0.0290220674528074984 -0.0164778879999999996 16 9 0.280277549999999986 0 16 false 140 1773.99187021887997 3.36847140861479 526.645996 17.5659869999999998 16 865.323765844438981 8.20673676809042085 105.440669999999997 18.0084419999999987 16 1335.71108284142997 11.2504430509192996 118.725200000000001 16.9476399999999998 1.24072429999999989 0 1.06080250000000009 0.442455299999999996 0.618347169999999946 \N \N 0 \N \N \N NOT_AVAILABLE 150.959282339177008 -62.9229097502147994 22.3381648989252994 -12.3410503417384998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466524049852800 2481466524049852800 9698154 2015.5 25.2139688971303997 0.521988353086941026 -2.76079571964513004 0.313458698590732998 0.156015050190881993 0.574810737092261048 0.271419850000000018 4.01325558534024029 1.17168617342827996 -3.05936605309352005 0.54316990167097301 -0.0717656099999999936 0.0707051000000000068 -0.145045790000000008 0.0161989760000000003 -0.355128849999999996 -0.0315419099999999994 0.000853062259999999963 0.128239870000000006 0.269616960000000017 0.0494427159999999977 124 0 124 0 2.85668230000000012 167.895004 1.19229883782964996 1.68809736258560994 31 false 0.12678028999999999 1.48672458007308994 0.101711514258132005 -0.100226015000000002 14 8 1.03252509999999997 0 14 false 124 367.226062230358991 2.01166963500728979 182.548004 19.2760309999999997 13 140.573314674212014 10.5941820783982994 13.2689160000000008 19.9816299999999991 13 301.123598531161008 10.1869349168553001 29.5597840000000005 18.5650580000000005 1.20279289999999994 0 1.41657260000000007 0.70559883000000001 0.710973740000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.925556665577005 -62.9150239680717007 22.333157946178499 -12.3244975992163006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481466524049852544 2481466524049852544 532802562 2015.5 25.2231391843463015 0.226676574606565012 -2.76181888478113002 0.148290204947205989 2.35097195874539011 0.237139985693626987 9.91385700000000014 36.0293675671893965 0.558803492830967974 3.92607997932642006 0.279377331102684978 0.0182994060000000007 0.0975930400000000059 -0.0081152499999999992 0.0526567699999999986 -0.117618390000000003 0.0603130299999999966 0.145569859999999995 -0.105089290000000002 0.134283860000000005 0.000830363370000000017 150 0 150 0 0.518496700000000033 153.317001 0 0 31 false 0.455438969999999999 1.25062344754261989 0.0488801757703450981 -0.0570508730000000019 17 9 0.492418199999999973 0 17 false 149 708.736836036493969 2.05144923654020994 345.480988 18.5621529999999986 16 168.935793981601989 12.2398528649362994 13.8021100000000008 19.7820840000000011 15 848.603075934278991 8.83132296774683923 96.0901400000000052 17.4401590000000013 1.43570759999999997 0 2.34192469999999986 1.21993060000000009 1.12199399999999994 \N \N 0 \N \N \N NOT_AVAILABLE 150.944768054539992 -62.9121213177022014 22.3414886870152003 -12.3288228323148008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468005813993088 2481468005813993088 1173943856 2015.5 25.2238710809408992 0.0591837766723481012 -2.75841544067767019 0.0420991642889178008 1.75033880391091001 0.0638654037962790022 27.406680999999999 37.9333963088634007 0.142058447577376012 -13.4824140754972994 0.0905675805017961966 0.0518489199999999997 0.139918160000000014 0.0331962400000000019 -0.0149806095000000004 -0.15293372999999999 -0.0338413939999999969 -0.131084160000000005 -0.0952966400000000019 0.154095989999999988 0.106268899999999999 143 0 142 1 0.66974144999999996 147.686005 0.0907981017388236056 0.389383977819083016 31 false 6.91328299999999984 1.46598608825707011 0.0149735152657922994 -0.057960763999999998 16 9 0.133119089999999995 0 16 false 142 6760.99021491154963 5.08833237733407007 1328.71997 16.1133400000000009 15 2492.49607490103017 12.7554205376709007 195.406810000000007 16.8598019999999984 16 6208.96027150854025 16.3203091783102998 380.44380000000001 15.2793729999999996 1.28700909999999991 0 1.58042909999999992 0.746461869999999972 0.83396720000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.943098480244004 -62.9087242877173978 22.3434675939666008 -12.3259279595680002 100001 4335.33008 4230 4396 0.406500012 0.282000005 0.664399981 0.199699998 0.137899995 0.345999986 200111 0.614724399999999949 0.597874640000000013 0.645720799999999984 0.120266780000000004 0.110916200000000006 0.129617359999999987 +1635721458409799680 Gaia DR2 2481455979905564928 2481455979905564928 909999045 2015.5 25.2486669955384997 0.130271230003282001 -2.78001798315791016 0.0791753058252716024 0.413222577835336002 0.141852419207887992 2.91304559999999979 4.9820772612949904 0.276198190709106006 -2.69248727786879982 0.148089947686959988 -0.000763434799999999957 0.343323350000000027 0.0628982599999999975 0.0366176329999999967 -0.0689955399999999941 -0.0347101900000000019 0.0784305260000000004 -0.0792687499999999989 0.193534960000000006 -0.006562254 133 0 133 0 0.780728639999999974 140.192993 0 0 31 true 1.83307970000000009 1.65029834264266007 0.0284100692231166012 -0.0637289199999999945 15 9 0.245796500000000001 0 15 false 133 2157.35860078027008 3.15721053475663016 683.312012 17.3535600000000017 15 1258.07897647820005 20.4738466304538989 61.4480999999999966 17.6021180000000008 15 1406.25392377065009 13.3114429005022998 105.642489999999995 16.8917600000000014 1.23499770000000009 0 0.710357670000000052 0.248558040000000008 0.461799620000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.012363419893006 -62.9179637770040969 22.3588931050162003 -12.3551340265650005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456284849359872 2481456284849359872 658510728 2015.5 25.2471735240643014 1.64698437499665995 -2.7591279554651198 1.65021465528347999 \N \N \N \N \N \N \N -0.223855360000000003 \N \N \N \N \N \N \N \N \N 76 0 76 0 0.751356400000000035 79.6134033 1.21518486756385991 0.128727880211645995 3 false 0.0169470590000000004 \N \N -0.0693035300000000021 9 7 6.68945260000000008 0 9 false 78 94.1686172636014049 1.65453773224011003 56.9154015 20.7536009999999997 7 74.0011656199820038 23.0735964027470999 3.20717950000000007 20.6782910000000015 7 84.8848401898370071 7.76028231323940965 10.9383700000000008 19.9398440000000008 1.68724999999999992 0 0.73844719999999997 -0.0753097499999999948 0.813756939999999984 \N \N 0 \N \N \N NOT_AVAILABLE 150.990157558107995 -62.8996238983983034 22.3653491738435015 -12.3351629741389992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468070238082944 2481468070238082944 884959899 2015.5 25.2147645131169007 0.399571446825971011 -2.74786381202980978 0.257282844093279006 1.22101828431573001 0.406186500561660002 3.00605339999999988 7.9005739597478799 1.00010795504747008 -2.20881020626379998 0.477026460836328992 0.000438154730000000017 0.0832718399999999997 -0.0327654900000000013 0.0806602800000000009 -0.0934272399999999947 0.102463100000000001 0.202708319999999997 -0.117150283999999993 0.104945099999999999 -0.020283836999999999 149 0 149 0 1.48881609999999998 170.026993 0.44515613640412699 0.278145845100607025 31 false 0.151802169999999986 1.43331019814473004 0.0875209894877841954 -0.0679884250000000051 17 9 0.878674269999999979 0 17 false 147 338.49666530252 1.43723848769985008 235.518997 19.3644800000000004 14 80.4875117306360011 7.79130883899130033 10.3304220000000004 20.5870670000000011 14 388.803354586415026 9.92448856153128034 39.176160000000003 18.2875960000000006 1.38639739999999989 0 2.29947100000000004 1.2225876 1.07688329999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.915267846004014 -62.9029446017843981 22.3387900038768983 -12.3127677433054004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468001518604928 2481468001518604928 1252789329 2015.5 25.2255635709011017 0.350793192836996004 -2.75450005828156019 0.218769014272834988 0.679759973366454995 0.351624871780134018 1.93319649999999998 8.24815898457173979 0.907592917518255993 0.650426993424277011 0.41382425143836099 0.00439386440000000007 0.0340945299999999979 -0.154469789999999996 0.0639796900000000057 -0.0837789550000000022 0.0693934900000000021 0.126896229999999999 -0.0234305320000000004 0.139602110000000001 -0.0350681249999999986 141 0 139 2 2.31705210000000017 174.826004 0.958189340258332023 1.91706640663532002 31 false 0.217078720000000003 1.56701944334877008 0.0737029298842006991 -0.0841920500000000044 17 9 0.799264850000000027 0 17 false 146 509.092454703624981 1.9781641968002901 257.355988 18.9213729999999991 16 191.271456770107989 7.00835659366270036 27.2919119999999999 19.6472629999999988 16 477.224394656017012 11.3041581923873 42.2167129999999986 18.0651130000000002 1.31311289999999992 0 1.5821495000000001 0.725889200000000012 0.856260299999999974 \N \N 0 \N \N \N NOT_AVAILABLE 150.94287225941099 -62.9044607796025019 22.3465525342387998 -12.3229105362045992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468070239565696 2481468070239565696 661104429 2015.5 25.2135481370208012 1.13539597090650002 -2.74046482299648009 0.791405789046662034 1.86520569895597998 1.10753135277091008 1.68411099999999991 -2.56298550948694004 2.66695512921400013 -6.41720657018148 1.8915115477248301 -0.0340097399999999966 0.189750050000000003 -0.0767380599999999968 0.102153610000000006 0.0315337499999999993 0.0956334550000000061 -0.213692999999999994 -0.117802374000000001 -0.075994389999999995 0.0866655000000000064 101 0 99 2 -1.8481342999999999 70.3177032 0 0 31 false 0.0254424879999999992 1.30573231240712007 0.269225339810354014 -0.0208772249999999993 13 8 2.34931199999999984 0 13 false 101 102.099970406295995 1.29863036010428989 78.6212997 20.6658019999999993 6 45.5467428634636988 8.01812120651771032 5.68047569999999968 21.2052440000000004 9 121.927005853534993 8.20295953854824944 14.8637829999999997 19.5466699999999989 1.64029179999999997 0 1.65857319999999997 0.539442059999999945 1.11913109999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.906055622691014 -62.8967309291263987 22.3404233789111011 -12.3054414512149002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468070238086144 2481468070238086144 683595862 2015.5 25.2196289357083003 0.605583401963083023 -2.7388415239927002 0.37370020136333898 0.216476446669115002 0.615549903545855037 0.351679770000000003 3.40721562182371995 1.5733927885458201 5.64821266208095007 0.650606046154244 0.0222939220000000007 0.104907766 -0.22121629000000001 0.146830860000000007 0.135358570000000011 0.124101180000000005 0.245624809999999999 -0.0305956920000000007 0.159360269999999998 -0.112709396000000003 123 0 123 0 1.12844159999999993 135.466003 0.697975626683667971 0.354781884032893013 31 false 0.0885143060000000009 1.51019139437190009 0.131147884851632007 -0.088903220000000005 14 8 1.3895147000000001 0 14 false 123 235.070590889692994 1.61617501039971989 145.449005 19.7603700000000018 11 84.9719033389485929 10.9678208758324001 7.7473825999999999 20.5281999999999982 12 288.110036163934012 11.1813067241052995 25.7671169999999989 18.6130239999999993 1.58710599999999991 0 1.9151764 0.767829899999999954 1.14734650000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.916676467820992 -62.8927172729664008 22.346814966752099 -12.3061694796072008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468040173731200 2481468040173731200 73147648 2015.5 25.2298714427230983 0.0409706610206643021 -2.74485268811580996 0.0298665627409034004 2.76281450974977005 0.0430282997184840976 64.2092399999999941 -14.7926229096752007 0.0998094970683664068 -16.6408953072606991 0.0669634811348894937 0.0234451139999999995 0.171777999999999986 0.210086230000000013 -0.150103099999999989 0.012222241 -0.19829519000000001 -0.094116749999999999 -0.179402260000000008 0.230343309999999996 -0.0714752800000000021 129 129 128 1 4.03819100000000031 196.916 0 0 31 true 321.991899999999987 1.62923418379949991 0.0110865787369601003 -0.0573353399999999985 15 9 0.063354439999999998 0 16 false 126 257419.802091616002 56.1263900214458999 4586.43018 12.1617610000000003 16 144712.680492624 183.696660644708004 787.780700000000024 12.4501220000000004 14 164447.012199647987 200.61731652796999 819.704960000000028 11.7218549999999997 1.20099430000000007 0 0.728266700000000045 0.288360600000000022 0.439906120000000012 -0.611311061455594995 2.62268573383119996 7 6000 3.5 0 NOT_AVAILABLE 150.942589278349999 -62.8938981007868989 22.3542842836788012 -12.3155262192458999 100001 6388.66992 6002.7002 6830.45996 0.0560000017 0.0170000009 0.107600003 0.0295000002 0.00789999962 0.0546999983 200111 0.93271269999999995 0.815957999999999961 1.05651350000000011 1.30566380000000004 1.27655919999999989 1.33476839999999997 +1635721458409799680 Gaia DR2 2481468138957563776 2481468138957563776 726677138 2015.5 25.2407188407970011 0.114812780477510007 -2.73768406941593989 0.0754858859745008021 0.0681559461584557991 0.119454391251261005 0.570560399999999968 -0.186702243921292005 0.298564320684676976 0.268569954789719012 0.150678651077155001 -0.0339033119999999979 0.0105445550000000006 0.0285540580000000002 -0.0249635609999999987 -0.0354951729999999979 -0.0338553099999999996 0.0987860859999999952 -0.139184609999999986 0.199420970000000003 -0.119984720000000003 132 0 131 1 0.589270799999999983 134.889008 0 0 31 true 2.04697849999999981 1.67899336853822989 0.0265208278820293006 -0.119360839999999996 15 9 0.267880139999999989 3 15 false 131 2251.25223543252014 5.95871583209472 377.808014 17.3073039999999985 12 1422.94009928090009 11.5950411579488009 122.719710000000006 17.4684220000000003 12 1337.26432157686008 11.0237060482636995 121.308049999999994 16.9463769999999982 1.22607519999999992 0 0.522045140000000019 0.161117549999999998 0.360927580000000026 \N \N 0 \N \N \N NOT_AVAILABLE 150.957597902329013 -62.8828526057060984 22.3672972047461016 -12.3128518682433992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456387929789056 2481456387929789056 1045423249 2015.5 25.2499959465206985 1.01904382160789009 -2.74289769851829002 0.78759101041596502 -1.0723087454518001 1.03069814148634009 -1.04037130000000011 -0.100969043678488996 2.65868471168107989 0.0829934695180724047 1.87211423832589996 0.00773905540000000003 0.00880373700000000071 -0.187694610000000012 0.0687267260000000019 0.126901199999999992 0.0693284400000000051 -0.33900085000000002 -0.0398783570000000032 -0.0490155099999999982 0.019243940000000001 103 0 101 2 -0.336245120000000008 90.7721024 0 0 31 false 0.0284144380000000002 1.3702661619732599 0.268767267933950005 -0.0584909360000000003 13 8 2.33925960000000011 0 13 false 106 112.357993201523001 1.59103280232981992 70.6194992 20.5618550000000013 9 74.2596642878796018 5.2725542456526604 14.0841910000000006 20.6745049999999999 9 93.8840225815989982 18.3368544158723985 5.11996300000000026 19.8304399999999994 1.49649950000000009 0 0.844064700000000001 0.112649920000000001 0.731414800000000032 \N \N 0 \N \N \N NOT_AVAILABLE 150.980849503488997 -62.8837060113675008 22.3741502336851994 -12.3211115905469999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520883528157568 2505520883528157568 372057399 2015.5 25.9298226357223989 7.51143486705974972 -2.17713194413436018 4.87049029069672024 \N \N \N \N \N \N \N 0.883295900000000023 \N \N \N \N \N \N \N \N \N 59 0 58 1 0.700940200000000013 59.8235016 2.86976442201449 0.777600420527481018 3 false 0.0132840730000000004 \N \N -0.0890810199999999969 7 6 49.8577879999999993 0 7 false 59 75.3496399191540007 1.30479543081011995 57.7481995 20.9956630000000004 5 72.6804782311330939 22.9983985897262002 3.16024100000000008 20.6978439999999999 4 23.5385263520335002 2.2199448110139901 10.6032039999999999 21.3324719999999992 1.27696699999999996 0 -0.634628300000000034 -0.297819139999999982 -0.336809159999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.792222608959008 -62.0831372149637986 23.2329378340836001 -12.0441103060101007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456284847822080 2481456284847822080 461353720 2015.5 25.2542019737526999 1.28431596072373 -2.75169481310866004 0.880528478853444985 -0.593622468996245045 1.18763897011863007 -0.499834119999999993 9.82582754702720962 3.48024737932728989 -19.2545183957078017 2.23043949690213994 -0.0898546699999999976 -0.0549433299999999986 -0.265044180000000018 0.108975169999999996 0.0305144840000000014 0.110843609999999995 -0.314953060000000007 6.71500299999999945e-05 -0.0347438300000000033 -0.0452907349999999986 97 0 97 0 2.73370399999999991 133.431 3.21090691429112995 2.01146208467732013 31 false 0.021762100999999999 1.68960756944152002 0.31645464997214201 -0.142779010000000012 12 7 3.07533300000000009 0 12 false 98 112.566796587373005 1.29401460706763993 86.9904022 20.5598400000000012 6 63.0146814420072019 16.5757923520877988 3.80160900000000002 20.8527829999999987 8 161.865970495753999 8.4479941682543096 19.1602840000000008 19.2390299999999996 1.99775299999999989 0 1.61375240000000009 0.292943950000000009 1.32080839999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.997308605014013 -62.8899326310247986 22.3748323411604986 -12.3308375959008991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456387927039232 2481456387927039232 1651001695 2015.5 25.2629063382018018 0.154959948803509995 -2.74351291459477986 0.105614309854408006 0.267420304677604026 0.173112230290842994 1.54478000000000004 2.07903516871966021 0.395064876461497017 -0.126293321446280998 0.196456338330432995 0.0608006940000000023 0.112968996000000002 0.0430395859999999977 0.0113622830000000008 0.0534651900000000027 -0.0454749700000000034 0.18618404999999999 -0.161099300000000001 0.227974900000000008 -0.0998468549999999982 133 0 133 0 0.179829660000000002 130.223007 0 0 31 false 1.06372669999999991 1.56842859353514008 0.0377788703296422015 -0.0460996740000000002 15 9 0.350813299999999995 0 15 false 131 1331.13024363783006 2.73955085043720992 485.894012 17.8778149999999982 10 683.161830737989021 5.59754943830051044 122.046589999999995 18.2650800000000011 12 933.164558315269005 10.9304161288503003 85.3731999999999971 17.3370250000000006 1.21425120000000009 0 0.928054799999999958 0.387264249999999977 0.540790560000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.007100128202012 -62.8788593175093027 22.3861905784951993 -12.3264322196367004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456319207560576 2481456319207560576 1625147820 2015.5 25.2757419040606983 4.17107927987566995 -2.75082338932267989 3.7518426891910801 \N \N \N \N \N \N \N 0.172971769999999997 \N \N \N \N \N \N \N \N \N 68 0 68 0 14.5442169999999997 405.575012 16.9264440654616983 28.0129473977671992 3 false 0.00274718650000000016 \N \N -0.0616586999999999968 8 6 7.1742309999999998 0 8 false 69 101.817235875777996 2.62308581468583979 38.8157997 20.6688119999999991 8 119.802537080785001 13.1017722015679006 9.14399500000000032 20.1552240000000005 7 212.001343816993 10.8188993444874999 19.5954629999999987 18.9460739999999994 3.2588184 0 1.2091502999999999 -0.513587950000000015 1.72273830000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.039357558419994 -62.8801161679666976 22.3956368074677989 -12.3379498352955004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456147408868224 2481456147408868224 674394900 2015.5 25.2881927036332996 0.154608828925120012 -2.75397906119698987 0.113353427192180001 1.03989260033462005 0.180130132910510998 5.77300740000000001 -4.37246496430851028 0.429310017051090009 -1.26853354073895996 0.207776556143718011 0.165144220000000008 -0.0377681549999999977 0.199360979999999993 0.0893316940000000032 -0.139201660000000005 0.131356210000000001 0.329379140000000015 -0.329289639999999995 0.0573459799999999978 0.0560803259999999998 125 0 125 0 2.07592679999999996 154.328995 0 0 31 false 1.14376490000000008 1.50318939978876998 0.036258103940518302 -0.00657495339999999984 14 9 0.384108749999999999 0 14 false 124 1449.61507138819002 2.35510531971171 615.52002 17.7852339999999991 12 611.883537598213024 8.92510425120715922 68.5575800000000015 18.3847160000000009 13 1227.42621896116998 10.7053257348612991 114.655659999999997 17.0394299999999994 1.26882640000000002 0 1.34528540000000008 0.599481599999999948 0.745803829999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.067022823157004 -62.8777571178584012 22.4062837908810017 -12.3454627423408994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467761000445440 2481467761000445440 253995234 2015.5 25.1346041682967005 0.908582371701654012 -2.72551296998681991 0.524982146905411007 0.989622749995922035 0.894856147806213031 1.10590150000000009 -4.11706521815219961 3.02668114907995012 -1.00498238858480993 1.3351233922454 -0.166937620000000009 -0.225434909999999988 0.403892670000000009 -0.14646344 -0.128688990000000003 -0.0638361000000000067 0.224327599999999988 -0.481741850000000027 0.043940350000000003 -0.211099160000000008 116 0 115 1 0.235188900000000006 112.846001 0 0 31 false 0.0481314099999999995 1.59937694906455996 0.207297973981192013 0.00420264900000000014 13 9 2.7114098000000002 0 13 false 114 152.759033914148006 1.50102529141309993 101.769997 20.2283480000000004 11 104.460763169423998 15.9811052599069008 6.53651669999999996 20.3040050000000001 11 119.467900454149003 12.643627154632 9.44886299999999935 19.5687919999999984 1.46589469999999999 0 0.735212300000000041 0.0756568900000000044 0.659555439999999993 \N \N 0 \N \N \N NOT_AVAILABLE 150.734990529197006 -62.916003544719203 22.2710363135971008 -12.2624890557155002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467829721258496 2481467829721258496 700722574 2015.5 25.1187534971451001 1.97447542762058004 -2.71653193833971995 0.982594297646476988 \N \N \N \N \N \N \N 0.31033065999999998 \N \N \N \N \N \N \N \N \N 79 0 78 1 -0.937407600000000008 61.6514015 0 0 3 false 0.0306791549999999996 \N \N 0.0747889399999999982 10 7 8.72760599999999975 0 10 false 85 102.080751229868 1.59577819770866003 63.9692993 20.6660059999999994 8 52.7209963703872972 15.6191001174770996 3.37541819999999992 21.0464289999999998 7 145.666348801644006 4.22322215267647039 34.4917560000000023 19.3535210000000006 1.94343540000000004 0 1.69290729999999989 0.3804226 1.31248469999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.695165449150011 -62.9144093075667001 22.2593616846160991 -12.2483052322399004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481467627856941056 2481467627856941056 534360525 2015.5 25.1694511623342017 0.942453257160268953 -2.72733507165508993 0.667899838000615031 -0.476102785392640004 0.939995233606273017 -0.50649489999999997 -2.99287748546327004 2.55890430249004996 -4.81792980638604984 1.9388814969324899 -0.0250021279999999985 -0.139454710000000009 -0.072276644000000001 0.241867959999999993 -0.172420280000000009 0.21009702999999999 -0.133910799999999997 -0.204696280000000008 -0.243447109999999994 0.269187779999999988 93 0 91 2 -1.09601389999999999 71.8190002 0 0 31 false 0.0414708550000000009 1.98856954210326009 0.244698296979405011 -0.0692572000000000049 11 8 2.34010430000000014 0 12 false 92 139.469003930033011 1.5267095828858801 91.3526993 20.3271709999999999 6 50.872094598008097 11.9591974299175998 4.25380499999999984 21.0851900000000008 8 196.468132076735998 11.9108460417724995 16.4948939999999986 19.028690000000001 1.77344229999999992 0 2.05649950000000015 0.758018500000000039 1.298481 \N \N 0 \N \N \N NOT_AVAILABLE 150.806158525335007 -62.9031776858371998 22.3034639948341002 -12.2770087574724993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468349411376384 2481468349411376384 1232228050 2015.5 25.1890500110891011 0.216988656850457012 -2.72648094785640982 0.144529395957058993 0.566083404900110998 0.223005724608188988 2.53842539999999994 0.520924221309120972 0.594616418879704955 -2.03188240392886987 0.266580447755403016 0.0708332960000000039 -0.048607174000000003 -0.0824692199999999959 0.152420479999999997 -0.263399239999999979 0.252376229999999979 0.291799550000000019 -0.161228139999999992 -0.0562857760000000026 0.118205260000000006 131 0 130 1 0.761767569999999949 136.727005 0.310017697765942013 0.467265580962922977 31 false 0.635458300000000031 1.69265319159514993 0.0476026119028110026 -0.0765298459999999986 15 8 0.52726839999999997 0 16 false 130 954.620887153315948 2.27836726537332002 418.993011 18.2387890000000006 11 402.363644896367987 16.7067497128395992 24.0838970000000003 18.8398420000000009 12 807.026915824363982 9.81052314120968028 82.2613499999999931 17.4947000000000017 1.26688050000000008 0 1.34514240000000007 0.601053240000000044 0.744089099999999948 \N \N 0 \N \N \N NOT_AVAILABLE 150.844438075571986 -62.8942411040520994 22.3224119078129988 -12.2834269499029993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468349411396224 2481468349411396224 1361592110 2015.5 25.1857781881268004 0.965673141947766989 -2.72250383247734007 0.710293308406382051 0.41623535049704502 1.05566528602484011 0.394287229999999989 8.80192302814482019 2.91540305768958996 -12.1786499836666007 1.33365545370331007 0.0654935539999999955 -0.206589600000000012 -0.113706719999999997 0.317516030000000005 -0.591576600000000008 0.595200839999999953 0.521403900000000031 -0.407320650000000006 -0.483594750000000018 0.408384399999999981 96 0 93 3 1.73236440000000003 112.254997 1.85328879612141995 2.15970596608078003 31 false 0.0598502900000000004 \N \N -0.122628109999999999 11 7 2.66873620000000011 0 11 false 92 219.580333063774987 1.49177859119741996 147.194 19.834382999999999 9 85.0522484107267047 16.1806416979504988 5.25642000000000031 20.5271739999999987 9 274.674397247173999 8.91216662122170078 30.8201600000000013 18.6648749999999986 1.63824619999999999 0 1.86229899999999993 0.692791000000000046 1.16950799999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.834279135951988 -62.8919892157147018 22.3208018944395015 -12.2785256010210997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468310756373376 2481468310756373376 1256675984 2015.5 25.2127232330641 1.61750971884775008 -2.72251440345420992 0.977370433157565999 \N \N \N \N \N \N \N -0.372434399999999999 \N \N \N \N \N \N \N \N \N 83 0 82 1 0.33049489999999998 80.4860001 0 0 3 false 0.0225228519999999995 \N \N -0.124662480000000006 11 7 5.46435739999999992 0 11 false 85 98.6343249205816051 1.77817697776351991 55.4693985 20.7032950000000007 8 71.1273123444760955 13.6403911448300992 5.21446279999999973 20.7212959999999988 9 73.5081708425107934 9.39949395759943052 7.82043930000000032 20.0960800000000006 1.46638080000000004 0 0.625215529999999964 0.0180015559999999984 0.607214000000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.887955372795005 -62.8807667061066979 22.3464063068340018 -12.2884495493652004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468207677158144 2481468207677158144 899702071 2015.5 25.2291962680874988 0.935727596708890053 -2.72389526530899007 0.667864048986841041 0.533030669141881019 0.907526745055425965 0.587344300000000041 -2.15307996126067014 2.51857299309149019 -2.67981473028503014 1.74230046087561008 -0.0699696840000000042 -0.0387645770000000014 -0.106373350000000005 0.113167173999999995 0.0193432550000000002 0.101627949999999995 -0.238713619999999987 -0.12456652 -0.0791503340000000027 0.00568265470000000033 111 0 110 1 -0.036146774999999999 103.814003 0 0 31 false 0.0325573399999999971 1.59238093433871009 0.240449136910350997 -0.0639587340000000032 13 8 2.21148400000000001 0 13 false 111 119.563701138940004 1.16757613147038009 102.403 20.4943680000000015 8 92.8646458333932969 10.4554222755667006 8.88195999999999941 20.4317630000000001 8 80.9182180932970994 9.62940345761692917 8.4032429999999998 19.9918039999999984 1.45347509999999991 0 0.439958569999999993 -0.0626049040000000029 0.502563500000000052 \N \N 0 \N \N \N NOT_AVAILABLE 150.922011228792996 -62.8751444479476973 22.3615425308716986 -12.2957935248610006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468207677044480 2481468207677044480 19759198 2015.5 25.2298895253484012 0.554965122716215009 -2.72502254621548978 0.377586546169720982 2.01065504899136993 0.609388457019179985 3.29946349999999988 4.49078731413704979 1.44881330112492002 -3.85801133277982 0.710661757640275948 0.0603590719999999997 -0.0324774530000000033 0.0188942890000000016 -0.0115505309999999993 -0.148561300000000007 -0.00553607600000000002 0.140391600000000005 -0.106132729999999995 0.210856349999999998 -0.0338112399999999994 138 0 138 0 4.70372439999999958 224.464005 2.04015706927095986 4.03508463706656961 31 false 0.0777575149999999993 1.43801397565923006 0.125940148943184005 -0.0701105800000000057 16 9 1.2708695000000001 0 16 false 138 293.834175711513012 2.13492708316673996 137.632004 19.5181100000000001 11 122.449227755560003 9.38969573358327025 13.0408089999999994 20.1314980000000006 12 293.591533793962981 10.9528184040017997 26.8051129999999986 18.5925620000000009 1.41590320000000003 0 1.53893659999999999 0.613388060000000013 0.925548550000000025 \N \N 0 \N \N \N NOT_AVAILABLE 150.924424831202998 -62.8758788540364009 22.3617765464769001 -12.2970965991305992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468555569806336 2481468555569806336 971731421 2015.5 25.2697427573191007 0.0483988469467915988 -2.71950514696343015 0.0361503669223564028 0.914873204202337975 0.0535749676737835995 17.0765059999999984 14.2870361106678008 0.117837406933365002 -11.0269007879265004 0.0806162681055028058 0.103406206000000001 0.121268550000000003 0.0167221099999999984 0.0158401040000000007 -0.207437559999999993 0.0109995460000000007 -0.153749030000000009 -0.112651210000000002 0.0848159339999999956 0.231927319999999992 142 0 136 6 -0.591333030000000037 121.026001 0.0765158614930191022 0.413888438459877994 31 false 11.0114239999999999 1.58640681910221004 0.0125621790413518002 -0.0307268930000000016 16 9 0.11476836 0 16 false 135 10186.2849078918007 5.83355768223457982 1746.15002 15.6683260000000004 16 5005.77273962244999 24.6522288317638001 203.055589999999995 16.1027099999999983 15 7504.74388917150009 16.7275499561210985 448.645719999999983 15.0735810000000008 1.22817270000000001 0 1.0291300000000001 0.434384349999999975 0.594745639999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.998622494571009 -62.854200551835703 22.4017369131994002 -12.3066253468933002 100001 5270.66992 5012 5576.81006 0.1875 0.102499999 0.280999988 0.0967999995 0.057500001 0.137999997 200111 0.852697000000000038 0.761646869999999976 0.942982699999999952 0.505529340000000049 0.441105999999999998 0.56995267000000005 +1635721458409799680 Gaia DR2 2481454876098644864 2481454876098644864 66208804 2015.5 25.2999912594282996 0.240303527882180012 -2.82454399111465015 0.162885217602562998 1.44899979263247003 0.270451777623840983 5.35770130000000044 -17.0247539616558008 0.615735983659693953 -12.0470967596878999 0.308555164279520011 0.0445429830000000013 0.111645839999999996 0.0872367399999999932 -0.0226812199999999985 0.0236897709999999984 -0.0816460999999999992 0.174828829999999991 -0.180025309999999994 0.240550099999999989 -0.113138340000000004 132 0 129 3 2.10439899999999991 159.391006 0.598869235420394053 1.47115354141965993 31 false 0.449786399999999975 1.36887335057642989 0.0649999243551503958 -0.0349624749999999998 15 9 0.544602600000000048 0 15 false 132 792.104632006994052 2.94701033457956996 268.782013 18.4414100000000012 14 166.103855325853999 17.9502216997080986 9.25358199999999975 19.8004399999999983 14 1028.58150036753 11.5842946852321997 88.7910300000000063 17.2313229999999997 1.50824190000000002 0 2.56911660000000008 1.35902980000000007 1.21008680000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.155692422111997 -62.9368122205704026 22.3909004892562002 -12.4154092778396006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481454876100190336 2481454876100190336 1400234759 2015.5 25.3014856734021016 1.0509535168431301 -2.81705484142691986 0.818637719780033968 2.34276332794350006 1.13857431565434997 2.05762890000000009 0.381775571002352987 2.43086503421716005 8.36416537738836041 1.89758135193550004 0.13153340999999999 0.249733750000000004 -0.0869654900000000064 -0.0727391800000000005 0.0792223700000000003 -0.10405681 -0.409799960000000019 -0.0929667349999999948 0.0178398500000000008 0.160811530000000008 102 0 102 0 0.807045800000000035 107.962997 0 0 31 false 0.0275493469999999983 2.02313224301181993 0.299923258529186998 -0.0158594119999999998 12 8 2.17909070000000016 0 12 false 101 119.226621062210995 1.37480900609047008 86.7222977 20.4974330000000009 10 47.857782338014303 13.5426274016651007 3.53386239999999985 21.1515060000000013 10 150.674551580600991 15.1706686277826996 9.93196499999999993 19.3168199999999999 1.66516780000000009 0 1.83468629999999999 0.65407369999999998 1.1806125999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.151732015926996 -62.9293914630206004 22.3951451407623985 -12.4089959666024008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455219696044416 2481455219696044416 737065452 2015.5 25.3083326483616986 1.40507965484777997 -2.7925960257940301 1.78634181792261004 \N \N \N \N \N \N \N 0.41517759999999998 \N \N \N \N \N \N \N \N \N 88 0 84 4 1.5156582999999999 98.8479004 2.48202377890630022 1.33759406739235009 3 false 0.0270934380000000009 \N \N -0.0203727600000000002 10 7 4.98265799999999981 0 10 false 82 135.283048946952988 1.91151252748369993 70.7727966 20.3602580000000017 7 93.3762725258349064 8.04120001498051984 11.6122309999999995 20.4257969999999993 6 75.9774067905253929 8.93339219605512014 8.50487700000000046 20.0602100000000014 1.25184699999999993 0 0.365587229999999985 0.0655384100000000053 0.300048829999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.142722928141012 -62.9043279704086018 22.4108760208604991 -12.3887734399755001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455254055660288 2481455254055660288 1145599396 2015.5 25.3309539745241992 0.259336355518118011 -2.78298864838629978 0.162285812748807989 1.66044881237486996 0.266314839007216975 6.23490900000000003 40.3814320549958978 0.637218228125842945 21.2416227451513002 0.30335911053092901 0.0710491699999999948 0.0451210500000000028 -0.31121053999999998 0.108875100000000002 -0.00907552900000000058 0.141271549999999996 -0.00549189500000000011 0.0967872699999999947 0.0953122799999999992 0.075155034999999995 123 0 122 1 0.116515644000000002 118.119003 0.0721593078995667048 0.0182187030821150016 31 false 0.469601600000000008 1.32270666013911997 0.0654773832928465943 -0.0470873799999999981 14 8 0.568627829999999945 0 14 false 122 677.053041493968976 1.85407810977128995 365.170013 18.6118090000000009 10 147.563959057527995 6.68901613848036991 22.0606369999999998 19.9289379999999987 13 859.463895530273021 18.7178412289570986 45.9168299999999974 17.4263520000000014 1.48736920000000006 0 2.50258640000000021 1.31712910000000005 1.1854572000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.178807253212995 -62.8860928809598008 22.4360057595242992 -12.3881586591668995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481455288415389952 2481455288415389952 1263920220 2015.5 25.3008834225040005 0.0396132679504695023 -2.77580699707597001 0.0286395846246510002 1.70673558359486011 0.0436945219865288031 39.0606300000000033 -4.15888026387230969 0.0839133023250001053 4.95869759258954002 0.0602397173647592002 0.122827569999999997 0.342414260000000026 0.0208985039999999983 -0.0403019930000000012 0.00896961150000000033 -0.106640730000000003 -0.25443650000000001 -0.0619274039999999984 0.142658220000000002 0.132994090000000009 142 142 142 0 3.7190354000000001 207.362 0 0 31 true 259.938480000000027 1.62967017106914991 0.0103413198376140995 -0.0239856539999999986 16 9 0.0529200199999999982 0 16 false 139 190581.119959539006 40.8912300873926 4660.68018 12.4881659999999997 16 107212.176273157995 115.918968800760993 924.88900000000001 12.7757780000000007 16 121151.819052452003 98.1482960831718998 1234.37509999999997 12.0535960000000006 1.1982508999999999 0 0.722182300000000055 0.28761196 0.43457030000000002 -15.6783146836014993 2.19986304597329996 6 6500 3.5 0 NOT_AVAILABLE 151.112393715768007 -62.892231752595201 22.4101218970329015 -12.3704243539608996 100001 6128 5950 6825.0498 \N \N \N \N \N \N 200111 1.41537519999999994 1.14103099999999991 1.50132660000000007 2.54514720000000016 2.45229339999999985 2.63800100000000004 +1635721458409799680 Gaia DR2 2481456078689387904 2481456078689387904 1169892353 2015.5 25.2990412523251997 0.484521392514256022 -2.76451358724917995 0.32285675438757 1.75068281378506008 0.528361561812511038 3.31341809999999981 -5.03390769302334995 1.23727561269368991 -1.18839424718323006 0.569126792214652011 0.0633476600000000001 0.119809559999999996 -0.0254202299999999985 0.0881922249999999991 0.0891075659999999992 0.041637417000000003 0.2853155 -0.143487649999999994 0.19538432 -0.0969804400000000011 131 0 130 1 -1.09557499999999997 107.860001 0 0 31 false 0.115170404000000004 1.34977980911336992 0.111353939608352007 -0.0474880229999999973 15 9 1.0876733999999999 0 15 false 128 271.761266056093007 1.60250009273493998 169.585999 19.6028979999999997 9 103.363243001273005 18.0421782947047014 5.72897799999999968 20.3154739999999983 10 339.401331604125005 12.8355787635012994 26.4422299999999986 18.435137000000001 1.6292409000000001 0 1.88033680000000003 0.71257590000000004 1.16776079999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.098306005285991 -62.8827604146213019 22.4126270486063994 -12.3592467533061008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456491006372224 2481456491006372224 1628246314 2015.5 25.3276649161787013 1.14269293916204995 -2.74167454744278993 0.935842682588834962 0.758622680581697018 1.34515150293593 0.563968200000000031 -2.83682531450098985 3.59962020026565011 -0.330060958165501017 2.39207724278444989 0.0817844499999999947 -0.0749430100000000043 0.0890104850000000003 0.0535960700000000026 0.229235529999999993 -0.0163515379999999988 -0.105064329999999997 -0.349770799999999993 -0.12841147 0.0213797540000000008 95 0 92 3 0.695281860000000029 95.7848969 1.23874835596874999 0.224309451629198991 31 false 0.0219047500000000006 1.84263741183308993 0.310651790010189999 0.0371425900000000031 11 8 3.17416210000000021 0 11 false 93 99.229057263322801 1.57318831196562003 63.0750999 20.6967679999999987 9 66.4716444982748982 17.0419978370855993 3.9004607 20.7947980000000001 9 95.6576984727287964 12.451989421136 7.6821218 19.8101200000000013 1.63388979999999995 0 0.984678269999999967 0.0980300900000000003 0.886648199999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.134099312522011 -62.8500103327532997 22.4484467653348005 -12.3485358082930006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456491007947648 2481456491007947648 1110174848 2015.5 25.3299670332484013 5.13564761732737995 -2.74157101520130997 9.71868857480684056 \N \N \N \N \N \N \N -0.887055499999999997 \N \N \N \N \N \N \N \N \N 52 0 52 0 1.02982679999999993 56.9472008 2.89797295013072009 0.879349961480496045 3 false 0.016031051000000001 \N \N 0.0991804399999999947 6 4 2664.84180000000015 0 6 false 52 70.732023225849801 1.29204907328216989 54.7440987 21.0643250000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.138574272967986 -62.8489480998508014 22.4506744818949002 -12.3492858751612005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456598380874240 2481456598380874240 565852296 2015.5 25.3265433215413012 0.316683417796708999 -2.73352871043163015 0.215153989506646992 0.0775669206250142046 0.339282566065362001 0.228620409999999996 3.4477458699313801 0.768939176200573948 -2.88446345694987993 0.399275993298122023 0.112728529999999993 0.0937758499999999939 -0.174801679999999987 0.118489380000000005 0.0182784460000000003 0.143240420000000007 0.0470783379999999974 -0.00738407530000000003 0.0819396099999999961 0.0842696400000000068 134 0 133 1 0.668111600000000028 138.287003 0.381400372957080014 0.303895319266903996 31 false 0.251782059999999974 1.60784097375744994 0.0795766839994768993 -0.0148943749999999996 15 9 0.679440400000000055 0 15 false 133 467.600617126879001 1.64305100198191001 284.592987 19.0136779999999987 15 270.497700528617997 12.9070915080717992 20.9572929999999999 19.2709790000000005 14 292.283208664048004 8.99837919549826992 32.4817620000000034 18.59741 1.20355049999999997 0 0.67356870000000002 0.257301329999999995 0.41626740000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.124358087155997 -62.8430932571965002 22.4504494881316994 -12.3405494330544006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456594085474560 2481456594085474560 1391013137 2015.5 25.3359189097967992 0.180629002236591008 -2.72913852078897001 0.119384956800034997 0.741851000450853948 0.18933160542718 3.91826300000000005 1.48853971440859989 0.430308839042817026 -13.9259881203484994 0.225045072688674991 0.0550440999999999986 0.0494052660000000032 -0.244186669999999995 0.111819630000000003 0.0025806894999999999 0.143106309999999987 -0.0475163499999999989 0.0578229050000000008 0.0923830939999999989 0.0675335999999999992 124 0 124 0 1.34463639999999995 140.227997 0.221153246250329005 0.349697379971647015 31 false 0.874403200000000047 1.54445672058718997 0.0441219580915351989 -0.0425261779999999978 14 9 0.383981000000000017 0 14 false 123 1143.40931336830999 2.84037289468429988 402.556 18.0428619999999995 11 504.626513115926002 12.0038178727730998 42.0388340000000014 18.5939639999999997 12 945.446974286566046 15.8742037809234997 59.5587000000000018 17.3228259999999992 1.26820160000000004 0 1.27113720000000008 0.551101700000000028 0.720035549999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.138916894123014 -62.835168164596098 22.461017015896001 -12.3399139916473999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481456667100350592 2481456667100350592 60221526 2015.5 25.3243742391208997 0.073575997773422594 -2.72343373272551981 0.0507666358768254986 1.04154066122449995 0.0787758516115433932 13.2215729999999994 14.3966347815470996 0.170547853514625009 -23.7104967035054983 0.100995821838773994 0.0633836700000000031 0.133376140000000004 -0.142372820000000011 0.0585478769999999982 -0.0215756539999999997 0.0556539149999999982 -0.134519680000000003 -0.00434568060000000041 0.121070810000000001 0.083189435000000006 125 0 125 0 -1.67530920000000005 95.2994995 0 0 31 false 5.17703999999999986 1.6059325554494801 0.0184898642243574995 -0.0477587169999999991 14 9 0.156851039999999997 0 14 false 124 4767.83913748529994 4.68073706968654957 1018.60999 16.4925609999999985 14 2324.32433059859022 14.3275317150955992 162.227830000000012 16.9356459999999984 13 3603.88389676708994 10.3623897936634997 347.785000000000025 15.8699929999999991 1.2433742000000001 0 1.06565280000000007 0.443084719999999987 0.622568129999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.110745968734989 -62.8348475864116978 22.4521905392425012 -12.3303656263354 100001 5077.31006 4989.02979 5213.77002 0.0399999991 0.0132999998 0.176499993 0.023 0.00389999989 0.0909999982 200111 0.561324999999999963 0.532326500000000036 0.581365299999999974 0.188650280000000004 0.158826259999999997 0.21847430000000001 +1635721458409799680 Gaia DR2 2505440825337500032 2505440825337500032 1104745984 2015.5 25.9162109537510013 4.41103821399981033 -2.54303060053480001 4.8541493631979904 \N \N \N \N \N \N \N -0.305141300000000004 \N \N \N \N \N \N \N \N \N 78 0 78 0 77.3141860000000065 10640 19.3072469524603996 299.701271748199986 3 false 0.0023551815999999998 \N \N 0.0680462299999999992 10 7 18.0039650000000009 0 10 false 86 127.206155793462997 2.45412263938868014 51.8336983 20.4270950000000013 8 178.544487952884992 13.4972409282833006 13.2282209999999996 19.7220210000000016 8 388.062120650601003 11.2931150047197999 34.3627170000000035 18.2896670000000015 4.45423900000000028 0 1.43235399999999991 -0.705074300000000043 2.13742829999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.105432161112986 -62.4189961657273003 23.0829551665649007 -12.3796375972526 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440172502468992 2505440172502468992 892146906 2015.5 25.9559761926973991 0.789956998944154054 -2.5521291889329798 0.759525635173471048 -0.408946932591784995 1.06914643823212008 -0.382498530000000003 2.04594861416130014 1.37276678352421011 -4.84149020298787036 1.82271371057275999 0.0818525300000000067 0.651804860000000041 -0.0254938530000000003 -0.0367820150000000012 -0.357920300000000025 -0.366329579999999988 -0.524552459999999998 0.193593369999999987 0.255325440000000015 0.60070380000000001 132 0 130 2 -0.627245300000000006 114.711998 0 0 31 false 0.0500606099999999984 1.57693048671187008 0.198578089597459012 0.0987710650000000051 15 9 1.87257270000000009 0 15 false 130 142.535721232790991 1.3678653679016799 104.203003 20.3035560000000004 11 54.1835596941251012 9.10272373830700943 5.95245550000000012 21.0167199999999994 14 170.381968051010006 11.3362980670629003 15.0297719999999995 19.1833610000000014 1.57550349999999995 0 1.83335880000000007 0.713163400000000003 1.12019540000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.191228525191008 -62.4099150183590012 23.1173907246765999 -12.4026534394440997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440004999347840 2505440004999347840 414679208 2015.5 25.9409014717700011 0.0622782078079731002 -2.55159591575276989 0.044819333308250997 0.743308000647630029 0.0738393029392678951 10.0665630000000004 14.7797865301295008 0.116970506184646994 3.34789141317097005 0.0899433177417501006 0.00153510749999999992 0.520079799999999981 -0.104198076000000001 0.0362693970000000018 -0.224977609999999995 -0.0881845059999999958 -0.0518224300000000027 0.105667024999999998 0.171833039999999992 0.154887560000000007 139 0 139 0 1.13667289999999999 152.753998 0.0755023091745919001 0.287696202182401994 31 true 7.94526100000000035 1.57316335683926001 0.0141129697065472005 0.00314397919999999994 16 10 0.1099247 0 16 false 138 7464.4342428507498 5.9685074201497299 1250.64001 16.0058730000000011 16 3891.05067751143997 42.7675260848714984 90.9814300000000031 16.37622 15 5209.95228943000984 25.4627128248746004 204.611040000000003 15.4698349999999998 1.21924889999999997 0 0.906385400000000008 0.370347980000000021 0.536037450000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.161449049607 -62.4159892602105018 23.1032424404616989 -12.3966420405379996 100001 5367 4891.02002 5519.5498 0.0671999976 0.00800000038 0.177100003 0.0436999984 0.00590000022 0.0860999972 200111 0.86078560000000004 0.81386219999999998 1.03647610000000001 0.553874199999999983 0.43825829999999999 0.669490099999999977 +1635721458409799680 Gaia DR2 2505440378660900096 2505440378660900096 887229008 2015.5 25.9436555438508982 0.336356361820059013 -2.54739455553227012 0.239441895032874996 1.16964195203075993 0.431065350761884014 2.71337500000000009 -13.0963780909976002 0.541218328856092001 -6.62817042965950964 0.414907371217527021 -0.0363490250000000001 0.633114159999999981 0.0800644459999999974 0.132079909999999995 -0.275027250000000001 -0.032872143999999999 0.146899279999999993 0.0874096699999999949 0.202467640000000004 0.161072159999999992 153 0 152 1 4.83127740000000028 245.434998 1.13595981020462 3.87706388983764016 31 false 0.238760709999999987 1.34491483344196006 0.0728691453851852966 0.0457515870000000033 18 10 0.491854669999999994 0 18 false 151 545.645194545940967 1.49087189517390994 365.990997 18.8460900000000002 17 124.707003437254997 9.73639711437379063 12.8083314999999995 20.111661999999999 17 665.930258028996946 8.74868232251609079 76.1177749999999946 17.7033479999999983 1.44899519999999993 0 2.40831380000000017 1.26557159999999991 1.14274220000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.162851894580996 -62.4110093705542965 23.107439128220399 -12.3937402058227004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440211157777792 2505440211157777792 480028266 2015.5 25.9790065467786988 0.199650589545082996 -2.54388952229161003 0.139880786010416008 1.40082815057138999 0.251340931662962008 5.57341800000000021 2.20800134869958997 0.333711030398893993 -5.49198297715364969 0.246525563350199012 0.00990441400000000027 0.596214649999999957 0.0352010349999999986 0.14071475 -0.238349000000000005 0.00147146600000000005 0.105558015000000005 0.072199620000000006 0.203586380000000011 0.180375000000000008 158 0 158 0 7.74329499999999982 331.23999 0.85207942406426096 7.73020536522478974 31 false 0.64004850000000002 1.4429790692075799 0.0421642785594575006 0.0572921149999999976 18 10 0.301178840000000003 0 18 false 158 1449.68880424384997 3.12532425944539982 463.85199 17.7851800000000004 17 566.694858263279002 11.5913829313749002 48.889324000000002 18.4680159999999987 17 1383.40163321340992 15.4894488386721996 89.3125150000000048 16.9095499999999994 1.3451827999999999 0 1.55846599999999991 0.682836529999999997 0.875629400000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.22818135436799 -62.3924746437136974 23.142401231464401 -12.4034105735871005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440481740330624 2505440481740330624 123658166 2015.5 25.9436095952370991 1.92738310113889999 -2.5274427158973598 3.30110378776468982 \N \N \N \N \N \N \N -0.100981580000000001 \N \N \N \N \N \N \N \N \N 69 0 69 0 2.5310779000000001 96.2414017 5.4258449408878997 2.7871363004082399 3 false 0.0114796110000000007 \N \N 0.0462857600000000022 8 7 9.23782300000000056 0 8 false 70 87.9219695337564957 1.58662284464221992 55.4145012 20.8281230000000015 6 70.0406962007006939 17.1930234481085016 4.07378600000000013 20.7380120000000012 6 70.7476445385777026 18.4714679406321984 3.83010399999999995 20.1376400000000011 1.60128739999999992 0 0.60037229999999997 -0.0901107800000000014 0.690483100000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.144032108060003 -62.3930631986817019 23.1148760804944011 -12.3751575850725004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440211157777920 2505440211157777920 806295022 2015.5 25.9821941197645003 0.0345294957789287968 -2.54631981255566009 0.026254007990702901 0.84636585162771405 0.0425238381554429029 19.9033259999999999 -6.31065378778735031 0.0591800818325338984 -3.15038719955700985 0.0548686229887233035 0.0833858850000000068 0.591440439999999956 -0.0630978799999999951 0.0302656900000000013 -0.200339030000000001 -0.14631015 -0.306650279999999997 0.118022779999999994 0.20990816000000001 0.326600849999999998 157 0 155 2 -1.75612159999999995 121.014 0 0 31 true 34.3059349999999981 1.59928636201518004 0.00818696608147908081 0.0520117250000000017 18 10 0.0661387900000000029 0 18 false 155 28195.5544183739985 8.29236983166697961 3400.17993 14.5629139999999992 18 15042.3660880639 34.9299845436004972 430.643370000000004 14.9080980000000007 18 19089.6268080041991 28.8181569454478996 662.416600000000017 14.0599260000000008 1.2105452000000001 0 0.848172200000000043 0.345184329999999984 0.502987859999999953 \N \N 0 \N \N \N NOT_AVAILABLE 152.236652120508012 -62.3932734458010003 23.1445243236603986 -12.4068380205806008 100001 5766.6001 5369.12988 5808 0.180299997 0.0125000002 0.461199999 0.111299999 0.00789999962 0.240999997 200111 1.2495191000000001 1.23177029999999998 1.44136620000000004 1.55546619999999991 1.3791990999999999 1.73173320000000008 +1635721458409799680 Gaia DR2 2505437320644184832 2505437320644184832 887043135 2015.5 26.0110487927465996 0.26312989720034502 -2.55093464621061017 0.193139832161063008 1.30117615578868007 0.345769562288418986 3.763131 -3.83710178906975985 0.415156504632286982 -8.8188364181097505 0.328662675424199024 -0.0563883629999999969 0.642427149999999947 0.0728818100000000052 0.139626699999999992 -0.328157870000000018 0.00722138539999999957 0.15990204999999999 0.077407279999999995 0.169678570000000001 0.205299779999999987 148 0 148 0 3.11974639999999992 201.675003 0.404739670032829013 0.596878174100562986 31 false 0.406804080000000012 1.46514101519793005 0.0603560336139970025 0.0432064050000000033 17 10 0.382953080000000001 0 17 false 148 616.091386318208038 2.01747170202362014 305.377991 18.7142519999999983 14 214.094752968145997 8.92291363808462989 23.9938159999999989 19.5248740000000005 14 580.730303237968997 8.95776692492487037 64.8298000000000059 17.8519840000000016 1.29010899999999995 0 1.67288970000000004 0.81062126000000001 0.862268449999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.296958365384995 -62.3848444165216023 23.1702616635194012 -12.4216854330220006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437256219983232 2505437256219983232 839569634 2015.5 26.0231134874047996 3.90510627592882997 -2.55541512360200995 6.38168064865894991 \N \N \N \N \N \N \N -0.525615040000000033 \N \N \N \N \N \N \N \N \N 50 0 49 1 1.73932639999999994 61.5783997 6.11590292947505976 2.15341189043796 3 false 0.00925563299999999922 \N \N 0.120913393999999993 6 5 26.2024420000000013 0 6 false 51 63.4793131630282019 1.97236476748949996 32.1843987 21.1817859999999989 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.324569491364002 -62.3836067408443 23.1800675636134983 -12.4302667603577 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442032223910912 2505442032223910912 1121164091 2015.5 25.9916716541614008 0.0511357176133412986 -2.51418990780415008 0.0376310249550802986 1.2651870867375099 0.0620148628085179024 20.4013519999999993 11.7927486784465998 0.0915374465376693064 -29.1845349362428017 0.0764518997975077996 0.0274494399999999986 0.55186354999999998 0.0466841760000000008 0.0142533550000000005 -0.191709220000000014 -0.135309950000000012 -0.118835910000000003 0.0579286300000000018 0.202925090000000002 0.177446930000000003 144 0 144 0 0.995846299999999962 155.554001 0 0 31 true 12.2691730000000003 1.48299314276960992 0.0132242126286055001 0.0170185040000000003 17 10 0.0889031200000000021 0 17 false 142 10458.4906085026996 6.45073529426137959 1621.29004 15.6396929999999994 14 4570.86336589430994 17.7163951386715013 258.001899999999978 16.2013929999999995 16 8537.70526759590939 24.9373904295534992 342.36563000000001 14.933567 1.25339010000000006 0 1.26782609999999996 0.56169986999999999 0.706126200000000037 \N \N 0 \N \N \N NOT_AVAILABLE 152.224820119099007 -62.3602297856237016 23.1655886577058006 -12.3804048529735997 100001 4896.3999 4725.20996 5112.5 0.331999987 0.277200013 0.633099973 0.1567 0.128900006 0.308999985 200111 0.750700600000000051 0.688579139999999978 0.806079100000000048 0.291833899999999979 0.261256600000000005 0.322411200000000009 +1635721458409799680 Gaia DR2 2505441821770127616 2505441821770127616 1142293647 2015.5 26.0020449153353006 2.20136820579245018 -2.5184258401475601 3.31082208401972 \N \N \N \N \N \N \N 0.578374900000000025 \N \N \N \N \N \N \N \N \N 52 0 52 0 0.0313597200000000007 46.6383018 0 0 3 false 0.0163562410000000005 \N \N 0.254629370000000022 6 6 9.71688299999999927 0 6 false 53 75.3794614130995058 1.7513940964135799 43.0396996 20.995234 5 56.2858940720143011 7.44740431927583035 7.55778700000000025 20.9753900000000009 4 60.1409902431784005 18.6893520312663988 3.21792819999999979 20.313993 1.54454390000000008 0 0.661395999999999984 -0.0198440549999999993 0.681240100000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.248904671679014 -62.359523121395803 23.1738749338140018 -12.3881402323569993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441791705742464 2505441791705742464 1310197642 2015.5 26.0225781282649002 0.036424020700817801 -2.51866237647245006 0.0276450586950460001 0.52508584200835795 0.0433975853439413986 12.0994250000000001 -2.01793949260413008 0.0646937804983163944 -8.30477754699223958 0.0580701193481217987 0.0390951599999999969 0.552146200000000031 -0.0834408299999999936 0.0193999260000000014 -0.165693690000000005 -0.126546080000000005 -0.240731659999999986 0.109933904999999998 0.196001349999999991 0.202540670000000006 141 0 140 1 1.57734970000000008 161.858994 0.0935301773482208054 1.2767464917045499 31 true 30.3417400000000015 1.63987259646414008 0.00948709390938510047 0.00761540900000000007 16 10 0.0678384900000000013 0 16 false 140 34230.7824467194005 13.4823254188353996 2538.93994 14.3523239999999994 15 21161.9454315455987 47.3743051249158 446.696700000000021 14.5374990000000004 14 19598.2318612411982 26.1440186510365997 749.625850000000014 14.0313780000000001 1.19074630000000004 0 0.506121640000000039 0.185175900000000004 0.320945739999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.288904586970006 -62.3507825233412021 23.1933316373560992 -12.3958684424196992 100001 7298 6909.49023 7497.66992 0.451000005 0.257200003 0.972100019 0.188700005 0.132599995 0.40259999 200111 1.37863230000000003 1.30618260000000008 1.53802759999999994 4.85743499999999973 3.95515870000000014 5.75971170000000043 +1635721458409799680 Gaia DR2 2505488722812805120 2505488722812805120 26870027 2015.5 25.9157993003827016 0.0655934647429181061 -2.45410208163719012 0.0506607687325294972 0.275099502031582011 0.0788188955305748062 3.49027349999999981 7.48719556340517034 0.120005097300239005 -12.3088631739410008 0.0997024629586426986 0.0297941099999999987 0.517806230000000034 -0.0495633099999999993 0.0890611300000000022 -0.260888100000000012 -0.0403285599999999994 -0.094956345999999997 0.104796669999999995 0.201955080000000009 0.259029149999999986 154 0 152 2 3.56457969999999991 216.119003 0.197375018097875998 1.82250023202031008 31 false 5.79037399999999991 1.61041549019786001 0.0165835008491195986 0.031682125999999998 18 10 0.116323813999999998 0 18 false 150 6906.67537107861972 6.24944235712870988 1105.17004 16.0901929999999993 18 4273.59340897948005 17.9231998729919013 238.4392 16.2744050000000016 18 4010.6016920225602 10.2518147644969009 391.208950000000016 15.7538959999999992 1.19944760000000006 0 0.520508769999999954 0.18421172999999999 0.336297039999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.021448688484014 -62.3390436433397994 23.1159020534843016 -12.2967369515982998 100001 7239.75 6900 7409 0.0350000001 0.00590000022 0.0776999965 0.0170000009 0.00389999989 0.0430999994 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441413748250240 2505441413748250240 1319762611 2015.5 25.9368076085359007 35.3657066279624033 -2.49599777710995996 5.63626088261387981 \N \N \N \N \N \N \N -0.0093934489999999999 \N \N \N \N \N \N \N \N \N 32 0 31 1 -1.37335370000000001 16.7975998 0 0 3 false 0.0128771159999999992 \N \N 0.187958480000000011 5 4 3550.01830000000018 0 5 false 32 57.9912062319183974 1.76135662333132004 32.9241982 21.2799599999999991 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.101359971423989 -62.3676938470064997 23.1201905542333996 -12.3434083700645996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441375096895104 2505441375096895104 1423402871 2015.5 25.9648743284231998 2.05709599932748022 -2.49446328355772007 1.55942273434218004 \N \N \N \N \N \N \N -0.386630949999999973 \N \N \N \N \N \N \N \N \N 58 0 57 1 -0.250849160000000015 48.8414001 0 0 3 false 0.0204284490000000013 \N \N -0.204037589999999991 7 6 4.47136499999999959 0 7 false 59 92.2486722079572985 1.66636549617787 55.3591995 20.7759649999999993 2 62.1349099124388999 31.3734919284937988 1.98049070000000005 20.8680500000000002 3 104.420543368373998 33.8401261324466986 3.08570199999999994 19.7149539999999988 1.80550520000000003 1 1.1530952000000001 0.0920848850000000052 1.06101040000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.154361640388998 -62.354127080919902 23.1474765995606013 -12.3522470018451997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442027928351744 2505442027928351744 1690158810 2015.5 25.9968902146441998 0.239699139365443986 -2.50397424377073019 0.170928834154793013 0.372211035583915995 0.310597157848822025 1.1983724 0.421636417028667998 0.38637174405998298 0.497906060180351995 0.294017587274645997 -0.0435508800000000001 0.631916049999999951 0.0441232959999999994 0.143554669999999995 -0.303229599999999988 -0.0200248550000000011 0.131630670000000005 0.102846580000000007 0.20087933999999999 0.1853099 149 0 147 2 0.386821570000000003 147.932999 0 0 31 false 0.496530740000000026 1.49610847013569992 0.0550656592002269005 0.0313951449999999993 17 10 0.352360640000000003 0 17 false 146 680.237338604159049 1.60706873609256995 423.278015 18.6067140000000002 14 270.669671044474001 10.0323306184069008 26.9797399999999996 19.2702880000000007 15 609.957107717585018 11.1498354333900007 54.7054820000000035 17.7986719999999998 1.2945875 0 1.4716167 0.663574200000000003 0.808042499999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.225336398990009 -62.3487631563638018 23.1743841716155003 -12.3728065711658992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441959208875392 2505441959208875392 111642952 2015.5 26.0220561043942986 0.169731818212426 -2.50188731336060988 0.120508553383707001 0.591409724755990962 0.213180209929523995 2.7742243000000002 1.10114060352490006 0.267318908646295983 -0.934376682084628984 0.210386147959766012 0.0789894760000000029 0.64708924000000001 0.0511846769999999979 0.175834149999999995 -0.159204559999999995 -0.0108180680000000001 0.139357609999999993 0.107701406 0.243828669999999997 0.194730280000000006 141 0 139 2 0.925633130000000026 149.014999 0 0 31 false 1.06476550000000003 1.58345944687257001 0.0380424361902974989 0.0615675369999999986 16 10 0.247661529999999991 0 16 false 137 1249.19674503720989 2.39569996816207986 521.432983 17.946788999999999 16 651.560037979999038 15.7252018101920008 41.4341280000000012 18.3165019999999998 13 910.323245922721981 8.75463524784453995 103.981859999999998 17.3639319999999984 1.25031010000000009 0 0.952569960000000049 0.369712829999999992 0.582857129999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.272114388460011 -62.3359186253666024 23.1991202798511011 -12.3800662745231005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443063016059648 2505443063016059648 90677768 2015.5 25.9833544655974009 0.495348632983169002 -2.47065832703041011 0.359375207978223976 0.579099045340587981 0.648309742941161948 0.893244400000000049 5.97098849969358003 0.784458404584580049 -6.56309435547504005 0.590850879723488043 -0.0580099820000000016 0.633934259999999972 0.0649991399999999969 0.164541700000000013 -0.330036580000000024 0.0315183399999999989 0.202338639999999986 0.0797483600000000042 0.178582089999999999 0.190023419999999998 151 0 147 4 2.66134860000000018 190.923996 1.20230562975064004 2.06144551183824998 31 false 0.115331649999999994 1.49050161129895997 0.109259558024392994 0.0318242720000000007 17 10 0.715179560000000047 0 17 false 149 286.036363869630009 1.40446460548523011 203.662003 19.5473120000000016 13 73.9913700419822931 13.1065778974120004 5.64536139999999964 20.6784360000000014 15 341.768894600324984 8.8679709124325008 38.5396959999999993 18.4275899999999986 1.45352239999999999 0 2.25084689999999998 1.13112450000000009 1.1197223999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.167866755290987 -62.3246611045581034 23.1739848651957985 -12.3368528566390001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520883528012288 2505520883528012288 414117532 2015.5 25.933630658797501 2.58586176762615017 -2.17310083727665004 1.19813336671468007 \N \N \N \N \N \N \N -0.478590819999999972 \N \N \N \N \N \N \N \N \N 93 0 92 1 1.23144190000000009 103.525002 0 0 3 false 0.018002569999999999 \N \N -0.185664600000000013 11 6 5.43100000000000005 0 11 false 95 84.4421840162442976 1.4752332914175601 57.2398987 20.8719670000000015 7 58.6259703746925993 8.37511172268544968 7.00002239999999976 20.931163999999999 7 54.8305869306020028 7.34319044057421966 7.46686169999999994 20.4143620000000006 1.34360049999999998 0 0.516801830000000018 0.059196472 0.457605360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.795858991378992 -62.0778617146049001 23.238066784327799 -12.0417504298007003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443058724100224 2505443058724100224 1661658460 2015.5 25.9814867301745984 1.32763747269196997 -2.46552241700997987 1.12878579559631009 -1.26684828173467001 1.82411647607187999 -0.694499700000000053 2.82411167032682009 2.12413181276689 -10.5491112171576997 2.62513648510832009 -0.16670821999999999 0.709652100000000008 0.198113929999999994 0.0697091900000000042 -0.505897000000000041 -0.427194650000000009 -0.572767400000000038 0.267117139999999975 0.361304300000000023 0.532339160000000033 105 0 103 2 12.1059509999999992 382.306 2.72137511399305021 8.41872246072319008 31 false 0.0278487930000000002 1.07614048311460997 0.315939694324764986 0.000399331969999999975 12 8 2.78417970000000015 0 12 false 101 115.713996561529001 1.47306885955260003 78.5530014 20.5299019999999999 7 43.8716746419134012 5.88646267039595994 7.45297769999999993 21.2459279999999993 8 120.248326586613004 12.3941008803222008 9.70206199999999974 19.5617219999999996 1.41832460000000005 0 1.68420600000000009 0.716026300000000004 0.968179699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.15943940268599 -62.3208483861669009 23.1741315901928999 -12.3313903487507002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490170217361536 2505490170217361536 1230031159 2015.5 25.9393040682484006 0.0692286220930399959 -2.44444702969882988 0.0492873450343667974 0.197120651762285992 0.0752591925018418068 2.61922360000000021 5.2389271937054902 0.138320477260072988 -1.32303258500455989 0.103629830002802001 -0.116666876000000003 0.40539502999999999 -0.237965120000000002 0.0662214599999999959 -0.298864200000000024 -0.0212977380000000001 -0.15818589999999999 0.133866330000000006 0.163824250000000005 0.118553749999999999 133 0 133 0 -0.0552921440000000014 126.455002 0 0 31 false 6.29883530000000036 1.53416756554078004 0.0189754851404832989 -0.0698217200000000038 15 10 0.129773780000000005 0 16 false 134 5550.28169518550021 4.90295864347346022 1132.03003 16.327577999999999 16 2664.76901553517018 18.5701331124549007 143.497569999999996 16.7872400000000006 15 4216.57305713167989 19.2915021796605011 218.571519999999992 15.6995210000000007 1.23981859999999999 1 1.08771799999999996 0.459661480000000011 0.628056500000000018 \N \N 0 \N \N \N NOT_AVAILABLE 152.058013336566006 -62.3201660662598016 23.1418858736094002 -12.2963505103680006 100002 5001.3501 4943.4502 5159.97998 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443161799929984 2505443161799929984 1357138057 2015.5 25.9619581796460004 0.859229394258758994 -2.45738077828033985 0.979729616485981003 1.64267075640088001 1.37085379510612992 1.19828299999999999 0.253439336196843001 1.79265261786661001 -3.17970992857146006 2.06555290424121019 -0.0332956900000000028 0.514841800000000016 0.0204154000000000002 0.0144777959999999994 -0.608405769999999957 0.29913590000000001 0.353245440000000022 -0.242202670000000009 -0.263026859999999973 0.614730600000000016 121 0 120 1 3.34603669999999997 172.699005 2.54329193240186013 2.46994113291740014 31 false 0.0360190570000000002 1.32033239690752002 0.239770437385520008 0.12621692000000001 14 9 2.22224570000000021 0 14 false 121 145.97854691808999 1.6937862237927499 86.1847992 20.2776430000000012 8 52.4078171156564991 20.0740824131605002 2.61072039999999994 21.052897999999999 11 173.52820504652999 9.76669263738035021 17.7673449999999988 19.163494 1.54773439999999995 0 1.88940430000000004 0.775255200000000033 1.11414909999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.113993906388998 -62.3219964093268999 23.1585973102600988 -12.3166721027333992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443166095274368 2505443166095274368 1641922359 2015.5 25.9677257311257002 0.103345606661701006 -2.46094658744380013 0.0760801096963291956 1.0845248460802499 0.130021264226580002 8.34113400000000027 11.0393980437777 0.176395729861622996 3.33148160405704008 0.140907569083346007 -0.00473881200000000023 0.589864799999999967 0.054276124000000002 0.0842757749999999972 -0.257590649999999977 -0.040750515000000001 0.0753200900000000062 0.057979072999999999 0.16967161 0.186389969999999988 148 0 148 0 -0.244325710000000001 138.255005 0 1.68061091013976992e-15 31 false 2.54712560000000021 1.47507333517849992 0.0246065275769902017 0.0416651960000000016 17 10 0.162425860000000005 0 17 false 145 2498.23031371644993 2.54845309921251006 980.29303 17.1942839999999997 14 984.125261257300963 12.7341987544307003 77.2820739999999944 17.8687630000000013 13 2173.49594776442018 22.1557707669856008 98.1006699999999938 16.4190240000000003 1.26394319999999993 0 1.44973949999999996 0.674478530000000021 0.775260900000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.128502489188008 -62.3227047539380976 23.1627499475255014 -12.3220997193540001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443337894009088 2505443337894009088 927939610 2015.5 25.9646768092732003 0.115123065071451994 -2.44783200563226 0.105595676753034995 1.01728157796582996 0.152792573383754987 6.65792560000000044 -1.35350733625446007 0.229873707994337012 -16.1724594173896996 0.246103710091942013 -0.0531035549999999967 0.497285429999999973 0.0059575009999999996 -0.0160938860000000017 -0.460955999999999977 -0.0222845109999999999 -0.0320834899999999992 -0.0151867889999999992 0.0171172539999999984 0.418094520000000025 130 0 130 0 0.901510200000000039 139.085999 0 8.98773367955635009e-16 31 true 1.80662729999999994 1.47100120834622006 0.0322970057277782024 0.0804614699999999933 15 10 0.251941740000000025 0 15 false 128 1858.53633320494009 2.94814996771220983 630.40802 17.5154379999999996 13 682.14125121158304 16.8415064268183983 40.5035799999999995 18.2667029999999997 11 1749.13367157583002 12.5063476651019005 139.859659999999991 16.6548629999999989 1.30816650000000001 0 1.61183929999999997 0.751264599999999949 0.860574700000000026 \N \N 0 \N \N \N NOT_AVAILABLE 152.110333315869013 -62.3122155947528995 23.1647620729170995 -12.3087803096778003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443299242261888 2505443299242261888 789607240 2015.5 25.9765747421467985 0.236381271045729008 -2.44110204270063003 0.162293872432523995 0.617617660330641027 0.303865602806241974 2.03253560000000011 0.930973050692756043 0.375661164716736995 0.0274710024932470001 0.280578987874169017 -0.0120234890000000001 0.629028299999999985 0.0139991309999999997 0.179324700000000004 -0.29192965999999998 0.0437929899999999969 0.0767199249999999944 0.0880534800000000034 0.206515239999999989 0.245937349999999999 158 0 156 2 3.79777569999999987 226.207001 0.63346711402710798 2.30046476948708012 31 false 0.50085449999999998 1.42942551931344997 0.0523028260135385004 0.049885154000000001 18 10 0.345291230000000005 0 18 false 148 834.498248214904038 2.40136444422447015 347.51001 18.3848020000000005 16 328.020781740866028 14.6580367555498992 22.3782220000000009 19.0616340000000015 17 791.664790852856981 12.2895570226892996 64.4176899999999932 17.5155659999999997 1.34174700000000002 0 1.54606819999999989 0.676832199999999995 0.869236000000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.127081156646 -62.3009899763258019 23.1786057778543011 -12.3068682974538 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490342015771008 2505490342015771008 1231871112 2015.5 25.9403083461452013 5.3992356646625197 -2.42579151036055007 6.7982113465207501 \N \N \N \N \N \N \N 0.762220259999999983 \N \N \N \N \N \N \N \N \N 57 0 55 2 0.66652054000000005 56.2416 4.19938328379941961 1.01570869671430009 3 false 0.0115454900000000003 \N \N 0.43242005 7 5 13.772627 0 7 false 60 71.5446621909491967 2.2599639680179 31.6574001 21.0519220000000011 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.042555991530008 -62.3029194047448982 23.1498311997740984 -12.2793573864526007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490372083770880 2505490372083770880 1098692623 2015.5 25.9431444267288995 0.907695896310485972 -2.41958701565144985 0.928621940525398037 0.266939816333638003 1.25376062130435995 0.212911309999999993 -0.769195106665444994 1.80668661308695011 1.62781820192650994 2.35037845946306012 -0.070108279999999995 0.547544299999999984 0.0301498619999999995 -0.0129546209999999995 -0.521747230000000006 -0.356333699999999975 -0.499155760000000004 0.221206679999999989 0.315300350000000007 0.546275850000000007 130 0 129 1 1.10792840000000004 141.548996 0 0 31 false 0.0309730079999999998 1.74890233059637001 0.269733576516697993 0.0493589079999999999 15 9 2.38936659999999979 0 15 false 130 114.099427135990993 1.38158957968511009 82.5856018 20.5451559999999986 11 92.4721215817768041 23.2304394909301983 3.98064449999999992 20.4363610000000016 14 88.7087753986091059 6.77977187570470008 13.0843310000000006 19.892004 1.58792109999999997 0 0.544357300000000044 -0.108795165999999999 0.653152469999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.042265257389005 -62.2960998394799006 23.1548542029379014 -12.2746208294762997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443372253703680 2505443372253703680 805061388 2015.5 25.960980558026499 0.662087841081477002 -2.43473727344481006 0.534642878005081035 -2.42374763709783014 0.937817475443024962 -2.58445569999999991 3.97892596890415007 1.10645681308689992 -3.78004234871957001 0.900199576650392963 -0.153572459999999994 0.607819439999999989 0.10088432 0.146299630000000014 -0.494015839999999984 -0.122850719999999997 -0.0602394830000000034 0.181815090000000013 0.283552470000000001 0.268486320000000001 141 0 141 0 2.33921029999999996 177.544998 1.27172221501568994 0.963574207133529037 31 false 0.0620484239999999979 1.7833235304933599 0.178042952100641 0.0462606360000000008 16 9 1.07181140000000008 0 16 false 141 179.779108615036989 1.56975350495385002 114.527 20.0515170000000005 13 121.737864364933003 15.3874824902735998 7.91148659999999992 20.1378230000000009 15 143.271121003193002 8.24731452074217053 17.3718509999999995 19.3715229999999998 1.47408099999999997 0 0.766300199999999987 0.0863056199999999996 0.679994600000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.090941727878004 -62.3020226903302969 23.1661505074239997 -12.2952426119944995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443372253703936 2505443372253703936 798425575 2015.5 25.9682339223741003 0.0913560152956851002 -2.43812500203295013 0.0740294175133451027 0.58889714386891201 0.115369930180637001 5.10442499999999999 1.64728088286227004 0.174135519637804992 3.72156533292677993 0.139467304622424987 -0.0739694399999999974 0.485453040000000002 0.0382684540000000004 0.0467100140000000011 -0.406505100000000008 0.0144137469999999993 0.121601163999999998 0.00855652500000000059 0.0742110200000000025 0.219663429999999993 148 0 147 1 -0.256742899999999996 137.065002 0 0 31 true 2.91957349999999982 1.49929095785266009 0.0249296986277822985 0.0211055350000000017 17 10 0.161545440000000012 0 17 false 145 2782.9361607723099 3.02291505027797003 920.612976 17.0771079999999991 13 1259.63046946403006 8.47553959887152075 148.619499999999988 17.6007800000000003 13 2221.85512264433009 20.3196334132021015 109.345240000000004 16.3951300000000018 1.2510116 0 1.20565030000000006 0.523672099999999974 0.681978199999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.108150856881991 -62.3019283570554023 23.1717836869161005 -12.3010477713118007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490307656314240 2505490307656314240 1309775471 2015.5 25.9600441243755995 0.379660862368554008 -2.43036361427872016 0.286555496025654 0.99869255005991997 0.496770177793856016 2.01037139999999992 -20.3775864773175996 0.639604870588685981 -27.8144642255150991 0.488225100341460994 -0.114079979999999997 0.592050850000000017 0.0831545699999999971 0.111741066 -0.409343449999999998 -0.0202311699999999997 0.115085610000000005 0.0802971199999999996 0.168003829999999993 0.198419540000000005 155 0 154 1 1.95243049999999996 184.539001 0.668824882704589951 0.778075470373262967 31 false 0.175599919999999993 1.43291366905559991 0.0943382444074425952 0.0127543989999999996 18 10 0.581855899999999981 0 18 false 152 350.189516416871982 1.47321865878866998 237.703995 19.3276080000000015 13 115.105125437656 15.4413480634324998 7.45434429999999981 20.1986519999999992 14 442.141488973649018 25.8312970317183002 17.1165030000000016 18.1480159999999984 1.59127149999999995 0 2.05063629999999986 0.871044159999999956 1.17959210000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.085045066971986 -62.2984884036674984 23.1668978818968014 -12.2908300192341002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443093080453632 2505443093080453632 60194279 2015.5 25.9868922407410992 2.10330043678023992 -2.4553577990730302 1.80789785098026989 \N \N \N \N \N \N \N -0.163424089999999994 \N \N \N \N \N \N \N \N \N 68 0 68 0 1.03792050000000002 74.634697 0.353076857392845 0.0154524205079799998 3 false 0.0200580430000000011 \N \N -0.0181993249999999988 8 7 4.8494672999999997 0 8 false 68 85.6222165181732038 1.38949355809152997 61.6212006 20.8568999999999996 7 46.8703051127576984 9.73412484841504089 4.81505060000000018 21.1741430000000008 6 80.4663525665855985 9.02249695809561025 8.91841299999999926 19.9978850000000001 1.48719179999999995 0 1.17625810000000008 0.317243580000000025 0.859014500000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.160389827969993 -62.3093466400896006 23.183084127515599 -12.3239076611478993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443097375797120 2505443097375797120 589504996 2015.5 25.9993533902263003 0.179601708321045994 -2.44903413736237008 0.122379266713038004 2.53023896194937015 0.221755321407723999 11.4100485000000003 -7.00994392887055984 0.298028260073174012 -18.2736727245694013 0.214189554148405986 -0.00326003230000000005 0.580344799999999994 -0.0398769269999999995 0.175957079999999988 -0.242888169999999987 0.0690524700000000047 0.0599055920000000006 0.0799161099999999985 0.19982627 0.206342379999999992 148 0 148 0 3.03794699999999995 199.940002 0.494140398575759976 2.04812848777743017 31 false 0.871117059999999999 1.32539006480597998 0.0389164500952057027 0.0248701160000000011 17 10 0.269202859999999988 0 17 false 147 1272.98027643603996 2.1032060423000698 605.257019 17.9263109999999983 14 277.561679236706993 10.7585505582826002 25.7991700000000002 19.2429890000000015 12 1606.05755610285996 8.12329947355913085 197.710000000000008 16.7475169999999984 1.47969229999999996 0 2.49547199999999991 1.31667709999999993 1.17879489999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.178587836949987 -62.2982360746657022 23.1973122904001983 -12.3225789659925002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443677198200832 2505443677198200832 1384630649 2015.5 25.9970042820716003 1.3498108118152099 -2.44014768394782999 1.25805505484884006 -0.418783885821566004 1.66742620113971007 -0.251155879999999998 16.9380548795971997 2.3166575919298702 -1.65988478590295996 2.95677108654159015 0.288337769999999993 0.624142500000000044 -0.171533500000000005 -0.185473589999999994 -0.127098349999999999 -0.383920670000000019 -0.560840200000000011 0.119814199999999996 0.146797729999999987 0.541087870000000026 102 0 101 1 -0.943582800000000055 82.9039001 0 0 31 false 0.0224097819999999996 1.55224871726253011 0.326897824659974023 0.137677799999999989 12 8 3.03903169999999978 0 12 false 101 94.7110477750384945 1.18602741294133995 79.8556976 20.747364000000001 9 33.8472860817703989 8.7634137383838997 3.86234019999999978 21.5275779999999983 12 170.841371857284997 17.1131629540933012 9.98303899999999977 19.1804370000000013 2.16119100000000008 0 2.3471413000000001 0.780214300000000027 1.56692699999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.165725703873989 -62.2912562417823992 23.1984052764513997 -12.3134500517071999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443677196115840 2505443677196115840 801297936 2015.5 25.9904867117565992 0.820138897878019968 -2.43621431732050997 0.632022677093663998 1.22944409460622994 1.13322709779949005 1.08490529999999996 6.76229728722138024 1.27611212074590008 6.62090854654145033 1.10958286437805009 -0.0438904800000000025 0.651581469999999996 0.0969744500000000037 0.151953129999999992 -0.401340099999999977 0.0422835719999999984 0.0309876609999999997 0.0474826319999999968 0.158150640000000009 0.361779960000000012 134 0 134 0 2.51841710000000019 173.014999 0 0 31 false 0.0464640399999999981 1.68377790480841005 0.209864431869200008 0.0954950600000000066 16 10 1.25760439999999996 0 16 false 133 138.779322953515987 1.30190750149702006 106.597 20.3325539999999982 11 28.7170756961372007 8.84610422206326064 3.24629639999999986 21.7060379999999995 14 199.685027312978008 12.3162035129949992 16.2131959999999999 19.011057000000001 1.64579340000000007 0 2.69498060000000006 1.37348369999999997 1.32149699999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.149436351633994 -62.2905465141135011 23.1936759851048997 -12.3074065643784003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443681491410944 2505443681491410944 11485500 2015.5 25.9868122897123008 1.04974593826062002 -2.43198069028623021 1.12553043787798002 0.284990813166713985 1.3137629794311001 0.216927110000000006 2.00118018141083009 2.23691831592413015 -3.80491091472937004 2.6818586113927898 0.248721780000000003 0.403881519999999994 -0.0263278239999999997 -0.109221940000000003 -0.262995800000000002 -0.324242529999999973 -0.578563799999999961 0.0651088100000000031 0.221926580000000012 0.561117300000000041 130 0 130 0 3.04653019999999986 178.774994 2.78168468243700007 1.50339030628865999 31 false 0.020716542000000001 1.88170097841140005 0.291291689388855024 0.105409964999999994 15 9 2.80407979999999979 0 15 false 131 105.938006894333 1.18334009872218004 89.5245972 20.6257359999999998 13 82.9434699554381041 14.6402914962815007 5.66542499999999993 20.5544319999999985 12 70.0890434185354962 11.8556756427884995 5.91185570000000027 20.1477949999999986 1.44454780000000005 0 0.406637199999999976 -0.0713043200000000044 0.477941500000000019 \N \N 0 \N \N \N NOT_AVAILABLE 152.138368575246005 -62.2883298956500013 23.1917649849148013 -12.3021231413839995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443745915291136 2505443745915291136 1476860839 2015.5 25.9814034235545002 0.735200382950387032 -2.4214420105896699 0.626177643765604031 2.78295910454801998 0.947608678892092993 2.9368230999999998 -15.2261967268477996 1.39079117942862007 -3.27619073516467996 1.12927717188262 0.122287384999999998 0.465557580000000026 0.0405448039999999968 0.117032880000000006 -0.268689100000000014 0.0573216299999999984 0.130351280000000014 0.00935851199999999939 0.132553790000000005 0.275061759999999988 144 0 140 4 6.88428970000000007 281.567993 2.94981302719721983 9.15215146040661942 31 false 0.0402619280000000024 1.24681198037127006 0.208298382471670013 0.135289519999999996 17 10 1.28838279999999994 0 17 false 139 176.071557283305992 1.33896177521930992 131.498993 20.0741419999999984 9 115.558408628823003 34.5792377228335965 3.34184379999999992 20.1943839999999994 14 270.671380139094993 13.8622891734107991 19.5257339999999999 18.6808149999999991 2.19359560000000009 0 1.51356890000000011 0.120241164999999997 1.39332769999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.118056848110996 -62.2811863493662017 23.1905650931613998 -12.2903378661830995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443505397424128 2505443505397424128 630584710 2015.5 26.0115436928888997 0.823765098780821048 -2.43098419495164997 0.580956457580909968 8.96010873089976911 1.07078489635682006 8.36779499999999921 163.921873359108986 1.34952773455227004 4.0587576582666598 0.953161964368936965 0.00582733749999999988 0.59309259999999997 0.0253937470000000012 0.205371620000000005 -0.30741727000000002 0.0940167459999999983 0.163874849999999989 0.0684363199999999949 0.196883190000000013 0.239035999999999998 157 0 156 1 6.9210919999999998 304.970001 3.04570786978556995 8.67480939645841964 31 false 0.039336999999999997 0.900444257597118991 0.181255209128824007 0.0503709499999999977 18 10 1.22463250000000001 0 18 false 155 181.183434447027992 1.30621098354581 138.709 20.0430700000000002 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.185272429887988 -62.2766844779959001 23.2156743766620011 -12.3102375793147001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443505397119616 2505443505397119616 1549270469 2015.5 26.0135300357398016 0.16080489131900999 -2.43026906283586008 0.127204790913990007 0.550028144979337053 0.199746929439379994 2.75362499999999999 13.5617350875025995 0.297666046035522991 4.23420570758910042 0.237361884231088005 0.132245079999999987 0.486637199999999992 -0.0336240230000000029 0.110774269999999994 -0.197230369999999988 0.0263653940000000003 -0.0168497449999999993 0.0602541340000000009 0.172051100000000012 0.281083050000000001 154 0 153 1 1.93895639999999991 183.158997 0.335329856052290987 0.860655017190834037 31 false 0.836314099999999949 1.5083215694135399 0.0444214961413032031 0.0971403799999999984 18 10 0.276925499999999991 0 18 false 153 1116.12272868820992 1.93731820704550994 576.117004 18.0690859999999986 18 477.758199728149975 9.82310361687851064 48.6361770000000035 18.6533680000000004 17 932.902862680620046 9.03914592057454946 103.206969999999998 17.3373300000000015 1.26389419999999997 0 1.3160381000000001 0.584281900000000021 0.731756199999999968 \N \N 0 \N \N \N NOT_AVAILABLE 152.188443716317011 -62.2751767357703017 23.2178326022193993 -12.3102981745417992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443612771871872 2505443612771871872 1390857764 2015.5 26.0247707319982986 0.389191578112317027 -2.42789304015873997 0.30510917427081502 -0.886179224874150018 0.477594214433163022 -1.85550670000000006 0.187047338390039009 0.72388331523223004 -11.7248346125546998 0.486949032785926994 0.188974169999999997 0.450679839999999998 -0.07154808 0.248037189999999991 -0.187365029999999988 0.177473190000000003 0.26817580000000002 0.104523169999999999 0.181382500000000002 0.268912499999999999 145 0 145 0 -0.894116400000000033 124.945999 0 0 31 false 0.164976970000000001 1.46152116990829994 0.0934160662725256052 0.103658059999999996 17 10 0.657664899999999997 0 17 false 144 328.233464977450012 1.45909614593660009 224.957001 19.3979099999999995 14 104.544332578921995 3.0694004320554602 34.0601800000000026 20.3031369999999995 15 342.713520533069016 11.8216725009448993 28.9902739999999994 18.4245909999999995 1.36262109999999992 0 1.87854579999999993 0.90522765999999999 0.973318099999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.207948239184987 -62.2681471545509027 23.2294203149141012 -12.3121958900322994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505443715851086720 2505443715851086720 728367192 2015.5 26.0104742190030009 0.236423093025698999 -2.42426263129208985 0.177861910483094993 1.84084775458026995 0.28664487362355201 6.42204999999999959 -7.88585495394239011 0.459228482573626973 -7.05848726321219022 0.309052267245000012 0.130063970000000001 0.420862230000000004 -0.11435526 0.162277880000000013 -0.192320319999999989 0.0865811560000000063 0.113300289999999998 0.0998079550000000038 0.183161810000000008 0.223173540000000004 154 0 153 1 1.93668400000000007 183.113998 0.498665102602476984 0.916195034920581963 31 false 0.402122020000000024 1.27839410960294009 0.0570782068350483979 0.0737205400000000011 18 10 0.413152299999999972 0 18 false 153 659.53750057503396 1.5905940081729899 414.648987 18.6402660000000004 15 164.614543760624002 12.6531779947254996 13.0097389999999997 19.8102170000000015 14 795.098418249620977 10.0507310541037 79.1085099999999954 17.5108679999999985 1.45513019999999993 0 2.29934880000000019 1.16995049999999989 1.12939830000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.176916555720993 -62.2710980451801035 23.2171737961663993 -12.3035911498364001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505437251928390400 2505437251928390400 88113348 2015.5 26.0309713191579988 0.77836647988024199 -2.55243674589118008 0.866442864102116017 0.143029791157013003 1.32118511227124991 0.108258709999999994 23.3921586785412998 1.28005972063741003 -12.2706461236888007 1.20799416749300992 -0.161949559999999992 0.624048099999999994 0.0469303579999999984 0.0452898779999999987 -0.659773000000000054 0.346596120000000008 0.551954399999999956 -0.202764720000000009 -0.266265780000000007 0.464325580000000016 123 0 122 1 0.839837130000000043 129.608002 1.24475890226114005 0.776987847556545042 31 false 0.0577133069999999984 1.29870620625325994 0.206660600868317001 0.142385860000000003 14 9 1.50241610000000003 0 14 false 123 153.154282304620011 1.21661026361455993 125.886002 20.2255420000000008 8 59.2328126986015988 8.25511537705557963 7.17528599999999983 20.9199829999999984 10 195.060850769795991 7.80909995714203031 24.9786600000000014 19.0364949999999986 1.66037579999999996 0 1.8834877000000001 0.694440839999999948 1.18904689999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.336987801658012 -62.3774953107678982 23.1886645249963017 -12.4303683027016003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438523235026432 2505438523235026432 1179448631 2015.5 26.0416606546584006 0.390691452754047985 -2.55717650261889995 0.317412434865337989 1.71962317293443001 0.54659689051211402 3.14605379999999979 3.85592405719711007 0.61107362083319805 -4.45816704118226959 0.480098756560849993 -0.0879931600000000008 0.642304199999999992 0.100650354999999997 0.146330550000000004 -0.441071869999999977 0.125147360000000013 0.372921999999999976 0.00648552739999999975 0.0446613650000000015 0.243274500000000005 149 0 149 0 3.2534282000000001 205.723007 0.694882329238683982 0.858438627451456049 31 false 0.193317089999999997 1.44858488461424995 0.0876879544478307016 0.0617819199999999971 17 10 0.56760900000000003 0 17 false 149 366.578148774996976 1.43785476982745997 254.947998 19.2779479999999985 14 123.771005868906997 23.7377534428309005 5.21409940000000027 20.1198399999999999 14 448.662882448653988 5.80151258896063027 77.3354999999999961 18.1321200000000005 1.56156030000000001 0 1.9877205 0.841892239999999958 1.14582819999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.362170963339992 -62.3770845114622006 23.1970646367851998 -12.4386875475732008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438798112937088 2505438798112937088 794012286 2015.5 26.0264534842618005 2.2565593724246602 -2.53947581862263982 1.68899958596188005 \N \N \N \N \N \N \N 0.0438433550000000005 \N \N \N \N \N \N \N \N \N 132 0 132 0 39.2463150000000027 2336.6001 12.8141206216923003 88.5967924644222933 3 false 0.00518504619999999965 \N \N 0.0651443200000000056 16 10 3.59318660000000012 0 16 false 133 157.025538697823009 1.80177294052966008 87.1505966 20.1984400000000015 16 161.785288020373997 15.4013786459849005 10.5045979999999997 19.8290399999999991 16 384.918474660412983 13.6709965632364998 28.1558460000000004 18.2984979999999986 3.48162320000000003 0 1.53054240000000008 -0.369400019999999996 1.89994240000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.316013249366989 -62.3678125768143019 23.1892210777844987 -12.4166547773172002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438763753199232 2505438763753199232 1684491097 2015.5 26.0400319491509009 0.112363900845425996 -2.53862735921383997 0.0889182284860368932 0.209800086536380992 0.142136300104721003 1.47604859999999993 2.18958137314080004 0.204005101833732994 -1.70163482726179005 0.167354525426710005 0.0145883290000000006 0.537537159999999958 0.0100198409999999998 0.0761141399999999968 -0.296870950000000022 0.0592751799999999968 0.176642999999999994 -0.00845824899999999928 0.0550314559999999994 0.231586559999999997 139 0 136 3 3.63010430000000017 198.102005 0.438574627275200024 4.79003415485284023 31 false 2.13855299999999993 1.71215031588528999 0.0284621109807473988 0.0694271699999999964 16 10 0.189423750000000002 0 16 false 136 3609.09548690478005 4.51905453109455024 798.640015 16.7948699999999995 14 2683.13177584652021 23.6917160569460989 113.251900000000006 16.7797829999999983 12 1627.57177732444006 16.3398449275189002 99.6075440000000043 16.7330700000000014 1.19439999999999991 0 0.0467128750000000009 -0.015087128 0.0618000029999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.341514016897008 -62.3611177068458034 23.2024655055106983 -12.4208297712107001 102001 9536.66992 7200.5 9613 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438798113149696 2505438798113149696 1327961414 2015.5 26.0304736506881014 0.984446612588469994 -2.53587564678668986 1.01702496321196989 -2.60048929829285003 1.40314583244479008 -1.85332790000000003 4.0906350330270298 1.87092793451912009 -6.1498396381743099 2.52692412913267983 -0.0274629020000000008 0.609447199999999967 0.00586829329999999979 -0.00915359500000000048 -0.490982829999999981 -0.39435199999999998 -0.550905800000000001 0.22966257000000001 0.309210870000000027 0.616891199999999973 109 0 109 0 -0.0398154370000000021 102.764 0 0 31 false 0.0349671770000000021 1.66592797285083005 0.304327212461679986 0.120846389999999998 13 9 2.60165800000000003 0 14 false 109 112.298501667574001 1.16781330715107989 96.1613007 20.5624310000000001 10 78.2973324695246049 9.34912723046588923 8.37482800000000083 20.6170219999999986 10 89.502356389614107 10.0857104572196992 8.87417499999999926 19.8823340000000002 1.49422910000000009 0 0.734687800000000002 0.0545902249999999992 0.680097599999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.320407891174 -62.3628189498882008 23.1943973379793995 -12.4147742995755994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438832472676736 2505438832472676736 1061905061 2015.5 26.0345166046118983 0.452940763483669018 -2.53291936329030998 0.332584411694192006 0.272458943627992001 0.604082446806926021 0.451029400000000025 0.386177809329498023 0.755866413588532016 -5.23941544046471019 0.538093030391143978 -0.0794277860000000002 0.591209699999999949 0.146700460000000005 0.129529670000000013 -0.393999339999999976 0.0513232600000000025 0.228689389999999992 0.00442845649999999962 0.130437389999999986 0.189713169999999987 131 0 129 2 1.0114723000000001 139.897003 0 0 31 false 0.159140809999999994 1.4307443205788799 0.106981404419959999 0.0219445170000000002 15 10 0.683732200000000012 0 15 false 129 304.05473438017998 1.35158917680760005 224.960999 19.4809860000000015 11 162.255107160510988 14.5362420727027999 11.1621079999999999 19.8258909999999986 13 243.965335805161999 10.2854980113701 23.7193499999999986 18.7936000000000014 1.3360109 0 1.03229140000000008 0.344905850000000014 0.687385559999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.325452073733004 -62.3583943118665971 23.1993539488160998 -12.4135012945176992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438866832416512 2505438866832416512 1204077941 2015.5 26.0659041592336997 0.480346793648361026 -2.52724891234969995 0.374108606475539007 0.473757194141178006 0.666636459672179993 0.710667970000000038 -1.76101740002177998 0.769714364298035969 -11.7756193870185992 0.613248725360656999 -0.0497280500000000028 0.622313140000000042 0.0331203860000000017 0.174134719999999993 -0.426560400000000006 0.129717870000000013 0.1749917 0.0240283379999999998 0.105548760000000005 0.326450320000000016 149 0 147 2 3.0893063999999999 199.845001 1.4038639771436201 3.03225443736097011 31 false 0.123555429999999994 1.22023458593953005 0.107165427362151996 0.104020249999999995 17 10 0.726272640000000025 0 17 false 145 307.275409747046012 1.56438604016366001 196.419006 19.4695450000000001 15 74.6956259710408972 10.2914605984825993 7.25802000000000014 20.6681500000000007 16 390.68807956965901 8.49418257162047041 45.9947799999999987 18.2823449999999994 1.51454909999999998 0 2.38580509999999979 1.19860459999999991 1.1872005000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.380859128780003 -62.3395734522826004 23.2313596933847002 -12.4196984356727995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438974207216256 2505438974207216256 610004069 2015.5 26.059691025667 0.17726388655028999 -2.51287630568406994 0.119292039602829997 1.6369580017099401 0.243208786228621993 6.7306695000000003 20.4395498017945982 0.246201009253646991 7.34741069089506027 0.214105553509944008 -0.206498860000000006 0.739515499999999992 -0.00745638370000000026 0.125178490000000003 -0.484970999999999985 0.06119169 -0.00165633550000000005 0.0304425730000000005 0.102421150000000002 0.370533080000000015 131 0 130 1 1.72475470000000008 153.535995 0.305888481841204984 1.13355138518545995 31 true 1.43969870000000011 1.36021694484849998 0.0428328345912089015 0.0753230700000000059 15 9 0.245356130000000006 0 16 false 128 1694.10647108651006 2.56827506552434981 659.627991 17.6160139999999998 13 542.463009417914009 14.9215471130574002 36.3543400000000005 18.5154630000000004 11 1760.94737610929997 24.2551242484230016 72.6010399999999976 16.6475539999999995 1.35966100000000001 0 1.86790849999999997 0.899448400000000037 0.968460100000000046 \N \N 0 \N \N \N NOT_AVAILABLE 152.355287579665998 -62.3293690637400033 23.2308292025800007 -12.4040513336851994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438901192155392 2505438901192155392 196874732 2015.5 26.0745069176929007 0.184686866040680991 -2.52327737491334991 0.128338510399368 0.912886916397555037 0.245223334337805993 3.72267560000000008 0.791962522068012986 0.273151019647730975 -2.86786787798956988 0.222232012087030001 0.0876461000000000046 0.682321900000000037 0.0229585190000000001 0.189649000000000012 -0.229113189999999994 0.129031630000000008 0.149464320000000012 0.0391392860000000023 0.13891690000000001 0.333377540000000028 140 0 139 1 0.523502000000000023 142.059998 0 0 31 false 1.04962120000000003 1.3557317150433299 0.040337664259118701 0.135346770000000005 16 9 0.263135699999999972 0 16 false 138 1197.50894794134001 2.38374301707986991 502.36499 17.9926679999999983 13 418.36779719483701 13.9301056340160994 30.0333539999999992 18.7974929999999993 12 1168.29103852224989 10.6987823090231995 109.198509999999999 17.0930420000000005 1.32496619999999998 0 1.70445059999999993 0.804824800000000007 0.899625800000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.393752063927991 -62.332238302814801 23.2410377496545983 -12.4191466662896008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439279149279744 2505439279149279744 1103963010 2015.5 26.0806747575366984 0.190430966099396998 -2.51238421809309997 0.144101068172337005 0.063290339801169701 0.252452320213299997 0.250702140000000018 4.31894743586716956 0.310290097732928982 -5.39646659437393961 0.254529567621068986 0.0589714530000000001 0.613677200000000034 0.00709181929999999974 0.157542139999999997 -0.296626659999999986 0.128309900000000005 0.139359769999999994 0.0143885469999999998 0.0972398200000000046 0.337140949999999995 145 0 142 3 0.912707500000000005 151.955002 0.466667439834538011 1.61286604238929998 31 false 0.806112599999999957 1.62605047972988004 0.0438021697775028973 0.120105035999999998 17 10 0.295804379999999978 0 17 false 142 1150.87903520163991 2.2412274933963201 513.504028 18.0357909999999997 15 682.517641124861029 8.38159557558437918 81.4305099999999982 18.2661039999999986 12 746.490592822083954 8.48915094766840994 87.9346599999999938 17.5793600000000012 1.24166679999999996 0 0.686744699999999986 0.230312349999999999 0.456432339999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.395400989285008 -62.3197465773351027 23.2509903549131991 -12.4112628918700008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439008566954752 2505439008566954752 1293469627 2015.5 26.1108393423128007 0.0419420554364300022 -2.53106351922800998 0.0353768831848125034 1.59150271171690005 0.0533272024269985032 29.8441070000000011 -24.5931060998976996 0.0805627894525312027 -23.8305370200189017 0.0783118233821526039 0.100461499999999995 0.510640560000000021 -0.0723874600000000007 0.0378141550000000021 -0.289203759999999976 0.0465073250000000021 -0.0593303700000000003 -0.0254339069999999987 0.000588620400000000013 0.439305219999999996 149 9 147 2 5.5987859999999996 257.799011 0.192915521107012988 5.59859018251775975 31 true 20.5236319999999992 1.52386016631848009 0.0122895876916655003 0.0869347159999999952 17 10 0.0872780159999999999 0 17 false 148 74190.130520982304 28.0685009882969005 2643.17993 13.5125010000000003 17 38023.8330461303995 65.3090582381458944 582.213750000000005 13.9012480000000007 16 51816.7822249918972 51.2967931094237031 1010.13689999999997 12.9757440000000006 1.21095109999999995 0 0.925503729999999969 0.388747220000000004 0.53675649999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.471341882220997 -62.3233122115292986 23.2727132126614009 -12.4396710184556998 100001 5457.66992 5396.33008 5922.18994 0.382699996 0.256900012 0.458099991 0.195299998 0.143900007 0.228100002 200111 1.21917439999999999 1.03541670000000008 1.24704539999999997 1.18810379999999993 1.10486510000000004 1.27134250000000004 +1635721458409799680 Gaia DR2 2505439107350588160 2505439107350588160 1253775965 2015.5 26.1013057988193005 4.46526241117896028 -2.51080311204517015 2.27708971351981004 \N \N \N \N \N \N \N -0.539043599999999956 \N \N \N \N \N \N \N \N \N 75 0 74 1 24.0454749999999997 908.534973 12.2642045337850991 61.719345253074799 3 false 0.00586575500000000027 \N \N -0.235939370000000009 9 7 14.1801309999999994 0 10 true 81 229.742713772689996 5.23720503289685002 43.8674011 19.7852609999999984 7 204.641702416475994 9.87603659456621941 20.7210350000000005 19.5739020000000004 8 499.20638655150799 18.4632283743007015 27.0378700000000016 18.0162200000000006 3.0636359999999998 0 1.55768200000000001 -0.211359020000000009 1.76904109999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.433779544759005 -62.3092887971994998 23.2712245904418005 -12.4173308446933 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439042926714240 2505439042926714240 1254111453 2015.5 26.1108686785315989 5.25237585718318023 -2.51735150245098005 3.12018234960595997 \N \N \N \N \N \N \N -0.240523979999999998 \N \N \N \N \N \N \N \N \N 84 0 83 1 31.0812680000000015 1461.67004 19.1262968494773986 105.843123887969995 3 false 0.00254820699999999982 \N \N -0.00373215900000000008 12 8 8.75114699999999957 0 12 true 102 152.461956327839005 2.28190903663431 66.8133011 20.2304609999999983 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.458437825164992 -62.3109800952602981 23.2778768927508999 -12.4269198353593993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439107350587136 2505439107350587136 209622776 2015.5 26.1075473621935998 1.33400536090896993 -2.51526826662344005 1.39344045848954989 \N \N \N \N \N \N \N 0.0540767799999999979 \N \N \N \N \N \N \N \N \N 88 0 88 0 2.28522470000000011 115.230003 2.91366994448579009 1.71609748731582989 3 false 0.0208736789999999992 \N \N 0.0974778159999999949 10 7 5.44142499999999973 0 10 false 87 97.5557740121876975 1.88225214106460004 51.8292999 20.7152330000000013 5 52.5776885878099023 18.6533798352858007 2.81866810000000001 21.0493850000000009 6 124.885238922742005 18.6287547493197998 6.7038960000000003 19.5206410000000012 1.81909199999999993 0 1.52874369999999993 0.33415222 1.19459150000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.45005388570101 -62.3105648834939032 23.2754948417141989 -12.4237673315333002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439107353196672 2505439107353196672 1181973765 2015.5 26.1088935412719998 3.60004726546076981 -2.51364115743389993 8.26748729289008999 \N \N \N \N \N \N \N -0.909578800000000021 \N \N \N \N \N \N \N \N \N 75 0 74 1 7.384938 195.850998 2.80385054298458991 7.69787647921284002 3 false 0.0212406550000000006 \N \N 0.0667086000000000068 9 6 63.3590850000000003 0 9 false 73 86.8442381252106941 1.49774933092371998 57.9832001 20.8415129999999991 6 42.1264625483613031 8.89998476223230917 4.73331829999999965 21.2899999999999991 6 117.565074305739003 8.11964282391494052 14.4790945000000004 19.5862240000000014 1.83882710000000005 0 1.70377730000000005 0.448488239999999982 1.25528909999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.451117439948007 -62.3085125839998994 23.2773859411720991 -12.4227448578385999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438179641446912 2505438179641446912 929306633 2015.5 26.1184610600904996 1.43391998593943004 -2.5474653628325501 0.971192767902795961 -1.84768967595622002 1.75643484755219004 -1.05195459999999996 10.0163178191995001 2.4300736096998401 -43.6248372234208972 1.50981300032098997 -0.285126180000000007 0.570730700000000035 -0.415078759999999991 0.198431909999999989 -0.565704169999999951 0.237337199999999998 0.0506994050000000029 0.0387124900000000022 0.117663229999999994 0.271662400000000026 86 0 85 1 1.94893319999999992 106.462997 1.44879169883948 0.541670296948832952 31 false 0.0370926859999999997 1.6877901672611999 0.277779367536704014 0.0544274999999999967 11 9 2.29682610000000009 0 11 false 89 119.930849350711 1.79454375876772998 66.8308029 20.4910400000000017 5 53.8851031755944021 27.882790369218899 1.9325578000000001 21.0227170000000001 7 120.858625037132995 12.4129767113834006 9.73647399999999941 19.5562269999999998 1.45703730000000009 0 1.46648979999999995 0.53167724999999999 0.934812549999999964 \N \N 0 \N \N \N NOT_AVAILABLE 152.501589969874004 -62.3346998446540965 23.273826709520101 -12.4577213583980004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438282716864128 2505438282716864128 1334964529 2015.5 26.1246487754096002 0.211069835012114987 -2.52740286254234015 0.172561708996714996 1.07194584576169993 0.283753956462055978 3.77773000000000003 2.69620684519167986 0.347865335487740013 1.61955426467734998 0.287143197159974994 0.0557535399999999973 0.588789400000000018 0.0441918970000000008 0.208314050000000001 -0.360248679999999988 0.16185157 0.181833450000000008 0.0339461799999999994 0.123717339999999995 0.366693649999999982 140 0 139 1 0.532151999999999958 142.207001 0 0 31 false 0.645586549999999981 1.53492782842638009 0.0499846488693503968 0.130367680000000014 16 10 0.337473929999999978 0 16 false 138 812.834785560591968 1.97485252681493995 411.592987 18.4133600000000008 12 321.535493861448003 12.1927461312006997 26.3710479999999983 19.083317000000001 10 750.751908182209036 8.47184723923338012 88.6172600000000017 17.5731800000000007 1.3191948 0 1.51013759999999997 0.669956200000000002 0.840181350000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.494556930670996 -62.3139622949171965 23.287233124800899 -12.4413098482391007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438213997386240 2505438213997386240 1178753492 2015.5 26.1325084857002992 0.82248788547667695 -2.5317749910582501 1.23776598478143995 1.26548219385833005 1.51341378905500989 0.836177229999999994 -0.877669831783388976 2.08090702588305998 -5.96347650414780972 3.09376976141148008 -0.167012259999999996 0.555595199999999956 0.0886367859999999952 0.146035479999999995 -0.733585400000000054 -0.57506584999999999 -0.737866640000000018 0.426075099999999984 0.540207899999999963 0.804433759999999998 116 0 116 0 1.43754460000000006 133.072006 0.535680093427090998 0.0952731938819231933 31 false 0.0448882729999999994 1.60122382487824999 0.240803236926903003 0.208211809999999997 14 9 3.32454630000000018 0 14 false 115 127.713942671574998 1.07152307966004989 119.189003 20.4227699999999999 12 77.959865116591601 10.2287367887672005 7.62165099999999995 20.6217100000000002 12 90.8545257142684051 9.79938572074209979 9.27145100000000078 19.8660530000000008 1.32181639999999989 0 0.755657200000000029 0.198940279999999997 0.556716899999999959 \N \N 0 \N \N \N NOT_AVAILABLE 152.513872995755008 -62.3144369860479017 23.2930796165087983 -12.4482507509318001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317076602112 2505438317076602112 879431695 2015.5 26.1423087122087985 0.509235330023843025 -2.52799265370821002 0.414047727584338998 0.0746277046818479006 0.719547511839435994 0.103714769999999998 5.32441697106103984 0.860336611289644004 -3.99016233685529986 0.664001997842073033 -0.0971031339999999937 0.578019139999999987 -0.0379192569999999979 0.163896619999999993 -0.501377300000000026 0.144868959999999991 0.161426619999999993 0.0206652130000000017 0.0775299899999999931 0.334428039999999982 146 0 141 5 2.18745499999999993 174.572006 0.660935807732451974 0.443881112588471016 31 false 0.110205830000000005 1.50110263704900992 0.114506836030039999 0.0906710700000000064 17 10 0.804241659999999969 0 17 false 141 248.985351083792011 1.5099690942044699 164.893997 19.6979310000000005 14 122.510085696760996 6.43006388886291003 19.052702 20.1309590000000007 15 215.374111131483005 8.64943193543413003 24.9003769999999989 18.9289360000000002 1.35704449999999999 0 1.20202260000000005 0.43302727000000002 0.768995300000000048 \N \N 0 \N \N \N NOT_AVAILABLE 152.529214164828005 -62.3067334241040029 23.3038280032167009 -12.4483108272515999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317076813952 2505438317076813952 82582226 2015.5 26.1433047817270996 1.11839970662528998 -2.52372512974327012 1.23778301792453993 2.14183009204475017 1.48785144220387 1.43954559999999998 2.59827578050740993 2.75392941432675009 0.00817887666748053077 3.63477219138749019 0.0959768740000000037 0.33521129999999999 -0.211007899999999998 -0.113863389999999995 -0.478167559999999991 -0.300577299999999992 -0.450467740000000005 0.17060903999999999 0.194512500000000005 0.604075999999999946 108 0 107 1 0.704462400000000044 111.685997 1.69335432423060994 0.904354945077822991 31 false 0.0199129939999999998 1.52261542551605 0.359862021185683001 0.160309800000000002 13 9 3.67585419999999985 0 13 false 107 88.309825801687694 0.966578771136825998 91.3632965 20.8233430000000013 9 51.2440595768288034 13.1231923867799001 3.90484710000000002 21.0772799999999982 9 63.4060314699487009 4.3682136899211903 14.5153230000000004 20.2565939999999998 1.29827110000000001 0 0.820686339999999959 0.253936769999999978 0.566749599999999965 \N \N 0 \N \N \N NOT_AVAILABLE 152.527096968277988 -62.3024633292989023 23.3063745761388006 -12.4447027530311995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438110918170880 2505438110918170880 642048980 2015.5 26.1538690863530014 0.442121293503644985 -2.53270914491417987 0.378668273846714976 2.32891326462560988 0.577228827561171998 4.03464460000000003 -4.1818333507051797 0.91192235797030996 -0.959054477171029984 0.704927653664745968 0.0497065520000000011 0.365304530000000016 -0.179761499999999991 0.109132654999999995 -0.425152570000000007 0.0817143099999999983 0.0334185999999999997 0.082353844999999995 0.0847053299999999953 0.349805399999999989 139 0 137 2 2.33840270000000006 172.957001 1.05805642806362998 1.2086468875254599 31 false 0.120172280000000006 1.16662304448900001 0.117885107857910995 0.114066799999999996 16 10 0.855155600000000016 0 16 false 137 283.905290763740027 1.51403012325959008 187.516006 19.5554309999999987 15 69.1911628038155015 8.03530303035542026 8.61089600000000033 20.7512599999999985 13 387.799676106445986 8.27357483311505959 46.8720799999999969 18.2904009999999992 1.60965939999999996 0 2.46085930000000008 1.19582940000000004 1.26502990000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.555994809427006 -62.3058847801039022 23.3130700079796007 -12.4569238377772997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438317080445952 2505438317080445952 1186196322 2015.5 26.1519892520723012 3.57680820275965994 -2.52824998249605004 2.83263011092441008 \N \N \N \N \N \N \N 0.61532180000000003 \N \N \N \N \N \N \N \N \N 39 0 39 0 -0.0925474000000000019 32.5900993 0 0 3 false 0.017994454 \N \N 0.0529143600000000006 5 5 20.8566719999999997 0 6 false 43 75.5025946782444066 2.46225210813623985 30.6639996 20.993462000000001 4 50.3668883858304 18.5633431120567991 2.71324439999999978 21.0960250000000009 4 60.2898864883245977 14.3538671404688003 4.20025400000000015 20.3113080000000004 1.46560230000000002 0 0.784717560000000036 0.102563860000000007 0.682153699999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.548142531704002 -62.3027080174240027 23.3129497565592985 -12.4520867694320003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438420155819904 2505438420155819904 233733520 2015.5 26.1436297088131013 0.430188479323419026 -2.51498102442673988 0.373374106548210016 1.13359119273486009 0.605812904231631033 1.87119020000000003 6.40966177129546999 0.741665090595848953 -7.94116600592402033 0.596374282937068956 0.180187719999999996 0.523558900000000049 0.0488706299999999982 0.220694069999999992 -0.298599720000000013 0.124894119999999997 0.1696376 0.0624552560000000007 0.180396620000000008 0.352246339999999991 139 0 138 1 2.49277829999999989 177.130997 1.02780183104395006 1.48696660081758991 31 false 0.139238980000000012 1.57010696023903007 0.103980174836113007 0.234868259999999995 16 8 0.710565450000000043 0 16 false 134 310.751799983537978 1.21166320989868992 256.46701 19.4573299999999989 12 100.265891270094997 12.6802856880196995 7.90722660000000044 20.3485049999999994 13 332.655295624606993 9.50855301448092938 34.9848479999999995 18.4569340000000004 1.39314139999999997 0 1.89157099999999989 0.891174299999999975 1.00039670000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.519449361849013 -62.2944679592575028 23.3099582938393013 -12.4366829176730995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438351440194048 2505438351440194048 32343201 2015.5 26.1606658752981005 1.90526227091522005 -2.52149594739928018 1.39490507713521006 \N \N \N \N \N \N \N -0.0621041170000000003 \N \N \N \N \N \N \N \N \N 73 0 72 1 -0.757202999999999959 58.0037003 0 0 3 false 0.020092426 \N \N -0.16169420000000001 9 7 4.97706840000000028 0 9 false 73 89.2463967379295013 1.70182655697234009 52.4415016 20.8118899999999982 7 109.329015928161994 21.6863369431613009 5.04137750000000029 20.2545490000000008 7 90.5209098548839961 13.1083003543048005 6.90561769999999964 19.8700490000000016 2.23930529999999983 0 0.384500500000000023 -0.557340599999999964 0.941841099999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.558486657192987 -62.292827193208403 23.3237410732943999 -12.4489698649074008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426295463758848 2505426295463758848 141790974 2015.5 26.1829129307422015 0.372738937121140979 -2.54896509749577005 0.307088479911990009 -0.515666873249312041 0.490626462971288979 -1.05103769999999996 7.19057859300424962 0.753512476640586959 -4.02223407196937988 0.526430729378557949 0.00221628370000000012 0.372900520000000013 -0.170761760000000012 0.133997509999999986 -0.446234970000000009 0.135187210000000002 0.151265110000000008 0.0493854550000000017 0.0476409979999999969 0.283050240000000009 158 0 157 1 2.41001269999999979 197.216995 0.979934033988141051 1.48861416436683003 31 false 0.156162660000000009 1.58310078409217003 0.0943438618937263024 0.0646206200000000036 18 10 0.686990800000000013 0 18 false 157 351.663932618317006 1.29967802381681996 270.578003 19.3230460000000015 15 133.393385955344996 5.36084094911324982 24.8829209999999996 20.0385530000000003 13 332.851605923973977 5.57086166717656006 59.7486760000000032 18.4562929999999987 1.3258255000000001 0 1.58226010000000006 0.715507499999999963 0.866752599999999984 \N \N 0 \N \N \N NOT_AVAILABLE 152.627454534588992 -62.3076846696109996 23.334641474818401 -12.4826631106245003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438080854018944 2505438080854018944 1486237227 2015.5 26.178788312100199 0.0896730323327273038 -2.54498688413778007 0.0735599085846350004 0.887500735005229968 0.108747423254744999 8.16111899999999935 11.6003921481411005 0.194450358575282006 -9.00431880612539004 0.147524373971844008 0.103845480000000004 0.304179160000000004 -0.186708819999999998 0.0812523200000000029 -0.300446959999999985 0.0850701999999999986 0.0224631539999999991 0.0455718749999999978 0.0465447380000000022 0.299771799999999977 158 0 153 5 0.893949800000000017 163.205994 0.250072169436777014 1.50091647412823992 31 true 2.64098530000000009 1.5463411787880299 0.0252714655551314997 0.0760826599999999964 18 10 0.183641899999999997 0 18 false 153 3076.57305440834989 2.6379656601839101 1166.27002 16.968197 17 1393.85210731824009 10.9347425751111995 127.470039999999997 17.4908469999999987 16 2424.56053017381009 16.8007743597357013 144.312420000000003 16.300336999999999 1.24112529999999999 0 1.19050980000000006 0.522649770000000014 0.667860030000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.615720806651012 -62.3059328664409975 23.3322030397732014 -12.4774538140781992 100001 4950 4892 5054.66992 0.128000006 0.064000003 0.176499993 0.0643000007 0.0320000015 0.0879999995 200111 0.564303299999999952 0.541175300000000026 0.577763499999999985 0.172242640000000002 0.128982920000000001 0.215502369999999999 +1635721458409799680 Gaia DR2 2505441959208873344 2505441959208873344 72867323 2015.5 26.0263323087556984 0.637066830308796961 -2.50743675332131 0.439576853484586028 0.521134722857706012 0.815095613856169021 0.639354100000000036 2.81583176839022009 1.02720696370460995 -11.6385326082705998 0.718565567210748046 -0.010209592 0.624017000000000044 0.0207881050000000012 0.204286169999999989 -0.279973450000000013 0.032537919999999998 0.206158709999999995 0.117533219999999994 0.227318290000000006 0.183302729999999997 133 0 132 1 1.5457748 152.507996 0.906473786855999997 0.626564296342319027 31 false 0.0813334359999999951 1.62150770986392989 0.137881023728919999 0.032465316000000001 15 10 0.927256399999999981 0 16 false 131 209.253768889332008 1.41024151103049999 148.382004 19.8866830000000014 10 132.469888369313992 11.1530649481628998 11.8774420000000003 20.0460950000000011 12 158.839570940042989 9.10809273659721086 17.439388000000001 19.2595230000000015 1.39213480000000001 0 0.786571499999999979 0.159412379999999992 0.627159099999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.285611730661998 -62.3390460217880005 23.2011114971923007 -12.3867941781786008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441894784957312 2505441894784957312 201023611 2015.5 26.0409439035035994 0.0358362429372460004 -2.51132996295156019 0.0266311029755237003 0.617860815641509964 0.044093053320454198 14.0126559999999998 2.17183239128427985 0.0609884962458996024 -11.0752015808107007 0.0551131992334958978 0.0440474599999999966 0.600829399999999958 -0.0195600099999999992 0.0264340799999999987 -0.204250860000000006 -0.150120210000000004 -0.212825209999999987 0.110243259999999996 0.21015665 0.251639720000000011 160 0 159 1 -0.355645239999999974 147.195007 0 8.09738597664291994e-16 31 false 30.8629439999999988 1.55306245549100996 0.00880771467547585007 0.0190117939999999985 18 10 0.0652126999999999984 0 18 true 152 25443.8963994555997 12.3651962372222002 2057.69995 14.6744070000000004 15 12385.1545357458999 43.586976133860901 284.14803999999998 15.119135 14 18929.4960417112998 75.0880675900591967 252.097260000000006 14.0690729999999995 1.23073330000000003 0 1.05006219999999995 0.444727900000000009 0.605334299999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.317558419112999 -62.3361702054832989 23.2135619041909003 -12.3957592109981007 100001 5242.62988 5068.66992 6214.75 \N \N \N \N \N \N 200111 2.02111980000000013 1.43828390000000006 2.16223259999999984 2.78020759999999978 2.3354986000000002 3.22491670000000008 +1635721458409799680 Gaia DR2 2505442204022601344 2505442204022601344 728639469 2015.5 26.0288030784391005 3.36527863578807995 -2.48721361310531996 2.31077536271300987 \N \N \N \N \N \N \N 0.00687257429999999989 \N \N \N \N \N \N \N \N \N 120 0 117 3 49.4735530000000026 3676.02002 18.4242168156308992 407.251917564737994 3 false 0.00280813399999999989 \N \N 0.0246416609999999987 17 10 5.42761199999999988 0 18 false 146 249.873284037618987 3.1134309996099101 80.2565994 19.6940670000000004 15 317.868947959640025 13.0418003365259008 24.3730890000000002 19.0957679999999996 14 707.055396140306016 10.9612212371817996 64.5051650000000052 17.6382869999999983 4.10177659999999999 0 1.45748140000000004 -0.598299000000000025 2.05578040000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.271381206628007 -62.3197743705434988 23.2110399826045004 -12.3688770601397007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442307101817088 2505442307101817088 1536177810 2015.5 26.0534090466513994 0.074172451282957394 -2.49462520104937013 0.0677371183523145931 1.03531718702861997 0.0977785032663233966 10.5883920000000007 1.82612676528611995 0.154875250071903003 -13.5468595658607001 0.118911535018680001 0.0136078569999999992 0.384729099999999991 -0.201949750000000011 0.14811742 -0.487429950000000001 0.391169370000000016 0.440059330000000026 -0.154201549999999993 -0.235457360000000004 0.411282539999999974 133 0 133 0 0.296668600000000005 132.123993 0 1.77635683940025007e-15 31 false 6.20732739999999961 1.40911812591079011 0.0197633637882965001 0.0593726929999999972 15 9 0.15698469000000001 0 15 false 133 5572.26286138432988 4.42506701854344975 1259.25 16.3232859999999995 12 2242.14105735561998 22.0161665117351006 101.840670000000003 16.9747309999999985 14 4829.22491794058988 15.0391184217433 321.110900000000015 15.5522259999999992 1.26902950000000003 0 1.42250539999999992 0.651445399999999952 0.771059999999999968 \N \N 0 \N \N \N NOT_AVAILABLE 152.325949552390995 -62.3157020728800006 23.2316859553857995 -12.3847694623622999 100001 4784.33008 4436.74023 4987 \N \N \N \N \N \N 200111 0.711899639999999945 0.655213599999999952 0.827815650000000014 0.239231300000000008 0.192672910000000003 0.28578969999999998 +1635721458409799680 Gaia DR2 2505442204022601216 2505442204022601216 17454812 2015.5 26.0302862991631017 0.0932333840041581069 -2.48597768991040979 0.0668876771532512931 0.438799791339696987 0.117556410061192995 3.73267440000000006 3.54084364693202991 0.154468968408319002 -13.4458361778671005 0.126126705881948992 0.0265959839999999996 0.603848999999999969 -0.0108533190000000002 0.117308899999999994 -0.246972599999999987 -0.0193020399999999995 -0.0644387000000000015 0.0877534999999999982 0.19642134 0.268810659999999979 156 0 155 1 1.30820660000000011 173.084 0 0 31 false 3.14272600000000013 1.57759972277355009 0.0212676174522937987 0.0595916469999999976 18 10 0.146664299999999997 0 18 false 152 3008.99918444016021 3.00610395578714984 1000.96002 16.9923110000000008 16 1616.7709796644499 12.0370766233337996 134.315920000000006 17.3297670000000004 17 2115.3834807773701 16.9424205681224009 124.857215999999994 16.4484460000000006 1.24033079999999996 0 0.881320949999999992 0.337455749999999999 0.543865200000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.273089784532004 -62.3180155875691 23.2129148022439011 -12.3682690871308001 100001 5541.33008 5408.00977 6196.56006 0.0209999997 0.00860000029 0.126499996 0.00999999978 0.00389999989 0.0694999993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441997864170752 2505441997864170752 1156977933 2015.5 26.0351736240267009 2.77993035087511009 -2.48619194373668018 3.24414922331870015 \N \N \N \N \N \N \N 0.215614260000000002 \N \N \N \N \N \N \N \N \N 57 0 57 0 25.9381619999999984 1013.71997 11.8691377564770004 93.2625310996840966 3 false 0.00660144000000000009 \N \N 0.0999037599999999942 8 6 5.83522219999999958 0 9 true 71 257.450281482597006 3.95169802923564983 65.1492996 19.6616329999999984 7 282.982417728019982 9.77644565371405072 28.9453279999999999 19.2219890000000007 7 690.526683004657002 16.4311151919219007 42.0255500000000026 17.6639690000000016 3.78134799999999993 0 1.55801959999999995 -0.439643859999999997 1.99766350000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.282746624162002 -62.3160766521966991 23.2174866300627016 -12.3702551381412995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442199727049216 2505442199727049216 1526930896 2015.5 26.0301050749860998 0.418408807519806025 -2.4790383518806598 0.290789933048222982 3.91069654158685998 0.550650223321539012 7.10196100000000019 28.7559590356870984 0.663573431364350985 43.4068969117108026 0.485538895818594995 -0.0191185419999999988 0.626466929999999977 0.0225572269999999991 0.202494549999999995 -0.316330940000000005 0.0464902969999999999 0.100034765999999997 0.104810609999999998 0.22797096 0.244891479999999995 157 0 154 3 4.32669929999999958 235.959 1.37987809106268 4.69873706280664027 31 false 0.160425889999999988 1.35586844116944993 0.0885282463940998965 0.0670277900000000038 18 10 0.610473750000000037 0 18 false 152 399.192243315550002 1.45519252089875994 274.322998 19.185410000000001 15 84.4668868199138956 9.69595795376483949 8.71155599999999986 20.5346720000000005 13 547.751089361916002 10.6928608040509996 51.2258700000000005 17.9154620000000016 1.58374309999999996 0 2.61920930000000007 1.34926220000000008 1.26994699999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.266220217837002 -62.3118511424097008 23.2153418158614002 -12.3617447554152999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442204022600576 2505442204022600576 29436308 2015.5 26.0337831627342986 5.24322326524511961 -2.4800551544262599 3.43459468533691981 \N \N \N \N \N \N \N 0.143292000000000003 \N \N \N \N \N \N \N \N \N 64 0 63 1 51.5008300000000006 4248.1499 16.1310040307828011 263.353368681626989 3 false 0.00359368000000000014 \N \N 0.0160580040000000007 9 6 7.11244440000000022 0 9 true 77 319.644727343692978 5.78073949072305027 55.2947998 19.4266970000000008 8 391.911843351981986 10.8773152385582996 36.0302000000000007 18.8684179999999984 8 940.972192558877964 23.5248943113747018 39.9989970000000028 17.3279780000000017 4.16989229999999989 0 1.54043960000000002 -0.558279039999999949 2.09871860000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.274290450405005 -62.3111620968755986 23.2184619245442008 -12.3640356229083999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442581979722240 2505442581979722240 1048784637 2015.5 26.047184955248099 2.83323293692368994 -2.47126452612653003 1.95585490553862007 \N \N \N \N \N \N \N -0.0920259999999999967 \N \N \N \N \N \N \N \N \N 88 0 88 0 85.1025159999999943 13075.4004 13.3340020376100004 503.997525583890024 3 false 0.00539263759999999981 \N \N -0.0288089530000000017 18 10 4.72627739999999985 0 18 false 155 437.538670926986015 5.65224724257107969 77.4096985 19.0858249999999998 18 592.662280007068944 11.6779899231532998 50.7503659999999996 18.4193700000000007 18 1391.37277177713008 15.8680722720845004 87.6837900000000019 16.9033100000000012 4.53453640000000036 0 1.5160598999999999 -0.666454300000000055 2.18251419999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.291948560494006 -62.2974073813674991 23.234511273822001 -12.3607533884594005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505438901194704000 2505438901194704000 936377209 2015.5 26.0723064967504996 0.849710687340463955 -2.51105121403434994 0.705358959735964963 0.198625080899538009 1.18705621622947999 0.16732575999999999 -8.30608115910166056 1.51265311616829989 0.770990260751105994 1.32160909950373995 -0.0429753469999999971 0.53725814999999999 0.151357409999999998 0.136381479999999999 -0.471620079999999997 0.0692806839999999952 -0.0695689800000000025 -0.0548719579999999985 0.121023329999999998 0.41185670000000002 113 0 110 3 0.555674699999999966 112.559998 0 0 31 false 0.0458341430000000008 1.31762619504058009 0.232894750472958989 0.0652131440000000007 13 10 1.4988923999999999 0 13 false 110 131.490000288439006 1.19738005548202997 109.815002 20.391134000000001 9 52.5538994187446988 15.5492307310233997 3.37983920000000015 21.0498750000000001 10 211.812155701159014 7.99460049670360995 26.4944020000000009 18.9470419999999997 2.01054120000000003 0 2.10283279999999984 0.658741000000000021 1.44409180000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.377965016340994 -62.3222105597205029 23.2435228619885983 -12.4069638462816005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520746089052416 2505520746089052416 1076011288 2015.5 25.9147266685261997 7.88761463437001975 -2.19139303945175978 5.1444164845951903 \N \N \N \N \N \N \N 0.804690240000000001 \N \N \N \N \N \N \N \N \N 38 0 38 0 0.276747520000000025 34.6069984 1.96862550287203009 0.197813640168406996 3 false 0.0122107220000000002 \N \N 0.040453237000000003 5 5 78.9299699999999973 0 5 false 41 71.1743040535252049 1.84550259868060995 38.5663986 21.0575580000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.776216218826988 -62.1024972603439025 23.2132477928083993 -12.0518646427556 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439283444464128 2505439283444464128 1466977091 2015.5 26.0799730841086017 1.02082997010085008 -2.50681625208593983 0.914480289317341044 0.307987257400101022 1.39369471630612995 0.22098617000000001 5.86750756320515965 1.63244742523565001 -4.64095166020331984 2.20628866191299 0.159989330000000013 0.72467493999999999 -0.0843793000000000043 -0.098563189999999995 -0.242543299999999989 -0.357052599999999998 -0.553257939999999948 0.0690012400000000053 0.109523850000000006 0.670224900000000012 113 0 111 2 2.01282290000000019 137.296997 1.07643754215353993 0.414584503012335015 31 false 0.0448351650000000032 1.28411482883576999 0.247828712394677991 0.21820023999999999 13 8 2.28421239999999992 0 13 false 112 137.816475210016989 1.31173859834719009 105.064003 20.3401129999999988 10 63.335184895791997 10.6410650531945006 5.95195900000000044 20.8472749999999998 11 168.559675179946993 6.8952411595835299 24.4457990000000009 19.1950360000000018 1.68263530000000006 0 1.6522387999999999 0.507162099999999949 1.14507680000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.388793536826995 -62.3150486069693983 23.2524079326617006 -12.4058244262814998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439279149281152 2505439279149281152 683595071 2015.5 26.0812408213162001 0.764737907055810018 -2.50572324749981012 0.526571460417823989 0.00819438016808607048 1.03446686550298006 0.00792135599999999919 -1.65918285266480003 1.16958183094902002 -3.94161711053394992 0.917709460589634984 0.0160782039999999987 0.663410370000000027 -0.0920403000000000054 0.175376520000000008 -0.315514679999999992 0.123064499999999993 0.0661895099999999931 0.0658381100000000052 0.130511459999999996 0.35865414000000001 121 0 121 0 1.00142240000000005 131.205994 0.602702986452288036 0.227391243283767003 31 false 0.0700615799999999983 1.80706360195782989 0.192329850524917995 0.136227640000000011 14 9 1.10450050000000011 0 14 false 121 186.50846265316801 1.49383763777078005 124.851997 20.0116200000000006 10 117.01031885175 12.9194212368988008 9.05693149999999925 20.1808280000000018 10 138.167166079351006 16.1935565179679983 8.53223099999999945 19.4109079999999992 1.36818179999999989 0 0.769920350000000031 0.169208529999999996 0.600711800000000018 \N \N 0 \N \N \N NOT_AVAILABLE 152.39021334380999 -62.313511214556101 23.2540242474266989 -12.4052704943461993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439313509019776 2505439313509019776 933209101 2015.5 26.0887055072243008 0.407962415072969986 -2.50412072239350003 0.325942854166827001 0.728694319343407004 0.572946365287792969 1.27183690000000005 -4.63868306507611994 0.655337873449187036 -5.93202956531651004 0.523231037417033029 -0.0589676699999999998 0.617540700000000053 0.00927838299999999942 0.184779470000000001 -0.457488720000000015 0.171514620000000007 0.196396769999999998 0.00847909900000000036 0.0809140299999999979 0.355793570000000003 148 0 146 2 0.891210300000000011 155.787994 0 1.69248816682571991e-15 31 false 0.175022070000000002 1.5289821193575599 0.0902570542130164966 0.094507960000000002 17 10 0.624034170000000055 0 17 false 145 325.844025486427995 1.44692784185167 225.197006 19.4058419999999998 15 106.168992584235994 8.47001914588335048 12.5346810000000009 20.2863940000000014 14 354.188093201611991 6.85191363035421031 51.6918500000000023 18.3888360000000013 1.41281429999999997 0 1.89755819999999997 0.880552299999999954 1.01700590000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.403128403592007 -62.3088028865157995 23.2617310980731986 -12.4065070233579 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439386524075904 2505439386524075904 199278993 2015.5 26.0756658785515008 0.125289279095995992 -2.49129111069522002 0.127705352000587996 0.55698023676446895 0.188512788071695997 2.95460179999999983 6.70980304724427956 0.247664390179289012 -0.520230291459576999 0.219167711644023988 0.044001270000000002 0.467656139999999998 0.0159081369999999993 0.135314319999999988 -0.5484483 0.380483479999999985 0.431879940000000018 -0.228731829999999997 -0.223406080000000007 0.516246259999999957 141 0 141 0 0.209893469999999999 138.813995 0 0 31 false 1.68106690000000003 1.51434290272437999 0.0324974043993871003 0.137178329999999987 16 9 0.267928329999999992 0 17 false 141 1766.55731791472999 2.4719030311612098 714.655029 17.5705470000000012 13 761.234306622783038 7.89431101766975996 96.4282149999999945 18.1475930000000005 13 1502.59741211458004 12.5621712756299004 119.612880000000004 16.8198129999999999 1.28149350000000006 0 1.32777980000000007 0.577045440000000021 0.750734299999999966 \N \N 0 \N \N \N NOT_AVAILABLE 152.365838114462008 -62.3029758146975965 23.2541223565138999 -12.3898012243611007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439111645649664 2505439111645649664 1391803047 2015.5 26.1079424952040995 13.7155949447882008 -2.50820466689012012 7.97671820821291 \N \N \N \N \N \N \N -0.66672739999999997 \N \N \N \N \N \N \N \N \N 72 0 70 2 26.7271980000000013 1089.67004 15.635094589006 208.502236974742999 3 false 0.00377590770000000003 \N \N 0.0370650439999999984 9 5 34.9978520000000017 0 10 true 77 217.502767942312005 3.55958729806815999 61.1034012 19.8447040000000001 8 238.095920974091996 24.5871099091109002 9.68377000000000088 19.4095079999999989 7 519.183966437460981 13.9052492502939007 37.3372650000000021 17.9736179999999983 3.48170229999999981 0 1.43589020000000001 -0.435195920000000014 1.87108610000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.444146458057986 -62.3040446608334975 23.2785164857753983 -12.4173375318015005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439416588238848 2505439416588238848 1174940639 2015.5 26.0986555110540017 0.415257402258866981 -2.48831950039997984 0.361501362222642009 0.825902755020355039 0.555662525117121997 1.4863386999999999 24.8536808350478005 0.788997683969258956 -15.2268672571848995 0.610632857992063016 0.0745639059999999992 0.438509970000000027 0.00385261500000000021 0.166823179999999988 -0.390096720000000008 0.155474830000000008 0.185407529999999987 -0.00262558439999999995 0.0801000399999999974 0.319943729999999982 158 0 157 1 1.75778710000000005 183.996002 0.842280229259131041 0.845586320944605951 31 false 0.118282109999999996 1.55763464976839994 0.106664699912072003 0.118152394999999993 18 10 0.736137750000000035 0 18 false 154 270.158424998237024 1.19429787027805001 226.207001 19.6093200000000003 14 56.4037352173397011 8.61778992497239926 6.54503500000000038 20.9731179999999995 16 368.815072579668026 9.19640815877485984 40.1042500000000004 18.3448980000000006 1.57396090000000011 0 2.62821959999999999 1.3637980999999999 1.26442150000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.407450328419998 -62.2902433300759029 23.2771214978644991 -12.3954366669806006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439416590840064 2505439416590840064 336782491 2015.5 26.1079830440002993 2.68411612246001985 -2.48556765611738006 2.60731763330459998 \N \N \N \N \N \N \N -0.623313369999999978 \N \N \N \N \N \N \N \N \N 62 0 62 0 -1.84876590000000007 38.9322014 0 0 3 false 0.0175724140000000015 \N \N -0.0296443030000000003 7 5 9.14574050000000049 0 7 false 61 76.4068498751208978 1.11155898830121003 68.7385025 20.9805360000000007 3 34.4845240021162027 15.3801648571191993 2.24214270000000004 21.5073280000000011 6 96.2104935394226004 16.4577589369762016 5.84590500000000013 19.8038640000000008 1.7105144000000001 1 1.70346449999999994 0.526792499999999997 1.17667199999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.422865708885013 -62.2836843900467017 23.2870321220419001 -12.3962836185977991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439382231053696 2505439382231053696 19347429 2015.5 26.0791691233098994 1.86071415895928993 -2.48357267316229979 1.56380477573795007 \N \N \N \N \N \N \N -0.095632700000000001 \N \N \N \N \N \N \N \N \N 70 0 70 0 1.08513140000000008 77.4225006 2.92169595666445003 0.808057558414358001 3 false 0.0146059780000000004 \N \N 0.0248401669999999998 8 7 6.12213229999999964 0 8 false 71 80.2220458436620021 1.33274978584785009 60.1929016 20.9276310000000016 5 33.8630152318905004 15.7253818136811994 2.15339850000000022 21.527075 6 98.8763190220082038 7.04548921442589027 14.033989 19.7741889999999998 1.65464900000000004 0 1.75288580000000005 0.59944344000000005 1.15344240000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.365338796701991 -62.2945040965499999 23.2603480532145994 -12.3838979967419007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442474604959488 2505442474604959488 193700834 2015.5 26.092253468955299 1.4610062390038201 -2.46593660093940015 2.17381976753893991 \N \N \N \N \N \N \N 0.167914540000000001 \N \N \N \N \N \N \N \N \N 85 0 84 1 0.560527740000000052 85.5522995 1.51473005950971995 0.558255001702146036 3 false 0.0218452049999999995 \N \N 0.258450179999999974 10 7 5.78950739999999975 0 10 false 85 89.4644476094943002 1.78315852390171004 50.1719017 20.8092399999999991 10 117.332465723664001 25.586597839840401 4.58570000000000011 20.1778429999999993 10 84.1035421614720065 12.2556375290111994 6.86243719999999957 19.9498840000000008 2.25157600000000002 0 0.227958679999999997 -0.631397250000000021 0.85935589999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.374006527232012 -62.2729249279250965 23.2794080562923007 -12.3722652214797009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439450947978880 2505439450947978880 1558875801 2015.5 26.1124992292185993 0.250889683193233015 -2.48284812113324005 0.214437174806037995 0.991737452075947989 0.316489896631789003 3.1335516000000001 37.084346867167902 0.489510978648467987 -25.0941748667505991 0.35934223132922799 0.212675470000000005 0.380028900000000003 0.132253719999999991 0.210486780000000012 -0.275590999999999975 0.210360660000000005 0.231748910000000002 -0.0722668300000000041 0.101035420000000001 0.324701279999999981 141 0 140 1 1.70718419999999993 164.279007 0.354166847867407986 0.374464382908620996 31 false 0.36681697000000002 1.38201827048472992 0.0632682937817645036 0.123135380000000003 16 10 0.45854594999999998 0 16 false 139 580.962345100213952 1.66625197105614009 348.664001 18.7779960000000017 16 203.839886329729012 8.64540838974384052 23.5778199999999991 19.5781649999999985 14 588.803606831647016 9.40437692750153964 62.6095279999999974 17.8369940000000007 1.36436299999999999 0 1.74117089999999997 0.800169000000000019 0.941001899999999947 \N \N 0 \N \N \N NOT_AVAILABLE 152.429019064866992 -62.2792615103952016 23.2923500479406016 -12.3954025243270998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442680767058432 2505442680767058432 614548545 2015.5 26.0355225809151989 1.89566567492507998 -2.4593632381229602 2.01815083694063979 \N \N \N \N \N \N \N 0.446725670000000019 \N \N \N \N \N \N \N \N \N 74 0 73 1 1.42878459999999996 85.2826996 2.53355918526446011 0.864391254842397982 3 false 0.0165231020000000013 \N \N 0.344692739999999997 9 7 5.87797639999999966 0 9 false 73 82.3156794691319931 1.99094693759321006 41.3450012 20.8996600000000008 6 47.5736763014061026 13.3793988417401994 3.55574080000000015 21.1579720000000009 7 69.1891829094438009 11.5448109743837009 5.99309799999999981 20.1618250000000003 1.41847659999999998 0 0.996147160000000031 0.258312229999999976 0.73783493 \N \N 0 \N \N \N NOT_AVAILABLE 152.258226824728013 -62.2917862352399965 23.2278679654017992 -12.3454143418277003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442753778434816 2505442753778434816 1098946457 2015.5 26.0687307302812989 0.506552983303983018 -2.4513998410738802 0.400108937014463983 0.766139770023674949 0.659049945123046044 1.16249120000000006 -5.73472404531055968 0.914966548925433054 -6.63206616191101972 0.686911219480950019 0.0838143749999999965 0.495491000000000015 0.00266750799999999986 0.17492764999999999 -0.30309839999999999 0.109342540000000002 0.111620479999999994 0.0410144100000000011 0.157062630000000009 0.287915399999999988 161 0 159 2 2.45768329999999979 200.488007 1.15069492496504999 1.21056120586205007 31 false 0.0846916959999999969 1.20854903766162991 0.122528983893905 0.0933150400000000019 19 10 0.840701600000000049 0 19 false 159 232.560616457485992 1.48777358549857008 156.315002 19.7720260000000003 11 65.2976168287001997 5.96187429248888012 10.9525319999999997 20.8141439999999989 14 277.94132678515399 9.30291928361996945 29.8767850000000017 18.652037 1.47591169999999994 0 2.16210749999999985 1.04211809999999994 1.11998939999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.314919018728006 -62.2701340414727014 23.2624592712069997 -12.3501400876725995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505442783846301568 2505442783846301568 1623337764 2015.5 26.0549865038824997 0.39223462074183002 -2.44643540844724994 0.291545967346940993 0.927496919598546965 0.509428933609439971 1.8206601 11.8192865606467006 0.680100849172387001 -11.5402763528699008 0.474260880563200982 0.0632735600000000065 0.531709430000000038 0.0249972250000000014 0.20791519 -0.280025929999999978 0.117896819999999999 0.196882599999999991 0.0499941780000000002 0.187263550000000001 0.234571809999999992 174 0 172 2 1.65659270000000003 198.393005 0.872991155996247992 1.16819090309820006 31 false 0.143447980000000003 1.30672846187661995 0.0912154874570025032 0.0808412059999999988 20 10 0.614865659999999981 0 20 false 172 325.128682572854984 1.22739228815754009 264.894012 19.4082280000000011 17 96.5229223204249962 18.3351225942296985 5.26437299999999997 20.3898119999999992 15 407.553919552833975 7.83428550001610002 52.0218350000000029 18.2364579999999989 1.5503918000000001 0 2.15335460000000012 0.98158455 1.17177010000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.283711034685012 -62.2716671449813006 23.2512356438389993 -12.3404968022272996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466285907366656 2505466285907366656 1177837517 2015.5 26.0673786986845002 4.52615095476121976 -2.43033761313395003 9.22836230849653028 \N \N \N \N \N \N \N -0.585911999999999988 \N \N \N \N \N \N \N \N \N 43 0 43 0 0.970910399999999951 46.3429985 3.81386948957303984 0.941385385039164024 3 false 0.0128555900000000001 \N \N 0.359909860000000026 5 4 1302.01219999999989 0 5 false 44 73.6843206727382949 1.65403938926356009 44.5480995 21.0199280000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.292537392476987 -62.2517786759298986 23.269058304864501 -12.3300432262836992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505465946601833344 2505465946601833344 741750539 2015.5 26.101804750529201 0.333876131181502001 -2.45597368762344992 0.279382731243910998 0.522587405771711033 0.430336624818812019 1.21436889999999997 -0.535599461973999991 0.670620129950312949 0.464805041293969989 0.497814757621095005 0.0751940160000000024 0.339596500000000023 0.00398157440000000001 0.158282060000000002 -0.377628059999999988 0.16912162 0.0809756400000000015 -0.0470058770000000015 0.0752379299999999945 0.311316130000000024 141 0 141 0 0.532686529999999991 144.281006 0 0 31 false 0.194595020000000007 1.65822238401707001 0.0885710377661538956 0.0625084199999999951 16 10 0.618952449999999987 0 16 false 140 362.272135620679023 2.11918341093105989 170.949005 19.2907800000000016 12 216.023812607351005 15.0866004777524996 14.3189189999999993 19.5151350000000008 12 227.670788950676013 6.85910014691064962 33.1925159999999977 18.8686520000000009 1.22475489999999998 0 0.646482470000000031 0.224355699999999991 0.422126769999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.383065425458 -62.2597892289219033 23.2922307203781003 -12.3664822694197003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505465976666007552 2505465976666007552 667223225 2015.5 26.1118967175865002 0.640393924846112017 -2.44748944213709985 0.543573809015862053 -0.277209616284667004 0.851864691919517969 -0.325415069999999973 5.76384898221971032 1.22280163032090994 -2.41822598695363 0.896649470591240005 0.0634130400000000038 0.418400300000000003 0.0163888020000000009 0.178135230000000006 -0.39601132 0.173174109999999992 0.198757479999999986 -0.0181292559999999998 0.084299869999999999 0.296999400000000024 158 0 158 0 2.94788670000000019 209.753006 1.51088158792310989 1.15916762413417995 31 false 0.0499990169999999998 1.33192103980376997 0.15442987057669999 0.126299620000000001 18 10 1.1248317000000001 0 18 false 158 164.770742998606011 1.21059287318722997 136.106995 20.1461660000000009 17 50.7540508573479983 9.0802122877432403 5.58952239999999989 21.0877109999999988 16 194.72979166799999 5.19247137868626041 37.5023350000000022 19.0383400000000016 1.48985089999999998 0 2.04937170000000002 0.941545500000000035 1.10782620000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.394550813995011 -62.2477454579803009 23.3050141273913987 -12.3622726273730006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466290199216000 2505466290199216000 669511992 2015.5 26.0744304733359016 0.059754318195965897 -2.42682073118559982 0.0560268137711023989 0.665411434867302032 0.0789941621676008982 8.42355200000000082 6.06176083580762981 0.123096621088373007 -10.3748532415729002 0.112166696809659003 0.187193649999999989 0.355005320000000013 -0.0821638850000000059 -0.00527078699999999987 -0.310569580000000012 -0.178801060000000012 -0.326896819999999977 0.167532320000000012 0.316685080000000008 0.37578963999999998 159 0 158 1 -1.0423095 134.867996 0 0 31 false 5.73153450000000042 1.57124121926736993 0.0156818911316825987 0.126620740000000009 18 9 0.129638520000000007 0 18 false 156 5207.76490894163999 3.79847588378432999 1371.01001 16.3967379999999991 16 2709.46272496919983 23.2506715730331983 116.532660000000007 16.7691799999999986 15 3661.88008109359998 13.6317207441163006 268.629329999999982 15.8526589999999992 1.22343130000000011 0 0.916521099999999977 0.372442249999999975 0.544078799999999974 \N \N 0 \N \N \N NOT_AVAILABLE 152.302848944048009 -62.245537438545 23.2770870637898994 -12.3293467974067994 100001 5425.6001 5356.8999 5506.8999 0.0187999997 0.00200000009 0.129999995 0.00970000029 0.00240000011 0.0697999969 200111 0.783131200000000027 0.76017939999999995 0.803346000000000005 0.478799939999999979 0.360017900000000002 0.597581999999999947 +1635721458409799680 Gaia DR2 2505466221479739392 2505466221479739392 829211798 2015.5 26.0842674465264004 0.210194047698892994 -2.43573904079332992 0.227774324881403006 0.366119396898802019 0.289265029889968994 1.26568839999999994 -2.88461574238601015 0.458312473568267986 -2.5735706956289599 0.381280440780038976 0.261205100000000023 0.258687529999999999 0.126250370000000001 0.257101150000000001 -0.466697069999999992 0.411824320000000021 0.486766160000000003 -0.231906560000000012 -0.194276840000000006 0.494764119999999974 148 0 147 1 1.55501620000000007 169.100998 0.604786237563536 1.73772176009109991 31 false 0.471906400000000004 1.5093274367267 0.0562260443718540989 0.172738969999999992 17 9 0.480832550000000025 0 17 false 148 787.165479372756977 2.15960133618014005 364.496002 18.4481999999999999 15 288.861759234294993 10.2020947541394005 28.3139649999999996 19.199663000000001 16 762.049592330478959 7.01444021833929998 108.640113999999997 17.5569610000000011 1.3350576999999999 0 1.64270209999999994 0.751462940000000024 0.891239169999999969 \N \N 0 \N \N \N NOT_AVAILABLE 152.330203252656986 -62.2492630431582015 23.2831118117677995 -12.3412416340873996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466217184179840 2505466217184179840 218072833 2015.5 26.0910175627032004 0.28262271852408799 -2.43516153882297992 0.241402154115751999 1.93767013598141991 0.368827461870306017 5.25359499999999979 28.1027820168750999 0.540867023954036963 -35.8594878754554998 0.424801192118500981 0.121683830000000007 0.432175069999999995 0.0181963329999999986 0.157450740000000006 -0.321548879999999981 0.145532849999999991 0.145341109999999996 -0.0152191359999999994 0.0892080999999999985 0.322534859999999979 155 0 155 0 1.25255270000000007 172.026001 0.266063195758435012 0.154512673310792992 31 false 0.254883619999999977 1.35895117241686991 0.0713679551862486938 0.137954319999999991 18 10 0.506489039999999946 0 18 false 152 444.005432785897995 1.62367141730132003 273.458008 19.0698949999999989 12 142.223943155444999 20.9022236532779999 6.80424930000000039 19.9689559999999986 12 459.790333875327008 11.6154795876670995 39.5842740000000006 18.1055199999999985 1.35587140000000006 0 1.86343569999999992 0.899061200000000005 0.964374540000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.342685193262014 -62.2457941730895996 23.2897533718318002 -12.3431704525964996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466320267118592 2505466320267118592 343627707 2015.5 26.0773791042178011 3.59215268014092981 -2.41825679430476992 6.1628247325707104 \N \N \N \N \N \N \N -0.514477300000000026 \N \N \N \N \N \N \N \N \N 56 0 51 5 -0.766336099999999965 38.4396019 1.75654971915939995 0.295321172822906985 3 false 0.017811190000000001 \N \N 0.231719239999999993 7 6 21.9573229999999988 0 8 false 55 78.2342185796795064 1.71204280431870992 45.6963997 20.9548740000000002 6 67.1429720862984993 9.49271112951077001 7.07310800000000039 20.783885999999999 7 83.0316739694550989 17.7259529636457991 4.68418699999999966 19.9638099999999987 1.91955199999999992 0 0.820076000000000027 -0.170988079999999987 0.991064100000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.300505582275008 -62.2365469607371011 23.2830995589565006 -12.3224535269076991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466148464706048 2505466148464706048 1072177854 2015.5 26.1136076495516001 0.768912858022605006 -2.4253800696388601 0.95490342568053399 0.895272076572898978 1.19682016155050008 0.748042300000000049 5.28146725300431985 2.58174510181039008 -3.5930627054481401 3.43281635756684 0.175419500000000006 0.25665882000000001 0.0459597799999999987 0.04671902 -0.499600619999999995 -0.0605475570000000018 -0.218848060000000011 -0.260969430000000002 -0.184038620000000014 0.830107400000000051 122 0 121 1 0.348224550000000022 120.698997 0 0 31 false 0.0359402080000000013 2.03976603570438009 0.257358877149193976 0.247173850000000001 14 8 3.62120499999999979 0 14 false 120 120.575996540231003 1.2560019180803299 95.9998016 20.4852139999999991 9 88.8871004494934027 10.9331667760333993 8.1300410000000003 20.4792920000000009 10 100.509447120209998 12.9234579504610991 7.77728749999999991 19.7564029999999988 1.57076489999999991 0 0.722888949999999975 -0.0059223174999999996 0.728811259999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.377059189090005 -62.2271211874103969 23.3149184987125011 -12.3423192081206992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466255839477376 2505466255839477376 177584659 2015.5 26.0955956293418012 0.242958210272824993 -2.4214746920596899 0.20981292558040901 0.761386135317796975 0.308661240879606003 2.46673700000000018 8.60698070054183084 0.494235716008037007 -13.5679969426119005 0.372424420929235001 0.0957180299999999956 0.374047640000000015 0.0236764159999999987 0.111929909999999994 -0.286702930000000022 0.076973219999999995 0.219949929999999988 -0.0177899200000000007 0.103543683999999997 0.193754050000000011 147 0 147 0 0.844802260000000027 156.007004 0.496470326032229015 0.743894980360339964 31 false 0.337339639999999996 1.61238816239419003 0.0621006137548544002 0.115696214000000006 17 10 0.444910399999999984 0 17 false 146 577.840147437680002 1.73439944481884001 333.164001 18.7838460000000005 12 246.060438691721998 9.05774524653017998 27.1657490000000017 19.3737829999999995 13 498.530551318594974 10.4896630779249005 47.5258869999999973 18.0176900000000018 1.2885761 0 1.35609249999999992 0.58993720000000005 0.766155240000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.338662834838999 -62.2314854148041974 23.2992345111617993 -12.3321041554877002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466423342616320 2505466423342616320 733452047 2015.5 26.0948284032476998 0.213560609697666992 -2.41158258187673002 0.176296317605876995 -0.136825701072644995 0.271435155233065994 -0.50408244000000002 0.814224315901234008 0.412677446313000018 0.157998692611949987 0.318408009639945977 0.126295269999999987 0.418064500000000006 -0.0257446840000000003 0.150063930000000012 -0.291221439999999998 0.122865000000000002 0.0647914559999999973 0.0161496599999999997 0.115430099999999994 0.321131859999999991 156 0 155 1 1.71735220000000011 180.998001 0 0 31 true 0.451950520000000022 1.66995563480899989 0.0559262982146652016 0.11807869 18 10 0.384603320000000026 3 18 false 151 669.800079194527029 3.96658405897629018 168.860992 18.6235029999999995 16 432.520463312998004 19.012520033568201 22.7492449999999984 18.7613720000000015 15 420.071514170118007 7.44709530308614998 56.4074329999999975 18.2036109999999987 1.27290510000000001 0 0.557760240000000018 0.137868879999999999 0.419891359999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.327899745321986 -62.2229245268759001 23.3022067293209005 -12.3226167945155005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505439214725383936 2505439214725383936 210583997 2015.5 26.1161734490262987 0.119916324286852005 -2.49340816147764022 0.103273391867377995 7.67026117114591965 0.151239818899112005 50.7158850000000001 5.82720752655299989 0.239880977834883991 -27.3213226951755992 0.189157416724294009 0.143812180000000012 0.39755878 -0.025873844 0.139785469999999995 -0.288354200000000005 0.14810493999999999 0.173146440000000013 -0.0187036769999999984 0.0505549799999999994 0.313845839999999987 159 0 157 2 3.5969253000000001 222.873993 0.430108632977587002 2.86715326825589001 31 false 1.40564620000000007 1.14794444318399003 0.0322716037656956972 0.117319729999999997 18 10 0.226520260000000001 0 18 false 156 1967.14671308308994 3.53227344149481004 556.906982 17.4537730000000018 16 290.015488797884984 9.65132101840653078 30.0493050000000004 19.195335 15 2752.80223158918989 11.0770849332129 248.513229999999993 16.1624830000000017 1.54681789999999997 1 3.03285220000000022 1.7415619 1.2912903 \N \N 0 \N \N \N NOT_AVAILABLE 152.446072782777009 -62.2871403966976018 23.2918940561998014 -12.4065734939246006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462746854424704 2505462746854424704 1279994688 2015.5 26.1508303271464015 2.07338919439279978 -2.47543103645810003 2.54903775778588004 \N \N \N \N \N \N \N -0.0129360489999999998 \N \N \N \N \N \N \N \N \N 50 0 50 0 0.586271459999999967 50.0747986 0 0 3 false 0.0187318679999999987 \N \N 0.170188669999999986 6 6 15.1022230000000004 0 6 false 51 75.9826034335023053 1.3608824391749299 55.8333015 20.98658 5 84.3342351432963966 18.1595583809613004 4.64406870000000005 20.5363790000000002 5 57.106981365528803 9.99909311241411025 5.71121600000000029 20.370197000000001 1.86149480000000001 0 0.166181560000000006 -0.450201030000000002 0.616382600000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.495958159204008 -62.2557831411539979 23.3316214630394008 -12.4025015434764008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505461926512445056 2505461926512445056 219857923 2015.5 26.1626127507877015 0.0852930107585917058 -2.49254754126471978 0.0910869879341397043 1.49665532781254007 0.114093328217116999 13.1178159999999995 13.0161362999094994 0.194725963666503993 -1.78307801999448001 0.173029181380210006 0.284322299999999972 0.238122639999999997 0.0923564600000000013 0.224436009999999991 -0.428541600000000023 0.380961400000000006 0.411859099999999978 -0.228933949999999997 -0.210181900000000005 0.530859949999999969 148 0 146 2 1.49339770000000005 166.848007 0.276172786760747024 1.97365814678750007 31 true 2.96842650000000008 1.40362938415288996 0.0249083911235799989 0.174168199999999995 17 9 0.211870399999999987 0 17 false 144 3545.68115109128985 4.39459605071493975 806.828003 16.8141169999999995 15 1094.94230702724008 13.3094248628403005 82.2681900000000041 17.75291 14 3714.18074279968005 17.9199195008642995 207.26549 15.8372620000000008 1.35633270000000006 0 1.91564850000000009 0.938793199999999994 0.976855299999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.534844599564991 -62.2659785120037981 23.3364328676645982 -12.4227366481150003 100001 3873 3769.5 4180.12012 \N \N \N \N \N \N 200111 0.748203500000000021 0.642299999999999982 0.789854759999999989 0.113481276000000006 0.0957861899999999933 0.131176349999999997 +1635721458409799680 Gaia DR2 2505461926512444928 2505461926512444928 1309629705 2015.5 26.1707067226194994 0.0344871082412204003 -2.48922822433685997 0.0274124998467910989 0.677799029112903018 0.042534867407237803 15.9351389999999995 0.00895577518757439961 0.0690916002812591995 -10.2840548821182001 0.0627869185461060048 0.0245809950000000013 0.463286460000000011 -0.180854650000000006 0.0119797180000000003 -0.324572680000000002 -0.0201443039999999983 -0.198238689999999995 0.0240435969999999999 0.0429542249999999987 0.393896939999999973 149 0 148 1 -2.47704740000000001 104.525002 0 0 31 true 32.796280000000003 1.59513692188187006 0.00962385023767069019 0.0274136269999999994 17 10 0.0775060360000000004 0 18 false 148 26364.7048645543 9.06292011253636964 2909.07007 14.6358080000000008 16 14580.4248925782995 17.508573740789501 832.759159999999952 14.9419629999999994 16 17316.8436611260004 31.1439952956806998 556.025150000000053 14.1657489999999999 1.20984730000000007 0 0.776214599999999977 0.306155200000000016 0.470059400000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.547306441915993 -62.2594388735209989 23.3453824650953017 -12.4226031973693001 100001 6056.0498 5391.52979 6850 0.431499988 0.257499993 0.734099984 0.231999993 0.1197 0.365999997 200111 1.35874070000000002 1.06202390000000002 1.7143181999999999 2.23730699999999993 1.92065240000000004 2.55396180000000017 +1635721458409799680 Gaia DR2 2505461750418776064 2505461750418776064 1514189517 2015.5 26.2034448987135988 0.40310622848057398 -2.49666717957726991 0.350605981650339016 1.56676417310537008 0.550345311514178981 2.84687469999999987 1.4194137085248999 0.839152145505146052 -36.0555697439725975 0.593701724845432044 0.0529272800000000002 0.304476650000000015 0.0745751500000000067 0.14354328999999999 -0.479851599999999989 0.197223449999999995 0.173544229999999994 -0.120143379999999994 0.0234572159999999995 0.310238330000000007 155 0 153 2 1.6731026 177.936996 0.853961592253893009 0.878636807893011018 31 false 0.124874239999999997 1.34451885534176996 0.105370849625145993 0.0601571759999999997 18 10 0.773475649999999959 0 18 false 156 287.50123484620201 1.69191839739119998 169.925995 19.5417670000000001 14 103.391311759500994 12.4187418425334002 8.32542600000000022 20.3151779999999995 14 304.637545834021978 10.2399624955454005 29.7498679999999993 18.5524619999999985 1.41922470000000001 0 1.7627162999999999 0.773410799999999954 0.989305499999999949 \N \N 0 \N \N \N NOT_AVAILABLE 152.617416226312002 -62.2517024041120024 23.3737730696566999 -12.4414825048986994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505462781213032064 2505462781213032064 1570617814 2015.5 26.1716708662981006 2.22876588997635006 -2.46610185736187004 1.91372465313493989 \N \N \N \N \N \N \N -0.327164300000000019 \N \N \N \N \N \N \N \N \N 57 0 57 0 2.05129859999999997 74.9955978 3.26214561579751017 1.55349076719532997 3 false 0.0166095939999999984 \N \N -0.0966868200000000066 7 7 4.89389319999999994 0 7 false 58 78.6098976255663047 1.97219665063432004 39.8591003 20.9496730000000007 5 56.5433724708308034 13.7035291666866996 4.12619070000000043 20.9704340000000009 7 116.874767324480004 19.9056091855267994 5.87144900000000014 19.5926189999999991 2.20605999999999991 0 1.37781519999999991 0.0207614900000000005 1.35705380000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.527306427388993 -62.2382485180216989 23.3549564445407007 -12.4014293862085001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505463026024071680 2505463026024071680 602038970 2015.5 26.1199401085212983 0.0332275702385686003 -2.45169981132610015 0.032039394585685603 1.27183661936784009 0.0408100880565641019 31.1647600000000011 8.59315251626913934 0.0717266250331805022 9.02203752384868984 0.079250887946472004 0.229232190000000002 0.399837580000000026 -0.0847128699999999957 -0.0453451500000000007 -0.193648740000000014 -0.0521666439999999981 -0.145799299999999993 -0.0404173140000000028 -0.00180866600000000001 0.458116140000000005 149 122 148 1 1.7766557999999999 174.436996 0 0 31 true 205.611970000000014 1.59897006005826992 0.0107901765972295994 0.110366160000000005 17 10 0.0619624999999999967 0 17 false 138 148233.276256115001 42.5758385341860972 3481.62988 12.7610019999999995 17 77893.8308237073943 100.019281123151998 778.788149999999973 13.1226299999999991 17 101298.237910156007 97.3317072709370024 1040.7527 12.2479150000000008 1.20885179999999992 0 0.874714850000000044 0.361628530000000004 0.513086299999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.41402568840499 -62.2480078842397972 23.3110952572999004 -12.369129809695 100001 5661.5 5509.72998 5846.12012 \N \N \N \N \N \N 200111 1.9852441999999999 1.8618345999999999 2.09612080000000001 3.6479474999999999 3.46732620000000002 3.82856899999999989 +1635721458409799680 Gaia DR2 2505463060383809920 2505463060383809920 1319440274 2015.5 26.1553073785213002 1.94778501976070006 -2.45456126202833991 1.62049203498137007 \N \N \N \N \N \N \N 0.108670643999999997 \N \N \N \N \N \N \N \N \N 131 0 128 3 84.0831199999999939 11756.2002 12.3219009586967001 310.957338334097983 3 false 0.00615094140000000018 \N \N 0.0975072460000000057 18 10 3.6648101999999998 0 18 false 148 337.476458339232011 3.75181650430842017 89.9501038 19.3677579999999985 13 572.095248368220041 33.7417090551926009 16.9551349999999985 18.4577179999999998 13 1031.19910889241009 9.09124755408011964 113.427679999999995 17.2285630000000012 4.75083300000000008 0 1.22915459999999999 -0.910039900000000013 2.13919449999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.484892054956987 -62.2350708817777019 23.3436955400397999 -12.3847114761887998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505463094743548160 2505463094743548160 1434934993 2015.5 26.1592989029947987 0.0369753011328878001 -2.4518914142324002 0.0333824224153380991 3.8232098328882298 0.0447252307185841969 85.4821699999999964 60.2716659600637996 0.0773761012618178062 -9.76232082437011961 0.0731673062980539024 0.178433330000000001 0.363547950000000009 -0.0816528400000000043 0.0649346040000000069 -0.196302069999999995 0.0651107100000000022 -0.100882810000000003 -0.019889256000000001 0.0137245809999999996 0.388557670000000022 148 0 147 1 -0.304797260000000014 136.274994 0 0 31 true 19.1578799999999987 1.37720121288046005 0.0110705202692730001 0.0997444400000000037 17 10 0.0869737299999999991 0 17 false 145 15365.9611120696009 7.32204069280069003 2098.59009 15.2219669999999994 16 4831.66059209428022 26.4850345131476992 182.429840000000013 16.1411480000000012 15 15746.0555784708995 47.7144296226284013 330.006160000000023 14.2689904999999992 1.33917529999999996 0 1.87215709999999991 0.919180870000000039 0.952976200000000051 \N \N 0 \N \N \N NOT_AVAILABLE 152.490063189589989 -62.2309202990835999 23.3484950478840005 -12.3836841441403003 100001 4031 3865 4688.18994 0.0225000009 0.0148999998 0.0522999987 0.0113000004 0.0074 0.0189999994 200111 0.534727040000000042 0.39531951999999998 0.581645999999999996 0.0680158659999999943 0.0662364139999999935 0.069795319999999994 +1635721458409799680 Gaia DR2 2505466118400523776 2505466118400523776 1384315248 2015.5 26.1378871386469989 0.0290025784309895993 -2.42194480356431008 0.0252044819964457011 2.18656458662078013 0.0342684088744095033 63.8070069999999987 -7.69116556859392997 0.0632717252107048989 6.59440056501088012 0.0578348566428327979 0.193099319999999991 0.352023719999999984 -0.197503970000000001 0.00959580900000000028 -0.203793059999999998 0.0090308690000000004 -0.14241899999999999 0.0313331400000000024 0.0142276030000000001 0.414219300000000012 149 0 147 2 -2.57529640000000004 102.334999 0 0 31 false 44.0594979999999978 1.5447786310346201 0.00887319493500195004 0.0881447399999999992 17 10 0.0746740199999999937 0 17 false 147 34991.8549210468991 12.3011581607141007 2844.6001 14.3284479999999999 17 16900.2627956780016 39.1439512786179975 431.746460000000013 14.7816539999999996 17 25984.0729520142013 54.0946496240985013 480.344600000000014 13.7251519999999996 1.22555199999999997 0 1.05650230000000001 0.453206060000000022 0.603296300000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.420613441967987 -62.2134036446747984 23.3393171112112014 -12.3479901267563008 100001 5097.81006 5054.70996 5200 0.152799994 0.0529999994 0.250999987 0.0821999982 0.0260000005 0.127100006 200111 0.717131799999999986 0.689222699999999966 0.729412599999999967 0.312915620000000005 0.301374580000000003 0.324456660000000008 +1635721458409799680 Gaia DR2 2505463541420146432 2505463541420146432 706397386 2015.5 26.1599637600205988 0.651718498133002977 -2.43020402637296007 0.551467920515812948 -1.4177677701598701 0.809343484457698992 -1.75175030000000009 3.3565628663283098 1.45481187652546007 -4.87731983823960036 1.09377704686043997 0.066916879999999998 0.233555499999999999 -0.22604573 0.0754849239999999949 -0.411032379999999975 0.0487771369999999982 -0.0426268539999999987 0.100506390000000001 0.0967477000000000059 0.325571270000000024 130 0 127 3 -1.67245139999999992 97.1221008 0 0 31 false 0.0560328959999999987 1.70882500988891994 0.195280547241762997 0.131404500000000007 15 10 1.35044610000000009 0 15 false 127 164.707938015064997 1.19906862624754007 137.363007 20.1465800000000002 14 97.6298005224123955 9.85289483005601063 9.90874299999999941 20.3774319999999989 12 134.875726783152999 8.27813368339838007 16.2930099999999989 19.4370860000000008 1.41162309999999991 0 0.94034576000000003 0.230852129999999989 0.709493640000000036 \N \N 0 \N \N \N NOT_AVAILABLE 152.470901188469014 -62.2111458959302013 23.3572438074637994 -12.3637402751867 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466492064735360 2505466492064735360 237278684 2015.5 26.1462906964201984 1.09128054538086006 -2.41791400136719981 1.17549824675318004 1.73557743728705005 1.54084879363996996 1.12637750000000003 2.38352050094140999 2.42910218319304994 -8.27345249480170963 3.03179304280683004 0.0363343169999999979 0.49659795000000001 0.0256997179999999999 0.0812450349999999932 -0.485396439999999985 -0.153306450000000011 -0.373886800000000019 0.0280066149999999986 0.134664010000000001 0.688282199999999955 111 0 110 1 2.35373929999999998 142.117996 2.24140385534908981 1.1083525413278501 31 false 0.0240186359999999995 0.86359616407108597 0.309964760509372994 0.218681839999999988 13 9 3.17175699999999994 0 13 false 111 109.389522796681007 1.41785917567733999 77.1511993 20.5909270000000006 9 29.8563243006661985 5.0216067922983898 5.9455720000000003 21.6637969999999989 12 161.148209423222994 12.1788321138264006 13.2318280000000001 19.243856000000001 1.74609529999999991 0 2.41994100000000012 1.07287029999999994 1.34707069999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.433005668159012 -62.2060988929872991 23.3488254984357013 -12.3473073876499999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466560784201984 2505466560784201984 898160320 2015.5 26.1400020875465984 1.4165061548434601 -2.41282030303290984 2.33541041147730022 \N \N \N \N \N \N \N 0.258797849999999996 \N \N \N \N \N \N \N \N \N 84 0 84 0 -0.0555471629999999966 77.6429977 0 0 3 false 0.0201706099999999985 \N \N 0.264499700000000004 10 7 6.20926240000000007 0 10 false 84 88.9753180265344952 1.47059026109554991 60.5031013 20.8151909999999987 5 32.2561686741914002 9.96344528367352922 3.23745130000000003 21.5798570000000005 10 128.688636067033997 12.6729990612180003 10.1545520000000007 19.4880700000000004 1.80887020000000009 0 2.09178730000000002 0.764665599999999945 1.32712169999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.416106017163003 -62.2042764933595009 23.3447448522457002 -12.3402695296929004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505463193527476224 2505463193527476224 398911831 2015.5 26.1816778412535989 0.575888109561338957 -2.45392228254639022 0.642358223674960982 1.68235004046077008 0.89668089385174099 1.87619709999999995 -11.4994593764709006 1.31822385607342007 -15.9563188304680992 1.1591296893013201 0.135982290000000006 0.25533657999999998 0.076516539999999994 0.168230980000000002 -0.601419869999999968 0.347441969999999989 0.304653400000000019 -0.256868150000000017 -0.196900259999999994 0.544088959999999955 149 0 149 0 2.97723359999999992 199.834 1.16419761791377008 0.69111396850050999 31 false 0.0572061499999999973 1.20212894119254998 0.173889672122186006 0.164057540000000002 17 9 1.40082299999999993 0 17 false 149 179.053867075798991 1.38492811986201003 129.287003 20.0559060000000002 14 39.8799923169683979 5.12549072671945982 7.78071700000000011 21.349499999999999 16 265.034960616213993 7.9554038938404501 33.3150860000000009 18.7036629999999988 1.70292299999999996 0 2.6458377999999998 1.29359439999999992 1.3522434000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.535073906414993 -62.2229122837456003 23.3690425977746017 -12.3937467258986 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505463468405109504 2505463468405109504 899896038 2015.5 26.1695069480174993 0.523768384448072055 -2.43711115168472015 0.490627395542511002 0.900126305233745039 0.715206941596346013 1.25855359999999994 18.9276590005597001 1.0899234302674401 -4.86135995660666964 0.795012252870942016 0.132547570000000003 0.302979469999999973 0.0276454130000000006 0.194986300000000001 -0.456753760000000009 0.272977379999999992 0.323129270000000024 -0.110759839999999998 -0.0444383399999999998 0.355739499999999986 154 0 152 2 1.80345770000000005 179.378998 1.44489555954916993 2.81269987481649997 31 false 0.0734306299999999967 1.29403556410567999 0.133172578065408997 0.135862289999999997 18 10 1.0291439 0 18 false 152 217.948541639007999 1.21125596947093994 179.936005 19.8424820000000004 15 65.9428668500026021 6.21835422420063022 10.6045529999999992 20.8034689999999998 13 263.87879571145902 5.27467844125807961 50.0274659999999969 18.7084079999999986 1.51330070000000005 0 2.0950603000000001 0.960987099999999983 1.13407330000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.495782611966007 -62.2131617573174012 23.3637450443600017 -12.3736543961310996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505463575779884416 2505463575779884416 58872617 2015.5 26.1715259569612009 0.0663524504622954037 -2.42012298377157986 0.059195354396588698 0.745903334052409051 0.0811799237712090976 9.18827300000000058 -1.13528727059646006 0.139799446581829995 0.226443765831169014 0.117251432508589007 0.21446984999999999 0.345966370000000023 -0.0106742729999999997 0.106515830000000006 -0.216521500000000006 0.121174190000000001 0.103514044999999999 -0.0488444119999999968 0.033285956999999998 0.342161360000000025 157 0 157 0 9.06989800000000024 370.113007 0.371215250768097027 10.9537867895391994 31 false 4.50860929999999982 1.54192773494396995 0.0190150204404040991 0.127871869999999999 18 10 0.138707599999999986 0 18 false 157 10526.2447611107 7.9190228498035502 1329.23999 15.6326820000000009 16 5671.06712964683993 12.5908761636699005 450.410829999999976 15.9672260000000001 15 7239.43531068057018 14.0056916096138995 516.892399999999952 15.1126585000000002 1.2265060000000001 0 0.854567500000000035 0.334544180000000024 0.520023349999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.483659602822001 -62.1970152445482967 23.3720235682445008 -12.3585787144542998 100001 5599.7998 5458.75 5770.33008 0.0344999991 0.0252999999 0.0573999994 0.0170000009 0.0109000001 0.0251000002 200111 0.924335200000000023 0.87050795999999997 0.972720699999999994 0.756909300000000007 0.585117340000000041 0.928701299999999952 +1635721458409799680 Gaia DR2 2505466530717383808 2505466530717383808 1316363041 2015.5 26.1636941427375014 0.628066112986418013 -2.41100133348638979 0.557969515687352979 -0.246421472279284987 0.795773483184568975 -0.30966284999999999 1.25172095206349998 1.34171599281886 1.90354624074512002 1.1197153500472099 0.111801490000000003 0.295760479999999992 -0.152153239999999995 0.0907533900000000032 -0.364213699999999974 0.0524592139999999971 -0.106110640000000006 0.071286779999999994 0.10932559 0.379651999999999989 147 0 147 0 2.14597600000000011 180.537994 1.81964093745479993 1.71218222722586 31 false 0.0498538460000000003 1.37679461470096998 0.177412558507970997 0.140659270000000003 17 10 1.28990920000000009 0 17 false 147 179.466780367318989 2.1356630619441499 84.0333023 20.053405999999999 15 132.490709128530995 11.1524086122620005 11.8800089999999994 20.0459250000000004 15 131.471632285198012 13.4257882899593 9.79246999999999979 19.4648399999999988 1.47081449999999991 0 0.581085199999999968 -0.00748062130000000033 0.588565800000000028 \N \N 0 \N \N \N NOT_AVAILABLE 152.460001261775005 -62.1922568919165002 23.3679800776022013 -12.3472283256080004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505426261104020608 2505426261104020608 363976442 2015.5 26.2097915382619995 0.0660815699053704936 -2.55760212835614986 0.0575670301965246003 0.614929350444845979 0.0804650821341981043 7.64218900000000012 15.2926900729245006 0.138291879711340993 -1.77313368700516993 0.115670864146884003 0.16452311 0.357111279999999975 -0.117457950000000005 0.0869872940000000067 -0.249873359999999989 0.0795438200000000012 0.0187986940000000012 0.0329544469999999978 0.0625566899999999981 0.340971740000000023 151 0 151 0 -1.7677366000000001 117.250999 0 0 31 true 4.92787359999999985 1.55711007095819998 0.0191368967461178 0.109212199999999995 18 10 0.136959870000000011 0 19 false 151 4501.0165792764501 3.75726240265094003 1197.94995 16.5550899999999999 16 2261.88540896883978 16.2177078886112014 139.470110000000005 16.9652120000000011 16 3320.18934978687003 20.4195654849131003 162.598430000000008 15.9590130000000006 1.24018089999999992 0 1.00619890000000001 0.410121919999999973 0.596076970000000039 \N \N 0 \N \N \N NOT_AVAILABLE 152.687497690349005 -62.3035718894457986 23.3570067344189987 -12.5005186664989996 100001 5142.20996 4960 5325 0.0553000011 0.0193000007 0.160999998 0.0170000009 0.00800000038 0.0781000033 200111 0.89518774000000001 0.834783700000000017 0.962165530000000047 0.504801900000000026 0.36695945000000002 0.642644400000000005 +1635721458409799680 Gaia DR2 2505462471975443840 2505462471975443840 1601695346 2015.5 26.2089694783174991 1.06821224422419991 -2.45142436568180999 1.14361828938461008 -1.34064184513184004 1.44618278499723996 -0.927020999999999984 -9.72094333668892041 2.69339021894846997 -9.68579028959280031 3.09033334690334982 -0.0581457950000000001 0.285286040000000019 -0.170216559999999989 0.0682713540000000063 -0.576515600000000017 -0.276445569999999974 -0.571754630000000041 0.163313399999999997 0.26458611999999998 0.62600606999999997 90 0 87 3 -1.05612639999999991 68.6112976 0 0 31 false 0.0317019799999999977 1.82194249389639995 0.356705098364698991 0.0752141999999999949 11 9 3.31363560000000001 0 11 false 87 108.973442475837999 1.20833052700841992 90.1850967 20.5950640000000007 5 31.8827107382866011 9.05700315497801078 3.52022740000000001 21.5925000000000011 8 164.965411163310989 13.7955840916871999 11.9578419999999994 19.2184370000000015 1.80638619999999994 0 2.3740635000000001 0.997436499999999948 1.37662700000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.585230532010002 -62.2086617594869011 23.3959639011687983 -12.4013860290639997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490372083779328 2505490372083779328 725846373 2015.5 25.9482675372454992 0.715433455786439021 -2.40904900650297016 0.658508039105233034 1.46522914267879001 0.926910015405873033 1.58076740000000004 0.815958035274015003 1.42251460791464002 0.774648185086984964 1.42137658221080998 0.0314101280000000024 0.435754750000000024 0.00328829279999999979 0.061010845000000001 -0.393013400000000013 -0.0704423339999999953 -0.239837909999999987 0.0592183729999999978 0.185222520000000002 0.404218520000000026 148 0 147 1 -0.0258998650000000011 140.899994 0 0 31 false 0.0379432140000000029 1.54906587941345997 0.193338438458655004 0.0452537000000000009 17 10 1.48755180000000009 0 17 false 148 135.245992123246992 1.39433547590689 96.9966965 20.360555999999999 14 86.6917301503314945 10.0800587535744004 8.60031999999999996 20.5064449999999994 16 98.7228518310902956 7.82402042983288037 12.6179179999999995 19.7758749999999992 1.37094329999999998 0 0.730569840000000026 0.14588928000000001 0.584680560000000016 \N \N 0 \N \N \N NOT_AVAILABLE 152.042364666118999 -62.2843845850530968 23.1636764754695008 -12.2666878322919004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490750042191104 2505490750042191104 723906868 2015.5 25.9638250491498006 3.10297973133841998 -2.41254878112615989 2.47098914128144997 \N \N \N \N \N \N \N 0.293814059999999988 \N \N \N \N \N \N \N \N \N 113 0 112 1 45.8504099999999966 3149.04004 15.8688194077152005 191.474831476361999 3 false 0.00368159470000000008 \N \N 0.154548030000000003 15 9 4.90682550000000006 0 15 true 129 211.421062947759992 2.90000910809553014 72.9036026 19.8754959999999983 11 289.536854090527015 3.60067908903616996 80.4117360000000048 19.1971279999999993 11 748.422459890152027 22.6162328329574009 33.0922699999999992 17.5765530000000005 4.90944149999999979 0 1.6205750000000001 -0.67836759999999996 2.29894260000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.075741888322 -62.2807987484207999 23.1771689105835996 -12.2756340064265004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505467041817907712 2505467041817907712 450417909 2015.5 26.0609326946580993 0.390221585958713979 -2.40929529869189984 0.292372348337011978 2.06056407910852979 0.487512620847266986 4.22668900000000036 21.8576753726528992 0.722814064396948952 8.89611847531513078 0.480316072953258011 0.0954680599999999935 0.45739829999999998 -0.0355565099999999995 0.202241140000000014 -0.234304380000000007 0.123411364999999995 0.198241869999999987 0.0666170100000000043 0.189329429999999993 0.20746081999999999 173 0 172 1 2.04358240000000002 206.432007 0.860996830824053982 0.99749172454748003 31 false 0.135028700000000002 1.23679988952056008 0.091164198242046704 0.0727628200000000058 20 10 0.646600660000000049 0 20 false 172 313.477585103924014 1.39167041124954993 225.253006 19.447849999999999 14 65.3178241658443 7.1998859802610502 9.07206299999999999 20.8138080000000016 18 428.520152970073013 9.08467766862587034 47.1695479999999989 18.181992000000001 1.57535340000000001 0 2.63181690000000001 1.36595920000000004 1.26585769999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.260371648019998 -62.2356586025976029 23.2708005095549986 -12.3081033360138008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505466560781763840 2505466560781763840 689957148 2015.5 26.1297887795895996 0.802560868705898045 -2.40941061332094986 0.679902593097487018 0.431641609893328004 1.07913195373063009 0.399989629999999985 5.13463496933920993 1.60222258731832001 -7.01764481736977963 1.1379064466411799 0.0336566979999999988 0.358246330000000002 0.0175242000000000002 0.156444940000000005 -0.459515600000000024 0.169149600000000011 0.143878549999999994 -0.0474061220000000019 0.0708283999999999997 0.305207339999999994 146 0 141 5 2.02036199999999999 171.337006 1.59970053324956996 0.910243849244398051 31 false 0.0351663799999999971 1.63262311813073002 0.186033539946775989 0.119760859999999997 17 10 1.46761819999999998 0 17 false 142 132.851298385159993 1.32638097559608004 100.161003 20.3799509999999984 13 68.8154506453178954 7.63584365185781966 9.01215999999999973 20.7571739999999991 14 103.315721701007007 11.8695616340543992 8.70425799999999938 19.726503000000001 1.29566800000000004 0 1.03067020000000009 0.377222060000000026 0.653448099999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.39323194984101 -62.2056839476394003 23.3362981646424004 -12.3333656573715995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484359126449792 2505484359126449792 291469294 2015.5 25.6082356475782014 0.258167275699209997 -2.5474025176190902 0.235930285096821013 0.505539959996567978 0.296795436296587001 1.70332789999999989 -0.583122073737878055 0.573654165923438986 -2.61677017252736999 0.440189164260444021 0.253098129999999977 0.276877600000000001 -0.0907657439999999954 0.188216670000000003 -0.0968039100000000069 0.209484759999999992 0.335084439999999983 -0.0270013700000000002 -0.00971136149999999969 0.247184960000000009 150 0 150 0 -0.253903539999999983 140.067001 0 0 31 false 0.275540899999999978 1.4278354659249799 0.0691439620564884977 0.0323399040000000026 17 10 0.527603860000000036 0 17 false 150 426.019033012667023 1.31751433464157008 323.351013 19.1147939999999998 16 209.84776754263001 8.46556818518127052 24.7883850000000017 19.5466270000000009 13 322.342817060253992 5.69420371432060968 56.6089359999999999 18.4911250000000003 1.2492179000000001 0 1.0555019000000001 0.431833269999999991 0.623668699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.508252000672996 -62.5553040307074966 22.7883212061028004 -12.2708844895712996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484191622862336 2505484191622862336 694683142 2015.5 25.6144576668191988 0.0670268228957113937 -2.54319846208080991 0.0580812777781996997 6.15806658013007979 0.0734788531119438953 83.8073349999999948 31.6998146914282017 0.145036750452494007 -17.1348129386324004 0.107664092751194998 0.210539239999999989 0.341733600000000026 -0.120858385999999998 0.190913319999999997 0.0229240840000000008 0.19299891999999999 0.330736729999999979 -0.00354417650000000018 0.0354087800000000008 0.152980859999999996 132 0 132 0 4.09438100000000027 203.154007 0.230910741841535011 2.4557067845045002 31 true 5.44000299999999992 1.26546922385720007 0.0180598237271803984 0.0351710360000000027 15 10 0.136388320000000007 0 16 false 132 6568.79126191930027 8.42738860084389074 779.458008 16.1446509999999996 12 1269.95500741162004 13.4099720554578994 94.7022860000000009 17.5919169999999987 14 8273.4605090656496 32.4227587596253031 255.174479999999988 14.9677019999999992 1.45284199999999997 0 2.6242150999999998 1.44726559999999993 1.17694950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.516564124614007 -62.5488517780444013 22.7958176186643016 -12.2692556428317996 100001 3882.27002 3574.84009 4055.95996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484496565405056 2505484496565405056 165268838 2015.5 25.6176146868085013 0.638299314896738967 -2.52280004456794993 0.555272513778506949 0.764546538320228009 0.768860563861577972 0.994389060000000047 -1.24403015371528003 1.28199758547095999 -2.15421740169889997 1.21302635399284009 0.200222070000000002 0.463734179999999996 -0.0954023999999999983 0.0558285000000000031 -0.137855489999999997 0.122770169999999998 0.151949229999999991 -0.0595778080000000029 -0.0730824840000000031 0.351212140000000006 128 0 126 2 1.75988140000000004 149.723999 1.35025729600891009 0.875772345784077033 31 false 0.0577051749999999974 1.35708988953550991 0.161281627800751004 0.0404642669999999982 15 10 1.27792349999999999 0 15 false 126 160.930495655518996 1.23899076510258999 129.888 20.1717699999999986 10 58.9799695612295025 7.27632167181454026 8.10574000000000083 20.924627000000001 11 173.73798324889799 9.00535773132427053 19.2927360000000014 19.1621839999999999 1.44607730000000001 0 1.76244350000000005 0.752857200000000004 1.00958630000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.503900910255993 -62.5290542527023021 22.8064819037129993 -12.2514386788015006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485355558865792 2505485355558865792 754691774 2015.5 25.6125166629328014 0.68280572688708796 -2.50194999526914019 0.583617900950190949 1.9590728792577301 0.818895473393194018 2.39233569999999984 -0.476642704564169017 1.32605840826196997 -7.77725078534138969 1.0349410874759899 0.190835000000000005 0.472116680000000011 -0.0735470059999999981 0.174217050000000012 -0.161940539999999994 0.184708490000000003 0.409497400000000011 -0.0164421099999999994 0.00777670740000000003 0.249444260000000001 149 0 148 1 2.67075130000000005 192.274994 1.86366137203150006 1.77782544497273998 31 false 0.0481135300000000016 1.54974163113757002 0.160809214396887001 0.040020145 17 10 1.22198319999999994 0 17 false 146 156.119097376588996 1.14929759878593996 135.839005 20.2047249999999998 10 59.2708849184680986 7.73447647820842032 7.66320560000000039 20.9192849999999986 13 166.828994500239986 11.0048784874828005 15.1595490000000002 19.2062419999999996 1.4482526 0 1.71304319999999999 0.714559559999999983 0.998483659999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.474671292329987 -62.5123582809981997 22.8094645762417016 -12.2301744355004995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485355558866560 2505485355558866560 748213621 2015.5 25.6139212468255018 0.502616318479610968 -2.49467233631622998 0.440472831670394027 0.489022816940275995 0.62580487195874801 0.781430199999999964 16.9904521590395987 0.914980116724342984 14.5771963730260001 0.794852226727047029 0.204972419999999989 0.529354160000000018 0.0776396099999999978 0.152297390000000005 -0.157942620000000006 0.170964079999999991 0.387001929999999994 -0.0804395499999999986 0.0122768384999999997 0.294068039999999975 158 0 158 0 2.58338359999999989 201.983002 1.11161475929907994 0.984004484634794951 31 false 0.0837665999999999966 1.28245400241002994 0.116590922095353003 0.0635512800000000017 18 10 0.881776329999999997 0 18 false 155 203.330572248188986 1.11313060695485011 182.666 19.917857999999999 14 44.8940748603623021 3.91456619919788018 11.4684679999999997 21.2209150000000015 16 283.878558962190027 6.40094090296330975 44.3495059999999981 18.6290900000000015 1.61693660000000006 0 2.59182550000000012 1.30305669999999996 1.28876879999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.470711768689995 -62.5051754755214972 22.8135331940978006 -12.2239196562744006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486906042190848 2505486906042190848 892234978 2015.5 25.6048594968675012 0.148622656181799012 -2.47716946692762985 0.117067431722393006 3.13269063045507989 0.187895542070368987 16.6725120000000011 21.2504148036613998 0.263532403211004018 -4.96665625626768037 0.213315879477002007 0.112526976000000001 0.550383999999999984 0.00508029339999999975 0.120818419999999996 -0.221951769999999993 0.0784544400000000003 0.171012479999999994 0.0120528414999999996 0.0971916099999999977 0.276754400000000012 151 9 150 1 4.21184159999999963 228.298004 0.352601380942292986 1.40396801838992991 31 false 1.18944070000000002 1.32754258864990993 0.0338297453745618967 0.106493435999999997 17 10 0.235134750000000003 0 17 false 149 1455.66028119006 2.8780731390337202 505.776001 17.7807160000000017 17 286.829086537395995 11.5677587273265008 24.7955630000000014 19.2073299999999989 15 1904.78253896062006 22.2425038268651001 85.6370540000000062 16.5623070000000006 1.505579 0 2.64502330000000008 1.42661480000000007 1.21840860000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.436844784212013 -62.4931859064416031 22.8114891425680995 -12.2043155716824003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486901747095424 2505486901747095424 207624046 2015.5 25.6100247471354017 0.66005114329401704 -2.4784255089419398 0.672313930068759946 0.458926036796322989 0.798195637391807988 0.574954329999999958 0.267819663254293017 1.34243157096261001 -1.84909152643687991 1.75920523537873996 0.346202220000000005 0.506128899999999993 -0.139869120000000013 -0.154494400000000004 -0.0975371800000000011 -0.192110639999999999 -0.286314869999999999 -0.0246186819999999994 -0.00168843279999999997 0.562313260000000037 120 0 118 2 1.18468149999999994 131.024994 0.818388935596379041 0.272489685198325005 31 false 0.0588759329999999984 1.76505979294936011 0.180804934731136013 0.14952551 14 9 1.75254390000000004 0 14 false 119 149.581171260898003 1.27240652942325005 117.557999 20.2511730000000014 13 105.003543599929998 13.7885517028731002 7.61526999999999976 20.2983779999999996 12 106.409404667531007 9.90098635294321916 10.7473539999999996 19.694469999999999 1.41336609999999996 0 0.603908540000000049 0.0472049699999999989 0.556703570000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.448113845964997 -62.4921284963617012 22.815928862509999 -12.2073778529838002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484603939721216 2505484603939721216 320252513 2015.5 25.6175368477559005 1.78914336736308011 -2.50491595636554987 1.25660510297729 \N \N \N \N \N \N \N 0.0512135599999999983 \N \N \N \N \N \N \N \N \N 124 0 123 1 41.0722659999999991 2536.6001 9.88798552279559928 139.590610521628008 3 false 0.00930069499999999945 \N \N -0.0185305680000000007 16 10 3.10969110000000004 0 16 false 141 361.107815711780972 3.90807101464980011 92.4004974 19.2942730000000005 15 537.740140905904013 12.7725554804342991 42.1012199999999979 18.5249580000000016 14 1114.59968279345003 18.3772292028585014 60.6511270000000025 17.1441230000000004 4.57575230000000044 0 1.38083460000000002 -0.769315700000000047 2.15015029999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.487239480762014 -62.5129067565900982 22.8131245096332016 -12.2347741449612002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486833027617536 2505486833027617536 1660992368 2015.5 25.6270650504337993 0.178355519779953009 -2.49061773973161005 0.151484794629588998 2.06390933360259021 0.231972256778547992 8.89722399999999958 -10.6799955682251007 0.323850990637829017 -23.3096669981439995 0.265029926183905973 0.133806330000000001 0.519547639999999977 0.0428150900000000001 0.144668799999999986 -0.269207949999999974 0.135417759999999998 0.275525960000000014 -0.0259077030000000007 0.0567482750000000008 0.304034000000000026 151 0 151 0 2.01547840000000011 182.445007 0.456613290998391985 1.52103551406533 31 false 0.715659860000000037 1.21639999574148994 0.0408395976272852984 0.103905449999999996 17 10 0.306645449999999986 0 17 false 149 970.828906891721999 1.91913730310370001 505.867004 18.2205089999999998 17 208.232549441320998 10.2490787883262993 20.3171959999999991 19.5550169999999994 17 1216.44783560261999 11.4048594864462007 106.660483999999997 17.0491869999999999 1.46748860000000003 0 2.50583080000000002 1.33450890000000011 1.17132189999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.492705899863012 -62.4959160543032013 22.8275542353342011 -12.2249670190510002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486833027617920 2505486833027617920 1379447790 2015.5 25.6205301086631998 0.0419365907616428973 -2.48733844394404979 0.0378855349642812991 1.50627421624968005 0.0559757974376388009 26.9093839999999993 5.98398540253816957 0.0850729374825421047 -7.90076367697889026 0.0824596952699089975 0.118775770000000003 0.514482140000000032 -0.00696234540000000013 0.0840332959999999934 -0.372243639999999987 0.425888480000000014 0.481855599999999995 -0.306061740000000027 -0.337437629999999988 0.556865700000000019 151 0 150 1 -0.120011789999999993 142.306 0 1.66898024507050002e-15 31 true 20.253933 1.53274586948573011 0.0103438018339107006 0.0871488700000000033 17 9 0.103065009999999999 0 17 false 150 16134.2045520309002 8.53254008437446032 1890.90002 15.1689969999999992 16 7622.64341023091038 12.3693707604475005 616.251499999999965 15.6461240000000004 15 12584.6488747359999 39.3177030439866968 320.07589999999999 14.5123180000000005 1.25245049999999991 0 1.13380619999999999 0.477127079999999981 0.656679149999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.476890694412987 -62.4957287546862972 22.8225714428661988 -12.2195206208750005 100001 4915.5 4847.37012 5849.58008 0.196999997 0.0988999978 0.323100001 0.0960000008 0.0480000004 0.157100007 200111 0.775284300000000037 0.547453199999999973 0.797230899999999965 0.316145869999999996 0.290724719999999992 0.341567000000000009 +1635721458409799680 Gaia DR2 2505486111474576512 2505486111474576512 14881777 2015.5 25.6492155767102012 1.58193664094795006 -2.48890708694136986 1.22954109569037007 0.812336202648966998 2.31641143838906993 0.350687350000000009 -1.83486561721888997 2.48151029609614993 -6.67505726921762044 3.19780698801013008 -0.183902139999999992 0.760880299999999954 0.0942012200000000022 -0.137730359999999996 -0.507223369999999951 -0.205898539999999991 -0.235214709999999994 -0.0284340080000000002 -0.0370404800000000006 0.607295200000000035 103 0 103 0 1.02940190000000009 112.398003 1.31865588806766998 0.306390577892001026 31 false 0.0242568199999999984 1.56183060701336007 0.288318008247949009 0.0958043259999999952 12 8 3.22698829999999992 0 12 false 105 90.2900722457983989 1.18768423049486005 76.0218964 20.7992649999999983 8 57.1818695719032988 8.56985676535848917 6.67244149999999969 20.9582419999999985 7 127.339653683356005 9.98733878610801007 12.7501090000000001 19.4995119999999993 2.0436523000000002 0 1.45873070000000005 0.158977509999999989 1.29975320000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.534468964240006 -62.4849372821662996 22.8492603826792013 -12.2314959104354006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486218847424000 2505486218847424000 151121284 2015.5 25.652725656034999 0.056917632118979003 -2.48948347416926019 0.0431297441366395029 0.407660485130382999 0.0669936879461956042 6.08505800000000008 9.51007564009134931 0.104252200421583993 -12.0372575942542994 0.0867504135328209941 0.0714301299999999945 0.534964899999999965 -0.0582080369999999972 0.0916692239999999936 -0.181453000000000003 0.176151050000000003 0.206839600000000012 -0.0757355299999999954 -0.0537827719999999995 0.2763679 156 0 153 3 2.20057850000000021 188.395996 0.114659098782796995 0.77650351550899499 31 false 8.22978799999999922 1.61345414262686004 0.0132797727831910992 0.0310197289999999994 18 10 0.103318530000000006 0 18 false 151 7959.66003740948963 5.80783760258978976 1370.5 15.9361300000000004 18 4656.8293421424396 17.9832858851795017 258.953199999999981 16.1811620000000005 15 4961.07791644386998 13.4653063701684008 368.434079999999994 15.5229800000000004 1.20833149999999989 0 0.658182139999999971 0.245032310000000003 0.413149829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.54186661889301 -62.4839629140835982 22.8523819745499992 -12.2333187508915007 100001 6458.75 6211 6794.75 0.0502999984 0 0.201100007 0.0299999993 0.00190000003 0.100100003 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486214552378880 2505486214552378880 754700057 2015.5 25.6522333208494011 0.896929894501807046 -2.48340765312374989 0.791575869890041028 1.27735138955770999 1.09993952080395996 1.1612924 1.72617957224739005 2.06594482671312019 2.01989528222846992 2.25832332386901991 0.196059900000000009 0.407630300000000001 -0.073466729999999994 -0.0946415000000000034 -0.177553149999999993 -0.0401963700000000021 -0.124568680000000001 -0.165927400000000003 -0.141014749999999994 0.491851060000000007 112 0 112 0 1.8012452000000001 134.792999 2.4744364852461298 1.63732748893590996 31 false 0.0311509480000000012 1.33028148005773006 0.257338779880898982 0.0275649170000000013 13 9 2.32820800000000006 0 13 false 113 125.686520757612001 1.49515449865801009 84.0625992 20.4401440000000001 10 87.3785016147534037 8.87273514524371087 9.84797900000000048 20.497876999999999 11 105.438895981664999 10.5861250284755997 9.96010300000000015 19.7044180000000004 1.53411349999999991 0 0.793458939999999946 0.057733536000000002 0.735725399999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.535294946969003 -62.4786772681475 22.8541947546887982 -12.2274861834570991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487245344460928 2505487245344460928 49345358 2015.5 25.6171702901133003 0.0397854145309042978 -2.44826086281273003 0.0305053357072073011 1.14957614980947009 0.0483865128450989973 23.7581939999999996 -1.12813277254174005 0.071220778681293298 -15.1047707117634005 0.0621519049947567015 0.0670462899999999945 0.54232860000000005 -0.0725427339999999976 0.0765965900000000061 -0.204659360000000012 0.058547318000000001 -0.0361288599999999988 0.00755323939999999992 0.0595437769999999991 0.302353800000000006 141 0 141 0 -0.778442900000000049 122.936996 0 0 31 true 21.7844720000000009 1.58094350983912002 0.0103577016205260997 0.0663653599999999982 16 10 0.0745082799999999962 0 16 false 141 17569.7396301851004 8.73355251984989067 2011.75 15.0764519999999997 14 9146.93087017278958 24.8145137460972016 368.612120000000004 15.4481990000000007 13 12346.3818639197998 20.4608625833723998 603.414549999999963 14.5330709999999996 1.22331429999999997 0 0.915128700000000017 0.371747019999999984 0.543381699999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.434341932311014 -62.4617909138271017 22.8340480471172 -12.1819374452782991 100001 5424 5341.7998 5588.91992 0.0892999992 0.00850000046 0.184300005 0.0450000018 0.00789999962 0.0860999972 200111 0.833181799999999972 0.784734249999999967 0.859021249999999958 0.541318599999999983 0.491006050000000027 0.591631200000000024 +1635721458409799680 Gaia DR2 2505499099454223232 2505499099454223232 339028974 2015.5 25.6163565576268013 0.668655084971168989 -2.42815479973788984 0.586808134018894978 0.669759817353882014 0.83198905307020099 0.805010400000000015 -0.49407238016743199 1.24522159034189994 -22.9994831691528994 1.08031085809409011 0.232069969999999987 0.503223060000000055 0.0154332024999999998 0.125185400000000002 -0.133057730000000013 0.0736291859999999992 0.224482569999999992 -0.00197918849999999995 0.098000219999999999 0.285390699999999997 137 0 134 3 2.66177729999999979 175.830994 1.81037854643850005 1.81595460945512999 31 false 0.0520034099999999999 1.53473466379744994 0.181259767574719011 0.121588126000000005 16 10 1.17820499999999995 0 16 false 132 158.371773131697012 1.23415283495224992 128.324005 20.1891700000000007 12 59.610819423836702 15.8128465736491997 3.76977159999999989 20.9130740000000017 13 193.403567308533013 10.8478393629922998 17.8287639999999996 19.0457600000000014 1.5975976999999999 0 1.86731530000000001 0.723903659999999949 1.14341160000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.414276254008001 -62.4439360129996004 22.8408215072273002 -12.1629354777191008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487043481234688 2505487043481234688 154656056 2015.5 25.6226253356123017 0.62750815833274598 -2.46420243083984003 0.66059733598535797 2.37255797013879022 0.774933748728038996 3.0616270000000001 3.73883362213741011 1.32854464390856997 -16.5315326898676993 1.81132359023979994 0.331674040000000003 0.476456170000000012 -0.113564305000000004 -0.181930229999999998 -0.153448720000000011 -0.230384680000000008 -0.314315899999999981 -0.0372075700000000023 0.020621529999999999 0.58451019999999998 124 0 123 1 -0.425000040000000023 110.949997 0 0 31 false 0.0606922169999999997 1.11499790693496004 0.172291776527510987 0.157445190000000013 14 9 1.79695310000000008 0 15 false 124 146.588055569365991 1.05907531315723991 138.410995 20.2731190000000012 14 72.767494070723501 11.0759819362356993 6.56984570000000012 20.6965450000000004 13 198.420696334019993 10.3924416262794992 19.0927889999999998 19.0179520000000011 1.85000190000000009 0 1.67859270000000005 0.423425669999999976 1.25516699999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.459679096293002 -62.4739014574807001 22.8332502790504996 -12.1987668362931991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487245344531328 2505487245344531328 138976648 2015.5 25.6221882940028003 2.17929460102811978 -2.44802608706581992 3.75956563823981993 \N \N \N \N \N \N \N -0.607908070000000023 \N \N \N \N \N \N \N \N \N 68 0 68 0 -2.04449000000000014 42.2120018 0 0 3 false 0.024836047 \N \N -0.00819092000000000084 8 6 11.2707820000000005 0 8 false 70 99.3423687645640996 1.51621855762140001 65.5197983 20.6955300000000015 6 66.2375709425597989 9.2178760146760208 7.18577400000000033 20.7986280000000008 7 61.3695191801951978 10.0359575136138002 6.11496399999999962 20.2920380000000016 1.28451819999999994 0 0.506589900000000037 0.103097915999999998 0.403491969999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.443940430668988 -62.4594469448305034 22.8389073532272988 -12.1835586346049993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487009121405440 2505487009121405440 336000360 2015.5 25.6492246146131997 0.26658904434109898 -2.46449288387643017 0.209168037336368989 1.09372628670648009 0.324262004482172017 3.37297080000000005 1.61133774950180997 0.453086149468471977 -5.71003916709042958 0.363345797702129991 0.237198980000000004 0.594056000000000028 0.0612690749999999992 0.19324245000000001 -0.0507527850000000016 0.188280019999999992 0.406268899999999988 -0.062118857999999999 0.0607208460000000019 0.262984280000000015 151 0 150 1 2.66130040000000001 194.393997 0.827269533983371996 2.89531437273072001 31 false 0.369230029999999987 1.45161006786630997 0.0585857829128777971 0.0914580900000000058 17 9 0.425601400000000019 0 17 false 148 667.459914679957024 1.75677918843299996 379.93399 18.6273020000000002 17 226.851831310943993 7.61292147984559975 29.7982620000000011 19.4620320000000007 17 688.622279450960036 7.44941915865758997 92.4397299999999973 17.6669669999999996 1.3715792 0 1.79506490000000007 0.834730149999999949 0.960334800000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.511965924761995 -62.4628488980449035 22.8584340598943001 -12.2087875960993006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487077840881792 2505487077840881792 1065992754 2015.5 25.6450417797095014 0.400040186855358026 -2.45858240789837001 0.347913165797228974 0.400961297748266998 0.493184518984358999 0.813004599999999966 1.77777957171420997 0.755136975196486038 0.843967169214455026 0.644320559543245963 0.176044800000000001 0.499265400000000026 0.0129472670000000002 0.132692749999999998 -0.181222300000000003 0.158395279999999999 0.343111160000000026 -0.0584944339999999979 0.000369079239999999984 0.283081169999999993 159 0 157 2 1.00949690000000003 169.570999 0.790090854695694955 0.70518765579645204 31 false 0.126775730000000003 1.64921854180727001 0.100170675537520001 0.0480502140000000008 18 10 0.716339350000000041 0 18 false 157 274.583454306679016 1.51820893798670009 180.860001 19.5916800000000002 16 189.658379909050012 6.82251924104090968 27.7988779999999984 19.6564580000000007 17 172.441617523900987 6.74127697164527984 25.5799640000000004 19.1703149999999987 1.31872480000000003 0 0.486143099999999995 0.0647773739999999987 0.421365739999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.498342283690988 -62.4592822015459035 22.8566751657688982 -12.2017560863504997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487009121405312 2505487009121405312 1621711777 2015.5 25.6469105705813014 0.545180948780512042 -2.46326104195386986 0.478399631045719975 2.20398279718593004 0.676207527881718007 3.25932900000000014 23.7906068162271005 1.02394825440550008 -5.57895856532276024 0.857281073397633042 0.179636639999999986 0.500802929999999979 0.0695323600000000014 0.151517810000000003 -0.187948520000000008 0.185802620000000002 0.417477759999999976 -0.0950642000000000015 -0.00951741600000000076 0.277649599999999996 158 0 156 2 4.54218670000000024 243.570007 1.50876411527890997 1.64536973668049002 31 false 0.0708898200000000062 1.10914634813767998 0.135654068242622994 0.049272719999999999 18 10 0.972169700000000025 0 18 false 152 196.846244245315006 1.18072735534344009 166.716003 19.953049 12 53.910752911892601 11.1028098324979005 4.85559560000000001 21.0222000000000016 13 290.917090577591978 12.6148748483669007 23.0614339999999984 18.6024969999999996 1.75176240000000005 0 2.41970250000000009 1.0691508999999999 1.35055159999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.506306666558004 -62.4627196210058031 22.8566960041658014 -12.2067934608965007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487726380825088 2505487726380825088 158485978 2015.5 25.6275326639851997 0.707890195568547043 -2.42259993375308991 0.607437130698911032 1.14266340755818008 0.905820660998730043 1.26146760000000002 -5.55893125573722013 1.28036711146799997 -10.6812609276671004 1.10093544340346994 0.176126909999999998 0.528210159999999984 0.0624290100000000001 0.120682800000000007 -0.193123340000000004 0.0709599300000000044 0.221031169999999999 -0.0153468179999999999 0.0991990199999999989 0.285180400000000001 137 0 137 0 6.34135399999999994 263.110992 2.81838247666533004 5.40617490138605028 31 false 0.047362253 1.44471923295529003 0.170161728165508008 0.128180600000000006 16 10 1.21014400000000011 0 16 false 136 183.088538408076005 1.38593204550943994 132.104996 20.0317129999999999 11 60.1280677998887967 8.99083097259092057 6.68771000000000004 20.9036940000000016 11 262.912927911923987 6.85909543849385983 38.3305549999999968 18.7123899999999992 1.76439769999999996 0 2.19130329999999995 0.871980670000000013 1.31932260000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.43102070737001 -62.4341628822586969 22.8535322612516012 -12.1618648136845007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487657661345536 2505487657661345536 193108809 2015.5 25.6462909995702013 0.633035793558284987 -2.43251803235316011 0.685371022084947046 0.0762188674023766 0.820461277797763011 0.0928975799999999935 3.01755611168443005 1.30507742993787001 -8.2721160889969898 1.20925428747034003 0.194776480000000002 0.403862359999999976 0.143133769999999994 0.175210759999999993 -0.334727529999999995 0.311353270000000015 0.634420800000000007 -0.221729619999999988 -0.187459839999999989 0.357107100000000011 143 0 142 1 4.08953330000000026 215.552002 2.0167415705176901 2.77156506057920016 31 false 0.0551642369999999979 1.85132117348577996 0.161871091875223 0.0692101640000000046 17 9 1.37064849999999994 0 17 false 142 183.098976417084003 1.26527808732231994 144.710007 20.0316499999999991 14 100.378542649490996 5.09775613876861033 19.6907309999999995 20.3472860000000004 15 133.024596196134013 5.64468640651409004 23.5663400000000003 19.4520899999999983 1.27473759999999992 0 0.895196899999999962 0.315635679999999974 0.579561230000000038 \N \N 0 \N \N \N NOT_AVAILABLE 151.476790160153001 -62.435167411399803 22.8676456188894015 -12.1779669208352992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487455798003584 2505487455798003584 413108232 2015.5 25.6610532554429014 0.377935861836870002 -2.44221955883332997 0.323606169703345992 0.960092466384294019 0.466316663106653984 2.05888500000000008 2.20918308712293987 0.717432758795868986 2.25937942102674993 0.584347875760626967 0.12764737000000001 0.494250679999999998 0.0596785619999999975 0.123469369999999995 -0.209537859999999992 0.149427979999999988 0.394713580000000008 -0.0853851699999999963 -0.0018939619999999999 0.234239279999999994 153 0 150 3 3.22505450000000016 206.302002 1.05765070808513006 1.73097984191163001 31 false 0.152099650000000003 1.31950582452528997 0.0952005512678845006 0.030750099999999999 18 10 0.664765500000000009 0 18 false 149 326.461804782483 1.42329888373275004 229.369995 19.4037860000000002 15 125.379979761594996 7.84012040678658995 15.9920989999999996 20.1058179999999993 16 355.226591358109999 12.1180847096498994 29.313756999999999 18.3856560000000009 1.47216780000000003 0 1.72016140000000006 0.702032100000000048 1.01812930000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.514557762283999 -62.4376631021131985 22.8780417280625983 -12.1924024905653994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492437960066048 2505492437960066048 1610649630 2015.5 25.7501219706386983 0.495373092346999999 -2.43067301252564993 0.408900110259724003 -1.95397583873592007 0.616384971199952947 -3.17005749999999997 -3.99404518728261015 0.973729319168099017 -15.3761037160577008 0.704242549907994952 0.0304902030000000004 0.442496600000000018 0.0228578899999999988 0.143004849999999989 -0.388512899999999994 0.269747799999999982 0.394997980000000026 -0.136516419999999999 -0.0878199399999999991 0.306832400000000005 168 0 167 1 176.71547000000001 69543.8984 3.34696033857780018 2377.15732316412004 31 false 0.0854947399999999996 1.41202224031909007 0.117591585822745995 0.0163236759999999988 19 10 0.907484770000000052 0 19 false 164 61807.028747910299 32.0335198127295016 1929.44995 13.7107709999999994 19 32866.8350981676995 71.1839777342844968 461.716769999999997 14.0594929999999998 17 42459.9896726470033 46.4693132570611027 913.721070000000054 13.1919699999999995 1.21874199999999999 0 0.86752320000000005 0.348722460000000012 0.518800739999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.677640620514012 -62.3891997892705987 22.9670770144412018 -12.2142919623703001 110001 5666.3999 5409.97021 5929 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487485862629248 2505487485862629248 1641526392 2015.5 25.6620705689860991 0.0415854143668447987 -2.43824329248877003 0.0286070917881948994 3.10852693171491001 0.0480704233727662009 64.6661000000000001 -3.37424615133453987 0.0692059984860629029 -7.69512633426934034 0.0630539667068005932 0.110633319999999993 0.629000899999999974 -0.0658895149999999957 0.0152569739999999995 -0.0566706400000000013 0.0669398159999999992 -0.0348531050000000023 -0.0591820700000000033 -0.0581341240000000023 0.295204399999999978 157 157 157 0 2.52219030000000011 199.552994 0 0 31 true 320.313800000000015 1.57109809510186005 0.0103075247465587005 0.0459443220000000027 18 10 0.0461234150000000009 0 18 false 153 230744.061761210993 63.7151947304816986 3621.48999 12.2805394999999997 17 119498.516490876005 183.813146966143989 650.108640000000037 12.6579820000000005 17 159266.644063437998 240.07942775775399 663.391499999999951 11.7566079999999999 1.20811409999999997 0 0.901373859999999971 0.377442359999999977 0.523931499999999994 3.66245411078431005 10.0864659921588 6 5500 3.5 0 NOT_AVAILABLE 151.512882784991007 -62.4336328433820995 22.8805012874370988 -12.1890762215986008 100001 5764.08008 5456 6356.77002 0.210999995 0.148000002 0.475699991 0.112000003 0.0626000017 0.209099993 200111 0.974171039999999988 0.800981940000000003 1.08729410000000004 0.943813499999999972 0.923548600000000053 0.964078400000000002 +1635721458409799680 Gaia DR2 2505487692021084928 2505487692021084928 280659746 2015.5 25.648297667011299 0.64229896748292703 -2.42785672791036999 0.648586981366386039 2.21586055444202978 0.805819027007704025 2.74982399999999982 44.2475316459276016 1.34617343259280009 -14.6273998709402004 1.12169147737721997 0.182763039999999988 0.40191623999999998 0.0576151869999999983 0.195169549999999997 -0.334261179999999991 0.343463540000000012 0.637315500000000035 -0.200071329999999992 -0.193832250000000011 0.351675630000000017 130 0 129 1 4.81845899999999983 215.447006 2.41267838088149 4.61424742445139024 31 false 0.062598769999999998 1.15164161234686002 0.154886747200544989 0.0278334150000000002 15 9 1.34796380000000005 0 15 false 129 218.398387110525988 1.4059329957706499 155.341003 19.8402419999999999 14 52.8578029050133011 8.1001734758038495 6.5255150000000004 21.0436149999999991 13 307.063227896736009 7.81957993502931981 39.2685049999999976 18.5438499999999991 1.64800229999999992 0 2.4997653999999998 1.20337300000000003 1.2963924 \N \N 0 \N \N \N NOT_AVAILABLE 151.476422921367003 -62.4300960852524014 22.8713029345761996 -12.1743660424826992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487692022545664 2505487692022545664 1554523106 2015.5 25.6543299783381009 0.811224427236587053 -2.43004772978492012 0.72132595745388195 1.89176889375239998 0.95827096707956505 1.97414819999999991 6.86735762185475984 1.6454550752069601 4.86500014746362019 1.61577365531157002 0.192689630000000001 0.448729299999999998 -0.120628200000000005 0.0665601340000000069 -0.116571649999999999 0.137928350000000005 0.168619889999999995 -0.045796383000000003 -0.087657120000000005 0.325448100000000018 119 0 116 3 1.01320359999999998 126.064003 1.83781618796413992 1.25127898558974993 31 false 0.0373663099999999998 1.6392527249820199 0.242548983060010992 0.0214267110000000011 14 10 1.65299820000000008 0 14 false 116 128.499844364007004 1.32619355294915997 96.8936996 20.4161099999999998 6 25.6000611559848004 6.81254085337641957 3.75778459999999992 21.8307859999999998 9 192.363188354208006 17.3147203385424007 11.1098060000000007 19.0516150000000017 1.69621409999999995 0 2.77917099999999984 1.41467670000000001 1.36449430000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.490220920888987 -62.4295126466805002 22.8762165119817986 -12.1786151332597008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481305404839296 2505481305404839296 1311773323 2015.5 25.6683949922770012 0.813933899973105945 -2.54560260601241017 0.596146439430995989 0.193049852176860992 1.13519067492081005 0.170059409999999994 -6.0293323963898704 1.13062299457860993 -1.42968052631196008 0.984005640757978028 -0.278552950000000021 0.751459659999999974 -0.0377775320000000026 -0.0278534440000000015 -0.551298740000000009 0.146614149999999999 0.369554280000000013 -0.0484374760000000001 -0.140133110000000005 0.30876621999999998 141 0 140 1 0.0491926820000000015 135.141998 0 8.64845076549420973e-16 31 false 0.0614146549999999986 1.32367397764357997 0.143435833951742003 -0.0472981700000000005 16 9 1.16157529999999998 0 16 false 140 157.083079663900008 1.23279807548190989 127.419998 20.1980420000000009 9 38.1015063541492012 6.52962066274155006 5.83517930000000007 21.3990329999999993 11 203.257629810076992 7.36154685556236998 27.6107230000000001 18.9918019999999999 1.5365063000000001 0 2.40723039999999999 1.20099069999999997 1.20623970000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.624449967190998 -62.5280184482404024 22.8462125249860009 -12.2912675742082005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482782873588864 2505482782873588864 1018543908 2015.5 25.6790274079024989 0.0252923117399482013 -2.54296158636863989 0.0188746455063406003 1.89355921943883998 0.0290108445626573001 65.2707400000000035 4.17962457476416027 0.0452363696596706014 2.46644390943332015 0.0408727971591694994 0.101558270000000006 0.568583850000000002 -0.0510492359999999978 0.0686915899999999968 -0.137311340000000004 0.125827579999999994 0.0614082000000000031 -0.0594841470000000011 -0.039415552999999999 0.330470619999999993 159 0 158 1 -4.636876 84.9261017 0 0 31 true 87.5514139999999941 1.58045537231780009 0.00627769913498122008 0.0305437760000000016 18 10 0.0536514560000000001 0 19 false 160 68489.2479732678039 26.9431614706835987 2541.98999 13.5993099999999991 18 35542.8094757240979 52.2432220730248034 680.333439999999996 13.9745089999999994 18 47538.3869453302032 80.9231344153516972 587.451099999999997 13.0693090000000005 1.21305449999999992 0 0.905200000000000005 0.375199320000000003 0.530000699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.642810048693008 -62.5210868787590996 22.8573172228440988 -12.2927081386887007 100001 5474.75 5402 5494.49023 0.0680000037 0.0419000015 0.186100006 0.0289999992 0.0207000002 0.0860999972 200111 0.977504550000000028 0.970492099999999969 1.00401040000000008 0.7733738 0.744384770000000029 0.802362800000000043 +1635721458409799680 Gaia DR2 2505485772170826624 2505485772170826624 601564115 2015.5 25.6768072993568985 0.0340381841180490974 -2.52299595730363002 0.0245149408176246995 1.66858929478757001 0.0396762075692507973 42.0551600000000008 22.419972692879 0.0597470434968156994 -10.1855488795444007 0.0558557934659877006 0.0200887429999999992 0.590068640000000033 -0.0837184299999999965 0.0287926229999999998 -0.198863039999999991 0.0976802900000000029 -0.00690338199999999957 -0.0740266740000000006 -0.0711924599999999991 0.334496100000000018 168 107 167 1 4.56849400000000028 258.020996 0 0 31 true 172.833660000000009 1.61084702884251008 0.00838222887588161054 0.019791920000000001 19 10 0.0488605049999999985 0 19 false 166 128417.533628751 48.4971921255756016 2647.93994 12.9168050000000001 18 70862.7424274096993 70.6515379584238019 1002.98940000000005 13.2253439999999998 18 83452.6835094358976 75.4594358347419956 1105.92769999999996 12.4583200000000005 1.20166949999999995 0 0.767024040000000018 0.308538440000000025 0.458485599999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.619960945321992 -62.5039893570084004 22.8627024760467989 -12.2733211020325008 100001 5947 5785.93994 6197 0.298000008 0.181500003 0.386799991 0.145999998 0.106600001 0.195999995 200111 1.2658045 1.16573419999999994 1.33725399999999994 1.8055924000000001 1.73421010000000009 1.87697470000000011 +1635721458409799680 Gaia DR2 2505482572419615360 2505482572419615360 588926649 2015.5 25.7282277968399988 0.429281996364890006 -2.55144996606609009 0.334881349797157002 2.26484216563539009 0.520488393278577988 4.35137899999999966 7.54848542246639997 0.803350068823337038 -12.1706245242045004 0.619155793928048981 0.0435766240000000013 0.503421699999999972 0.0296404159999999993 0.0797340299999999974 -0.211427690000000001 0.0197689139999999985 0.201979149999999996 0.0019086407000000001 0.110466726000000001 0.154122490000000001 178 0 178 0 4.79430770000000006 277.466003 1.44094409457698003 2.51828652520004015 31 false 0.0997154299999999938 1.20860987678327003 0.103325804660077 -0.0218361260000000008 20 10 0.716364439999999991 0 20 false 177 258.434913591383975 1.18411149777419 218.251999 19.6574880000000007 17 68.9010631601437069 7.37376980982832997 9.34407599999999938 20.7558229999999995 15 356.788209358152983 10.3619601147170997 34.432502999999997 18.3808940000000014 1.64718169999999997 0 2.37492940000000008 1.09833530000000001 1.2765941999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.746911207386006 -62.5076856893126021 22.9009303491508014 -12.3186358181549007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482675503571072 2505482675503571072 340682705 2015.5 25.7245382457934006 1.01058562025308007 -2.52780833457571985 0.994777556097628968 1.70532535127303997 1.22237813890831992 1.3950882 20.5768902274378007 2.51052777463213017 -2.26401963788784011 3.10231110416953992 0.167659399999999986 0.251541820000000027 -0.113504543999999999 -0.0416210220000000006 -0.223184589999999988 -0.0407385639999999979 -0.189518720000000002 -0.107133925000000005 -0.110417425999999999 0.481457619999999975 95 0 94 1 1.7231209999999999 113.240997 0.862251399028723053 0.111025426900101004 31 false 0.0246414340000000003 1.71320966360642002 0.32271333166215399 -0.0409123669999999981 12 9 3.04958030000000013 0 12 false 96 87.7512536435563959 1.17512413138814997 74.6740036 20.8302329999999998 9 44.2214927072630033 10.9922970481053 4.02295300000000022 21.2373049999999992 10 114.960918762752996 5.57580962299902971 20.6177980000000005 19.6105440000000009 1.81401860000000004 0 1.62676050000000005 0.407072070000000008 1.21968839999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.717729170121004 -62.4879140748622035 22.9062958009069995 -12.2952898839878006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779355776 2505482606779355776 1647685681 2015.5 25.7422227924927007 1.32418147347551995 -2.54141664510040011 1.08811932370340991 -0.0551062074488673018 1.89424054787146989 -0.0290914510000000008 1.25439587369257 2.13620972856968017 0.487360675281306999 2.95395675292123006 -0.274264750000000002 0.749266740000000042 -0.131009270000000011 -0.196167320000000006 -0.577652199999999949 -0.100075600000000001 -0.0651044399999999995 -0.0265363700000000001 -0.134439229999999993 0.575459959999999993 113 0 112 1 -0.668516800000000022 96.8899994 0 0 31 false 0.0256055520000000002 1.68930203451670002 0.278030214367878004 -0.0614773779999999992 13 8 2.90566749999999985 0 13 false 112 92.6765552568281947 1.22445835962265992 75.6877975 20.7709399999999995 9 71.3542004176869966 10.6606546424486996 6.6932286999999997 20.7178399999999989 9 88.5032590210318943 9.28832207002854915 9.52844400000000036 19.8945219999999985 1.7248964 0 0.823318499999999953 -0.0531005859999999982 0.876419069999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.764922246242008 -62.4926199613891029 22.9180101981358 -12.3144294519740995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779356672 2505482606779356672 484687774 2015.5 25.7421544974831988 0.633624456650836998 -2.53914758559843001 0.605498131317869004 0.238987451012175001 0.828722621795537018 0.288380499999999984 1.26083890745238003 1.27383388175881995 -2.19812990784433993 1.3156099605543401 0.142646600000000012 0.442051950000000027 -0.0472205060000000024 -0.0244927950000000012 -0.303613840000000024 -0.134723050000000011 -0.149874960000000002 0.0865865350000000061 0.172926550000000012 0.373514259999999987 151 0 148 3 0.87717540000000005 157.641006 0 0 31 false 0.0464952360000000023 1.61569201090491998 0.184403443058103994 0.041473030000000001 17 10 1.33988400000000007 0 17 false 148 130.961752115605009 1.05087760996885993 124.621002 20.395503999999999 13 79.5554457160032058 6.82726101384998962 11.6526160000000001 20.5997139999999987 13 85.5347847335080047 6.38999542514858998 13.3857350000000004 19.9315619999999996 1.26059879999999991 0 0.668151860000000042 0.204210279999999994 0.463941570000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.762678314370987 -62.4906002803189011 22.9187969711747996 -12.3122934682809007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482989032018560 2505482989032018560 1481023602 2015.5 25.7482690637440008 0.753068852048496051 -2.5275699730314698 0.609685685883233019 -0.232609425377721002 0.895541760898421968 -0.259741569999999977 9.45267387467301035 1.48941916910809002 -5.39596701191717987 1.25588206266943003 0.142742289999999994 0.470372300000000021 -0.106894520000000007 0.0163343100000000012 -0.121452673999999997 -0.0577342320000000034 0.0150855510000000009 0.0525667739999999967 0.11633425 0.200789649999999986 141 0 138 3 2.65702769999999999 180.393997 1.32597780093018991 0.658233649747191008 31 false 0.0386299829999999997 1.47958943664598008 0.211103677255785993 -0.0110946229999999996 16 10 1.35825770000000001 0 16 true 140 124.539948806675994 1.03319751477449007 120.538002 20.450094 11 50.1417143117516986 5.44239049097178018 9.21317900000000023 21.1008910000000007 13 169.221117808017993 21.8739760213458005 7.73618459999999963 19.1907840000000007 1.76138529999999993 0 1.91010670000000005 0.650796900000000011 1.25930980000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.763852375216999 -62.4775212215652971 22.9289593023543006 -12.3037625969061004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482164398298112 2505482164398298112 1052375709 2015.5 25.7657897637552011 0.0457277613501436975 -2.54833178261500004 0.0330125103649763982 1.54682460934224997 0.0526826998198157981 29.3611490000000011 26.122174014882301 0.0833915622445450949 -14.6420970681067004 0.068314741576005103 0.00509721900000000006 0.531888369999999999 -0.0470874829999999994 0.0511119439999999994 -0.204537510000000006 0.0120883589999999999 -0.0204504699999999984 0.0123555734999999996 0.0803596899999999975 0.210921200000000003 179 0 176 3 -1.2813886000000001 147.774994 0 0 31 true 11.1428609999999999 1.45538823092443992 0.0113125461358256005 -0.0174489619999999984 20 10 0.0825522540000000055 0 20 false 173 9178.90533051702005 5.34043788673831976 1718.76001 15.7813879999999997 17 3556.73813593242994 14.2953385054522997 248.804049999999989 16.4737590000000012 16 8161.19292542065978 18.2230622474524004 447.849699999999984 14.9825359999999996 1.27661530000000001 1 1.49122240000000006 0.692370400000000052 0.798851969999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.817379281555986 -62.4887397433461018 22.9378345452633994 -12.3294966222787004 100002 4405.33008 4341 4554.5 0.619000018 0.386000007 1.01049995 0.303000003 0.178399995 0.432099998 200111 0.772357170000000037 0.72259395999999998 0.795419399999999999 0.202416640000000009 0.187379359999999995 0.21745392999999999 +1635721458409799680 Gaia DR2 2505483023391756544 2505483023391756544 86835392 2015.5 25.7578487893118009 0.0397867693268428996 -2.5223961713631402 0.031447476531128199 0.181109699518042011 0.0479910106439307982 3.77382540000000022 21.2253684789931008 0.0719566229663562984 1.10714819688828991 0.0694062507355400066 0.0995245349999999973 0.551266900000000004 -0.0564874399999999999 -0.0148591279999999992 -0.190081919999999988 -0.156746880000000005 -0.328667280000000006 0.0750344839999999985 0.16555070999999999 0.338777360000000027 143 0 142 1 -1.26575710000000008 116.499001 0 8.58509129855884954e-16 31 true 20.3140830000000001 1.60482484914264001 0.0102577327914567008 0.0795151500000000067 16 10 0.0802680300000000041 0 16 false 139 15819.4000791924009 6.9174282798118103 2286.88989 15.190391 11 8226.86019515943917 7.07712944258172971 1162.45730000000003 15.5633029999999994 15 11210.4671535430007 14.3553236279100993 780.927500000000009 14.6378599999999999 1.22870199999999996 0 0.925442699999999951 0.372912399999999977 0.55253030000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.777740561488997 -62.4687370041971022 22.9400141473578998 -12.3024585548449998 100001 5377 5102.66992 5664 1.63600004 1.18620002 2.13599992 0.822000027 0.625 1.11010003 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483023391756416 2505483023391756416 222339068 2015.5 25.7591874785079007 0.0720254155638604954 -2.52071781477390999 0.0516698860863420983 2.58971746436258998 0.0876282642273144008 29.5534500000000016 -19.7168526270820017 0.126261973354341001 -35.1064606163544966 0.0980793966756241947 0.0617883840000000018 0.559593000000000007 -0.00338075219999999996 0.0923498650000000032 -0.182053970000000009 -0.0187248960000000013 -0.0058544640000000002 0.0549051799999999979 0.177490490000000001 0.211865629999999999 161 0 161 0 6.45500600000000002 299.022003 0.316344750335647018 6.46029535929366006 31 true 4.86541460000000026 1.4106860852291101 0.0172663911686271009 0.0510103179999999989 18 10 0.118334900000000007 0 18 false 160 7955.92659089136032 6.5243925665225202 1219.41003 15.9366389999999996 16 2353.94078710438998 22.3101031790173998 105.510080000000002 16.9219000000000008 15 8482.72968391299946 23.7504263484940985 357.161159999999995 14.9405809999999999 1.36208780000000007 0 1.98131849999999998 0.985260959999999963 0.99605750000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.778792381187998 -62.4666467630168967 22.9419175000739983 -12.3013874771455995 100001 3728 3662 3833.84009 0.873000026 0.500899971 1.36609995 0.400299996 0.250999987 0.626699984 200111 0.734553340000000055 0.694556799999999974 0.761269569999999951 0.0938955499999999943 0.0873047859999999953 0.100486309999999995 +1635721458409799680 Gaia DR2 2505482267477512960 2505482267477512960 1391332376 2015.5 25.7772616959182983 0.0364085209169257018 -2.53213294567291003 0.0249179437894975001 1.96790237156387993 0.0406834568765861992 48.3710700000000031 15.5089517500742993 0.0610534479092003993 0.163153243262958991 0.0545819489057033022 0.0515698750000000011 0.609040299999999979 -0.0718037299999999962 0.0152126494999999997 -0.0800366899999999937 -0.0344220179999999987 -0.199090270000000014 0.011739869 0.0550500339999999977 0.222572450000000005 178 152 173 5 3.71328570000000013 244.813995 0 0 31 true 203.704859999999996 1.60086484628931003 0.00899235180475196037 -0.0389946440000000019 20 10 0.0433194530000000008 0 20 false 168 147760.769832546997 44.2774389987313981 3337.15991 12.7644680000000008 17 80466.2024836945056 128.113703897188003 628.084299999999985 13.0873550000000005 18 96648.4525585262018 71.1419141109374067 1358.5304000000001 12.2989329999999999 1.1986581999999999 0 0.788421629999999984 0.322886469999999981 0.465535160000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.824679100601003 -62.4691854214522024 22.9548281078933982 -12.3186281430304003 100001 5910.5 5736.08008 6377.99023 0.125200003 0.0509000011 0.268999994 0.0623000003 0.0260000005 0.133100003 200111 1.16649059999999993 1.00175520000000007 1.23851040000000001 1.49607739999999989 1.44888400000000006 1.54327079999999994 +1635721458409799680 Gaia DR2 2505481988304064128 2505481988304064128 614142009 2015.5 25.8028981061329006 0.166910178287069999 -2.54623979319126015 0.134670301582106994 0.0134766985890229993 0.206653322589850003 0.0652140449999999983 3.28454260757960004 0.332556426410956008 -7.22250470463418992 0.266380722072959986 -0.00313837699999999992 0.393611880000000025 0.125791070000000005 0.0249029319999999992 -0.308040140000000018 -0.0650104660000000029 -0.0558819170000000032 -0.0133609699999999998 0.200388270000000007 0.178446369999999993 140 0 140 0 0.903976859999999993 149.690002 0.0515572420975462034 0.0167480679922309 31 false 0.790783349999999996 1.61627385500727994 0.0471010497353476013 -0.0459408399999999967 16 10 0.301951499999999984 0 16 false 139 941.50541789699605 1.91897997698696998 490.627991 18.2538090000000004 14 537.822034238478977 7.50291325000847031 71.681759999999997 18.5247920000000015 14 613.660395905067048 9.09475552636708962 67.4741000000000071 17.7920990000000003 1.22302259999999996 0 0.732692699999999975 0.27098274 0.46170998000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.887832217554006 -62.4708805398853002 22.9739248732135017 -12.3411421771739001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485767875711360 2505485767875711360 1665531101 2015.5 25.6720419527737 0.968729234250293003 -2.51660714489426995 0.717060370999345054 \N \N \N \N \N \N \N 0.0148558860000000004 \N \N \N \N \N \N \N \N \N 159 0 159 0 233.870699999999999 148638 6.33293091760056015 8014.86745679217984 3 false 0.0247079559999999997 \N \N -0.0249311439999999988 18 10 1.77532230000000002 0 18 true 159 57435.9341030713986 195.953420995008003 293.109985 13.7904060000000008 17 13956.1651703018997 38.2073633968870965 365.274229999999989 14.9894730000000003 17 70642.0056492777949 81.3499963827687935 868.371340000000032 12.6392620000000004 1.47291360000000005 0 2.35021110000000011 1.19906709999999994 1.15114399999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.604723946587995 -62.5002492982626023 22.8605689455936982 -12.2656311621843006 130001 3600 3424.5 4195.64014 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485870954940160 2505485870954940160 207058766 2015.5 25.6863184584194002 0.36052304988304501 -2.51594658368115986 0.314870119970602991 1.81755437930711006 0.447709286912810978 4.05967500000000037 15.9881294260349005 0.721914243955898982 1.9720414032853899 0.63917682579345303 0.0858239300000000066 0.451007460000000027 -0.0214032070000000005 0.0732087599999999977 -0.301218480000000011 0.138170290000000001 0.236101090000000013 -0.0693433900000000047 -0.0484988579999999989 0.320157199999999975 155 0 152 3 3.32348180000000015 210.817993 1.25609849014590003 3.04036212400977002 31 false 0.151200410000000007 1.36447759483407993 0.0919708123733499056 0.0157264249999999987 18 10 0.696936099999999947 0 18 false 151 358.544118173412016 1.61567850492307996 221.916 19.3020099999999992 15 98.200840574385694 11.0149719602248997 8.91521499999999989 20.3710999999999984 14 440.92406883050802 10.450984951933 42.1897129999999976 18.1510099999999994 1.50365009999999999 0 2.2200890000000002 1.06908990000000004 1.15099909999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.632031316285008 -62.4935531315150001 22.8743952561009003 -12.2702492011674007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485875250040704 2505485875250040704 46255932 2015.5 25.6858470162059014 0.0599421135168749022 -2.50535495185280022 0.0457973841371399001 3.80790241270022989 0.0711317466379713936 53.5330920000000035 64.0428371887062013 0.114754041350770997 20.2097286175208986 0.0922310240673312048 0.00741851330000000038 0.49703892999999999 -0.0261729999999999983 0.0814849599999999952 -0.300905880000000014 0.188693969999999989 0.230536390000000008 -0.109270930000000002 -0.0798892300000000055 0.300179240000000014 168 0 166 2 5.43467660000000041 278.575989 0.267684330243027013 5.65870346143984015 31 false 6.58298299999999958 1.31312904982717993 0.0146361871517264996 0.0050061083999999997 19 10 0.113197333999999997 0 19 false 166 10242.8560153396993 7.49379202878836015 1366.84998 15.6623129999999993 19 2592.90467641413989 15.5315342309445992 166.944529999999986 16.8169210000000007 18 11707.4565258314997 21.2391817025695993 551.219699999999989 14.5907640000000001 1.39613019999999999 0 2.22615719999999984 1.15460779999999996 1.0715494000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.621301965239013 -62.4841807545774017 22.8779230911239999 -12.2602232077852005 100001 3528 3497.33008 4103.22998 1.43350005 1.06200004 1.94379997 0.677999973 0.486000001 0.931999981 200111 0.680664999999999965 0.503199159999999979 0.692654299999999945 0.0646659799999999979 0.0621188699999999996 0.067213096 +1635721458409799680 Gaia DR2 2505485943969516928 2505485943969516928 567097816 2015.5 25.6749796144073983 0.0942922073723053006 -2.49148759376081985 0.0742740885033453951 1.95327886929870997 0.106555573016361996 18.3310810000000011 18.9581779766068017 0.185301929403603988 -11.3957155623277995 0.139596166514629 0.0739725199999999999 0.434628579999999987 -7.22142800000000028e-05 0.161375419999999992 -0.228806869999999996 0.259887839999999981 0.313275840000000028 -0.111027039999999994 -0.0535558459999999972 0.277827800000000014 143 0 143 0 4.57075899999999979 227.781998 0.371995437222023995 4.15730545504337989 31 false 2.78165359999999984 1.40518525385848991 0.0242547007447948999 -0.0208170500000000001 17 10 0.175748900000000013 0 17 false 143 4251.03252317570968 3.95034003501868014 1076.12 16.6171299999999995 15 1270.97727247605008 14.0143806021867992 90.6909299999999945 17.5910429999999991 13 4469.72488272183 12.3397523755983993 362.221600000000024 15.6362179999999995 1.3504254 0 1.95482540000000005 0.973913200000000034 0.980912200000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.587231144863011 -62.4762845010875978 22.8727932262992013 -12.2433398089722996 100001 3815.1499 3702 4324.12988 0.57069999 0.0970000029 1.11199999 0.333999991 0.0538999997 0.54549998 200111 0.659710939999999968 0.513546940000000007 0.700654800000000022 0.0830708299999999983 0.0737730899999999995 0.0923685649999999997 +1635721458409799680 Gaia DR2 2505486180196419200 2505486180196419200 936185823 2015.5 25.6815758813337993 2.37792184743436996 -2.48429626136269999 2.61030366525556001 \N \N \N \N \N \N \N 0.724347100000000022 \N \N \N \N \N \N \N \N \N 56 0 56 0 0.187827440000000012 52.2402 0 0 3 false 0.0190932140000000007 \N \N 0.115362346000000004 7 7 10.1222969999999997 0 7 false 57 71.1196956869274999 1.55872149330177989 45.6268997 21.0583920000000013 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.593475359040013 -62.4669670433751989 22.8817658879754013 -12.2390672594082996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486562444806784 2505486562444806784 536805264 2015.5 25.6873114590948006 2.22045193853853995 -2.46987303415810011 1.70600648419242007 \N \N \N \N \N \N \N -0.0316029000000000032 \N \N \N \N \N \N \N \N \N 148 0 147 1 42.8934500000000014 2780.33008 13.5676364138727994 520.459842274830976 3 false 0.00489766199999999968 \N \N -0.0168029680000000015 19 10 3.93603300000000011 0 19 false 164 221.613681362532986 2.29371903535369981 96.6175995 19.8243749999999999 17 264.77798015822998 7.64542419767701009 34.6322169999999971 19.2941840000000013 18 617.33024762488003 6.89770859417466031 89.497870000000006 17.7856249999999996 3.9803869999999999 0 1.50855830000000002 -0.530191399999999979 2.03874969999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.591352621746012 -62.4514782886826012 22.8926339807273003 -12.2277512197541007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483263909342848 2505483263909342848 873618825 2015.5 25.7230311578904001 0.628393578937826991 -2.51008946629647012 0.583987184797265968 -1.54777904660068 0.810194838257690009 -1.91037879999999993 3.61293709496474014 1.3312838816891801 -9.50472244604089056 1.22801873489005997 0.147046310000000013 0.388389399999999996 0.11343657 0.0314253160000000017 -0.281528200000000006 0.0872780199999999978 0.213768600000000003 -0.153414410000000001 -0.0341235199999999975 0.327057119999999979 139 0 139 0 -0.0442547429999999992 132.613998 0 0 31 false 0.0508037319999999973 1.73609986815988004 0.176651076284218 0.04391954 17 10 1.30592559999999991 0 17 false 144 136.516683603850993 1.22980673919679995 111.007004 20.3504000000000005 15 55.4322616961627972 6.60328812474523019 8.39464599999999983 20.9919820000000001 15 148.995564035417004 7.17978082127442008 20.7521060000000013 19.3289870000000015 1.49745670000000008 0 1.66299440000000009 0.641580599999999945 1.02141379999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.698340141131013 -62.4725529125156029 22.9115131034066017 -12.2782535208924006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483092111321600 2505483092111321600 300725990 2015.5 25.7470930991831999 0.615949790160470023 -2.50507857513941978 0.576065082935074968 0.17083423592358099 0.740431299413868982 0.2307226 1.3566457059074899 1.24770832424945 -13.3442158960606001 1.51433627868867005 0.183556699999999989 0.476155639999999991 -0.0853059600000000001 -0.131933880000000003 -0.172984350000000009 -0.202235899999999996 -0.323469600000000024 0.0104017799999999994 0.0681874160000000007 0.418005320000000014 150 0 148 2 -0.101556179999999996 140.628998 0 3.36122182027953985e-15 31 false 0.0509850940000000016 1.09698136891593001 0.182388537996171995 0.00996501999999999978 17 9 1.48249589999999998 0 17 false 147 138.511025002157993 1.11943763159304011 123.733002 20.334655999999999 12 99.4417625773912022 14.4592671117652998 6.87737230000000022 20.3574659999999987 13 110.764790344076999 9.28467602726851027 11.9298500000000001 19.6509150000000012 1.51761600000000008 0 0.706550600000000029 0.0228099819999999995 0.683740600000000032 \N \N 0 \N \N \N NOT_AVAILABLE 151.740661843351006 -62.4577139330597007 22.9362816089219983 -12.2824070930121998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486390646115200 2505486390646115200 899474296 2015.5 25.7085648681384988 0.393615117469362008 -2.47618770592444015 0.368277828221283021 -0.917662549705054009 0.50714879260219603 -1.80945430000000007 2.09861926096058005 0.782601900762782021 -4.91189341863332984 0.708015397217035991 0.103636450000000005 0.447185779999999977 0.0436840800000000001 0.0797129649999999967 -0.320239779999999974 0.133467210000000003 0.316299470000000027 -0.0826114939999999937 -0.0410947539999999972 0.307054070000000012 166 0 165 1 0.543934350000000011 169.235992 0 0 31 false 0.113876060000000001 1.78646835351495992 0.106217337847373999 0.0110753840000000006 19 10 0.761172350000000053 0 19 false 165 242.757196466788002 1.21863695929464 199.203995 19.7254350000000009 16 152.484429733819013 6.63414813501729039 22.9847800000000007 19.8933239999999998 15 168.434475259109007 9.33847162660618046 18.0366210000000002 19.195843 1.32197490000000006 0 0.697481160000000044 0.167888640000000006 0.529592500000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.638690117039999 -62.4481079976225004 22.9104771710495996 -12.2414135679943996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486321926638336 2505486321926638336 1220524893 2015.5 25.7215683659063004 0.241262705243163011 -2.47508881902242006 0.216642971246398003 2.22689844606663012 0.30724922614665201 7.24785699999999977 15.4548672291789 0.481409973672866975 2.5999261489360701 0.428365317104168974 0.0856661900000000032 0.451267399999999985 0.0602687199999999978 0.0669705639999999963 -0.319544459999999975 0.140104119999999999 0.287633750000000021 -0.109604450000000006 -0.0571229870000000001 0.316974880000000014 160 0 157 3 0.602063099999999962 162.044006 0 0 31 false 0.328115500000000004 1.2536063790843599 0.0638509377222493957 0.0250540409999999991 19 10 0.467688559999999975 0 19 false 157 483.406889636208973 1.43136679682737999 337.723999 18.9775829999999992 17 99.9577922545773987 8.94070807655690913 11.1800759999999997 20.3518469999999994 17 641.356812464674022 14.9467627661392992 42.9094120000000032 17.7441710000000015 1.53352090000000008 0 2.60767559999999987 1.37426380000000004 1.23341180000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.663053633993002 -62.4415539095492989 22.9232570801145989 -12.2451554719698006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483366989139072 2505483366989139072 979492287 2015.5 25.7408448286845015 0.303733505329835007 -2.49060420598472021 0.225704489151733995 0.578157568213650053 0.35863360675141398 1.61211199999999999 12.6485533900359997 0.570235635325577972 -10.6855244047075004 0.417000427219337999 0.0191170569999999998 0.499288100000000012 0.0298566460000000006 0.0803905800000000031 -0.204268110000000003 0.0296889320000000012 0.203591699999999987 -0.00910420800000000079 0.106504050000000003 0.129809050000000009 178 0 176 2 4.61826500000000006 270.509003 1.13739439569699008 3.46342803413763001 31 false 0.210512900000000003 1.38992545908344001 0.0742942839732844973 -0.0305164009999999986 20 10 0.505597900000000045 0 20 false 176 465.87836774277099 1.54863497538506989 300.832001 19.0176850000000002 16 161.333765067405011 5.89637732376986978 27.3615059999999986 19.8320749999999997 15 477.68461417015601 5.4550307177187598 87.5677199999999942 18.0640660000000004 1.37164210000000009 0 1.76800920000000006 0.814390199999999953 0.953618999999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.715040461034988 -62.4473185396743986 22.9357697884295995 -12.2666519677183992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486596804544768 2505486596804544768 1346880800 2015.5 25.6954627591882989 0.0261573111087857989 -2.46558392949207006 0.0193327057837917003 0.977945533981038007 0.0299340695672668002 32.669983000000002 -3.82922234745494006 0.0474004177386850023 -5.82388748523425992 0.0454661308762654981 0.0132773200000000004 0.570321900000000048 -0.025073050999999999 -0.0173912550000000013 -0.186015010000000008 0.0371930499999999983 0.0351732969999999992 -0.0689238600000000035 -0.0673536799999999991 0.273202840000000002 150 0 146 4 3.25366540000000004 202.151001 0.0688228079598959958 1.15515687140389001 31 false 82.3343600000000038 1.61171151572271998 0.00697225337457620022 0.00199649650000000012 17 10 0.0558516459999999978 0 18 false 142 112478.736506836998 49.6878129568247999 2263.70996 13.0606899999999992 18 62746.8387187935004 75.6253788689591033 829.706099999999992 13.3574090000000005 17 72898.6208678161056 76.8284531781519036 948.849240000000009 12.6051219999999997 1.20596539999999997 0 0.752286899999999981 0.296718599999999999 0.455568299999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.60330781913899 -62.4441205354179019 22.9019956842981003 -12.2267479323867008 100001 6013 5477.24023 6479 \N \N \N \N \N \N 200111 1.97455200000000008 1.70072869999999998 2.37972859999999997 4.59194499999999994 4.25071599999999972 4.93317400000000017 +1635721458409799680 Gaia DR2 2505486596804573568 2505486596804573568 1387947787 2015.5 25.6930732334395984 0.0674898522629635983 -2.46197859665184993 0.0541517683427190991 0.140310522301040991 0.0805289800174080056 1.74236060000000004 -0.158051347418889987 0.128689001610145987 -2.11635646533704991 0.122155738463917002 0.0730040099999999942 0.526892200000000033 -0.00421519669999999985 -0.00341926280000000001 -0.17842021999999999 0.0735834999999999961 0.17314083999999999 -0.101792400000000005 -0.0861387849999999955 0.272050400000000026 138 0 134 4 -0.125739899999999988 126.332001 0 0 31 false 5.69307099999999977 1.52143649388649993 0.0173596095237378983 0.04946826 16 10 0.130098419999999992 0 16 false 134 4969.44393633850996 4.82854217954106968 1029.18005 16.4475960000000008 15 2235.13540702599994 10.7267629661251007 208.369979999999998 16.9781280000000017 15 3883.60203792899983 12.8013278033598006 303.374939999999981 15.7888339999999996 1.23127209999999998 0 1.1892948000000001 0.530532840000000006 0.658761999999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.595312103919014 -62.4418811982149009 22.9010761737858992 -12.2225182614933008 100001 4885.04004 4803.02002 4984.20996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487520226214144 2505487520226214144 1471091072 2015.5 25.6803049543412989 1.10317268809668989 -2.43310049165240017 0.755251680324623975 1.55835716601270002 1.44908244694495991 1.07540970000000002 3.85372711430945003 1.42886623579003991 -1.25524215452676002 1.35766657991765993 -0.232705410000000001 0.785488100000000022 0.0641990149999999982 -0.091416105999999997 -0.446452679999999991 0.0889240899999999973 0.435956979999999994 -0.0373921300000000026 -0.174909039999999988 0.243136450000000004 127 0 125 2 3.60109700000000021 183.992004 2.61864028877457988 2.85196320159445982 31 false 0.0403255819999999987 1.1884852022905299 0.191669470188148006 0.0104606360000000006 15 9 1.51073180000000007 0 16 false 125 155.736464350948012 1.40675832815794011 110.706001 20.2073900000000002 13 56.8496971803441014 6.1954682095606497 9.17601299999999931 20.9645669999999988 14 172.063071640425989 10.9202334713128995 15.756354 19.172699999999999 1.46987259999999997 0 1.79186629999999991 0.757177349999999971 1.03468899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.543747288795004 -62.4212134193436015 22.8997702831696017 -12.1909738884133994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487593236956544 2505487593236956544 125283511 2015.5 25.6692208985497992 0.139781188360183994 -2.42498849934341987 0.0886660069277453999 0.138962784779165988 0.175030614568428 0.793934169999999995 8.44831517778746921 0.197471386470166987 -1.96266502361626993 0.168040481472200992 -0.147182480000000004 0.736457600000000046 -0.00101252489999999998 0.00569162900000000013 -0.375615839999999979 0.175679279999999993 0.283776939999999978 -0.0985859560000000024 -0.112949170000000002 0.313944669999999981 138 0 136 2 -0.748832799999999965 118.624001 0 0 31 true 2.19982670000000002 1.59033114658847996 0.0270464700553059989 0.0101476770000000008 16 9 0.193312840000000014 0 16 false 136 2190.55174402807006 2.80599883769611003 780.666992 17.336983 13 1214.06026687185999 10.7698752119879 112.727424999999997 17.6407869999999996 13 1467.85817416394002 10.6561017106898994 137.748140000000006 16.8452100000000016 1.22431179999999995 0 0.795578000000000007 0.303804399999999974 0.491773599999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.514641166932989 -62.4185974776533996 22.8922742340660008 -12.1793655874532991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487588941871104 2505487588941871104 787498930 2015.5 25.6799733840664004 1.23792357550867993 -2.42452958092684989 0.829506879906069972 -2.80767650030088012 1.66654833962828008 -1.6847255000000001 0.199436922128923999 1.5674070233217301 -0.784112632731645998 2.43096785742470001 -0.248506139999999986 0.83312940000000002 -0.101153179999999995 -0.370613199999999976 -0.453350699999999995 -0.0212581340000000014 0.156700570000000011 -0.138859079999999996 -0.363867820000000008 0.49038503 104 0 103 1 -3.52961299999999989 55.9654007 0 0 31 false 0.0425423759999999998 1.64699974921030989 0.246883805112546012 -0.00485499100000000034 12 7 2.4041847999999999 0 12 false 103 119.444439930800002 1.1677315089162299 102.288002 20.4954509999999992 11 103.001306516192003 7.09080543671214958 14.5260370000000005 20.3192799999999991 9 101.616099110421004 12.7699607344774009 7.95743229999999979 19.7445139999999988 1.71307600000000004 0 0.574766160000000026 -0.176170350000000003 0.750936500000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.535205099944989 -62.4136024959734002 22.9026708648103998 -12.1828787163059999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487558877218304 2505487558877218304 425582111 2015.5 25.690818521557901 0.0455063550004849993 -2.42770947692502981 0.0297725873651829009 1.10145422484204003 0.0558220097649727992 19.731539999999999 13.3515718848793998 0.065790391392229905 -9.01928888033691933 0.0595122457210892977 -0.0707173049999999942 0.72134520000000002 0.0048621306000000003 0.0723778800000000055 -0.315235939999999992 0.103301376 0.0839306499999999955 -0.0222225319999999997 0.00986333999999999995 0.35703995999999999 144 0 144 0 -1.30999409999999994 117.683998 0 0 31 true 28.3388370000000016 1.5672197182191101 0.0102148676704303006 0.0254594260000000003 17 9 0.0697230699999999981 0 17 false 143 22810.0796460921993 10.2617583272792992 2222.82007 14.7930489999999999 14 11475.2885625396993 25.0466541805949987 458.156560000000013 15.2019789999999997 14 16315.5261188643999 30.9871188933397015 526.52606000000003 14.2304169999999992 1.21835669999999996 0 0.971561429999999948 0.408929819999999999 0.562631600000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.559296033114009 -62.4118558683056008 22.9117906481747013 -12.1898107861483993 100001 5347 5246.25 5585.33008 0.306699991 0.171200007 0.41929999 0.152700007 0.0834999979 0.209999993 200111 1.0243831000000001 0.938824699999999956 1.06410570000000004 0.772787699999999966 0.688014800000000037 0.857560600000000006 +1635721458409799680 Gaia DR2 2505487558877218048 2505487558877218048 180126752 2015.5 25.6933823861832984 0.0962134202146650019 -2.42679273320975009 0.069950722099631199 0.447998048695397999 0.126669722153439995 3.5367415000000002 2.11317612157003998 0.141967604332319003 0.849949715387309013 0.120256674314406994 -0.158017560000000001 0.699075039999999981 0.055514413999999998 0.113460320000000003 -0.461071339999999996 0.115779400000000005 0.190895039999999988 0.00767911700000000006 0.0426077730000000016 0.336165040000000026 141 0 140 1 1.62327709999999992 162.712006 0.174014886917184003 1.04294079424411001 31 true 4.24674559999999968 1.61753956119893005 0.019997963689983099 0.0372740630000000031 16 9 0.138787510000000003 0 16 false 139 4504.31619465800031 4.71264199953642038 955.794006 16.5542930000000013 14 2490.96300655127015 13.0161505506483994 191.37478999999999 16.8604699999999994 14 3012.16830886234993 26.0006339032902005 115.849800000000002 16.0647219999999997 1.22174619999999989 0 0.795747760000000026 0.306177140000000014 0.489570620000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.56345308093799 -62.4099335079529993 22.9145726653847994 -12.1898972868883 100001 5963.5 5750.75 6142.1001 0.0405000001 0.00800000038 0.144999996 0.00870000012 0.00240000011 0.0546999983 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487627596694272 2505487627596694272 341084610 2015.5 25.6888575822178993 0.105320759287436005 -2.4200586912110098 0.0656572745178941042 0.94217515982984501 0.131870689258924007 7.14468960000000042 -2.03546312255304995 0.145356354682764005 2.81060226097203003 0.121033513021715999 -0.134536559999999999 0.744997699999999985 0.0146432739999999995 0.0337222549999999996 -0.359667840000000016 0.163450499999999999 0.279699409999999982 -0.0727101500000000012 -0.0711887499999999951 0.297360500000000028 150 0 150 0 0.552152450000000017 153.912994 0.0763209250092826974 0.169696979109173002 31 false 3.85022399999999987 1.55708541885510998 0.0198978159391537991 0.0158830530000000011 17 9 0.140937299999999988 0 17 false 148 3612.66130692257002 3.88924086976563999 928.885986 16.7937979999999989 15 1773.71565352083007 35.6733621549518034 49.7210120000000018 17.229177 14 2709.08377236152 13.2457120412530003 204.52534 16.179863000000001 1.24085800000000002 0 1.04931449999999993 0.43537903 0.613935499999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.548421732457001 -62.405772594962599 22.9127963237101007 -12.1819745493097997 100001 5144.49023 4974.72021 5288.97998 0.128000006 0.0240000002 0.200100005 0.0604999997 0.0120000001 0.0974999964 200111 0.522868160000000026 0.494690359999999996 0.559165660000000009 0.172523919999999997 0.123397690000000004 0.221650139999999995 +1635721458409799680 Gaia DR2 2505486734243546496 2505486734243546496 780747365 2015.5 25.7236289778229015 0.957745596322362003 -2.43863174667785998 0.753869404796074005 -1.83165578775265003 1.37241934574825009 -1.33461819999999998 5.65618318763259964 1.4050641404789701 -9.64144268249530967 1.6858744620052899 -0.287352800000000019 0.757767700000000044 0.0264719149999999986 -0.139684890000000006 -0.567275100000000032 -0.0029583439999999999 0.106605634000000005 -0.0507214630000000014 -0.149951639999999997 0.46545002000000002 135 0 135 0 0.962531150000000002 145.427002 0 8.81319796442941009e-16 31 false 0.0419116470000000033 1.85501146067185996 0.220029209937046999 0.0104319530000000008 16 9 1.68183280000000002 0 16 false 136 130.907352203795995 1.09920582602414996 119.093002 20.3959560000000018 13 71.216686056704205 6.2292785070126202 11.4325729999999997 20.7199339999999985 14 142.826247072288993 9.13285164142589068 15.6387350000000005 19.3749000000000002 1.63507190000000002 0 1.34503360000000005 0.323978419999999989 1.02105519999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.633364975565001 -62.4077237809151981 22.9388952858682984 -12.2119926204651001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492678478234752 2505492678478234752 1243422910 2015.5 25.7130364520421999 0.0469151283538613989 -2.42803405166697006 0.0306749370193870989 1.94545233900072989 0.0566323047464436027 34.3523449999999997 12.6458866080317005 0.0727326461011573028 -20.5433237103042998 0.0642558881216021005 -0.170281779999999994 0.685574099999999964 -0.0513468399999999978 -0.000281669429999999979 -0.391307599999999978 0.141023520000000013 0.139032949999999988 -0.0996237100000000042 -0.108168059999999996 0.327416959999999979 158 0 156 2 -3.1912866000000002 101.541 0 0 31 false 20.3812700000000007 1.51913344259122995 0.0106733795202253005 -0.0312456249999999991 18 9 0.0762690449999999937 0 18 false 154 16445.7168921875018 7.62047269955229023 2158.1001 15.1482329999999994 18 7482.85803533499984 16.4219414875399998 455.662199999999984 15.6662199999999991 17 12912.8811374627003 19.1459158140991015 674.445740000000001 14.4843620000000008 1.24018549999999994 0 1.18185809999999991 0.517986300000000011 0.663871769999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.602929485758011 -62.4026689439226985 22.9327972811470993 -12.1982526479693991 100001 4911.33008 4885 5029.25 0.0680000037 0.0194000006 0.2676 0.0289999992 0.00800000038 0.1087 200111 0.607369069999999955 0.579222000000000015 0.613935000000000008 0.193373870000000003 0.181211559999999994 0.205536190000000007 +1635721458409799680 Gaia DR2 2505492605465213952 2505492605465213952 1478610491 2015.5 25.7276445391453983 3.16559991133707985 -2.42792175289174983 4.99152609301258021 \N \N \N \N \N \N \N -0.469013569999999991 \N \N \N \N \N \N \N \N \N 47 0 47 0 1.16829230000000006 52.8623009 3.29045362113661 0.742140553140539949 3 false 0.0131764729999999993 \N \N 0.138841290000000006 6 5 17.4793969999999987 0 6 false 50 63.264661890574402 1.55789424657400999 40.6091003 21.1854629999999986 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.631302970857007 -62.3963269776581981 22.9467317735104999 -12.2034993873229993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492712837972608 2505492712837972608 1387741801 2015.5 25.7299473025843994 0.154494505354497991 -2.42045377145859986 0.122320523042726004 0.444647036533932005 0.194544578068150009 2.28557919999999992 3.76302197342522016 0.280906482382529021 -2.9381202141344902 0.227114145065167999 -0.0646834099999999967 0.548479860000000041 0.031692320000000003 0.0483755059999999987 -0.394330650000000005 0.153530510000000009 0.316213730000000026 -0.0932044900000000009 -0.0785032600000000053 0.270590659999999983 168 0 165 3 1.33059470000000002 184.268997 0.170768162084423997 0.243955267626273009 31 false 0.95406084999999996 1.64259580068132993 0.0369732138358149984 0.00914446300000000024 19 10 0.263706180000000012 0 19 false 165 1201.98636014166004 1.88412435453990001 637.955017 17.9886170000000014 18 703.896762418758044 7.99559315140488991 88.0355899999999991 18.2326160000000002 16 764.283395624393961 9.96807966806773926 76.6730799999999988 17.5537829999999992 1.22146149999999998 0 0.67883300000000002 0.243999479999999991 0.434833530000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.628897251054013 -62.3885925669672972 22.9517229291369986 -12.1973948862762001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492433664553216 2505492433664553216 1574997861 2015.5 25.747294098483799 0.54253876618490704 -2.4397981650862901 0.437972925580423 0.247334622147241001 0.726146997636397007 0.340612320000000024 8.02326999453651979 1.00962407378391994 -11.3229840044167993 0.770122446761707047 -0.136711959999999993 0.528861460000000005 0.19923884 -0.00997001699999999942 -0.496359500000000009 0.124989144999999996 0.358915870000000026 -0.156119900000000006 -0.115490675000000001 0.24714214000000001 149 0 147 2 -0.987275499999999973 125.389 0 0 31 false 0.0931430599999999997 1.53382250862196989 0.122565849592518997 -0.0179931759999999996 17 10 0.93335939999999995 0 17 false 148 220.469247601077996 1.47365618983015989 149.606995 19.8299960000000013 14 117.499993345739995 8.49698854550618066 13.8284280000000006 20.1762939999999986 14 161.112707376601008 12.5819410233462996 12.8050759999999997 19.2440950000000015 1.26372590000000007 0 0.932199499999999959 0.34629821999999999 0.585901259999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.680568019611997 -62.3986555106187026 22.9609647984873 -12.2217461490145993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492433664555264 2505492433664555264 1425973345 2015.5 25.7530750935578006 0.607604088024274014 -2.43195883855158979 0.616590805318192992 -0.225650875275760998 0.937427157649895038 -0.240712969999999998 -0.689757286856915952 1.0994362987694799 -0.498775640542450993 1.22261176909582003 -0.17611249000000001 0.62482333000000001 -0.0631903560000000031 -0.0904856200000000027 -0.609338460000000026 0.315496620000000005 0.484288070000000015 -0.246273760000000008 -0.351169899999999979 0.512880800000000026 150 0 148 2 1.25597259999999999 164.576004 1.12767070930105007 0.805437771242080047 31 false 0.0695562900000000067 1.61331598671701992 0.158062312311764014 0.0547421099999999966 17 9 1.33769139999999997 0 17 false 149 199.227594576998001 1.74289295594787008 114.308998 19.9399930000000012 16 150.044732907936009 9.71923211123523068 15.4379209999999993 19.9108370000000008 15 159.752699905571006 7.81318017586550972 20.4465660000000007 19.2532999999999994 1.55499260000000006 0 0.657537460000000018 -0.0291557310000000007 0.686693200000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.684581507208009 -62.3890974945172019 22.9694034213081011 -12.2165698386766994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483431416320512 2505483431416320512 1297516149 2015.5 25.7585927599333999 0.129488434914824008 -2.48647827983368996 0.0752553312826901022 0.520333036025943052 0.152149448286708011 3.41988100000000017 4.35120228411028975 0.181594104410914003 -2.62066747791486998 0.147612063283827005 -0.144253280000000011 0.730548500000000045 0.02336974 0.0408766500000000005 -0.295835940000000019 0.0194188430000000016 0.0589060630000000016 0.010822066 0.0384623330000000013 0.205202340000000011 153 0 149 4 1.09851429999999994 162.733994 0.131601218632391992 0.336723447521363017 31 true 2.34334750000000014 1.55612982579330006 0.0268070180492921001 -0.026961961999999999 18 9 0.167251440000000001 0 18 false 149 2412.2401916274498 3.19121941934960018 755.898987 17.2323149999999998 14 1156.81556917710009 8.52354063113654981 135.720079999999996 17.6932280000000013 16 1832.08479745527006 14.3232600935254997 127.909760000000006 16.6045550000000013 1.2390559000000001 0 1.08867259999999999 0.460912700000000009 0.627759929999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.745830132544 -62.4359826891066021 22.9541997915495983 -12.2693145271580999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483225254657664 2505483225254657664 1189102208 2015.5 25.7756275982731005 0.774509040351555988 -2.49094188306496012 0.485380967619518988 1.24317566523429002 1.00019415080235996 1.24293429999999994 -0.720369380264294978 0.966056895511421043 -0.52116640546173898 0.787326840878900036 -0.130694940000000009 0.787202999999999986 0.192551090000000008 0.185866279999999995 -0.324427200000000027 -0.0362652840000000018 0.245208700000000002 0.154499019999999987 0.207231100000000001 0.18991733999999999 152 0 150 2 1.23637390000000003 166.358994 0 1.66898024507050002e-15 31 false 0.0689586199999999983 1.59852955830999011 0.149139700614407011 -0.0101231480000000002 17 9 1.05467590000000011 0 17 false 150 181.849959750040995 1.47850702403547007 122.996002 20.0390830000000015 16 120.886131369658003 8.51649567320635015 14.1943509999999993 20.1454470000000008 14 118.265135532054998 8.27019453741512933 14.3001629999999995 19.5797789999999985 1.31510210000000005 0 0.565668100000000007 0.106363299999999994 0.459304800000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.783183514249998 -62.4327020733464977 22.9687294137184992 -12.2797065395833993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483500132570624 2505483500132570624 1015704720 2015.5 25.7574825916892003 0.958176910025281048 -2.46853749637790987 0.589382501315974028 -2.25822373976895019 1.21025686651562991 -1.86590450000000008 5.52876352622376022 1.27045161090846004 -13.5697621611802006 1.06872720451314995 -0.247890339999999987 0.761741639999999998 0.122832629999999998 0.0910722540000000053 -0.408505049999999981 -0.124257259999999994 -0.0119598310000000006 0.148065790000000003 0.178419560000000005 0.178305799999999987 155 0 151 4 0.647073499999999968 156.639008 0 0 31 false 0.0408454160000000024 1.16334802865942999 0.211744742045859996 -0.0589712900000000026 18 9 1.29652980000000007 0 18 false 151 123.646547582447994 1.11125737158005999 111.266998 20.4579099999999983 14 67.4504488905107991 6.72717329430721023 10.0265664999999995 20.7789269999999995 14 118.331563139043993 9.28387805698526059 12.7459190000000007 19.5791679999999992 1.50252490000000005 0 1.19975849999999995 0.321016299999999977 0.878742200000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.727029094746996 -62.4202546118754 22.9598746803041003 -12.2522162860300998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489100771980544 2505489100771980544 1252417375 2015.5 25.7890513923102986 0.972644435747315961 -2.48130394617660022 0.909971239721279024 3.80632478261876983 1.42573200447376003 2.66973379999999993 11.3523169659543992 1.6030032182176599 -0.0958339701262855004 2.1685916859963501 -0.237003910000000012 0.717462539999999982 0.152363300000000007 0.0699749739999999953 -0.597948550000000023 -0.472809800000000002 -0.576582499999999998 0.336825639999999982 0.387465000000000004 0.578855930000000019 134 0 134 0 2.29558000000000018 168.699005 1.4226480233305201 0.826010370524023041 31 false 0.0388360170000000005 1.03091965794900009 0.223639906657423004 0.0124161570000000006 15 8 2.27161770000000018 0 15 false 133 127.567688051304003 1.00971032807252992 126.341003 20.4240129999999986 10 50.1438955282860022 16.3363641772824018 3.06946500000000011 21.1008430000000011 11 166.531903958521013 9.49088888361609939 17.5465030000000013 19.2081760000000017 1.69851639999999993 0 1.8926677999999999 0.676830299999999996 1.2158374999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.800388188386989 -62.4182340929049033 22.9851147345347009 -12.2756555072642008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489070705736448 2505489070705736448 755811677 2015.5 25.8109298131989 0.748614783523827043 -2.48282970509922984 0.51251050260790898 0.315319615086903982 0.976764033692801958 0.322820659999999982 16.4513850110177984 1.03201690922824008 -3.2482585466938998 0.963135440012355959 -0.226457130000000006 0.751666599999999963 0.11765486 0.00323615900000000017 -0.447822100000000001 -0.0529790559999999966 0.114455274999999995 0.0687300400000000061 0.0296502950000000001 0.261798699999999995 146 0 144 2 1.82714050000000006 170.977997 0 0 31 false 0.0655988750000000009 1.29816466081085991 0.162574307692287007 -0.031724862999999999 17 9 1.01892610000000006 0 17 false 145 168.83795973020699 1.06472671790622009 158.574005 20.1196899999999985 15 65.0366748300978941 13.3382167683170003 4.87596459999999965 20.8184930000000001 13 208.887466469948009 7.33903025183712021 28.4625430000000001 18.9621400000000015 1.62240849999999992 0 1.85635379999999994 0.698802950000000034 1.1575508000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.844412377782987 -62.4102038913592025 23.0053555380852011 -12.2850862836101999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488379215415552 2505488379215415552 680142643 2015.5 25.8425057445600999 0.154103159521404992 -2.48230281137480002 0.156639343578244994 0.699280641099761957 0.220717465723731993 3.16821619999999982 6.41894226818677982 0.304974432630394976 -12.3622348145842 0.285036504093259979 -0.183386130000000008 0.51211344999999997 0.0208831909999999989 -0.0745546150000000046 -0.608796800000000027 0.284101839999999994 0.583259639999999968 -0.245085969999999986 -0.365863739999999993 0.344676299999999991 157 0 156 1 1.44749620000000001 176.835999 0 0 31 false 0.982285859999999955 1.36044689371015992 0.0386833120827421023 -0.0112066960000000004 18 9 0.324684899999999999 0 18 false 155 1176.81493272956004 2.39901108865749002 490.541992 18.0115949999999998 16 413.349006506417993 11.9875986247550994 34.4813839999999985 18.8105960000000003 15 1153.12900566070994 11.0596490548883004 104.264520000000005 17.1072249999999997 1.33111669999999993 0 1.70337099999999997 0.799001700000000037 0.904369349999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.905367200630991 -62.3961287260308026 23.0355935970805987 -12.2961559916673 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488447934893056 2505488447934893056 1554457750 2015.5 25.8361683742093007 0.355787893734090976 -2.47680702922137996 0.243053271632968998 -0.0890421210548335007 0.399723407954297005 -0.22275934 5.70749077824503015 0.663065316963992957 -13.2604196534131002 0.458883765998071014 -0.234855829999999988 0.513110460000000046 0.307101039999999992 -0.106079906000000002 -0.345386599999999988 -0.162888040000000012 0.234615199999999996 -0.0265109759999999986 0.0730556200000000017 -0.0462145169999999966 161 0 160 1 1.6457539000000001 185.067993 0.380293428918138998 0.295797437821945008 31 false 0.216687989999999997 1.33662241793318004 0.0750521311707928046 -0.0967337000000000058 19 10 0.600472149999999982 0 19 false 156 413.076858371089997 1.40965965762889001 293.03299 19.1482889999999983 17 211.383122554387995 9.08560183195658944 23.2657260000000008 19.5387120000000003 17 340.729014453045977 7.8073344610165698 43.6421700000000001 18.4308970000000016 1.3365845999999999 0 1.1078148000000001 0.390422820000000004 0.71739196999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.887923692924005 -62.3939020233379011 23.0316251981300013 -12.2887225306921994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489375648034816 2505489375648034816 1579214481 2015.5 25.7662812415781985 0.931216791768072039 -2.45762041711983992 0.650440557808448006 -4.29185086479134004 1.23808411615372993 -3.466526 0.15766061617194399 1.28235116634870994 -2.33158334133204015 1.32775755500215009 -0.236394939999999998 0.760638700000000001 0.145554139999999999 -0.00712090029999999999 -0.465776829999999975 -0.163385029999999987 -0.0880795800000000045 0.116613880000000003 0.0928353739999999983 0.324220300000000017 147 0 145 2 0.696546200000000004 151.279007 0.528508448435408007 0.105131007712890995 31 false 0.042757156999999997 1.96177232567849003 0.214799438627388012 -0.0286697859999999992 17 9 1.3627129 0 17 false 147 128.990072718715993 1.20855699947950002 106.731003 20.4119759999999992 13 83.8086607854858983 5.44184006250925023 15.4007950000000005 20.5431649999999983 13 84.1003574352107961 9.3965257561454294 8.9501539999999995 19.9499239999999993 1.30172050000000006 0 0.593240740000000044 0.13118935000000001 0.462051400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734058180199014 -62.4066215530671968 22.9723390336625997 -12.2452816929574997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492364945074944 2505492364945074944 1514674944 2015.5 25.7609533593575009 0.795818110165367965 -2.44419709596256984 0.476175369579123986 1.97925085973384007 0.947335387002991025 2.08928199999999986 1.02492963397202996 1.31066346371627995 -1.52376776955371995 0.82660764767552497 -0.124023474999999994 0.639018650000000021 0.148405690000000007 0.058766897999999998 -0.243204819999999988 -0.0935552099999999998 0.248157590000000011 0.0356542399999999968 0.1665885 -0.0028508193999999998 150 0 150 0 0.497040700000000002 152.938004 0 0 31 false 0.0535198669999999987 1.24916067254056995 0.157626086985074992 -0.0581696099999999966 17 10 1.16581270000000004 0 17 false 149 154.760171397324996 1.09284801842567991 141.612 20.2142179999999989 12 50.6766454812620992 10.0920571384301994 5.02143859999999975 21.0893690000000014 13 211.462586220881008 6.33728565813660971 33.3680080000000032 18.948834999999999 1.69384169999999989 0 2.14053339999999981 0.875150699999999948 1.26538280000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.711248283184005 -62.3967800269631994 22.9723063393213991 -12.2308415077595001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489238208879104 2505489238208879104 658251288 2015.5 25.7969892463973984 0.217400734678844992 -2.46229176989419996 0.148203067030450997 1.32374317087840998 0.250808882630628005 5.27789600000000014 -8.0967359560326102 0.364174644889327992 -13.7059936510219007 0.285313457257707015 -0.115959300000000001 0.595250999999999975 -0.0229745020000000008 0.0633556400000000047 -0.275127320000000009 0.0260657609999999998 0.0926481700000000019 0.0236223300000000004 0.0774708999999999953 0.132658649999999989 161 0 159 2 -0.180994820000000001 150.188995 0 0 31 false 0.531472860000000047 1.24301666334364991 0.052604757845257602 -0.0523431229999999983 18 10 0.324757999999999991 0 18 false 159 729.277805190149024 1.74901782625498003 416.963989 18.5311340000000015 13 193.271517681168007 12.1866639695056005 15.8592630000000003 19.6359700000000004 14 871.493757699950038 10.7796489638949993 80.8462099999999992 17.4112590000000012 1.46002699999999996 0 2.22471050000000004 1.10483550000000008 1.11987499999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.79819242424 -62.3976593304685991 22.9997969110582012 -12.2608730161040995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489448662828800 2505489448662828800 135103141 2015.5 25.7899025246059992 2.40844594767566988 -2.45426836584592012 1.50563566349953004 -2.4443173419285702 2.83786442017437013 -0.861322800000000055 0.0318403166483827993 3.88630899250917983 3.41454149113401018 2.74048122150442985 -0.2197104 0.631487699999999985 -0.00268172639999999986 0.0956361599999999978 -0.411788549999999975 -0.0432550800000000013 -0.0113547189999999992 0.0961396699999999965 0.170811789999999991 0.154439550000000009 140 0 139 1 20.5178550000000008 826.469971 11.6778079055692992 39.6178939559126988 31 false 0.00593213499999999984 1.6547203169629201 0.465117325927364988 -0.0417731900000000017 18 10 3.46144339999999984 0 18 false 146 139.60819061264101 1.60354138646327993 87.0624008 20.3260879999999986 12 162.185283150499998 12.4927100816278998 12.9823939999999993 19.8263590000000001 14 322.742540443521023 17.6134108954978998 18.3236829999999991 18.4897789999999986 3.47349119999999978 0 1.33658030000000005 -0.499729160000000006 1.83630939999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.776952471163014 -62.3934590525516981 22.9960648718484002 -12.2508130085434992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492575399019008 2505492575399019008 773028653 2015.5 25.7770729120764983 0.121321833351566002 -2.41865031265513997 0.0827662980972640044 0.0128387563885771008 0.139756794504667992 0.0918649899999999936 -1.27367383139613 0.212243060961011004 2.09797680029104994 0.158188535110188988 -0.0821590400000000026 0.567595700000000036 0.0191614870000000014 0.0542573900000000026 -0.262330169999999974 0.0149662249999999997 0.129387040000000009 0.0057005392999999998 0.0800448899999999935 0.132042049999999994 176 0 175 1 0.0369452759999999991 170.014999 0 0 31 false 1.55950670000000002 1.54838711427605991 0.0287818538217218013 -0.0286319629999999999 20 10 0.19075257000000001 0 20 false 173 1702.42223689151001 2.35663162073679011 722.395996 17.6106969999999983 18 879.788052646587971 9.9562476969043896 88.3654250000000019 17.9904420000000016 18 1190.24397322946993 8.11527985194143042 146.667020000000008 17.0728299999999997 1.21593330000000011 0 0.917612100000000042 0.379745480000000024 0.537866599999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.718994750878011 -62.3667947882534008 22.9972188141396998 -12.2129755219909999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489242504427264 2505489242504427264 83439663 2015.5 25.8065736860475994 0.491784714215870999 -2.46541465080790978 0.346708150527277992 1.11579655600264993 0.57568955608092498 1.93819140000000001 7.6519432412431998 0.865920424012858958 0.599468750478581947 0.720730087588711044 -0.166620660000000004 0.569110499999999964 0.266502379999999983 -0.0768872099999999975 -0.342603619999999998 -0.145067859999999993 0.060560669999999997 -0.0102966480000000003 0.0735953099999999971 0.113904420000000006 146 0 146 0 0.213676179999999993 143.942001 0 0 31 false 0.118104319999999999 1.68129242790801992 0.117890372687167996 -0.0744318800000000058 17 10 0.786986949999999963 0 17 false 146 257.494268619909974 1.42615247715200999 180.552002 19.661448 12 151.793330396426995 13.8667051189187003 10.9466040000000007 19.8982559999999999 13 168.396061405182991 8.24645548986793031 20.4204180000000015 19.1960900000000017 1.24348159999999996 0 0.702165599999999945 0.236808779999999997 0.465356829999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.819748105749994 -62.3963590331555977 23.0077431166345008 -12.2672879189987007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489581806265344 2505489581806265344 1374498489 2015.5 25.8311528998200011 0.182494035054776987 -2.45191140368428995 0.120229030578073007 0.604223413273257015 0.194213317624823995 3.11113289999999987 14.3864580890056004 0.356418687683548008 -33.9979742748787999 0.239521248338323001 -0.183076139999999998 0.484811460000000027 0.144628780000000012 -0.0649280549999999984 -0.270782350000000005 -0.105166285999999998 0.190487099999999993 -0.0255772730000000011 0.0635665299999999961 -0.037277374000000002 141 0 140 1 -0.157236340000000002 131.776001 0 0 31 false 0.884430200000000055 1.46888384567878005 0.0436336806727124979 -0.119414569999999998 16 10 0.316927369999999986 0 16 false 140 1093.84318398110008 2.58514455224926998 423.126007 18.0909790000000008 16 422.410461923319986 11.2694664017249 37.4827399999999997 18.7870519999999992 15 1015.24826650210002 10.2506086401124001 99.0427300000000059 17.2454900000000002 1.31431889999999996 0 1.54156300000000002 0.696073530000000051 0.845489500000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.855019348995995 -62.3735979557241009 23.0361890089437011 -12.2637222523948992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489925405726976 2505489925405726976 754152443 2015.5 25.8057525155990994 31.645477577952299 -2.42553284870197006 12.0975010923539994 \N \N \N \N \N \N \N -0.976432900000000048 \N \N \N \N \N \N \N \N \N 47 0 46 1 0.813676830000000018 48.0732002 0 0 3 false 0.0130225440000000005 \N \N 0.00989178899999999979 6 5 87.5203599999999966 0 6 false 49 69.5514716592944069 1.76042903857982003 39.5083008 21.0825999999999993 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.781154653285 -62.3607069409220998 23.0219170677852993 -12.2298797284468002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489998418690688 2505489998418690688 329653723 2015.5 25.8388423564345011 0.700200164974098982 -2.42199782986189005 0.52752726731506705 1.00275761389001006 0.861646064382149968 1.16376970000000002 6.03986864435100035 1.1639331002684401 -5.89401134620179956 1.16257856854832009 -0.150228919999999988 0.633831400000000045 0.120597140000000005 -0.0674187900000000062 -0.367859839999999993 -0.167581279999999999 -0.0514070169999999993 0.0709867400000000065 0.0865006499999999984 0.204073680000000007 143 0 143 0 1.53218720000000008 164.302002 1.00958944361277991 0.51283476159364505 31 false 0.0557985999999999968 1.7327732575030601 0.177601331843983995 -0.0141244604999999999 17 10 1.12659489999999995 0 17 false 143 167.576435558469001 1.47630068927853997 113.511002 20.1278320000000015 15 90.7687791865043039 6.77191746886976009 13.4037050000000004 20.4565470000000005 15 139.907235549657003 11.1160228665188008 12.5860869999999991 19.3973200000000006 1.37654209999999999 0 1.05922699999999992 0.328714369999999978 0.730512599999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.842191295556006 -62.3432924573152007 23.0547185856134007 -12.2387031050940998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441001431760640 2505441001431760640 758756287 2015.5 25.8488411600854988 0.0588090049358512973 -2.54245666149494021 0.0389163770296482026 1.55914059967156993 0.0673360664094511951 23.1546130000000012 2.28458134465474005 0.0988869686226789973 -14.1085636652664999 0.0801798920285290012 -0.115651260000000006 0.60317019999999999 -0.0141711979999999994 0.0388923300000000027 -0.288327659999999986 -0.00430177499999999987 -0.0246749539999999989 0.0134587249999999995 0.0683012159999999979 0.185389649999999989 182 0 178 4 0.432436380000000009 180.481995 0.0694998779700077007 0.269635033227681009 31 true 7.71841570000000043 1.44341877041570998 0.0126797374289053001 -0.057988076999999999 21 10 0.0943273500000000042 0 21 false 177 7058.69279941194964 4.86408728604676988 1451.18994 16.066555000000001 20 2684.96082076629 18.2305656037991 147.27797000000001 16.7790430000000015 20 6312.32532687955973 19.9592201414053001 316.261099999999999 15.2614470000000004 1.27463909999999991 0 1.51759620000000006 0.712488200000000016 0.805108099999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.973827906573007 -62.4476458326610029 23.0190591860608009 -12.3544450682435993 100001 4551.1499 4318.66992 4724 0.424499989 0.254000008 0.581399977 0.189300001 0.0935000032 0.277399987 200111 0.611030999999999991 0.56713336999999997 0.678586070000000041 0.144312720000000005 0.131104190000000009 0.157521259999999996 +1635721458409799680 Gaia DR2 2505440722258282624 2505440722258282624 179366874 2015.5 25.8749625206898983 0.641245068624961001 -2.55454270209973 0.395124496151762983 3.64882295576102011 0.757389717031669019 4.81762930000000011 6.25890279986375031 0.975420944006009982 -16.4777102332013996 0.655691345181101948 -0.29389510000000002 0.678223550000000008 0.128112539999999997 0.0643660650000000001 -0.436063199999999984 -0.0991944750000000042 0.156190069999999986 0.120323360000000004 0.14899844000000001 0.0474616770000000007 150 0 148 2 47.1475200000000001 3334.91992 3.28580360954844997 176.546744973059987 31 false 0.0880875299999999972 1.29326428871035004 0.115530800524350996 -0.0504008800000000021 17 9 0.887640949999999984 0 17 false 149 2232.5022414282198 13.2102131357689991 168.998001 17.3163850000000004 15 1316.14631229741008 20.8680599520563987 63.0698930000000004 17.5531269999999999 14 1633.93863997862991 13.2455987926416991 123.357100000000003 16.7288299999999985 1.32142530000000002 0 0.824296950000000028 0.236742019999999997 0.587554930000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.035993949859005 -62.4472441282239998 23.0393821848824984 -12.3752528420725998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440997136503296 2505440997136503296 833284810 2015.5 25.8506295782970987 20.2420633585894016 -2.53156627523661992 7.78343997355536033 \N \N \N \N \N \N \N -0.986379099999999953 \N \N \N \N \N \N \N \N \N 77 0 77 0 0.042746942000000003 71.8463974 0 0 3 false 0.0200980959999999993 \N \N -0.225982710000000003 9 6 45.3305799999999977 0 9 false 78 84.057119550138907 1.37091081145814009 61.3148003 20.8769300000000015 4 30.9221640188772007 12.5052579975389992 2.47273299999999985 21.6257130000000011 7 77.7500963543261037 10.1871341496044003 7.63218550000000029 20.0351679999999988 1.29283820000000005 0 1.59054570000000006 0.748783100000000035 0.841762539999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.967131000888003 -62.4370536913978 23.0248463143598983 -12.3449669972587994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487966898495616 2505487966898495616 1591821688 2015.5 25.8510680440703986 0.0402654192307361006 -2.51899706225026021 0.0245753916876465008 0.730925265587678008 0.0453667703728060021 16.1114670000000011 -5.37768870022129963 0.0610431644130160003 -9.87985911689195007 0.0527666357381596993 -0.207046399999999992 0.683419299999999952 0.0224232489999999993 0.00292503700000000012 -0.338461100000000015 -0.0777332500000000037 -0.122899300000000003 0.0442244970000000015 0.0654486700000000005 0.18215192999999999 173 0 172 1 1.05740379999999989 186.362 0 1.55516674784787009e-15 31 false 27.9723779999999991 1.61236332693024997 0.00833213681570271064 -0.0885185599999999961 20 9 0.0621216370000000004 0 20 false 171 23108.522445762399 10.6826148142950998 2163.18994 14.7789350000000006 18 12914.1572303268003 27.6177649456280996 467.603270000000009 15.0737229999999993 17 14945.5783348322002 23.0762817623868983 647.659700000000043 14.3256379999999996 1.20560430000000007 0 0.748085 0.294787399999999977 0.453297620000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.956243936411994 -62.4255302863886001 23.0299782615785986 -12.3334325773345999 100001 6136.66992 5764.5 6245 0.163499996 0.0142999999 0.305999994 0.0829999968 0.00630000001 0.151999995 200111 1.1474453 1.10798280000000005 1.30039290000000007 1.68224970000000007 1.4493258 1.91517350000000008 +1635721458409799680 Gaia DR2 2505440962776454016 2505440962776454016 403037056 2015.5 25.8753955965112006 0.647200913753300022 -2.54028233624018007 0.438652256512396976 2.26897562156114008 0.873610491978127013 2.59723950000000015 -7.26570999799383976 0.899157938051019956 -11.2388522898194996 0.69565156623276303 -0.264561600000000008 0.73791260000000003 0.162478580000000011 0.146820769999999989 -0.494081939999999997 -0.0876487340000000059 0.104143079999999999 0.16337082 0.19970866000000001 0.198714289999999988 155 0 154 1 5.87379460000000009 274.13501 1.83388595605920002 3.81059802585884988 31 false 0.0847162600000000016 1.09389078980886989 0.129897055785343996 -0.00268061410000000003 18 9 0.917708749999999962 0 18 false 152 261.54440979944502 1.19142013776264011 219.522995 19.6445030000000003 14 78.9160216790745039 9.17044915218417067 8.6054700000000004 20.6084749999999985 15 341.008769030080998 8.16027998231644958 41.7888570000000001 18.4300059999999988 1.60555829999999999 0 2.17846869999999981 0.963972099999999998 1.21449659999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.023483635242997 -62.4342040689287998 23.0451435090357997 -12.3621427188924997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441070151236864 2505441070151236864 284402084 2015.5 25.8815106140969 0.0446869970855999984 -2.5211179628215401 0.0299987456534796006 2.65727135752862997 0.0543327436529617014 48.9073640000000012 -15.7893086761859003 0.0675553132168086046 -14.8935392541999008 0.0611353121597828994 -0.220186670000000001 0.694568999999999992 0.103570010000000004 0.0639997000000000066 -0.417748960000000003 -0.197151839999999995 -0.224482209999999988 0.166350830000000005 0.228834170000000003 0.236729670000000003 148 0 148 0 -1.24056769999999994 122.427002 0 8.40305455069884962e-16 31 true 26.5778560000000006 1.45944006992833009 0.0100861256754708004 -0.0535890119999999984 17 9 0.072218514999999997 0 17 false 147 21282.3681733466983 8.39784105229330002 2534.27002 14.8683160000000001 17 8481.44123918063087 30.2859705579332008 280.045230000000004 15.5302140000000009 16 18433.8727398330993 27.1686264527726991 678.498540000000048 14.0978779999999997 1.2646767000000001 0 1.4323359 0.661898600000000004 0.770437240000000023 \N \N 0 \N \N \N NOT_AVAILABLE 152.017448671013 -62.4142845076748998 23.0581502898314987 -12.3465490699209006 100001 4579.16992 4372.08008 4798 0.230000004 0.0829000026 0.481099993 0.115500003 0.0405000001 0.209099993 200111 0.611742259999999982 0.557213370000000041 0.671066300000000004 0.148244540000000008 0.141660389999999997 0.154828700000000014 +1635721458409799680 Gaia DR2 2505440894056979584 2505440894056979584 1672858226 2015.5 25.8992003394365007 0.188874112549848011 -2.52951035586404016 0.129683544786117988 0.231588616724105995 0.239783121906051999 0.965825299999999998 3.14191386942327 0.278376537422725001 -7.41204137823904041 0.221603526773954007 -0.316987200000000025 0.711907399999999968 0.182668940000000002 0.0403771500000000005 -0.499228000000000005 -0.167378599999999989 0.0803893600000000069 0.166512670000000002 0.149126800000000004 0.123229660000000005 149 0 149 0 -1.5669725000000001 118.425003 0 0 31 false 0.99282764999999995 1.52879383089711007 0.0395433166960119029 -0.0465663929999999976 17 9 0.270828630000000015 0 17 false 149 1167.41675294270999 2.47186755635354993 472.281006 18.0203020000000009 15 695.054080290890965 10.7795590919389994 64.4788999999999959 18.2463419999999985 15 764.881544227150016 14.2527281359905 53.6656229999999965 17.5529350000000015 1.25056929999999999 0 0.693407059999999964 0.226039889999999993 0.467367169999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.059696175076994 -62.414189684358 23.0718367719922988 -12.3608321195653001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441100220176000 2505441100220176000 133011555 2015.5 25.8986918767563985 1.25710141537557996 -2.52366485391377982 1.28555061774020007 5.71358193045278995 1.86698940615491993 3.06031820000000021 5.31330896950556042 2.33669112440214022 -6.70226517379690989 4.08793407330457992 -0.115165149999999994 0.706875260000000005 -0.100562885000000005 -0.218735669999999993 -0.499775950000000024 -0.0381029140000000016 0.00222739549999999981 -0.130007000000000011 -0.200462620000000008 0.695549900000000054 102 0 101 1 0.479546760000000016 102.102997 0 0 31 false 0.0246167389999999986 1.6038052430771701 0.332837168225510016 0.123366654000000006 12 9 3.91626450000000004 0 12 false 103 95.3236700135168036 1.16317935864224009 81.9509964 20.7403639999999996 9 62.7554431964513029 14.3812922185674008 4.3636860000000004 20.8572600000000001 10 140.934683950486999 8.70032150351508982 16.1987899999999989 19.3893759999999986 2.13682630000000007 0 1.46788410000000002 0.116895676000000004 1.35098840000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.053234998393009 -62.4091424835896973 23.0735449830492989 -12.3552068554360996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441100215412096 2505441100215412096 1572649087 2015.5 25.8942220588296017 0.428209860577697998 -2.5178294948633102 0.328029909477672021 1.30349021897461004 0.538297929063639047 2.42150329999999991 1.80477681325351003 0.71834725752689399 -7.13259752819203996 0.565620458603790954 -0.128136080000000013 0.61022299999999996 0.124330369999999996 0.0601485329999999971 -0.351322619999999974 -0.0803988999999999954 0.226227399999999995 0.0875794740000000044 0.142295260000000007 0.0977153260000000051 154 0 151 3 2.33901290000000017 188.934998 1.15343674698080001 2.01925226313688988 31 false 0.13897371 1.32034866771410009 0.100042295735433995 -0.0033379429999999999 18 10 0.645493600000000001 0 18 false 151 331.054455935397982 1.33420328667086996 248.128998 19.388617 17 87.6080416069930976 7.6160648125396504 11.5030579999999993 20.4950280000000014 15 406.357355274497024 13.3005543736174001 30.5519099999999995 18.239649 1.49209710000000007 0 2.25537870000000007 1.10641100000000003 1.14896770000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.039086034898986 -62.4058193228418006 23.0714796415443999 -12.3481413340299007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488138697241344 2505488138697241344 1068746543 2015.5 25.8478461402145001 0.562090564254125957 -2.50451870273127986 0.328850849705313975 1.66476700508029007 0.669448674474973027 2.48677329999999985 5.52923041757212985 0.782191020214468957 -9.51941984615380044 0.553461157554960947 -0.29139103999999999 0.721428159999999985 0.0362675000000000011 0.0822994799999999943 -0.41856384000000002 -0.00571334100000000025 0.154292020000000002 0.0683600899999999984 0.104601769999999997 0.0851560600000000056 163 0 161 2 2.45852229999999983 202.785004 1.46617361180113992 2.96722966686435985 31 false 0.114809090000000003 1.25000278021645994 0.104541156485967998 -0.108412670000000003 19 9 0.713640799999999964 0 19 false 161 314.431814693757019 1.54169885261643991 203.951996 19.4445499999999996 15 58.1871524768600992 9.51697061221191021 6.11404130000000023 20.9393199999999986 15 396.095153478582006 12.2743902640584999 32.2700460000000007 18.2674219999999998 1.4447721 0 2.67189800000000011 1.49476999999999993 1.17712780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.936462309685993 -62.4138640343443001 23.0323430442193988 -12.3187817660417007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488486590184064 2505488486590184064 404795263 2015.5 25.8915455369645997 0.0247294741938299985 -2.48965765632582992 0.0196586476445018005 1.90128945319163001 0.0285248873962389987 66.6537100000000038 22.0598145810837991 0.0456876381046067009 -15.1348041759761998 0.0432493736438060994 -0.0394402500000000031 0.497873069999999973 -0.119147740000000002 0.0404755700000000024 -0.253620179999999973 -0.130915449999999989 -0.36773539999999999 0.140593479999999993 0.2330372 0.221899810000000003 147 0 145 2 -3.00026539999999997 95.0419998 0 1.69852201187039993e-15 31 true 115.023859999999999 1.57312079401500005 0.00617858469524109992 -0.0454846799999999996 17 10 0.0540548380000000009 0 17 false 143 91467.6686300152069 32.9867785115439034 2772.86011 13.2851959999999991 16 46562.9386058610035 126.063903627886006 369.359800000000007 13.6812869999999993 17 64221.2661441335003 89.0889465024176985 720.866800000000012 12.7427224999999993 1.21118429999999999 0 0.938564300000000018 0.396090500000000012 0.542473800000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.007553037553009 -62.3815853239369034 23.0794959157374997 -12.3209480562367002 100001 5433 5361 5889.25977 0.476999998 0.208199993 0.594600022 0.223000005 0.101000004 0.273499995 200111 1.14502949999999992 0.974483969999999977 1.17599239999999994 1.02916959999999991 0.991232699999999967 1.0671063999999999 +1635721458409799680 Gaia DR2 2505488520949922304 2505488520949922304 720067610 2015.5 25.8930991191407003 0.334024599598930994 -2.48775814822442998 0.246816646468459994 1.1805657567518999 0.408433105854399015 2.89047529999999986 23.4112662867685017 0.59410006722963804 -14.8047157700389 0.433533899329836991 -0.13053903 0.568160699999999963 0.0566365699999999972 0.0506114800000000004 -0.342181469999999988 -0.0853839599999999949 0.20155925999999999 0.0933953899999999948 0.145270380000000005 0.0663975599999999944 155 0 152 3 2.68612930000000016 197.223007 0.985511912134072965 2.32329934790679005 31 false 0.224269099999999999 1.11163814579109999 0.0765971194341644041 -0.0322957259999999968 18 10 0.525835750000000046 0 18 false 152 486.793593055855979 1.88235816013046997 258.608002 18.9700029999999984 16 101.590745848051995 9.01019976331030037 11.2750830000000004 20.3342530000000004 17 668.749429925569984 7.99139779235691972 83.6836600000000033 17.6987610000000011 1.58247800000000005 0 2.63549230000000012 1.36425020000000008 1.27124210000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.008797208375 -62.3792011042985024 23.081686368767599 -12.3197490693569005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488830187566080 2505488830187566080 1323959878 2015.5 25.8553171313591008 0.0309066696640508017 -2.46556664222379984 0.0208139572154861993 0.799803671619551015 0.0328257436025475996 24.3651349999999987 -6.74307687316118987 0.0588219794070578006 -9.73488953361662013 0.0469323478513046996 -0.0948885000000000006 0.497736400000000023 -0.131050109999999997 0.00430867960000000036 -0.198972120000000002 -0.0234350080000000002 -0.105936534999999998 0.0264941580000000003 0.052025817000000002 0.0910282359999999985 167 0 167 0 -0.501031899999999975 152.505997 0 0 31 false 35.5346570000000028 1.57210767644296001 0.00754196223749846028 -0.0973425700000000033 19 10 0.0618816950000000005 0 19 true 165 28923.6779954117992 9.68550010732539945 2986.29004 14.5352320000000006 19 14782.3423221895991 42.6297463228099005 346.761199999999974 14.9270300000000002 19 20206.0801090003988 22.399303061272601 902.085199999999986 13.9982150000000001 1.20968089999999995 0 0.928814899999999999 0.391798020000000025 0.53701686999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.914693900546013 -62.3755074686591016 23.0540579838831015 -12.2852729390204001 100001 5424 5387.5 5491 0.625 0.332300007 0.880999982 0.325700015 0.164399996 0.442999989 200111 1.53652000000000011 1.49925219999999992 1.55741020000000008 1.84098340000000005 1.66147430000000007 2.02049259999999986 +1635721458409799680 Gaia DR2 2505488967626518784 2505488967626518784 889348095 2015.5 25.8662438517600997 0.0538428473330355012 -2.44431826068151015 0.0360191628288566018 0.773696321315963997 0.0617660371297100996 12.5262419999999999 4.26919625715400031 0.0922807512602779045 -19.7515995396328989 0.0770291895580545033 -0.000374950260000000025 0.593915700000000046 -0.084594500000000003 0.0238527410000000002 -0.155183579999999988 0.00515513029999999962 -0.0816314399999999996 -0.00341024650000000019 0.0362923699999999974 0.203683229999999993 165 0 164 1 0.203276409999999991 161.977005 0 0 31 false 9.52826400000000007 1.57532308774681007 0.0119127307229998994 -0.00518572330000000026 19 10 0.0897746700000000009 0 19 false 163 8455.85806956684974 5.24978488674951027 1610.70996 15.8704719999999995 17 4369.68214352796986 24.0308940736729006 181.836009999999987 16.2502630000000003 17 5916.72336014918983 9.34056749830772937 633.443660000000023 15.3317169999999994 1.21648280000000009 0 0.918546700000000049 0.379791260000000019 0.538755399999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.916150217954993 -62.3516283659664978 23.0724194890174985 -12.2695005593802993 100001 5442.54004 5396 5463.33008 0.0732000023 0.0160000008 0.183400005 0.0329999998 0.00789999962 0.0984999985 200111 0.852084199999999958 0.84560970000000002 0.866845129999999964 0.573938669999999984 0.4759544 0.67192289999999999 +1635721458409799680 Gaia DR2 2505489787964704640 2505489787964704640 476216864 2015.5 25.8546676289738002 0.223577936745357003 -2.41941021453150018 0.157233751884155004 0.972065160783474047 0.276376264040735009 3.51718039999999998 11.2242025055001999 0.376979764335619028 -0.967480329138505013 0.286075058905574997 -0.138596369999999997 0.59531630000000002 0.0346269830000000001 0.0733468500000000051 -0.382243070000000018 0.0117034605000000003 0.105885594999999999 0.0323228600000000019 0.0993592699999999995 0.182937159999999988 182 0 178 4 1.0718261 192.994995 0 0 31 false 0.461477599999999988 1.2800634022116899 0.0497451032949954991 -0.0382420899999999994 21 10 0.339058130000000013 0 21 false 177 674.815263795620012 1.61745641655858008 417.208008 18.6154040000000016 20 202.985037952281999 12.5148419440625993 16.2195450000000001 19.5827269999999984 18 784.213919942711982 9.95979571361485938 78.7379499999999979 17.5258329999999987 1.46291729999999998 0 2.05689430000000018 0.967323299999999997 1.08957100000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.870524824943999 -62.3341453556538028 23.0707428961635017 -12.2420871662050992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489001986256512 2505489001986256512 382817534 2015.5 25.8860755853071005 0.426589662376099021 -2.42746337139891999 0.283860126567294979 -0.108933791805558997 0.536166478682663983 -0.203171579999999991 6.59858467160843976 0.658809093639942001 -8.82050785625673051 0.511475459477292005 -0.0882313400000000053 0.662089350000000021 0.0550359100000000004 0.107352569999999994 -0.309809359999999978 0.00391990270000000009 0.0966635349999999949 0.05253969 0.140882640000000003 0.195336249999999989 171 0 168 3 0.0868696099999999999 163.903 0 0 31 false 0.146592770000000011 1.49447388505097001 0.0921709808293283972 -0.0042391470000000004 20 10 0.599372400000000027 0 20 false 170 303.407622976706023 1.35038321927897997 224.682999 19.4832999999999998 16 157.37419199874401 10.4102696956321008 15.1172059999999995 19.8590550000000015 17 228.793753064704987 8.06772751684106026 28.3591329999999999 18.8633099999999985 1.27276950000000011 0 0.995744700000000038 0.375755300000000014 0.619989400000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.938969540134991 -62.3278700996055974 23.0976045865300001 -12.2610737639168992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489757900500224 2505489757900500224 390773530 2015.5 25.8734455315560012 0.125929787530336013 -2.41760289840491982 0.0978348338496922015 2.47082777297020018 0.154392767582707008 16.0035209999999992 -5.0939362663440404 0.238136748800885006 -1.15255205167036001 0.184185744037971999 -0.0731127399999999955 0.501823099999999966 -0.0200016680000000002 0.0668786999999999993 -0.39750928000000002 0.188430089999999995 0.290205659999999976 -0.108520309999999995 -0.0893086049999999992 0.265305799999999981 175 0 173 2 3.04324299999999992 229.363998 0.456185055767908021 3.2887931314999399 31 false 1.35847329999999999 1.28112174919971 0.0290197652069817992 -0.0113944289999999993 20 10 0.222601159999999992 0 20 false 173 2021.22175788928007 2.42303752585736998 834.169006 17.4243319999999997 18 422.937419976692013 14.4033827043607001 29.3637559999999986 18.785698 17 2490.57084599024984 10.9303017971617003 227.85929999999999 16.271173000000001 1.44145900000000005 0 2.51452449999999983 1.36136630000000003 1.15315820000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.90529611462901 -62.3244237836252992 23.0892841269489004 -12.2472769917436004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488688456497664 2505488688456497664 34866299 2015.5 25.8995665312954984 0.612155871608100033 -2.46112629871486011 0.444276896073120986 2.6813521704015999 0.806268477228904046 3.32563189999999986 -6.10345255252788998 0.948760306523330987 0.0947523730633818978 0.72899284173623502 -0.0961354199999999992 0.653934360000000048 0.077092654999999996 0.161499000000000004 -0.380312900000000009 0.0226403550000000009 0.175122599999999989 0.0923105250000000044 0.173522170000000003 0.21964148 166 0 164 2 1.70132180000000011 190.556 0.427396753072877 0.115504886898776998 31 false 0.0707357200000000019 1.11162820675896001 0.14377237783713101 0.00861003599999999973 19 10 0.879011100000000045 0 19 false 164 187.570582341431987 1.4018568151392099 133.802002 20.0054529999999993 17 68.1307249330949958 14.0236469167449993 4.85827450000000027 20.7680299999999995 17 242.702611437309002 8.83348394086002031 27.4752979999999987 18.7992339999999984 1.65715400000000002 0 1.9687958000000001 0.762577060000000029 1.20621869999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.996502586750012 -62.3523965194751995 23.0978237201678986 -12.2973342300500992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488928971238912 2505488928971238912 611017555 2015.5 25.8970101293980015 0.453717513943454998 -2.44190438896497986 0.318274449867066989 1.60671643612574999 0.564145499052530974 2.84805319999999984 -1.36744457871286995 0.711293366955675022 -27.4891226300460012 0.553628551235579969 -0.0596735479999999999 0.646188600000000002 0.0578561650000000011 0.13448866000000001 -0.306664939999999997 0.0542135160000000033 0.184405120000000006 0.0471063599999999999 0.13000542000000001 0.209690359999999992 173 0 172 1 1.22425410000000001 189.662003 0 0 31 false 0.12044088 1.39389293199992004 0.105645211496604996 -0.0263756249999999998 20 10 0.648811600000000044 0 20 false 171 267.650007685923981 1.29170156908838996 207.207001 19.6194479999999984 14 64.1537778325402002 9.29009199270256047 6.90561299999999978 20.8333319999999986 15 357.57782593487201 12.4066925838701998 28.8213650000000001 18.3784939999999999 1.5756831 0 2.45483779999999996 1.21388439999999997 1.24095339999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.973626799100003 -62.3361711146207966 23.1025958360770005 -12.2785123425775993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490475159472128 2505490475159472128 611844847 2015.5 25.8949109539066988 0.107850978632553995 -2.41936719146191015 0.0749185557945620945 0.722124946463646 0.123978041285148 5.82462000000000035 14.8200450593351007 0.195897751918050006 -8.16257654245339026 0.147646968614960988 -0.124343573999999998 0.534667849999999945 -0.00582709959999999985 0.0273555979999999983 -0.305144729999999975 -0.00987914500000000063 0.0873868099999999953 0.0146583489999999993 0.072394885000000006 0.113447500000000007 175 0 175 0 0.678742230000000002 182.126007 0.102690467998184001 0.179144612309923013 31 true 1.92175150000000006 1.51075672979853004 0.0252685020997754986 -0.0657077999999999968 20 10 0.17628569999999999 0 20 false 175 2054.83390125668984 2.60600595906710986 788.499023 17.4064240000000012 18 859.100169648448968 15.1348983576889005 56.762863000000003 18.0162799999999983 18 1772.1429746849401 11.6428399269733003 152.208820000000003 16.6406729999999996 1.28051380000000004 0 1.37560649999999995 0.609855649999999971 0.765750900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.948578716392007 -62.3167547931213974 23.109044548532701 -12.2567726214243002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505499477411347200 2505499477411347200 152754388 2015.5 25.6147222880323007 0.202094054233178 -2.42006063454015985 0.169516497456517007 1.1715673088696601 0.251932767889031017 4.65031700000000026 8.01413164733271977 0.357752588643513003 0.649106601481897028 0.291116051726497016 0.215312470000000006 0.537248130000000046 0.0661144550000000025 0.188614900000000002 -0.146676439999999991 0.143920720000000002 0.316289199999999993 -0.0117925930000000005 0.107799835999999996 0.282859470000000002 141 0 137 4 2.35936710000000005 173.365005 0.480377540851267992 1.34964367406897989 31 false 0.626897200000000043 1.32289838024784001 0.0469360986557744997 0.122585890000000003 16 10 0.337833639999999991 0 16 false 136 887.427538419540952 2.01344860559120997 440.75 18.3180329999999998 15 326.595153156232016 10.1577066259728994 32.1524500000000018 19.0663640000000001 14 874.374105674339944 9.83352449364092962 88.9176700000000011 17.4076769999999996 1.35331519999999994 0 1.65868759999999993 0.748331069999999987 0.910356500000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.403650776950997 -62.4373017173680012 22.8423057237266001 -12.1548067388294001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487863819779840 2505487863819779840 145734647 2015.5 25.6510358794410998 0.315106095963800015 -2.41345314854354998 0.201050065522777988 2.70838854799719009 0.396081038203814018 6.83796550000000014 16.605620330576599 0.40396134675039802 -9.55501460562057048 0.341186227790125973 -0.196660059999999998 0.781170299999999984 0.121320280000000003 -0.00717099760000000034 -0.373007399999999989 0.0489924740000000011 0.426207959999999997 0.0115698160000000001 -0.0594089930000000002 0.158438489999999987 142 0 142 0 1.03264320000000009 154.091995 0.107870619690072 0.0461295141303018977 31 false 0.457694260000000019 1.18553809150196998 0.0565835743784730005 -0.00676447799999999998 16 9 0.40794370000000002 0 16 false 140 621.448806794884035 1.65921324784461999 374.544006 18.704853 13 126.956712707389002 7.7638944779316601 16.3521940000000008 20.0922489999999989 12 826.950054744193039 13.2966500228552995 62.1923600000000008 17.4682220000000008 1.53497240000000001 0 2.62402729999999984 1.38739590000000002 1.23663140000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.468528776872006 -62.4158977743479966 22.8793114503485988 -12.1619700465492997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487868114862464 2505487868114862464 494618994 2015.5 25.6451856533025015 0.0742678400149761053 -2.40524557769095981 0.0471890913298775028 0.927164220747468959 0.0955050711482094972 9.70801100000000083 5.66272074854589036 0.100445025830565998 -3.31017678921651992 0.0878751478823552035 -0.212012809999999996 0.759627759999999985 0.0935327559999999947 0.0182203459999999984 -0.41373217000000001 -0.0425967299999999993 0.107257480000000002 0.0619651969999999996 0.0427313070000000031 0.236728390000000011 131 0 131 0 -0.0664775199999999983 124.286003 0 0 31 true 10.1057430000000004 1.53314123574044991 0.0148488715514199007 0.0390501799999999968 15 9 0.101451570000000005 0 15 false 129 8458.61434128260953 7.03539063577637958 1202.29004 15.8701170000000005 14 4139.8095450985702 22.3305765572586985 185.387499999999989 16.3089370000000002 14 6216.60457047106956 20.5961193738968014 301.833770000000015 15.2780369999999994 1.22436300000000009 0 1.03089999999999993 0.438819899999999985 0.592080099999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.449566148897986 -62.4109564801578003 22.8768287606955987 -12.1521905531959007 100001 5215.02002 5006 5392 0.158000007 0.130899996 0.174999997 0.0780000016 0.0615000017 0.0939000025 200111 0.786514799999999958 0.735731070000000043 0.853566099999999994 0.412223200000000012 0.324607219999999974 0.499839160000000005 +1635721458409799680 Gaia DR2 2505487623301611136 2505487623301611136 1474165660 2015.5 25.6890526159801986 1.09726998798420006 -2.41568905564784986 0.725806714862817004 1.68461581004314009 1.48508850269280002 1.13435379999999997 -0.621705415856600996 1.61618641643590011 -4.61590938703930043 2.04587684425210981 -0.179185170000000005 0.777955500000000022 -0.0390963100000000022 -0.270901100000000006 -0.412718450000000014 0.00577391450000000039 0.0641989300000000013 -0.199185479999999998 -0.314730940000000015 0.522926450000000043 114 0 113 1 0.391300599999999998 113.164001 0 0 31 false 0.0433892570000000005 1.36511379547797995 0.225809852108454001 0.0150304770000000004 13 8 2.08765720000000021 0 13 false 113 132.817053276991999 1.60673626663800007 82.6625977 20.3802319999999995 11 108.833904949621996 14.8435041161680008 7.33209 20.2594780000000014 11 93.449425772677003 12.3299051373015001 7.5790873000000003 19.8354779999999984 1.52302230000000005 0 0.423999799999999982 -0.120754239999999999 0.54475399999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.544778050085995 -62.4017374114304033 22.9146210991742016 -12.1779807913521996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492918996429824 2505492918996429824 1395937143 2015.5 25.8112790478690997 0.15354382669740399 -2.40561054981158007 0.112654301214644995 1.65831593022784007 0.185981353146242007 8.91657099999999936 19.1668678050438999 0.270350490092790996 -18.3624887030427999 0.222058498872120008 -0.0931907599999999975 0.574559099999999989 0.0768731160000000052 0.0092099639999999993 -0.297582500000000028 -0.116391726000000001 0.0346638520000000019 0.0675701050000000053 0.151219140000000002 0.125537740000000009 148 0 147 1 1.34237540000000011 165.106003 0.349969631081378019 1.19192345536635003 31 true 1.08313330000000008 1.40640382390658991 0.0365750896213044019 0.0161290559999999993 17 10 0.244249880000000003 0 17 false 146 1396.09231836324989 2.49621919313109997 559.28302 17.826080000000001 14 429.082325394604993 5.34743666276300011 80.2407500000000056 18.7700369999999985 16 1439.06545536759995 8.13908191326978958 176.809310000000011 16.8667179999999988 1.3381263000000001 0 1.90331840000000008 0.943956400000000029 0.959362029999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.773448829428986 -62.3403452436628029 23.0346427246775995 -12.2133660592308004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505491299793195392 2505491299793195392 1564980665 2015.5 25.8687358289289016 0.53947607970838396 -2.4103127528533701 0.416396652342796991 0.921500783068586959 0.684571699270822953 1.34609829999999997 9.70095137039882083 0.936665807381066973 -5.35519140765484014 0.924257823626316033 -0.104515609999999995 0.603697959999999978 -0.00536032300000000017 0.0131130569999999991 -0.398397800000000024 -0.0885499200000000042 -0.174915879999999996 0.0479473430000000034 0.100708229999999996 0.349572570000000027 160 0 159 1 0.0857457739999999968 154.839996 0 0 31 false 0.0809943749999999935 1.55229834520564003 0.124158067209324999 -0.0130588389999999992 19 10 0.952066599999999985 0 19 false 159 209.360389195700009 1.24859693479561007 167.677002 19.8861300000000014 16 98.193624121404298 7.1585079084380796 13.7170515000000002 20.371179999999999 17 192.228074634269007 10.5374319642592003 18.2424029999999995 19.0523780000000009 1.38718549999999996 0 1.31880189999999997 0.485050199999999987 0.833751699999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.889386427007992 -62.3198767626803019 23.0875357239122998 -12.2387700108555997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490509519211776 2505490509519211776 92387177 2015.5 25.9015102428030985 0.937358947537029974 -2.41381064034169013 0.724582451552573947 0.163471183988383006 1.14696166689028001 0.142525399999999997 -1.62229248522311997 1.41359845050519994 -7.63729327875921005 1.67784205977458001 0.132656629999999998 0.70904385999999997 -0.00745892250000000038 -0.0582322440000000024 -0.134799210000000003 -0.222041130000000003 -0.378433760000000008 0.0674713400000000046 0.10212454 0.434183480000000011 131 0 131 0 0.33011020000000002 130.628998 0 1.79039940448067016e-15 31 false 0.0384411439999999965 1.74765247778656008 0.244605036997450009 0.0277843850000000017 15 9 1.67202680000000004 0 15 false 131 130.521669895424992 1.19096774983907006 109.593002 20.3991579999999999 12 86.0826860700957042 16.9746521092184004 5.0712489999999999 20.5140999999999991 13 101.122193826314998 13.5608937758099994 7.45689729999999962 19.749804000000001 1.43428200000000006 0 0.764295599999999964 0.114940639999999997 0.649354929999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.956207796966993 -62.3088945894744981 23.1174052250106001 -12.2540163268720992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484359126449792 2505484359126449792 291469294 2015.5 25.6082356475782014 0.258167275699209997 -2.5474025176190902 0.235930285096821013 0.505539959996567978 0.296795436296587001 1.70332789999999989 -0.583122073737878055 0.573654165923438986 -2.61677017252736999 0.440189164260444021 0.253098129999999977 0.276877600000000001 -0.0907657439999999954 0.188216670000000003 -0.0968039100000000069 0.209484759999999992 0.335084439999999983 -0.0270013700000000002 -0.00971136149999999969 0.247184960000000009 150 0 150 0 -0.253903539999999983 140.067001 0 0 31 false 0.275540899999999978 1.4278354659249799 0.0691439620564884977 0.0323399040000000026 17 10 0.527603860000000036 0 17 false 150 426.019033012667023 1.31751433464157008 323.351013 19.1147939999999998 16 209.84776754263001 8.46556818518127052 24.7883850000000017 19.5466270000000009 13 322.342817060253992 5.69420371432060968 56.6089359999999999 18.4911250000000003 1.2492179000000001 0 1.0555019000000001 0.431833269999999991 0.623668699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.508252000672996 -62.5553040307074966 22.7883212061028004 -12.2708844895712996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484191622862336 2505484191622862336 694683142 2015.5 25.6144576668191988 0.0670268228957113937 -2.54319846208080991 0.0580812777781996997 6.15806658013007979 0.0734788531119438953 83.8073349999999948 31.6998146914282017 0.145036750452494007 -17.1348129386324004 0.107664092751194998 0.210539239999999989 0.341733600000000026 -0.120858385999999998 0.190913319999999997 0.0229240840000000008 0.19299891999999999 0.330736729999999979 -0.00354417650000000018 0.0354087800000000008 0.152980859999999996 132 0 132 0 4.09438100000000027 203.154007 0.230910741841535011 2.4557067845045002 31 true 5.44000299999999992 1.26546922385720007 0.0180598237271803984 0.0351710360000000027 15 10 0.136388320000000007 0 16 false 132 6568.79126191930027 8.42738860084389074 779.458008 16.1446509999999996 12 1269.95500741162004 13.4099720554578994 94.7022860000000009 17.5919169999999987 14 8273.4605090656496 32.4227587596253031 255.174479999999988 14.9677019999999992 1.45284199999999997 0 2.6242150999999998 1.44726559999999993 1.17694950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.516564124614007 -62.5488517780444013 22.7958176186643016 -12.2692556428317996 100001 3882.27002 3574.84009 4055.95996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484496565405056 2505484496565405056 165268838 2015.5 25.6176146868085013 0.638299314896738967 -2.52280004456794993 0.555272513778506949 0.764546538320228009 0.768860563861577972 0.994389060000000047 -1.24403015371528003 1.28199758547095999 -2.15421740169889997 1.21302635399284009 0.200222070000000002 0.463734179999999996 -0.0954023999999999983 0.0558285000000000031 -0.137855489999999997 0.122770169999999998 0.151949229999999991 -0.0595778080000000029 -0.0730824840000000031 0.351212140000000006 128 0 126 2 1.75988140000000004 149.723999 1.35025729600891009 0.875772345784077033 31 false 0.0577051749999999974 1.35708988953550991 0.161281627800751004 0.0404642669999999982 15 10 1.27792349999999999 0 15 false 126 160.930495655518996 1.23899076510258999 129.888 20.1717699999999986 10 58.9799695612295025 7.27632167181454026 8.10574000000000083 20.924627000000001 11 173.73798324889799 9.00535773132427053 19.2927360000000014 19.1621839999999999 1.44607730000000001 0 1.76244350000000005 0.752857200000000004 1.00958630000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.503900910255993 -62.5290542527023021 22.8064819037129993 -12.2514386788015006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485355558865792 2505485355558865792 754691774 2015.5 25.6125166629328014 0.68280572688708796 -2.50194999526914019 0.583617900950190949 1.9590728792577301 0.818895473393194018 2.39233569999999984 -0.476642704564169017 1.32605840826196997 -7.77725078534138969 1.0349410874759899 0.190835000000000005 0.472116680000000011 -0.0735470059999999981 0.174217050000000012 -0.161940539999999994 0.184708490000000003 0.409497400000000011 -0.0164421099999999994 0.00777670740000000003 0.249444260000000001 149 0 148 1 2.67075130000000005 192.274994 1.86366137203150006 1.77782544497273998 31 false 0.0481135300000000016 1.54974163113757002 0.160809214396887001 0.040020145 17 10 1.22198319999999994 0 17 false 146 156.119097376588996 1.14929759878593996 135.839005 20.2047249999999998 10 59.2708849184680986 7.73447647820842032 7.66320560000000039 20.9192849999999986 13 166.828994500239986 11.0048784874828005 15.1595490000000002 19.2062419999999996 1.4482526 0 1.71304319999999999 0.714559559999999983 0.998483659999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.474671292329987 -62.5123582809981997 22.8094645762417016 -12.2301744355004995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485355558866560 2505485355558866560 748213621 2015.5 25.6139212468255018 0.502616318479610968 -2.49467233631622998 0.440472831670394027 0.489022816940275995 0.62580487195874801 0.781430199999999964 16.9904521590395987 0.914980116724342984 14.5771963730260001 0.794852226727047029 0.204972419999999989 0.529354160000000018 0.0776396099999999978 0.152297390000000005 -0.157942620000000006 0.170964079999999991 0.387001929999999994 -0.0804395499999999986 0.0122768384999999997 0.294068039999999975 158 0 158 0 2.58338359999999989 201.983002 1.11161475929907994 0.984004484634794951 31 false 0.0837665999999999966 1.28245400241002994 0.116590922095353003 0.0635512800000000017 18 10 0.881776329999999997 0 18 false 155 203.330572248188986 1.11313060695485011 182.666 19.917857999999999 14 44.8940748603623021 3.91456619919788018 11.4684679999999997 21.2209150000000015 16 283.878558962190027 6.40094090296330975 44.3495059999999981 18.6290900000000015 1.61693660000000006 0 2.59182550000000012 1.30305669999999996 1.28876879999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.470711768689995 -62.5051754755214972 22.8135331940978006 -12.2239196562744006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486906042190848 2505486906042190848 892234978 2015.5 25.6048594968675012 0.148622656181799012 -2.47716946692762985 0.117067431722393006 3.13269063045507989 0.187895542070368987 16.6725120000000011 21.2504148036613998 0.263532403211004018 -4.96665625626768037 0.213315879477002007 0.112526976000000001 0.550383999999999984 0.00508029339999999975 0.120818419999999996 -0.221951769999999993 0.0784544400000000003 0.171012479999999994 0.0120528414999999996 0.0971916099999999977 0.276754400000000012 151 9 150 1 4.21184159999999963 228.298004 0.352601380942292986 1.40396801838992991 31 false 1.18944070000000002 1.32754258864990993 0.0338297453745618967 0.106493435999999997 17 10 0.235134750000000003 0 17 false 149 1455.66028119006 2.8780731390337202 505.776001 17.7807160000000017 17 286.829086537395995 11.5677587273265008 24.7955630000000014 19.2073299999999989 15 1904.78253896062006 22.2425038268651001 85.6370540000000062 16.5623070000000006 1.505579 0 2.64502330000000008 1.42661480000000007 1.21840860000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.436844784212013 -62.4931859064416031 22.8114891425680995 -12.2043155716824003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486901747095424 2505486901747095424 207624046 2015.5 25.6100247471354017 0.66005114329401704 -2.4784255089419398 0.672313930068759946 0.458926036796322989 0.798195637391807988 0.574954329999999958 0.267819663254293017 1.34243157096261001 -1.84909152643687991 1.75920523537873996 0.346202220000000005 0.506128899999999993 -0.139869120000000013 -0.154494400000000004 -0.0975371800000000011 -0.192110639999999999 -0.286314869999999999 -0.0246186819999999994 -0.00168843279999999997 0.562313260000000037 120 0 118 2 1.18468149999999994 131.024994 0.818388935596379041 0.272489685198325005 31 false 0.0588759329999999984 1.76505979294936011 0.180804934731136013 0.14952551 14 9 1.75254390000000004 0 14 false 119 149.581171260898003 1.27240652942325005 117.557999 20.2511730000000014 13 105.003543599929998 13.7885517028731002 7.61526999999999976 20.2983779999999996 12 106.409404667531007 9.90098635294321916 10.7473539999999996 19.694469999999999 1.41336609999999996 0 0.603908540000000049 0.0472049699999999989 0.556703570000000036 \N \N 0 \N \N \N NOT_AVAILABLE 151.448113845964997 -62.4921284963617012 22.815928862509999 -12.2073778529838002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484603939721216 2505484603939721216 320252513 2015.5 25.6175368477559005 1.78914336736308011 -2.50491595636554987 1.25660510297729 \N \N \N \N \N \N \N 0.0512135599999999983 \N \N \N \N \N \N \N \N \N 124 0 123 1 41.0722659999999991 2536.6001 9.88798552279559928 139.590610521628008 3 false 0.00930069499999999945 \N \N -0.0185305680000000007 16 10 3.10969110000000004 0 16 false 141 361.107815711780972 3.90807101464980011 92.4004974 19.2942730000000005 15 537.740140905904013 12.7725554804342991 42.1012199999999979 18.5249580000000016 14 1114.59968279345003 18.3772292028585014 60.6511270000000025 17.1441230000000004 4.57575230000000044 0 1.38083460000000002 -0.769315700000000047 2.15015029999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.487239480762014 -62.5129067565900982 22.8131245096332016 -12.2347741449612002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486833027617536 2505486833027617536 1660992368 2015.5 25.6270650504337993 0.178355519779953009 -2.49061773973161005 0.151484794629588998 2.06390933360259021 0.231972256778547992 8.89722399999999958 -10.6799955682251007 0.323850990637829017 -23.3096669981439995 0.265029926183905973 0.133806330000000001 0.519547639999999977 0.0428150900000000001 0.144668799999999986 -0.269207949999999974 0.135417759999999998 0.275525960000000014 -0.0259077030000000007 0.0567482750000000008 0.304034000000000026 151 0 151 0 2.01547840000000011 182.445007 0.456613290998391985 1.52103551406533 31 false 0.715659860000000037 1.21639999574148994 0.0408395976272852984 0.103905449999999996 17 10 0.306645449999999986 0 17 false 149 970.828906891721999 1.91913730310370001 505.867004 18.2205089999999998 17 208.232549441320998 10.2490787883262993 20.3171959999999991 19.5550169999999994 17 1216.44783560261999 11.4048594864462007 106.660483999999997 17.0491869999999999 1.46748860000000003 0 2.50583080000000002 1.33450890000000011 1.17132189999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.492705899863012 -62.4959160543032013 22.8275542353342011 -12.2249670190510002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486833027617920 2505486833027617920 1379447790 2015.5 25.6205301086631998 0.0419365907616428973 -2.48733844394404979 0.0378855349642812991 1.50627421624968005 0.0559757974376388009 26.9093839999999993 5.98398540253816957 0.0850729374825421047 -7.90076367697889026 0.0824596952699089975 0.118775770000000003 0.514482140000000032 -0.00696234540000000013 0.0840332959999999934 -0.372243639999999987 0.425888480000000014 0.481855599999999995 -0.306061740000000027 -0.337437629999999988 0.556865700000000019 151 0 150 1 -0.120011789999999993 142.306 0 1.66898024507050002e-15 31 true 20.253933 1.53274586948573011 0.0103438018339107006 0.0871488700000000033 17 9 0.103065009999999999 0 17 false 150 16134.2045520309002 8.53254008437446032 1890.90002 15.1689969999999992 16 7622.64341023091038 12.3693707604475005 616.251499999999965 15.6461240000000004 15 12584.6488747359999 39.3177030439866968 320.07589999999999 14.5123180000000005 1.25245049999999991 0 1.13380619999999999 0.477127079999999981 0.656679149999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.476890694412987 -62.4957287546862972 22.8225714428661988 -12.2195206208750005 100001 4915.5 4847.37012 5849.58008 0.196999997 0.0988999978 0.323100001 0.0960000008 0.0480000004 0.157100007 200111 0.775284300000000037 0.547453199999999973 0.797230899999999965 0.316145869999999996 0.290724719999999992 0.341567000000000009 +1635721458409799680 Gaia DR2 2505486837322714752 2505486837322714752 725666364 2015.5 25.6209179962682008 0.276683084490528974 -2.48714730565537989 0.302246862625445978 1.31604270748124996 0.355256097809795002 3.70449019999999996 5.93587978103798974 0.555463219101922978 -8.30869742438489922 0.54491979015038805 0.113740809999999998 0.452612069999999977 0.124975294000000001 0.113178074000000004 -0.339815619999999985 0.278540369999999982 0.673190700000000031 -0.217297800000000013 -0.218584539999999994 0.307054969999999983 129 0 128 1 3.53833939999999991 186.380997 0.990999599664028952 3.50615230288198987 31 false 0.329657849999999975 1.32192797454185995 0.0701598481289192055 0.0471359900000000026 15 8 0.593246099999999998 0 17 false 130 648.413524529637016 2.48521009905442991 260.908997 18.6587350000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.47747381081399 -62.4953908369171032 22.8230120536318992 -12.2194850315718 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486111474576512 2505486111474576512 14881777 2015.5 25.6492155767102012 1.58193664094795006 -2.48890708694136986 1.22954109569037007 0.812336202648966998 2.31641143838906993 0.350687350000000009 -1.83486561721888997 2.48151029609614993 -6.67505726921762044 3.19780698801013008 -0.183902139999999992 0.760880299999999954 0.0942012200000000022 -0.137730359999999996 -0.507223369999999951 -0.205898539999999991 -0.235214709999999994 -0.0284340080000000002 -0.0370404800000000006 0.607295200000000035 103 0 103 0 1.02940190000000009 112.398003 1.31865588806766998 0.306390577892001026 31 false 0.0242568199999999984 1.56183060701336007 0.288318008247949009 0.0958043259999999952 12 8 3.22698829999999992 0 12 false 105 90.2900722457983989 1.18768423049486005 76.0218964 20.7992649999999983 8 57.1818695719032988 8.56985676535848917 6.67244149999999969 20.9582419999999985 7 127.339653683356005 9.98733878610801007 12.7501090000000001 19.4995119999999993 2.0436523000000002 0 1.45873070000000005 0.158977509999999989 1.29975320000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.534468964240006 -62.4849372821662996 22.8492603826792013 -12.2314959104354006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486218847424000 2505486218847424000 151121284 2015.5 25.652725656034999 0.056917632118979003 -2.48948347416926019 0.0431297441366395029 0.407660485130382999 0.0669936879461956042 6.08505800000000008 9.51007564009134931 0.104252200421583993 -12.0372575942542994 0.0867504135328209941 0.0714301299999999945 0.534964899999999965 -0.0582080369999999972 0.0916692239999999936 -0.181453000000000003 0.176151050000000003 0.206839600000000012 -0.0757355299999999954 -0.0537827719999999995 0.2763679 156 0 153 3 2.20057850000000021 188.395996 0.114659098782796995 0.77650351550899499 31 false 8.22978799999999922 1.61345414262686004 0.0132797727831910992 0.0310197289999999994 18 10 0.103318530000000006 0 18 false 151 7959.66003740948963 5.80783760258978976 1370.5 15.9361300000000004 18 4656.8293421424396 17.9832858851795017 258.953199999999981 16.1811620000000005 15 4961.07791644386998 13.4653063701684008 368.434079999999994 15.5229800000000004 1.20833149999999989 0 0.658182139999999971 0.245032310000000003 0.413149829999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.54186661889301 -62.4839629140835982 22.8523819745499992 -12.2333187508915007 100001 6458.75 6211 6794.75 0.0502999984 0 0.201100007 0.0299999993 0.00190000003 0.100100003 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486214552378880 2505486214552378880 754700057 2015.5 25.6522333208494011 0.896929894501807046 -2.48340765312374989 0.791575869890041028 1.27735138955770999 1.09993952080395996 1.1612924 1.72617957224739005 2.06594482671312019 2.01989528222846992 2.25832332386901991 0.196059900000000009 0.407630300000000001 -0.073466729999999994 -0.0946415000000000034 -0.177553149999999993 -0.0401963700000000021 -0.124568680000000001 -0.165927400000000003 -0.141014749999999994 0.491851060000000007 112 0 112 0 1.8012452000000001 134.792999 2.4744364852461298 1.63732748893590996 31 false 0.0311509480000000012 1.33028148005773006 0.257338779880898982 0.0275649170000000013 13 9 2.32820800000000006 0 13 false 113 125.686520757612001 1.49515449865801009 84.0625992 20.4401440000000001 10 87.3785016147534037 8.87273514524371087 9.84797900000000048 20.497876999999999 11 105.438895981664999 10.5861250284755997 9.96010300000000015 19.7044180000000004 1.53411349999999991 0 0.793458939999999946 0.057733536000000002 0.735725399999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.535294946969003 -62.4786772681475 22.8541947546887982 -12.2274861834570991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487245344460928 2505487245344460928 49345358 2015.5 25.6171702901133003 0.0397854145309042978 -2.44826086281273003 0.0305053357072073011 1.14957614980947009 0.0483865128450989973 23.7581939999999996 -1.12813277254174005 0.071220778681293298 -15.1047707117634005 0.0621519049947567015 0.0670462899999999945 0.54232860000000005 -0.0725427339999999976 0.0765965900000000061 -0.204659360000000012 0.058547318000000001 -0.0361288599999999988 0.00755323939999999992 0.0595437769999999991 0.302353800000000006 141 0 141 0 -0.778442900000000049 122.936996 0 0 31 true 21.7844720000000009 1.58094350983912002 0.0103577016205260997 0.0663653599999999982 16 10 0.0745082799999999962 0 16 false 141 17569.7396301851004 8.73355251984989067 2011.75 15.0764519999999997 14 9146.93087017278958 24.8145137460972016 368.612120000000004 15.4481990000000007 13 12346.3818639197998 20.4608625833723998 603.414549999999963 14.5330709999999996 1.22331429999999997 0 0.915128700000000017 0.371747019999999984 0.543381699999999968 \N \N 0 \N \N \N NOT_AVAILABLE 151.434341932311014 -62.4617909138271017 22.8340480471172 -12.1819374452782991 100001 5424 5341.7998 5588.91992 0.0892999992 0.00850000046 0.184300005 0.0450000018 0.00789999962 0.0860999972 200111 0.833181799999999972 0.784734249999999967 0.859021249999999958 0.541318599999999983 0.491006050000000027 0.591631200000000024 +1635721458409799680 Gaia DR2 2505499099454223232 2505499099454223232 339028974 2015.5 25.6163565576268013 0.668655084971168989 -2.42815479973788984 0.586808134018894978 0.669759817353882014 0.83198905307020099 0.805010400000000015 -0.49407238016743199 1.24522159034189994 -22.9994831691528994 1.08031085809409011 0.232069969999999987 0.503223060000000055 0.0154332024999999998 0.125185400000000002 -0.133057730000000013 0.0736291859999999992 0.224482569999999992 -0.00197918849999999995 0.098000219999999999 0.285390699999999997 137 0 134 3 2.66177729999999979 175.830994 1.81037854643850005 1.81595460945512999 31 false 0.0520034099999999999 1.53473466379744994 0.181259767574719011 0.121588126000000005 16 10 1.17820499999999995 0 16 false 132 158.371773131697012 1.23415283495224992 128.324005 20.1891700000000007 12 59.610819423836702 15.8128465736491997 3.76977159999999989 20.9130740000000017 13 193.403567308533013 10.8478393629922998 17.8287639999999996 19.0457600000000014 1.5975976999999999 0 1.86731530000000001 0.723903659999999949 1.14341160000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.414276254008001 -62.4439360129996004 22.8408215072273002 -12.1629354777191008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487043481234688 2505487043481234688 154656056 2015.5 25.6226253356123017 0.62750815833274598 -2.46420243083984003 0.66059733598535797 2.37255797013879022 0.774933748728038996 3.0616270000000001 3.73883362213741011 1.32854464390856997 -16.5315326898676993 1.81132359023979994 0.331674040000000003 0.476456170000000012 -0.113564305000000004 -0.181930229999999998 -0.153448720000000011 -0.230384680000000008 -0.314315899999999981 -0.0372075700000000023 0.020621529999999999 0.58451019999999998 124 0 123 1 -0.425000040000000023 110.949997 0 0 31 false 0.0606922169999999997 1.11499790693496004 0.172291776527510987 0.157445190000000013 14 9 1.79695310000000008 0 15 false 124 146.588055569365991 1.05907531315723991 138.410995 20.2731190000000012 14 72.767494070723501 11.0759819362356993 6.56984570000000012 20.6965450000000004 13 198.420696334019993 10.3924416262794992 19.0927889999999998 19.0179520000000011 1.85000190000000009 0 1.67859270000000005 0.423425669999999976 1.25516699999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.459679096293002 -62.4739014574807001 22.8332502790504996 -12.1987668362931991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487245344531328 2505487245344531328 138976648 2015.5 25.6221882940028003 2.17929460102811978 -2.44802608706581992 3.75956563823981993 \N \N \N \N \N \N \N -0.607908070000000023 \N \N \N \N \N \N \N \N \N 68 0 68 0 -2.04449000000000014 42.2120018 0 0 3 false 0.024836047 \N \N -0.00819092000000000084 8 6 11.2707820000000005 0 8 false 70 99.3423687645640996 1.51621855762140001 65.5197983 20.6955300000000015 6 66.2375709425597989 9.2178760146760208 7.18577400000000033 20.7986280000000008 7 61.3695191801951978 10.0359575136138002 6.11496399999999962 20.2920380000000016 1.28451819999999994 0 0.506589900000000037 0.103097915999999998 0.403491969999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.443940430668988 -62.4594469448305034 22.8389073532272988 -12.1835586346049993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487009121405440 2505487009121405440 336000360 2015.5 25.6492246146131997 0.26658904434109898 -2.46449288387643017 0.209168037336368989 1.09372628670648009 0.324262004482172017 3.37297080000000005 1.61133774950180997 0.453086149468471977 -5.71003916709042958 0.363345797702129991 0.237198980000000004 0.594056000000000028 0.0612690749999999992 0.19324245000000001 -0.0507527850000000016 0.188280019999999992 0.406268899999999988 -0.062118857999999999 0.0607208460000000019 0.262984280000000015 151 0 150 1 2.66130040000000001 194.393997 0.827269533983371996 2.89531437273072001 31 false 0.369230029999999987 1.45161006786630997 0.0585857829128777971 0.0914580900000000058 17 9 0.425601400000000019 0 17 false 148 667.459914679957024 1.75677918843299996 379.93399 18.6273020000000002 17 226.851831310943993 7.61292147984559975 29.7982620000000011 19.4620320000000007 17 688.622279450960036 7.44941915865758997 92.4397299999999973 17.6669669999999996 1.3715792 0 1.79506490000000007 0.834730149999999949 0.960334800000000044 \N \N 0 \N \N \N NOT_AVAILABLE 151.511965924761995 -62.4628488980449035 22.8584340598943001 -12.2087875960993006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487077840881792 2505487077840881792 1065992754 2015.5 25.6450417797095014 0.400040186855358026 -2.45858240789837001 0.347913165797228974 0.400961297748266998 0.493184518984358999 0.813004599999999966 1.77777957171420997 0.755136975196486038 0.843967169214455026 0.644320559543245963 0.176044800000000001 0.499265400000000026 0.0129472670000000002 0.132692749999999998 -0.181222300000000003 0.158395279999999999 0.343111160000000026 -0.0584944339999999979 0.000369079239999999984 0.283081169999999993 159 0 157 2 1.00949690000000003 169.570999 0.790090854695694955 0.70518765579645204 31 false 0.126775730000000003 1.64921854180727001 0.100170675537520001 0.0480502140000000008 18 10 0.716339350000000041 0 18 false 157 274.583454306679016 1.51820893798670009 180.860001 19.5916800000000002 16 189.658379909050012 6.82251924104090968 27.7988779999999984 19.6564580000000007 17 172.441617523900987 6.74127697164527984 25.5799640000000004 19.1703149999999987 1.31872480000000003 0 0.486143099999999995 0.0647773739999999987 0.421365739999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.498342283690988 -62.4592822015459035 22.8566751657688982 -12.2017560863504997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487009121405312 2505487009121405312 1621711777 2015.5 25.6469105705813014 0.545180948780512042 -2.46326104195386986 0.478399631045719975 2.20398279718593004 0.676207527881718007 3.25932900000000014 23.7906068162271005 1.02394825440550008 -5.57895856532276024 0.857281073397633042 0.179636639999999986 0.500802929999999979 0.0695323600000000014 0.151517810000000003 -0.187948520000000008 0.185802620000000002 0.417477759999999976 -0.0950642000000000015 -0.00951741600000000076 0.277649599999999996 158 0 156 2 4.54218670000000024 243.570007 1.50876411527890997 1.64536973668049002 31 false 0.0708898200000000062 1.10914634813767998 0.135654068242622994 0.049272719999999999 18 10 0.972169700000000025 0 18 false 152 196.846244245315006 1.18072735534344009 166.716003 19.953049 12 53.910752911892601 11.1028098324979005 4.85559560000000001 21.0222000000000016 13 290.917090577591978 12.6148748483669007 23.0614339999999984 18.6024969999999996 1.75176240000000005 0 2.41970250000000009 1.0691508999999999 1.35055159999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.506306666558004 -62.4627196210058031 22.8566960041658014 -12.2067934608965007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487726380825088 2505487726380825088 158485978 2015.5 25.6275326639851997 0.707890195568547043 -2.42259993375308991 0.607437130698911032 1.14266340755818008 0.905820660998730043 1.26146760000000002 -5.55893125573722013 1.28036711146799997 -10.6812609276671004 1.10093544340346994 0.176126909999999998 0.528210159999999984 0.0624290100000000001 0.120682800000000007 -0.193123340000000004 0.0709599300000000044 0.221031169999999999 -0.0153468179999999999 0.0991990199999999989 0.285180400000000001 137 0 137 0 6.34135399999999994 263.110992 2.81838247666533004 5.40617490138605028 31 false 0.047362253 1.44471923295529003 0.170161728165508008 0.128180600000000006 16 10 1.21014400000000011 0 16 false 136 183.088538408076005 1.38593204550943994 132.104996 20.0317129999999999 11 60.1280677998887967 8.99083097259092057 6.68771000000000004 20.9036940000000016 11 262.912927911923987 6.85909543849385983 38.3305549999999968 18.7123899999999992 1.76439769999999996 0 2.19130329999999995 0.871980670000000013 1.31932260000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.43102070737001 -62.4341628822586969 22.8535322612516012 -12.1618648136845007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487657661345536 2505487657661345536 193108809 2015.5 25.6462909995702013 0.633035793558284987 -2.43251803235316011 0.685371022084947046 0.0762188674023766 0.820461277797763011 0.0928975799999999935 3.01755611168443005 1.30507742993787001 -8.2721160889969898 1.20925428747034003 0.194776480000000002 0.403862359999999976 0.143133769999999994 0.175210759999999993 -0.334727529999999995 0.311353270000000015 0.634420800000000007 -0.221729619999999988 -0.187459839999999989 0.357107100000000011 143 0 142 1 4.08953330000000026 215.552002 2.0167415705176901 2.77156506057920016 31 false 0.0551642369999999979 1.85132117348577996 0.161871091875223 0.0692101640000000046 17 9 1.37064849999999994 0 17 false 142 183.098976417084003 1.26527808732231994 144.710007 20.0316499999999991 14 100.378542649490996 5.09775613876861033 19.6907309999999995 20.3472860000000004 15 133.024596196134013 5.64468640651409004 23.5663400000000003 19.4520899999999983 1.27473759999999992 0 0.895196899999999962 0.315635679999999974 0.579561230000000038 \N \N 0 \N \N \N NOT_AVAILABLE 151.476790160153001 -62.435167411399803 22.8676456188894015 -12.1779669208352992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487455798003584 2505487455798003584 413108232 2015.5 25.6610532554429014 0.377935861836870002 -2.44221955883332997 0.323606169703345992 0.960092466384294019 0.466316663106653984 2.05888500000000008 2.20918308712293987 0.717432758795868986 2.25937942102674993 0.584347875760626967 0.12764737000000001 0.494250679999999998 0.0596785619999999975 0.123469369999999995 -0.209537859999999992 0.149427979999999988 0.394713580000000008 -0.0853851699999999963 -0.0018939619999999999 0.234239279999999994 153 0 150 3 3.22505450000000016 206.302002 1.05765070808513006 1.73097984191163001 31 false 0.152099650000000003 1.31950582452528997 0.0952005512678845006 0.030750099999999999 18 10 0.664765500000000009 0 18 false 149 326.461804782483 1.42329888373275004 229.369995 19.4037860000000002 15 125.379979761594996 7.84012040678658995 15.9920989999999996 20.1058179999999993 16 355.226591358109999 12.1180847096498994 29.313756999999999 18.3856560000000009 1.47216780000000003 0 1.72016140000000006 0.702032100000000048 1.01812930000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.514557762283999 -62.4376631021131985 22.8780417280625983 -12.1924024905653994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492437960066048 2505492437960066048 1610649630 2015.5 25.7501219706386983 0.495373092346999999 -2.43067301252564993 0.408900110259724003 -1.95397583873592007 0.616384971199952947 -3.17005749999999997 -3.99404518728261015 0.973729319168099017 -15.3761037160577008 0.704242549907994952 0.0304902030000000004 0.442496600000000018 0.0228578899999999988 0.143004849999999989 -0.388512899999999994 0.269747799999999982 0.394997980000000026 -0.136516419999999999 -0.0878199399999999991 0.306832400000000005 168 0 167 1 176.71547000000001 69543.8984 3.34696033857780018 2377.15732316412004 31 false 0.0854947399999999996 1.41202224031909007 0.117591585822745995 0.0163236759999999988 19 10 0.907484770000000052 0 19 false 164 61807.028747910299 32.0335198127295016 1929.44995 13.7107709999999994 19 32866.8350981676995 71.1839777342844968 461.716769999999997 14.0594929999999998 17 42459.9896726470033 46.4693132570611027 913.721070000000054 13.1919699999999995 1.21874199999999999 0 0.86752320000000005 0.348722460000000012 0.518800739999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.677640620514012 -62.3891997892705987 22.9670770144412018 -12.2142919623703001 110001 5666.3999 5409.97021 5929 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487485862629248 2505487485862629248 1641526392 2015.5 25.6620705689860991 0.0415854143668447987 -2.43824329248877003 0.0286070917881948994 3.10852693171491001 0.0480704233727662009 64.6661000000000001 -3.37424615133453987 0.0692059984860629029 -7.69512633426934034 0.0630539667068005932 0.110633319999999993 0.629000899999999974 -0.0658895149999999957 0.0152569739999999995 -0.0566706400000000013 0.0669398159999999992 -0.0348531050000000023 -0.0591820700000000033 -0.0581341240000000023 0.295204399999999978 157 157 157 0 2.52219030000000011 199.552994 0 0 31 true 320.313800000000015 1.57109809510186005 0.0103075247465587005 0.0459443220000000027 18 10 0.0461234150000000009 0 18 false 153 230744.061761210993 63.7151947304816986 3621.48999 12.2805394999999997 17 119498.516490876005 183.813146966143989 650.108640000000037 12.6579820000000005 17 159266.644063437998 240.07942775775399 663.391499999999951 11.7566079999999999 1.20811409999999997 0 0.901373859999999971 0.377442359999999977 0.523931499999999994 3.66245411078431005 10.0864659921588 6 5500 3.5 0 NOT_AVAILABLE 151.512882784991007 -62.4336328433820995 22.8805012874370988 -12.1890762215986008 100001 5764.08008 5456 6356.77002 0.210999995 0.148000002 0.475699991 0.112000003 0.0626000017 0.209099993 200111 0.974171039999999988 0.800981940000000003 1.08729410000000004 0.943813499999999972 0.923548600000000053 0.964078400000000002 +1635721458409799680 Gaia DR2 2505487692021084928 2505487692021084928 280659746 2015.5 25.648297667011299 0.64229896748292703 -2.42785672791036999 0.648586981366386039 2.21586055444202978 0.805819027007704025 2.74982399999999982 44.2475316459276016 1.34617343259280009 -14.6273998709402004 1.12169147737721997 0.182763039999999988 0.40191623999999998 0.0576151869999999983 0.195169549999999997 -0.334261179999999991 0.343463540000000012 0.637315500000000035 -0.200071329999999992 -0.193832250000000011 0.351675630000000017 130 0 129 1 4.81845899999999983 215.447006 2.41267838088149 4.61424742445139024 31 false 0.062598769999999998 1.15164161234686002 0.154886747200544989 0.0278334150000000002 15 9 1.34796380000000005 0 15 false 129 218.398387110525988 1.4059329957706499 155.341003 19.8402419999999999 14 52.8578029050133011 8.1001734758038495 6.5255150000000004 21.0436149999999991 13 307.063227896736009 7.81957993502931981 39.2685049999999976 18.5438499999999991 1.64800229999999992 0 2.4997653999999998 1.20337300000000003 1.2963924 \N \N 0 \N \N \N NOT_AVAILABLE 151.476422921367003 -62.4300960852524014 22.8713029345761996 -12.1743660424826992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487692022545664 2505487692022545664 1554523106 2015.5 25.6543299783381009 0.811224427236587053 -2.43004772978492012 0.72132595745388195 1.89176889375239998 0.95827096707956505 1.97414819999999991 6.86735762185475984 1.6454550752069601 4.86500014746362019 1.61577365531157002 0.192689630000000001 0.448729299999999998 -0.120628200000000005 0.0665601340000000069 -0.116571649999999999 0.137928350000000005 0.168619889999999995 -0.045796383000000003 -0.087657120000000005 0.325448100000000018 119 0 116 3 1.01320359999999998 126.064003 1.83781618796413992 1.25127898558974993 31 false 0.0373663099999999998 1.6392527249820199 0.242548983060010992 0.0214267110000000011 14 10 1.65299820000000008 0 14 false 116 128.499844364007004 1.32619355294915997 96.8936996 20.4161099999999998 6 25.6000611559848004 6.81254085337641957 3.75778459999999992 21.8307859999999998 9 192.363188354208006 17.3147203385424007 11.1098060000000007 19.0516150000000017 1.69621409999999995 0 2.77917099999999984 1.41467670000000001 1.36449430000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.490220920888987 -62.4295126466805002 22.8762165119817986 -12.1786151332597008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481305404839296 2505481305404839296 1311773323 2015.5 25.6683949922770012 0.813933899973105945 -2.54560260601241017 0.596146439430995989 0.193049852176860992 1.13519067492081005 0.170059409999999994 -6.0293323963898704 1.13062299457860993 -1.42968052631196008 0.984005640757978028 -0.278552950000000021 0.751459659999999974 -0.0377775320000000026 -0.0278534440000000015 -0.551298740000000009 0.146614149999999999 0.369554280000000013 -0.0484374760000000001 -0.140133110000000005 0.30876621999999998 141 0 140 1 0.0491926820000000015 135.141998 0 8.64845076549420973e-16 31 false 0.0614146549999999986 1.32367397764357997 0.143435833951742003 -0.0472981700000000005 16 9 1.16157529999999998 0 16 false 140 157.083079663900008 1.23279807548190989 127.419998 20.1980420000000009 9 38.1015063541492012 6.52962066274155006 5.83517930000000007 21.3990329999999993 11 203.257629810076992 7.36154685556236998 27.6107230000000001 18.9918019999999999 1.5365063000000001 0 2.40723039999999999 1.20099069999999997 1.20623970000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.624449967190998 -62.5280184482404024 22.8462125249860009 -12.2912675742082005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482782873588864 2505482782873588864 1018543908 2015.5 25.6790274079024989 0.0252923117399482013 -2.54296158636863989 0.0188746455063406003 1.89355921943883998 0.0290108445626573001 65.2707400000000035 4.17962457476416027 0.0452363696596706014 2.46644390943332015 0.0408727971591694994 0.101558270000000006 0.568583850000000002 -0.0510492359999999978 0.0686915899999999968 -0.137311340000000004 0.125827579999999994 0.0614082000000000031 -0.0594841470000000011 -0.039415552999999999 0.330470619999999993 159 0 158 1 -4.636876 84.9261017 0 0 31 true 87.5514139999999941 1.58045537231780009 0.00627769913498122008 0.0305437760000000016 18 10 0.0536514560000000001 0 19 false 160 68489.2479732678039 26.9431614706835987 2541.98999 13.5993099999999991 18 35542.8094757240979 52.2432220730248034 680.333439999999996 13.9745089999999994 18 47538.3869453302032 80.9231344153516972 587.451099999999997 13.0693090000000005 1.21305449999999992 0 0.905200000000000005 0.375199320000000003 0.530000699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.642810048693008 -62.5210868787590996 22.8573172228440988 -12.2927081386887007 100001 5474.75 5402 5494.49023 0.0680000037 0.0419000015 0.186100006 0.0289999992 0.0207000002 0.0860999972 200111 0.977504550000000028 0.970492099999999969 1.00401040000000008 0.7733738 0.744384770000000029 0.802362800000000043 +1635721458409799680 Gaia DR2 2505485772170826624 2505485772170826624 601564115 2015.5 25.6768072993568985 0.0340381841180490974 -2.52299595730363002 0.0245149408176246995 1.66858929478757001 0.0396762075692507973 42.0551600000000008 22.419972692879 0.0597470434968156994 -10.1855488795444007 0.0558557934659877006 0.0200887429999999992 0.590068640000000033 -0.0837184299999999965 0.0287926229999999998 -0.198863039999999991 0.0976802900000000029 -0.00690338199999999957 -0.0740266740000000006 -0.0711924599999999991 0.334496100000000018 168 107 167 1 4.56849400000000028 258.020996 0 0 31 true 172.833660000000009 1.61084702884251008 0.00838222887588161054 0.019791920000000001 19 10 0.0488605049999999985 0 19 false 166 128417.533628751 48.4971921255756016 2647.93994 12.9168050000000001 18 70862.7424274096993 70.6515379584238019 1002.98940000000005 13.2253439999999998 18 83452.6835094358976 75.4594358347419956 1105.92769999999996 12.4583200000000005 1.20166949999999995 0 0.767024040000000018 0.308538440000000025 0.458485599999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.619960945321992 -62.5039893570084004 22.8627024760467989 -12.2733211020325008 100001 5947 5785.93994 6197 0.298000008 0.181500003 0.386799991 0.145999998 0.106600001 0.195999995 200111 1.2658045 1.16573419999999994 1.33725399999999994 1.8055924000000001 1.73421010000000009 1.87697470000000011 +1635721458409799680 Gaia DR2 2505482572419615360 2505482572419615360 588926649 2015.5 25.7282277968399988 0.429281996364890006 -2.55144996606609009 0.334881349797157002 2.26484216563539009 0.520488393278577988 4.35137899999999966 7.54848542246639997 0.803350068823337038 -12.1706245242045004 0.619155793928048981 0.0435766240000000013 0.503421699999999972 0.0296404159999999993 0.0797340299999999974 -0.211427690000000001 0.0197689139999999985 0.201979149999999996 0.0019086407000000001 0.110466726000000001 0.154122490000000001 178 0 178 0 4.79430770000000006 277.466003 1.44094409457698003 2.51828652520004015 31 false 0.0997154299999999938 1.20860987678327003 0.103325804660077 -0.0218361260000000008 20 10 0.716364439999999991 0 20 false 177 258.434913591383975 1.18411149777419 218.251999 19.6574880000000007 17 68.9010631601437069 7.37376980982832997 9.34407599999999938 20.7558229999999995 15 356.788209358152983 10.3619601147170997 34.432502999999997 18.3808940000000014 1.64718169999999997 0 2.37492940000000008 1.09833530000000001 1.2765941999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.746911207386006 -62.5076856893126021 22.9009303491508014 -12.3186358181549007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482675503571072 2505482675503571072 340682705 2015.5 25.7245382457934006 1.01058562025308007 -2.52780833457571985 0.994777556097628968 1.70532535127303997 1.22237813890831992 1.3950882 20.5768902274378007 2.51052777463213017 -2.26401963788784011 3.10231110416953992 0.167659399999999986 0.251541820000000027 -0.113504543999999999 -0.0416210220000000006 -0.223184589999999988 -0.0407385639999999979 -0.189518720000000002 -0.107133925000000005 -0.110417425999999999 0.481457619999999975 95 0 94 1 1.7231209999999999 113.240997 0.862251399028723053 0.111025426900101004 31 false 0.0246414340000000003 1.71320966360642002 0.32271333166215399 -0.0409123669999999981 12 9 3.04958030000000013 0 12 false 96 87.7512536435563959 1.17512413138814997 74.6740036 20.8302329999999998 9 44.2214927072630033 10.9922970481053 4.02295300000000022 21.2373049999999992 10 114.960918762752996 5.57580962299902971 20.6177980000000005 19.6105440000000009 1.81401860000000004 0 1.62676050000000005 0.407072070000000008 1.21968839999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.717729170121004 -62.4879140748622035 22.9062958009069995 -12.2952898839878006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779355776 2505482606779355776 1647685681 2015.5 25.7422227924927007 1.32418147347551995 -2.54141664510040011 1.08811932370340991 -0.0551062074488673018 1.89424054787146989 -0.0290914510000000008 1.25439587369257 2.13620972856968017 0.487360675281306999 2.95395675292123006 -0.274264750000000002 0.749266740000000042 -0.131009270000000011 -0.196167320000000006 -0.577652199999999949 -0.100075600000000001 -0.0651044399999999995 -0.0265363700000000001 -0.134439229999999993 0.575459959999999993 113 0 112 1 -0.668516800000000022 96.8899994 0 0 31 false 0.0256055520000000002 1.68930203451670002 0.278030214367878004 -0.0614773779999999992 13 8 2.90566749999999985 0 13 false 112 92.6765552568281947 1.22445835962265992 75.6877975 20.7709399999999995 9 71.3542004176869966 10.6606546424486996 6.6932286999999997 20.7178399999999989 9 88.5032590210318943 9.28832207002854915 9.52844400000000036 19.8945219999999985 1.7248964 0 0.823318499999999953 -0.0531005859999999982 0.876419069999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.764922246242008 -62.4926199613891029 22.9180101981358 -12.3144294519740995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779356672 2505482606779356672 484687774 2015.5 25.7421544974831988 0.633624456650836998 -2.53914758559843001 0.605498131317869004 0.238987451012175001 0.828722621795537018 0.288380499999999984 1.26083890745238003 1.27383388175881995 -2.19812990784433993 1.3156099605543401 0.142646600000000012 0.442051950000000027 -0.0472205060000000024 -0.0244927950000000012 -0.303613840000000024 -0.134723050000000011 -0.149874960000000002 0.0865865350000000061 0.172926550000000012 0.373514259999999987 151 0 148 3 0.87717540000000005 157.641006 0 0 31 false 0.0464952360000000023 1.61569201090491998 0.184403443058103994 0.041473030000000001 17 10 1.33988400000000007 0 17 false 148 130.961752115605009 1.05087760996885993 124.621002 20.395503999999999 13 79.5554457160032058 6.82726101384998962 11.6526160000000001 20.5997139999999987 13 85.5347847335080047 6.38999542514858998 13.3857350000000004 19.9315619999999996 1.26059879999999991 0 0.668151860000000042 0.204210279999999994 0.463941570000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.762678314370987 -62.4906002803189011 22.9187969711747996 -12.3122934682809007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482989032018560 2505482989032018560 1481023602 2015.5 25.7482690637440008 0.753068852048496051 -2.5275699730314698 0.609685685883233019 -0.232609425377721002 0.895541760898421968 -0.259741569999999977 9.45267387467301035 1.48941916910809002 -5.39596701191717987 1.25588206266943003 0.142742289999999994 0.470372300000000021 -0.106894520000000007 0.0163343100000000012 -0.121452673999999997 -0.0577342320000000034 0.0150855510000000009 0.0525667739999999967 0.11633425 0.200789649999999986 141 0 138 3 2.65702769999999999 180.393997 1.32597780093018991 0.658233649747191008 31 false 0.0386299829999999997 1.47958943664598008 0.211103677255785993 -0.0110946229999999996 16 10 1.35825770000000001 0 16 true 140 124.539948806675994 1.03319751477449007 120.538002 20.450094 11 50.1417143117516986 5.44239049097178018 9.21317900000000023 21.1008910000000007 13 169.221117808017993 21.8739760213458005 7.73618459999999963 19.1907840000000007 1.76138529999999993 0 1.91010670000000005 0.650796900000000011 1.25930980000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.763852375216999 -62.4775212215652971 22.9289593023543006 -12.3037625969061004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482164398298112 2505482164398298112 1052375709 2015.5 25.7657897637552011 0.0457277613501436975 -2.54833178261500004 0.0330125103649763982 1.54682460934224997 0.0526826998198157981 29.3611490000000011 26.122174014882301 0.0833915622445450949 -14.6420970681067004 0.068314741576005103 0.00509721900000000006 0.531888369999999999 -0.0470874829999999994 0.0511119439999999994 -0.204537510000000006 0.0120883589999999999 -0.0204504699999999984 0.0123555734999999996 0.0803596899999999975 0.210921200000000003 179 0 176 3 -1.2813886000000001 147.774994 0 0 31 true 11.1428609999999999 1.45538823092443992 0.0113125461358256005 -0.0174489619999999984 20 10 0.0825522540000000055 0 20 false 173 9178.90533051702005 5.34043788673831976 1718.76001 15.7813879999999997 17 3556.73813593242994 14.2953385054522997 248.804049999999989 16.4737590000000012 16 8161.19292542065978 18.2230622474524004 447.849699999999984 14.9825359999999996 1.27661530000000001 1 1.49122240000000006 0.692370400000000052 0.798851969999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.817379281555986 -62.4887397433461018 22.9378345452633994 -12.3294966222787004 100002 4405.33008 4341 4554.5 0.619000018 0.386000007 1.01049995 0.303000003 0.178399995 0.432099998 200111 0.772357170000000037 0.72259395999999998 0.795419399999999999 0.202416640000000009 0.187379359999999995 0.21745392999999999 +1635721458409799680 Gaia DR2 2505483023391756544 2505483023391756544 86835392 2015.5 25.7578487893118009 0.0397867693268428996 -2.5223961713631402 0.031447476531128199 0.181109699518042011 0.0479910106439307982 3.77382540000000022 21.2253684789931008 0.0719566229663562984 1.10714819688828991 0.0694062507355400066 0.0995245349999999973 0.551266900000000004 -0.0564874399999999999 -0.0148591279999999992 -0.190081919999999988 -0.156746880000000005 -0.328667280000000006 0.0750344839999999985 0.16555070999999999 0.338777360000000027 143 0 142 1 -1.26575710000000008 116.499001 0 8.58509129855884954e-16 31 true 20.3140830000000001 1.60482484914264001 0.0102577327914567008 0.0795151500000000067 16 10 0.0802680300000000041 0 16 false 139 15819.4000791924009 6.9174282798118103 2286.88989 15.190391 11 8226.86019515943917 7.07712944258172971 1162.45730000000003 15.5633029999999994 15 11210.4671535430007 14.3553236279100993 780.927500000000009 14.6378599999999999 1.22870199999999996 0 0.925442699999999951 0.372912399999999977 0.55253030000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.777740561488997 -62.4687370041971022 22.9400141473578998 -12.3024585548449998 100001 5377 5102.66992 5664 1.63600004 1.18620002 2.13599992 0.822000027 0.625 1.11010003 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483023391756416 2505483023391756416 222339068 2015.5 25.7591874785079007 0.0720254155638604954 -2.52071781477390999 0.0516698860863420983 2.58971746436258998 0.0876282642273144008 29.5534500000000016 -19.7168526270820017 0.126261973354341001 -35.1064606163544966 0.0980793966756241947 0.0617883840000000018 0.559593000000000007 -0.00338075219999999996 0.0923498650000000032 -0.182053970000000009 -0.0187248960000000013 -0.0058544640000000002 0.0549051799999999979 0.177490490000000001 0.211865629999999999 161 0 161 0 6.45500600000000002 299.022003 0.316344750335647018 6.46029535929366006 31 true 4.86541460000000026 1.4106860852291101 0.0172663911686271009 0.0510103179999999989 18 10 0.118334900000000007 0 18 false 160 7955.92659089136032 6.5243925665225202 1219.41003 15.9366389999999996 16 2353.94078710438998 22.3101031790173998 105.510080000000002 16.9219000000000008 15 8482.72968391299946 23.7504263484940985 357.161159999999995 14.9405809999999999 1.36208780000000007 0 1.98131849999999998 0.985260959999999963 0.99605750000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.778792381187998 -62.4666467630168967 22.9419175000739983 -12.3013874771455995 100001 3728 3662 3833.84009 0.873000026 0.500899971 1.36609995 0.400299996 0.250999987 0.626699984 200111 0.734553340000000055 0.694556799999999974 0.761269569999999951 0.0938955499999999943 0.0873047859999999953 0.100486309999999995 +1635721458409799680 Gaia DR2 2505482267477512960 2505482267477512960 1391332376 2015.5 25.7772616959182983 0.0364085209169257018 -2.53213294567291003 0.0249179437894975001 1.96790237156387993 0.0406834568765861992 48.3710700000000031 15.5089517500742993 0.0610534479092003993 0.163153243262958991 0.0545819489057033022 0.0515698750000000011 0.609040299999999979 -0.0718037299999999962 0.0152126494999999997 -0.0800366899999999937 -0.0344220179999999987 -0.199090270000000014 0.011739869 0.0550500339999999977 0.222572450000000005 178 152 173 5 3.71328570000000013 244.813995 0 0 31 true 203.704859999999996 1.60086484628931003 0.00899235180475196037 -0.0389946440000000019 20 10 0.0433194530000000008 0 20 false 168 147760.769832546997 44.2774389987313981 3337.15991 12.7644680000000008 17 80466.2024836945056 128.113703897188003 628.084299999999985 13.0873550000000005 18 96648.4525585262018 71.1419141109374067 1358.5304000000001 12.2989329999999999 1.1986581999999999 0 0.788421629999999984 0.322886469999999981 0.465535160000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.824679100601003 -62.4691854214522024 22.9548281078933982 -12.3186281430304003 100001 5910.5 5736.08008 6377.99023 0.125200003 0.0509000011 0.268999994 0.0623000003 0.0260000005 0.133100003 200111 1.16649059999999993 1.00175520000000007 1.23851040000000001 1.49607739999999989 1.44888400000000006 1.54327079999999994 +1635721458409799680 Gaia DR2 2505481988304064128 2505481988304064128 614142009 2015.5 25.8028981061329006 0.166910178287069999 -2.54623979319126015 0.134670301582106994 0.0134766985890229993 0.206653322589850003 0.0652140449999999983 3.28454260757960004 0.332556426410956008 -7.22250470463418992 0.266380722072959986 -0.00313837699999999992 0.393611880000000025 0.125791070000000005 0.0249029319999999992 -0.308040140000000018 -0.0650104660000000029 -0.0558819170000000032 -0.0133609699999999998 0.200388270000000007 0.178446369999999993 140 0 140 0 0.903976859999999993 149.690002 0.0515572420975462034 0.0167480679922309 31 false 0.790783349999999996 1.61627385500727994 0.0471010497353476013 -0.0459408399999999967 16 10 0.301951499999999984 0 16 false 139 941.50541789699605 1.91897997698696998 490.627991 18.2538090000000004 14 537.822034238478977 7.50291325000847031 71.681759999999997 18.5247920000000015 14 613.660395905067048 9.09475552636708962 67.4741000000000071 17.7920990000000003 1.22302259999999996 0 0.732692699999999975 0.27098274 0.46170998000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.887832217554006 -62.4708805398853002 22.9739248732135017 -12.3411421771739001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485767875711360 2505485767875711360 1665531101 2015.5 25.6720419527737 0.968729234250293003 -2.51660714489426995 0.717060370999345054 \N \N \N \N \N \N \N 0.0148558860000000004 \N \N \N \N \N \N \N \N \N 159 0 159 0 233.870699999999999 148638 6.33293091760056015 8014.86745679217984 3 false 0.0247079559999999997 \N \N -0.0249311439999999988 18 10 1.77532230000000002 0 18 true 159 57435.9341030713986 195.953420995008003 293.109985 13.7904060000000008 17 13956.1651703018997 38.2073633968870965 365.274229999999989 14.9894730000000003 17 70642.0056492777949 81.3499963827687935 868.371340000000032 12.6392620000000004 1.47291360000000005 0 2.35021110000000011 1.19906709999999994 1.15114399999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.604723946587995 -62.5002492982626023 22.8605689455936982 -12.2656311621843006 130001 3600 3424.5 4195.64014 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485870954940160 2505485870954940160 207058766 2015.5 25.6863184584194002 0.36052304988304501 -2.51594658368115986 0.314870119970602991 1.81755437930711006 0.447709286912810978 4.05967500000000037 15.9881294260349005 0.721914243955898982 1.9720414032853899 0.63917682579345303 0.0858239300000000066 0.451007460000000027 -0.0214032070000000005 0.0732087599999999977 -0.301218480000000011 0.138170290000000001 0.236101090000000013 -0.0693433900000000047 -0.0484988579999999989 0.320157199999999975 155 0 152 3 3.32348180000000015 210.817993 1.25609849014590003 3.04036212400977002 31 false 0.151200410000000007 1.36447759483407993 0.0919708123733499056 0.0157264249999999987 18 10 0.696936099999999947 0 18 false 151 358.544118173412016 1.61567850492307996 221.916 19.3020099999999992 15 98.200840574385694 11.0149719602248997 8.91521499999999989 20.3710999999999984 14 440.92406883050802 10.450984951933 42.1897129999999976 18.1510099999999994 1.50365009999999999 0 2.2200890000000002 1.06908990000000004 1.15099909999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.632031316285008 -62.4935531315150001 22.8743952561009003 -12.2702492011674007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505485875250040704 2505485875250040704 46255932 2015.5 25.6858470162059014 0.0599421135168749022 -2.50535495185280022 0.0457973841371399001 3.80790241270022989 0.0711317466379713936 53.5330920000000035 64.0428371887062013 0.114754041350770997 20.2097286175208986 0.0922310240673312048 0.00741851330000000038 0.49703892999999999 -0.0261729999999999983 0.0814849599999999952 -0.300905880000000014 0.188693969999999989 0.230536390000000008 -0.109270930000000002 -0.0798892300000000055 0.300179240000000014 168 0 166 2 5.43467660000000041 278.575989 0.267684330243027013 5.65870346143984015 31 false 6.58298299999999958 1.31312904982717993 0.0146361871517264996 0.0050061083999999997 19 10 0.113197333999999997 0 19 false 166 10242.8560153396993 7.49379202878836015 1366.84998 15.6623129999999993 19 2592.90467641413989 15.5315342309445992 166.944529999999986 16.8169210000000007 18 11707.4565258314997 21.2391817025695993 551.219699999999989 14.5907640000000001 1.39613019999999999 0 2.22615719999999984 1.15460779999999996 1.0715494000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.621301965239013 -62.4841807545774017 22.8779230911239999 -12.2602232077852005 100001 3528 3497.33008 4103.22998 1.43350005 1.06200004 1.94379997 0.677999973 0.486000001 0.931999981 200111 0.680664999999999965 0.503199159999999979 0.692654299999999945 0.0646659799999999979 0.0621188699999999996 0.067213096 +1635721458409799680 Gaia DR2 2505485943969516928 2505485943969516928 567097816 2015.5 25.6749796144073983 0.0942922073723053006 -2.49148759376081985 0.0742740885033453951 1.95327886929870997 0.106555573016361996 18.3310810000000011 18.9581779766068017 0.185301929403603988 -11.3957155623277995 0.139596166514629 0.0739725199999999999 0.434628579999999987 -7.22142800000000028e-05 0.161375419999999992 -0.228806869999999996 0.259887839999999981 0.313275840000000028 -0.111027039999999994 -0.0535558459999999972 0.277827800000000014 143 0 143 0 4.57075899999999979 227.781998 0.371995437222023995 4.15730545504337989 31 false 2.78165359999999984 1.40518525385848991 0.0242547007447948999 -0.0208170500000000001 17 10 0.175748900000000013 0 17 false 143 4251.03252317570968 3.95034003501868014 1076.12 16.6171299999999995 15 1270.97727247605008 14.0143806021867992 90.6909299999999945 17.5910429999999991 13 4469.72488272183 12.3397523755983993 362.221600000000024 15.6362179999999995 1.3504254 0 1.95482540000000005 0.973913200000000034 0.980912200000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.587231144863011 -62.4762845010875978 22.8727932262992013 -12.2433398089722996 100001 3815.1499 3702 4324.12988 0.57069999 0.0970000029 1.11199999 0.333999991 0.0538999997 0.54549998 200111 0.659710939999999968 0.513546940000000007 0.700654800000000022 0.0830708299999999983 0.0737730899999999995 0.0923685649999999997 +1635721458409799680 Gaia DR2 2505486180196419200 2505486180196419200 936185823 2015.5 25.6815758813337993 2.37792184743436996 -2.48429626136269999 2.61030366525556001 \N \N \N \N \N \N \N 0.724347100000000022 \N \N \N \N \N \N \N \N \N 56 0 56 0 0.187827440000000012 52.2402 0 0 3 false 0.0190932140000000007 \N \N 0.115362346000000004 7 7 10.1222969999999997 0 7 false 57 71.1196956869274999 1.55872149330177989 45.6268997 21.0583920000000013 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.593475359040013 -62.4669670433751989 22.8817658879754013 -12.2390672594082996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486562444806784 2505486562444806784 536805264 2015.5 25.6873114590948006 2.22045193853853995 -2.46987303415810011 1.70600648419242007 \N \N \N \N \N \N \N -0.0316029000000000032 \N \N \N \N \N \N \N \N \N 148 0 147 1 42.8934500000000014 2780.33008 13.5676364138727994 520.459842274830976 3 false 0.00489766199999999968 \N \N -0.0168029680000000015 19 10 3.93603300000000011 0 19 false 164 221.613681362532986 2.29371903535369981 96.6175995 19.8243749999999999 17 264.77798015822998 7.64542419767701009 34.6322169999999971 19.2941840000000013 18 617.33024762488003 6.89770859417466031 89.497870000000006 17.7856249999999996 3.9803869999999999 0 1.50855830000000002 -0.530191399999999979 2.03874969999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.591352621746012 -62.4514782886826012 22.8926339807273003 -12.2277512197541007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483263909342848 2505483263909342848 873618825 2015.5 25.7230311578904001 0.628393578937826991 -2.51008946629647012 0.583987184797265968 -1.54777904660068 0.810194838257690009 -1.91037879999999993 3.61293709496474014 1.3312838816891801 -9.50472244604089056 1.22801873489005997 0.147046310000000013 0.388389399999999996 0.11343657 0.0314253160000000017 -0.281528200000000006 0.0872780199999999978 0.213768600000000003 -0.153414410000000001 -0.0341235199999999975 0.327057119999999979 139 0 139 0 -0.0442547429999999992 132.613998 0 0 31 false 0.0508037319999999973 1.73609986815988004 0.176651076284218 0.04391954 17 10 1.30592559999999991 0 17 false 144 136.516683603850993 1.22980673919679995 111.007004 20.3504000000000005 15 55.4322616961627972 6.60328812474523019 8.39464599999999983 20.9919820000000001 15 148.995564035417004 7.17978082127442008 20.7521060000000013 19.3289870000000015 1.49745670000000008 0 1.66299440000000009 0.641580599999999945 1.02141379999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.698340141131013 -62.4725529125156029 22.9115131034066017 -12.2782535208924006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483092111321600 2505483092111321600 300725990 2015.5 25.7470930991831999 0.615949790160470023 -2.50507857513941978 0.576065082935074968 0.17083423592358099 0.740431299413868982 0.2307226 1.3566457059074899 1.24770832424945 -13.3442158960606001 1.51433627868867005 0.183556699999999989 0.476155639999999991 -0.0853059600000000001 -0.131933880000000003 -0.172984350000000009 -0.202235899999999996 -0.323469600000000024 0.0104017799999999994 0.0681874160000000007 0.418005320000000014 150 0 148 2 -0.101556179999999996 140.628998 0 3.36122182027953985e-15 31 false 0.0509850940000000016 1.09698136891593001 0.182388537996171995 0.00996501999999999978 17 9 1.48249589999999998 0 17 false 147 138.511025002157993 1.11943763159304011 123.733002 20.334655999999999 12 99.4417625773912022 14.4592671117652998 6.87737230000000022 20.3574659999999987 13 110.764790344076999 9.28467602726851027 11.9298500000000001 19.6509150000000012 1.51761600000000008 0 0.706550600000000029 0.0228099819999999995 0.683740600000000032 \N \N 0 \N \N \N NOT_AVAILABLE 151.740661843351006 -62.4577139330597007 22.9362816089219983 -12.2824070930121998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486390646115200 2505486390646115200 899474296 2015.5 25.7085648681384988 0.393615117469362008 -2.47618770592444015 0.368277828221283021 -0.917662549705054009 0.50714879260219603 -1.80945430000000007 2.09861926096058005 0.782601900762782021 -4.91189341863332984 0.708015397217035991 0.103636450000000005 0.447185779999999977 0.0436840800000000001 0.0797129649999999967 -0.320239779999999974 0.133467210000000003 0.316299470000000027 -0.0826114939999999937 -0.0410947539999999972 0.307054070000000012 166 0 165 1 0.543934350000000011 169.235992 0 0 31 false 0.113876060000000001 1.78646835351495992 0.106217337847373999 0.0110753840000000006 19 10 0.761172350000000053 0 19 false 165 242.757196466788002 1.21863695929464 199.203995 19.7254350000000009 16 152.484429733819013 6.63414813501729039 22.9847800000000007 19.8933239999999998 15 168.434475259109007 9.33847162660618046 18.0366210000000002 19.195843 1.32197490000000006 0 0.697481160000000044 0.167888640000000006 0.529592500000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.638690117039999 -62.4481079976225004 22.9104771710495996 -12.2414135679943996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486321926638336 2505486321926638336 1220524893 2015.5 25.7215683659063004 0.241262705243163011 -2.47508881902242006 0.216642971246398003 2.22689844606663012 0.30724922614665201 7.24785699999999977 15.4548672291789 0.481409973672866975 2.5999261489360701 0.428365317104168974 0.0856661900000000032 0.451267399999999985 0.0602687199999999978 0.0669705639999999963 -0.319544459999999975 0.140104119999999999 0.287633750000000021 -0.109604450000000006 -0.0571229870000000001 0.316974880000000014 160 0 157 3 0.602063099999999962 162.044006 0 0 31 false 0.328115500000000004 1.2536063790843599 0.0638509377222493957 0.0250540409999999991 19 10 0.467688559999999975 0 19 false 157 483.406889636208973 1.43136679682737999 337.723999 18.9775829999999992 17 99.9577922545773987 8.94070807655690913 11.1800759999999997 20.3518469999999994 17 641.356812464674022 14.9467627661392992 42.9094120000000032 17.7441710000000015 1.53352090000000008 0 2.60767559999999987 1.37426380000000004 1.23341180000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.663053633993002 -62.4415539095492989 22.9232570801145989 -12.2451554719698006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483366989139072 2505483366989139072 979492287 2015.5 25.7408448286845015 0.303733505329835007 -2.49060420598472021 0.225704489151733995 0.578157568213650053 0.35863360675141398 1.61211199999999999 12.6485533900359997 0.570235635325577972 -10.6855244047075004 0.417000427219337999 0.0191170569999999998 0.499288100000000012 0.0298566460000000006 0.0803905800000000031 -0.204268110000000003 0.0296889320000000012 0.203591699999999987 -0.00910420800000000079 0.106504050000000003 0.129809050000000009 178 0 176 2 4.61826500000000006 270.509003 1.13739439569699008 3.46342803413763001 31 false 0.210512900000000003 1.38992545908344001 0.0742942839732844973 -0.0305164009999999986 20 10 0.505597900000000045 0 20 false 176 465.87836774277099 1.54863497538506989 300.832001 19.0176850000000002 16 161.333765067405011 5.89637732376986978 27.3615059999999986 19.8320749999999997 15 477.68461417015601 5.4550307177187598 87.5677199999999942 18.0640660000000004 1.37164210000000009 0 1.76800920000000006 0.814390199999999953 0.953618999999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.715040461034988 -62.4473185396743986 22.9357697884295995 -12.2666519677183992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505486596804544768 2505486596804544768 1346880800 2015.5 25.6954627591882989 0.0261573111087857989 -2.46558392949207006 0.0193327057837917003 0.977945533981038007 0.0299340695672668002 32.669983000000002 -3.82922234745494006 0.0474004177386850023 -5.82388748523425992 0.0454661308762654981 0.0132773200000000004 0.570321900000000048 -0.025073050999999999 -0.0173912550000000013 -0.186015010000000008 0.0371930499999999983 0.0351732969999999992 -0.0689238600000000035 -0.0673536799999999991 0.273202840000000002 150 0 146 4 3.25366540000000004 202.151001 0.0688228079598959958 1.15515687140389001 31 false 82.3343600000000038 1.61171151572271998 0.00697225337457620022 0.00199649650000000012 17 10 0.0558516459999999978 0 18 false 142 112478.736506836998 49.6878129568247999 2263.70996 13.0606899999999992 18 62746.8387187935004 75.6253788689591033 829.706099999999992 13.3574090000000005 17 72898.6208678161056 76.8284531781519036 948.849240000000009 12.6051219999999997 1.20596539999999997 0 0.752286899999999981 0.296718599999999999 0.455568299999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.60330781913899 -62.4441205354179019 22.9019956842981003 -12.2267479323867008 100001 6013 5477.24023 6479 \N \N \N \N \N \N 200111 1.97455200000000008 1.70072869999999998 2.37972859999999997 4.59194499999999994 4.25071599999999972 4.93317400000000017 +1635721458409799680 Gaia DR2 2505486596804573568 2505486596804573568 1387947787 2015.5 25.6930732334395984 0.0674898522629635983 -2.46197859665184993 0.0541517683427190991 0.140310522301040991 0.0805289800174080056 1.74236060000000004 -0.158051347418889987 0.128689001610145987 -2.11635646533704991 0.122155738463917002 0.0730040099999999942 0.526892200000000033 -0.00421519669999999985 -0.00341926280000000001 -0.17842021999999999 0.0735834999999999961 0.17314083999999999 -0.101792400000000005 -0.0861387849999999955 0.272050400000000026 138 0 134 4 -0.125739899999999988 126.332001 0 0 31 false 5.69307099999999977 1.52143649388649993 0.0173596095237378983 0.04946826 16 10 0.130098419999999992 0 16 false 134 4969.44393633850996 4.82854217954106968 1029.18005 16.4475960000000008 15 2235.13540702599994 10.7267629661251007 208.369979999999998 16.9781280000000017 15 3883.60203792899983 12.8013278033598006 303.374939999999981 15.7888339999999996 1.23127209999999998 0 1.1892948000000001 0.530532840000000006 0.658761999999999959 \N \N 0 \N \N \N NOT_AVAILABLE 151.595312103919014 -62.4418811982149009 22.9010761737858992 -12.2225182614933008 100001 4885.04004 4803.02002 4984.20996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487520226214144 2505487520226214144 1471091072 2015.5 25.6803049543412989 1.10317268809668989 -2.43310049165240017 0.755251680324623975 1.55835716601270002 1.44908244694495991 1.07540970000000002 3.85372711430945003 1.42886623579003991 -1.25524215452676002 1.35766657991765993 -0.232705410000000001 0.785488100000000022 0.0641990149999999982 -0.091416105999999997 -0.446452679999999991 0.0889240899999999973 0.435956979999999994 -0.0373921300000000026 -0.174909039999999988 0.243136450000000004 127 0 125 2 3.60109700000000021 183.992004 2.61864028877457988 2.85196320159445982 31 false 0.0403255819999999987 1.1884852022905299 0.191669470188148006 0.0104606360000000006 15 9 1.51073180000000007 0 16 false 125 155.736464350948012 1.40675832815794011 110.706001 20.2073900000000002 13 56.8496971803441014 6.1954682095606497 9.17601299999999931 20.9645669999999988 14 172.063071640425989 10.9202334713128995 15.756354 19.172699999999999 1.46987259999999997 0 1.79186629999999991 0.757177349999999971 1.03468899999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.543747288795004 -62.4212134193436015 22.8997702831696017 -12.1909738884133994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487593236956544 2505487593236956544 125283511 2015.5 25.6692208985497992 0.139781188360183994 -2.42498849934341987 0.0886660069277453999 0.138962784779165988 0.175030614568428 0.793934169999999995 8.44831517778746921 0.197471386470166987 -1.96266502361626993 0.168040481472200992 -0.147182480000000004 0.736457600000000046 -0.00101252489999999998 0.00569162900000000013 -0.375615839999999979 0.175679279999999993 0.283776939999999978 -0.0985859560000000024 -0.112949170000000002 0.313944669999999981 138 0 136 2 -0.748832799999999965 118.624001 0 0 31 true 2.19982670000000002 1.59033114658847996 0.0270464700553059989 0.0101476770000000008 16 9 0.193312840000000014 0 16 false 136 2190.55174402807006 2.80599883769611003 780.666992 17.336983 13 1214.06026687185999 10.7698752119879 112.727424999999997 17.6407869999999996 13 1467.85817416394002 10.6561017106898994 137.748140000000006 16.8452100000000016 1.22431179999999995 0 0.795578000000000007 0.303804399999999974 0.491773599999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.514641166932989 -62.4185974776533996 22.8922742340660008 -12.1793655874532991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487588941871104 2505487588941871104 787498930 2015.5 25.6799733840664004 1.23792357550867993 -2.42452958092684989 0.829506879906069972 -2.80767650030088012 1.66654833962828008 -1.6847255000000001 0.199436922128923999 1.5674070233217301 -0.784112632731645998 2.43096785742470001 -0.248506139999999986 0.83312940000000002 -0.101153179999999995 -0.370613199999999976 -0.453350699999999995 -0.0212581340000000014 0.156700570000000011 -0.138859079999999996 -0.363867820000000008 0.49038503 104 0 103 1 -3.52961299999999989 55.9654007 0 0 31 false 0.0425423759999999998 1.64699974921030989 0.246883805112546012 -0.00485499100000000034 12 7 2.4041847999999999 0 12 false 103 119.444439930800002 1.1677315089162299 102.288002 20.4954509999999992 11 103.001306516192003 7.09080543671214958 14.5260370000000005 20.3192799999999991 9 101.616099110421004 12.7699607344774009 7.95743229999999979 19.7445139999999988 1.71307600000000004 0 0.574766160000000026 -0.176170350000000003 0.750936500000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.535205099944989 -62.4136024959734002 22.9026708648103998 -12.1828787163059999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487558877218304 2505487558877218304 425582111 2015.5 25.690818521557901 0.0455063550004849993 -2.42770947692502981 0.0297725873651829009 1.10145422484204003 0.0558220097649727992 19.731539999999999 13.3515718848793998 0.065790391392229905 -9.01928888033691933 0.0595122457210892977 -0.0707173049999999942 0.72134520000000002 0.0048621306000000003 0.0723778800000000055 -0.315235939999999992 0.103301376 0.0839306499999999955 -0.0222225319999999997 0.00986333999999999995 0.35703995999999999 144 0 144 0 -1.30999409999999994 117.683998 0 0 31 true 28.3388370000000016 1.5672197182191101 0.0102148676704303006 0.0254594260000000003 17 9 0.0697230699999999981 0 17 false 143 22810.0796460921993 10.2617583272792992 2222.82007 14.7930489999999999 14 11475.2885625396993 25.0466541805949987 458.156560000000013 15.2019789999999997 14 16315.5261188643999 30.9871188933397015 526.52606000000003 14.2304169999999992 1.21835669999999996 0 0.971561429999999948 0.408929819999999999 0.562631600000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.559296033114009 -62.4118558683056008 22.9117906481747013 -12.1898107861483993 100001 5347 5246.25 5585.33008 0.306699991 0.171200007 0.41929999 0.152700007 0.0834999979 0.209999993 200111 1.0243831000000001 0.938824699999999956 1.06410570000000004 0.772787699999999966 0.688014800000000037 0.857560600000000006 +1635721458409799680 Gaia DR2 2505487558877218048 2505487558877218048 180126752 2015.5 25.6933823861832984 0.0962134202146650019 -2.42679273320975009 0.069950722099631199 0.447998048695397999 0.126669722153439995 3.5367415000000002 2.11317612157003998 0.141967604332319003 0.849949715387309013 0.120256674314406994 -0.158017560000000001 0.699075039999999981 0.055514413999999998 0.113460320000000003 -0.461071339999999996 0.115779400000000005 0.190895039999999988 0.00767911700000000006 0.0426077730000000016 0.336165040000000026 141 0 140 1 1.62327709999999992 162.712006 0.174014886917184003 1.04294079424411001 31 true 4.24674559999999968 1.61753956119893005 0.019997963689983099 0.0372740630000000031 16 9 0.138787510000000003 0 16 false 139 4504.31619465800031 4.71264199953642038 955.794006 16.5542930000000013 14 2490.96300655127015 13.0161505506483994 191.37478999999999 16.8604699999999994 14 3012.16830886234993 26.0006339032902005 115.849800000000002 16.0647219999999997 1.22174619999999989 0 0.795747760000000026 0.306177140000000014 0.489570620000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.56345308093799 -62.4099335079529993 22.9145726653847994 -12.1898972868883 100001 5963.5 5750.75 6142.1001 0.0405000001 0.00800000038 0.144999996 0.00870000012 0.00240000011 0.0546999983 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487627596694272 2505487627596694272 341084610 2015.5 25.6888575822178993 0.105320759287436005 -2.4200586912110098 0.0656572745178941042 0.94217515982984501 0.131870689258924007 7.14468960000000042 -2.03546312255304995 0.145356354682764005 2.81060226097203003 0.121033513021715999 -0.134536559999999999 0.744997699999999985 0.0146432739999999995 0.0337222549999999996 -0.359667840000000016 0.163450499999999999 0.279699409999999982 -0.0727101500000000012 -0.0711887499999999951 0.297360500000000028 150 0 150 0 0.552152450000000017 153.912994 0.0763209250092826974 0.169696979109173002 31 false 3.85022399999999987 1.55708541885510998 0.0198978159391537991 0.0158830530000000011 17 9 0.140937299999999988 0 17 false 148 3612.66130692257002 3.88924086976563999 928.885986 16.7937979999999989 15 1773.71565352083007 35.6733621549518034 49.7210120000000018 17.229177 14 2709.08377236152 13.2457120412530003 204.52534 16.179863000000001 1.24085800000000002 0 1.04931449999999993 0.43537903 0.613935499999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.548421732457001 -62.405772594962599 22.9127963237101007 -12.1819745493097997 100001 5144.49023 4974.72021 5288.97998 0.128000006 0.0240000002 0.200100005 0.0604999997 0.0120000001 0.0974999964 200111 0.522868160000000026 0.494690359999999996 0.559165660000000009 0.172523919999999997 0.123397690000000004 0.221650139999999995 +1635721458409799680 Gaia DR2 2505486734243546496 2505486734243546496 780747365 2015.5 25.7236289778229015 0.957745596322362003 -2.43863174667785998 0.753869404796074005 -1.83165578775265003 1.37241934574825009 -1.33461819999999998 5.65618318763259964 1.4050641404789701 -9.64144268249530967 1.6858744620052899 -0.287352800000000019 0.757767700000000044 0.0264719149999999986 -0.139684890000000006 -0.567275100000000032 -0.0029583439999999999 0.106605634000000005 -0.0507214630000000014 -0.149951639999999997 0.46545002000000002 135 0 135 0 0.962531150000000002 145.427002 0 8.81319796442941009e-16 31 false 0.0419116470000000033 1.85501146067185996 0.220029209937046999 0.0104319530000000008 16 9 1.68183280000000002 0 16 false 136 130.907352203795995 1.09920582602414996 119.093002 20.3959560000000018 13 71.216686056704205 6.2292785070126202 11.4325729999999997 20.7199339999999985 14 142.826247072288993 9.13285164142589068 15.6387350000000005 19.3749000000000002 1.63507190000000002 0 1.34503360000000005 0.323978419999999989 1.02105519999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.633364975565001 -62.4077237809151981 22.9388952858682984 -12.2119926204651001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492678478234752 2505492678478234752 1243422910 2015.5 25.7130364520421999 0.0469151283538613989 -2.42803405166697006 0.0306749370193870989 1.94545233900072989 0.0566323047464436027 34.3523449999999997 12.6458866080317005 0.0727326461011573028 -20.5433237103042998 0.0642558881216021005 -0.170281779999999994 0.685574099999999964 -0.0513468399999999978 -0.000281669429999999979 -0.391307599999999978 0.141023520000000013 0.139032949999999988 -0.0996237100000000042 -0.108168059999999996 0.327416959999999979 158 0 156 2 -3.1912866000000002 101.541 0 0 31 false 20.3812700000000007 1.51913344259122995 0.0106733795202253005 -0.0312456249999999991 18 9 0.0762690449999999937 0 18 false 154 16445.7168921875018 7.62047269955229023 2158.1001 15.1482329999999994 18 7482.85803533499984 16.4219414875399998 455.662199999999984 15.6662199999999991 17 12912.8811374627003 19.1459158140991015 674.445740000000001 14.4843620000000008 1.24018549999999994 0 1.18185809999999991 0.517986300000000011 0.663871769999999972 \N \N 0 \N \N \N NOT_AVAILABLE 151.602929485758011 -62.4026689439226985 22.9327972811470993 -12.1982526479693991 100001 4911.33008 4885 5029.25 0.0680000037 0.0194000006 0.2676 0.0289999992 0.00800000038 0.1087 200111 0.607369069999999955 0.579222000000000015 0.613935000000000008 0.193373870000000003 0.181211559999999994 0.205536190000000007 +1635721458409799680 Gaia DR2 2505492605465213952 2505492605465213952 1478610491 2015.5 25.7276445391453983 3.16559991133707985 -2.42792175289174983 4.99152609301258021 \N \N \N \N \N \N \N -0.469013569999999991 \N \N \N \N \N \N \N \N \N 47 0 47 0 1.16829230000000006 52.8623009 3.29045362113661 0.742140553140539949 3 false 0.0131764729999999993 \N \N 0.138841290000000006 6 5 17.4793969999999987 0 6 false 50 63.264661890574402 1.55789424657400999 40.6091003 21.1854629999999986 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.631302970857007 -62.3963269776581981 22.9467317735104999 -12.2034993873229993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492712837972608 2505492712837972608 1387741801 2015.5 25.7299473025843994 0.154494505354497991 -2.42045377145859986 0.122320523042726004 0.444647036533932005 0.194544578068150009 2.28557919999999992 3.76302197342522016 0.280906482382529021 -2.9381202141344902 0.227114145065167999 -0.0646834099999999967 0.548479860000000041 0.031692320000000003 0.0483755059999999987 -0.394330650000000005 0.153530510000000009 0.316213730000000026 -0.0932044900000000009 -0.0785032600000000053 0.270590659999999983 168 0 165 3 1.33059470000000002 184.268997 0.170768162084423997 0.243955267626273009 31 false 0.95406084999999996 1.64259580068132993 0.0369732138358149984 0.00914446300000000024 19 10 0.263706180000000012 0 19 false 165 1201.98636014166004 1.88412435453990001 637.955017 17.9886170000000014 18 703.896762418758044 7.99559315140488991 88.0355899999999991 18.2326160000000002 16 764.283395624393961 9.96807966806773926 76.6730799999999988 17.5537829999999992 1.22146149999999998 0 0.67883300000000002 0.243999479999999991 0.434833530000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.628897251054013 -62.3885925669672972 22.9517229291369986 -12.1973948862762001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492433664553216 2505492433664553216 1574997861 2015.5 25.747294098483799 0.54253876618490704 -2.4397981650862901 0.437972925580423 0.247334622147241001 0.726146997636397007 0.340612320000000024 8.02326999453651979 1.00962407378391994 -11.3229840044167993 0.770122446761707047 -0.136711959999999993 0.528861460000000005 0.19923884 -0.00997001699999999942 -0.496359500000000009 0.124989144999999996 0.358915870000000026 -0.156119900000000006 -0.115490675000000001 0.24714214000000001 149 0 147 2 -0.987275499999999973 125.389 0 0 31 false 0.0931430599999999997 1.53382250862196989 0.122565849592518997 -0.0179931759999999996 17 10 0.93335939999999995 0 17 false 148 220.469247601077996 1.47365618983015989 149.606995 19.8299960000000013 14 117.499993345739995 8.49698854550618066 13.8284280000000006 20.1762939999999986 14 161.112707376601008 12.5819410233462996 12.8050759999999997 19.2440950000000015 1.26372590000000007 0 0.932199499999999959 0.34629821999999999 0.585901259999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.680568019611997 -62.3986555106187026 22.9609647984873 -12.2217461490145993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480751355360256 2505480751355360256 1144472927 2015.5 25.6203616167892996 1.2873667247057401 -2.58596805489439019 2.02614937179099996 \N \N \N \N \N \N \N 0.600948040000000017 \N \N \N \N \N \N \N \N \N 81 0 80 1 0.437459739999999986 79.7895966 0 0 3 false 0.0284614200000000012 \N \N 0.250611870000000014 10 6 5.91787960000000002 0 10 false 81 86.7953594402955986 1.20776615102196994 71.8644028 20.8421249999999993 7 41.2679702176469974 10.1099154356688992 4.08192999999999984 21.3123550000000002 7 108.238270606737004 10.1456131926570006 10.6684800000000006 19.675968000000001 1.72251430000000005 0 1.63638689999999998 0.470230099999999984 1.16615679999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.56774535099899 -62.5850183067966981 22.7853640685430996 -12.3112044167775991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492433664555264 2505492433664555264 1425973345 2015.5 25.7530750935578006 0.607604088024274014 -2.43195883855158979 0.616590805318192992 -0.225650875275760998 0.937427157649895038 -0.240712969999999998 -0.689757286856915952 1.0994362987694799 -0.498775640542450993 1.22261176909582003 -0.17611249000000001 0.62482333000000001 -0.0631903560000000031 -0.0904856200000000027 -0.609338460000000026 0.315496620000000005 0.484288070000000015 -0.246273760000000008 -0.351169899999999979 0.512880800000000026 150 0 148 2 1.25597259999999999 164.576004 1.12767070930105007 0.805437771242080047 31 false 0.0695562900000000067 1.61331598671701992 0.158062312311764014 0.0547421099999999966 17 9 1.33769139999999997 0 17 false 149 199.227594576998001 1.74289295594787008 114.308998 19.9399930000000012 16 150.044732907936009 9.71923211123523068 15.4379209999999993 19.9108370000000008 15 159.752699905571006 7.81318017586550972 20.4465660000000007 19.2532999999999994 1.55499260000000006 0 0.657537460000000018 -0.0291557310000000007 0.686693200000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.684581507208009 -62.3890974945172019 22.9694034213081011 -12.2165698386766994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483431416320512 2505483431416320512 1297516149 2015.5 25.7585927599333999 0.129488434914824008 -2.48647827983368996 0.0752553312826901022 0.520333036025943052 0.152149448286708011 3.41988100000000017 4.35120228411028975 0.181594104410914003 -2.62066747791486998 0.147612063283827005 -0.144253280000000011 0.730548500000000045 0.02336974 0.0408766500000000005 -0.295835940000000019 0.0194188430000000016 0.0589060630000000016 0.010822066 0.0384623330000000013 0.205202340000000011 153 0 149 4 1.09851429999999994 162.733994 0.131601218632391992 0.336723447521363017 31 true 2.34334750000000014 1.55612982579330006 0.0268070180492921001 -0.026961961999999999 18 9 0.167251440000000001 0 18 false 149 2412.2401916274498 3.19121941934960018 755.898987 17.2323149999999998 14 1156.81556917710009 8.52354063113654981 135.720079999999996 17.6932280000000013 16 1832.08479745527006 14.3232600935254997 127.909760000000006 16.6045550000000013 1.2390559000000001 0 1.08867259999999999 0.460912700000000009 0.627759929999999966 \N \N 0 \N \N \N NOT_AVAILABLE 151.745830132544 -62.4359826891066021 22.9541997915495983 -12.2693145271580999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483225254657664 2505483225254657664 1189102208 2015.5 25.7756275982731005 0.774509040351555988 -2.49094188306496012 0.485380967619518988 1.24317566523429002 1.00019415080235996 1.24293429999999994 -0.720369380264294978 0.966056895511421043 -0.52116640546173898 0.787326840878900036 -0.130694940000000009 0.787202999999999986 0.192551090000000008 0.185866279999999995 -0.324427200000000027 -0.0362652840000000018 0.245208700000000002 0.154499019999999987 0.207231100000000001 0.18991733999999999 152 0 150 2 1.23637390000000003 166.358994 0 1.66898024507050002e-15 31 false 0.0689586199999999983 1.59852955830999011 0.149139700614407011 -0.0101231480000000002 17 9 1.05467590000000011 0 17 false 150 181.849959750040995 1.47850702403547007 122.996002 20.0390830000000015 16 120.886131369658003 8.51649567320635015 14.1943509999999993 20.1454470000000008 14 118.265135532054998 8.27019453741512933 14.3001629999999995 19.5797789999999985 1.31510210000000005 0 0.565668100000000007 0.106363299999999994 0.459304800000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.783183514249998 -62.4327020733464977 22.9687294137184992 -12.2797065395833993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483500132570624 2505483500132570624 1015704720 2015.5 25.7574825916892003 0.958176910025281048 -2.46853749637790987 0.589382501315974028 -2.25822373976895019 1.21025686651562991 -1.86590450000000008 5.52876352622376022 1.27045161090846004 -13.5697621611802006 1.06872720451314995 -0.247890339999999987 0.761741639999999998 0.122832629999999998 0.0910722540000000053 -0.408505049999999981 -0.124257259999999994 -0.0119598310000000006 0.148065790000000003 0.178419560000000005 0.178305799999999987 155 0 151 4 0.647073499999999968 156.639008 0 0 31 false 0.0408454160000000024 1.16334802865942999 0.211744742045859996 -0.0589712900000000026 18 9 1.29652980000000007 0 18 false 151 123.646547582447994 1.11125737158005999 111.266998 20.4579099999999983 14 67.4504488905107991 6.72717329430721023 10.0265664999999995 20.7789269999999995 14 118.331563139043993 9.28387805698526059 12.7459190000000007 19.5791679999999992 1.50252490000000005 0 1.19975849999999995 0.321016299999999977 0.878742200000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.727029094746996 -62.4202546118754 22.9598746803041003 -12.2522162860300998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489100771980544 2505489100771980544 1252417375 2015.5 25.7890513923102986 0.972644435747315961 -2.48130394617660022 0.909971239721279024 3.80632478261876983 1.42573200447376003 2.66973379999999993 11.3523169659543992 1.6030032182176599 -0.0958339701262855004 2.1685916859963501 -0.237003910000000012 0.717462539999999982 0.152363300000000007 0.0699749739999999953 -0.597948550000000023 -0.472809800000000002 -0.576582499999999998 0.336825639999999982 0.387465000000000004 0.578855930000000019 134 0 134 0 2.29558000000000018 168.699005 1.4226480233305201 0.826010370524023041 31 false 0.0388360170000000005 1.03091965794900009 0.223639906657423004 0.0124161570000000006 15 8 2.27161770000000018 0 15 false 133 127.567688051304003 1.00971032807252992 126.341003 20.4240129999999986 10 50.1438955282860022 16.3363641772824018 3.06946500000000011 21.1008430000000011 11 166.531903958521013 9.49088888361609939 17.5465030000000013 19.2081760000000017 1.69851639999999993 0 1.8926677999999999 0.676830299999999996 1.2158374999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.800388188386989 -62.4182340929049033 22.9851147345347009 -12.2756555072642008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489070705736448 2505489070705736448 755811677 2015.5 25.8109298131989 0.748614783523827043 -2.48282970509922984 0.51251050260790898 0.315319615086903982 0.976764033692801958 0.322820659999999982 16.4513850110177984 1.03201690922824008 -3.2482585466938998 0.963135440012355959 -0.226457130000000006 0.751666599999999963 0.11765486 0.00323615900000000017 -0.447822100000000001 -0.0529790559999999966 0.114455274999999995 0.0687300400000000061 0.0296502950000000001 0.261798699999999995 146 0 144 2 1.82714050000000006 170.977997 0 0 31 false 0.0655988750000000009 1.29816466081085991 0.162574307692287007 -0.031724862999999999 17 9 1.01892610000000006 0 17 false 145 168.83795973020699 1.06472671790622009 158.574005 20.1196899999999985 15 65.0366748300978941 13.3382167683170003 4.87596459999999965 20.8184930000000001 13 208.887466469948009 7.33903025183712021 28.4625430000000001 18.9621400000000015 1.62240849999999992 0 1.85635379999999994 0.698802950000000034 1.1575508000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.844412377782987 -62.4102038913592025 23.0053555380852011 -12.2850862836101999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488379215415552 2505488379215415552 680142643 2015.5 25.8425057445600999 0.154103159521404992 -2.48230281137480002 0.156639343578244994 0.699280641099761957 0.220717465723731993 3.16821619999999982 6.41894226818677982 0.304974432630394976 -12.3622348145842 0.285036504093259979 -0.183386130000000008 0.51211344999999997 0.0208831909999999989 -0.0745546150000000046 -0.608796800000000027 0.284101839999999994 0.583259639999999968 -0.245085969999999986 -0.365863739999999993 0.344676299999999991 157 0 156 1 1.44749620000000001 176.835999 0 0 31 false 0.982285859999999955 1.36044689371015992 0.0386833120827421023 -0.0112066960000000004 18 9 0.324684899999999999 0 18 false 155 1176.81493272956004 2.39901108865749002 490.541992 18.0115949999999998 16 413.349006506417993 11.9875986247550994 34.4813839999999985 18.8105960000000003 15 1153.12900566070994 11.0596490548883004 104.264520000000005 17.1072249999999997 1.33111669999999993 0 1.70337099999999997 0.799001700000000037 0.904369349999999961 \N \N 0 \N \N \N NOT_AVAILABLE 151.905367200630991 -62.3961287260308026 23.0355935970805987 -12.2961559916673 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488447934893056 2505488447934893056 1554457750 2015.5 25.8361683742093007 0.355787893734090976 -2.47680702922137996 0.243053271632968998 -0.0890421210548335007 0.399723407954297005 -0.22275934 5.70749077824503015 0.663065316963992957 -13.2604196534131002 0.458883765998071014 -0.234855829999999988 0.513110460000000046 0.307101039999999992 -0.106079906000000002 -0.345386599999999988 -0.162888040000000012 0.234615199999999996 -0.0265109759999999986 0.0730556200000000017 -0.0462145169999999966 161 0 160 1 1.6457539000000001 185.067993 0.380293428918138998 0.295797437821945008 31 false 0.216687989999999997 1.33662241793318004 0.0750521311707928046 -0.0967337000000000058 19 10 0.600472149999999982 0 19 false 156 413.076858371089997 1.40965965762889001 293.03299 19.1482889999999983 17 211.383122554387995 9.08560183195658944 23.2657260000000008 19.5387120000000003 17 340.729014453045977 7.8073344610165698 43.6421700000000001 18.4308970000000016 1.3365845999999999 0 1.1078148000000001 0.390422820000000004 0.71739196999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.887923692924005 -62.3939020233379011 23.0316251981300013 -12.2887225306921994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489375648034816 2505489375648034816 1579214481 2015.5 25.7662812415781985 0.931216791768072039 -2.45762041711983992 0.650440557808448006 -4.29185086479134004 1.23808411615372993 -3.466526 0.15766061617194399 1.28235116634870994 -2.33158334133204015 1.32775755500215009 -0.236394939999999998 0.760638700000000001 0.145554139999999999 -0.00712090029999999999 -0.465776829999999975 -0.163385029999999987 -0.0880795800000000045 0.116613880000000003 0.0928353739999999983 0.324220300000000017 147 0 145 2 0.696546200000000004 151.279007 0.528508448435408007 0.105131007712890995 31 false 0.042757156999999997 1.96177232567849003 0.214799438627388012 -0.0286697859999999992 17 9 1.3627129 0 17 false 147 128.990072718715993 1.20855699947950002 106.731003 20.4119759999999992 13 83.8086607854858983 5.44184006250925023 15.4007950000000005 20.5431649999999983 13 84.1003574352107961 9.3965257561454294 8.9501539999999995 19.9499239999999993 1.30172050000000006 0 0.593240740000000044 0.13118935000000001 0.462051400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734058180199014 -62.4066215530671968 22.9723390336625997 -12.2452816929574997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492364945074944 2505492364945074944 1514674944 2015.5 25.7609533593575009 0.795818110165367965 -2.44419709596256984 0.476175369579123986 1.97925085973384007 0.947335387002991025 2.08928199999999986 1.02492963397202996 1.31066346371627995 -1.52376776955371995 0.82660764767552497 -0.124023474999999994 0.639018650000000021 0.148405690000000007 0.058766897999999998 -0.243204819999999988 -0.0935552099999999998 0.248157590000000011 0.0356542399999999968 0.1665885 -0.0028508193999999998 150 0 150 0 0.497040700000000002 152.938004 0 0 31 false 0.0535198669999999987 1.24916067254056995 0.157626086985074992 -0.0581696099999999966 17 10 1.16581270000000004 0 17 false 149 154.760171397324996 1.09284801842567991 141.612 20.2142179999999989 12 50.6766454812620992 10.0920571384301994 5.02143859999999975 21.0893690000000014 13 211.462586220881008 6.33728565813660971 33.3680080000000032 18.948834999999999 1.69384169999999989 0 2.14053339999999981 0.875150699999999948 1.26538280000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.711248283184005 -62.3967800269631994 22.9723063393213991 -12.2308415077595001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489238208879104 2505489238208879104 658251288 2015.5 25.7969892463973984 0.217400734678844992 -2.46229176989419996 0.148203067030450997 1.32374317087840998 0.250808882630628005 5.27789600000000014 -8.0967359560326102 0.364174644889327992 -13.7059936510219007 0.285313457257707015 -0.115959300000000001 0.595250999999999975 -0.0229745020000000008 0.0633556400000000047 -0.275127320000000009 0.0260657609999999998 0.0926481700000000019 0.0236223300000000004 0.0774708999999999953 0.132658649999999989 161 0 159 2 -0.180994820000000001 150.188995 0 0 31 false 0.531472860000000047 1.24301666334364991 0.052604757845257602 -0.0523431229999999983 18 10 0.324757999999999991 0 18 false 159 729.277805190149024 1.74901782625498003 416.963989 18.5311340000000015 13 193.271517681168007 12.1866639695056005 15.8592630000000003 19.6359700000000004 14 871.493757699950038 10.7796489638949993 80.8462099999999992 17.4112590000000012 1.46002699999999996 0 2.22471050000000004 1.10483550000000008 1.11987499999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.79819242424 -62.3976593304685991 22.9997969110582012 -12.2608730161040995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489448662828800 2505489448662828800 135103141 2015.5 25.7899025246059992 2.40844594767566988 -2.45426836584592012 1.50563566349953004 -2.4443173419285702 2.83786442017437013 -0.861322800000000055 0.0318403166483827993 3.88630899250917983 3.41454149113401018 2.74048122150442985 -0.2197104 0.631487699999999985 -0.00268172639999999986 0.0956361599999999978 -0.411788549999999975 -0.0432550800000000013 -0.0113547189999999992 0.0961396699999999965 0.170811789999999991 0.154439550000000009 140 0 139 1 20.5178550000000008 826.469971 11.6778079055692992 39.6178939559126988 31 false 0.00593213499999999984 1.6547203169629201 0.465117325927364988 -0.0417731900000000017 18 10 3.46144339999999984 0 18 false 146 139.60819061264101 1.60354138646327993 87.0624008 20.3260879999999986 12 162.185283150499998 12.4927100816278998 12.9823939999999993 19.8263590000000001 14 322.742540443521023 17.6134108954978998 18.3236829999999991 18.4897789999999986 3.47349119999999978 0 1.33658030000000005 -0.499729160000000006 1.83630939999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.776952471163014 -62.3934590525516981 22.9960648718484002 -12.2508130085434992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505492575399019008 2505492575399019008 773028653 2015.5 25.7770729120764983 0.121321833351566002 -2.41865031265513997 0.0827662980972640044 0.0128387563885771008 0.139756794504667992 0.0918649899999999936 -1.27367383139613 0.212243060961011004 2.09797680029104994 0.158188535110188988 -0.0821590400000000026 0.567595700000000036 0.0191614870000000014 0.0542573900000000026 -0.262330169999999974 0.0149662249999999997 0.129387040000000009 0.0057005392999999998 0.0800448899999999935 0.132042049999999994 176 0 175 1 0.0369452759999999991 170.014999 0 0 31 false 1.55950670000000002 1.54838711427605991 0.0287818538217218013 -0.0286319629999999999 20 10 0.19075257000000001 0 20 false 173 1702.42223689151001 2.35663162073679011 722.395996 17.6106969999999983 18 879.788052646587971 9.9562476969043896 88.3654250000000019 17.9904420000000016 18 1190.24397322946993 8.11527985194143042 146.667020000000008 17.0728299999999997 1.21593330000000011 0 0.917612100000000042 0.379745480000000024 0.537866599999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.718994750878011 -62.3667947882534008 22.9972188141396998 -12.2129755219909999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489242504427264 2505489242504427264 83439663 2015.5 25.8065736860475994 0.491784714215870999 -2.46541465080790978 0.346708150527277992 1.11579655600264993 0.57568955608092498 1.93819140000000001 7.6519432412431998 0.865920424012858958 0.599468750478581947 0.720730087588711044 -0.166620660000000004 0.569110499999999964 0.266502379999999983 -0.0768872099999999975 -0.342603619999999998 -0.145067859999999993 0.060560669999999997 -0.0102966480000000003 0.0735953099999999971 0.113904420000000006 146 0 146 0 0.213676179999999993 143.942001 0 0 31 false 0.118104319999999999 1.68129242790801992 0.117890372687167996 -0.0744318800000000058 17 10 0.786986949999999963 0 17 false 146 257.494268619909974 1.42615247715200999 180.552002 19.661448 12 151.793330396426995 13.8667051189187003 10.9466040000000007 19.8982559999999999 13 168.396061405182991 8.24645548986793031 20.4204180000000015 19.1960900000000017 1.24348159999999996 0 0.702165599999999945 0.236808779999999997 0.465356829999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.819748105749994 -62.3963590331555977 23.0077431166345008 -12.2672879189987007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489581806265344 2505489581806265344 1374498489 2015.5 25.8311528998200011 0.182494035054776987 -2.45191140368428995 0.120229030578073007 0.604223413273257015 0.194213317624823995 3.11113289999999987 14.3864580890056004 0.356418687683548008 -33.9979742748787999 0.239521248338323001 -0.183076139999999998 0.484811460000000027 0.144628780000000012 -0.0649280549999999984 -0.270782350000000005 -0.105166285999999998 0.190487099999999993 -0.0255772730000000011 0.0635665299999999961 -0.037277374000000002 141 0 140 1 -0.157236340000000002 131.776001 0 0 31 false 0.884430200000000055 1.46888384567878005 0.0436336806727124979 -0.119414569999999998 16 10 0.316927369999999986 0 16 false 140 1093.84318398110008 2.58514455224926998 423.126007 18.0909790000000008 16 422.410461923319986 11.2694664017249 37.4827399999999997 18.7870519999999992 15 1015.24826650210002 10.2506086401124001 99.0427300000000059 17.2454900000000002 1.31431889999999996 0 1.54156300000000002 0.696073530000000051 0.845489500000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.855019348995995 -62.3735979557241009 23.0361890089437011 -12.2637222523948992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489925405726976 2505489925405726976 754152443 2015.5 25.8057525155990994 31.645477577952299 -2.42553284870197006 12.0975010923539994 \N \N \N \N \N \N \N -0.976432900000000048 \N \N \N \N \N \N \N \N \N 47 0 46 1 0.813676830000000018 48.0732002 0 0 3 false 0.0130225440000000005 \N \N 0.00989178899999999979 6 5 87.5203599999999966 0 6 false 49 69.5514716592944069 1.76042903857982003 39.5083008 21.0825999999999993 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.781154653285 -62.3607069409220998 23.0219170677852993 -12.2298797284468002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489998418690688 2505489998418690688 329653723 2015.5 25.8388423564345011 0.700200164974098982 -2.42199782986189005 0.52752726731506705 1.00275761389001006 0.861646064382149968 1.16376970000000002 6.03986864435100035 1.1639331002684401 -5.89401134620179956 1.16257856854832009 -0.150228919999999988 0.633831400000000045 0.120597140000000005 -0.0674187900000000062 -0.367859839999999993 -0.167581279999999999 -0.0514070169999999993 0.0709867400000000065 0.0865006499999999984 0.204073680000000007 143 0 143 0 1.53218720000000008 164.302002 1.00958944361277991 0.51283476159364505 31 false 0.0557985999999999968 1.7327732575030601 0.177601331843983995 -0.0141244604999999999 17 10 1.12659489999999995 0 17 false 143 167.576435558469001 1.47630068927853997 113.511002 20.1278320000000015 15 90.7687791865043039 6.77191746886976009 13.4037050000000004 20.4565470000000005 15 139.907235549657003 11.1160228665188008 12.5860869999999991 19.3973200000000006 1.37654209999999999 0 1.05922699999999992 0.328714369999999978 0.730512599999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.842191295556006 -62.3432924573152007 23.0547185856134007 -12.2387031050940998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441001431760640 2505441001431760640 758756287 2015.5 25.8488411600854988 0.0588090049358512973 -2.54245666149494021 0.0389163770296482026 1.55914059967156993 0.0673360664094511951 23.1546130000000012 2.28458134465474005 0.0988869686226789973 -14.1085636652664999 0.0801798920285290012 -0.115651260000000006 0.60317019999999999 -0.0141711979999999994 0.0388923300000000027 -0.288327659999999986 -0.00430177499999999987 -0.0246749539999999989 0.0134587249999999995 0.0683012159999999979 0.185389649999999989 182 0 178 4 0.432436380000000009 180.481995 0.0694998779700077007 0.269635033227681009 31 true 7.71841570000000043 1.44341877041570998 0.0126797374289053001 -0.057988076999999999 21 10 0.0943273500000000042 0 21 false 177 7058.69279941194964 4.86408728604676988 1451.18994 16.066555000000001 20 2684.96082076629 18.2305656037991 147.27797000000001 16.7790430000000015 20 6312.32532687955973 19.9592201414053001 316.261099999999999 15.2614470000000004 1.27463909999999991 0 1.51759620000000006 0.712488200000000016 0.805108099999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.973827906573007 -62.4476458326610029 23.0190591860608009 -12.3544450682435993 100001 4551.1499 4318.66992 4724 0.424499989 0.254000008 0.581399977 0.189300001 0.0935000032 0.277399987 200111 0.611030999999999991 0.56713336999999997 0.678586070000000041 0.144312720000000005 0.131104190000000009 0.157521259999999996 +1635721458409799680 Gaia DR2 2505440722258282624 2505440722258282624 179366874 2015.5 25.8749625206898983 0.641245068624961001 -2.55454270209973 0.395124496151762983 3.64882295576102011 0.757389717031669019 4.81762930000000011 6.25890279986375031 0.975420944006009982 -16.4777102332013996 0.655691345181101948 -0.29389510000000002 0.678223550000000008 0.128112539999999997 0.0643660650000000001 -0.436063199999999984 -0.0991944750000000042 0.156190069999999986 0.120323360000000004 0.14899844000000001 0.0474616770000000007 150 0 148 2 47.1475200000000001 3334.91992 3.28580360954844997 176.546744973059987 31 false 0.0880875299999999972 1.29326428871035004 0.115530800524350996 -0.0504008800000000021 17 9 0.887640949999999984 0 17 false 149 2232.5022414282198 13.2102131357689991 168.998001 17.3163850000000004 15 1316.14631229741008 20.8680599520563987 63.0698930000000004 17.5531269999999999 14 1633.93863997862991 13.2455987926416991 123.357100000000003 16.7288299999999985 1.32142530000000002 0 0.824296950000000028 0.236742019999999997 0.587554930000000031 \N \N 0 \N \N \N NOT_AVAILABLE 152.035993949859005 -62.4472441282239998 23.0393821848824984 -12.3752528420725998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505440997136503296 2505440997136503296 833284810 2015.5 25.8506295782970987 20.2420633585894016 -2.53156627523661992 7.78343997355536033 \N \N \N \N \N \N \N -0.986379099999999953 \N \N \N \N \N \N \N \N \N 77 0 77 0 0.042746942000000003 71.8463974 0 0 3 false 0.0200980959999999993 \N \N -0.225982710000000003 9 6 45.3305799999999977 0 9 false 78 84.057119550138907 1.37091081145814009 61.3148003 20.8769300000000015 4 30.9221640188772007 12.5052579975389992 2.47273299999999985 21.6257130000000011 7 77.7500963543261037 10.1871341496044003 7.63218550000000029 20.0351679999999988 1.29283820000000005 0 1.59054570000000006 0.748783100000000035 0.841762539999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.967131000888003 -62.4370536913978 23.0248463143598983 -12.3449669972587994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487966898495616 2505487966898495616 1591821688 2015.5 25.8510680440703986 0.0402654192307361006 -2.51899706225026021 0.0245753916876465008 0.730925265587678008 0.0453667703728060021 16.1114670000000011 -5.37768870022129963 0.0610431644130160003 -9.87985911689195007 0.0527666357381596993 -0.207046399999999992 0.683419299999999952 0.0224232489999999993 0.00292503700000000012 -0.338461100000000015 -0.0777332500000000037 -0.122899300000000003 0.0442244970000000015 0.0654486700000000005 0.18215192999999999 173 0 172 1 1.05740379999999989 186.362 0 1.55516674784787009e-15 31 false 27.9723779999999991 1.61236332693024997 0.00833213681570271064 -0.0885185599999999961 20 9 0.0621216370000000004 0 20 false 171 23108.522445762399 10.6826148142950998 2163.18994 14.7789350000000006 18 12914.1572303268003 27.6177649456280996 467.603270000000009 15.0737229999999993 17 14945.5783348322002 23.0762817623868983 647.659700000000043 14.3256379999999996 1.20560430000000007 0 0.748085 0.294787399999999977 0.453297620000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.956243936411994 -62.4255302863886001 23.0299782615785986 -12.3334325773345999 100001 6136.66992 5764.5 6245 0.163499996 0.0142999999 0.305999994 0.0829999968 0.00630000001 0.151999995 200111 1.1474453 1.10798280000000005 1.30039290000000007 1.68224970000000007 1.4493258 1.91517350000000008 +1635721458409799680 Gaia DR2 2505440962776454016 2505440962776454016 403037056 2015.5 25.8753955965112006 0.647200913753300022 -2.54028233624018007 0.438652256512396976 2.26897562156114008 0.873610491978127013 2.59723950000000015 -7.26570999799383976 0.899157938051019956 -11.2388522898194996 0.69565156623276303 -0.264561600000000008 0.73791260000000003 0.162478580000000011 0.146820769999999989 -0.494081939999999997 -0.0876487340000000059 0.104143079999999999 0.16337082 0.19970866000000001 0.198714289999999988 155 0 154 1 5.87379460000000009 274.13501 1.83388595605920002 3.81059802585884988 31 false 0.0847162600000000016 1.09389078980886989 0.129897055785343996 -0.00268061410000000003 18 9 0.917708749999999962 0 18 false 152 261.54440979944502 1.19142013776264011 219.522995 19.6445030000000003 14 78.9160216790745039 9.17044915218417067 8.6054700000000004 20.6084749999999985 15 341.008769030080998 8.16027998231644958 41.7888570000000001 18.4300059999999988 1.60555829999999999 0 2.17846869999999981 0.963972099999999998 1.21449659999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.023483635242997 -62.4342040689287998 23.0451435090357997 -12.3621427188924997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441070151236864 2505441070151236864 284402084 2015.5 25.8815106140969 0.0446869970855999984 -2.5211179628215401 0.0299987456534796006 2.65727135752862997 0.0543327436529617014 48.9073640000000012 -15.7893086761859003 0.0675553132168086046 -14.8935392541999008 0.0611353121597828994 -0.220186670000000001 0.694568999999999992 0.103570010000000004 0.0639997000000000066 -0.417748960000000003 -0.197151839999999995 -0.224482209999999988 0.166350830000000005 0.228834170000000003 0.236729670000000003 148 0 148 0 -1.24056769999999994 122.427002 0 8.40305455069884962e-16 31 true 26.5778560000000006 1.45944006992833009 0.0100861256754708004 -0.0535890119999999984 17 9 0.072218514999999997 0 17 false 147 21282.3681733466983 8.39784105229330002 2534.27002 14.8683160000000001 17 8481.44123918063087 30.2859705579332008 280.045230000000004 15.5302140000000009 16 18433.8727398330993 27.1686264527726991 678.498540000000048 14.0978779999999997 1.2646767000000001 0 1.4323359 0.661898600000000004 0.770437240000000023 \N \N 0 \N \N \N NOT_AVAILABLE 152.017448671013 -62.4142845076748998 23.0581502898314987 -12.3465490699209006 100001 4579.16992 4372.08008 4798 0.230000004 0.0829000026 0.481099993 0.115500003 0.0405000001 0.209099993 200111 0.611742259999999982 0.557213370000000041 0.671066300000000004 0.148244540000000008 0.141660389999999997 0.154828700000000014 +1635721458409799680 Gaia DR2 2505440894056979584 2505440894056979584 1672858226 2015.5 25.8992003394365007 0.188874112549848011 -2.52951035586404016 0.129683544786117988 0.231588616724105995 0.239783121906051999 0.965825299999999998 3.14191386942327 0.278376537422725001 -7.41204137823904041 0.221603526773954007 -0.316987200000000025 0.711907399999999968 0.182668940000000002 0.0403771500000000005 -0.499228000000000005 -0.167378599999999989 0.0803893600000000069 0.166512670000000002 0.149126800000000004 0.123229660000000005 149 0 149 0 -1.5669725000000001 118.425003 0 0 31 false 0.99282764999999995 1.52879383089711007 0.0395433166960119029 -0.0465663929999999976 17 9 0.270828630000000015 0 17 false 149 1167.41675294270999 2.47186755635354993 472.281006 18.0203020000000009 15 695.054080290890965 10.7795590919389994 64.4788999999999959 18.2463419999999985 15 764.881544227150016 14.2527281359905 53.6656229999999965 17.5529350000000015 1.25056929999999999 0 0.693407059999999964 0.226039889999999993 0.467367169999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.059696175076994 -62.414189684358 23.0718367719922988 -12.3608321195653001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441100220176000 2505441100220176000 133011555 2015.5 25.8986918767563985 1.25710141537557996 -2.52366485391377982 1.28555061774020007 5.71358193045278995 1.86698940615491993 3.06031820000000021 5.31330896950556042 2.33669112440214022 -6.70226517379690989 4.08793407330457992 -0.115165149999999994 0.706875260000000005 -0.100562885000000005 -0.218735669999999993 -0.499775950000000024 -0.0381029140000000016 0.00222739549999999981 -0.130007000000000011 -0.200462620000000008 0.695549900000000054 102 0 101 1 0.479546760000000016 102.102997 0 0 31 false 0.0246167389999999986 1.6038052430771701 0.332837168225510016 0.123366654000000006 12 9 3.91626450000000004 0 12 false 103 95.3236700135168036 1.16317935864224009 81.9509964 20.7403639999999996 9 62.7554431964513029 14.3812922185674008 4.3636860000000004 20.8572600000000001 10 140.934683950486999 8.70032150351508982 16.1987899999999989 19.3893759999999986 2.13682630000000007 0 1.46788410000000002 0.116895676000000004 1.35098840000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.053234998393009 -62.4091424835896973 23.0735449830492989 -12.3552068554360996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505441100215412096 2505441100215412096 1572649087 2015.5 25.8942220588296017 0.428209860577697998 -2.5178294948633102 0.328029909477672021 1.30349021897461004 0.538297929063639047 2.42150329999999991 1.80477681325351003 0.71834725752689399 -7.13259752819203996 0.565620458603790954 -0.128136080000000013 0.61022299999999996 0.124330369999999996 0.0601485329999999971 -0.351322619999999974 -0.0803988999999999954 0.226227399999999995 0.0875794740000000044 0.142295260000000007 0.0977153260000000051 154 0 151 3 2.33901290000000017 188.934998 1.15343674698080001 2.01925226313688988 31 false 0.13897371 1.32034866771410009 0.100042295735433995 -0.0033379429999999999 18 10 0.645493600000000001 0 18 false 151 331.054455935397982 1.33420328667086996 248.128998 19.388617 17 87.6080416069930976 7.6160648125396504 11.5030579999999993 20.4950280000000014 15 406.357355274497024 13.3005543736174001 30.5519099999999995 18.239649 1.49209710000000007 0 2.25537870000000007 1.10641100000000003 1.14896770000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.039086034898986 -62.4058193228418006 23.0714796415443999 -12.3481413340299007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488138697241344 2505488138697241344 1068746543 2015.5 25.8478461402145001 0.562090564254125957 -2.50451870273127986 0.328850849705313975 1.66476700508029007 0.669448674474973027 2.48677329999999985 5.52923041757212985 0.782191020214468957 -9.51941984615380044 0.553461157554960947 -0.29139103999999999 0.721428159999999985 0.0362675000000000011 0.0822994799999999943 -0.41856384000000002 -0.00571334100000000025 0.154292020000000002 0.0683600899999999984 0.104601769999999997 0.0851560600000000056 163 0 161 2 2.45852229999999983 202.785004 1.46617361180113992 2.96722966686435985 31 false 0.114809090000000003 1.25000278021645994 0.104541156485967998 -0.108412670000000003 19 9 0.713640799999999964 0 19 false 161 314.431814693757019 1.54169885261643991 203.951996 19.4445499999999996 15 58.1871524768600992 9.51697061221191021 6.11404130000000023 20.9393199999999986 15 396.095153478582006 12.2743902640584999 32.2700460000000007 18.2674219999999998 1.4447721 0 2.67189800000000011 1.49476999999999993 1.17712780000000006 \N \N 0 \N \N \N NOT_AVAILABLE 151.936462309685993 -62.4138640343443001 23.0323430442193988 -12.3187817660417007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488486590184064 2505488486590184064 404795263 2015.5 25.8915455369645997 0.0247294741938299985 -2.48965765632582992 0.0196586476445018005 1.90128945319163001 0.0285248873962389987 66.6537100000000038 22.0598145810837991 0.0456876381046067009 -15.1348041759761998 0.0432493736438060994 -0.0394402500000000031 0.497873069999999973 -0.119147740000000002 0.0404755700000000024 -0.253620179999999973 -0.130915449999999989 -0.36773539999999999 0.140593479999999993 0.2330372 0.221899810000000003 147 0 145 2 -3.00026539999999997 95.0419998 0 1.69852201187039993e-15 31 true 115.023859999999999 1.57312079401500005 0.00617858469524109992 -0.0454846799999999996 17 10 0.0540548380000000009 0 17 false 143 91467.6686300152069 32.9867785115439034 2772.86011 13.2851959999999991 16 46562.9386058610035 126.063903627886006 369.359800000000007 13.6812869999999993 17 64221.2661441335003 89.0889465024176985 720.866800000000012 12.7427224999999993 1.21118429999999999 0 0.938564300000000018 0.396090500000000012 0.542473800000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.007553037553009 -62.3815853239369034 23.0794959157374997 -12.3209480562367002 100001 5433 5361 5889.25977 0.476999998 0.208199993 0.594600022 0.223000005 0.101000004 0.273499995 200111 1.14502949999999992 0.974483969999999977 1.17599239999999994 1.02916959999999991 0.991232699999999967 1.0671063999999999 +1635721458409799680 Gaia DR2 2505488520949922304 2505488520949922304 720067610 2015.5 25.8930991191407003 0.334024599598930994 -2.48775814822442998 0.246816646468459994 1.1805657567518999 0.408433105854399015 2.89047529999999986 23.4112662867685017 0.59410006722963804 -14.8047157700389 0.433533899329836991 -0.13053903 0.568160699999999963 0.0566365699999999972 0.0506114800000000004 -0.342181469999999988 -0.0853839599999999949 0.20155925999999999 0.0933953899999999948 0.145270380000000005 0.0663975599999999944 155 0 152 3 2.68612930000000016 197.223007 0.985511912134072965 2.32329934790679005 31 false 0.224269099999999999 1.11163814579109999 0.0765971194341644041 -0.0322957259999999968 18 10 0.525835750000000046 0 18 false 152 486.793593055855979 1.88235816013046997 258.608002 18.9700029999999984 16 101.590745848051995 9.01019976331030037 11.2750830000000004 20.3342530000000004 17 668.749429925569984 7.99139779235691972 83.6836600000000033 17.6987610000000011 1.58247800000000005 0 2.63549230000000012 1.36425020000000008 1.27124210000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.008797208375 -62.3792011042985024 23.081686368767599 -12.3197490693569005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488830187566080 2505488830187566080 1323959878 2015.5 25.8553171313591008 0.0309066696640508017 -2.46556664222379984 0.0208139572154861993 0.799803671619551015 0.0328257436025475996 24.3651349999999987 -6.74307687316118987 0.0588219794070578006 -9.73488953361662013 0.0469323478513046996 -0.0948885000000000006 0.497736400000000023 -0.131050109999999997 0.00430867960000000036 -0.198972120000000002 -0.0234350080000000002 -0.105936534999999998 0.0264941580000000003 0.052025817000000002 0.0910282359999999985 167 0 167 0 -0.501031899999999975 152.505997 0 0 31 false 35.5346570000000028 1.57210767644296001 0.00754196223749846028 -0.0973425700000000033 19 10 0.0618816950000000005 0 19 true 165 28923.6779954117992 9.68550010732539945 2986.29004 14.5352320000000006 19 14782.3423221895991 42.6297463228099005 346.761199999999974 14.9270300000000002 19 20206.0801090003988 22.399303061272601 902.085199999999986 13.9982150000000001 1.20968089999999995 0 0.928814899999999999 0.391798020000000025 0.53701686999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.914693900546013 -62.3755074686591016 23.0540579838831015 -12.2852729390204001 100001 5424 5387.5 5491 0.625 0.332300007 0.880999982 0.325700015 0.164399996 0.442999989 200111 1.53652000000000011 1.49925219999999992 1.55741020000000008 1.84098340000000005 1.66147430000000007 2.02049259999999986 +1635721458409799680 Gaia DR2 2505488967626518784 2505488967626518784 889348095 2015.5 25.8662438517600997 0.0538428473330355012 -2.44431826068151015 0.0360191628288566018 0.773696321315963997 0.0617660371297100996 12.5262419999999999 4.26919625715400031 0.0922807512602779045 -19.7515995396328989 0.0770291895580545033 -0.000374950260000000025 0.593915700000000046 -0.084594500000000003 0.0238527410000000002 -0.155183579999999988 0.00515513029999999962 -0.0816314399999999996 -0.00341024650000000019 0.0362923699999999974 0.203683229999999993 165 0 164 1 0.203276409999999991 161.977005 0 0 31 false 9.52826400000000007 1.57532308774681007 0.0119127307229998994 -0.00518572330000000026 19 10 0.0897746700000000009 0 19 false 163 8455.85806956684974 5.24978488674951027 1610.70996 15.8704719999999995 17 4369.68214352796986 24.0308940736729006 181.836009999999987 16.2502630000000003 17 5916.72336014918983 9.34056749830772937 633.443660000000023 15.3317169999999994 1.21648280000000009 0 0.918546700000000049 0.379791260000000019 0.538755399999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.916150217954993 -62.3516283659664978 23.0724194890174985 -12.2695005593802993 100001 5442.54004 5396 5463.33008 0.0732000023 0.0160000008 0.183400005 0.0329999998 0.00789999962 0.0984999985 200111 0.852084199999999958 0.84560970000000002 0.866845129999999964 0.573938669999999984 0.4759544 0.67192289999999999 +1635721458409799680 Gaia DR2 2505489787964704640 2505489787964704640 476216864 2015.5 25.8546676289738002 0.223577936745357003 -2.41941021453150018 0.157233751884155004 0.972065160783474047 0.276376264040735009 3.51718039999999998 11.2242025055001999 0.376979764335619028 -0.967480329138505013 0.286075058905574997 -0.138596369999999997 0.59531630000000002 0.0346269830000000001 0.0733468500000000051 -0.382243070000000018 0.0117034605000000003 0.105885594999999999 0.0323228600000000019 0.0993592699999999995 0.182937159999999988 182 0 178 4 1.0718261 192.994995 0 0 31 false 0.461477599999999988 1.2800634022116899 0.0497451032949954991 -0.0382420899999999994 21 10 0.339058130000000013 0 21 false 177 674.815263795620012 1.61745641655858008 417.208008 18.6154040000000016 20 202.985037952281999 12.5148419440625993 16.2195450000000001 19.5827269999999984 18 784.213919942711982 9.95979571361485938 78.7379499999999979 17.5258329999999987 1.46291729999999998 0 2.05689430000000018 0.967323299999999997 1.08957100000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.870524824943999 -62.3341453556538028 23.0707428961635017 -12.2420871662050992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489001986256512 2505489001986256512 382817534 2015.5 25.8860755853071005 0.426589662376099021 -2.42746337139891999 0.283860126567294979 -0.108933791805558997 0.536166478682663983 -0.203171579999999991 6.59858467160843976 0.658809093639942001 -8.82050785625673051 0.511475459477292005 -0.0882313400000000053 0.662089350000000021 0.0550359100000000004 0.107352569999999994 -0.309809359999999978 0.00391990270000000009 0.0966635349999999949 0.05253969 0.140882640000000003 0.195336249999999989 171 0 168 3 0.0868696099999999999 163.903 0 0 31 false 0.146592770000000011 1.49447388505097001 0.0921709808293283972 -0.0042391470000000004 20 10 0.599372400000000027 0 20 false 170 303.407622976706023 1.35038321927897997 224.682999 19.4832999999999998 16 157.37419199874401 10.4102696956321008 15.1172059999999995 19.8590550000000015 17 228.793753064704987 8.06772751684106026 28.3591329999999999 18.8633099999999985 1.27276950000000011 0 0.995744700000000038 0.375755300000000014 0.619989400000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.938969540134991 -62.3278700996055974 23.0976045865300001 -12.2610737639168992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505489757900500224 2505489757900500224 390773530 2015.5 25.8734455315560012 0.125929787530336013 -2.41760289840491982 0.0978348338496922015 2.47082777297020018 0.154392767582707008 16.0035209999999992 -5.0939362663440404 0.238136748800885006 -1.15255205167036001 0.184185744037971999 -0.0731127399999999955 0.501823099999999966 -0.0200016680000000002 0.0668786999999999993 -0.39750928000000002 0.188430089999999995 0.290205659999999976 -0.108520309999999995 -0.0893086049999999992 0.265305799999999981 175 0 173 2 3.04324299999999992 229.363998 0.456185055767908021 3.2887931314999399 31 false 1.35847329999999999 1.28112174919971 0.0290197652069817992 -0.0113944289999999993 20 10 0.222601159999999992 0 20 false 173 2021.22175788928007 2.42303752585736998 834.169006 17.4243319999999997 18 422.937419976692013 14.4033827043607001 29.3637559999999986 18.785698 17 2490.57084599024984 10.9303017971617003 227.85929999999999 16.271173000000001 1.44145900000000005 0 2.51452449999999983 1.36136630000000003 1.15315820000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.90529611462901 -62.3244237836252992 23.0892841269489004 -12.2472769917436004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488688456497664 2505488688456497664 34866299 2015.5 25.8995665312954984 0.612155871608100033 -2.46112629871486011 0.444276896073120986 2.6813521704015999 0.806268477228904046 3.32563189999999986 -6.10345255252788998 0.948760306523330987 0.0947523730633818978 0.72899284173623502 -0.0961354199999999992 0.653934360000000048 0.077092654999999996 0.161499000000000004 -0.380312900000000009 0.0226403550000000009 0.175122599999999989 0.0923105250000000044 0.173522170000000003 0.21964148 166 0 164 2 1.70132180000000011 190.556 0.427396753072877 0.115504886898776998 31 false 0.0707357200000000019 1.11162820675896001 0.14377237783713101 0.00861003599999999973 19 10 0.879011100000000045 0 19 false 164 187.570582341431987 1.4018568151392099 133.802002 20.0054529999999993 17 68.1307249330949958 14.0236469167449993 4.85827450000000027 20.7680299999999995 17 242.702611437309002 8.83348394086002031 27.4752979999999987 18.7992339999999984 1.65715400000000002 0 1.9687958000000001 0.762577060000000029 1.20621869999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.996502586750012 -62.3523965194751995 23.0978237201678986 -12.2973342300500992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505488928971238912 2505488928971238912 611017555 2015.5 25.8970101293980015 0.453717513943454998 -2.44190438896497986 0.318274449867066989 1.60671643612574999 0.564145499052530974 2.84805319999999984 -1.36744457871286995 0.711293366955675022 -27.4891226300460012 0.553628551235579969 -0.0596735479999999999 0.646188600000000002 0.0578561650000000011 0.13448866000000001 -0.306664939999999997 0.0542135160000000033 0.184405120000000006 0.0471063599999999999 0.13000542000000001 0.209690359999999992 173 0 172 1 1.22425410000000001 189.662003 0 0 31 false 0.12044088 1.39389293199992004 0.105645211496604996 -0.0263756249999999998 20 10 0.648811600000000044 0 20 false 171 267.650007685923981 1.29170156908838996 207.207001 19.6194479999999984 14 64.1537778325402002 9.29009199270256047 6.90561299999999978 20.8333319999999986 15 357.57782593487201 12.4066925838701998 28.8213650000000001 18.3784939999999999 1.5756831 0 2.45483779999999996 1.21388439999999997 1.24095339999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.973626799100003 -62.3361711146207966 23.1025958360770005 -12.2785123425775993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490475159472128 2505490475159472128 611844847 2015.5 25.8949109539066988 0.107850978632553995 -2.41936719146191015 0.0749185557945620945 0.722124946463646 0.123978041285148 5.82462000000000035 14.8200450593351007 0.195897751918050006 -8.16257654245339026 0.147646968614960988 -0.124343573999999998 0.534667849999999945 -0.00582709959999999985 0.0273555979999999983 -0.305144729999999975 -0.00987914500000000063 0.0873868099999999953 0.0146583489999999993 0.072394885000000006 0.113447500000000007 175 0 175 0 0.678742230000000002 182.126007 0.102690467998184001 0.179144612309923013 31 true 1.92175150000000006 1.51075672979853004 0.0252685020997754986 -0.0657077999999999968 20 10 0.17628569999999999 0 20 false 175 2054.83390125668984 2.60600595906710986 788.499023 17.4064240000000012 18 859.100169648448968 15.1348983576889005 56.762863000000003 18.0162799999999983 18 1772.1429746849401 11.6428399269733003 152.208820000000003 16.6406729999999996 1.28051380000000004 0 1.37560649999999995 0.609855649999999971 0.765750900000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.948578716392007 -62.3167547931213974 23.109044548532701 -12.2567726214243002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505499477411347200 2505499477411347200 152754388 2015.5 25.6147222880323007 0.202094054233178 -2.42006063454015985 0.169516497456517007 1.1715673088696601 0.251932767889031017 4.65031700000000026 8.01413164733271977 0.357752588643513003 0.649106601481897028 0.291116051726497016 0.215312470000000006 0.537248130000000046 0.0661144550000000025 0.188614900000000002 -0.146676439999999991 0.143920720000000002 0.316289199999999993 -0.0117925930000000005 0.107799835999999996 0.282859470000000002 141 0 137 4 2.35936710000000005 173.365005 0.480377540851267992 1.34964367406897989 31 false 0.626897200000000043 1.32289838024784001 0.0469360986557744997 0.122585890000000003 16 10 0.337833639999999991 0 16 false 136 887.427538419540952 2.01344860559120997 440.75 18.3180329999999998 15 326.595153156232016 10.1577066259728994 32.1524500000000018 19.0663640000000001 14 874.374105674339944 9.83352449364092962 88.9176700000000011 17.4076769999999996 1.35331519999999994 0 1.65868759999999993 0.748331069999999987 0.910356500000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.403650776950997 -62.4373017173680012 22.8423057237266001 -12.1548067388294001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487863819779840 2505487863819779840 145734647 2015.5 25.6510358794410998 0.315106095963800015 -2.41345314854354998 0.201050065522777988 2.70838854799719009 0.396081038203814018 6.83796550000000014 16.605620330576599 0.40396134675039802 -9.55501460562057048 0.341186227790125973 -0.196660059999999998 0.781170299999999984 0.121320280000000003 -0.00717099760000000034 -0.373007399999999989 0.0489924740000000011 0.426207959999999997 0.0115698160000000001 -0.0594089930000000002 0.158438489999999987 142 0 142 0 1.03264320000000009 154.091995 0.107870619690072 0.0461295141303018977 31 false 0.457694260000000019 1.18553809150196998 0.0565835743784730005 -0.00676447799999999998 16 9 0.40794370000000002 0 16 false 140 621.448806794884035 1.65921324784461999 374.544006 18.704853 13 126.956712707389002 7.7638944779316601 16.3521940000000008 20.0922489999999989 12 826.950054744193039 13.2966500228552995 62.1923600000000008 17.4682220000000008 1.53497240000000001 0 2.62402729999999984 1.38739590000000002 1.23663140000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.468528776872006 -62.4158977743479966 22.8793114503485988 -12.1619700465492997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505487623301611136 2505487623301611136 1474165660 2015.5 25.6890526159801986 1.09726998798420006 -2.41568905564784986 0.725806714862817004 1.68461581004314009 1.48508850269280002 1.13435379999999997 -0.621705415856600996 1.61618641643590011 -4.61590938703930043 2.04587684425210981 -0.179185170000000005 0.777955500000000022 -0.0390963100000000022 -0.270901100000000006 -0.412718450000000014 0.00577391450000000039 0.0641989300000000013 -0.199185479999999998 -0.314730940000000015 0.522926450000000043 114 0 113 1 0.391300599999999998 113.164001 0 0 31 false 0.0433892570000000005 1.36511379547797995 0.225809852108454001 0.0150304770000000004 13 8 2.08765720000000021 0 13 false 113 132.817053276991999 1.60673626663800007 82.6625977 20.3802319999999995 11 108.833904949621996 14.8435041161680008 7.33209 20.2594780000000014 11 93.449425772677003 12.3299051373015001 7.5790873000000003 19.8354779999999984 1.52302230000000005 0 0.423999799999999982 -0.120754239999999999 0.54475399999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.544778050085995 -62.4017374114304033 22.9146210991742016 -12.1779807913521996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505491299793195392 2505491299793195392 1564980665 2015.5 25.8687358289289016 0.53947607970838396 -2.4103127528533701 0.416396652342796991 0.921500783068586959 0.684571699270822953 1.34609829999999997 9.70095137039882083 0.936665807381066973 -5.35519140765484014 0.924257823626316033 -0.104515609999999995 0.603697959999999978 -0.00536032300000000017 0.0131130569999999991 -0.398397800000000024 -0.0885499200000000042 -0.174915879999999996 0.0479473430000000034 0.100708229999999996 0.349572570000000027 160 0 159 1 0.0857457739999999968 154.839996 0 0 31 false 0.0809943749999999935 1.55229834520564003 0.124158067209324999 -0.0130588389999999992 19 10 0.952066599999999985 0 19 false 159 209.360389195700009 1.24859693479561007 167.677002 19.8861300000000014 16 98.193624121404298 7.1585079084380796 13.7170515000000002 20.371179999999999 17 192.228074634269007 10.5374319642592003 18.2424029999999995 19.0523780000000009 1.38718549999999996 0 1.31880189999999997 0.485050199999999987 0.833751699999999984 \N \N 0 \N \N \N NOT_AVAILABLE 151.889386427007992 -62.3198767626803019 23.0875357239122998 -12.2387700108555997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505490509519211776 2505490509519211776 92387177 2015.5 25.9015102428030985 0.937358947537029974 -2.41381064034169013 0.724582451552573947 0.163471183988383006 1.14696166689028001 0.142525399999999997 -1.62229248522311997 1.41359845050519994 -7.63729327875921005 1.67784205977458001 0.132656629999999998 0.70904385999999997 -0.00745892250000000038 -0.0582322440000000024 -0.134799210000000003 -0.222041130000000003 -0.378433760000000008 0.0674713400000000046 0.10212454 0.434183480000000011 131 0 131 0 0.33011020000000002 130.628998 0 1.79039940448067016e-15 31 false 0.0384411439999999965 1.74765247778656008 0.244605036997450009 0.0277843850000000017 15 9 1.67202680000000004 0 15 false 131 130.521669895424992 1.19096774983907006 109.593002 20.3991579999999999 12 86.0826860700957042 16.9746521092184004 5.0712489999999999 20.5140999999999991 13 101.122193826314998 13.5608937758099994 7.45689729999999962 19.749804000000001 1.43428200000000006 0 0.764295599999999964 0.114940639999999997 0.649354929999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.956207796966993 -62.3088945894744981 23.1174052250106001 -12.2540163268720992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460648534573824 2481460648534573824 791154108 2015.5 25.4944917608471009 0.073838532708701804 -2.68320315584925995 0.0363356781576585977 3.40740597022971015 0.0519712139166595005 65.5633299999999934 29.4974150919688007 0.175892282743577988 -28.1431649710514016 0.0745168648559974001 -0.442514870000000005 -0.240816520000000006 -0.776718600000000037 0.414201900000000012 0.196675199999999994 0.502792400000000028 -0.403977220000000026 0.438068059999999981 -0.203946319999999987 -0.32137062999999999 121 121 119 2 3.69611020000000012 178.511993 0 0 31 true 377.50830000000002 1.60746257429683004 0.0130231304736175002 -0.0880539040000000023 14 8 0.114871360000000006 0 14 false 119 436548.583475943014 296.434897341567023 1472.66003 11.5882845000000003 13 240288.057361443003 482.908114881930999 497.58544999999998 11.8995580000000007 13 286443.872740736988 537.061330038508004 533.354100000000017 11.1193209999999993 1.20658270000000001 0 0.780237199999999964 0.311273569999999999 0.468963620000000025 15.1914492132413006 0.601669646198325969 3 6000 4.5 0 NOT_AVAILABLE 151.410232129484001 -62.7265447050541027 22.6290934206979983 -12.3554544461436002 100001 5951 5793.5 6699.3501 0.120999999 0.0299999993 0.261299998 0.0544999987 0.0152000003 0.116999999 200111 1.14123550000000007 0.900511860000000053 1.20412929999999996 1.47165170000000001 1.44109130000000007 1.5022120000000001 +1635721458409799680 Gaia DR2 2481463603472118272 2481463603472118272 1638689720 2015.5 25.4937597236786999 1.10376301780332997 -2.67852902147274019 0.515604657426583013 -0.37158756465043602 0.918239900594014946 -0.404673730000000009 -2.67403763592432009 3.09951494312916997 -15.4328039836142992 1.00884920624357011 -0.185342279999999998 -0.582287250000000034 -0.809909340000000033 0.314313830000000016 0.137963649999999993 0.367026799999999986 -0.0135362480000000007 0.633887899999999949 -0.210426969999999991 -0.162769990000000003 113 0 112 1 1.10198799999999997 123.209999 1.27452828536930007 1.22830519673058003 31 false 0.0658565099999999931 1.41369331207512006 0.166038304865408992 -0.0593995859999999973 13 8 2.90780830000000012 0 13 false 111 174.644767041758996 1.61548686493401994 108.107002 20.0829769999999996 10 104.248466579257993 21.5718407209900995 4.83261800000000008 20.3062129999999996 11 178.17916614992501 8.38060281585632083 21.2608999999999995 19.1347769999999997 1.6171548 0 1.1714363000000001 0.223236080000000003 0.948200200000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.404454881416001 -62.7226238853363967 22.6301559718749985 -12.3508387233428998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460717254096896 2481460717254096896 1203296381 2015.5 25.5331106849675997 0.157512145200965986 -2.67401292250230993 0.0892420819481687944 0.897334427484793973 0.123643671168302993 7.25742300000000018 -0.176652433777818002 0.424808602622839981 -9.9105293282982494 0.153692433727172006 -0.272204969999999991 -0.285865519999999984 -0.689385899999999996 0.368434219999999979 0.19417915999999999 0.522882639999999954 0.0645699200000000029 0.386396020000000007 -0.186668840000000003 -0.163043999999999994 120 0 116 4 -0.279496880000000003 106.238998 0 9.53770119187458963e-16 31 true 2.46695880000000001 1.52510776484002997 0.0278567893950956991 -0.0840424000000000032 14 8 0.401819380000000004 0 14 false 116 2374.49796251824 3.3831697368006699 701.856018 17.2494349999999983 13 1022.43771079341002 13.8596807742805002 73.7706500000000034 17.8272949999999994 12 1904.42742580170011 8.83574674839814023 215.536669999999987 16.5625099999999996 1.23262479999999996 0 1.26478580000000007 0.577859899999999982 0.686925899999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.477866227789008 -62.7018205180786978 22.6692792541462005 -12.3610843430041992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460545455401216 2481460545455401216 893384361 2015.5 25.5541288748300985 0.309329356138486 -2.68500509869596016 0.193396395906766994 2.85972447398216012 0.249062177550671005 11.4819700000000005 17.1921353560585999 0.859463697572968033 -21.7336907428787995 0.280156319466934978 -0.20820493000000001 -0.241098449999999992 -0.667358039999999986 0.338319360000000013 0.244767950000000012 0.554691999999999963 0.296691719999999992 0.418279950000000011 -0.0500772560000000005 -0.0558718259999999994 123 0 120 3 1.34728629999999994 135.919998 0.556738815593966985 1.68957161231245001 31 false 0.592810750000000053 1.20599445282435003 0.0554522934375003967 -0.0824642700000000062 14 8 0.797697499999999948 0 15 false 121 912.104632434983955 2.40289033291471998 379.585999 18.2882539999999985 14 184.784000600423013 7.66247355695417998 24.1154499999999992 19.6847269999999988 14 1161.28384689580002 12.1884491066071003 95.2774100000000033 17.0995729999999995 1.4757823000000001 0 2.58515359999999994 1.39647290000000002 1.18868060000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.529494970703013 -62.7028185365247026 22.6851351778745993 -12.3790218524819995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460923414585856 2481460923414585856 568639036 2015.5 25.5645982714402997 2.31266565951874004 -2.67434112159775017 1.33935655256022002 \N \N \N \N \N \N \N -0.221569020000000005 \N \N \N \N \N \N \N \N \N 78 0 78 0 1.77242480000000002 95.7777023 2.68542760216607013 1.73407680754660998 3 false 0.0237720930000000011 \N \N 0.0777439699999999956 9 6 5.76880930000000003 0 9 false 78 93.5710219656095035 1.51030098151129 61.9552002 20.760511000000001 5 67.0269052650587014 28.1658285384521996 2.3797242999999999 20.7857650000000014 7 135.786944220999999 9.60556054269133952 14.1362850000000009 19.4297749999999994 2.16748569999999985 0 1.35598949999999996 0.0252532960000000015 1.33073620000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.540199500547999 -62.6887125892557009 22.6991042005269996 -12.3729457450802993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463607767499136 2481463607767499136 1435991600 2015.5 25.4906682073229014 0.117396786343788001 -2.6715473442447899 0.0480609959993099981 0.931074563218495022 0.0766548161068962008 12.1463280000000005 11.9689855340813995 0.274822984814695026 1.79429230119723004 0.0871251215040440008 -0.437891780000000008 -0.215884369999999992 -0.803831799999999985 0.360660199999999986 0.0100952119999999992 0.498456239999999995 -0.154604600000000009 0.382634160000000001 -0.135915649999999999 -0.237478400000000006 114 0 113 1 -0.7611232 96.5755005 0 0 31 false 9.20265700000000031 1.54191996465439995 0.0160014248499207 -0.124664919999999999 13 8 0.275013540000000001 0 13 false 113 7745.57986366997011 8.43359121218973939 918.419983 15.9657309999999999 13 3722.28941386092993 18.2582783791387016 203.868590000000012 16.4243619999999986 13 5714.29983319417988 20.6472060144410001 276.759000000000015 15.3695129999999995 1.2183193000000001 0 1.05484960000000005 0.458631520000000015 0.596218099999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.391886098592011 -62.7176144645627005 22.6298428748750986 -12.3432106878992993 100001 5030.77979 4948.1001 5117.75977 0.00800000038 0.00400000019 0.0251000002 0.00400000019 0.00139999995 0.0149999997 200111 0.819020149999999947 0.791416169999999974 0.846618500000000052 0.387100820000000012 0.320341199999999993 0.453860429999999981 +1635721458409799680 Gaia DR2 2481463637831858560 2481463637831858560 320112955 2015.5 25.4998582326277017 0.522835580137906986 -2.67313147911775006 0.26288124790390599 -0.00195742866207202978 0.438315700349272974 -0.00446579649999999991 1.39039160568842002 1.47835476310760994 -5.74548816939011964 0.439641000587751019 -0.192417310000000008 -0.531063199999999958 -0.785150800000000038 0.291401699999999986 0.196094970000000007 0.429684520000000014 0.123841690000000004 0.617088260000000055 -0.129777539999999997 -0.102600140000000006 112 0 112 0 1.75182740000000003 133.951996 0 0 31 false 0.276906759999999974 1.75519584157328001 0.0818332124584899984 -0.0422102469999999994 13 8 1.38312079999999993 0 13 false 112 435.329705933213972 1.98583337628244005 219.218002 19.0913199999999996 11 254.599969936771998 12.0515003946854993 21.1259979999999992 19.336742000000001 11 270.356013088786028 9.41763399262961087 28.7074239999999996 18.6820799999999991 1.20588139999999999 0 0.654663100000000053 0.245422360000000006 0.409240720000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.411484324356991 -62.7151497308293031 22.6379864522639984 -12.3480579822006007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463710846713600 2481463710846713600 350878688 2015.5 25.4893718185002989 0.0961413596941547016 -2.65386494744066992 0.0473876674013663998 1.53036412364555008 0.0746615611951196995 20.4973489999999998 19.5453556998753015 0.255415142558704011 -7.00668296576218985 0.083978195217491905 -0.292867270000000013 -0.394840499999999983 -0.770086599999999954 0.331425960000000019 0.196920929999999994 0.467063459999999986 -0.0524254600000000001 0.521740259999999956 -0.154017459999999995 -0.17984871999999999 113 0 113 0 0.678611040000000054 117.577003 0 0 31 true 9.89651600000000009 1.44914056159743998 0.0151495141734342004 -0.0392239600000000022 13 8 0.251477479999999975 0 14 false 113 8368.12969671688006 32.3741532857706034 258.481995 15.8817950000000003 10 2926.14163939832997 29.213854475760801 100.162800000000004 16.685649999999999 9 7833.6621001818603 33.2904954137211035 235.312270000000012 15.0270080000000004 1.28580749999999999 0 1.65864180000000005 0.803854940000000018 0.854786900000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.372959423438004 -62.7021535532247967 22.6352626531935002 -12.3262899718372996 100001 4230.16992 4047.12988 4533.37988 1.20599997 0.842400014 1.48199999 0.610700011 0.430700004 0.738499999 200111 0.843782959999999971 0.734686700000000026 0.921832699999999949 0.205393880000000001 0.184342830000000013 0.226444929999999989 +1635721458409799680 Gaia DR2 2481463710846713856 2481463710846713856 242600035 2015.5 25.4930063017320983 0.724813756309803048 -2.65683232126150992 0.322558416904373979 0.164215438228359989 0.594535660195515958 0.276207900000000006 12.3993335396245001 2.01836377240738019 -3.74403485039366979 0.550351924477122001 -0.178216029999999998 -0.558586660000000013 -0.810407699999999953 0.288756500000000027 0.107544899999999999 0.372250599999999987 0.15915456 0.627898100000000015 -0.141814279999999987 -0.127073729999999996 121 0 119 2 -0.465433660000000027 106.476997 0 0 31 false 0.158569629999999989 1.25986019923668002 0.105320147590341001 -0.0658798399999999951 14 8 1.89338080000000009 0 14 false 120 282.94816142169401 1.82588552311484009 154.964996 19.5591000000000008 11 83.7945915332096973 9.32502484931966968 8.9859915000000008 20.5433480000000017 10 287.112542085688972 8.70257661765421986 32.9916729999999987 18.6167890000000007 1.31086600000000009 0 1.92655939999999992 0.984249099999999988 0.942310329999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.382873641787995 -62.7032996978389008 22.6376024972244991 -12.3303840093386992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460785975565184 2481460785975565184 786153432 2015.5 25.5209955947955009 12.4135008600662005 -2.66508530233643981 5.67376251199372028 \N \N \N \N \N \N \N 0.741009350000000011 \N \N \N \N \N \N \N \N \N 50 0 49 1 1.07219409999999993 54.0754013 0 0 3 false 0.0225427799999999984 \N \N 0.181867150000000005 6 4 8833.28600000000006 0 6 false 49 79.9453817490128955 1.72765211002041008 46.2739983 20.9313830000000003 4 68.3222582289308065 9.92357243154564017 6.88484530000000028 20.7649819999999998 6 111.912922160142998 15.9571574927274007 7.01333699999999993 19.6397189999999995 2.2544789999999999 0 1.12526320000000002 -0.166400910000000013 1.29166409999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.445704966102994 -62.698891340732402 22.6611154045387018 -12.3483343564550996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463745205870592 2481463745205870592 665303626 2015.5 25.5188456141770992 1.44280516866773989 -2.66056013202710995 0.682608624783203055 \N \N \N \N \N \N \N -0.154446880000000009 \N \N \N \N \N \N \N \N \N 94 0 93 1 0.292777239999999994 91.2567978 0 0 3 false 0.049782593 \N \N 0.000938840700000000052 11 8 3.94236539999999991 0 11 false 93 127.847013120618001 1.11693320246584005 114.462997 20.4216380000000015 8 62.2594605581696001 12.3125665179025994 5.05657859999999992 20.8658749999999991 8 143.39131500254399 9.10375713589701085 15.7507839999999995 19.3706129999999987 1.60856930000000009 0 1.49526209999999993 0.444236760000000008 1.05102540000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.437271971635994 -62.6957090331388969 22.6607729272538982 -12.3433365892132993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464015788994432 2481464015788994432 953646736 2015.5 25.4971474542800003 0.212174436052730009 -2.64011817089041001 0.0961210734983361931 0.494844295558817981 0.165445613557702986 2.99097869999999988 -0.354052460347169973 0.571741177394547995 -21.439585913488699 0.174626542522903994 -0.249567499999999998 -0.461537839999999977 -0.784210740000000017 0.312149799999999977 0.107840220000000001 0.405277280000000018 0.0250819499999999987 0.54047400000000001 -0.159365200000000012 -0.171905489999999994 123 0 123 0 1.80898770000000009 147.255005 0.0882545083236618982 0.0939646391389026975 31 true 1.69302369999999991 1.60940282472665008 0.0321337478633810028 -0.0688279049999999948 14 8 0.541413699999999998 0 14 false 121 1762.2201507801899 2.77945612074878001 634.015991 17.5732150000000011 13 981.362405415299008 15.3063070578260998 64.1149099999999947 17.8718150000000016 13 1168.20749350536994 23.0663674642187004 50.6454900000000023 17.093119999999999 1.21980789999999994 0 0.778694149999999974 0.298599239999999988 0.480094899999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.375575720385996 -62.686409825661201 22.6478279670899987 -12.3163598147231994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464020084357760 2481464020084357760 1346781007 2015.5 25.4892081248729987 0.107874212676391995 -2.63192920584631995 0.0455449510534850985 0.381246013146627982 0.0844941812955039007 4.51209799999999994 13.6545787684488005 0.283182332286992022 -12.1252300968069004 0.0880245655490805995 -0.268172030000000006 -0.512174070000000037 -0.736238539999999997 0.298646420000000024 0.100790835999999995 0.391877619999999982 -0.12067928 0.481855270000000002 -0.155869160000000007 -0.174940120000000005 112 0 111 1 0.700903100000000001 115.828003 0 1.95201101787302999e-15 31 false 9.00121299999999991 1.64359583875812998 0.0160632505596555002 -0.116945099999999996 13 7 0.274734079999999992 0 13 false 110 7780.98874826030988 6.46026546010924019 1204.43994 15.9607790000000005 12 4492.48488871251993 15.1262109484917993 297.000029999999981 16.2201710000000006 11 4910.68153612522019 16.3004984466257987 301.259580000000028 15.534065 1.20847959999999999 0 0.686105700000000041 0.259391780000000016 0.426713940000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.352355214889997 -62.6823582978844982 22.6433586747589004 -12.3058292736245996 100001 6833.37988 6350.79004 7215.5 0.189199999 0.0790000036 0.308999985 0.0769999996 0.0390000008 0.153999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464221947677312 2481464221947677312 1133053577 2015.5 25.5236243159680001 0.825368653217748993 -2.63245257377568986 0.620741741000339964 2.19611172654744013 0.914249938179230948 2.40209129999999993 -4.83530228591480959 1.90629236912664002 -0.0956840085791293982 1.0229122081050499 0.12469711 0.100957459999999999 -0.190019190000000004 0.201263710000000012 -0.128105180000000013 0.237103829999999988 0.315349729999999995 0.0384460130000000011 0.0650063699999999939 0.126495959999999991 121 0 119 2 8.45327950000000072 293.951996 3.77412442426795991 10.9896046395439999 31 false 0.0405314640000000032 0.814807162174697952 0.189152545783101006 -0.00574728050000000018 14 9 1.69126620000000005 0 14 false 119 212.505838758611986 1.88289820562994992 112.861 19.8699380000000012 10 36.0919797435941021 6.76468778493264988 5.33535049999999966 21.4578600000000002 13 353.508352086964976 12.0113696986248009 29.4311450000000008 18.3909200000000013 1.83336290000000002 0 3.06694030000000017 1.58792299999999997 1.47901729999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.420652709631014 -62.6682381384175997 22.6758892142353012 -12.3189492637865001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460751613837184 2481460751613837184 285859760 2015.5 25.5365063064959017 0.188453841655576992 -2.66967041123995985 0.104388082730351994 0.229038111963926011 0.147728188583955006 1.55040219999999995 7.0177788319784602 0.507323264934437024 -4.07100654496240022 0.184142741994400005 -0.279791899999999982 -0.301919280000000012 -0.707209500000000046 0.367458940000000012 0.199190690000000004 0.507353700000000019 0.0294802779999999987 0.410375600000000007 -0.191601920000000009 -0.184121740000000006 120 0 118 2 0.301146999999999998 116.904999 0 0 31 false 1.69072270000000002 1.55696398788680002 0.0349736200339828968 -0.0849266399999999977 14 8 0.478404759999999984 0 14 false 118 1719.93086034376006 2.92493753988956984 588.02301 17.5995880000000007 12 913.202176672165024 22.9967782381826993 39.7100069999999974 17.9499700000000004 10 1186.76634007711004 10.3969614053343005 114.145499999999998 17.0760080000000016 1.22096099999999996 0 0.873962400000000028 0.350381849999999995 0.523580550000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.480526551629993 -62.6964470903460978 22.6741422291671988 -12.3582919312902995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461198290540800 2481461198290540800 413936274 2015.5 25.5385038833206011 1.80423501190901003 -2.65007980907130003 1.09227903573398999 \N \N \N \N \N \N \N -0.34780270000000002 \N \N \N \N \N \N \N \N \N 77 0 77 0 0.438743949999999994 76.6968002 1.00243301101685001 0.195389827759160001 3 false 0.0299974440000000016 \N \N -0.080077850000000006 9 6 4.68298400000000026 0 9 false 77 101.793885254469004 1.22406735936435007 83.1604004 20.6690620000000003 4 61.1411166052546022 9.96812249732498046 6.13366399999999956 20.8855550000000001 5 63.2968467822230991 17.0938628627601013 3.70289899999999994 20.2584650000000011 1.22245029999999999 0 0.627090449999999966 0.216493600000000008 0.410596850000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.466286705378991 -62.6778707313915007 22.6834104667832008 -12.3408047220670003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460751613837568 2481460751613837568 1056105630 2015.5 25.5500376207255009 0.878908445240274006 -2.66663197744354985 0.510579681975744992 0.00101968405736848006 0.732978691553386019 0.00139115099999999998 10.8480135226032992 2.50795211770484006 -4.23309853852695994 0.807907334866473037 -0.168321830000000006 -0.396681280000000025 -0.710487839999999982 0.332380239999999993 0.177730219999999994 0.47854772000000001 0.279663439999999985 0.487144259999999996 -0.128421520000000011 -0.0867292060000000031 129 0 129 0 1.79092429999999991 153.626007 0.919243281536894052 0.496395288902503007 31 false 0.0704956100000000002 1.60402700515037999 0.156759869125657009 -0.096053920000000001 15 8 2.31938669999999991 0 15 false 129 182.417972613585988 1.34930638487890997 135.194 20.0356960000000015 13 71.491036687462298 8.60008633891363949 8.31282799999999966 20.7157599999999995 12 165.943341482747996 10.5474465974032992 15.733034 19.212019999999999 1.30159530000000001 0 1.50373840000000003 0.680063250000000008 0.823675159999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.504361747777011 -62.6879406217552031 22.6881545970464984 -12.3604322063092003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464187587695360 2481464187587695360 576317843 2015.5 25.5343181669014001 0.150929413610438989 -2.63036106744835019 0.128284723175582011 3.18126811512553997 0.16966323702241401 18.7504859999999987 1.97704885114334994 0.337980773186694006 -18.6936929673484009 0.213495553847877995 0.280391159999999973 0.215626239999999997 -0.082947253999999998 0.226008600000000004 -0.0430809629999999999 0.229041489999999986 0.325698639999999984 0.0187651419999999985 0.0917756500000000003 0.222374889999999992 121 0 118 3 3.49338650000000017 173.184998 0.553968297000252963 3.74090538837976982 31 false 1.12804130000000002 1.28268543778725008 0.0406813057827051031 0.0640389499999999973 14 10 0.306079800000000013 0 14 false 120 1724.26726446608996 3.75148357922893005 459.622986 17.5968550000000015 11 359.042911010159003 6.48777644412484999 55.3414420000000007 18.9635220000000011 12 2156.32896536890985 12.8421400159460006 167.91040000000001 16.4276330000000002 1.4588063 0 2.53588870000000011 1.36666679999999996 1.16922189999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.439773823605009 -62.6618039480616034 22.6868454038289009 -12.3209288289934005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464256307173376 2481464256307173376 663075619 2015.5 25.5347116758193984 0.0899675280109503012 -2.62820801821330008 0.0764640104166107032 2.96569702970931015 0.102022680955052999 29.0689959999999985 2.25175815982509997 0.199826164881048013 -18.4760359135986008 0.130259614905141013 0.279437959999999985 0.222665190000000013 -0.0957085200000000053 0.1978607 -0.0687786039999999932 0.199432340000000013 0.256407099999999999 0.0345236619999999966 0.0965137900000000021 0.242577519999999991 122 0 122 0 0.232768009999999997 119.917999 0 0 31 true 3.17382069999999983 1.30055433635478002 0.0251470304976963988 0.0658354240000000035 14 10 0.184647599999999995 0 14 false 122 2854.3355328959401 3.58116519620921991 797.041016 17.0496030000000012 13 550.472877777184976 11.2822308384865995 48.7911379999999966 18.4995480000000008 11 3586.27705282637999 21.2264132240512993 168.953499999999991 15.8753100000000007 1.44928649999999992 0 2.62423800000000007 1.44994540000000005 1.17429260000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.438555086258987 -62.6596880881101015 22.6880292696949013 -12.3190707616171995 100001 3909.94995 3594.57007 4032.04004 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461163930705920 2481461163930705920 708247397 2015.5 25.5599915694915012 0.59403865094330599 -2.64654054854221021 0.51763008526120402 2.22175530438464008 0.680836870411070993 3.26327100000000003 19.4608145364365015 1.36971812217571998 -22.3968862138512996 0.896088634683932961 0.266780530000000016 0.204879499999999992 -0.00548197840000000033 0.225039039999999996 -0.104100100000000001 0.252795219999999987 0.39834687000000002 -0.0978006349999999969 0.00575274600000000042 0.235776289999999999 140 0 140 0 3.86185029999999996 208.028 2.11941407890251021 2.98257085865629978 31 false 0.058868280000000002 1.6678400823928301 0.15641007986000699 -0.0022938107000000001 16 10 1.23672439999999995 0 16 false 140 181.309371565967012 1.19536008403362004 151.677994 20.0423149999999985 13 38.5697227998201981 6.48215227165210983 5.95014139999999969 21.3857730000000004 14 255.104600271865991 7.30112738924359039 34.9404400000000024 18.7451250000000016 1.6197416 0 2.64064800000000011 1.34345819999999994 1.29718969999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.505307267255006 -62.6655275586583969 22.7051776341441993 -12.3453984924714995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460133138541312 2481460133138541312 1285260580 2015.5 25.5997194316597998 0.0811078998615823027 -2.68318005319087982 0.0574700514313460989 0.374640083389410017 0.0799289442856322974 4.68716430000000006 5.97045851791756998 0.213551397387798991 -4.35387118813055984 0.115421907062996001 0.0276294560000000002 0.0553994329999999979 -0.345218179999999986 0.18925473000000001 -0.0397522400000000012 0.217638310000000001 0.222385620000000006 0.0476226400000000008 -0.056637800000000002 -0.00686853839999999969 123 0 122 1 1.22338820000000004 135.990997 0.0872619796800945952 0.232755174514570007 31 true 4.75886799999999965 1.59159489279268995 0.0190892405572566995 -0.0749585200000000007 14 9 0.198248709999999995 0 14 false 120 4424.11838743749013 4.86224717618147029 909.892029 16.5737999999999985 12 2542.94871573647015 13.1503870582155002 193.374439999999993 16.838042999999999 13 2834.46525065056994 18.6188248805635013 152.236529999999988 16.1307429999999989 1.21547699999999992 0 0.707300200000000046 0.264244079999999992 0.443056100000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.617555061675006 -62.6817194782178007 22.7291875286392013 -12.3940536451043002 100001 6165.25 5870 6794.1499 0.0313000008 0.0055999998 0.0949999988 0.00949999969 0.00260000001 0.0469999984 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461026491750528 2481461026491750528 529670439 2015.5 25.6080225617292001 0.523828121200150987 -2.65108151352426979 0.41449109163105502 1.46254552719728004 0.608802410075250044 2.40233199999999991 2.86220009748541981 1.07511410169514998 -8.9514325454849093 0.726410199101494958 0.141799289999999995 0.383434390000000014 -0.0200077459999999999 0.193133680000000002 -0.200441940000000013 0.269190519999999989 0.378436300000000003 -0.102385009999999999 -0.0275123100000000016 0.254684750000000015 133 0 129 4 3.39644069999999987 184.675995 1.82411299291721996 4.21543383444258968 31 false 0.0950011500000000064 1.40430099816609011 0.131789411571867993 -0.047431305 15 10 0.977962140000000035 0 15 false 128 282.578971742046008 1.54204447220129004 183.25 19.5605159999999998 14 89.5554534228642041 9.68076639615171075 9.25086399999999998 20.4711590000000001 15 329.457668558926002 7.99015985473985957 41.2329250000000016 18.4674200000000006 1.48281780000000007 0 2.00373840000000003 0.910642599999999969 1.09309579999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.60399505562799 -62.6491566325519997 22.7491548308078002 -12.3672442514458005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461030787145472 2481461030787145472 1474348776 2015.5 25.6097482492048982 0.147223889956783011 -2.64893416679089011 0.123971894193192003 0.358460997018287986 0.166044273552558991 2.15882780000000007 -1.09688270985747005 0.343532243557937988 -5.50347849987344961 0.232141467433950005 0.207194199999999995 0.195202340000000002 -0.0562718200000000002 0.191643089999999988 -0.111865129999999993 0.241393069999999987 0.299178659999999985 -0.0892399499999999984 -0.0340903200000000003 0.224139139999999987 140 0 140 0 1.32971269999999997 157.309998 0 0 31 false 0.956001400000000001 1.53819537275318008 0.0389461013514090029 -0.0108353879999999996 16 10 0.312597269999999983 0 16 false 139 1095.14734007695006 2.21690298905883987 493.998993 18.0896839999999983 12 488.566396168289998 8.58217430874736031 56.9280430000000024 18.6290799999999983 15 867.801938124943035 9.68605946327200051 89.5928799999999939 17.4158690000000007 1.23852589999999996 0 1.21321100000000004 0.539396300000000051 0.673814800000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.605388979025008 -62.6464784703384012 22.7516036045458989 -12.3658799654494 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461267010194816 2481461267010194816 709207269 2015.5 25.5822473511244013 0.789179379866857045 -2.64158371591880003 0.701958602691420963 4.72248415135967026 0.902909589704187998 5.2302957000000001 34.2656070104154011 1.9008832144076 -7.75912608413146998 1.31350743739956011 0.210737449999999993 0.210277619999999998 0.00263593930000000001 0.15596639000000001 -0.0417050900000000002 0.141646650000000013 0.399270769999999997 -0.139611779999999991 0.0231875599999999994 0.122056440000000002 122 0 122 0 4.57258600000000026 200.854996 3.17999597546464008 4.23255759093837014 31 false 0.0353137999999999994 1.29604072844789009 0.222751701744786007 -0.0249946150000000013 14 10 1.68467699999999998 0 14 false 121 145.290435195382997 1.3091563445160701 110.980003 20.2827739999999999 10 37.9143584125678998 10.0147191328182004 3.78586340000000021 21.4043789999999987 11 267.608176640123986 7.83205199730586976 34.168334999999999 18.6931720000000006 2.10284000000000004 0 2.71120640000000002 1.1216048999999999 1.58960149999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.544489900112012 -62.6515644028615029 22.7282090799544996 -12.3489542352774002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480304677315072 2505480304677315072 1356115897 2015.5 25.6060845167438984 0.839707418336499978 -2.63024133035959995 0.657523719489290004 0.246643368155657988 0.881917505121836975 0.27966717000000002 0.882273809209930038 2.21217999016865985 -1.30998872934724009 1.28925647582358005 0.185851440000000007 -0.031907673999999997 -0.367358359999999995 0.161103710000000011 -0.104343530000000004 0.16759170000000001 0.217231809999999997 0.143419469999999993 -0.0238411349999999994 0.137593519999999997 120 0 118 2 1.5396643000000001 137.003006 1.94266285987323006 1.23538007277127004 31 false 0.0382916199999999984 1.71350772336672996 0.22334265588711899 -0.0404585230000000032 14 9 1.978796 0 14 false 118 133.393378423709009 1.36675554157962997 97.5986023 20.3755300000000013 11 77.3015522657359071 8.87180676173617044 8.71316900000000061 20.6309189999999987 14 103.532635094531003 10.7674657146027997 9.61532000000000053 19.7242260000000016 1.35564590000000007 0 0.906692500000000012 0.255388259999999978 0.651304239999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.580809581886001 -62.6311421628065972 22.7551457104959987 -12.3471491183207007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479209460228480 2505479209460228480 1177677564 2015.5 25.6508175778186001 0.432158965013263008 -2.67067000011752009 0.38313369812397402 1.37559696517494001 0.487844602859896004 2.81974400000000003 7.59115743619927041 1.03719794537571008 -18.2130460118145017 0.688090709353624042 0.243394350000000009 0.121225044000000004 -0.0460914820000000031 0.209291520000000009 -0.178297099999999986 0.245489120000000005 0.365747270000000013 -0.075426419999999994 -0.0178375469999999987 0.233590159999999991 140 0 138 2 2.62400870000000008 179.735001 1.32202176614139999 1.9246762067748 31 false 0.108154559999999997 1.68103199285288007 0.115571375757722 -0.0409848400000000015 16 10 0.935938359999999969 0 16 false 140 265.479424781186026 1.80677652861976989 146.934998 19.6282880000000013 14 165.903877082337999 8.12823205772271962 20.4108200000000011 19.8017460000000014 15 356.005879813026013 10.3084787791673005 34.5352480000000028 18.3832780000000007 1.9659141 0 1.41846849999999991 0.173458100000000004 1.24501039999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.706334911310989 -62.6485548484529033 22.7825009737397011 -12.4011611421977008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479243820539648 2505479243820539648 542587781 2015.5 25.6587647805556003 0.0461347973769960021 -2.66268742074101983 0.0362030174260535992 0.596995429660159949 0.0504928432723572018 11.8233669999999993 -2.42720688705411991 0.105752792750097996 -8.64811117172554944 0.0794411176398933938 0.0730594700000000014 0.18347716 -0.21340458000000001 0.0142525424999999997 -0.175270480000000006 -0.0273391600000000012 -0.252238999999999991 0.0923906000000000033 0.155407430000000013 0.188562690000000005 142 0 141 1 -0.763860399999999995 123.162003 0 0 31 false 11.473554 1.66854533725342002 0.0134814635367163007 -0.0338231699999999996 16 10 0.10447948 0 16 false 140 9266.45452786164969 6.62026410719967995 1399.70996 15.7710819999999998 16 5044.91534656614022 12.6016882441692992 400.336459999999988 16.0942539999999994 16 6113.20472976663041 13.5550834355356997 450.989840000000015 15.2962474999999998 1.20414130000000008 0 0.798006059999999962 0.323171619999999993 0.474834440000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.71448956606099 -62.6379387945943975 22.7930621674754015 -12.3966504460049993 100001 5809 5653.91016 5882.66992 0.107500002 0.0250000004 0.215100005 0.0548 0.0092000002 0.107100002 200111 0.999494899999999964 0.974619030000000053 1.05508150000000001 1.02485249999999994 0.834654450000000048 1.21505060000000009 +1635721458409799680 Gaia DR2 2505479484338707840 2505479484338707840 568804169 2015.5 25.6408372736542987 0.375167228115336981 -2.6502777325252902 0.339857129869495012 -0.00128397927621691998 0.439808931214257015 -0.0029194023999999999 1.22484145463945993 0.936213802957947983 -7.92613456951973028 0.673519534705317002 0.222086640000000002 0.0786451600000000056 -0.0302350369999999993 0.134848799999999991 -0.219470250000000006 0.167874290000000009 0.284070199999999995 -0.112532413999999997 -0.0304541940000000004 0.223273500000000014 134 0 133 1 0.60930989999999996 137.298996 0 8.88178419700125035e-16 31 false 0.137309089999999995 1.57105182308187996 0.106012014276629998 -0.0633430259999999967 15 10 0.84548133999999997 0 15 false 132 257.939330806168016 1.55805688519249008 165.552002 19.6595730000000017 12 170.233702375621988 9.64283540163243913 17.6539059999999992 19.7737750000000005 10 185.024119278553997 15.0979486667717993 12.254918 19.0938499999999998 1.37729220000000008 0 0.679925899999999972 0.114202499999999998 0.565723399999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.667715874891002 -62.6344036105544006 22.7806718909988994 -12.3785327327607 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479449978969600 2505479449978969600 577216899 2015.5 25.651657042246601 0.0326714248095136967 -2.65268272595869004 0.0227670867110272984 7.32543782874795024 0.0343984642022455989 212.958280000000002 22.6450771356143008 0.0670735847875855024 -39.088746681242597 0.0503541389677841997 -0.0573875419999999997 0.375720679999999974 -0.162913680000000005 0.124418920000000002 -0.21613191000000001 0.214869470000000007 0.0413816460000000011 -0.0967823939999999938 -0.098815954999999997 0.220851020000000009 140 0 138 2 4.62602600000000042 222.673004 0.120763103011798004 2.98722770863148979 31 false 43.9011700000000005 1.42725143421252998 0.00830878595044401945 -0.0898880700000000005 16 10 0.0715450400000000042 0 16 false 134 102368.400939336003 73.3893468625508945 1394.87 13.1629505000000009 15 35572.9884257614976 52.2937463902528989 680.253199999999993 13.9735870000000002 15 97195.4331330083951 97.6349633440194964 995.498199999999997 12.2928060000000006 1.29696680000000009 0 1.68078140000000009 0.810636499999999982 0.87014484000000003 15.7927651012681007 0.904364325103500954 4 4000 3 0 NOT_AVAILABLE 151.691201897629014 -62.631945321190102 22.7900607779513997 -12.3847377773731004 100001 4121.5 3977.29004 4438.31006 0.437999994 0.215900004 0.557699978 0.214000002 0.123199999 0.252799988 200111 0.669789900000000049 0.577581099999999958 0.71924144000000001 0.116625400000000004 0.115335010000000002 0.117915790000000006 +1635721458409799680 Gaia DR2 2505480235957838208 2505480235957838208 116942394 2015.5 25.6183942216927001 0.409774951721844027 -2.63361564262388992 0.320815379185968974 0.199533531555870003 0.486166115009537991 0.410422530000000008 9.43369220970715006 0.835247315554247027 -23.6235027596119984 0.574853626778648041 0.0468292100000000031 0.39423533999999999 -0.0490221299999999971 0.141603530000000005 -0.298761869999999985 0.229648199999999997 0.331994999999999985 -0.0959420059999999963 -0.0472008920000000012 0.238544800000000001 139 0 139 0 1.23888850000000006 154.587006 0.855349891013877039 1.01750984836280001 31 false 0.14463783999999999 1.44855100611710008 0.0965797177448839972 -0.0952400199999999947 16 10 0.757105229999999962 0 16 false 138 313.048665532958978 1.65297920514516994 189.384995 19.4493369999999999 13 130.08781211828699 7.63491233145233039 17.0385479999999987 20.0657959999999989 15 279.630085620923978 11.7054203472674008 23.8889400000000016 18.6454599999999999 1.30879940000000006 0 1.42033579999999993 0.616458900000000032 0.803876900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.608128295276003 -62.6289380565573026 22.7655860779752999 -12.3548029519134008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480339037053568 2505480339037053568 294862157 2015.5 25.6223940955783007 0.330894435268474008 -2.62878133301886985 0.303764668326491016 0.446396399872741989 0.373025983311233988 1.19668979999999991 14.8937739223117998 0.800346973348164958 -7.26696468783853966 0.613001471929131014 0.267236050000000003 0.135742840000000003 -0.0391831769999999996 0.180538370000000004 -0.143586679999999994 0.227829019999999993 0.252556950000000002 -0.0905502140000000039 -0.0583389480000000016 0.297001149999999992 133 0 132 1 1.02511189999999996 143.324005 0.640950578527970993 0.592893285586046037 31 false 0.179609939999999996 1.29389960242442004 0.0946054888662190979 -0.0267103300000000009 15 10 0.743047059999999981 0 15 false 131 333.253185183953008 1.83244766384225 181.862 19.3814300000000017 13 113.934105091660996 10.6863413280025998 10.6616569999999999 20.2097529999999992 12 356.21274073162698 10.8674937561012008 32.7778199999999984 18.3826469999999986 1.41077969999999997 0 1.82710649999999997 0.828323359999999953 0.998783100000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.611488857172986 -62.6228595502530965 22.7712078207182991 -12.3517733738326996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480373396850048 2505480373396850048 593167133 2015.5 25.6376627907031995 10.6366996463129002 -2.62644224368728985 3.98912096504643987 \N \N \N \N \N \N \N 0.728098029999999952 \N \N \N \N \N \N \N \N \N 49 0 48 1 1.99514419999999992 63.4151001 0 0 3 false 0.017629154000000001 \N \N 0.0207246110000000004 6 6 62.8521840000000012 0 6 false 48 72.8815762481905978 2.28287016644679985 31.9253998 21.0318219999999982 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.639290310126995 -62.6142208806772018 22.786610716994101 -12.3551974666040998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432205338141312 2505432205338141312 1515158809 2015.5 25.6692525439727 0.530000695339571948 -2.68503978709760016 0.455057123412344 -0.137260896750974998 0.607782825201813037 -0.225838719999999993 8.52265309010964955 1.20884508792599998 -6.65596612439381019 0.856384234482518991 0.211078810000000006 0.215320939999999988 -0.0888962449999999987 0.10485411 -0.0917255299999999996 0.0803398899999999971 0.14484799000000001 0.0071086446000000001 0.11856833 0.174270019999999998 145 0 143 2 0.552975360000000027 146.697006 0.864716864863785961 0.420907907492715005 31 false 0.0653534759999999937 1.32091614285342995 0.147439856515520995 -0.0831678700000000048 17 10 1.0764575999999999 0 17 false 144 169.305686997025987 1.36688139264010999 123.862999 20.1166879999999999 12 95.8323949105598984 8.47604033410897983 11.3062699999999996 20.3976080000000017 15 149.48466024690299 7.55857879726352966 19.7768210000000018 19.3254279999999987 1.4489593999999999 0 1.07217980000000002 0.280920029999999987 0.791259770000000029 \N \N 0 \N \N \N NOT_AVAILABLE 151.755964098617 -62.6536297951027024 22.7946380067752017 -12.4212880896517994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432235403336320 2505432235403336320 821037364 2015.5 25.6835336957480003 0.508766530654956028 -2.67400606948561981 0.371461844534543006 1.08127117197635991 0.57596470249967302 1.87732199999999994 -0.0314930343197288992 1.07025749701449002 -6.59127324180125029 0.66685570376070602 0.0275917019999999992 0.3414489 -0.0335324150000000029 0.125493569999999999 -0.230816319999999991 0.157879190000000003 0.270842340000000015 -0.0721609099999999948 0.0356358030000000006 0.135081800000000002 140 8 139 1 3.6394126 201.968994 1.37641357576102008 1.99118223259375005 31 false 0.102567459999999999 1.4389169270970199 0.121164894574608994 -0.101865070000000002 16 10 0.905469500000000038 0 17 false 138 262.023434214637973 1.71863510515109996 152.460007 19.6425149999999995 14 73.6663146309816028 7.26306500420261969 10.1425929999999997 20.6832160000000016 14 322.590294999815001 7.04577698555308007 45.7849160000000026 18.4902920000000002 1.5122945000000001 0 2.19292450000000017 1.04070090000000004 1.1522235999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.773680736308989 -62.6375370056112004 22.812372921732301 -12.4162613828668995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432304122812928 2505432304122812928 309318924 2015.5 25.7212084507437986 0.193136952774689008 -2.67445905600296019 0.148176586253566001 0.218263143681327987 0.210255433699411992 1.03808560000000005 0.607539050101885025 0.466882877360236981 -12.6142755375358995 0.289601153222072027 0.0553719140000000012 0.165963470000000002 -0.114912979999999998 0.0694450439999999974 -0.105102760000000003 0.0436283299999999999 0.18830812999999999 -0.0185657439999999986 0.107671530000000001 0.0071097570000000004 149 0 148 1 -0.523345999999999978 133.692001 0 0 31 false 0.523217599999999949 1.63135238652431003 0.052291385586270403 -0.122591495999999994 17 10 0.41248435 0 17 false 148 685.859555312957013 1.91594179560670996 357.975006 18.5977780000000017 17 363.719693992884004 6.10889287780146972 59.5393800000000013 18.9494700000000016 15 483.486520513380981 10.4067409160085997 46.4589769999999973 18.0509589999999989 1.2352474 0 0.89851190000000003 0.35169220000000001 0.54681970000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.847997467475011 -62.6217522114797021 22.8480495190732 -12.4304948737076 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432411497143936 2505432411497143936 1326518090 2015.5 25.7503794030693989 0.0457948244249260991 -2.66953923368682 0.0327694343996361992 1.02183557896056998 0.047707546988290099 21.4187410000000007 8.85242264422173974 0.102046685859933997 6.39076945804399976 0.0676448421809583006 0.0182544660000000004 0.249716980000000005 -0.176378499999999994 0.0971162500000000012 -0.0771894800000000048 0.104872524999999994 -0.0247712619999999988 0.006735558 0.0536777079999999976 0.0853731300000000054 162 0 161 1 1.17657900000000004 176.992996 0.0864518837002595936 0.520558008400166972 31 false 10.7402460000000008 1.56394363760783994 0.0122305083522985993 -0.0816446700000000025 18 10 0.0997118500000000046 0 18 false 160 9656.95251910220031 6.72487736060342023 1436 15.7262660000000007 18 4792.2152988316202 20.8124689680505988 230.256930000000011 16.1500470000000007 16 7040.37194152065968 16.7707796435643992 419.799930000000018 15.1429310000000008 1.22529210000000011 0 1.00711630000000008 0.423781399999999975 0.58333489999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.900542421902003 -62.6047494984789026 22.8776558888908994 -12.4366101383939007 100001 5325.66992 5269.45996 5400 0.0329999998 0.00800000038 0.202299997 0.0149999997 0.00430000015 0.113799997 200111 0.72525512999999997 0.705425599999999986 0.740808070000000041 0.381216940000000004 0.34182918000000001 0.420604699999999998 +1635721458409799680 Gaia DR2 2505479170805947392 2505479170805947392 1213564766 2015.5 25.6726968300977987 0.287976906559335999 -2.66721002692590003 0.20904316148726601 0.0946436937645006998 0.323714217074076993 0.29236804999999999 8.54623998209219948 0.582366165028896043 -17.0984975282059004 0.427929001545409027 -9.37797000000000061e-05 0.398132099999999989 -0.0835756140000000064 0.0641991650000000025 -0.203954579999999996 0.0407260659999999983 -0.0136239269999999992 0.00102759219999999998 0.0868507200000000062 0.158106830000000004 142 0 142 0 0.0500543999999999989 137.162003 0 0 31 false 0.274633799999999983 1.65405546020807992 0.073231184999551599 -0.127178530000000012 16 10 0.519073670000000043 0 16 false 142 441.772962621718023 1.9028497024822999 232.164001 19.075367 12 230.544698605349993 16.2760248839420001 14.1646804999999993 19.4445000000000014 12 339.85126707200601 10.6683326588479002 31.8560809999999996 18.4336990000000007 1.29115190000000002 0 1.01080130000000001 0.369132999999999989 0.641668299999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.746060985982012 -62.6360505377441967 22.8046168787668009 -12.4059661671615995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479273885163008 2505479273885163008 782354577 2015.5 25.6886409893730985 0.249817620892125003 -2.65969549630930979 0.202937072856854001 0.145175821796160009 0.281666698887932998 0.515417039999999993 0.437617595078005017 0.595436063931166992 -0.166945736827815994 0.393607973055131011 0.139886840000000012 0.16507208000000001 -0.0505008180000000029 0.0992505000000000054 -0.118075765999999999 0.101591915000000005 0.190180879999999997 -0.0687877459999999968 0.0683051939999999996 0.116672129999999999 159 0 159 0 1.27757640000000006 176.794998 0 0 31 false 0.274980300000000011 1.6583729985684299 0.0706612682776013024 -0.0837404300000000046 18 10 0.527026800000000017 0 18 false 158 434.660748097243015 2.3047160221639702 188.595993 19.0929889999999993 16 310.18597392770198 14.6573257642619001 21.1625210000000017 19.1223339999999986 15 299.177424151725006 10.4872599487393998 28.5277020000000014 18.5720980000000004 1.40192880000000009 0 0.550235750000000023 0.0293445589999999992 0.520891199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.770323128106014 -62.6224228483779015 22.8226104619146994 -12.4048222334703997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479273885160704 2505479273885160704 1607211216 2015.5 25.6857371793970017 0.0510318385934014976 -2.65452972102443008 0.0385127830567991991 4.86641809984604023 0.0546236956206710006 89.0898739999999947 36.4820829464353977 0.108734062193813 -10.522071367593 0.0801013801116828988 0.0888450739999999961 0.324097929999999979 -0.156943300000000008 0.0486691740000000025 0.0880432300000000001 0.0419766270000000025 -0.181875779999999987 0.0191422920000000017 0.0466278899999999982 0.0731311399999999973 151 151 145 6 15.411835 586.914001 0.119549695333700995 4.79188167053809977 31 true 49.4668599999999969 1.59417962331799989 0.0147841678747262003 -0.0491023059999999983 17 10 0.0644824950000000008 0 17 false 137 1796235.8428642801 513.042315434581951 3501.1499 10.0524570000000004 17 957460.283370043966 2879.5405682197802 332.504520000000014 10.3985859999999999 17 1180043.37730359007 1884.68285423756993 626.123050000000035 9.58217499999999944 1.18999049999999995 0 0.816410999999999998 0.346129420000000021 0.470281600000000022 40.1732210852089011 1.05443422116758989 5 5750 4.5 0 NOT_AVAILABLE 151.759801112430011 -62.6190045537736992 22.821789047642401 -12.3989523420653995 100001 5803 5704 5909.16992 \N \N \N \N \N \N 200111 1.71096110000000001 1.65003370000000005 1.7708682 2.99078540000000004 2.9456500000000001 3.03592059999999986 +1635721458409799680 Gaia DR2 2505479587417922560 2505479587417922560 549742391 2015.5 25.6736209756417004 0.108256427794672996 -2.6279354187300501 0.0789692128898373952 3.75180248171627984 0.115671606809111996 32.4349479999999986 -9.37206551654893083 0.246928989874547006 -28.1601828951092017 0.15329291060014999 0.048441175000000003 0.224792380000000014 -0.126679550000000002 0.103101470000000001 -0.0897944999999999993 0.103612640000000006 0.115738199999999999 -0.0154085969999999996 0.0827960799999999941 0.0638144540000000066 160 0 160 0 1.72575349999999994 186.658005 0.271586442556291996 1.14273577879174004 31 false 1.67487169999999996 1.1967496099528101 0.0276367321220430985 -0.0877286339999999998 18 10 0.222009910000000005 0 18 false 160 1894.34904020457998 3.00959517785000985 629.437012 17.4947170000000014 16 328.170480259857015 8.41877991790619973 38.9807660000000027 19.0611400000000017 17 2571.86369946783998 11.8872098329056008 216.355549999999994 16.2363 1.53088690000000005 0 2.82484050000000009 1.56642339999999991 1.25841709999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.711225275146006 -62.6001805603058017 22.8202556204632003 -12.3697717950743993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480923156454656 2505480923156454656 1586593654 2015.5 25.6887376765315985 1.50664559295299005 -2.5868728614275498 1.54372539521707997 \N \N \N \N \N \N \N -0.0582751859999999997 \N \N \N \N \N \N \N \N \N 68 0 67 1 1.91886350000000006 85.0903015 4.20526053027900026 2.75128346426743997 3 false 0.017026676000000001 \N \N 0.0160463820000000014 9 6 6.29673049999999979 0 9 false 69 83.8016021787381931 1.42351774916265006 58.8694 20.880236 5 71.6832022861534028 14.6190420653347992 4.90341330000000042 20.7128450000000015 6 80.3238116276631047 18.0065498480187998 4.46081069999999968 19.9998100000000001 1.81389149999999999 0 0.713035599999999992 -0.167390819999999996 0.880426400000000053 \N \N 0 \N \N \N NOT_AVAILABLE 151.702608823383002 -62.5566095959094 22.8500623660060995 -12.3371160423170991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479961083782400 2505479961083782400 529047568 2015.5 25.6908529139205015 1.14985621423378004 -2.62358936206442017 1.16134896863942005 0.957572216198899984 1.37517129950156991 0.696329399999999987 5.5300017253611502 2.64620143116359996 -0.852662725917733955 3.49169733033004004 0.0946473260000000038 0.318672630000000012 -0.296249749999999978 -0.0016573534 -0.220954850000000008 -0.0635887759999999996 -0.344750400000000012 0.0439622139999999995 -0.0790626700000000016 0.473914300000000011 89 0 86 3 0.70513720000000002 89.5955963 2.01779947527775017 1.15947977823019999 31 false 0.0239884780000000006 1.44524170807282992 0.318588348296638013 0.0853000200000000042 10 8 3.37832469999999985 0 11 false 89 89.9511664291947 1.27439964691054008 70.5831985 20.8033490000000008 7 80.2473256256807019 7.59411021974144962 10.5670479999999998 20.5903109999999998 8 67.4517756469049061 6.07366834131823019 11.1056069999999991 20.1894360000000006 1.64199209999999995 0 0.400875099999999984 -0.213037489999999996 0.61391260000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.740953197347011 -62.5888680955605992 22.8382818448546985 -12.3720465306678005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479759216614272 2505479759216614272 1023548753 2015.5 25.6983916190256991 0.0379095005328285023 -2.62463000582823991 0.0245358184616760004 1.97762599319475996 0.0348542182090844019 56.7399330000000006 -2.92400139177301011 0.0840834081468831013 -8.39236966692813979 0.0500739692137862 -0.0950425039999999999 0.211137849999999988 -0.537714600000000043 0.195102899999999996 0.16549317999999999 0.26249699999999998 -0.293285399999999974 0.226040629999999992 -0.0443599819999999992 -0.106817739999999994 154 90 153 1 4.02450560000000035 227.710007 0 0 31 true 166.679100000000005 1.62342040113299002 0.00846780190283409964 -0.0405862780000000034 18 10 0.0683230459999999984 0 18 false 149 126338.900893255995 48.9911467887867005 2578.81006 12.9345230000000004 16 71057.1738900314958 87.6746727195905038 810.46410000000003 13.2223679999999995 16 80703.4184999293939 106.733230484196994 756.122700000000009 12.4946900000000003 1.20121820000000001 0 0.7276783 0.287845599999999979 0.439832700000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.756696232155008 -62.5865739061051016 22.8450628865480994 -12.3757781389232004 100001 6340.66992 5978.72998 6766 0.0340000018 0.00439999998 0.105999999 0.0167999994 0.00260000001 0.0640999973 200111 0.926990300000000045 0.814106100000000055 1.04262159999999993 1.25136709999999995 1.21257670000000006 1.29015740000000001 +1635721458409799680 Gaia DR2 2505432510280793856 2505432510280793856 691213882 2015.5 25.7484444538740007 6.77629228603490041 -2.65861547476748994 8.26176718429186074 \N \N \N \N \N \N \N 0.800626159999999976 \N \N \N \N \N \N \N \N \N 44 0 44 0 26.5025769999999987 1047.58997 16.5492044113388985 98.3051704551404981 3 false 0.00338052260000000016 \N \N 0.299340200000000001 7 7 16.1234840000000013 0 9 true 59 181.591204069366995 3.23086841588244988 56.205101 20.0406280000000017 5 259.927371148471991 15.6184230190145996 16.6423570000000005 19.3142589999999998 4 456.978310709880986 5.96176733318255003 76.6514800000000065 18.1121799999999986 3.94790980000000014 0 1.20207789999999992 -0.726369860000000034 1.92844769999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.88651263719899 -62.595728485332998 22.8799185709389015 -12.4257389854801001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432716439226112 2505432716439226112 1548429971 2015.5 25.7442804296373993 0.0771653427149953941 -2.64613308807366998 0.0515522103999025982 0.638287041085168982 0.0717304282122139952 8.89841400000000071 3.09488596098651003 0.183898381030562996 -2.68031733609833989 0.113421051373611997 -0.0635103060000000025 0.116013610000000003 -0.486404700000000023 0.150974749999999991 -0.0463393260000000001 0.18079342000000001 -0.124806449999999999 0.187925530000000007 -0.0109430810000000003 0.00837396399999999937 157 0 156 1 0.316849829999999999 155.891006 0 0 31 true 4.3388460000000002 1.51147393967633992 0.0183322196445112016 -0.0290052979999999988 18 10 0.175557419999999992 0 18 false 152 4090.06029003956019 3.62946144024434014 1126.91003 16.6590419999999995 14 1953.79974789517996 10.3231464554023002 189.263980000000004 17.1241869999999992 14 3122.02156201457001 9.53113737114895976 327.560240000000022 16.0258299999999991 1.24101379999999994 0 1.09835820000000006 0.465145099999999978 0.633213040000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.866668061972007 -62.5862596223835013 22.8806455053103015 -12.4126009509473008 100001 5025.56982 4904.22998 5261.66992 0.187000006 0.147300005 0.396699995 0.104000002 0.0759000033 0.200499997 200111 0.870432560000000022 0.794069699999999989 0.914037800000000011 0.435417979999999982 0.332334899999999989 0.538501099999999955 +1635721458409799680 Gaia DR2 2505479789282781696 2505479789282781696 236950975 2015.5 25.7095523167178008 1.83162240588587011 -2.62634941113008002 0.972682600573314016 \N \N \N \N \N \N \N -0.269268899999999978 \N \N \N \N \N \N \N \N \N 100 0 99 1 -0.39743233 88.0157013 0 0 3 false 0.0263229809999999988 \N \N -0.0984839299999999973 12 7 4.96058999999999983 0 12 false 100 97.1250368700483051 1.20526133354385001 80.584198 20.7200370000000014 6 55.3815464105147015 10.2430907589192994 5.40672200000000025 20.9929750000000013 8 119.007217077464006 3.18404760727294001 37.3760800000000017 19.5729870000000012 1.79550779999999999 0 1.41998859999999993 0.272937770000000024 1.14705089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.780165522381992 -62.5833357269926012 22.855035039082999 -12.3814686804497995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432892533480576 2505432892533480576 1389448612 2015.5 25.7403443185219984 0.396968620274481987 -2.63555620880912 0.345810834807506018 1.13735957686026001 0.453578726351466011 2.50752400000000009 -7.17996993555929031 0.913447670988093985 -16.4103443725509983 0.625436298701693039 0.19274092000000001 0.204374489999999992 -0.189014939999999992 0.144491060000000004 -0.116637975000000005 0.0945689599999999936 0.268765330000000024 0.0810325499999999949 0.102988940000000001 0.133603200000000005 165 0 165 0 -0.383358360000000009 152.593002 0 0 31 false 0.104660030000000001 1.32789248570820995 0.105482239692863994 -0.036714666 19 10 0.812305330000000048 0 20 false 166 217.609969077708001 1.26737430902560999 171.701004 19.8441699999999983 13 74.7606136749205064 6.10082205597381044 12.2541869999999999 20.6672060000000002 14 279.123346267514023 11.1560938875190008 25.0198099999999997 18.6474299999999999 1.62623049999999991 0 2.01977539999999989 0.823036199999999996 1.19673919999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.84906449331001 -62.5784095524660984 22.8808733755928984 -12.4013190660221007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432892533480192 2505432892533480192 209024923 2015.5 25.7398930751954005 0.0407046729984616024 -2.62787998552711999 0.0230218388868310003 3.79675503223705002 0.0344690937121927971 110.149540000000002 73.7456989549336015 0.0832656758915697043 3.44447252831131978 0.0463886837131854968 -0.198176219999999986 0.303009479999999998 -0.471460040000000025 0.218554899999999996 -0.0229895950000000016 0.259844120000000012 -0.200548260000000006 0.107272803999999999 0.047947484999999998 -0.0820484999999999964 132 0 132 0 -1.0506046 110.373001 0 0 31 false 41.2040819999999997 1.46338377739108005 0.0088695953045600795 -0.156887560000000009 15 9 0.0899826400000000026 0 16 false 133 32166.2173730838003 12.9305207592668996 2487.62012 14.4198660000000007 16 12009.2442284553999 23.8244527318293997 504.072200000000009 15.1525990000000004 16 29194.2686245240984 46.0867713254340003 633.463100000000054 13.5986759999999993 1.28095610000000004 0 1.55392360000000007 0.732733700000000043 0.821189900000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.841002327729001 -62.5716761418920981 22.8833273741892995 -12.3940126941336004 100001 4352.6001 4220.74023 4529.58008 0.301800013 0.189700007 0.662999988 0.171299994 0.0847000033 0.345999986 200111 0.610733199999999976 0.563940600000000014 0.649488329999999947 0.120612380000000005 0.118038415999999993 0.12318635 +1635721458409799680 Gaia DR2 2505431685647444608 2505431685647444608 1154811116 2015.5 25.7708584391347983 0.778587773645570969 -2.67475665098442006 0.73586877307927101 2.43263626508325981 0.902799043621919983 2.69454899999999986 5.99459285243324036 2.17331906994371993 -33.9827541357551013 1.94122040660869 0.28485385000000002 -0.111789680000000002 0.191847430000000013 -0.230148569999999997 -0.0358109500000000011 -0.181166860000000013 -0.34290290000000001 -0.32990214000000001 0.189703790000000011 0.175042749999999997 122 0 121 1 -0.922061259999999994 101.902 0 0 31 false 0.0354761300000000016 1.43678002703238006 0.233363796474437002 -0.100858169999999997 14 8 2.00125799999999998 0 14 false 122 111.165953606265006 1.59148465521275995 69.850502 20.5734369999999984 11 41.3180057075508032 10.0492663512512994 4.11154460000000022 21.311039000000001 13 187.606345600548991 10.8836398660764999 17.2374630000000018 19.0788019999999996 2.05930280000000021 0 2.23223690000000019 0.737602230000000025 1.49463459999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.945535975922013 -62.6006216730228005 22.8951839508438013 -12.4489685830452999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432441561315840 2505432441561315840 968081363 2015.5 25.7679711945886005 0.476533849268565013 -2.66830960467160994 0.389883855667048973 0.393543281792789024 0.541264623331223049 0.727081100000000036 13.165683614053 1.14642899985477009 0.255712290636673001 0.731416278656335961 0.148194939999999997 0.151272479999999987 -0.0677612900000000018 0.0893926500000000041 -0.100488869999999994 0.0597536399999999968 0.216038179999999996 -0.0365434899999999979 0.127034050000000009 0.0708508999999999944 159 0 158 1 2.31302260000000004 196.345001 1.27258447787531992 1.22018064107860003 31 false 0.0753545099999999995 1.5057890275738699 0.131593695608673011 -0.0857632700000000026 18 10 1.00765229999999995 0 18 false 157 199.235857729451993 1.23252671396222002 161.647995 19.9399470000000001 17 93.0916067266793021 6.93910874353079965 13.4154990000000005 20.4291109999999989 17 200.035291014671998 10.0958996568343995 19.8135189999999994 19.0091530000000013 1.4712558 0 1.41995809999999989 0.489164350000000026 0.930793760000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.933831984067012 -62.5960534837600022 22.8948582829865011 -12.4419129935489998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432544640883456 2505432544640883456 25798674 2015.5 25.7733353682783992 0.794382591498496993 -2.65163232842889984 0.779307228434039989 2.31709196313110022 0.874178247512650053 2.65059449999999996 10.9792839343914004 1.84497739858616994 12.5986332714376008 1.96645538066692005 0.254960330000000013 0.259436940000000005 -0.220655739999999989 -0.0457988159999999991 -0.0294978190000000015 -0.0600447399999999992 -0.259746670000000013 0.0499186029999999989 0.0193325370000000003 0.325076069999999995 135 0 134 1 6.12244800000000033 253.399994 3.36502367691295978 4.45132823692117974 31 false 0.0289987080000000015 1.31620305468651 0.242187999715474001 0.00635661319999999974 16 9 1.93984620000000008 0 16 false 137 135.862059102448995 1.17509236736417999 115.617996 20.3556199999999983 11 21.0650239561405996 5.41565574771242009 3.88965339999999982 22.0424819999999997 15 216.213625913980991 12.0127665533157 17.9986530000000009 18.9247130000000006 1.7464674 0 3.11776920000000013 1.686863 1.43090629999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.928682790982009 -62.5786976813252025 22.9062274296762993 -12.4283638255297006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464123163572608 2481464123163572608 439574565 2015.5 25.4904234113529 0.0331747014873721019 -2.61899523965518011 0.0243195174822002994 0.805870947036510965 0.0362588079748583023 22.225522999999999 9.69682741335273946 0.0733758677912910023 -10.8987569148409005 0.0494576660300247023 0.057741538000000002 0.20183994999999999 -0.315082069999999992 0.114592715999999997 0.00594464220000000005 0.15097445000000001 -0.155808819999999987 0.100109580000000004 -0.00657426150000000025 0.124425075999999996 123 0 123 0 -0.921156470000000005 103.793999 0 0 31 true 44.1841099999999969 1.60597892538175002 0.00925193177618401086 0.0263105219999999994 14 8 0.0764448640000000013 0 14 false 121 34931.6093968265995 11.0771583881907993 3153.47998 14.3303189999999994 13 19256.3129681961 43.3741941069274972 443.957820000000027 14.6399554999999992 11 22916.9409923118983 38.2156515819376992 599.674200000000042 13.8615279999999998 1.20730920000000008 0 0.778427100000000038 0.309636120000000015 0.468791000000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.342804471834 -62.6701295540002974 22.6493790834276005 -12.2942464900038999 100001 5847.16016 5339.91016 6139.12012 0.321700007 0.0562000014 0.531400025 0.160699993 0.0469000004 0.290399998 200111 1.41739890000000002 1.28579249999999989 1.69947720000000002 2.11572670000000018 1.89437649999999991 2.33707699999999985 +1635721458409799680 Gaia DR2 2481465291394676864 2481465291394676864 731454176 2015.5 25.5011467588394005 0.308639111153308998 -2.60102554323297008 0.248261092701588998 2.77134981872328989 0.359779359058160997 7.70291499999999996 6.90398793731151983 0.72137241378602901 11.0152265987078 0.442159549054728984 0.197370070000000009 0.153615969999999991 -0.128194239999999987 0.155533179999999993 -0.164806530000000007 0.1730516 0.250494779999999972 -0.0112489930000000005 0.0411092559999999968 0.195291490000000012 139 0 138 1 2.62325069999999982 179.718994 0.990710879134911959 2.33123599740182996 31 false 0.226444200000000012 1.2774293972125399 0.0813126097335668957 0.00792205699999999971 16 10 0.643260100000000001 0 16 false 138 426.720839278287997 1.47630697785020004 289.04599 19.1130069999999996 14 97.8569517068420964 8.44135473891902954 11.5925650000000005 20.3749080000000014 14 528.198095497264035 6.76392432505627017 78.0904799999999994 17.9549270000000014 1.46713019999999994 0 2.41998099999999994 1.26190190000000002 1.15807909999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.347342845871992 -62.6493132821969994 22.6663334072542995 -12.2814702512238991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464428105870208 2481464428105870208 1396711408 2015.5 25.5113487686815006 0.0839239827766534024 -2.61880263747841013 0.0590635418105767973 0.710153257560242945 0.0883721843088570019 8.03593599999999952 -11.3499423091524001 0.200253009217174011 -57.202353352322497 0.114539942167980996 0.0290436170000000007 0.0290114079999999989 -0.347386330000000021 0.161526260000000005 -0.144177119999999992 0.211506080000000013 0.0710649899999999946 0.105699070000000006 -0.0154521064999999999 0.109641520000000006 132 0 129 3 -0.56717519999999999 114.647003 0 0 31 false 4.07538100000000014 1.56834194866926002 0.0204328800290510017 -0.0313699169999999972 15 9 0.185770149999999995 0 15 false 127 3653.29384657488981 4.06602338205289016 898.492981 16.7816539999999996 14 1856.70812581613995 15.7061976853890997 118.215000000000003 17.1795299999999997 15 2571.54512404375009 13.2907290870432995 193.484129999999993 16.2364350000000002 1.21212629999999999 0 0.943094250000000023 0.397874830000000013 0.545219400000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.383851587396009 -62.6610884565252988 22.6693492143383999 -12.3017485000861999 100001 5413.75 5373.75 5514 0.108800001 0.0160000008 0.222299993 0.0590000004 0.00789999962 0.122100003 200111 0.617713029999999996 0.595455940000000017 0.626943299999999981 0.295298369999999977 0.219115360000000009 0.371481359999999983 +1635721458409799680 Gaia DR2 2481464428106124800 2481464428106124800 1199779703 2015.5 25.5097264737321012 0.706241305653677043 -2.61435722814503979 0.593100541672626047 7.14930017042459998 0.814500790343583025 8.77752399999999966 -24.4950011033504005 1.64789964986755999 -27.5137580924880005 1.1297028452283 0.17785630999999999 0.115035589999999993 -0.155844289999999996 0.154568840000000013 -0.127217019999999986 0.190398000000000012 0.148067730000000009 0.00325395029999999991 -5.04100969999999988e-05 0.203501480000000012 123 0 123 0 2.66008570000000022 162.936005 2.00380380889350995 1.80553275866701002 31 false 0.0444425700000000007 0.927123995818528002 0.18835597598850301 -0.0104471210000000002 14 9 1.4771472000000001 0 14 false 122 139.622303514616988 1.30438402919780994 107.041 20.3259800000000013 8 42.2490382616164979 13.0734011876643006 3.23167919999999986 21.2868460000000006 13 235.545544982769002 11.3680018001254997 20.7200489999999995 18.8317340000000009 1.98961469999999996 0 2.45511249999999981 0.960866899999999968 1.49424549999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.376548715272008 -62.6577510415110979 22.6694783067481005 -12.2970185834534007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465360113895552 2481465360113895552 113021014 2015.5 25.4926351980962984 0.709389388437223989 -2.58325958350232021 0.652243015092048961 2.38259538899725998 0.837235791179291033 2.84578780000000009 10.8515761085769995 1.49794231874353989 -10.1625399728752992 1.61520153093788998 0.261242719999999984 0.426623340000000018 -0.142382960000000003 -0.105948760000000003 -0.07337399 -0.161339499999999997 -0.398921430000000021 -0.0306928849999999996 0.00248748019999999988 0.458248529999999987 105 0 103 2 0.467400130000000025 103.995003 0 0 31 false 0.056961860000000003 1.37975881976574 0.226171274263814004 0.00835238999999999947 12 9 1.67250349999999992 0 12 false 103 135.599871437893 1.31074076563423003 103.453003 20.3577179999999984 7 52.6240896737623984 17.355728347541401 3.0320876000000001 21.0484280000000012 11 162.828102881331006 9.1723302719683506 17.7520980000000002 19.2325969999999984 1.58888199999999991 0 1.81583019999999995 0.690710069999999954 1.12512020000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.314201351531011 -62.6368237863402015 22.6649208418894013 -12.2618227931156998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464634264314624 2481464634264314624 875111811 2015.5 25.5215572144829999 0.406396040360621991 -2.59691623002917016 0.319170944849732019 0.21850465343220099 0.47284057243227301 0.462110640000000017 4.18086542296448993 0.887619232176940054 -0.362047026251800019 0.556803167368265961 0.210986570000000012 0.283602359999999998 -0.152844619999999987 0.118687390000000004 0.0250235099999999988 0.0446611749999999974 0.136758669999999999 0.0792029600000000028 0.210046010000000005 0.109199959999999999 126 0 124 2 0.78601960000000004 130.830994 0 0 31 false 0.143518800000000002 1.34796029089079994 0.109109311461336997 0.0340815449999999978 15 10 0.784842200000000045 0 15 false 122 246.99711051693501 1.50054471729386996 164.604996 19.7066359999999996 13 134.001429856854998 9.1223507017276404 14.6893530000000005 20.0336150000000011 12 146.637087103031007 7.08817773686925001 20.6875570000000018 19.346309999999999 1.13620159999999992 0 0.687305449999999984 0.326978680000000022 0.360326770000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.383729797640996 -62.6369428913292978 22.6872862972047002 -12.2851395167283002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464668624058880 2481464668624058880 635346099 2015.5 25.5256710227540005 0.381534167980045025 -2.58483970982464983 0.32469825897969401 1.04368340005254989 0.442363339945618994 2.35933519999999985 -1.13439641122335999 0.889035907902810951 -2.67418089339739984 0.569864624466800973 0.254743930000000007 0.163933460000000003 -0.0791030600000000028 0.166307719999999992 -0.104580980000000004 0.161970730000000007 0.271873770000000015 -0.0197719880000000008 0.0781512199999999935 0.197908880000000009 130 0 127 3 2.35206630000000017 161.746002 1.19314577026706004 2.18016900002282021 31 false 0.151730429999999999 1.68068750672601008 0.0992260457534085011 0.0289734840000000007 15 10 0.792974500000000027 0 15 false 127 333.246850989445988 1.91144386620191997 174.343002 19.381450000000001 14 217.261275589196998 4.87100476294263007 44.6029699999999991 19.5089320000000015 15 186.445251341230005 5.71453466470418991 32.6265000000000001 19.0855400000000017 1.21143390000000006 0 0.423391340000000005 0.127481459999999991 0.295909880000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.38067488384101 -62.6242638228733028 22.6957384045543016 -12.2754171285804006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464256309163648 2481464256309163648 1209718176 2015.5 25.5357292678632 0.991593505419384957 -2.62083760857523007 1.17371316475921006 3.07083441762609022 1.05074462386463008 2.92253160000000012 55.6922834120287007 2.27690708166597 37.3767087361489985 2.6518447587468601 0.553773639999999956 0.268396560000000006 -0.166740570000000005 -0.141534450000000006 0.0515126919999999988 -0.142781540000000012 -0.310875000000000012 -0.0167206639999999997 0.00405441550000000019 0.560968000000000022 93 0 92 1 0.812120799999999976 97.4375992 0.870697183769545968 0.229461807347272007 31 false 0.0303626489999999985 1.01869782078974991 0.334387789437644023 0.138810719999999999 11 9 2.74774239999999992 0 11 false 93 93.897683731093494 1.32625312267735995 70.799202 20.756730000000001 8 27.1142237328704994 7.14163829756532031 3.79663919999999999 21.7683940000000007 10 137.212502013961995 5.24314427176603992 26.1698899999999988 19.4184359999999998 1.75006149999999994 0 2.34995839999999978 1.01166529999999999 1.33829310000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.433735887607014 -62.6525848331724973 22.6917684804366004 -12.3125891962741996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464569839912192 2481464569839912192 826027481 2015.5 25.5344812189675991 0.815274911849912964 -2.60432074672324987 0.883475210895175 0.349782812320687975 0.94225732441615595 0.371217940000000024 0.923623512396779978 2.07267527998930001 3.06941080976851 2.4318473353166099 0.38126597000000001 0.174606860000000003 -0.11390894 -0.126832649999999991 -0.0582325299999999976 -0.14136375000000001 -0.30327672 -0.102438749999999995 -0.0201116040000000017 0.482089969999999979 95 0 95 0 1.51607080000000005 111.141998 2.25517932932462006 1.57582326917877991 31 false 0.0369328670000000012 1.79814072045024997 0.255147855346258001 0.0786389900000000058 11 9 2.44322319999999982 0 11 false 94 116.657332125245006 1.14837906012088009 101.584 20.5210860000000004 6 78.9679777144721982 19.6315122624298013 4.02251099999999973 20.607761 8 84.3835189935551 12.8014333572681007 6.59172440000000037 19.946276000000001 1.40026769999999989 0 0.661485699999999954 0.0866756439999999961 0.574810000000000043 \N \N 0 \N \N \N NOT_AVAILABLE 151.416002577439997 -62.6381638491249007 22.6967919631191002 -12.2967692144263996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464325026740352 2481464325026740352 1148973461 2015.5 25.5630604505996999 0.845810765504972029 -2.61627820154552992 1.02128750989274009 -0.166609210002311992 1.02432405015715 -0.162652839999999993 1.5142474466009499 2.63177047448875978 -11.6754447002989998 3.83987907191376987 0.474483070000000007 0.0790681599999999984 0.0386663750000000028 0.040344060000000001 -0.144727839999999996 0.102938760000000004 0.0982841400000000059 -0.319732550000000004 -0.270144249999999975 0.692692940000000035 77 0 76 1 0.222524329999999992 73.0036011 0 0 31 false 0.0415278150000000026 1.46161684354318 0.303157443134497995 0.205233100000000002 9 8 3.81141329999999989 0 9 false 76 104.347388060135003 1.27753380010005002 81.6788025 20.642161999999999 7 69.3639847935641001 12.8570391056898004 5.3950199999999997 20.7485520000000001 8 85.3638775495652027 11.552083940767 7.38947869999999973 19.9337349999999986 1.48281489999999994 0 0.814817400000000025 0.106389999999999998 0.70842740000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.48328510857101 -62.6368421671043976 22.7194747823867012 -12.3183776995469998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484634004354816 2505484634004354816 113065870 2015.5 25.523980663847901 0.134129612529677006 -2.56630321640460002 0.107518673954612995 0.470587441091609993 0.156143875938703991 3.01380660000000011 -1.67388439511456011 0.317306932848531009 -6.53430578583263966 0.204244007904562014 0.163507220000000009 0.150676370000000004 -0.103208750000000002 0.112780414999999995 -0.166136000000000006 0.131826200000000004 0.173811359999999998 -0.0428257439999999989 0.0383504780000000003 0.177917500000000006 139 0 137 2 0.658916649999999993 142.296005 0 0 31 true 1.17529609999999995 1.62849140765860989 0.0357685340115362974 0.00921965100000000058 16 10 0.285173400000000021 0 16 false 136 1256.12925546230008 2.28498468726942017 549.731995 17.9407800000000002 15 592.791733820301033 11.5212826702040001 51.4518849999999972 18.4191320000000012 15 967.311596694780974 9.25751480420128914 104.489339999999999 17.2980039999999988 1.24199269999999995 0 1.12112809999999996 0.478351599999999988 0.642776499999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.360252270039013 -62.6081946541014034 22.7010993942546015 -12.2575562714067008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465772431013120 2481465772431013120 1007229479 2015.5 25.4880212210646988 0.0675203370224535943 -2.54612587973266002 0.0662112591381145005 0.790375231763252972 0.0815817643930629027 9.68813600000000008 10.4371925838186002 0.177602997839347992 2.81204847828914017 0.126616603378153003 0.302679870000000018 -0.0228805189999999985 0.0494031570000000031 0.252691329999999992 -0.360144560000000002 0.350935219999999992 0.4847244 -0.237277220000000011 -0.220410269999999991 0.364680769999999987 112 0 110 2 0.272164640000000013 108.311996 0.0472737682180828997 0.0808653762434130979 31 false 6.53388930000000023 1.5419979025211501 0.0193635119865778992 0.0526525529999999978 13 9 0.175188740000000009 0 14 false 117 5662.33594741185971 5.95285729246093975 951.195984 16.3058760000000014 13 2737.06539328171993 7.88699782283883977 347.035129999999981 16.7581750000000014 11 4245.90418062339995 11.4642714149312006 370.359699999999975 15.6919950000000004 1.23323120000000008 1 1.06618020000000002 0.452299119999999999 0.613881099999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.270948831320993 -62.6051296749179969 22.6744950738580009 -12.2255927673756002 100002 5121 4996.45996 5591.27979 \N \N \N \N \N \N 200111 0.789161400000000013 0.661991699999999961 0.828990800000000028 0.385873970000000011 0.302842600000000017 0.468905359999999993 +1635721458409799680 Gaia DR2 2505480510835746560 2505480510835746560 1313273748 2015.5 25.5985594377730017 0.285443809660948011 -2.61471888235013017 0.22587247695610399 1.68380752561436009 0.328771919329747975 5.1215067000000003 13.1980581199608 0.736387589932347986 -4.26761773328818972 0.39859498376423802 0.269916449999999974 0.0322549899999999973 0.204035820000000007 0.219068499999999999 -0.117811529999999998 0.270282240000000007 0.373391570000000006 -0.307694579999999995 -0.0214553619999999987 0.208247769999999999 129 0 129 0 2.90429190000000004 174.751007 0.897458891561873973 2.61780820678934978 31 false 0.302814199999999978 1.28026845175164006 0.068179684930827697 -0.040210362999999999 15 9 0.664132399999999956 0 15 false 128 575.503218823030011 1.60046395723358992 359.584991 18.7882460000000009 12 126.881818775089997 14.8345552529588005 8.55312600000000067 20.0928900000000006 12 753.633605835745016 12.7798786750978 58.9703250000000025 17.5690199999999983 1.52999219999999991 0 2.52387050000000013 1.3046435999999999 1.21922679999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.551612471187013 -62.6203149873107989 22.7538229926501003 -12.3299507182764998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480618210073088 2505480618210073088 1012381777 2015.5 25.6045101219539006 0.0770539300824013978 -2.60268760556590983 0.0614071625268541033 0.388867772856608007 0.0844215005334135044 4.60626460000000026 -0.866934863520690047 0.179452162986221991 -3.19750333017723998 0.119450284289657996 0.151329519999999995 0.212493700000000008 -0.104838680000000004 0.178619799999999995 -0.0995984300000000017 0.241979329999999992 0.245999169999999989 -0.0786850699999999958 -0.0552370000000000014 0.201908279999999996 141 0 140 1 -0.0456257499999999996 133.589005 0 8.64845076549420973e-16 31 false 3.84521580000000007 1.53232825749926005 0.0197736537589239016 -0.0151212699999999992 16 10 0.167107389999999995 0 16 false 140 3509.79436598887014 3.25551739268076012 1078.10999 16.8251610000000014 12 1805.60652359064011 14.1461779033715995 127.639174999999994 17.2098310000000012 13 2491.67442349840985 16.6609002495770007 149.552220000000005 16.2706899999999983 1.22436830000000008 0 0.939140300000000039 0.384670259999999986 0.554470059999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.552138084473995 -62.6068974446515014 22.7640046750500993 -12.3209426091642005 100001 5242.87012 5162.6001 5524 0.412999988 0.196899995 0.560100019 0.203999996 0.104000002 0.26879999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480613915019648 2505480613915019648 295249924 2015.5 25.6048073134051002 2.85838324457479009 -2.6007974995174199 1.53500321236232007 \N \N \N \N \N \N \N -0.50298149999999997 \N \N \N \N \N \N \N \N \N 78 0 78 0 4.09162430000000032 133.440994 3.93150609435654008 1.7634437983276301 3 false 0.0136577160000000003 \N \N -0.228143740000000012 9 6 6.6104813 0 9 false 78 87.6837529371833995 1.51330977427591007 57.9417 20.8310679999999984 5 68.5445795509303935 4.66473351451976992 14.6942109999999992 20.761455999999999 6 74.9852761180802929 6.75963203956070036 11.0931010000000008 20.0744800000000012 1.6369035999999999 0 0.686975499999999961 -0.0696124999999999938 0.756588000000000038 \N \N 0 \N \N \N NOT_AVAILABLE 151.550968609333012 -62.6050613870789974 22.7649976821186009 -12.3192935269041008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480652569811328 2505480652569811328 744114799 2015.5 25.6157871488154996 2.46835132619162989 -2.59898764342674982 1.65622810675614995 \N \N \N \N \N \N \N -0.0271280329999999993 \N \N \N \N \N \N \N \N \N 96 0 94 2 40.3493229999999983 2436.09009 11.7072165878532992 161.927448440668002 3 false 0.0067988930000000003 \N \N -0.078471794999999997 15 10 4.78571800000000014 0 15 false 132 338.491022921007016 5.55635566787941038 60.9196014 19.3644980000000011 12 486.776045999115979 20.3680413050099993 23.899011999999999 18.633064000000001 12 1074.6258728764999 32.2764668376198998 33.2944069999999996 17.1837769999999992 4.6128309999999999 0 1.4492874 -0.731433870000000042 2.18072130000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.570844839605002 -62.5987426263263984 22.7761208462287001 -12.3216372004782997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483568852463232 2505483568852463232 906063955 2015.5 25.5895012783787017 0.442366980545431998 -2.58901824045522 0.387361352395162006 1.71960887562421005 0.505677426966081978 3.40060450000000003 12.3134367885177003 1.03396894388373006 -10.9940764177194996 0.714208619650114951 0.252170300000000014 0.20714492000000001 -0.0216237770000000003 0.193370280000000005 -0.0744358400000000031 0.216387099999999999 0.334564479999999997 -0.0998375299999999938 -0.00383871719999999981 0.215221660000000009 138 0 137 1 3.88849039999999979 204.901993 1.43613651325617009 2.08925096566881008 31 false 0.10298744 1.41356765385965999 0.120240278813479998 -0.015239219 16 10 0.931681450000000022 0 16 false 137 259.128941805483009 1.25363874319971003 206.701004 19.6545750000000012 14 56.7084422827035013 8.34482815232023967 6.79563950000000006 20.9672680000000007 15 344.637480914634978 6.31844581888851042 54.5446600000000004 18.4185139999999983 1.54882699999999995 0 2.54875369999999979 1.3126926000000001 1.23606109999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.509996319363012 -62.6009274340177981 22.7548675384531016 -12.3027227413559004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480716994178304 2505480716994178304 240241520 2015.5 25.6050603430410995 0.250351850605725013 -2.59220169397858013 0.219054056168669992 3.48033080466188016 0.286393028342844025 12.1522880000000004 15.0767302394711997 0.529953419455257979 6.47995103135532968 0.381250793914291009 0.289826570000000006 0.345361050000000003 -0.105008180000000007 0.230156539999999993 -0.00492459949999999973 0.240871400000000013 0.366026399999999974 0.0105885920000000008 0.0332112999999999992 0.240418080000000006 137 0 137 0 1.1186503000000001 150.294998 0.372933830502612973 0.426971042304322979 31 false 0.358646699999999985 1.22476510491421009 0.0604407579603788991 0.0585254430000000034 16 9 0.484280939999999993 0 16 false 137 523.90488554184401 1.65341847440449996 316.862 18.8902339999999995 13 112.220015486603003 9.04628248212788932 12.4050969999999996 20.2262120000000003 14 710.560124011622975 8.33772193123627048 85.2223359999999985 17.6329169999999991 1.5704762000000001 0 2.59329410000000005 1.3359776000000001 1.25731660000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.543495430228006 -62.5971794540587965 22.7684687277969999 -12.3113908868382005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480721289287936 2505480721289287936 747852674 2015.5 25.6114131175383015 2.37177595623229998 -2.58752600118917009 1.59086009134572004 \N \N \N \N \N \N \N -0.0621538300000000002 \N \N \N \N \N \N \N \N \N 125 0 125 0 46.1143569999999983 3183.92993 12.5146686052834006 194.27103622968599 3 false 0.00609187040000000023 \N \N -0.0530027929999999994 17 10 4.90232940000000017 0 17 false 150 318.517338728036009 4.74424056637013969 67.1377029 19.4305319999999995 16 433.381480768797985 9.35464046714569086 46.3279700000000005 18.7592120000000016 16 894.797014138660984 17.1497900332659015 52.1753920000000022 17.3826080000000012 4.16987799999999975 0 1.3766041 -0.671319960000000049 2.04792400000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.551630563360987 -62.5902429152222979 22.7762677945069001 -12.3093717361741 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480407758008064 2505480407758008064 1099297210 2015.5 25.6506559364866007 0.909550365711114028 -2.60808354458331992 0.983347343296901988 3.18304991098003009 1.14824316363628998 2.77210450000000019 28.0119313885750998 3.03020044448135994 -16.7115672887352993 3.85345237358463999 0.388335939999999991 -0.039373184999999998 0.047126345 0.069438150000000004 -0.25026219999999999 0.113625959999999998 0.0594394649999999969 -0.354511469999999995 -0.324746160000000006 0.67751634000000005 92 0 91 1 0.664640070000000027 94.3038025 0 0 31 false 0.0302398019999999997 0.482453049315568983 0.316316604005063007 0.0678965750000000007 12 8 3.97036839999999991 0 12 false 97 86.4234369239017042 1.44030932476654994 60.0033989 20.8467860000000016 7 43.3002811331771014 9.38449757069306933 4.61402230000000024 21.2601599999999991 11 141.263153276725006 6.2917337182209403 22.4521830000000016 19.3868480000000005 2.13557150000000018 0 1.87331200000000009 0.41337394999999999 1.45993799999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.64770758921 -62.5920734245163999 22.8058690073513013 -12.3428851302567999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480854434608640 2505480854434608640 854007790 2015.5 25.6524664582319986 2.80665388882795019 -2.60184367404034989 1.50245003205542993 \N \N \N \N \N \N \N -0.363629199999999986 \N \N \N \N \N \N \N \N \N 75 0 75 0 0.795103849999999945 79.1100006 2.35451980314915987 0.546205785045908998 3 false 0.0159994359999999988 \N \N -0.142228259999999995 10 7 7.24537039999999966 0 10 false 76 70.8574171082222932 1.33324881020295005 53.1464005 21.0624029999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.645456596441988 -62.5856599000964025 22.809935743206001 -12.3377446774193995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480751355360256 2505480751355360256 1144472927 2015.5 25.6203616167892996 1.2873667247057401 -2.58596805489439019 2.02614937179099996 \N \N \N \N \N \N \N 0.600948040000000017 \N \N \N \N \N \N \N \N \N 81 0 80 1 0.437459739999999986 79.7895966 0 0 3 false 0.0284614200000000012 \N \N 0.250611870000000014 10 6 5.91787960000000002 0 10 false 81 86.7953594402955986 1.20776615102196994 71.8644028 20.8421249999999993 7 41.2679702176469974 10.1099154356688992 4.08192999999999984 21.3123550000000002 7 108.238270606737004 10.1456131926570006 10.6684800000000006 19.675968000000001 1.72251430000000005 0 1.63638689999999998 0.470230099999999984 1.16615679999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.56774535099899 -62.5850183067966981 22.7853640685430996 -12.3112044167775991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484084249980416 2505484084249980416 394708674 2015.5 25.6186661768698016 1.64142202514061997 -2.57204061693794994 1.40175437111085999 2.69900939181479016 1.83977941562413005 1.46702890000000008 6.64828978364526968 3.75810728967846996 -11.8799737227272999 3.85728209597540994 0.098235900000000001 0.274623899999999976 -0.184364269999999997 0.0830527999999999961 -0.00359637450000000001 0.144204840000000001 -0.086298669999999994 -0.0904300100000000051 -0.233440010000000003 0.263239349999999983 118 0 117 1 16.6513160000000013 589.737976 8.89207718105271994 20.417366141543301 31 false 0.00842211999999999995 1.1886540620771 0.423426006879684014 0.0617867600000000031 14 9 3.76252800000000009 0 14 false 118 104.566695614048001 1.53285896431409996 68.2167969 20.6398830000000011 11 41.0780285026627965 7.87741496574065003 5.21465829999999997 21.3173640000000013 10 158.136422479118011 6.84491511887615012 23.1027580000000015 19.2643400000000007 1.9051423999999999 0 2.05302430000000014 0.677480700000000047 1.37554360000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.551510644791989 -62.5731462966439977 22.7889845605789993 -12.2976276149671992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481133606148096 2505481133606148096 886184405 2015.5 25.6268112795006999 2.74818173615680017 -2.57304903931516993 2.31165687028829003 \N \N \N \N \N \N \N 0.144706730000000006 \N \N \N \N \N \N \N \N \N 83 0 83 0 62.1546129999999977 6265.4502 13.3274898316605999 337.044111721453021 3 false 0.00519576860000000012 \N \N 0.0880313300000000049 16 10 5.28915100000000038 0 17 false 142 500.349731334140017 5.86248010039786038 85.3478012 18.9401820000000001 16 705.596392444021035 23.0167474633612983 30.6557829999999996 18.2299979999999984 16 1559.03739455032996 14.3291150601500004 108.802070000000001 16.7797799999999988 4.52610159999999961 0 1.4502181999999999 -0.710184099999999985 2.16040229999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.568419542794004 -62.5705850657260001 22.7963523291143986 -12.301552573295 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481129311040128 2505481129311040128 1275064674 2015.5 25.6340161972883998 0.716303583545365052 -2.57706163862226001 0.818331148716133994 0.217760611853968999 0.780699652430279945 0.278930069999999974 1.05286810352030002 1.42808809319098007 -2.75261414968960993 1.40317701302532005 0.555800399999999972 0.380033730000000014 0.00814145399999999936 0.23774286 0.162067319999999987 0.177798800000000007 0.323313149999999994 0.0242193490000000011 0.1051874 0.378929879999999997 120 0 120 0 1.55845030000000007 139.531006 0 0 31 false 0.0470978540000000015 1.33034616173508002 0.210127964324708011 0.12986666999999999 14 9 1.49662669999999998 0 14 false 120 127.790554852073996 1.24360267261008994 102.758003 20.4221199999999996 11 47.7411375230442019 6.94662446691116031 6.87256599999999995 21.1541560000000004 9 165.810971778472009 7.88729888785323041 21.0225299999999997 19.2128869999999985 1.67111030000000005 0 1.94126890000000007 0.732036600000000037 1.20923230000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.586267990463995 -62.5711393384599006 22.8016974160962995 -12.3079271006679001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484152968018816 2505484152968018816 1229848241 2015.5 25.6127517723827012 0.340336095875950984 -2.56089612613539019 0.29096954546720899 -0.444902040689067024 0.366410876971596022 -1.21421620000000008 24.2728302490756995 0.785244634196681002 -7.45442320159437966 0.516639202519428964 0.163221780000000011 0.178508119999999992 -0.258307750000000003 0.239319850000000001 -0.0250084850000000004 0.284568549999999976 0.332238140000000015 0.0888020550000000047 -0.0130890499999999996 0.148943330000000013 140 0 138 2 1.55949950000000004 159.337006 0.881133870644143946 1.34438573734798994 31 false 0.188498899999999997 1.5856376424690799 0.0835923913137844032 0.00481333540000000032 16 9 0.706936200000000015 0 16 false 139 375.256413784338974 1.44626005822362003 259.46701 19.2525459999999988 13 167.407258062647998 7.02823488825460974 23.8192459999999997 19.7919519999999984 13 327.898214061902024 9.15899795430541985 35.8006630000000001 18.4725719999999995 1.31991210000000003 0 1.3193798000000001 0.539405800000000046 0.779973999999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.529590830837009 -62.5655870508744982 22.7875467360813992 -12.2850922223656998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484152968019200 2505484152968019200 626208687 2015.5 25.6093281211723003 0.293365705065968985 -2.55867818006375014 0.269520182976447975 -0.307902592951866005 0.334677369544079006 -0.919998199999999988 6.22469393665441029 0.667046532878428966 -3.83095906021459021 0.507725108525305946 0.215107049999999994 0.270175129999999986 -0.121253799999999995 0.16738248 -0.0749454050000000066 0.145847840000000006 0.377424099999999985 -0.0156253459999999983 0.0171752259999999983 0.15083669999999999 140 0 137 3 2.52671650000000003 176.647003 0.689212503066172988 1.04609530021703989 31 false 0.226939350000000012 1.53180922858588997 0.0801945916270385001 0.00573716169999999998 16 10 0.5980993 0 17 false 138 405.465318833389006 1.62146954309322999 250.059998 19.1684820000000009 14 244.75830648937 7.61423140115357011 32.1448480000000032 19.3795450000000002 15 280.330747293464015 10.4839423086310006 26.7390599999999985 18.6427440000000004 1.29502830000000002 0 0.736801150000000016 0.21106338999999999 0.525737760000000054 \N \N 0 \N \N \N NOT_AVAILABLE 151.520823508093997 -62.5650390688279998 22.7851240388317002 -12.2817735642711998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484152968019328 2505484152968019328 1340737044 2015.5 25.6128994048053009 0.826288159703257974 -2.55830231211080994 0.763830695691588013 0.162094805654234009 0.867487178183613983 0.186855569999999999 -3.61722542199545005 2.22840621162566999 -4.48667594589622976 2.24003101214674993 0.269152129999999989 0.0139046949999999999 -0.423875720000000011 0.0172298180000000009 -0.00380073300000000015 0.0294071179999999995 -0.141702789999999995 0.136989620000000006 -0.165980199999999994 0.326827020000000024 111 0 111 0 0.55563359999999995 113.598 0.33666420086377602 0.0303435318328377987 31 false 0.0376935099999999995 1.96947004627267996 0.235468162986929991 0.0416502399999999981 13 8 2.26597520000000019 0 13 false 112 110.503542914338993 1.0595367876197701 104.293999 20.5799260000000004 10 93.6884607465679977 12.2377810757310996 7.65567400000000031 20.4221730000000008 11 92.8579078657272987 9.21490502972955028 10.0769249999999992 19.8423729999999985 1.68814829999999994 0 0.57979965 -0.15775299000000001 0.737552639999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.527479884954005 -62.5631779784174 22.7886616233807011 -12.2827336395830002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484359126449792 2505484359126449792 291469294 2015.5 25.6082356475782014 0.258167275699209997 -2.5474025176190902 0.235930285096821013 0.505539959996567978 0.296795436296587001 1.70332789999999989 -0.583122073737878055 0.573654165923438986 -2.61677017252736999 0.440189164260444021 0.253098129999999977 0.276877600000000001 -0.0907657439999999954 0.188216670000000003 -0.0968039100000000069 0.209484759999999992 0.335084439999999983 -0.0270013700000000002 -0.00971136149999999969 0.247184960000000009 150 0 150 0 -0.253903539999999983 140.067001 0 0 31 false 0.275540899999999978 1.4278354659249799 0.0691439620564884977 0.0323399040000000026 17 10 0.527603860000000036 0 17 false 150 426.019033012667023 1.31751433464157008 323.351013 19.1147939999999998 16 209.84776754263001 8.46556818518127052 24.7883850000000017 19.5466270000000009 13 322.342817060253992 5.69420371432060968 56.6089359999999999 18.4911250000000003 1.2492179000000001 0 1.0555019000000001 0.431833269999999991 0.623668699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.508252000672996 -62.5553040307074966 22.7883212061028004 -12.2708844895712996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484191622862336 2505484191622862336 694683142 2015.5 25.6144576668191988 0.0670268228957113937 -2.54319846208080991 0.0580812777781996997 6.15806658013007979 0.0734788531119438953 83.8073349999999948 31.6998146914282017 0.145036750452494007 -17.1348129386324004 0.107664092751194998 0.210539239999999989 0.341733600000000026 -0.120858385999999998 0.190913319999999997 0.0229240840000000008 0.19299891999999999 0.330736729999999979 -0.00354417650000000018 0.0354087800000000008 0.152980859999999996 132 0 132 0 4.09438100000000027 203.154007 0.230910741841535011 2.4557067845045002 31 true 5.44000299999999992 1.26546922385720007 0.0180598237271803984 0.0351710360000000027 15 10 0.136388320000000007 0 16 false 132 6568.79126191930027 8.42738860084389074 779.458008 16.1446509999999996 12 1269.95500741162004 13.4099720554578994 94.7022860000000009 17.5919169999999987 14 8273.4605090656496 32.4227587596253031 255.174479999999988 14.9677019999999992 1.45284199999999997 0 2.6242150999999998 1.44726559999999993 1.17694950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.516564124614007 -62.5488517780444013 22.7958176186643016 -12.2692556428317996 100001 3882.27002 3574.84009 4055.95996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481133606147968 2505481133606147968 713170780 2015.5 25.6311963183885005 0.0464546496265086997 -2.56853880091617004 0.0391841960851372975 1.63793904987884997 0.0533803853499026995 30.6842860000000002 -9.24879861531774949 0.104159052512907996 -4.70334576380399039 0.0803366163969232022 0.128613200000000011 0.266460450000000015 -0.200695800000000008 0.0895970299999999942 -0.178660380000000008 0.0961979849999999997 0.12044465 0.0443529930000000003 0.0201147999999999987 0.203573320000000002 134 0 133 1 -1.14141139999999996 109.988998 0 0 31 true 12.1225760000000005 1.50543254217523992 0.0124685154916272002 0.0515665150000000003 15 10 0.102490633999999997 0 15 false 131 9718.90888646514941 6.64563566384078985 1462.44995 15.719322 15 4101.97118332461014 16.7553485602950012 244.815629999999999 16.3189069999999994 14 8034.89615863017025 38.1448072671047029 210.641940000000005 14.9994700000000005 1.24878909999999999 0 1.31943699999999997 0.599584600000000023 0.719852449999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.572837581898995 -62.5646361761085998 22.8022173575283986 -12.298965159302 100001 4914.50977 4787.66992 5040 \N \N \N \N \N \N 200111 0.553640840000000023 0.526415049999999995 0.583364600000000011 0.161091819999999997 0.149660870000000001 0.172522769999999992 +1635721458409799680 Gaia DR2 2505481202325624576 2505481202325624576 1404843342 2015.5 25.6611459726419007 5.53777593364577037 -2.56434125109950983 2.51222001157263986 \N \N \N \N \N \N \N -0.442977339999999997 \N \N \N \N \N \N \N \N \N 65 0 64 1 58.0116540000000001 5581.4502 14.4535591125225995 525.750646789953976 3 false 0.00470625749999999989 \N \N -0.26298054999999998 15 9 9.24055399999999949 0 17 false 150 917.209387213894047 12.3730337044653993 74.1296997 18.2821940000000005 16 1412.51675938776998 26.3310154076149985 53.644599999999997 17.4764039999999987 15 2951.61955307959988 29.4289236570977017 100.296554999999998 16.0867700000000013 4.75805900000000026 0 1.38963510000000001 -0.805789949999999977 2.19542500000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.627636158049995 -62.5480539595597023 22.8322799241596996 -12.3060415663310998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480029799409280 2505480029799409280 935110536 2015.5 25.6686427180502008 0.273875776218554023 -2.61449227234807013 0.231308349288994991 0.507540855344109976 0.290486088137191012 1.74721229999999994 3.96945012321602997 0.659977849307147979 -9.87154105789566927 0.44441378681228999 0.0874476899999999946 0.0949022300000000041 -0.289131220000000022 0.205117569999999999 -0.161142289999999994 0.249819700000000006 0.330790099999999976 0.0564571000000000031 -0.079572480000000001 0.117233080000000003 141 0 139 2 1.8625027999999999 166.091003 0.635991992279926976 1.07213637552902008 31 false 0.283512529999999985 1.62116889153227994 0.0688798833461370941 -0.0656064600000000053 16 9 0.592690999999999968 0 16 false 139 483.890320642125005 1.63541503425839996 295.881989 18.9764979999999994 16 203.161996804843 9.71674876804872056 20.9084339999999997 19.5817809999999994 13 414.070416987386011 10.9653179693344995 37.7618259999999992 18.2192340000000002 1.27556259999999999 0 1.36254689999999989 0.605283739999999959 0.757263200000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.688941312910003 -62.5901681344961034 22.8205709175724003 -12.3554415981404997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480064159147904 2505480064159147904 1387377614 2015.5 25.6903922369888988 0.244214699878115005 -2.60719602002167994 0.159510296074338004 1.25058478814958995 0.238098091482837004 5.25239320000000021 16.5454585326005983 0.630493477622445009 -5.61736925877803994 0.306880004463946976 0.00954725600000000049 0.0119425350000000007 -0.390464800000000001 0.138327430000000001 -0.0646337939999999944 0.138727600000000006 0.118045990000000003 0.146104440000000002 0.0702503550000000004 -0.024495336999999999 152 0 152 0 2.03659219999999985 183.983002 0.528100271186341952 1.15482812717819994 31 false 0.409159900000000021 1.24078164796976997 0.0548458814006237971 -0.125923069999999998 17 9 0.565881549999999955 0 17 false 152 650.085664529804035 1.9364479228282101 335.709991 18.6559400000000011 15 184.171217906382992 8.54759969200187086 21.5465429999999998 19.6883340000000011 14 770.690832782442044 12.0457049391054003 63.9805500000000009 17.5447200000000016 1.46882500000000005 0 2.14361379999999979 1.03239440000000005 1.11121939999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.724770452099989 -62.5742591134373001 22.8440022572082988 -12.3566280125891996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480888792871040 2505480888792871040 1142366398 2015.5 25.6712437385283003 0.233943684017142994 -2.58594056320819998 0.220617223935435008 0.291192637108541985 0.26754603585317499 1.08838330000000005 5.32202775927134031 0.534358573246522028 -5.69086146440634977 0.407562836551360996 0.255146299999999993 0.206043510000000013 -0.100878239999999994 0.195745300000000011 -0.168227700000000008 0.215102170000000009 0.342150149999999986 -0.00651130000000000025 -0.00856288499999999925 0.265829270000000006 150 0 150 0 0.0764597999999999944 145.636002 0 0 31 false 0.327403339999999987 1.59422748289004002 0.0628067018628574031 0.0172832270000000017 17 10 0.493904830000000017 0 17 false 150 484.251596954543004 1.68805148907289992 286.869995 18.9756889999999991 15 283.352178282547015 11.7066857688471 24.2043040000000005 19.2205720000000007 15 335.842864316012992 15.8300105946538991 21.2155799999999992 18.4465789999999998 1.27866389999999996 0 0.773992539999999951 0.244882579999999989 0.529109950000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.667476925849002 -62.5632566981216982 22.8337715555216008 -12.3298358014440002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480927447718016 2505480927447718016 624414920 2015.5 25.6766971496533998 0.0268024994560575013 -2.58315267020992989 0.0220703793531050012 1.5700576645445401 0.0293897343460126012 53.4219739999999987 16.5122585096005992 0.059230785575139 -6.79528554115085015 0.0481872407016594034 0.0972918799999999973 0.265046899999999974 -0.269708630000000005 0.0968995240000000008 -0.173857540000000005 0.112592845999999996 -0.0762668299999999938 0.085200739999999997 0.0203275049999999992 0.270085069999999983 151 0 148 3 1.75991129999999996 174.113998 0 0 31 false 50.9448700000000017 1.59844676290208998 0.00721822969749164999 0.0396064630000000015 17 10 0.0670242600000000022 0 17 false 144 40552.2734104854972 16.2392776534028016 2497.16992 14.1683269999999997 14 20832.6081668931001 60.7117784026917988 343.139499999999998 14.5545290000000005 15 28383.7350813047997 43.1175419432520997 658.287400000000048 13.6292460000000002 1.21365189999999989 0 0.925283430000000018 0.386201860000000008 0.53908160000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.675568100948993 -62.558403853587798 22.8400062084044997 -12.3292416140634007 100001 5475.25 5399 5617 0.0315000005 0.00860000029 0.166999996 0.0107000005 0.00289999996 0.052099999 200111 0.90695899999999996 0.861760740000000025 0.93275779999999997 0.666017799999999993 0.635614200000000018 0.696421300000000021 +1635721458409799680 Gaia DR2 2505480923156454656 2505480923156454656 1586593654 2015.5 25.6887376765315985 1.50664559295299005 -2.5868728614275498 1.54372539521707997 \N \N \N \N \N \N \N -0.0582751859999999997 \N \N \N \N \N \N \N \N \N 68 0 67 1 1.91886350000000006 85.0903015 4.20526053027900026 2.75128346426743997 3 false 0.017026676000000001 \N \N 0.0160463820000000014 9 6 6.29673049999999979 0 9 false 69 83.8016021787381931 1.42351774916265006 58.8694 20.880236 5 71.6832022861534028 14.6190420653347992 4.90341330000000042 20.7128450000000015 6 80.3238116276631047 18.0065498480187998 4.46081069999999968 19.9998100000000001 1.81389149999999999 0 0.713035599999999992 -0.167390819999999996 0.880426400000000053 \N \N 0 \N \N \N NOT_AVAILABLE 151.702608823383002 -62.5566095959094 22.8500623660060995 -12.3371160423170991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480957512404096 2505480957512404096 1517512575 2015.5 25.6935830950013013 1.86831790447278001 -2.57857911108311022 1.55737932537629997 \N \N \N \N \N \N \N -0.250084939999999978 \N \N \N \N \N \N \N \N \N 69 0 69 0 -1.7688337999999999 45.468399 0 0 3 false 0.021799723 \N \N -0.0534740429999999989 9 7 4.47677200000000042 0 9 false 71 86.0488780023280952 1.43148930987468992 60.1114006 20.851503000000001 7 79.1847328601564016 6.73278729695594969 11.761063 20.6047839999999987 7 66.0424865628590965 12.6993910307677993 5.20044500000000021 20.2123619999999988 1.68772940000000005 0 0.392421719999999974 -0.246719359999999999 0.639141100000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.704380187167004 -62.5470414182576988 22.8577867045455996 -12.3311768631549992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479793576352384 2505479793576352384 1346898223 2015.5 25.7143367524239004 1.62337755938248995 -2.61786538813806002 1.00542325932172005 \N \N \N \N \N \N \N 0.0175475889999999989 \N \N \N \N \N \N \N \N \N 119 0 119 0 34.7780079999999998 1853.90002 8.2360616959208901 108.799296010066996 3 false 0.0133810860000000004 \N \N -0.0541880429999999982 16 9 3.63612409999999997 0 16 false 141 389.94754460707702 5.02860159587403999 77.5458984 19.2108500000000006 11 391.316494149687003 9.24638972568839002 42.3210029999999975 18.8700679999999998 11 859.081185678021029 13.8527947502771003 62.0150069999999971 17.4268339999999995 3.20657920000000018 0 1.44323350000000006 -0.340782169999999995 1.78401570000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.781616571860013 -62.5736210475994028 22.8627739857371992 -12.3753300757866 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479823640978688 2505479823640978688 1045154017 2015.5 25.7318447660383001 0.159446878196983999 -2.61900123631285986 0.125050327970663011 0.338275886891524991 0.175597533144024986 1.9264273999999999 3.06897329962239018 0.362090105169156018 -7.58630870370687038 0.245701025643431992 0.086513035000000002 0.240098179999999994 -0.197111199999999986 0.10145527 -0.128102030000000006 0.090350024000000001 0.128824899999999992 0.0488375460000000025 0.0722792740000000045 0.109347680000000003 168 0 167 1 -0.360534159999999992 154.949005 0 0 31 false 0.685287360000000012 1.61093767760655004 0.0418780906628934968 -0.0518894270000000019 19 10 0.323885599999999996 0 19 false 167 841.842387749264049 1.66143069227274998 506.696991 18.3752880000000012 17 428.858800903637018 5.45499325967050996 78.6176600000000008 18.7706030000000013 16 602.335558444220055 9.38073317445556043 64.2098600000000062 17.8123250000000013 1.22492559999999995 0 0.958278659999999949 0.395315169999999994 0.56296349999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.816952448486006 -62.5671237607733985 22.8790046992823015 -12.3828034894312999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481404188500992 2505481404188500992 341245710 2015.5 25.7416709101480983 0.155767196478214992 -2.60203527940013002 0.111918087890780005 0.767950531924610047 0.17558558413286901 4.37365400000000015 -1.04321355785419989 0.307681680766036025 -2.74417066604525006 0.21185947049165299 0.0112375229999999993 0.44820616000000002 -0.118165019999999996 0.0955274499999999999 -0.20171001999999999 0.0705020900000000034 0.159617220000000004 0.0273894020000000002 0.084047150000000001 0.129816299999999996 170 0 168 2 2.03114220000000012 201.723007 0.407121119241866003 1.52561006094453999 31 false 0.856921000000000044 1.47411030513258989 0.0364969867405878015 -0.053518391999999998 19 10 0.275012099999999982 0 19 false 168 1148.71665702064001 1.93314492968879992 594.221985 18.0378340000000001 17 415.477384473071993 10.8305264386827993 38.361699999999999 18.805019999999999 16 1090.25753282987989 9.08166026018549921 120.050460000000001 17.1680969999999995 1.31079750000000006 0 1.63692280000000001 0.767185200000000012 0.8697376 \N \N 0 \N \N \N NOT_AVAILABLE 151.820334163177989 -62.547584887035498 22.8947255025335998 -12.3706212540378004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481335473774336 2505481335473774336 327011931 2015.5 25.7502699889689985 1.61789458305579004 -2.60145231040627012 3.00552180366580002 \N \N \N \N \N \N \N -0.522976200000000002 \N \N \N \N \N \N \N \N \N 96 0 94 2 0.503171200000000041 95.1844025 1.26751028086308004 0.310848586594306975 3 false 0.0283289010000000001 \N \N 0.148791719999999988 11 7 8.67105500000000085 0 12 false 95 97.125801148826497 1.28171057195075 75.7782974 20.7200300000000013 7 67.6939872407487968 14.7453955163441996 4.5908559999999996 20.7750130000000013 9 148.962384331712002 24.5948326221589006 6.05665350000000036 19.329229999999999 2.23067780000000004 0 1.44578359999999995 0.0549831399999999998 1.39080050000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.836606823907999 -62.5433605138871016 22.9031258687096013 -12.3732298738779996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480132878625792 2505480132878625792 17545687 2015.5 25.7102459049661007 0.483261917525224016 -2.59240771178725993 0.366115224988405985 1.65418595155886994 0.576606006430050999 2.86883229999999978 21.7929935413157985 0.913390898131442031 -12.5073138308843994 0.664048279355898052 0.143987389999999993 0.505172599999999972 -0.0853159349999999955 0.123105709999999993 -0.0916136000000000034 0.0393728699999999973 0.212235470000000009 0.0451045450000000028 0.13613494000000001 0.151015939999999987 160 0 160 0 3.85637570000000007 232.421005 1.33396286440202005 1.8374990072789299 31 false 0.0908654400000000056 1.28166184420778007 0.114836262875473993 -0.0118298859999999995 18 10 0.811813650000000053 0 18 false 160 234.521895026566 1.30465004921196992 179.757996 19.7629069999999984 13 78.1546667623028952 14.2582716088145993 5.4813559999999999 20.6190010000000008 14 293.773055862538001 12.1164325096482006 24.2458379999999991 18.5918899999999994 1.58589770000000008 0 2.02711100000000011 0.856094360000000054 1.17101670000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.749869240572991 -62.5523888481812023 22.8684442266009 -12.3501484176247995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481614642571648 2505481614642571648 422039094 2015.5 25.7306627736315008 1.11733162281928999 -2.59050351686016 0.755702984089063001 1.62783703380703004 1.36032458259227007 1.19665339999999998 -1.1840795355282201 1.65011155391363995 -0.95466695692311998 2.00718343219881001 -0.224017889999999997 0.739639900000000017 0.00711745999999999993 -0.21064621 -0.415652630000000023 -0.151776280000000013 -0.0637952299999999944 0.0179517720000000013 -0.126726210000000006 0.314801249999999977 123 0 123 0 0.552423540000000046 125.994003 0 0 31 false 0.0331871619999999992 1.27795411984744001 0.238091822279629994 -0.110601895000000006 14 8 1.90396490000000007 0 14 false 123 105.645804382527004 1.2873199658066099 82.0664978 20.6287349999999989 13 70.7647255330224993 7.42084026234643979 9.53594499999999989 20.7268469999999994 12 81.6515858595823971 10.3845497796118007 7.8627950000000002 19.9820080000000004 1.44271050000000001 0 0.744838699999999965 0.0981121100000000024 0.64672660000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.788042944188987 -62.5419052861907971 22.8885829546692996 -12.3558594535367998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481404188503808 2505481404188503808 909372624 2015.5 25.7401527594353006 0.817945192133708976 -2.5885539881434898 0.516216697102971023 0.537379473431588983 1.00002399354723992 0.537366569999999988 21.5687137849219006 1.18882534998451006 -14.8717237426513993 0.939850456229048947 -0.269933880000000015 0.726609649999999996 0.0979380700000000021 -0.0156105910000000001 -0.432709999999999984 -0.100000919999999993 0.160888339999999991 0.0960412199999999966 0.0420769039999999983 0.112750575000000006 142 0 140 2 1.71159229999999996 164.360992 0.803931280119445035 0.340109823726359006 31 false 0.0577471440000000003 1.12508762125157991 0.167543168411748988 -0.127698509999999987 17 9 1.0954155000000001 0 17 false 140 161.803696412391986 1.42533879199062996 113.518997 20.165894999999999 13 42.2605335332587018 4.83791349518840974 8.73528100000000052 21.2865499999999983 14 220.897764314262986 5.52419088159672977 39.9873499999999993 18.9014419999999994 1.62640479999999998 0 2.38510899999999992 1.12065510000000002 1.26445389999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.804784584188013 -62.5360680543370009 22.8983436382874004 -12.3575233701130003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481305404839296 2505481305404839296 1311773323 2015.5 25.6683949922770012 0.813933899973105945 -2.54560260601241017 0.596146439430995989 0.193049852176860992 1.13519067492081005 0.170059409999999994 -6.0293323963898704 1.13062299457860993 -1.42968052631196008 0.984005640757978028 -0.278552950000000021 0.751459659999999974 -0.0377775320000000026 -0.0278534440000000015 -0.551298740000000009 0.146614149999999999 0.369554280000000013 -0.0484374760000000001 -0.140133110000000005 0.30876621999999998 141 0 140 1 0.0491926820000000015 135.141998 0 8.64845076549420973e-16 31 false 0.0614146549999999986 1.32367397764357997 0.143435833951742003 -0.0472981700000000005 16 9 1.16157529999999998 0 16 false 140 157.083079663900008 1.23279807548190989 127.419998 20.1980420000000009 9 38.1015063541492012 6.52962066274155006 5.83517930000000007 21.3990329999999993 11 203.257629810076992 7.36154685556236998 27.6107230000000001 18.9918019999999999 1.5365063000000001 0 2.40723039999999999 1.20099069999999997 1.20623970000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.624449967190998 -62.5280184482404024 22.8462125249860009 -12.2912675742082005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480957512404096 2505480957512404096 1517512575 2015.5 25.6935830950013013 1.86831790447278001 -2.57857911108311022 1.55737932537629997 \N \N \N \N \N \N \N -0.250084939999999978 \N \N \N \N \N \N \N \N \N 69 0 69 0 -1.7688337999999999 45.468399 0 0 3 false 0.021799723 \N \N -0.0534740429999999989 9 7 4.47677200000000042 0 9 false 71 86.0488780023280952 1.43148930987468992 60.1114006 20.851503000000001 7 79.1847328601564016 6.73278729695594969 11.761063 20.6047839999999987 7 66.0424865628590965 12.6993910307677993 5.20044500000000021 20.2123619999999988 1.68772940000000005 0 0.392421719999999974 -0.246719359999999999 0.639141100000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.704380187167004 -62.5470414182576988 22.8577867045455996 -12.3311768631549992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482503700576640 2505482503700576640 804289364 2015.5 25.6948231797974991 0.215017543220216989 -2.56271037206240004 0.189813162350185 0.998415541386221017 0.314409773406941984 3.17552330000000005 13.2398184811560995 0.366000779271360988 -13.7337906432893995 0.316745545595467026 -0.31243795000000002 0.671038800000000046 -0.181213920000000001 -0.114906653999999997 -0.669123770000000007 0.424550680000000014 0.58822023999999995 -0.311299300000000001 -0.409658819999999979 0.463004860000000018 143 0 139 4 -0.507309560000000048 125.226997 0 0 31 false 0.821131770000000039 1.46225549128209997 0.0417036187581888013 -0.0314540400000000026 16 8 0.411635550000000017 0 16 false 139 987.752772468238049 2.22591737894060993 443.751007 18.201746 15 311.962193712391979 8.95614422017825085 34.8322000000000003 19.1161330000000014 14 1015.71086118512005 6.75661987105458994 150.328249999999997 17.2449949999999994 1.34413490000000002 0 1.87113759999999996 0.914386750000000026 0.956750870000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.692053740776004 -62.532173939531198 22.8649258984882984 -12.3168693322639005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482782873588864 2505482782873588864 1018543908 2015.5 25.6790274079024989 0.0252923117399482013 -2.54296158636863989 0.0188746455063406003 1.89355921943883998 0.0290108445626573001 65.2707400000000035 4.17962457476416027 0.0452363696596706014 2.46644390943332015 0.0408727971591694994 0.101558270000000006 0.568583850000000002 -0.0510492359999999978 0.0686915899999999968 -0.137311340000000004 0.125827579999999994 0.0614082000000000031 -0.0594841470000000011 -0.039415552999999999 0.330470619999999993 159 0 158 1 -4.636876 84.9261017 0 0 31 true 87.5514139999999941 1.58045537231780009 0.00627769913498122008 0.0305437760000000016 18 10 0.0536514560000000001 0 19 false 160 68489.2479732678039 26.9431614706835987 2541.98999 13.5993099999999991 18 35542.8094757240979 52.2432220730248034 680.333439999999996 13.9745089999999994 18 47538.3869453302032 80.9231344153516972 587.451099999999997 13.0693090000000005 1.21305449999999992 0 0.905200000000000005 0.375199320000000003 0.530000699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.642810048693008 -62.5210868787590996 22.8573172228440988 -12.2927081386887007 100001 5474.75 5402 5494.49023 0.0680000037 0.0419000015 0.186100006 0.0289999992 0.0207000002 0.0860999972 200111 0.977504550000000028 0.970492099999999969 1.00401040000000008 0.7733738 0.744384770000000029 0.802362800000000043 +1635721458409799680 Gaia DR2 2505482434981100544 2505482434981100544 734474384 2015.5 25.7103579381973013 0.36687070366001201 -2.56044290365881988 0.281012349443475973 -0.0165816336371551014 0.427906451557141021 -0.038750604000000001 -0.290106754325339 0.737841411068998032 0.601724973057904955 0.531716486610079975 0.0440804180000000032 0.437818529999999984 -0.082217819999999997 0.0811621899999999952 -0.210040399999999988 0.0498055400000000023 0.204858079999999998 0.0156171569999999996 0.0747995500000000063 0.14051538999999999 169 0 167 2 2.42856879999999986 208.973007 0.931784776586866981 1.7790138404048299 31 false 0.142634700000000003 1.62018715039789996 0.0890439473083353972 -0.0557198100000000016 19 10 0.654853939999999968 0 19 false 166 317.46585952112099 1.93768573852896009 163.837997 19.4341240000000006 16 215.626715098655012 11.5046292419724008 18.7426050000000011 19.5171320000000001 14 207.224732778763013 7.18123894810725005 28.8564030000000002 18.9708159999999992 1.3319588 0 0.54631615 0.0830078100000000013 0.46330832999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.720336751605998 -62.5234703800516982 22.8805547276466008 -12.3204534546194004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482469340399488 2505482469340399488 1544716992 2015.5 25.7269066187012996 0.892316380541545051 -2.55643909555899018 0.874570996307343029 -0.315329424572186989 1.12446817436023005 -0.280425399999999991 -8.95731539987436953 2.09606308320124013 -15.4293582537895997 2.74450922168322009 0.19943145000000001 0.426468459999999994 -0.180635500000000004 -0.135796709999999987 -0.26705669999999998 -0.0513501000000000027 -0.0740430700000000025 -0.0977627600000000041 -0.144183530000000004 0.578473569999999992 128 0 127 1 -0.562778200000000006 112.785004 0 0 31 false 0.0269632259999999999 1.54443855967957999 0.253117094381552998 0.0335884799999999969 15 9 2.72777629999999993 0 15 false 130 92.323456308965504 1.08237799947942004 85.2968979 20.7750850000000007 7 52.0354565135459026 18.8280566024508005 2.76371879999999992 21.0606399999999994 8 113.871319615017001 8.30568260583041074 13.7100500000000007 19.6208840000000002 1.79701650000000002 0 1.43975640000000005 0.2855549 1.1542015000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.748970046163009 -62.512758194861803 22.8978004122858998 -12.3227931026183004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482572419615360 2505482572419615360 588926649 2015.5 25.7282277968399988 0.429281996364890006 -2.55144996606609009 0.334881349797157002 2.26484216563539009 0.520488393278577988 4.35137899999999966 7.54848542246639997 0.803350068823337038 -12.1706245242045004 0.619155793928048981 0.0435766240000000013 0.503421699999999972 0.0296404159999999993 0.0797340299999999974 -0.211427690000000001 0.0197689139999999985 0.201979149999999996 0.0019086407000000001 0.110466726000000001 0.154122490000000001 178 0 178 0 4.79430770000000006 277.466003 1.44094409457698003 2.51828652520004015 31 false 0.0997154299999999938 1.20860987678327003 0.103325804660077 -0.0218361260000000008 20 10 0.716364439999999991 0 20 false 177 258.434913591383975 1.18411149777419 218.251999 19.6574880000000007 17 68.9010631601437069 7.37376980982832997 9.34407599999999938 20.7558229999999995 15 356.788209358152983 10.3619601147170997 34.432502999999997 18.3808940000000014 1.64718169999999997 0 2.37492940000000008 1.09833530000000001 1.2765941999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.746911207386006 -62.5076856893126021 22.9009303491508014 -12.3186358181549007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779355776 2505482606779355776 1647685681 2015.5 25.7422227924927007 1.32418147347551995 -2.54141664510040011 1.08811932370340991 -0.0551062074488673018 1.89424054787146989 -0.0290914510000000008 1.25439587369257 2.13620972856968017 0.487360675281306999 2.95395675292123006 -0.274264750000000002 0.749266740000000042 -0.131009270000000011 -0.196167320000000006 -0.577652199999999949 -0.100075600000000001 -0.0651044399999999995 -0.0265363700000000001 -0.134439229999999993 0.575459959999999993 113 0 112 1 -0.668516800000000022 96.8899994 0 0 31 false 0.0256055520000000002 1.68930203451670002 0.278030214367878004 -0.0614773779999999992 13 8 2.90566749999999985 0 13 false 112 92.6765552568281947 1.22445835962265992 75.6877975 20.7709399999999995 9 71.3542004176869966 10.6606546424486996 6.6932286999999997 20.7178399999999989 9 88.5032590210318943 9.28832207002854915 9.52844400000000036 19.8945219999999985 1.7248964 0 0.823318499999999953 -0.0531005859999999982 0.876419069999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.764922246242008 -62.4926199613891029 22.9180101981358 -12.3144294519740995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779356672 2505482606779356672 484687774 2015.5 25.7421544974831988 0.633624456650836998 -2.53914758559843001 0.605498131317869004 0.238987451012175001 0.828722621795537018 0.288380499999999984 1.26083890745238003 1.27383388175881995 -2.19812990784433993 1.3156099605543401 0.142646600000000012 0.442051950000000027 -0.0472205060000000024 -0.0244927950000000012 -0.303613840000000024 -0.134723050000000011 -0.149874960000000002 0.0865865350000000061 0.172926550000000012 0.373514259999999987 151 0 148 3 0.87717540000000005 157.641006 0 0 31 false 0.0464952360000000023 1.61569201090491998 0.184403443058103994 0.041473030000000001 17 10 1.33988400000000007 0 17 false 148 130.961752115605009 1.05087760996885993 124.621002 20.395503999999999 13 79.5554457160032058 6.82726101384998962 11.6526160000000001 20.5997139999999987 13 85.5347847335080047 6.38999542514858998 13.3857350000000004 19.9315619999999996 1.26059879999999991 0 0.668151860000000042 0.204210279999999994 0.463941570000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.762678314370987 -62.4906002803189011 22.9187969711747996 -12.3122934682809007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505434400066411520 2505434400066411520 227378259 2015.5 25.7716304361706001 0.173009019002154013 -2.61325990072803993 0.142111289162870996 0.399339075609810024 0.213725088975244004 1.8684708000000001 2.15414567050722017 0.348996407399069009 -6.60864458641990016 0.260157569833600999 0.0886523349999999988 0.410649629999999988 -0.0837514550000000024 0.0932760759999999994 -0.274645799999999995 -0.00707279559999999998 0.0975053800000000026 0.099846619999999997 0.170708300000000007 0.216097490000000003 155 0 154 1 0.766540650000000046 161.921997 0 0 31 false 0.67091400000000001 1.5241373756802099 0.0448500263283308984 -0.0015243361999999999 18 10 0.31649157 0 18 false 154 845.409134409948024 2.28207093584493004 370.457001 18.3706989999999983 15 386.188990833661023 6.78430675705739983 56.9238700000000009 18.8843880000000013 16 668.66946652609704 7.91310569415642995 84.5015199999999993 17.6988899999999987 1.24774910000000006 0 1.18549729999999998 0.513689040000000041 0.671808239999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.889405637571997 -62.5448187145936032 22.9190160223846 -12.3920409759550996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481369828764288 2505481369828764288 1127923743 2015.5 25.7617452652717986 0.545685859895665981 -2.59356751928089979 0.474992023537610997 0.0273124441738775009 0.656662634698408021 0.0415928100000000009 2.45216534906934003 1.1614567693690101 -2.91700814960822985 1.04531591923350997 0.129106150000000003 0.383112730000000012 -0.107023640000000003 -0.00393780549999999969 -0.230398249999999999 -0.0401083100000000012 -0.0153222340000000005 0.0356683949999999986 0.080444699999999994 0.278914749999999989 150 0 149 1 -0.16419932000000001 140.574005 0 2.51214793389403987e-15 31 false 0.0619656479999999982 1.82209958574385 0.154136796207427013 -0.04254492 17 10 1.1042202000000001 0 17 false 149 159.761316003808986 1.08351479878089996 147.447006 20.1796879999999987 13 122.880777422071006 26.7922561740944012 4.58642859999999963 20.1276779999999995 13 106.104801318897998 9.69142259692814001 10.9483200000000007 19.6975820000000006 1.43329799999999996 0 0.430095669999999985 -0.0520095829999999981 0.48210525999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.851675948723994 -62.5313070174780989 22.9170046974982995 -12.3700991111233005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505434370002257280 2505434370002257280 569757652 2015.5 25.7859433815591998 0.0311842527043156015 -2.60752475468521983 0.028783140031674901 0.911257389429119047 0.0416176765323076001 21.8959219999999988 12.7597507448779002 0.0742093429782833963 -9.80511104659460919 0.0749064684894478056 0.0217505150000000015 0.398497219999999985 -0.118429534000000003 0.0528019220000000011 -0.475920300000000018 0.42824835 0.428750340000000008 -0.351414620000000011 -0.427655339999999995 0.580114099999999966 143 0 143 0 -2.94799800000000012 94.072197 0 0 31 true 43.3660769999999971 1.60584720712193008 0.00798818957644295037 0.0295487120000000013 16 9 0.0957122100000000059 0 16 false 142 33763.1787086523036 12.8150668026445995 2634.6499 14.3672570000000004 15 17832.1539688869998 36.522146440222798 488.255920000000003 14.7233780000000003 14 23186.3314515776001 38.3991044016990983 603.824769999999944 13.8488399999999992 1.21488810000000003 0 0.874538400000000049 0.356121059999999989 0.518417360000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.912009930044007 -62.5334753558159022 22.9347886474150009 -12.3919490214702996 100001 5744.66992 5441.00977 6060 0.460700005 0.305900007 0.652100027 0.257299989 0.172299996 0.324999988 200111 1.28057979999999993 1.15077659999999993 1.4275023 1.60904169999999991 1.44265909999999997 1.77542420000000001 +1635721458409799680 Gaia DR2 2505481438550281472 2505481438550281472 48277202 2015.5 25.7598912027069993 33.9715922115109024 -2.58283325565120014 13.7067255834242001 \N \N \N \N \N \N \N -0.991585799999999962 \N \N \N \N \N \N \N \N \N 53 0 52 1 0.59538466000000001 52.2929001 3.53982846303029008 0.683394983821796975 3 false 0.0116810174999999999 \N \N -0.356811670000000025 7 6 74.6778300000000002 0 7 false 55 74.1374223386060009 2.05349212772510015 36.1030998 21.0132709999999996 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.838030424586009 -62.5224173416090991 22.9192709624138011 -12.3594335356737997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481545923008128 2505481545923008128 622292740 2015.5 25.7602931395997992 0.0361393221203568024 -2.56843652112564991 0.0255543027677843995 0.684090871184893978 0.0406421363983036979 16.8320599999999985 6.88055063316314008 0.0647471994830204067 -0.501349486335600947 0.0546232581601300005 -0.0330260100000000015 0.559212000000000042 0.00145582939999999998 -0.00277183970000000014 -0.176748559999999999 -0.0498795250000000009 0.00164299059999999998 0.00854726700000000075 0.0693023799999999968 0.132077959999999994 169 0 167 2 -0.982375439999999989 144.335007 0 0 31 false 22.5026319999999984 1.58463189537984994 0.00882495587193934082 -0.0414705719999999972 19 10 0.0656972900000000054 0 19 false 166 17901.8204805276982 6.76587634023860041 2645.8999 15.0561229999999995 19 9625.49432605346919 30.672446567667599 313.815670000000011 15.3928309999999993 18 12069.4978316491997 16.4158004397968007 735.236629999999991 14.5576969999999992 1.21188750000000001 0 0.835133550000000002 0.336708070000000026 0.498425479999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.825384645063991 -62.5092504335387034 22.9250583150166989 -12.3461871543946007 100001 5802.25 5765.75 5851 0.363999993 0.172900006 0.477299988 0.181299999 0.0948999971 0.233600006 200111 1.21541450000000006 1.19524549999999996 1.23085149999999999 1.50844439999999991 1.30465889999999995 1.71222999999999992 +1635721458409799680 Gaia DR2 2505481747785892224 2505481747785892224 1662037666 2015.5 25.7576065658569995 3.54101657835306982 -2.56319972290153997 2.6304071284639301 \N \N \N \N \N \N \N -0.0685393299999999955 \N \N \N \N \N \N \N \N \N 98 0 98 0 39.9923440000000028 2393.67993 16.433997866662601 57.891242692374199 3 false 0.00283316550000000007 \N \N -0.0747424899999999948 11 8 7.43690300000000004 0 11 false 98 86.5915626544734067 1.27990976258812994 67.6544037 20.8446770000000008 9 64.6026817310881967 10.0639932797407994 6.41918949999999988 20.825762000000001 9 191.847805040112007 20.6109775686262005 9.30804000000000009 19.0545270000000002 2.9616106000000002 0 1.77123450000000005 -0.0189151759999999988 1.79014969999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.815254415724013 -62.5056785856521984 22.9244682608088013 -12.3403309597883002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482164398298112 2505482164398298112 1052375709 2015.5 25.7657897637552011 0.0457277613501436975 -2.54833178261500004 0.0330125103649763982 1.54682460934224997 0.0526826998198157981 29.3611490000000011 26.122174014882301 0.0833915622445450949 -14.6420970681067004 0.068314741576005103 0.00509721900000000006 0.531888369999999999 -0.0470874829999999994 0.0511119439999999994 -0.204537510000000006 0.0120883589999999999 -0.0204504699999999984 0.0123555734999999996 0.0803596899999999975 0.210921200000000003 179 0 176 3 -1.2813886000000001 147.774994 0 0 31 true 11.1428609999999999 1.45538823092443992 0.0113125461358256005 -0.0174489619999999984 20 10 0.0825522540000000055 0 20 false 173 9178.90533051702005 5.34043788673831976 1718.76001 15.7813879999999997 17 3556.73813593242994 14.2953385054522997 248.804049999999989 16.4737590000000012 16 8161.19292542065978 18.2230622474524004 447.849699999999984 14.9825359999999996 1.27661530000000001 1 1.49122240000000006 0.692370400000000052 0.798851969999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.817379281555986 -62.4887397433461018 22.9378345452633994 -12.3294966222787004 100002 4405.33008 4341 4554.5 0.619000018 0.386000007 1.01049995 0.303000003 0.178399995 0.432099998 200111 0.772357170000000037 0.72259395999999998 0.795419399999999999 0.202416640000000009 0.187379359999999995 0.21745392999999999 +1635721458409799680 Gaia DR2 2505481958239868160 2505481958239868160 462242828 2015.5 25.7808586105329987 0.0365893670050232017 -2.55653690373681997 0.026219923384917701 2.07381918240669982 0.0416765867756423991 49.7598150000000032 19.4079929774432998 0.0663859274817922007 13.2159863617629991 0.0550825894560601007 0.0182610620000000015 0.5391127 -0.0382923630000000029 0.0514340100000000022 -0.180247020000000008 0.037447165999999997 -0.0053433663999999997 -0.0148201930000000006 0.0462353699999999979 0.224205629999999989 178 0 177 1 -0.608739440000000021 160.317993 0 0 31 true 19.5525950000000002 1.50773851414154003 0.00904319830999781964 -0.0184318569999999994 20 10 0.0685956999999999956 0 20 true 173 15724.604144977 6.60899577040622965 2379.27002 15.1969169999999991 19 6815.15641454121032 37.5459237073953034 181.515209999999996 15.7676979999999993 17 12926.9038425544004 21.791174779422299 593.217399999999998 14.4831839999999996 1.25548850000000001 0 1.28451439999999995 0.570781699999999947 0.713732699999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.854442119178003 -62.4896630653444021 22.9490912485305998 -12.3426501087678009 100001 4834.20996 4667.93018 5034.64014 0.158000007 0.0878999978 0.192100003 0.0799999982 0.0480000004 0.0930999964 200111 0.580750499999999947 0.535430799999999985 0.622862160000000054 0.165949509999999995 0.158400220000000008 0.173498800000000009 +1635721458409799680 Gaia DR2 2481460648534573824 2481460648534573824 791154108 2015.5 25.4944917608471009 0.073838532708701804 -2.68320315584925995 0.0363356781576585977 3.40740597022971015 0.0519712139166595005 65.5633299999999934 29.4974150919688007 0.175892282743577988 -28.1431649710514016 0.0745168648559974001 -0.442514870000000005 -0.240816520000000006 -0.776718600000000037 0.414201900000000012 0.196675199999999994 0.502792400000000028 -0.403977220000000026 0.438068059999999981 -0.203946319999999987 -0.32137062999999999 121 121 119 2 3.69611020000000012 178.511993 0 0 31 true 377.50830000000002 1.60746257429683004 0.0130231304736175002 -0.0880539040000000023 14 8 0.114871360000000006 0 14 false 119 436548.583475943014 296.434897341567023 1472.66003 11.5882845000000003 13 240288.057361443003 482.908114881930999 497.58544999999998 11.8995580000000007 13 286443.872740736988 537.061330038508004 533.354100000000017 11.1193209999999993 1.20658270000000001 0 0.780237199999999964 0.311273569999999999 0.468963620000000025 15.1914492132413006 0.601669646198325969 3 6000 4.5 0 NOT_AVAILABLE 151.410232129484001 -62.7265447050541027 22.6290934206979983 -12.3554544461436002 100001 5951 5793.5 6699.3501 0.120999999 0.0299999993 0.261299998 0.0544999987 0.0152000003 0.116999999 200111 1.14123550000000007 0.900511860000000053 1.20412929999999996 1.47165170000000001 1.44109130000000007 1.5022120000000001 +1635721458409799680 Gaia DR2 2481463603472118272 2481463603472118272 1638689720 2015.5 25.4937597236786999 1.10376301780332997 -2.67852902147274019 0.515604657426583013 -0.37158756465043602 0.918239900594014946 -0.404673730000000009 -2.67403763592432009 3.09951494312916997 -15.4328039836142992 1.00884920624357011 -0.185342279999999998 -0.582287250000000034 -0.809909340000000033 0.314313830000000016 0.137963649999999993 0.367026799999999986 -0.0135362480000000007 0.633887899999999949 -0.210426969999999991 -0.162769990000000003 113 0 112 1 1.10198799999999997 123.209999 1.27452828536930007 1.22830519673058003 31 false 0.0658565099999999931 1.41369331207512006 0.166038304865408992 -0.0593995859999999973 13 8 2.90780830000000012 0 13 false 111 174.644767041758996 1.61548686493401994 108.107002 20.0829769999999996 10 104.248466579257993 21.5718407209900995 4.83261800000000008 20.3062129999999996 11 178.17916614992501 8.38060281585632083 21.2608999999999995 19.1347769999999997 1.6171548 0 1.1714363000000001 0.223236080000000003 0.948200200000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.404454881416001 -62.7226238853363967 22.6301559718749985 -12.3508387233428998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460717254096896 2481460717254096896 1203296381 2015.5 25.5331106849675997 0.157512145200965986 -2.67401292250230993 0.0892420819481687944 0.897334427484793973 0.123643671168302993 7.25742300000000018 -0.176652433777818002 0.424808602622839981 -9.9105293282982494 0.153692433727172006 -0.272204969999999991 -0.285865519999999984 -0.689385899999999996 0.368434219999999979 0.19417915999999999 0.522882639999999954 0.0645699200000000029 0.386396020000000007 -0.186668840000000003 -0.163043999999999994 120 0 116 4 -0.279496880000000003 106.238998 0 9.53770119187458963e-16 31 true 2.46695880000000001 1.52510776484002997 0.0278567893950956991 -0.0840424000000000032 14 8 0.401819380000000004 0 14 false 116 2374.49796251824 3.3831697368006699 701.856018 17.2494349999999983 13 1022.43771079341002 13.8596807742805002 73.7706500000000034 17.8272949999999994 12 1904.42742580170011 8.83574674839814023 215.536669999999987 16.5625099999999996 1.23262479999999996 0 1.26478580000000007 0.577859899999999982 0.686925899999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.477866227789008 -62.7018205180786978 22.6692792541462005 -12.3610843430041992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460923414585856 2481460923414585856 568639036 2015.5 25.5645982714402997 2.31266565951874004 -2.67434112159775017 1.33935655256022002 \N \N \N \N \N \N \N -0.221569020000000005 \N \N \N \N \N \N \N \N \N 78 0 78 0 1.77242480000000002 95.7777023 2.68542760216607013 1.73407680754660998 3 false 0.0237720930000000011 \N \N 0.0777439699999999956 9 6 5.76880930000000003 0 9 false 78 93.5710219656095035 1.51030098151129 61.9552002 20.760511000000001 5 67.0269052650587014 28.1658285384521996 2.3797242999999999 20.7857650000000014 7 135.786944220999999 9.60556054269133952 14.1362850000000009 19.4297749999999994 2.16748569999999985 0 1.35598949999999996 0.0252532960000000015 1.33073620000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.540199500547999 -62.6887125892557009 22.6991042005269996 -12.3729457450802993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463607767499136 2481463607767499136 1435991600 2015.5 25.4906682073229014 0.117396786343788001 -2.6715473442447899 0.0480609959993099981 0.931074563218495022 0.0766548161068962008 12.1463280000000005 11.9689855340813995 0.274822984814695026 1.79429230119723004 0.0871251215040440008 -0.437891780000000008 -0.215884369999999992 -0.803831799999999985 0.360660199999999986 0.0100952119999999992 0.498456239999999995 -0.154604600000000009 0.382634160000000001 -0.135915649999999999 -0.237478400000000006 114 0 113 1 -0.7611232 96.5755005 0 0 31 false 9.20265700000000031 1.54191996465439995 0.0160014248499207 -0.124664919999999999 13 8 0.275013540000000001 0 13 false 113 7745.57986366997011 8.43359121218973939 918.419983 15.9657309999999999 13 3722.28941386092993 18.2582783791387016 203.868590000000012 16.4243619999999986 13 5714.29983319417988 20.6472060144410001 276.759000000000015 15.3695129999999995 1.2183193000000001 0 1.05484960000000005 0.458631520000000015 0.596218099999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.391886098592011 -62.7176144645627005 22.6298428748750986 -12.3432106878992993 100001 5030.77979 4948.1001 5117.75977 0.00800000038 0.00400000019 0.0251000002 0.00400000019 0.00139999995 0.0149999997 200111 0.819020149999999947 0.791416169999999974 0.846618500000000052 0.387100820000000012 0.320341199999999993 0.453860429999999981 +1635721458409799680 Gaia DR2 2481463637831858560 2481463637831858560 320112955 2015.5 25.4998582326277017 0.522835580137906986 -2.67313147911775006 0.26288124790390599 -0.00195742866207202978 0.438315700349272974 -0.00446579649999999991 1.39039160568842002 1.47835476310760994 -5.74548816939011964 0.439641000587751019 -0.192417310000000008 -0.531063199999999958 -0.785150800000000038 0.291401699999999986 0.196094970000000007 0.429684520000000014 0.123841690000000004 0.617088260000000055 -0.129777539999999997 -0.102600140000000006 112 0 112 0 1.75182740000000003 133.951996 0 0 31 false 0.276906759999999974 1.75519584157328001 0.0818332124584899984 -0.0422102469999999994 13 8 1.38312079999999993 0 13 false 112 435.329705933213972 1.98583337628244005 219.218002 19.0913199999999996 11 254.599969936771998 12.0515003946854993 21.1259979999999992 19.336742000000001 11 270.356013088786028 9.41763399262961087 28.7074239999999996 18.6820799999999991 1.20588139999999999 0 0.654663100000000053 0.245422360000000006 0.409240720000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.411484324356991 -62.7151497308293031 22.6379864522639984 -12.3480579822006007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463710846713600 2481463710846713600 350878688 2015.5 25.4893718185002989 0.0961413596941547016 -2.65386494744066992 0.0473876674013663998 1.53036412364555008 0.0746615611951196995 20.4973489999999998 19.5453556998753015 0.255415142558704011 -7.00668296576218985 0.083978195217491905 -0.292867270000000013 -0.394840499999999983 -0.770086599999999954 0.331425960000000019 0.196920929999999994 0.467063459999999986 -0.0524254600000000001 0.521740259999999956 -0.154017459999999995 -0.17984871999999999 113 0 113 0 0.678611040000000054 117.577003 0 0 31 true 9.89651600000000009 1.44914056159743998 0.0151495141734342004 -0.0392239600000000022 13 8 0.251477479999999975 0 14 false 113 8368.12969671688006 32.3741532857706034 258.481995 15.8817950000000003 10 2926.14163939832997 29.213854475760801 100.162800000000004 16.685649999999999 9 7833.6621001818603 33.2904954137211035 235.312270000000012 15.0270080000000004 1.28580749999999999 0 1.65864180000000005 0.803854940000000018 0.854786900000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.372959423438004 -62.7021535532247967 22.6352626531935002 -12.3262899718372996 100001 4230.16992 4047.12988 4533.37988 1.20599997 0.842400014 1.48199999 0.610700011 0.430700004 0.738499999 200111 0.843782959999999971 0.734686700000000026 0.921832699999999949 0.205393880000000001 0.184342830000000013 0.226444929999999989 +1635721458409799680 Gaia DR2 2481463710846713856 2481463710846713856 242600035 2015.5 25.4930063017320983 0.724813756309803048 -2.65683232126150992 0.322558416904373979 0.164215438228359989 0.594535660195515958 0.276207900000000006 12.3993335396245001 2.01836377240738019 -3.74403485039366979 0.550351924477122001 -0.178216029999999998 -0.558586660000000013 -0.810407699999999953 0.288756500000000027 0.107544899999999999 0.372250599999999987 0.15915456 0.627898100000000015 -0.141814279999999987 -0.127073729999999996 121 0 119 2 -0.465433660000000027 106.476997 0 0 31 false 0.158569629999999989 1.25986019923668002 0.105320147590341001 -0.0658798399999999951 14 8 1.89338080000000009 0 14 false 120 282.94816142169401 1.82588552311484009 154.964996 19.5591000000000008 11 83.7945915332096973 9.32502484931966968 8.9859915000000008 20.5433480000000017 10 287.112542085688972 8.70257661765421986 32.9916729999999987 18.6167890000000007 1.31086600000000009 0 1.92655939999999992 0.984249099999999988 0.942310329999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.382873641787995 -62.7032996978389008 22.6376024972244991 -12.3303840093386992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460785975565184 2481460785975565184 786153432 2015.5 25.5209955947955009 12.4135008600662005 -2.66508530233643981 5.67376251199372028 \N \N \N \N \N \N \N 0.741009350000000011 \N \N \N \N \N \N \N \N \N 50 0 49 1 1.07219409999999993 54.0754013 0 0 3 false 0.0225427799999999984 \N \N 0.181867150000000005 6 4 8833.28600000000006 0 6 false 49 79.9453817490128955 1.72765211002041008 46.2739983 20.9313830000000003 4 68.3222582289308065 9.92357243154564017 6.88484530000000028 20.7649819999999998 6 111.912922160142998 15.9571574927274007 7.01333699999999993 19.6397189999999995 2.2544789999999999 0 1.12526320000000002 -0.166400910000000013 1.29166409999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.445704966102994 -62.698891340732402 22.6611154045387018 -12.3483343564550996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463745205870592 2481463745205870592 665303626 2015.5 25.5188456141770992 1.44280516866773989 -2.66056013202710995 0.682608624783203055 \N \N \N \N \N \N \N -0.154446880000000009 \N \N \N \N \N \N \N \N \N 94 0 93 1 0.292777239999999994 91.2567978 0 0 3 false 0.049782593 \N \N 0.000938840700000000052 11 8 3.94236539999999991 0 11 false 93 127.847013120618001 1.11693320246584005 114.462997 20.4216380000000015 8 62.2594605581696001 12.3125665179025994 5.05657859999999992 20.8658749999999991 8 143.39131500254399 9.10375713589701085 15.7507839999999995 19.3706129999999987 1.60856930000000009 0 1.49526209999999993 0.444236760000000008 1.05102540000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.437271971635994 -62.6957090331388969 22.6607729272538982 -12.3433365892132993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464015788994432 2481464015788994432 953646736 2015.5 25.4971474542800003 0.212174436052730009 -2.64011817089041001 0.0961210734983361931 0.494844295558817981 0.165445613557702986 2.99097869999999988 -0.354052460347169973 0.571741177394547995 -21.439585913488699 0.174626542522903994 -0.249567499999999998 -0.461537839999999977 -0.784210740000000017 0.312149799999999977 0.107840220000000001 0.405277280000000018 0.0250819499999999987 0.54047400000000001 -0.159365200000000012 -0.171905489999999994 123 0 123 0 1.80898770000000009 147.255005 0.0882545083236618982 0.0939646391389026975 31 true 1.69302369999999991 1.60940282472665008 0.0321337478633810028 -0.0688279049999999948 14 8 0.541413699999999998 0 14 false 121 1762.2201507801899 2.77945612074878001 634.015991 17.5732150000000011 13 981.362405415299008 15.3063070578260998 64.1149099999999947 17.8718150000000016 13 1168.20749350536994 23.0663674642187004 50.6454900000000023 17.093119999999999 1.21980789999999994 0 0.778694149999999974 0.298599239999999988 0.480094899999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.375575720385996 -62.686409825661201 22.6478279670899987 -12.3163598147231994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464020084357760 2481464020084357760 1346781007 2015.5 25.4892081248729987 0.107874212676391995 -2.63192920584631995 0.0455449510534850985 0.381246013146627982 0.0844941812955039007 4.51209799999999994 13.6545787684488005 0.283182332286992022 -12.1252300968069004 0.0880245655490805995 -0.268172030000000006 -0.512174070000000037 -0.736238539999999997 0.298646420000000024 0.100790835999999995 0.391877619999999982 -0.12067928 0.481855270000000002 -0.155869160000000007 -0.174940120000000005 112 0 111 1 0.700903100000000001 115.828003 0 1.95201101787302999e-15 31 false 9.00121299999999991 1.64359583875812998 0.0160632505596555002 -0.116945099999999996 13 7 0.274734079999999992 0 13 false 110 7780.98874826030988 6.46026546010924019 1204.43994 15.9607790000000005 12 4492.48488871251993 15.1262109484917993 297.000029999999981 16.2201710000000006 11 4910.68153612522019 16.3004984466257987 301.259580000000028 15.534065 1.20847959999999999 0 0.686105700000000041 0.259391780000000016 0.426713940000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.352355214889997 -62.6823582978844982 22.6433586747589004 -12.3058292736245996 100001 6833.37988 6350.79004 7215.5 0.189199999 0.0790000036 0.308999985 0.0769999996 0.0390000008 0.153999999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464221947677312 2481464221947677312 1133053577 2015.5 25.5236243159680001 0.825368653217748993 -2.63245257377568986 0.620741741000339964 2.19611172654744013 0.914249938179230948 2.40209129999999993 -4.83530228591480959 1.90629236912664002 -0.0956840085791293982 1.0229122081050499 0.12469711 0.100957459999999999 -0.190019190000000004 0.201263710000000012 -0.128105180000000013 0.237103829999999988 0.315349729999999995 0.0384460130000000011 0.0650063699999999939 0.126495959999999991 121 0 119 2 8.45327950000000072 293.951996 3.77412442426795991 10.9896046395439999 31 false 0.0405314640000000032 0.814807162174697952 0.189152545783101006 -0.00574728050000000018 14 9 1.69126620000000005 0 14 false 119 212.505838758611986 1.88289820562994992 112.861 19.8699380000000012 10 36.0919797435941021 6.76468778493264988 5.33535049999999966 21.4578600000000002 13 353.508352086964976 12.0113696986248009 29.4311450000000008 18.3909200000000013 1.83336290000000002 0 3.06694030000000017 1.58792299999999997 1.47901729999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.420652709631014 -62.6682381384175997 22.6758892142353012 -12.3189492637865001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460751613837184 2481460751613837184 285859760 2015.5 25.5365063064959017 0.188453841655576992 -2.66967041123995985 0.104388082730351994 0.229038111963926011 0.147728188583955006 1.55040219999999995 7.0177788319784602 0.507323264934437024 -4.07100654496240022 0.184142741994400005 -0.279791899999999982 -0.301919280000000012 -0.707209500000000046 0.367458940000000012 0.199190690000000004 0.507353700000000019 0.0294802779999999987 0.410375600000000007 -0.191601920000000009 -0.184121740000000006 120 0 118 2 0.301146999999999998 116.904999 0 0 31 false 1.69072270000000002 1.55696398788680002 0.0349736200339828968 -0.0849266399999999977 14 8 0.478404759999999984 0 14 false 118 1719.93086034376006 2.92493753988956984 588.02301 17.5995880000000007 12 913.202176672165024 22.9967782381826993 39.7100069999999974 17.9499700000000004 10 1186.76634007711004 10.3969614053343005 114.145499999999998 17.0760080000000016 1.22096099999999996 0 0.873962400000000028 0.350381849999999995 0.523580550000000033 \N \N 0 \N \N \N NOT_AVAILABLE 151.480526551629993 -62.6964470903460978 22.6741422291671988 -12.3582919312902995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461198290540800 2481461198290540800 413936274 2015.5 25.5385038833206011 1.80423501190901003 -2.65007980907130003 1.09227903573398999 \N \N \N \N \N \N \N -0.34780270000000002 \N \N \N \N \N \N \N \N \N 77 0 77 0 0.438743949999999994 76.6968002 1.00243301101685001 0.195389827759160001 3 false 0.0299974440000000016 \N \N -0.080077850000000006 9 6 4.68298400000000026 0 9 false 77 101.793885254469004 1.22406735936435007 83.1604004 20.6690620000000003 4 61.1411166052546022 9.96812249732498046 6.13366399999999956 20.8855550000000001 5 63.2968467822230991 17.0938628627601013 3.70289899999999994 20.2584650000000011 1.22245029999999999 0 0.627090449999999966 0.216493600000000008 0.410596850000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.466286705378991 -62.6778707313915007 22.6834104667832008 -12.3408047220670003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460751613837568 2481460751613837568 1056105630 2015.5 25.5500376207255009 0.878908445240274006 -2.66663197744354985 0.510579681975744992 0.00101968405736848006 0.732978691553386019 0.00139115099999999998 10.8480135226032992 2.50795211770484006 -4.23309853852695994 0.807907334866473037 -0.168321830000000006 -0.396681280000000025 -0.710487839999999982 0.332380239999999993 0.177730219999999994 0.47854772000000001 0.279663439999999985 0.487144259999999996 -0.128421520000000011 -0.0867292060000000031 129 0 129 0 1.79092429999999991 153.626007 0.919243281536894052 0.496395288902503007 31 false 0.0704956100000000002 1.60402700515037999 0.156759869125657009 -0.096053920000000001 15 8 2.31938669999999991 0 15 false 129 182.417972613585988 1.34930638487890997 135.194 20.0356960000000015 13 71.491036687462298 8.60008633891363949 8.31282799999999966 20.7157599999999995 12 165.943341482747996 10.5474465974032992 15.733034 19.212019999999999 1.30159530000000001 0 1.50373840000000003 0.680063250000000008 0.823675159999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.504361747777011 -62.6879406217552031 22.6881545970464984 -12.3604322063092003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464187587695360 2481464187587695360 576317843 2015.5 25.5343181669014001 0.150929413610438989 -2.63036106744835019 0.128284723175582011 3.18126811512553997 0.16966323702241401 18.7504859999999987 1.97704885114334994 0.337980773186694006 -18.6936929673484009 0.213495553847877995 0.280391159999999973 0.215626239999999997 -0.082947253999999998 0.226008600000000004 -0.0430809629999999999 0.229041489999999986 0.325698639999999984 0.0187651419999999985 0.0917756500000000003 0.222374889999999992 121 0 118 3 3.49338650000000017 173.184998 0.553968297000252963 3.74090538837976982 31 false 1.12804130000000002 1.28268543778725008 0.0406813057827051031 0.0640389499999999973 14 10 0.306079800000000013 0 14 false 120 1724.26726446608996 3.75148357922893005 459.622986 17.5968550000000015 11 359.042911010159003 6.48777644412484999 55.3414420000000007 18.9635220000000011 12 2156.32896536890985 12.8421400159460006 167.91040000000001 16.4276330000000002 1.4588063 0 2.53588870000000011 1.36666679999999996 1.16922189999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.439773823605009 -62.6618039480616034 22.6868454038289009 -12.3209288289934005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464256307173376 2481464256307173376 663075619 2015.5 25.5347116758193984 0.0899675280109503012 -2.62820801821330008 0.0764640104166107032 2.96569702970931015 0.102022680955052999 29.0689959999999985 2.25175815982509997 0.199826164881048013 -18.4760359135986008 0.130259614905141013 0.279437959999999985 0.222665190000000013 -0.0957085200000000053 0.1978607 -0.0687786039999999932 0.199432340000000013 0.256407099999999999 0.0345236619999999966 0.0965137900000000021 0.242577519999999991 122 0 122 0 0.232768009999999997 119.917999 0 0 31 true 3.17382069999999983 1.30055433635478002 0.0251470304976963988 0.0658354240000000035 14 10 0.184647599999999995 0 14 false 122 2854.3355328959401 3.58116519620921991 797.041016 17.0496030000000012 13 550.472877777184976 11.2822308384865995 48.7911379999999966 18.4995480000000008 11 3586.27705282637999 21.2264132240512993 168.953499999999991 15.8753100000000007 1.44928649999999992 0 2.62423800000000007 1.44994540000000005 1.17429260000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.438555086258987 -62.6596880881101015 22.6880292696949013 -12.3190707616171995 100001 3909.94995 3594.57007 4032.04004 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461163930705920 2481461163930705920 708247397 2015.5 25.5599915694915012 0.59403865094330599 -2.64654054854221021 0.51763008526120402 2.22175530438464008 0.680836870411070993 3.26327100000000003 19.4608145364365015 1.36971812217571998 -22.3968862138512996 0.896088634683932961 0.266780530000000016 0.204879499999999992 -0.00548197840000000033 0.225039039999999996 -0.104100100000000001 0.252795219999999987 0.39834687000000002 -0.0978006349999999969 0.00575274600000000042 0.235776289999999999 140 0 140 0 3.86185029999999996 208.028 2.11941407890251021 2.98257085865629978 31 false 0.058868280000000002 1.6678400823928301 0.15641007986000699 -0.0022938107000000001 16 10 1.23672439999999995 0 16 false 140 181.309371565967012 1.19536008403362004 151.677994 20.0423149999999985 13 38.5697227998201981 6.48215227165210983 5.95014139999999969 21.3857730000000004 14 255.104600271865991 7.30112738924359039 34.9404400000000024 18.7451250000000016 1.6197416 0 2.64064800000000011 1.34345819999999994 1.29718969999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.505307267255006 -62.6655275586583969 22.7051776341441993 -12.3453984924714995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481460133138541312 2481460133138541312 1285260580 2015.5 25.5997194316597998 0.0811078998615823027 -2.68318005319087982 0.0574700514313460989 0.374640083389410017 0.0799289442856322974 4.68716430000000006 5.97045851791756998 0.213551397387798991 -4.35387118813055984 0.115421907062996001 0.0276294560000000002 0.0553994329999999979 -0.345218179999999986 0.18925473000000001 -0.0397522400000000012 0.217638310000000001 0.222385620000000006 0.0476226400000000008 -0.056637800000000002 -0.00686853839999999969 123 0 122 1 1.22338820000000004 135.990997 0.0872619796800945952 0.232755174514570007 31 true 4.75886799999999965 1.59159489279268995 0.0190892405572566995 -0.0749585200000000007 14 9 0.198248709999999995 0 14 false 120 4424.11838743749013 4.86224717618147029 909.892029 16.5737999999999985 12 2542.94871573647015 13.1503870582155002 193.374439999999993 16.838042999999999 13 2834.46525065056994 18.6188248805635013 152.236529999999988 16.1307429999999989 1.21547699999999992 0 0.707300200000000046 0.264244079999999992 0.443056100000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.617555061675006 -62.6817194782178007 22.7291875286392013 -12.3940536451043002 100001 6165.25 5870 6794.1499 0.0313000008 0.0055999998 0.0949999988 0.00949999969 0.00260000001 0.0469999984 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461026491750528 2481461026491750528 529670439 2015.5 25.6080225617292001 0.523828121200150987 -2.65108151352426979 0.41449109163105502 1.46254552719728004 0.608802410075250044 2.40233199999999991 2.86220009748541981 1.07511410169514998 -8.9514325454849093 0.726410199101494958 0.141799289999999995 0.383434390000000014 -0.0200077459999999999 0.193133680000000002 -0.200441940000000013 0.269190519999999989 0.378436300000000003 -0.102385009999999999 -0.0275123100000000016 0.254684750000000015 133 0 129 4 3.39644069999999987 184.675995 1.82411299291721996 4.21543383444258968 31 false 0.0950011500000000064 1.40430099816609011 0.131789411571867993 -0.047431305 15 10 0.977962140000000035 0 15 false 128 282.578971742046008 1.54204447220129004 183.25 19.5605159999999998 14 89.5554534228642041 9.68076639615171075 9.25086399999999998 20.4711590000000001 15 329.457668558926002 7.99015985473985957 41.2329250000000016 18.4674200000000006 1.48281780000000007 0 2.00373840000000003 0.910642599999999969 1.09309579999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.60399505562799 -62.6491566325519997 22.7491548308078002 -12.3672442514458005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461030787145472 2481461030787145472 1474348776 2015.5 25.6097482492048982 0.147223889956783011 -2.64893416679089011 0.123971894193192003 0.358460997018287986 0.166044273552558991 2.15882780000000007 -1.09688270985747005 0.343532243557937988 -5.50347849987344961 0.232141467433950005 0.207194199999999995 0.195202340000000002 -0.0562718200000000002 0.191643089999999988 -0.111865129999999993 0.241393069999999987 0.299178659999999985 -0.0892399499999999984 -0.0340903200000000003 0.224139139999999987 140 0 140 0 1.32971269999999997 157.309998 0 0 31 false 0.956001400000000001 1.53819537275318008 0.0389461013514090029 -0.0108353879999999996 16 10 0.312597269999999983 0 16 false 139 1095.14734007695006 2.21690298905883987 493.998993 18.0896839999999983 12 488.566396168289998 8.58217430874736031 56.9280430000000024 18.6290799999999983 15 867.801938124943035 9.68605946327200051 89.5928799999999939 17.4158690000000007 1.23852589999999996 0 1.21321100000000004 0.539396300000000051 0.673814800000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.605388979025008 -62.6464784703384012 22.7516036045458989 -12.3658799654494 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481461267010194816 2481461267010194816 709207269 2015.5 25.5822473511244013 0.789179379866857045 -2.64158371591880003 0.701958602691420963 4.72248415135967026 0.902909589704187998 5.2302957000000001 34.2656070104154011 1.9008832144076 -7.75912608413146998 1.31350743739956011 0.210737449999999993 0.210277619999999998 0.00263593930000000001 0.15596639000000001 -0.0417050900000000002 0.141646650000000013 0.399270769999999997 -0.139611779999999991 0.0231875599999999994 0.122056440000000002 122 0 122 0 4.57258600000000026 200.854996 3.17999597546464008 4.23255759093837014 31 false 0.0353137999999999994 1.29604072844789009 0.222751701744786007 -0.0249946150000000013 14 10 1.68467699999999998 0 14 false 121 145.290435195382997 1.3091563445160701 110.980003 20.2827739999999999 10 37.9143584125678998 10.0147191328182004 3.78586340000000021 21.4043789999999987 11 267.608176640123986 7.83205199730586976 34.168334999999999 18.6931720000000006 2.10284000000000004 0 2.71120640000000002 1.1216048999999999 1.58960149999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.544489900112012 -62.6515644028615029 22.7282090799544996 -12.3489542352774002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480304677315072 2505480304677315072 1356115897 2015.5 25.6060845167438984 0.839707418336499978 -2.63024133035959995 0.657523719489290004 0.246643368155657988 0.881917505121836975 0.27966717000000002 0.882273809209930038 2.21217999016865985 -1.30998872934724009 1.28925647582358005 0.185851440000000007 -0.031907673999999997 -0.367358359999999995 0.161103710000000011 -0.104343530000000004 0.16759170000000001 0.217231809999999997 0.143419469999999993 -0.0238411349999999994 0.137593519999999997 120 0 118 2 1.5396643000000001 137.003006 1.94266285987323006 1.23538007277127004 31 false 0.0382916199999999984 1.71350772336672996 0.22334265588711899 -0.0404585230000000032 14 9 1.978796 0 14 false 118 133.393378423709009 1.36675554157962997 97.5986023 20.3755300000000013 11 77.3015522657359071 8.87180676173617044 8.71316900000000061 20.6309189999999987 14 103.532635094531003 10.7674657146027997 9.61532000000000053 19.7242260000000016 1.35564590000000007 0 0.906692500000000012 0.255388259999999978 0.651304239999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.580809581886001 -62.6311421628065972 22.7551457104959987 -12.3471491183207007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479209460228480 2505479209460228480 1177677564 2015.5 25.6508175778186001 0.432158965013263008 -2.67067000011752009 0.38313369812397402 1.37559696517494001 0.487844602859896004 2.81974400000000003 7.59115743619927041 1.03719794537571008 -18.2130460118145017 0.688090709353624042 0.243394350000000009 0.121225044000000004 -0.0460914820000000031 0.209291520000000009 -0.178297099999999986 0.245489120000000005 0.365747270000000013 -0.075426419999999994 -0.0178375469999999987 0.233590159999999991 140 0 138 2 2.62400870000000008 179.735001 1.32202176614139999 1.9246762067748 31 false 0.108154559999999997 1.68103199285288007 0.115571375757722 -0.0409848400000000015 16 10 0.935938359999999969 0 16 false 140 265.479424781186026 1.80677652861976989 146.934998 19.6282880000000013 14 165.903877082337999 8.12823205772271962 20.4108200000000011 19.8017460000000014 15 356.005879813026013 10.3084787791673005 34.5352480000000028 18.3832780000000007 1.9659141 0 1.41846849999999991 0.173458100000000004 1.24501039999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.706334911310989 -62.6485548484529033 22.7825009737397011 -12.4011611421977008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479243820539648 2505479243820539648 542587781 2015.5 25.6587647805556003 0.0461347973769960021 -2.66268742074101983 0.0362030174260535992 0.596995429660159949 0.0504928432723572018 11.8233669999999993 -2.42720688705411991 0.105752792750097996 -8.64811117172554944 0.0794411176398933938 0.0730594700000000014 0.18347716 -0.21340458000000001 0.0142525424999999997 -0.175270480000000006 -0.0273391600000000012 -0.252238999999999991 0.0923906000000000033 0.155407430000000013 0.188562690000000005 142 0 141 1 -0.763860399999999995 123.162003 0 0 31 false 11.473554 1.66854533725342002 0.0134814635367163007 -0.0338231699999999996 16 10 0.10447948 0 16 false 140 9266.45452786164969 6.62026410719967995 1399.70996 15.7710819999999998 16 5044.91534656614022 12.6016882441692992 400.336459999999988 16.0942539999999994 16 6113.20472976663041 13.5550834355356997 450.989840000000015 15.2962474999999998 1.20414130000000008 0 0.798006059999999962 0.323171619999999993 0.474834440000000024 \N \N 0 \N \N \N NOT_AVAILABLE 151.71448956606099 -62.6379387945943975 22.7930621674754015 -12.3966504460049993 100001 5809 5653.91016 5882.66992 0.107500002 0.0250000004 0.215100005 0.0548 0.0092000002 0.107100002 200111 0.999494899999999964 0.974619030000000053 1.05508150000000001 1.02485249999999994 0.834654450000000048 1.21505060000000009 +1635721458409799680 Gaia DR2 2505479484338707840 2505479484338707840 568804169 2015.5 25.6408372736542987 0.375167228115336981 -2.6502777325252902 0.339857129869495012 -0.00128397927621691998 0.439808931214257015 -0.0029194023999999999 1.22484145463945993 0.936213802957947983 -7.92613456951973028 0.673519534705317002 0.222086640000000002 0.0786451600000000056 -0.0302350369999999993 0.134848799999999991 -0.219470250000000006 0.167874290000000009 0.284070199999999995 -0.112532413999999997 -0.0304541940000000004 0.223273500000000014 134 0 133 1 0.60930989999999996 137.298996 0 8.88178419700125035e-16 31 false 0.137309089999999995 1.57105182308187996 0.106012014276629998 -0.0633430259999999967 15 10 0.84548133999999997 0 15 false 132 257.939330806168016 1.55805688519249008 165.552002 19.6595730000000017 12 170.233702375621988 9.64283540163243913 17.6539059999999992 19.7737750000000005 10 185.024119278553997 15.0979486667717993 12.254918 19.0938499999999998 1.37729220000000008 0 0.679925899999999972 0.114202499999999998 0.565723399999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.667715874891002 -62.6344036105544006 22.7806718909988994 -12.3785327327607 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479449978969600 2505479449978969600 577216899 2015.5 25.651657042246601 0.0326714248095136967 -2.65268272595869004 0.0227670867110272984 7.32543782874795024 0.0343984642022455989 212.958280000000002 22.6450771356143008 0.0670735847875855024 -39.088746681242597 0.0503541389677841997 -0.0573875419999999997 0.375720679999999974 -0.162913680000000005 0.124418920000000002 -0.21613191000000001 0.214869470000000007 0.0413816460000000011 -0.0967823939999999938 -0.098815954999999997 0.220851020000000009 140 0 138 2 4.62602600000000042 222.673004 0.120763103011798004 2.98722770863148979 31 false 43.9011700000000005 1.42725143421252998 0.00830878595044401945 -0.0898880700000000005 16 10 0.0715450400000000042 0 16 false 134 102368.400939336003 73.3893468625508945 1394.87 13.1629505000000009 15 35572.9884257614976 52.2937463902528989 680.253199999999993 13.9735870000000002 15 97195.4331330083951 97.6349633440194964 995.498199999999997 12.2928060000000006 1.29696680000000009 0 1.68078140000000009 0.810636499999999982 0.87014484000000003 15.7927651012681007 0.904364325103500954 4 4000 3 0 NOT_AVAILABLE 151.691201897629014 -62.631945321190102 22.7900607779513997 -12.3847377773731004 100001 4121.5 3977.29004 4438.31006 0.437999994 0.215900004 0.557699978 0.214000002 0.123199999 0.252799988 200111 0.669789900000000049 0.577581099999999958 0.71924144000000001 0.116625400000000004 0.115335010000000002 0.117915790000000006 +1635721458409799680 Gaia DR2 2505480235957838208 2505480235957838208 116942394 2015.5 25.6183942216927001 0.409774951721844027 -2.63361564262388992 0.320815379185968974 0.199533531555870003 0.486166115009537991 0.410422530000000008 9.43369220970715006 0.835247315554247027 -23.6235027596119984 0.574853626778648041 0.0468292100000000031 0.39423533999999999 -0.0490221299999999971 0.141603530000000005 -0.298761869999999985 0.229648199999999997 0.331994999999999985 -0.0959420059999999963 -0.0472008920000000012 0.238544800000000001 139 0 139 0 1.23888850000000006 154.587006 0.855349891013877039 1.01750984836280001 31 false 0.14463783999999999 1.44855100611710008 0.0965797177448839972 -0.0952400199999999947 16 10 0.757105229999999962 0 16 false 138 313.048665532958978 1.65297920514516994 189.384995 19.4493369999999999 13 130.08781211828699 7.63491233145233039 17.0385479999999987 20.0657959999999989 15 279.630085620923978 11.7054203472674008 23.8889400000000016 18.6454599999999999 1.30879940000000006 0 1.42033579999999993 0.616458900000000032 0.803876900000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.608128295276003 -62.6289380565573026 22.7655860779752999 -12.3548029519134008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480339037053568 2505480339037053568 294862157 2015.5 25.6223940955783007 0.330894435268474008 -2.62878133301886985 0.303764668326491016 0.446396399872741989 0.373025983311233988 1.19668979999999991 14.8937739223117998 0.800346973348164958 -7.26696468783853966 0.613001471929131014 0.267236050000000003 0.135742840000000003 -0.0391831769999999996 0.180538370000000004 -0.143586679999999994 0.227829019999999993 0.252556950000000002 -0.0905502140000000039 -0.0583389480000000016 0.297001149999999992 133 0 132 1 1.02511189999999996 143.324005 0.640950578527970993 0.592893285586046037 31 false 0.179609939999999996 1.29389960242442004 0.0946054888662190979 -0.0267103300000000009 15 10 0.743047059999999981 0 15 false 131 333.253185183953008 1.83244766384225 181.862 19.3814300000000017 13 113.934105091660996 10.6863413280025998 10.6616569999999999 20.2097529999999992 12 356.21274073162698 10.8674937561012008 32.7778199999999984 18.3826469999999986 1.41077969999999997 0 1.82710649999999997 0.828323359999999953 0.998783100000000035 \N \N 0 \N \N \N NOT_AVAILABLE 151.611488857172986 -62.6228595502530965 22.7712078207182991 -12.3517733738326996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480373396850048 2505480373396850048 593167133 2015.5 25.6376627907031995 10.6366996463129002 -2.62644224368728985 3.98912096504643987 \N \N \N \N \N \N \N 0.728098029999999952 \N \N \N \N \N \N \N \N \N 49 0 48 1 1.99514419999999992 63.4151001 0 0 3 false 0.017629154000000001 \N \N 0.0207246110000000004 6 6 62.8521840000000012 0 6 false 48 72.8815762481905978 2.28287016644679985 31.9253998 21.0318219999999982 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.639290310126995 -62.6142208806772018 22.786610716994101 -12.3551974666040998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432235403336320 2505432235403336320 821037364 2015.5 25.6835336957480003 0.508766530654956028 -2.67400606948561981 0.371461844534543006 1.08127117197635991 0.57596470249967302 1.87732199999999994 -0.0314930343197288992 1.07025749701449002 -6.59127324180125029 0.66685570376070602 0.0275917019999999992 0.3414489 -0.0335324150000000029 0.125493569999999999 -0.230816319999999991 0.157879190000000003 0.270842340000000015 -0.0721609099999999948 0.0356358030000000006 0.135081800000000002 140 8 139 1 3.6394126 201.968994 1.37641357576102008 1.99118223259375005 31 false 0.102567459999999999 1.4389169270970199 0.121164894574608994 -0.101865070000000002 16 10 0.905469500000000038 0 17 false 138 262.023434214637973 1.71863510515109996 152.460007 19.6425149999999995 14 73.6663146309816028 7.26306500420261969 10.1425929999999997 20.6832160000000016 14 322.590294999815001 7.04577698555308007 45.7849160000000026 18.4902920000000002 1.5122945000000001 0 2.19292450000000017 1.04070090000000004 1.1522235999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.773680736308989 -62.6375370056112004 22.812372921732301 -12.4162613828668995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432304122812928 2505432304122812928 309318924 2015.5 25.7212084507437986 0.193136952774689008 -2.67445905600296019 0.148176586253566001 0.218263143681327987 0.210255433699411992 1.03808560000000005 0.607539050101885025 0.466882877360236981 -12.6142755375358995 0.289601153222072027 0.0553719140000000012 0.165963470000000002 -0.114912979999999998 0.0694450439999999974 -0.105102760000000003 0.0436283299999999999 0.18830812999999999 -0.0185657439999999986 0.107671530000000001 0.0071097570000000004 149 0 148 1 -0.523345999999999978 133.692001 0 0 31 false 0.523217599999999949 1.63135238652431003 0.052291385586270403 -0.122591495999999994 17 10 0.41248435 0 17 false 148 685.859555312957013 1.91594179560670996 357.975006 18.5977780000000017 17 363.719693992884004 6.10889287780146972 59.5393800000000013 18.9494700000000016 15 483.486520513380981 10.4067409160085997 46.4589769999999973 18.0509589999999989 1.2352474 0 0.89851190000000003 0.35169220000000001 0.54681970000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.847997467475011 -62.6217522114797021 22.8480495190732 -12.4304948737076 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432411497143936 2505432411497143936 1326518090 2015.5 25.7503794030693989 0.0457948244249260991 -2.66953923368682 0.0327694343996361992 1.02183557896056998 0.047707546988290099 21.4187410000000007 8.85242264422173974 0.102046685859933997 6.39076945804399976 0.0676448421809583006 0.0182544660000000004 0.249716980000000005 -0.176378499999999994 0.0971162500000000012 -0.0771894800000000048 0.104872524999999994 -0.0247712619999999988 0.006735558 0.0536777079999999976 0.0853731300000000054 162 0 161 1 1.17657900000000004 176.992996 0.0864518837002595936 0.520558008400166972 31 false 10.7402460000000008 1.56394363760783994 0.0122305083522985993 -0.0816446700000000025 18 10 0.0997118500000000046 0 18 false 160 9656.95251910220031 6.72487736060342023 1436 15.7262660000000007 18 4792.2152988316202 20.8124689680505988 230.256930000000011 16.1500470000000007 16 7040.37194152065968 16.7707796435643992 419.799930000000018 15.1429310000000008 1.22529210000000011 0 1.00711630000000008 0.423781399999999975 0.58333489999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.900542421902003 -62.6047494984789026 22.8776558888908994 -12.4366101383939007 100001 5325.66992 5269.45996 5400 0.0329999998 0.00800000038 0.202299997 0.0149999997 0.00430000015 0.113799997 200111 0.72525512999999997 0.705425599999999986 0.740808070000000041 0.381216940000000004 0.34182918000000001 0.420604699999999998 +1635721458409799680 Gaia DR2 2505479170805947392 2505479170805947392 1213564766 2015.5 25.6726968300977987 0.287976906559335999 -2.66721002692590003 0.20904316148726601 0.0946436937645006998 0.323714217074076993 0.29236804999999999 8.54623998209219948 0.582366165028896043 -17.0984975282059004 0.427929001545409027 -9.37797000000000061e-05 0.398132099999999989 -0.0835756140000000064 0.0641991650000000025 -0.203954579999999996 0.0407260659999999983 -0.0136239269999999992 0.00102759219999999998 0.0868507200000000062 0.158106830000000004 142 0 142 0 0.0500543999999999989 137.162003 0 0 31 false 0.274633799999999983 1.65405546020807992 0.073231184999551599 -0.127178530000000012 16 10 0.519073670000000043 0 16 false 142 441.772962621718023 1.9028497024822999 232.164001 19.075367 12 230.544698605349993 16.2760248839420001 14.1646804999999993 19.4445000000000014 12 339.85126707200601 10.6683326588479002 31.8560809999999996 18.4336990000000007 1.29115190000000002 0 1.01080130000000001 0.369132999999999989 0.641668299999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.746060985982012 -62.6360505377441967 22.8046168787668009 -12.4059661671615995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479273885163008 2505479273885163008 782354577 2015.5 25.6886409893730985 0.249817620892125003 -2.65969549630930979 0.202937072856854001 0.145175821796160009 0.281666698887932998 0.515417039999999993 0.437617595078005017 0.595436063931166992 -0.166945736827815994 0.393607973055131011 0.139886840000000012 0.16507208000000001 -0.0505008180000000029 0.0992505000000000054 -0.118075765999999999 0.101591915000000005 0.190180879999999997 -0.0687877459999999968 0.0683051939999999996 0.116672129999999999 159 0 159 0 1.27757640000000006 176.794998 0 0 31 false 0.274980300000000011 1.6583729985684299 0.0706612682776013024 -0.0837404300000000046 18 10 0.527026800000000017 0 18 false 158 434.660748097243015 2.3047160221639702 188.595993 19.0929889999999993 16 310.18597392770198 14.6573257642619001 21.1625210000000017 19.1223339999999986 15 299.177424151725006 10.4872599487393998 28.5277020000000014 18.5720980000000004 1.40192880000000009 0 0.550235750000000023 0.0293445589999999992 0.520891199999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.770323128106014 -62.6224228483779015 22.8226104619146994 -12.4048222334703997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479273885160704 2505479273885160704 1607211216 2015.5 25.6857371793970017 0.0510318385934014976 -2.65452972102443008 0.0385127830567991991 4.86641809984604023 0.0546236956206710006 89.0898739999999947 36.4820829464353977 0.108734062193813 -10.522071367593 0.0801013801116828988 0.0888450739999999961 0.324097929999999979 -0.156943300000000008 0.0486691740000000025 0.0880432300000000001 0.0419766270000000025 -0.181875779999999987 0.0191422920000000017 0.0466278899999999982 0.0731311399999999973 151 151 145 6 15.411835 586.914001 0.119549695333700995 4.79188167053809977 31 true 49.4668599999999969 1.59417962331799989 0.0147841678747262003 -0.0491023059999999983 17 10 0.0644824950000000008 0 17 false 137 1796235.8428642801 513.042315434581951 3501.1499 10.0524570000000004 17 957460.283370043966 2879.5405682197802 332.504520000000014 10.3985859999999999 17 1180043.37730359007 1884.68285423756993 626.123050000000035 9.58217499999999944 1.18999049999999995 0 0.816410999999999998 0.346129420000000021 0.470281600000000022 40.1732210852089011 1.05443422116758989 5 5750 4.5 0 NOT_AVAILABLE 151.759801112430011 -62.6190045537736992 22.821789047642401 -12.3989523420653995 100001 5803 5704 5909.16992 \N \N \N \N \N \N 200111 1.71096110000000001 1.65003370000000005 1.7708682 2.99078540000000004 2.9456500000000001 3.03592059999999986 +1635721458409799680 Gaia DR2 2505479587417922560 2505479587417922560 549742391 2015.5 25.6736209756417004 0.108256427794672996 -2.6279354187300501 0.0789692128898373952 3.75180248171627984 0.115671606809111996 32.4349479999999986 -9.37206551654893083 0.246928989874547006 -28.1601828951092017 0.15329291060014999 0.048441175000000003 0.224792380000000014 -0.126679550000000002 0.103101470000000001 -0.0897944999999999993 0.103612640000000006 0.115738199999999999 -0.0154085969999999996 0.0827960799999999941 0.0638144540000000066 160 0 160 0 1.72575349999999994 186.658005 0.271586442556291996 1.14273577879174004 31 false 1.67487169999999996 1.1967496099528101 0.0276367321220430985 -0.0877286339999999998 18 10 0.222009910000000005 0 18 false 160 1894.34904020457998 3.00959517785000985 629.437012 17.4947170000000014 16 328.170480259857015 8.41877991790619973 38.9807660000000027 19.0611400000000017 17 2571.86369946783998 11.8872098329056008 216.355549999999994 16.2363 1.53088690000000005 0 2.82484050000000009 1.56642339999999991 1.25841709999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.711225275146006 -62.6001805603058017 22.8202556204632003 -12.3697717950743993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479961083782400 2505479961083782400 529047568 2015.5 25.6908529139205015 1.14985621423378004 -2.62358936206442017 1.16134896863942005 0.957572216198899984 1.37517129950156991 0.696329399999999987 5.5300017253611502 2.64620143116359996 -0.852662725917733955 3.49169733033004004 0.0946473260000000038 0.318672630000000012 -0.296249749999999978 -0.0016573534 -0.220954850000000008 -0.0635887759999999996 -0.344750400000000012 0.0439622139999999995 -0.0790626700000000016 0.473914300000000011 89 0 86 3 0.70513720000000002 89.5955963 2.01779947527775017 1.15947977823019999 31 false 0.0239884780000000006 1.44524170807282992 0.318588348296638013 0.0853000200000000042 10 8 3.37832469999999985 0 11 false 89 89.9511664291947 1.27439964691054008 70.5831985 20.8033490000000008 7 80.2473256256807019 7.59411021974144962 10.5670479999999998 20.5903109999999998 8 67.4517756469049061 6.07366834131823019 11.1056069999999991 20.1894360000000006 1.64199209999999995 0 0.400875099999999984 -0.213037489999999996 0.61391260000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.740953197347011 -62.5888680955605992 22.8382818448546985 -12.3720465306678005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479759216614272 2505479759216614272 1023548753 2015.5 25.6983916190256991 0.0379095005328285023 -2.62463000582823991 0.0245358184616760004 1.97762599319475996 0.0348542182090844019 56.7399330000000006 -2.92400139177301011 0.0840834081468831013 -8.39236966692813979 0.0500739692137862 -0.0950425039999999999 0.211137849999999988 -0.537714600000000043 0.195102899999999996 0.16549317999999999 0.26249699999999998 -0.293285399999999974 0.226040629999999992 -0.0443599819999999992 -0.106817739999999994 154 90 153 1 4.02450560000000035 227.710007 0 0 31 true 166.679100000000005 1.62342040113299002 0.00846780190283409964 -0.0405862780000000034 18 10 0.0683230459999999984 0 18 false 149 126338.900893255995 48.9911467887867005 2578.81006 12.9345230000000004 16 71057.1738900314958 87.6746727195905038 810.46410000000003 13.2223679999999995 16 80703.4184999293939 106.733230484196994 756.122700000000009 12.4946900000000003 1.20121820000000001 0 0.7276783 0.287845599999999979 0.439832700000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.756696232155008 -62.5865739061051016 22.8450628865480994 -12.3757781389232004 100001 6340.66992 5978.72998 6766 0.0340000018 0.00439999998 0.105999999 0.0167999994 0.00260000001 0.0640999973 200111 0.926990300000000045 0.814106100000000055 1.04262159999999993 1.25136709999999995 1.21257670000000006 1.29015740000000001 +1635721458409799680 Gaia DR2 2505432510280793856 2505432510280793856 691213882 2015.5 25.7484444538740007 6.77629228603490041 -2.65861547476748994 8.26176718429186074 \N \N \N \N \N \N \N 0.800626159999999976 \N \N \N \N \N \N \N \N \N 44 0 44 0 26.5025769999999987 1047.58997 16.5492044113388985 98.3051704551404981 3 false 0.00338052260000000016 \N \N 0.299340200000000001 7 7 16.1234840000000013 0 9 true 59 181.591204069366995 3.23086841588244988 56.205101 20.0406280000000017 5 259.927371148471991 15.6184230190145996 16.6423570000000005 19.3142589999999998 4 456.978310709880986 5.96176733318255003 76.6514800000000065 18.1121799999999986 3.94790980000000014 0 1.20207789999999992 -0.726369860000000034 1.92844769999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.88651263719899 -62.595728485332998 22.8799185709389015 -12.4257389854801001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432716439226112 2505432716439226112 1548429971 2015.5 25.7442804296373993 0.0771653427149953941 -2.64613308807366998 0.0515522103999025982 0.638287041085168982 0.0717304282122139952 8.89841400000000071 3.09488596098651003 0.183898381030562996 -2.68031733609833989 0.113421051373611997 -0.0635103060000000025 0.116013610000000003 -0.486404700000000023 0.150974749999999991 -0.0463393260000000001 0.18079342000000001 -0.124806449999999999 0.187925530000000007 -0.0109430810000000003 0.00837396399999999937 157 0 156 1 0.316849829999999999 155.891006 0 0 31 true 4.3388460000000002 1.51147393967633992 0.0183322196445112016 -0.0290052979999999988 18 10 0.175557419999999992 0 18 false 152 4090.06029003956019 3.62946144024434014 1126.91003 16.6590419999999995 14 1953.79974789517996 10.3231464554023002 189.263980000000004 17.1241869999999992 14 3122.02156201457001 9.53113737114895976 327.560240000000022 16.0258299999999991 1.24101379999999994 0 1.09835820000000006 0.465145099999999978 0.633213040000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.866668061972007 -62.5862596223835013 22.8806455053103015 -12.4126009509473008 100001 5025.56982 4904.22998 5261.66992 0.187000006 0.147300005 0.396699995 0.104000002 0.0759000033 0.200499997 200111 0.870432560000000022 0.794069699999999989 0.914037800000000011 0.435417979999999982 0.332334899999999989 0.538501099999999955 +1635721458409799680 Gaia DR2 2505479789282781696 2505479789282781696 236950975 2015.5 25.7095523167178008 1.83162240588587011 -2.62634941113008002 0.972682600573314016 \N \N \N \N \N \N \N -0.269268899999999978 \N \N \N \N \N \N \N \N \N 100 0 99 1 -0.39743233 88.0157013 0 0 3 false 0.0263229809999999988 \N \N -0.0984839299999999973 12 7 4.96058999999999983 0 12 false 100 97.1250368700483051 1.20526133354385001 80.584198 20.7200370000000014 6 55.3815464105147015 10.2430907589192994 5.40672200000000025 20.9929750000000013 8 119.007217077464006 3.18404760727294001 37.3760800000000017 19.5729870000000012 1.79550779999999999 0 1.41998859999999993 0.272937770000000024 1.14705089999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.780165522381992 -62.5833357269926012 22.855035039082999 -12.3814686804497995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432892533480576 2505432892533480576 1389448612 2015.5 25.7403443185219984 0.396968620274481987 -2.63555620880912 0.345810834807506018 1.13735957686026001 0.453578726351466011 2.50752400000000009 -7.17996993555929031 0.913447670988093985 -16.4103443725509983 0.625436298701693039 0.19274092000000001 0.204374489999999992 -0.189014939999999992 0.144491060000000004 -0.116637975000000005 0.0945689599999999936 0.268765330000000024 0.0810325499999999949 0.102988940000000001 0.133603200000000005 165 0 165 0 -0.383358360000000009 152.593002 0 0 31 false 0.104660030000000001 1.32789248570820995 0.105482239692863994 -0.036714666 19 10 0.812305330000000048 0 20 false 166 217.609969077708001 1.26737430902560999 171.701004 19.8441699999999983 13 74.7606136749205064 6.10082205597381044 12.2541869999999999 20.6672060000000002 14 279.123346267514023 11.1560938875190008 25.0198099999999997 18.6474299999999999 1.62623049999999991 0 2.01977539999999989 0.823036199999999996 1.19673919999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.84906449331001 -62.5784095524660984 22.8808733755928984 -12.4013190660221007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432892533480192 2505432892533480192 209024923 2015.5 25.7398930751954005 0.0407046729984616024 -2.62787998552711999 0.0230218388868310003 3.79675503223705002 0.0344690937121927971 110.149540000000002 73.7456989549336015 0.0832656758915697043 3.44447252831131978 0.0463886837131854968 -0.198176219999999986 0.303009479999999998 -0.471460040000000025 0.218554899999999996 -0.0229895950000000016 0.259844120000000012 -0.200548260000000006 0.107272803999999999 0.047947484999999998 -0.0820484999999999964 132 0 132 0 -1.0506046 110.373001 0 0 31 false 41.2040819999999997 1.46338377739108005 0.0088695953045600795 -0.156887560000000009 15 9 0.0899826400000000026 0 16 false 133 32166.2173730838003 12.9305207592668996 2487.62012 14.4198660000000007 16 12009.2442284553999 23.8244527318293997 504.072200000000009 15.1525990000000004 16 29194.2686245240984 46.0867713254340003 633.463100000000054 13.5986759999999993 1.28095610000000004 0 1.55392360000000007 0.732733700000000043 0.821189900000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.841002327729001 -62.5716761418920981 22.8833273741892995 -12.3940126941336004 100001 4352.6001 4220.74023 4529.58008 0.301800013 0.189700007 0.662999988 0.171299994 0.0847000033 0.345999986 200111 0.610733199999999976 0.563940600000000014 0.649488329999999947 0.120612380000000005 0.118038415999999993 0.12318635 +1635721458409799680 Gaia DR2 2505431685647444608 2505431685647444608 1154811116 2015.5 25.7708584391347983 0.778587773645570969 -2.67475665098442006 0.73586877307927101 2.43263626508325981 0.902799043621919983 2.69454899999999986 5.99459285243324036 2.17331906994371993 -33.9827541357551013 1.94122040660869 0.28485385000000002 -0.111789680000000002 0.191847430000000013 -0.230148569999999997 -0.0358109500000000011 -0.181166860000000013 -0.34290290000000001 -0.32990214000000001 0.189703790000000011 0.175042749999999997 122 0 121 1 -0.922061259999999994 101.902 0 0 31 false 0.0354761300000000016 1.43678002703238006 0.233363796474437002 -0.100858169999999997 14 8 2.00125799999999998 0 14 false 122 111.165953606265006 1.59148465521275995 69.850502 20.5734369999999984 11 41.3180057075508032 10.0492663512512994 4.11154460000000022 21.311039000000001 13 187.606345600548991 10.8836398660764999 17.2374630000000018 19.0788019999999996 2.05930280000000021 0 2.23223690000000019 0.737602230000000025 1.49463459999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.945535975922013 -62.6006216730228005 22.8951839508438013 -12.4489685830452999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432441561315840 2505432441561315840 968081363 2015.5 25.7679711945886005 0.476533849268565013 -2.66830960467160994 0.389883855667048973 0.393543281792789024 0.541264623331223049 0.727081100000000036 13.165683614053 1.14642899985477009 0.255712290636673001 0.731416278656335961 0.148194939999999997 0.151272479999999987 -0.0677612900000000018 0.0893926500000000041 -0.100488869999999994 0.0597536399999999968 0.216038179999999996 -0.0365434899999999979 0.127034050000000009 0.0708508999999999944 159 0 158 1 2.31302260000000004 196.345001 1.27258447787531992 1.22018064107860003 31 false 0.0753545099999999995 1.5057890275738699 0.131593695608673011 -0.0857632700000000026 18 10 1.00765229999999995 0 18 false 157 199.235857729451993 1.23252671396222002 161.647995 19.9399470000000001 17 93.0916067266793021 6.93910874353079965 13.4154990000000005 20.4291109999999989 17 200.035291014671998 10.0958996568343995 19.8135189999999994 19.0091530000000013 1.4712558 0 1.41995809999999989 0.489164350000000026 0.930793760000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.933831984067012 -62.5960534837600022 22.8948582829865011 -12.4419129935489998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505432544640883456 2505432544640883456 25798674 2015.5 25.7733353682783992 0.794382591498496993 -2.65163232842889984 0.779307228434039989 2.31709196313110022 0.874178247512650053 2.65059449999999996 10.9792839343914004 1.84497739858616994 12.5986332714376008 1.96645538066692005 0.254960330000000013 0.259436940000000005 -0.220655739999999989 -0.0457988159999999991 -0.0294978190000000015 -0.0600447399999999992 -0.259746670000000013 0.0499186029999999989 0.0193325370000000003 0.325076069999999995 135 0 134 1 6.12244800000000033 253.399994 3.36502367691295978 4.45132823692117974 31 false 0.0289987080000000015 1.31620305468651 0.242187999715474001 0.00635661319999999974 16 9 1.93984620000000008 0 16 false 137 135.862059102448995 1.17509236736417999 115.617996 20.3556199999999983 11 21.0650239561405996 5.41565574771242009 3.88965339999999982 22.0424819999999997 15 216.213625913980991 12.0127665533157 17.9986530000000009 18.9247130000000006 1.7464674 0 3.11776920000000013 1.686863 1.43090629999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.928682790982009 -62.5786976813252025 22.9062274296762993 -12.4283638255297006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464123163572608 2481464123163572608 439574565 2015.5 25.4904234113529 0.0331747014873721019 -2.61899523965518011 0.0243195174822002994 0.805870947036510965 0.0362588079748583023 22.225522999999999 9.69682741335273946 0.0733758677912910023 -10.8987569148409005 0.0494576660300247023 0.057741538000000002 0.20183994999999999 -0.315082069999999992 0.114592715999999997 0.00594464220000000005 0.15097445000000001 -0.155808819999999987 0.100109580000000004 -0.00657426150000000025 0.124425075999999996 123 0 123 0 -0.921156470000000005 103.793999 0 0 31 true 44.1841099999999969 1.60597892538175002 0.00925193177618401086 0.0263105219999999994 14 8 0.0764448640000000013 0 14 false 121 34931.6093968265995 11.0771583881907993 3153.47998 14.3303189999999994 13 19256.3129681961 43.3741941069274972 443.957820000000027 14.6399554999999992 11 22916.9409923118983 38.2156515819376992 599.674200000000042 13.8615279999999998 1.20730920000000008 0 0.778427100000000038 0.309636120000000015 0.468791000000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.342804471834 -62.6701295540002974 22.6493790834276005 -12.2942464900038999 100001 5847.16016 5339.91016 6139.12012 0.321700007 0.0562000014 0.531400025 0.160699993 0.0469000004 0.290399998 200111 1.41739890000000002 1.28579249999999989 1.69947720000000002 2.11572670000000018 1.89437649999999991 2.33707699999999985 +1635721458409799680 Gaia DR2 2481465291394676864 2481465291394676864 731454176 2015.5 25.5011467588394005 0.308639111153308998 -2.60102554323297008 0.248261092701588998 2.77134981872328989 0.359779359058160997 7.70291499999999996 6.90398793731151983 0.72137241378602901 11.0152265987078 0.442159549054728984 0.197370070000000009 0.153615969999999991 -0.128194239999999987 0.155533179999999993 -0.164806530000000007 0.1730516 0.250494779999999972 -0.0112489930000000005 0.0411092559999999968 0.195291490000000012 139 0 138 1 2.62325069999999982 179.718994 0.990710879134911959 2.33123599740182996 31 false 0.226444200000000012 1.2774293972125399 0.0813126097335668957 0.00792205699999999971 16 10 0.643260100000000001 0 16 false 138 426.720839278287997 1.47630697785020004 289.04599 19.1130069999999996 14 97.8569517068420964 8.44135473891902954 11.5925650000000005 20.3749080000000014 14 528.198095497264035 6.76392432505627017 78.0904799999999994 17.9549270000000014 1.46713019999999994 0 2.41998099999999994 1.26190190000000002 1.15807909999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.347342845871992 -62.6493132821969994 22.6663334072542995 -12.2814702512238991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464428105870208 2481464428105870208 1396711408 2015.5 25.5113487686815006 0.0839239827766534024 -2.61880263747841013 0.0590635418105767973 0.710153257560242945 0.0883721843088570019 8.03593599999999952 -11.3499423091524001 0.200253009217174011 -57.202353352322497 0.114539942167980996 0.0290436170000000007 0.0290114079999999989 -0.347386330000000021 0.161526260000000005 -0.144177119999999992 0.211506080000000013 0.0710649899999999946 0.105699070000000006 -0.0154521064999999999 0.109641520000000006 132 0 129 3 -0.56717519999999999 114.647003 0 0 31 false 4.07538100000000014 1.56834194866926002 0.0204328800290510017 -0.0313699169999999972 15 9 0.185770149999999995 0 15 false 127 3653.29384657488981 4.06602338205289016 898.492981 16.7816539999999996 14 1856.70812581613995 15.7061976853890997 118.215000000000003 17.1795299999999997 15 2571.54512404375009 13.2907290870432995 193.484129999999993 16.2364350000000002 1.21212629999999999 0 0.943094250000000023 0.397874830000000013 0.545219400000000021 \N \N 0 \N \N \N NOT_AVAILABLE 151.383851587396009 -62.6610884565252988 22.6693492143383999 -12.3017485000861999 100001 5413.75 5373.75 5514 0.108800001 0.0160000008 0.222299993 0.0590000004 0.00789999962 0.122100003 200111 0.617713029999999996 0.595455940000000017 0.626943299999999981 0.295298369999999977 0.219115360000000009 0.371481359999999983 +1635721458409799680 Gaia DR2 2481464428106124800 2481464428106124800 1199779703 2015.5 25.5097264737321012 0.706241305653677043 -2.61435722814503979 0.593100541672626047 7.14930017042459998 0.814500790343583025 8.77752399999999966 -24.4950011033504005 1.64789964986755999 -27.5137580924880005 1.1297028452283 0.17785630999999999 0.115035589999999993 -0.155844289999999996 0.154568840000000013 -0.127217019999999986 0.190398000000000012 0.148067730000000009 0.00325395029999999991 -5.04100969999999988e-05 0.203501480000000012 123 0 123 0 2.66008570000000022 162.936005 2.00380380889350995 1.80553275866701002 31 false 0.0444425700000000007 0.927123995818528002 0.18835597598850301 -0.0104471210000000002 14 9 1.4771472000000001 0 14 false 122 139.622303514616988 1.30438402919780994 107.041 20.3259800000000013 8 42.2490382616164979 13.0734011876643006 3.23167919999999986 21.2868460000000006 13 235.545544982769002 11.3680018001254997 20.7200489999999995 18.8317340000000009 1.98961469999999996 0 2.45511249999999981 0.960866899999999968 1.49424549999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.376548715272008 -62.6577510415110979 22.6694783067481005 -12.2970185834534007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465360113895552 2481465360113895552 113021014 2015.5 25.4926351980962984 0.709389388437223989 -2.58325958350232021 0.652243015092048961 2.38259538899725998 0.837235791179291033 2.84578780000000009 10.8515761085769995 1.49794231874353989 -10.1625399728752992 1.61520153093788998 0.261242719999999984 0.426623340000000018 -0.142382960000000003 -0.105948760000000003 -0.07337399 -0.161339499999999997 -0.398921430000000021 -0.0306928849999999996 0.00248748019999999988 0.458248529999999987 105 0 103 2 0.467400130000000025 103.995003 0 0 31 false 0.056961860000000003 1.37975881976574 0.226171274263814004 0.00835238999999999947 12 9 1.67250349999999992 0 12 false 103 135.599871437893 1.31074076563423003 103.453003 20.3577179999999984 7 52.6240896737623984 17.355728347541401 3.0320876000000001 21.0484280000000012 11 162.828102881331006 9.1723302719683506 17.7520980000000002 19.2325969999999984 1.58888199999999991 0 1.81583019999999995 0.690710069999999954 1.12512020000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.314201351531011 -62.6368237863402015 22.6649208418894013 -12.2618227931156998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464634264314624 2481464634264314624 875111811 2015.5 25.5215572144829999 0.406396040360621991 -2.59691623002917016 0.319170944849732019 0.21850465343220099 0.47284057243227301 0.462110640000000017 4.18086542296448993 0.887619232176940054 -0.362047026251800019 0.556803167368265961 0.210986570000000012 0.283602359999999998 -0.152844619999999987 0.118687390000000004 0.0250235099999999988 0.0446611749999999974 0.136758669999999999 0.0792029600000000028 0.210046010000000005 0.109199959999999999 126 0 124 2 0.78601960000000004 130.830994 0 0 31 false 0.143518800000000002 1.34796029089079994 0.109109311461336997 0.0340815449999999978 15 10 0.784842200000000045 0 15 false 122 246.99711051693501 1.50054471729386996 164.604996 19.7066359999999996 13 134.001429856854998 9.1223507017276404 14.6893530000000005 20.0336150000000011 12 146.637087103031007 7.08817773686925001 20.6875570000000018 19.346309999999999 1.13620159999999992 0 0.687305449999999984 0.326978680000000022 0.360326770000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.383729797640996 -62.6369428913292978 22.6872862972047002 -12.2851395167283002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464668624058880 2481464668624058880 635346099 2015.5 25.5256710227540005 0.381534167980045025 -2.58483970982464983 0.32469825897969401 1.04368340005254989 0.442363339945618994 2.35933519999999985 -1.13439641122335999 0.889035907902810951 -2.67418089339739984 0.569864624466800973 0.254743930000000007 0.163933460000000003 -0.0791030600000000028 0.166307719999999992 -0.104580980000000004 0.161970730000000007 0.271873770000000015 -0.0197719880000000008 0.0781512199999999935 0.197908880000000009 130 0 127 3 2.35206630000000017 161.746002 1.19314577026706004 2.18016900002282021 31 false 0.151730429999999999 1.68068750672601008 0.0992260457534085011 0.0289734840000000007 15 10 0.792974500000000027 0 15 false 127 333.246850989445988 1.91144386620191997 174.343002 19.381450000000001 14 217.261275589196998 4.87100476294263007 44.6029699999999991 19.5089320000000015 15 186.445251341230005 5.71453466470418991 32.6265000000000001 19.0855400000000017 1.21143390000000006 0 0.423391340000000005 0.127481459999999991 0.295909880000000014 \N \N 0 \N \N \N NOT_AVAILABLE 151.38067488384101 -62.6242638228733028 22.6957384045543016 -12.2754171285804006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464256309163648 2481464256309163648 1209718176 2015.5 25.5357292678632 0.991593505419384957 -2.62083760857523007 1.17371316475921006 3.07083441762609022 1.05074462386463008 2.92253160000000012 55.6922834120287007 2.27690708166597 37.3767087361489985 2.6518447587468601 0.553773639999999956 0.268396560000000006 -0.166740570000000005 -0.141534450000000006 0.0515126919999999988 -0.142781540000000012 -0.310875000000000012 -0.0167206639999999997 0.00405441550000000019 0.560968000000000022 93 0 92 1 0.812120799999999976 97.4375992 0.870697183769545968 0.229461807347272007 31 false 0.0303626489999999985 1.01869782078974991 0.334387789437644023 0.138810719999999999 11 9 2.74774239999999992 0 11 false 93 93.897683731093494 1.32625312267735995 70.799202 20.756730000000001 8 27.1142237328704994 7.14163829756532031 3.79663919999999999 21.7683940000000007 10 137.212502013961995 5.24314427176603992 26.1698899999999988 19.4184359999999998 1.75006149999999994 0 2.34995839999999978 1.01166529999999999 1.33829310000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.433735887607014 -62.6525848331724973 22.6917684804366004 -12.3125891962741996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464569839912192 2481464569839912192 826027481 2015.5 25.5344812189675991 0.815274911849912964 -2.60432074672324987 0.883475210895175 0.349782812320687975 0.94225732441615595 0.371217940000000024 0.923623512396779978 2.07267527998930001 3.06941080976851 2.4318473353166099 0.38126597000000001 0.174606860000000003 -0.11390894 -0.126832649999999991 -0.0582325299999999976 -0.14136375000000001 -0.30327672 -0.102438749999999995 -0.0201116040000000017 0.482089969999999979 95 0 95 0 1.51607080000000005 111.141998 2.25517932932462006 1.57582326917877991 31 false 0.0369328670000000012 1.79814072045024997 0.255147855346258001 0.0786389900000000058 11 9 2.44322319999999982 0 11 false 94 116.657332125245006 1.14837906012088009 101.584 20.5210860000000004 6 78.9679777144721982 19.6315122624298013 4.02251099999999973 20.607761 8 84.3835189935551 12.8014333572681007 6.59172440000000037 19.946276000000001 1.40026769999999989 0 0.661485699999999954 0.0866756439999999961 0.574810000000000043 \N \N 0 \N \N \N NOT_AVAILABLE 151.416002577439997 -62.6381638491249007 22.6967919631191002 -12.2967692144263996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464325026740352 2481464325026740352 1148973461 2015.5 25.5630604505996999 0.845810765504972029 -2.61627820154552992 1.02128750989274009 -0.166609210002311992 1.02432405015715 -0.162652839999999993 1.5142474466009499 2.63177047448875978 -11.6754447002989998 3.83987907191376987 0.474483070000000007 0.0790681599999999984 0.0386663750000000028 0.040344060000000001 -0.144727839999999996 0.102938760000000004 0.0982841400000000059 -0.319732550000000004 -0.270144249999999975 0.692692940000000035 77 0 76 1 0.222524329999999992 73.0036011 0 0 31 false 0.0415278150000000026 1.46161684354318 0.303157443134497995 0.205233100000000002 9 8 3.81141329999999989 0 9 false 76 104.347388060135003 1.27753380010005002 81.6788025 20.642161999999999 7 69.3639847935641001 12.8570391056898004 5.3950199999999997 20.7485520000000001 8 85.3638775495652027 11.552083940767 7.38947869999999973 19.9337349999999986 1.48281489999999994 0 0.814817400000000025 0.106389999999999998 0.70842740000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.48328510857101 -62.6368421671043976 22.7194747823867012 -12.3183776995469998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465458898046336 2481465458898046336 1423849734 2015.5 25.5006369341788002 14.7413408226704004 -2.5682232303075998 5.90579877437771028 \N \N \N \N \N \N \N 0.259402899999999992 \N \N \N \N \N \N \N \N \N 43 0 43 0 19.118739999999999 563.085022 15.2281814484364997 37.5136489683505019 3 false 0.0037039693000000002 \N \N -0.136194260000000011 6 5 844.134699999999953 0 7 true 53 121.204349389704007 3.42329360154867013 35.4057999 20.4795699999999989 6 171.673425194536009 26.3811481398721988 6.50742799999999999 19.7646310000000014 5 358.441513579327989 6.81612198025374028 52.5873100000000022 18.3758739999999996 4.37372880000000031 0 1.38875769999999998 -0.71493910000000005 2.10369679999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.316101357842001 -62.619817102378498 22.6781821939825008 -12.2507750689825006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484634004354816 2505484634004354816 113065870 2015.5 25.523980663847901 0.134129612529677006 -2.56630321640460002 0.107518673954612995 0.470587441091609993 0.156143875938703991 3.01380660000000011 -1.67388439511456011 0.317306932848531009 -6.53430578583263966 0.204244007904562014 0.163507220000000009 0.150676370000000004 -0.103208750000000002 0.112780414999999995 -0.166136000000000006 0.131826200000000004 0.173811359999999998 -0.0428257439999999989 0.0383504780000000003 0.177917500000000006 139 0 137 2 0.658916649999999993 142.296005 0 0 31 true 1.17529609999999995 1.62849140765860989 0.0357685340115362974 0.00921965100000000058 16 10 0.285173400000000021 0 16 false 136 1256.12925546230008 2.28498468726942017 549.731995 17.9407800000000002 15 592.791733820301033 11.5212826702040001 51.4518849999999972 18.4191320000000012 15 967.311596694780974 9.25751480420128914 104.489339999999999 17.2980039999999988 1.24199269999999995 0 1.12112809999999996 0.478351599999999988 0.642776499999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.360252270039013 -62.6081946541014034 22.7010993942546015 -12.2575562714067008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480510835746560 2505480510835746560 1313273748 2015.5 25.5985594377730017 0.285443809660948011 -2.61471888235013017 0.22587247695610399 1.68380752561436009 0.328771919329747975 5.1215067000000003 13.1980581199608 0.736387589932347986 -4.26761773328818972 0.39859498376423802 0.269916449999999974 0.0322549899999999973 0.204035820000000007 0.219068499999999999 -0.117811529999999998 0.270282240000000007 0.373391570000000006 -0.307694579999999995 -0.0214553619999999987 0.208247769999999999 129 0 129 0 2.90429190000000004 174.751007 0.897458891561873973 2.61780820678934978 31 false 0.302814199999999978 1.28026845175164006 0.068179684930827697 -0.040210362999999999 15 9 0.664132399999999956 0 15 false 128 575.503218823030011 1.60046395723358992 359.584991 18.7882460000000009 12 126.881818775089997 14.8345552529588005 8.55312600000000067 20.0928900000000006 12 753.633605835745016 12.7798786750978 58.9703250000000025 17.5690199999999983 1.52999219999999991 0 2.52387050000000013 1.3046435999999999 1.21922679999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.551612471187013 -62.6203149873107989 22.7538229926501003 -12.3299507182764998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480618210073088 2505480618210073088 1012381777 2015.5 25.6045101219539006 0.0770539300824013978 -2.60268760556590983 0.0614071625268541033 0.388867772856608007 0.0844215005334135044 4.60626460000000026 -0.866934863520690047 0.179452162986221991 -3.19750333017723998 0.119450284289657996 0.151329519999999995 0.212493700000000008 -0.104838680000000004 0.178619799999999995 -0.0995984300000000017 0.241979329999999992 0.245999169999999989 -0.0786850699999999958 -0.0552370000000000014 0.201908279999999996 141 0 140 1 -0.0456257499999999996 133.589005 0 8.64845076549420973e-16 31 false 3.84521580000000007 1.53232825749926005 0.0197736537589239016 -0.0151212699999999992 16 10 0.167107389999999995 0 16 false 140 3509.79436598887014 3.25551739268076012 1078.10999 16.8251610000000014 12 1805.60652359064011 14.1461779033715995 127.639174999999994 17.2098310000000012 13 2491.67442349840985 16.6609002495770007 149.552220000000005 16.2706899999999983 1.22436830000000008 0 0.939140300000000039 0.384670259999999986 0.554470059999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.552138084473995 -62.6068974446515014 22.7640046750500993 -12.3209426091642005 100001 5242.87012 5162.6001 5524 0.412999988 0.196899995 0.560100019 0.203999996 0.104000002 0.26879999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480613915019648 2505480613915019648 295249924 2015.5 25.6048073134051002 2.85838324457479009 -2.6007974995174199 1.53500321236232007 \N \N \N \N \N \N \N -0.50298149999999997 \N \N \N \N \N \N \N \N \N 78 0 78 0 4.09162430000000032 133.440994 3.93150609435654008 1.7634437983276301 3 false 0.0136577160000000003 \N \N -0.228143740000000012 9 6 6.6104813 0 9 false 78 87.6837529371833995 1.51330977427591007 57.9417 20.8310679999999984 5 68.5445795509303935 4.66473351451976992 14.6942109999999992 20.761455999999999 6 74.9852761180802929 6.75963203956070036 11.0931010000000008 20.0744800000000012 1.6369035999999999 0 0.686975499999999961 -0.0696124999999999938 0.756588000000000038 \N \N 0 \N \N \N NOT_AVAILABLE 151.550968609333012 -62.6050613870789974 22.7649976821186009 -12.3192935269041008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480652569811328 2505480652569811328 744114799 2015.5 25.6157871488154996 2.46835132619162989 -2.59898764342674982 1.65622810675614995 \N \N \N \N \N \N \N -0.0271280329999999993 \N \N \N \N \N \N \N \N \N 96 0 94 2 40.3493229999999983 2436.09009 11.7072165878532992 161.927448440668002 3 false 0.0067988930000000003 \N \N -0.078471794999999997 15 10 4.78571800000000014 0 15 false 132 338.491022921007016 5.55635566787941038 60.9196014 19.3644980000000011 12 486.776045999115979 20.3680413050099993 23.899011999999999 18.633064000000001 12 1074.6258728764999 32.2764668376198998 33.2944069999999996 17.1837769999999992 4.6128309999999999 0 1.4492874 -0.731433870000000042 2.18072130000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.570844839605002 -62.5987426263263984 22.7761208462287001 -12.3216372004782997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505483568852463232 2505483568852463232 906063955 2015.5 25.5895012783787017 0.442366980545431998 -2.58901824045522 0.387361352395162006 1.71960887562421005 0.505677426966081978 3.40060450000000003 12.3134367885177003 1.03396894388373006 -10.9940764177194996 0.714208619650114951 0.252170300000000014 0.20714492000000001 -0.0216237770000000003 0.193370280000000005 -0.0744358400000000031 0.216387099999999999 0.334564479999999997 -0.0998375299999999938 -0.00383871719999999981 0.215221660000000009 138 0 137 1 3.88849039999999979 204.901993 1.43613651325617009 2.08925096566881008 31 false 0.10298744 1.41356765385965999 0.120240278813479998 -0.015239219 16 10 0.931681450000000022 0 16 false 137 259.128941805483009 1.25363874319971003 206.701004 19.6545750000000012 14 56.7084422827035013 8.34482815232023967 6.79563950000000006 20.9672680000000007 15 344.637480914634978 6.31844581888851042 54.5446600000000004 18.4185139999999983 1.54882699999999995 0 2.54875369999999979 1.3126926000000001 1.23606109999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.509996319363012 -62.6009274340177981 22.7548675384531016 -12.3027227413559004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480716994178304 2505480716994178304 240241520 2015.5 25.6050603430410995 0.250351850605725013 -2.59220169397858013 0.219054056168669992 3.48033080466188016 0.286393028342844025 12.1522880000000004 15.0767302394711997 0.529953419455257979 6.47995103135532968 0.381250793914291009 0.289826570000000006 0.345361050000000003 -0.105008180000000007 0.230156539999999993 -0.00492459949999999973 0.240871400000000013 0.366026399999999974 0.0105885920000000008 0.0332112999999999992 0.240418080000000006 137 0 137 0 1.1186503000000001 150.294998 0.372933830502612973 0.426971042304322979 31 false 0.358646699999999985 1.22476510491421009 0.0604407579603788991 0.0585254430000000034 16 9 0.484280939999999993 0 16 false 137 523.90488554184401 1.65341847440449996 316.862 18.8902339999999995 13 112.220015486603003 9.04628248212788932 12.4050969999999996 20.2262120000000003 14 710.560124011622975 8.33772193123627048 85.2223359999999985 17.6329169999999991 1.5704762000000001 0 2.59329410000000005 1.3359776000000001 1.25731660000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.543495430228006 -62.5971794540587965 22.7684687277969999 -12.3113908868382005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480721289287936 2505480721289287936 747852674 2015.5 25.6114131175383015 2.37177595623229998 -2.58752600118917009 1.59086009134572004 \N \N \N \N \N \N \N -0.0621538300000000002 \N \N \N \N \N \N \N \N \N 125 0 125 0 46.1143569999999983 3183.92993 12.5146686052834006 194.27103622968599 3 false 0.00609187040000000023 \N \N -0.0530027929999999994 17 10 4.90232940000000017 0 17 false 150 318.517338728036009 4.74424056637013969 67.1377029 19.4305319999999995 16 433.381480768797985 9.35464046714569086 46.3279700000000005 18.7592120000000016 16 894.797014138660984 17.1497900332659015 52.1753920000000022 17.3826080000000012 4.16987799999999975 0 1.3766041 -0.671319960000000049 2.04792400000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.551630563360987 -62.5902429152222979 22.7762677945069001 -12.3093717361741 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480407758008064 2505480407758008064 1099297210 2015.5 25.6506559364866007 0.909550365711114028 -2.60808354458331992 0.983347343296901988 3.18304991098003009 1.14824316363628998 2.77210450000000019 28.0119313885750998 3.03020044448135994 -16.7115672887352993 3.85345237358463999 0.388335939999999991 -0.039373184999999998 0.047126345 0.069438150000000004 -0.25026219999999999 0.113625959999999998 0.0594394649999999969 -0.354511469999999995 -0.324746160000000006 0.67751634000000005 92 0 91 1 0.664640070000000027 94.3038025 0 0 31 false 0.0302398019999999997 0.482453049315568983 0.316316604005063007 0.0678965750000000007 12 8 3.97036839999999991 0 12 false 97 86.4234369239017042 1.44030932476654994 60.0033989 20.8467860000000016 7 43.3002811331771014 9.38449757069306933 4.61402230000000024 21.2601599999999991 11 141.263153276725006 6.2917337182209403 22.4521830000000016 19.3868480000000005 2.13557150000000018 0 1.87331200000000009 0.41337394999999999 1.45993799999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.64770758921 -62.5920734245163999 22.8058690073513013 -12.3428851302567999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480854434608640 2505480854434608640 854007790 2015.5 25.6524664582319986 2.80665388882795019 -2.60184367404034989 1.50245003205542993 \N \N \N \N \N \N \N -0.363629199999999986 \N \N \N \N \N \N \N \N \N 75 0 75 0 0.795103849999999945 79.1100006 2.35451980314915987 0.546205785045908998 3 false 0.0159994359999999988 \N \N -0.142228259999999995 10 7 7.24537039999999966 0 10 false 76 70.8574171082222932 1.33324881020295005 53.1464005 21.0624029999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.645456596441988 -62.5856599000964025 22.809935743206001 -12.3377446774193995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484084249980416 2505484084249980416 394708674 2015.5 25.6186661768698016 1.64142202514061997 -2.57204061693794994 1.40175437111085999 2.69900939181479016 1.83977941562413005 1.46702890000000008 6.64828978364526968 3.75810728967846996 -11.8799737227272999 3.85728209597540994 0.098235900000000001 0.274623899999999976 -0.184364269999999997 0.0830527999999999961 -0.00359637450000000001 0.144204840000000001 -0.086298669999999994 -0.0904300100000000051 -0.233440010000000003 0.263239349999999983 118 0 117 1 16.6513160000000013 589.737976 8.89207718105271994 20.417366141543301 31 false 0.00842211999999999995 1.1886540620771 0.423426006879684014 0.0617867600000000031 14 9 3.76252800000000009 0 14 false 118 104.566695614048001 1.53285896431409996 68.2167969 20.6398830000000011 11 41.0780285026627965 7.87741496574065003 5.21465829999999997 21.3173640000000013 10 158.136422479118011 6.84491511887615012 23.1027580000000015 19.2643400000000007 1.9051423999999999 0 2.05302430000000014 0.677480700000000047 1.37554360000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.551510644791989 -62.5731462966439977 22.7889845605789993 -12.2976276149671992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481133606148096 2505481133606148096 886184405 2015.5 25.6268112795006999 2.74818173615680017 -2.57304903931516993 2.31165687028829003 \N \N \N \N \N \N \N 0.144706730000000006 \N \N \N \N \N \N \N \N \N 83 0 83 0 62.1546129999999977 6265.4502 13.3274898316605999 337.044111721453021 3 false 0.00519576860000000012 \N \N 0.0880313300000000049 16 10 5.28915100000000038 0 17 false 142 500.349731334140017 5.86248010039786038 85.3478012 18.9401820000000001 16 705.596392444021035 23.0167474633612983 30.6557829999999996 18.2299979999999984 16 1559.03739455032996 14.3291150601500004 108.802070000000001 16.7797799999999988 4.52610159999999961 0 1.4502181999999999 -0.710184099999999985 2.16040229999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.568419542794004 -62.5705850657260001 22.7963523291143986 -12.301552573295 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481129311040128 2505481129311040128 1275064674 2015.5 25.6340161972883998 0.716303583545365052 -2.57706163862226001 0.818331148716133994 0.217760611853968999 0.780699652430279945 0.278930069999999974 1.05286810352030002 1.42808809319098007 -2.75261414968960993 1.40317701302532005 0.555800399999999972 0.380033730000000014 0.00814145399999999936 0.23774286 0.162067319999999987 0.177798800000000007 0.323313149999999994 0.0242193490000000011 0.1051874 0.378929879999999997 120 0 120 0 1.55845030000000007 139.531006 0 0 31 false 0.0470978540000000015 1.33034616173508002 0.210127964324708011 0.12986666999999999 14 9 1.49662669999999998 0 14 false 120 127.790554852073996 1.24360267261008994 102.758003 20.4221199999999996 11 47.7411375230442019 6.94662446691116031 6.87256599999999995 21.1541560000000004 9 165.810971778472009 7.88729888785323041 21.0225299999999997 19.2128869999999985 1.67111030000000005 0 1.94126890000000007 0.732036600000000037 1.20923230000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.586267990463995 -62.5711393384599006 22.8016974160962995 -12.3079271006679001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484152968018816 2505484152968018816 1229848241 2015.5 25.6127517723827012 0.340336095875950984 -2.56089612613539019 0.29096954546720899 -0.444902040689067024 0.366410876971596022 -1.21421620000000008 24.2728302490756995 0.785244634196681002 -7.45442320159437966 0.516639202519428964 0.163221780000000011 0.178508119999999992 -0.258307750000000003 0.239319850000000001 -0.0250084850000000004 0.284568549999999976 0.332238140000000015 0.0888020550000000047 -0.0130890499999999996 0.148943330000000013 140 0 138 2 1.55949950000000004 159.337006 0.881133870644143946 1.34438573734798994 31 false 0.188498899999999997 1.5856376424690799 0.0835923913137844032 0.00481333540000000032 16 9 0.706936200000000015 0 16 false 139 375.256413784338974 1.44626005822362003 259.46701 19.2525459999999988 13 167.407258062647998 7.02823488825460974 23.8192459999999997 19.7919519999999984 13 327.898214061902024 9.15899795430541985 35.8006630000000001 18.4725719999999995 1.31991210000000003 0 1.3193798000000001 0.539405800000000046 0.779973999999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.529590830837009 -62.5655870508744982 22.7875467360813992 -12.2850922223656998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484152968019200 2505484152968019200 626208687 2015.5 25.6093281211723003 0.293365705065968985 -2.55867818006375014 0.269520182976447975 -0.307902592951866005 0.334677369544079006 -0.919998199999999988 6.22469393665441029 0.667046532878428966 -3.83095906021459021 0.507725108525305946 0.215107049999999994 0.270175129999999986 -0.121253799999999995 0.16738248 -0.0749454050000000066 0.145847840000000006 0.377424099999999985 -0.0156253459999999983 0.0171752259999999983 0.15083669999999999 140 0 137 3 2.52671650000000003 176.647003 0.689212503066172988 1.04609530021703989 31 false 0.226939350000000012 1.53180922858588997 0.0801945916270385001 0.00573716169999999998 16 10 0.5980993 0 17 false 138 405.465318833389006 1.62146954309322999 250.059998 19.1684820000000009 14 244.75830648937 7.61423140115357011 32.1448480000000032 19.3795450000000002 15 280.330747293464015 10.4839423086310006 26.7390599999999985 18.6427440000000004 1.29502830000000002 0 0.736801150000000016 0.21106338999999999 0.525737760000000054 \N \N 0 \N \N \N NOT_AVAILABLE 151.520823508093997 -62.5650390688279998 22.7851240388317002 -12.2817735642711998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484152968019328 2505484152968019328 1340737044 2015.5 25.6128994048053009 0.826288159703257974 -2.55830231211080994 0.763830695691588013 0.162094805654234009 0.867487178183613983 0.186855569999999999 -3.61722542199545005 2.22840621162566999 -4.48667594589622976 2.24003101214674993 0.269152129999999989 0.0139046949999999999 -0.423875720000000011 0.0172298180000000009 -0.00380073300000000015 0.0294071179999999995 -0.141702789999999995 0.136989620000000006 -0.165980199999999994 0.326827020000000024 111 0 111 0 0.55563359999999995 113.598 0.33666420086377602 0.0303435318328377987 31 false 0.0376935099999999995 1.96947004627267996 0.235468162986929991 0.0416502399999999981 13 8 2.26597520000000019 0 13 false 112 110.503542914338993 1.0595367876197701 104.293999 20.5799260000000004 10 93.6884607465679977 12.2377810757310996 7.65567400000000031 20.4221730000000008 11 92.8579078657272987 9.21490502972955028 10.0769249999999992 19.8423729999999985 1.68814829999999994 0 0.57979965 -0.15775299000000001 0.737552639999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.527479884954005 -62.5631779784174 22.7886616233807011 -12.2827336395830002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484359126449792 2505484359126449792 291469294 2015.5 25.6082356475782014 0.258167275699209997 -2.5474025176190902 0.235930285096821013 0.505539959996567978 0.296795436296587001 1.70332789999999989 -0.583122073737878055 0.573654165923438986 -2.61677017252736999 0.440189164260444021 0.253098129999999977 0.276877600000000001 -0.0907657439999999954 0.188216670000000003 -0.0968039100000000069 0.209484759999999992 0.335084439999999983 -0.0270013700000000002 -0.00971136149999999969 0.247184960000000009 150 0 150 0 -0.253903539999999983 140.067001 0 0 31 false 0.275540899999999978 1.4278354659249799 0.0691439620564884977 0.0323399040000000026 17 10 0.527603860000000036 0 17 false 150 426.019033012667023 1.31751433464157008 323.351013 19.1147939999999998 16 209.84776754263001 8.46556818518127052 24.7883850000000017 19.5466270000000009 13 322.342817060253992 5.69420371432060968 56.6089359999999999 18.4911250000000003 1.2492179000000001 0 1.0555019000000001 0.431833269999999991 0.623668699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.508252000672996 -62.5553040307074966 22.7883212061028004 -12.2708844895712996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505484191622862336 2505484191622862336 694683142 2015.5 25.6144576668191988 0.0670268228957113937 -2.54319846208080991 0.0580812777781996997 6.15806658013007979 0.0734788531119438953 83.8073349999999948 31.6998146914282017 0.145036750452494007 -17.1348129386324004 0.107664092751194998 0.210539239999999989 0.341733600000000026 -0.120858385999999998 0.190913319999999997 0.0229240840000000008 0.19299891999999999 0.330736729999999979 -0.00354417650000000018 0.0354087800000000008 0.152980859999999996 132 0 132 0 4.09438100000000027 203.154007 0.230910741841535011 2.4557067845045002 31 true 5.44000299999999992 1.26546922385720007 0.0180598237271803984 0.0351710360000000027 15 10 0.136388320000000007 0 16 false 132 6568.79126191930027 8.42738860084389074 779.458008 16.1446509999999996 12 1269.95500741162004 13.4099720554578994 94.7022860000000009 17.5919169999999987 14 8273.4605090656496 32.4227587596253031 255.174479999999988 14.9677019999999992 1.45284199999999997 0 2.6242150999999998 1.44726559999999993 1.17694950000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.516564124614007 -62.5488517780444013 22.7958176186643016 -12.2692556428317996 100001 3882.27002 3574.84009 4055.95996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481133606147968 2505481133606147968 713170780 2015.5 25.6311963183885005 0.0464546496265086997 -2.56853880091617004 0.0391841960851372975 1.63793904987884997 0.0533803853499026995 30.6842860000000002 -9.24879861531774949 0.104159052512907996 -4.70334576380399039 0.0803366163969232022 0.128613200000000011 0.266460450000000015 -0.200695800000000008 0.0895970299999999942 -0.178660380000000008 0.0961979849999999997 0.12044465 0.0443529930000000003 0.0201147999999999987 0.203573320000000002 134 0 133 1 -1.14141139999999996 109.988998 0 0 31 true 12.1225760000000005 1.50543254217523992 0.0124685154916272002 0.0515665150000000003 15 10 0.102490633999999997 0 15 false 131 9718.90888646514941 6.64563566384078985 1462.44995 15.719322 15 4101.97118332461014 16.7553485602950012 244.815629999999999 16.3189069999999994 14 8034.89615863017025 38.1448072671047029 210.641940000000005 14.9994700000000005 1.24878909999999999 0 1.31943699999999997 0.599584600000000023 0.719852449999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.572837581898995 -62.5646361761085998 22.8022173575283986 -12.298965159302 100001 4914.50977 4787.66992 5040 \N \N \N \N \N \N 200111 0.553640840000000023 0.526415049999999995 0.583364600000000011 0.161091819999999997 0.149660870000000001 0.172522769999999992 +1635721458409799680 Gaia DR2 2505481202325624576 2505481202325624576 1404843342 2015.5 25.6611459726419007 5.53777593364577037 -2.56434125109950983 2.51222001157263986 \N \N \N \N \N \N \N -0.442977339999999997 \N \N \N \N \N \N \N \N \N 65 0 64 1 58.0116540000000001 5581.4502 14.4535591125225995 525.750646789953976 3 false 0.00470625749999999989 \N \N -0.26298054999999998 15 9 9.24055399999999949 0 17 false 150 917.209387213894047 12.3730337044653993 74.1296997 18.2821940000000005 16 1412.51675938776998 26.3310154076149985 53.644599999999997 17.4764039999999987 15 2951.61955307959988 29.4289236570977017 100.296554999999998 16.0867700000000013 4.75805900000000026 0 1.38963510000000001 -0.805789949999999977 2.19542500000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.627636158049995 -62.5480539595597023 22.8322799241596996 -12.3060415663310998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480029799409280 2505480029799409280 935110536 2015.5 25.6686427180502008 0.273875776218554023 -2.61449227234807013 0.231308349288994991 0.507540855344109976 0.290486088137191012 1.74721229999999994 3.96945012321602997 0.659977849307147979 -9.87154105789566927 0.44441378681228999 0.0874476899999999946 0.0949022300000000041 -0.289131220000000022 0.205117569999999999 -0.161142289999999994 0.249819700000000006 0.330790099999999976 0.0564571000000000031 -0.079572480000000001 0.117233080000000003 141 0 139 2 1.8625027999999999 166.091003 0.635991992279926976 1.07213637552902008 31 false 0.283512529999999985 1.62116889153227994 0.0688798833461370941 -0.0656064600000000053 16 9 0.592690999999999968 0 16 false 139 483.890320642125005 1.63541503425839996 295.881989 18.9764979999999994 16 203.161996804843 9.71674876804872056 20.9084339999999997 19.5817809999999994 13 414.070416987386011 10.9653179693344995 37.7618259999999992 18.2192340000000002 1.27556259999999999 0 1.36254689999999989 0.605283739999999959 0.757263200000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.688941312910003 -62.5901681344961034 22.8205709175724003 -12.3554415981404997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480064159147904 2505480064159147904 1387377614 2015.5 25.6903922369888988 0.244214699878115005 -2.60719602002167994 0.159510296074338004 1.25058478814958995 0.238098091482837004 5.25239320000000021 16.5454585326005983 0.630493477622445009 -5.61736925877803994 0.306880004463946976 0.00954725600000000049 0.0119425350000000007 -0.390464800000000001 0.138327430000000001 -0.0646337939999999944 0.138727600000000006 0.118045990000000003 0.146104440000000002 0.0702503550000000004 -0.024495336999999999 152 0 152 0 2.03659219999999985 183.983002 0.528100271186341952 1.15482812717819994 31 false 0.409159900000000021 1.24078164796976997 0.0548458814006237971 -0.125923069999999998 17 9 0.565881549999999955 0 17 false 152 650.085664529804035 1.9364479228282101 335.709991 18.6559400000000011 15 184.171217906382992 8.54759969200187086 21.5465429999999998 19.6883340000000011 14 770.690832782442044 12.0457049391054003 63.9805500000000009 17.5447200000000016 1.46882500000000005 0 2.14361379999999979 1.03239440000000005 1.11121939999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.724770452099989 -62.5742591134373001 22.8440022572082988 -12.3566280125891996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480888792871040 2505480888792871040 1142366398 2015.5 25.6712437385283003 0.233943684017142994 -2.58594056320819998 0.220617223935435008 0.291192637108541985 0.26754603585317499 1.08838330000000005 5.32202775927134031 0.534358573246522028 -5.69086146440634977 0.407562836551360996 0.255146299999999993 0.206043510000000013 -0.100878239999999994 0.195745300000000011 -0.168227700000000008 0.215102170000000009 0.342150149999999986 -0.00651130000000000025 -0.00856288499999999925 0.265829270000000006 150 0 150 0 0.0764597999999999944 145.636002 0 0 31 false 0.327403339999999987 1.59422748289004002 0.0628067018628574031 0.0172832270000000017 17 10 0.493904830000000017 0 17 false 150 484.251596954543004 1.68805148907289992 286.869995 18.9756889999999991 15 283.352178282547015 11.7066857688471 24.2043040000000005 19.2205720000000007 15 335.842864316012992 15.8300105946538991 21.2155799999999992 18.4465789999999998 1.27866389999999996 0 0.773992539999999951 0.244882579999999989 0.529109950000000051 \N \N 0 \N \N \N NOT_AVAILABLE 151.667476925849002 -62.5632566981216982 22.8337715555216008 -12.3298358014440002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480927447718016 2505480927447718016 624414920 2015.5 25.6766971496533998 0.0268024994560575013 -2.58315267020992989 0.0220703793531050012 1.5700576645445401 0.0293897343460126012 53.4219739999999987 16.5122585096005992 0.059230785575139 -6.79528554115085015 0.0481872407016594034 0.0972918799999999973 0.265046899999999974 -0.269708630000000005 0.0968995240000000008 -0.173857540000000005 0.112592845999999996 -0.0762668299999999938 0.085200739999999997 0.0203275049999999992 0.270085069999999983 151 0 148 3 1.75991129999999996 174.113998 0 0 31 false 50.9448700000000017 1.59844676290208998 0.00721822969749164999 0.0396064630000000015 17 10 0.0670242600000000022 0 17 false 144 40552.2734104854972 16.2392776534028016 2497.16992 14.1683269999999997 14 20832.6081668931001 60.7117784026917988 343.139499999999998 14.5545290000000005 15 28383.7350813047997 43.1175419432520997 658.287400000000048 13.6292460000000002 1.21365189999999989 0 0.925283430000000018 0.386201860000000008 0.53908160000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.675568100948993 -62.558403853587798 22.8400062084044997 -12.3292416140634007 100001 5475.25 5399 5617 0.0315000005 0.00860000029 0.166999996 0.0107000005 0.00289999996 0.052099999 200111 0.90695899999999996 0.861760740000000025 0.93275779999999997 0.666017799999999993 0.635614200000000018 0.696421300000000021 +1635721458409799680 Gaia DR2 2505479823640978688 2505479823640978688 1045154017 2015.5 25.7318447660383001 0.159446878196983999 -2.61900123631285986 0.125050327970663011 0.338275886891524991 0.175597533144024986 1.9264273999999999 3.06897329962239018 0.362090105169156018 -7.58630870370687038 0.245701025643431992 0.086513035000000002 0.240098179999999994 -0.197111199999999986 0.10145527 -0.128102030000000006 0.090350024000000001 0.128824899999999992 0.0488375460000000025 0.0722792740000000045 0.109347680000000003 168 0 167 1 -0.360534159999999992 154.949005 0 0 31 false 0.685287360000000012 1.61093767760655004 0.0418780906628934968 -0.0518894270000000019 19 10 0.323885599999999996 0 19 false 167 841.842387749264049 1.66143069227274998 506.696991 18.3752880000000012 17 428.858800903637018 5.45499325967050996 78.6176600000000008 18.7706030000000013 16 602.335558444220055 9.38073317445556043 64.2098600000000062 17.8123250000000013 1.22492559999999995 0 0.958278659999999949 0.395315169999999994 0.56296349999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.816952448486006 -62.5671237607733985 22.8790046992823015 -12.3828034894312999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481404188500992 2505481404188500992 341245710 2015.5 25.7416709101480983 0.155767196478214992 -2.60203527940013002 0.111918087890780005 0.767950531924610047 0.17558558413286901 4.37365400000000015 -1.04321355785419989 0.307681680766036025 -2.74417066604525006 0.21185947049165299 0.0112375229999999993 0.44820616000000002 -0.118165019999999996 0.0955274499999999999 -0.20171001999999999 0.0705020900000000034 0.159617220000000004 0.0273894020000000002 0.084047150000000001 0.129816299999999996 170 0 168 2 2.03114220000000012 201.723007 0.407121119241866003 1.52561006094453999 31 false 0.856921000000000044 1.47411030513258989 0.0364969867405878015 -0.053518391999999998 19 10 0.275012099999999982 0 19 false 168 1148.71665702064001 1.93314492968879992 594.221985 18.0378340000000001 17 415.477384473071993 10.8305264386827993 38.361699999999999 18.805019999999999 16 1090.25753282987989 9.08166026018549921 120.050460000000001 17.1680969999999995 1.31079750000000006 0 1.63692280000000001 0.767185200000000012 0.8697376 \N \N 0 \N \N \N NOT_AVAILABLE 151.820334163177989 -62.547584887035498 22.8947255025335998 -12.3706212540378004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481335473774336 2505481335473774336 327011931 2015.5 25.7502699889689985 1.61789458305579004 -2.60145231040627012 3.00552180366580002 \N \N \N \N \N \N \N -0.522976200000000002 \N \N \N \N \N \N \N \N \N 96 0 94 2 0.503171200000000041 95.1844025 1.26751028086308004 0.310848586594306975 3 false 0.0283289010000000001 \N \N 0.148791719999999988 11 7 8.67105500000000085 0 12 false 95 97.125801148826497 1.28171057195075 75.7782974 20.7200300000000013 7 67.6939872407487968 14.7453955163441996 4.5908559999999996 20.7750130000000013 9 148.962384331712002 24.5948326221589006 6.05665350000000036 19.329229999999999 2.23067780000000004 0 1.44578359999999995 0.0549831399999999998 1.39080050000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.836606823907999 -62.5433605138871016 22.9031258687096013 -12.3732298738779996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505480132878625792 2505480132878625792 17545687 2015.5 25.7102459049661007 0.483261917525224016 -2.59240771178725993 0.366115224988405985 1.65418595155886994 0.576606006430050999 2.86883229999999978 21.7929935413157985 0.913390898131442031 -12.5073138308843994 0.664048279355898052 0.143987389999999993 0.505172599999999972 -0.0853159349999999955 0.123105709999999993 -0.0916136000000000034 0.0393728699999999973 0.212235470000000009 0.0451045450000000028 0.13613494000000001 0.151015939999999987 160 0 160 0 3.85637570000000007 232.421005 1.33396286440202005 1.8374990072789299 31 false 0.0908654400000000056 1.28166184420778007 0.114836262875473993 -0.0118298859999999995 18 10 0.811813650000000053 0 18 false 160 234.521895026566 1.30465004921196992 179.757996 19.7629069999999984 13 78.1546667623028952 14.2582716088145993 5.4813559999999999 20.6190010000000008 14 293.773055862538001 12.1164325096482006 24.2458379999999991 18.5918899999999994 1.58589770000000008 0 2.02711100000000011 0.856094360000000054 1.17101670000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.749869240572991 -62.5523888481812023 22.8684442266009 -12.3501484176247995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481614642571648 2505481614642571648 422039094 2015.5 25.7306627736315008 1.11733162281928999 -2.59050351686016 0.755702984089063001 1.62783703380703004 1.36032458259227007 1.19665339999999998 -1.1840795355282201 1.65011155391363995 -0.95466695692311998 2.00718343219881001 -0.224017889999999997 0.739639900000000017 0.00711745999999999993 -0.21064621 -0.415652630000000023 -0.151776280000000013 -0.0637952299999999944 0.0179517720000000013 -0.126726210000000006 0.314801249999999977 123 0 123 0 0.552423540000000046 125.994003 0 0 31 false 0.0331871619999999992 1.27795411984744001 0.238091822279629994 -0.110601895000000006 14 8 1.90396490000000007 0 14 false 123 105.645804382527004 1.2873199658066099 82.0664978 20.6287349999999989 13 70.7647255330224993 7.42084026234643979 9.53594499999999989 20.7268469999999994 12 81.6515858595823971 10.3845497796118007 7.8627950000000002 19.9820080000000004 1.44271050000000001 0 0.744838699999999965 0.0981121100000000024 0.64672660000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.788042944188987 -62.5419052861907971 22.8885829546692996 -12.3558594535367998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481404188503808 2505481404188503808 909372624 2015.5 25.7401527594353006 0.817945192133708976 -2.5885539881434898 0.516216697102971023 0.537379473431588983 1.00002399354723992 0.537366569999999988 21.5687137849219006 1.18882534998451006 -14.8717237426513993 0.939850456229048947 -0.269933880000000015 0.726609649999999996 0.0979380700000000021 -0.0156105910000000001 -0.432709999999999984 -0.100000919999999993 0.160888339999999991 0.0960412199999999966 0.0420769039999999983 0.112750575000000006 142 0 140 2 1.71159229999999996 164.360992 0.803931280119445035 0.340109823726359006 31 false 0.0577471440000000003 1.12508762125157991 0.167543168411748988 -0.127698509999999987 17 9 1.0954155000000001 0 17 false 140 161.803696412391986 1.42533879199062996 113.518997 20.165894999999999 13 42.2605335332587018 4.83791349518840974 8.73528100000000052 21.2865499999999983 14 220.897764314262986 5.52419088159672977 39.9873499999999993 18.9014419999999994 1.62640479999999998 0 2.38510899999999992 1.12065510000000002 1.26445389999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.804784584188013 -62.5360680543370009 22.8983436382874004 -12.3575233701130003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481305404839296 2505481305404839296 1311773323 2015.5 25.6683949922770012 0.813933899973105945 -2.54560260601241017 0.596146439430995989 0.193049852176860992 1.13519067492081005 0.170059409999999994 -6.0293323963898704 1.13062299457860993 -1.42968052631196008 0.984005640757978028 -0.278552950000000021 0.751459659999999974 -0.0377775320000000026 -0.0278534440000000015 -0.551298740000000009 0.146614149999999999 0.369554280000000013 -0.0484374760000000001 -0.140133110000000005 0.30876621999999998 141 0 140 1 0.0491926820000000015 135.141998 0 8.64845076549420973e-16 31 false 0.0614146549999999986 1.32367397764357997 0.143435833951742003 -0.0472981700000000005 16 9 1.16157529999999998 0 16 false 140 157.083079663900008 1.23279807548190989 127.419998 20.1980420000000009 9 38.1015063541492012 6.52962066274155006 5.83517930000000007 21.3990329999999993 11 203.257629810076992 7.36154685556236998 27.6107230000000001 18.9918019999999999 1.5365063000000001 0 2.40723039999999999 1.20099069999999997 1.20623970000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.624449967190998 -62.5280184482404024 22.8462125249860009 -12.2912675742082005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482503700576640 2505482503700576640 804289364 2015.5 25.6948231797974991 0.215017543220216989 -2.56271037206240004 0.189813162350185 0.998415541386221017 0.314409773406941984 3.17552330000000005 13.2398184811560995 0.366000779271360988 -13.7337906432893995 0.316745545595467026 -0.31243795000000002 0.671038800000000046 -0.181213920000000001 -0.114906653999999997 -0.669123770000000007 0.424550680000000014 0.58822023999999995 -0.311299300000000001 -0.409658819999999979 0.463004860000000018 143 0 139 4 -0.507309560000000048 125.226997 0 0 31 false 0.821131770000000039 1.46225549128209997 0.0417036187581888013 -0.0314540400000000026 16 8 0.411635550000000017 0 16 false 139 987.752772468238049 2.22591737894060993 443.751007 18.201746 15 311.962193712391979 8.95614422017825085 34.8322000000000003 19.1161330000000014 14 1015.71086118512005 6.75661987105458994 150.328249999999997 17.2449949999999994 1.34413490000000002 0 1.87113759999999996 0.914386750000000026 0.956750870000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.692053740776004 -62.532173939531198 22.8649258984882984 -12.3168693322639005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482782873588864 2505482782873588864 1018543908 2015.5 25.6790274079024989 0.0252923117399482013 -2.54296158636863989 0.0188746455063406003 1.89355921943883998 0.0290108445626573001 65.2707400000000035 4.17962457476416027 0.0452363696596706014 2.46644390943332015 0.0408727971591694994 0.101558270000000006 0.568583850000000002 -0.0510492359999999978 0.0686915899999999968 -0.137311340000000004 0.125827579999999994 0.0614082000000000031 -0.0594841470000000011 -0.039415552999999999 0.330470619999999993 159 0 158 1 -4.636876 84.9261017 0 0 31 true 87.5514139999999941 1.58045537231780009 0.00627769913498122008 0.0305437760000000016 18 10 0.0536514560000000001 0 19 false 160 68489.2479732678039 26.9431614706835987 2541.98999 13.5993099999999991 18 35542.8094757240979 52.2432220730248034 680.333439999999996 13.9745089999999994 18 47538.3869453302032 80.9231344153516972 587.451099999999997 13.0693090000000005 1.21305449999999992 0 0.905200000000000005 0.375199320000000003 0.530000699999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.642810048693008 -62.5210868787590996 22.8573172228440988 -12.2927081386887007 100001 5474.75 5402 5494.49023 0.0680000037 0.0419000015 0.186100006 0.0289999992 0.0207000002 0.0860999972 200111 0.977504550000000028 0.970492099999999969 1.00401040000000008 0.7733738 0.744384770000000029 0.802362800000000043 +1635721458409799680 Gaia DR2 2505482434981100544 2505482434981100544 734474384 2015.5 25.7103579381973013 0.36687070366001201 -2.56044290365881988 0.281012349443475973 -0.0165816336371551014 0.427906451557141021 -0.038750604000000001 -0.290106754325339 0.737841411068998032 0.601724973057904955 0.531716486610079975 0.0440804180000000032 0.437818529999999984 -0.082217819999999997 0.0811621899999999952 -0.210040399999999988 0.0498055400000000023 0.204858079999999998 0.0156171569999999996 0.0747995500000000063 0.14051538999999999 169 0 167 2 2.42856879999999986 208.973007 0.931784776586866981 1.7790138404048299 31 false 0.142634700000000003 1.62018715039789996 0.0890439473083353972 -0.0557198100000000016 19 10 0.654853939999999968 0 19 false 166 317.46585952112099 1.93768573852896009 163.837997 19.4341240000000006 16 215.626715098655012 11.5046292419724008 18.7426050000000011 19.5171320000000001 14 207.224732778763013 7.18123894810725005 28.8564030000000002 18.9708159999999992 1.3319588 0 0.54631615 0.0830078100000000013 0.46330832999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.720336751605998 -62.5234703800516982 22.8805547276466008 -12.3204534546194004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482469340399488 2505482469340399488 1544716992 2015.5 25.7269066187012996 0.892316380541545051 -2.55643909555899018 0.874570996307343029 -0.315329424572186989 1.12446817436023005 -0.280425399999999991 -8.95731539987436953 2.09606308320124013 -15.4293582537895997 2.74450922168322009 0.19943145000000001 0.426468459999999994 -0.180635500000000004 -0.135796709999999987 -0.26705669999999998 -0.0513501000000000027 -0.0740430700000000025 -0.0977627600000000041 -0.144183530000000004 0.578473569999999992 128 0 127 1 -0.562778200000000006 112.785004 0 0 31 false 0.0269632259999999999 1.54443855967957999 0.253117094381552998 0.0335884799999999969 15 9 2.72777629999999993 0 15 false 130 92.323456308965504 1.08237799947942004 85.2968979 20.7750850000000007 7 52.0354565135459026 18.8280566024508005 2.76371879999999992 21.0606399999999994 8 113.871319615017001 8.30568260583041074 13.7100500000000007 19.6208840000000002 1.79701650000000002 0 1.43975640000000005 0.2855549 1.1542015000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.748970046163009 -62.512758194861803 22.8978004122858998 -12.3227931026183004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482572419615360 2505482572419615360 588926649 2015.5 25.7282277968399988 0.429281996364890006 -2.55144996606609009 0.334881349797157002 2.26484216563539009 0.520488393278577988 4.35137899999999966 7.54848542246639997 0.803350068823337038 -12.1706245242045004 0.619155793928048981 0.0435766240000000013 0.503421699999999972 0.0296404159999999993 0.0797340299999999974 -0.211427690000000001 0.0197689139999999985 0.201979149999999996 0.0019086407000000001 0.110466726000000001 0.154122490000000001 178 0 178 0 4.79430770000000006 277.466003 1.44094409457698003 2.51828652520004015 31 false 0.0997154299999999938 1.20860987678327003 0.103325804660077 -0.0218361260000000008 20 10 0.716364439999999991 0 20 false 177 258.434913591383975 1.18411149777419 218.251999 19.6574880000000007 17 68.9010631601437069 7.37376980982832997 9.34407599999999938 20.7558229999999995 15 356.788209358152983 10.3619601147170997 34.432502999999997 18.3808940000000014 1.64718169999999997 0 2.37492940000000008 1.09833530000000001 1.2765941999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.746911207386006 -62.5076856893126021 22.9009303491508014 -12.3186358181549007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779355776 2505482606779355776 1647685681 2015.5 25.7422227924927007 1.32418147347551995 -2.54141664510040011 1.08811932370340991 -0.0551062074488673018 1.89424054787146989 -0.0290914510000000008 1.25439587369257 2.13620972856968017 0.487360675281306999 2.95395675292123006 -0.274264750000000002 0.749266740000000042 -0.131009270000000011 -0.196167320000000006 -0.577652199999999949 -0.100075600000000001 -0.0651044399999999995 -0.0265363700000000001 -0.134439229999999993 0.575459959999999993 113 0 112 1 -0.668516800000000022 96.8899994 0 0 31 false 0.0256055520000000002 1.68930203451670002 0.278030214367878004 -0.0614773779999999992 13 8 2.90566749999999985 0 13 false 112 92.6765552568281947 1.22445835962265992 75.6877975 20.7709399999999995 9 71.3542004176869966 10.6606546424486996 6.6932286999999997 20.7178399999999989 9 88.5032590210318943 9.28832207002854915 9.52844400000000036 19.8945219999999985 1.7248964 0 0.823318499999999953 -0.0531005859999999982 0.876419069999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.764922246242008 -62.4926199613891029 22.9180101981358 -12.3144294519740995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482606779356672 2505482606779356672 484687774 2015.5 25.7421544974831988 0.633624456650836998 -2.53914758559843001 0.605498131317869004 0.238987451012175001 0.828722621795537018 0.288380499999999984 1.26083890745238003 1.27383388175881995 -2.19812990784433993 1.3156099605543401 0.142646600000000012 0.442051950000000027 -0.0472205060000000024 -0.0244927950000000012 -0.303613840000000024 -0.134723050000000011 -0.149874960000000002 0.0865865350000000061 0.172926550000000012 0.373514259999999987 151 0 148 3 0.87717540000000005 157.641006 0 0 31 false 0.0464952360000000023 1.61569201090491998 0.184403443058103994 0.041473030000000001 17 10 1.33988400000000007 0 17 false 148 130.961752115605009 1.05087760996885993 124.621002 20.395503999999999 13 79.5554457160032058 6.82726101384998962 11.6526160000000001 20.5997139999999987 13 85.5347847335080047 6.38999542514858998 13.3857350000000004 19.9315619999999996 1.26059879999999991 0 0.668151860000000042 0.204210279999999994 0.463941570000000025 \N \N 0 \N \N \N NOT_AVAILABLE 151.762678314370987 -62.4906002803189011 22.9187969711747996 -12.3122934682809007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505434400066411520 2505434400066411520 227378259 2015.5 25.7716304361706001 0.173009019002154013 -2.61325990072803993 0.142111289162870996 0.399339075609810024 0.213725088975244004 1.8684708000000001 2.15414567050722017 0.348996407399069009 -6.60864458641990016 0.260157569833600999 0.0886523349999999988 0.410649629999999988 -0.0837514550000000024 0.0932760759999999994 -0.274645799999999995 -0.00707279559999999998 0.0975053800000000026 0.099846619999999997 0.170708300000000007 0.216097490000000003 155 0 154 1 0.766540650000000046 161.921997 0 0 31 false 0.67091400000000001 1.5241373756802099 0.0448500263283308984 -0.0015243361999999999 18 10 0.31649157 0 18 false 154 845.409134409948024 2.28207093584493004 370.457001 18.3706989999999983 15 386.188990833661023 6.78430675705739983 56.9238700000000009 18.8843880000000013 16 668.66946652609704 7.91310569415642995 84.5015199999999993 17.6988899999999987 1.24774910000000006 0 1.18549729999999998 0.513689040000000041 0.671808239999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.889405637571997 -62.5448187145936032 22.9190160223846 -12.3920409759550996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481369828764288 2505481369828764288 1127923743 2015.5 25.7617452652717986 0.545685859895665981 -2.59356751928089979 0.474992023537610997 0.0273124441738775009 0.656662634698408021 0.0415928100000000009 2.45216534906934003 1.1614567693690101 -2.91700814960822985 1.04531591923350997 0.129106150000000003 0.383112730000000012 -0.107023640000000003 -0.00393780549999999969 -0.230398249999999999 -0.0401083100000000012 -0.0153222340000000005 0.0356683949999999986 0.080444699999999994 0.278914749999999989 150 0 149 1 -0.16419932000000001 140.574005 0 2.51214793389403987e-15 31 false 0.0619656479999999982 1.82209958574385 0.154136796207427013 -0.04254492 17 10 1.1042202000000001 0 17 false 149 159.761316003808986 1.08351479878089996 147.447006 20.1796879999999987 13 122.880777422071006 26.7922561740944012 4.58642859999999963 20.1276779999999995 13 106.104801318897998 9.69142259692814001 10.9483200000000007 19.6975820000000006 1.43329799999999996 0 0.430095669999999985 -0.0520095829999999981 0.48210525999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.851675948723994 -62.5313070174780989 22.9170046974982995 -12.3700991111233005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505434370002257280 2505434370002257280 569757652 2015.5 25.7859433815591998 0.0311842527043156015 -2.60752475468521983 0.028783140031674901 0.911257389429119047 0.0416176765323076001 21.8959219999999988 12.7597507448779002 0.0742093429782833963 -9.80511104659460919 0.0749064684894478056 0.0217505150000000015 0.398497219999999985 -0.118429534000000003 0.0528019220000000011 -0.475920300000000018 0.42824835 0.428750340000000008 -0.351414620000000011 -0.427655339999999995 0.580114099999999966 143 0 143 0 -2.94799800000000012 94.072197 0 0 31 true 43.3660769999999971 1.60584720712193008 0.00798818957644295037 0.0295487120000000013 16 9 0.0957122100000000059 0 16 false 142 33763.1787086523036 12.8150668026445995 2634.6499 14.3672570000000004 15 17832.1539688869998 36.522146440222798 488.255920000000003 14.7233780000000003 14 23186.3314515776001 38.3991044016990983 603.824769999999944 13.8488399999999992 1.21488810000000003 0 0.874538400000000049 0.356121059999999989 0.518417360000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.912009930044007 -62.5334753558159022 22.9347886474150009 -12.3919490214702996 100001 5744.66992 5441.00977 6060 0.460700005 0.305900007 0.652100027 0.257299989 0.172299996 0.324999988 200111 1.28057979999999993 1.15077659999999993 1.4275023 1.60904169999999991 1.44265909999999997 1.77542420000000001 +1635721458409799680 Gaia DR2 2505481438550281472 2505481438550281472 48277202 2015.5 25.7598912027069993 33.9715922115109024 -2.58283325565120014 13.7067255834242001 \N \N \N \N \N \N \N -0.991585799999999962 \N \N \N \N \N \N \N \N \N 53 0 52 1 0.59538466000000001 52.2929001 3.53982846303029008 0.683394983821796975 3 false 0.0116810174999999999 \N \N -0.356811670000000025 7 6 74.6778300000000002 0 7 false 55 74.1374223386060009 2.05349212772510015 36.1030998 21.0132709999999996 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.838030424586009 -62.5224173416090991 22.9192709624138011 -12.3594335356737997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505481545923008128 2505481545923008128 622292740 2015.5 25.7602931395997992 0.0361393221203568024 -2.56843652112564991 0.0255543027677843995 0.684090871184893978 0.0406421363983036979 16.8320599999999985 6.88055063316314008 0.0647471994830204067 -0.501349486335600947 0.0546232581601300005 -0.0330260100000000015 0.559212000000000042 0.00145582939999999998 -0.00277183970000000014 -0.176748559999999999 -0.0498795250000000009 0.00164299059999999998 0.00854726700000000075 0.0693023799999999968 0.132077959999999994 169 0 167 2 -0.982375439999999989 144.335007 0 0 31 false 22.5026319999999984 1.58463189537984994 0.00882495587193934082 -0.0414705719999999972 19 10 0.0656972900000000054 0 19 false 166 17901.8204805276982 6.76587634023860041 2645.8999 15.0561229999999995 19 9625.49432605346919 30.672446567667599 313.815670000000011 15.3928309999999993 18 12069.4978316491997 16.4158004397968007 735.236629999999991 14.5576969999999992 1.21188750000000001 0 0.835133550000000002 0.336708070000000026 0.498425479999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.825384645063991 -62.5092504335387034 22.9250583150166989 -12.3461871543946007 100001 5802.25 5765.75 5851 0.363999993 0.172900006 0.477299988 0.181299999 0.0948999971 0.233600006 200111 1.21541450000000006 1.19524549999999996 1.23085149999999999 1.50844439999999991 1.30465889999999995 1.71222999999999992 +1635721458409799680 Gaia DR2 2505481747785892224 2505481747785892224 1662037666 2015.5 25.7576065658569995 3.54101657835306982 -2.56319972290153997 2.6304071284639301 \N \N \N \N \N \N \N -0.0685393299999999955 \N \N \N \N \N \N \N \N \N 98 0 98 0 39.9923440000000028 2393.67993 16.433997866662601 57.891242692374199 3 false 0.00283316550000000007 \N \N -0.0747424899999999948 11 8 7.43690300000000004 0 11 false 98 86.5915626544734067 1.27990976258812994 67.6544037 20.8446770000000008 9 64.6026817310881967 10.0639932797407994 6.41918949999999988 20.825762000000001 9 191.847805040112007 20.6109775686262005 9.30804000000000009 19.0545270000000002 2.9616106000000002 0 1.77123450000000005 -0.0189151759999999988 1.79014969999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.815254415724013 -62.5056785856521984 22.9244682608088013 -12.3403309597883002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505482164398298112 2505482164398298112 1052375709 2015.5 25.7657897637552011 0.0457277613501436975 -2.54833178261500004 0.0330125103649763982 1.54682460934224997 0.0526826998198157981 29.3611490000000011 26.122174014882301 0.0833915622445450949 -14.6420970681067004 0.068314741576005103 0.00509721900000000006 0.531888369999999999 -0.0470874829999999994 0.0511119439999999994 -0.204537510000000006 0.0120883589999999999 -0.0204504699999999984 0.0123555734999999996 0.0803596899999999975 0.210921200000000003 179 0 176 3 -1.2813886000000001 147.774994 0 0 31 true 11.1428609999999999 1.45538823092443992 0.0113125461358256005 -0.0174489619999999984 20 10 0.0825522540000000055 0 20 false 173 9178.90533051702005 5.34043788673831976 1718.76001 15.7813879999999997 17 3556.73813593242994 14.2953385054522997 248.804049999999989 16.4737590000000012 16 8161.19292542065978 18.2230622474524004 447.849699999999984 14.9825359999999996 1.27661530000000001 1 1.49122240000000006 0.692370400000000052 0.798851969999999967 \N \N 0 \N \N \N NOT_AVAILABLE 151.817379281555986 -62.4887397433461018 22.9378345452633994 -12.3294966222787004 100002 4405.33008 4341 4554.5 0.619000018 0.386000007 1.01049995 0.303000003 0.178399995 0.432099998 200111 0.772357170000000037 0.72259395999999998 0.795419399999999999 0.202416640000000009 0.187379359999999995 0.21745392999999999 +1635721458409799680 Gaia DR2 2505481958239868160 2505481958239868160 462242828 2015.5 25.7808586105329987 0.0365893670050232017 -2.55653690373681997 0.026219923384917701 2.07381918240669982 0.0416765867756423991 49.7598150000000032 19.4079929774432998 0.0663859274817922007 13.2159863617629991 0.0550825894560601007 0.0182610620000000015 0.5391127 -0.0382923630000000029 0.0514340100000000022 -0.180247020000000008 0.037447165999999997 -0.0053433663999999997 -0.0148201930000000006 0.0462353699999999979 0.224205629999999989 178 0 177 1 -0.608739440000000021 160.317993 0 0 31 true 19.5525950000000002 1.50773851414154003 0.00904319830999781964 -0.0184318569999999994 20 10 0.0685956999999999956 0 20 true 173 15724.604144977 6.60899577040622965 2379.27002 15.1969169999999991 19 6815.15641454121032 37.5459237073953034 181.515209999999996 15.7676979999999993 17 12926.9038425544004 21.791174779422299 593.217399999999998 14.4831839999999996 1.25548850000000001 0 1.28451439999999995 0.570781699999999947 0.713732699999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.854442119178003 -62.4896630653444021 22.9490912485305998 -12.3426501087678009 100001 4834.20996 4667.93018 5034.64014 0.158000007 0.0878999978 0.192100003 0.0799999982 0.0480000004 0.0930999964 200111 0.580750499999999947 0.535430799999999985 0.622862160000000054 0.165949509999999995 0.158400220000000008 0.173498800000000009 +1635721458409799680 Gaia DR2 2481469307188685824 2481469307188685824 163042325 2015.5 25.1896933003156995 0.260853352692197005 -2.68377686035019991 0.195557154674140005 0.719495074984644045 0.277033895923435025 2.5971375000000001 -7.07154990534526995 0.721460266519561966 -6.01721303070914004 0.354965561477934011 0.173794100000000007 -0.0688582060000000051 0.0998055199999999948 0.154213319999999987 -0.16904783000000001 0.2180898 0.347083570000000008 -0.239318950000000003 0.0109082329999999998 0.113246799999999995 120 0 119 1 1.38636739999999992 135.492004 0.450973994240786991 0.625509975273864982 31 false 0.404433250000000022 1.44115280325749007 0.0620630785497607029 -0.0363740499999999981 14 9 0.639986900000000025 0 14 false 120 680.852176116652004 2.39912018073879985 283.791992 18.6057340000000018 11 259.544510370679006 24.852093426721801 10.4435669999999998 19.3158589999999997 11 735.94082577300901 10.5000523454138008 70.0892599999999959 17.594812000000001 1.46211669999999994 0 1.72104640000000009 0.710124969999999966 1.01092150000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.806678072056997 -62.8551558904287972 22.339120920370501 -12.2439623126449 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469341548425600 2481469341548425600 460991745 2015.5 25.1964864609185 0.265788890408418021 -2.68036745360207984 0.205321898645179995 2.52423295527727998 0.306965337102831026 8.22318600000000011 -19.7111110256219995 0.762261631946692053 -8.35810957613997019 0.360401313340822982 0.225730989999999992 -0.148153499999999994 0.270477899999999993 0.196571930000000006 -0.386216520000000008 0.337757260000000004 0.457649299999999981 -0.410090180000000026 -0.150875869999999995 0.235447719999999999 129 0 127 2 4.17688659999999956 198.643005 0.794078780376390014 2.73581341507596987 31 false 0.411216970000000015 1.30577407057426997 0.0605290824376460007 -0.0384482299999999999 15 9 0.690877999999999992 0 15 false 128 832.723156063339047 2.99628367926211991 277.919006 18.3871140000000004 13 224.901742529614012 8.3559161490639795 26.9152699999999996 19.4714069999999992 13 1000.42154993727002 10.3342635564711003 96.8062740000000019 17.2614629999999991 1.47146529999999998 0 2.20994380000000001 1.08429339999999996 1.12565040000000005 \N \N 0 \N \N \N NOT_AVAILABLE 150.817084346065002 -62.8492293289561985 22.3468614076146999 -12.2432918840019003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469341548426880 2481469341548426880 921883322 2015.5 25.2047120707706007 0.152641022879965005 -2.67718881735931991 0.133347779610461986 0.102797562327927 0.192905974805407998 0.532889500000000016 -0.715565094696997028 0.490605951997134027 -34.9543689815264003 0.23894492969598799 0.437103330000000012 -0.373045400000000027 0.4838287 0.369546980000000025 -0.57612770000000002 0.542345349999999948 0.596507969999999998 -0.614062250000000032 -0.395562020000000014 0.478879959999999993 122 0 120 2 2.53615069999999987 157.087997 0.400934523011220012 2.24724215089200019 31 false 1.57195970000000007 1.68021364512652993 0.0327338445919604995 0.000260702799999999973 14 8 0.470209270000000013 0 14 false 119 2350.47280955500992 3.75713510502481984 625.60199 17.2604770000000016 9 1282.6632756833701 17.7351741286573983 72.3231300000000061 17.5811059999999983 10 1627.2698258078301 11.9088155927485992 136.64412999999999 16.733270000000001 1.23802030000000007 0 0.847835540000000054 0.32062911999999999 0.527206399999999964 \N \N 0 \N \N \N NOT_AVAILABLE 150.83054687833399 -62.8429152924634025 22.3558761839836002 -12.2433628095245997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469925663983488 2481469925663983488 123055445 2015.5 25.202261935407801 5.48833180569289958 -2.66226064554770003 8.83273554345574041 \N \N \N \N \N \N \N -0.682982560000000016 \N \N \N \N \N \N \N \N \N 39 0 38 1 -0.601176200000000049 27.7546997 0 4.37308823746223984e-16 3 false 0.0124756769999999993 \N \N 0.0243280360000000008 5 4 10833.6149999999998 0 5 false 41 70.7457688258494954 2.10916196124514999 33.542099 21.064114 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.812045887607013 -62.830365332741799 22.3591732991289014 -12.2285824920249002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481472949320968704 2481472949320968704 1620132 2015.5 25.1792982796334002 0.552606315134874015 -2.64313647283682984 0.370970701872608 1.8997421507410901 0.594709146612938055 3.19440560000000007 5.63449122344275022 1.58916737568052002 11.0723603827910004 0.732755303474206032 0.0562208299999999994 -0.121909569999999995 0.104412474000000005 0.0938661840000000053 -0.252833130000000017 0.188294440000000007 0.27536786000000002 -0.301303180000000004 -0.0479975450000000026 0.0598529169999999985 127 0 125 2 2.02413800000000021 153.382004 1.21194163249030007 1.37869818818617995 31 false 0.0950623200000000057 1.25485059888924 0.121161813917462002 -0.0491236300000000015 15 9 1.40323930000000008 0 15 false 125 253.512078687626001 1.97792601623945008 128.171005 19.678370000000001 11 98.5866513969839957 12.6022417409776999 7.82294559999999972 20.3668419999999983 11 335.690823440500992 8.87273050187877921 37.8339920000000021 18.4470710000000011 1.71304450000000008 0 1.91977120000000001 0.688472749999999967 1.23129840000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.748945236434992 -62.8225232091805026 22.3445588255776002 -12.2023543936966998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481472987976054016 2481472987976054016 1109598173 2015.5 25.190589508521299 0.039654620139459501 -2.63752742923156003 0.0303197782302351004 2.70035147152541999 0.0451016554403008002 59.87256 15.2672756591297993 0.0965814407249959983 21.8386542825797001 0.0675335853681383047 0.164484720000000001 0.157054050000000001 0.0965798400000000001 0.0798906999999999951 -0.206194640000000012 0.10815284 -0.0166318830000000001 -0.197397020000000006 -0.0357614799999999983 0.323989629999999973 150 150 147 3 6.75283199999999972 287.838989 0 0 31 true 357.681269999999984 1.59913625904109002 0.0104376620365626005 -0.046079415999999998 17 9 0.0625199899999999975 0 17 false 147 317970.261854700977 100.096067111894996 3176.6499 11.9323999999999995 16 170988.199610368989 276.948857251229015 617.399900000000002 12.2689719999999998 16 213846.174703319004 245.492714596378988 871.089699999999993 11.4366664999999994 1.21028409999999997 0 0.832305900000000043 0.336572649999999973 0.495733260000000009 -30.6848966753631984 0.618913521373785969 3 5500 3.5 0 NOT_AVAILABLE 150.766293149233007 -62.8127314842229012 22.3574011262492007 -12.2012935508658007 100001 5786.75 5751.75 5817.5 0.340000004 0.160400003 0.467299998 0.174500003 0.0869000033 0.289099991 200111 1.30522549999999993 1.29146359999999993 1.32115859999999996 1.72109430000000008 1.68048759999999997 1.7617008999999999 +1635721458409799680 Gaia DR2 2481469723800909440 2481469723800909440 1692697459 2015.5 25.2075439000955015 0.0591092187064347976 -2.67113552709988999 0.0516012715444630968 5.4283857358246701 0.0852574480322346034 63.6705169999999967 9.80858064529422968 0.241169891058130997 -45.9305548891382003 0.170334978855778002 0.459666430000000015 -0.451223519999999989 0.626899059999999952 0.434409380000000012 -0.663016260000000024 0.569560949999999955 0.549634799999999979 -0.762643999999999989 -0.627084899999999945 0.749743900000000019 119 119 115 4 6.21001340000000024 229.121994 0 1.32805926544960009e-15 31 true 301.770420000000001 1.62361772166917007 0.0130725082046577994 0.0152387249999999998 14 8 0.155712159999999988 0 18 false 133 1058415.75268394989 461.540651126619991 2293.21997 10.6267250000000004 16 568918.497352228034 749.326654769699985 759.239599999999996 10.9637630000000001 16 696890.055097960983 821.725954955732959 848.080900000000042 10.1540090000000003 1.19594650000000002 0 0.809754399999999985 0.337038039999999983 0.472716330000000018 -33.451089407682602 0.794088334947231966 3 6000 4.5 0 NOT_AVAILABLE 150.83065130223099 -62.8362338366420019 22.3608484365567008 -12.2387767155336995 100001 5836.5 5593.06982 6047.12988 0.246000007 0.100699998 0.405999988 0.121699996 0.055399999 0.201499999 200111 1.1628286000000001 1.08323229999999993 1.2662500000000001 1.41363109999999992 1.38629760000000002 1.44096460000000004 +1635721458409799680 Gaia DR2 2481469723800909824 2481469723800909824 105188748 2015.5 25.2147789466222996 0.108047172076348993 -2.67398757594096015 0.0854737793629729986 4.11175269703405011 0.124101748668719994 33.1321099999999973 23.8308728782051986 0.246596313131804995 -47.5258636020651011 0.140999258828176988 0.369479000000000002 0.22950298999999999 0.110774839999999999 0.239102289999999995 0.0405946630000000031 0.241812699999999992 0.316891040000000013 -0.156867549999999994 0.0797310549999999951 0.255476700000000001 115 0 115 0 2.90960200000000002 158.195007 0.271394774601668998 1.57552122336490008 31 false 2.69268200000000002 1.37459602281165005 0.0264459687866030989 0.105460756000000003 13 8 0.225973010000000002 0 15 false 132 3365.73002410686013 4.32270516581269959 778.617004 16.8706679999999984 13 831.51363247481197 16.8195988658419004 49.4371870000000015 18.0517140000000005 13 3970.67684584571998 10.9591241140442008 362.317000000000007 15.7647589999999997 1.42679010000000006 0 2.28695490000000001 1.18104549999999997 1.10590929999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.847644672829006 -62.8358123089412004 22.3666493109965003 -12.2440898078178009 100001 4367.7002 3690 4777.43994 0.31099999 0.1866 0.408699989 0.169 0.104900002 0.226799995 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469655081432960 2481469655081432960 120036198 2015.5 25.2273639611373994 0.0585086459610563991 -2.67484377036771992 0.0385910063900374023 1.16797198837603 0.0604928166521540023 19.3076149999999984 10.3454341106528993 0.156349613570209989 -4.50143357454609028 0.0816878635168845069 -0.00833587099999999991 0.0499069649999999976 -0.00862126600000000069 -0.0581845799999999996 -0.0427808869999999966 -0.0859057299999999996 0.00635892499999999965 -0.105813086000000001 0.20529254999999999 -0.101511024000000005 136 0 133 3 -0.173955500000000013 124.581001 0 1.77635683940025007e-15 31 true 8.59964300000000037 1.5366005101515301 0.0134203232887697994 -0.105414145000000001 16 9 0.147150300000000012 0 16 false 133 7777.69908904958993 7.1475512704229498 1088.16003 15.9612379999999998 16 3425.61859998471982 20.0692187464240988 170.690190000000001 16.5145400000000002 14 6273.16930708114978 13.9744715407372997 448.902069999999981 15.2682029999999997 1.2469996000000001 0 1.24633689999999997 0.553301799999999955 0.693035100000000015 \N \N 0 \N \N \N NOT_AVAILABLE 150.873449114614999 -62.8313443928697026 22.3782868095258003 -12.2495150597111007 100001 4945.5 4834 5142 0.174500003 0.0992000028 0.263999999 0.0930000022 0.0553000011 0.122100003 200111 0.683371660000000047 0.632139899999999977 0.715260200000000013 0.251680430000000011 0.223737870000000005 0.27962300000000001 +1635721458409799680 Gaia DR2 2481469753865292416 2481469753865292416 99547209 2015.5 25.2231226634405985 0.214954073393405998 -2.66039907060419001 0.143813693903276002 1.25724492398327992 0.225679775614664013 5.57092429999999972 9.40124118020706057 0.527696497904236006 -7.50779498139335999 0.269726695256547022 0.0608109979999999981 0.0640065799999999935 -0.0824552800000000058 0.0974878500000000009 -0.129558299999999987 0.127802599999999988 0.119445140000000005 -0.0686072100000000018 0.0941074640000000018 0.0731065500000000063 150 0 148 2 1.60429350000000004 171.130997 0.561453382293221948 1.48366647983754008 31 false 0.501355800000000018 1.42600822482217993 0.0470217233767356996 -0.0595851500000000034 17 9 0.46623756999999999 0 17 false 147 833.560156244814038 2.278141596667 365.894989 18.3860230000000016 16 290.535572549844005 14.0148931540937998 20.7304880000000011 19.1933900000000008 15 863.695004727090009 14.0689906829700995 61.3899770000000018 17.4210190000000011 1.38469979999999993 0 1.77237130000000009 0.80736730000000001 0.965003970000000044 \N \N 0 \N \N \N NOT_AVAILABLE 150.851819403728001 -62.8199857561909027 22.3796986797354016 -12.2345252218452991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469655081433216 2481469655081433216 988088051 2015.5 25.2338011785273011 0.347574724370767973 -2.67698017547589018 0.229010854574844991 1.63615201701855995 0.357229771475270019 4.5801109999999996 -8.5849531182016694 0.847840953741450964 -15.7308059284692998 0.416724253595906979 0.0570155980000000007 0.0696287399999999945 -0.121425340000000007 0.135594980000000004 -0.110619750000000003 0.180614770000000008 0.168865249999999995 -0.0548981200000000016 0.0696310400000000052 0.0777982400000000046 150 0 150 0 2.62161400000000011 193.574005 0.660481362631994973 0.852394861048643038 31 false 0.196255089999999993 1.31184489960841 0.0757118715585295976 -0.0591306600000000016 17 9 0.747749569999999975 0 18 false 149 404.311436143197 1.71421506425218007 235.858002 19.1715760000000017 14 119.479140278879996 16.0322383678260003 7.45243020000000023 20.1581569999999992 14 556.440864462489003 14.9499824296303991 37.2201700000000031 17.8983729999999994 1.67178059999999995 0 2.25978469999999998 0.986581799999999953 1.27320290000000003 \N \N 0 \N \N \N NOT_AVAILABLE 150.88819857999701 -62.8306005054652985 22.3835995686429001 -12.2538690580815999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469685145813504 2481469685145813504 1272489807 2015.5 25.2411373336802995 0.221238935824489003 -2.66730444107672993 0.147977076085543002 0.935281675937140955 0.232738091341105013 4.01860139999999966 13.0458014785287002 0.537735445591595029 -12.7731467675628991 0.277259974891778005 0.0654704049999999954 0.0681346099999999982 -0.101956405 0.0967375040000000019 -0.129396750000000005 0.123897380000000001 0.0952534099999999967 -0.0461383399999999999 0.103963554 0.0833622700000000022 151 0 150 1 2.07505680000000003 182.507004 0.537295969617598956 1.33203530496668998 31 false 0.465899899999999978 1.43231379260030001 0.0491074190711267011 -0.0603454149999999995 17 9 0.475218360000000006 0 17 false 150 779.175152036683016 2.47295356441870018 315.07901 18.4592780000000012 15 223.174427757009994 10.9946614352154999 20.2984350000000013 19.4797760000000011 15 863.776925300977041 12.7806544725712001 67.5847200000000043 17.4209159999999983 1.39500259999999998 0 2.05886080000000016 1.02049830000000008 1.03836250000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.893927506605991 -62.8187482468416007 22.3942172556621983 -12.2475712320007997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469960023727360 2481469960023727360 178108438 2015.5 25.2087869259320989 0.14674100868878201 -2.65202729504924983 0.103959598407851003 1.39020739136308991 0.161110480675944995 8.62890699999999988 -1.90863671067429008 0.412020112595202992 -10.4783726569040994 0.200747413552059994 0.0920313999999999993 -0.0880789159999999932 0.185550760000000009 0.0488248000000000015 -0.20974799999999999 0.118531674000000004 0.276691620000000027 -0.301934099999999983 0.0451140370000000027 0.0315584429999999985 133 0 132 1 1.0908637000000001 144.462997 0.311445210875827994 0.910165113059576036 31 false 1.22295050000000005 1.38167055160952001 0.0320081574300764005 -0.0515907030000000016 15 9 0.368357060000000014 0 15 false 131 1622.69755481876996 2.62104085760417016 619.104004 17.6627709999999993 14 433.209413754654008 9.78088394516749027 44.2914400000000015 18.7596440000000015 15 1922.92248789873997 12.1562309164607001 158.184100000000001 16.5520150000000008 1.45198460000000007 0 2.2076283000000001 1.09687230000000002 1.11075590000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.815683836379009 -62.8183468136260004 22.3692297398727007 -12.2214685552714997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469960023727232 2481469960023727232 154885217 2015.5 25.2108741856875014 38.6317635485544031 -2.65144943050309978 60.8463183449119995 \N \N \N \N \N \N \N 0.973071400000000031 \N \N \N \N \N \N \N \N \N 44 0 44 0 2.42760899999999991 63.6800003 0.797064691374807954 2.78303345709027994 3 false 0.598786799999999952 \N \N 0.583707100000000034 5 3 358.934630000000027 0 13 true 49 1346.20103491783993 7.56954514797350964 177.843994 17.8655909999999984 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.819305763574988 -62.8169526792636006 22.3714309327216014 -12.221699076817 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469964318473728 2481469964318473728 1152897351 2015.5 25.2110993154704985 0.365471408413169996 -2.65141010205310002 0.273116925932190002 1.49882741711130008 0.421735878139613996 3.55394819999999978 0.0909691855408395061 0.908071245387052972 -4.76510195754304977 0.496985840287246017 0.162490810000000013 0.0538599040000000001 0.128999219999999998 0.125215550000000009 -0.311888339999999986 0.201388060000000008 0.232252989999999992 -0.216390090000000007 0.00889144700000000024 0.216923830000000012 141 0 137 4 28.9380039999999994 1378.21997 2.24002955545673021 75.5085981720414026 31 false 0.17779468000000001 1.41733204830963011 0.0808874019936259014 -0.0192354789999999998 16 9 0.811688659999999951 0 16 false 126 2197.54277006834991 12.9353307411781007 169.886993 17.3335229999999996 13 954.221775107494977 18.4312365343473985 51.7719880000000003 17.9022660000000009 14 3614.32078598624003 30.2206662834914006 119.597660000000005 15.866854 2.07893229999999996 0 2.03541179999999988 0.568742749999999964 1.46666910000000006 \N \N 0 \N \N \N NOT_AVAILABLE 150.819717381283994 -62.8168232110809015 22.3716596859380985 -12.2217453232047006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469960023824896 2481469960023824896 1242340549 2015.5 25.2090786556395017 0.629855345634906971 -2.6488086553201402 0.421204529781442016 0.854135544206327979 0.626870806347991971 1.3625385000000001 14.9581305777389009 1.54679605416164989 8.65991672186171968 0.716355799263446946 0.0304827369999999993 0.0355490369999999986 -0.136639790000000011 0.238646390000000014 -0.308203579999999977 0.40655543999999999 0.363014459999999983 -0.168507710000000005 -0.136318489999999987 0.215740700000000007 121 0 121 0 1.73248819999999992 143.669998 0.643156923374915035 0.327086415814979992 31 false 0.0892320499999999933 1.18408022027330007 0.121031774668702005 -0.108410820000000005 14 9 1.38155509999999992 0 14 false 121 227.790864069165991 1.81317122287721011 125.630997 19.7945250000000001 11 103.799840705017999 21.0694228251992008 4.92656329999999976 20.3108959999999996 12 316.245962369499978 8.53586565654313922 37.0490799999999965 18.5118580000000001 1.84399760000000001 0 1.79903790000000008 0.516370800000000019 1.2826671999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.813328165765 -62.8152994455454987 22.3707196592920994 -12.2185833929340006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469891304254080 2481469891304254080 1686763325 2015.5 25.2462437054822004 0.553448231198859997 -2.64263589810019006 0.267691750808972007 -1.13972289220391998 0.416912619973535015 -2.73372130000000002 0.30542162332141598 1.2912023831675199 -3.48642041398150004 0.469623542970213026 -0.280425340000000023 -0.0378333329999999968 -0.555332000000000048 0.26454686999999999 -0.0455846700000000007 0.397586459999999975 0.0222969000000000014 0.147711110000000007 -0.0185898799999999996 -0.105741650000000006 125 0 123 2 -0.397580900000000015 111.353996 0 0 31 false 0.181180029999999992 1.58439320321713994 0.0890880995245407065 -0.192992570000000002 14 8 1.18825639999999999 0 14 false 122 348.60456543329002 1.74179041823622005 200.141998 19.3325330000000015 10 148.873395162460014 10.7443765044471 13.8559359999999998 19.9193460000000009 12 322.377465946353027 22.2852822149184995 14.4659359999999992 18.4910089999999983 1.35182069999999999 0 1.42833710000000003 0.586813000000000029 0.841524099999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.881523619311992 -62.7942039255053999 22.4083631353054997 -12.2265132151994997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481469891304258432 2481469891304258432 715555867 2015.5 25.2430175027300017 2.62161677007305016 -2.63792701709138999 1.28806267108946004 \N \N \N \N \N \N \N -0.193340469999999987 \N \N \N \N \N \N \N \N \N 121 0 120 1 36.2266600000000025 1999.27002 11.4639856078626998 129.667397567785002 3 false 0.00709399299999999983 \N \N -0.207745690000000011 14 8 5.25683300000000031 0 14 false 124 326.786365937983021 3.26160874992359018 100.192001 19.4027059999999985 13 430.614396984462019 9.05747142074372036 47.5424500000000023 18.7661669999999994 13 978.643536445850032 15.3518049457061991 63.7477840000000029 17.2853579999999987 4.31247470000000011 0 1.48080830000000008 -0.636539459999999946 2.11734769999999983 \N \N 0 \N \N \N NOT_AVAILABLE 150.870818641867004 -62.7912705972976966 22.407070882984101 -12.2209486125045004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468933526927104 2481468933526927104 344538056 2015.5 25.2537867922662009 0.054414787036804399 -2.67536198620907006 0.0427118788931626983 0.459211418577478991 0.0652916277271526069 7.0332359999999996 9.0031166672487295 0.13275286436078601 0.618437945735008987 0.0889720201080328038 0.171481030000000007 -0.0184035789999999998 -0.125645730000000011 -0.107711664999999998 -0.365941169999999982 -0.158926070000000003 -0.341605400000000003 0.125104080000000006 0.360359729999999989 0.258985220000000016 139 0 139 0 1.47415539999999989 158.863007 0 0 31 true 9.07834700000000083 1.6117880555920201 0.0129449384445286999 -0.0174827169999999983 16 8 0.127775310000000003 0 16 false 138 8244.49307125835003 6.58926693943605013 1251.19995 15.8979560000000006 15 4472.23450802500975 17.5827817872354011 254.353070000000002 16.2250769999999989 15 5600.1660881996404 18.6132138175596999 300.870450000000005 15.3914174999999993 1.22171260000000004 0 0.833659200000000045 0.32712078 0.506538400000000055 \N \N 0 \N \N \N NOT_AVAILABLE 150.926430081088995 -62.8207866972031965 22.4032036458246999 -12.2597148615062004 100001 5719 5600 5810.33008 0.180000007 0.00800000038 0.47209999 0.103799999 0.00529999984 0.238999993 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481474873466308736 2481474873466308736 906124032 2015.5 25.2838989715723983 0.55614088824130703 -2.66226225475825995 0.315187062479287017 0.347318182883596005 0.50489155616238901 0.687906499999999976 5.74707681387847025 1.20419288075465003 4.68907452694675975 0.58938980178565703 -0.130700810000000001 0.140951469999999995 -0.334472949999999991 0.185441689999999992 -0.139446399999999998 0.241533880000000006 -0.0390398699999999974 0.0606863830000000035 0.0664643500000000054 0.0457185130000000023 121 0 120 1 1.40187400000000006 136.848007 0.465059320148136002 0.212974239385625014 31 false 0.124811969999999994 1.49734455222403007 0.116798234396992995 -0.132875980000000005 14 9 1.08018239999999999 0 14 false 119 285.730481357862004 1.86116628451096999 153.522003 19.5484730000000013 11 79.3599770282617953 8.32251253797602963 9.53557900000000025 20.6023850000000017 11 346.915347159410999 7.8333408150650401 44.2870199999999983 18.4113620000000004 1.49187910000000001 0 2.19102290000000011 1.05391119999999994 1.13711169999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.974214162969986 -62.7963002897335016 22.4367583316980017 -12.2586075182409004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475736754517760 2481475736754517760 442392503 2015.5 25.2729608412148998 0.299262903249690015 -2.63297168384253011 0.136033676797641001 1.58698046794606995 0.283594065752732993 5.59595779999999987 11.4974669342911007 0.802146066086004028 -7.88236198554024003 0.241921652630327999 0.0456178230000000018 -0.434257420000000005 -0.755427060000000039 -0.000309451300000000023 -0.141326410000000013 0.0418409199999999967 -0.0457454200000000019 0.620059429999999967 0.228377579999999997 0.146182160000000005 120 0 119 1 2.79468560000000021 160.779999 0.637255519445353968 2.9707110361829101 31 false 0.738188300000000019 1.30650817718799006 0.0470431452856496998 -0.0155793830000000005 14 8 0.754560499999999967 0 14 false 119 1204.83817298400004 3.27346809820826978 368.062012 17.9860439999999997 11 295.796380647061994 11.5764040611291996 25.5516639999999988 19.1739059999999988 13 1528.91639329759005 22.7646344025457985 67.161910000000006 16.8009599999999999 1.5144879 0 2.37294580000000011 1.18786239999999998 1.1850833999999999 \N \N 0 \N \N \N NOT_AVAILABLE 150.92571020391 -62.7742712674019998 22.4373939645199982 -12.2273514935044005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475736755123200 2481475736755123200 1321625067 2015.5 25.2732735453061004 29.0864114353678005 -2.63311461479124009 40.2957370145866989 \N \N \N \N \N \N \N 0.998824099999999993 \N \N \N \N \N \N \N \N \N 51 0 51 0 0.122209324999999994 46.5074005 0 0 3 false 0.0675517600000000024 \N \N 0.532150149999999988 6 4 1405.94029999999998 0 11 false 54 154.008352308028009 1.88412767907453005 81.7398987 20.2195050000000016 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.926461072129001 -62.7742704701069982 22.4376373261161 -12.2275993614006993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481474907826149376 2481474907826149376 1657099509 2015.5 25.2949252181388005 1.58696269566446002 -2.65153323662587015 1.39249041545393992 \N \N \N \N \N \N \N -0.534010800000000008 \N \N \N \N \N \N \N \N \N 85 0 85 0 -0.144065990000000005 77.5367966 0 0 3 false 0.0326849300000000009 \N \N -0.0850960300000000031 10 7 5.20375199999999971 0 10 false 86 107.221563165041999 1.26697588649403992 84.6278992 20.6126600000000018 8 72.8132560593461022 10.9212387602324998 6.66712430000000023 20.6958620000000018 8 93.9796493876298058 21.8807921547334985 4.29507539999999999 19.8293360000000014 1.5555911 0 0.866525650000000036 0.083202360000000003 0.783323299999999945 \N \N 0 \N \N \N NOT_AVAILABLE 150.986256271777989 -62.7819438403583021 22.4512792760573987 -12.2526853415022998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481468723073134592 2481468723073134592 1312224346 2015.5 25.2992757531965005 0.456440557373821998 -2.68030942752761003 0.275783274031606018 2.6067510024543501 0.44847632581657898 5.81246099999999988 6.94536188792871023 1.14178491834521001 -17.6312995359935982 0.454115738521752021 -0.0205974969999999993 -0.0911437100000000028 -0.39489993000000001 0.208863749999999987 0.104841076000000005 0.300623030000000013 0.170727430000000013 0.169368770000000002 0.0726727999999999957 -0.00954945199999999994 124 0 124 0 2.19820379999999993 155.438004 0.886722134233151049 1.18138012701180006 31 false 0.171620350000000005 1.39480590228694989 0.0940951655820955052 -0.0942153200000000052 14 8 1.02569559999999993 0 14 false 123 364.03278594847302 1.81242915925774994 200.854004 19.2855150000000002 10 76.2910567600631992 8.26530753913458938 9.23027399999999965 20.6452050000000007 11 479.145765667666012 12.807204075904 37.4122100000000017 18.0607509999999998 1.52578799999999992 0 2.5844535999999998 1.35968969999999989 1.22476389999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.021275032749998 -62.8062466902013981 22.444576410405201 -12.2810412068455008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475045265017728 2481475045265017728 1056754641 2015.5 25.3246564219978012 0.946763995452526985 -2.63213292932028997 0.925416591511880049 -0.602062818469782046 1.04791331073619998 -0.574534949999999989 -4.68105333135621038 2.69980385677577006 -2.88367568951189002 1.65856338512448009 -0.220771760000000011 -0.268592500000000012 -0.648429400000000045 0.336582749999999986 0.60784590000000005 0.548880699999999999 -0.56596690000000005 0.568792760000000008 -0.442938270000000023 -0.30561104 105 0 105 0 0.857591149999999969 111.904999 0 0 31 false 0.0485611700000000007 1.65908700827584998 0.249006187762184 -0.0108494609999999995 12 8 2.61791660000000004 0 12 false 103 143.824467150955996 1.37306261095634996 104.747002 20.2937830000000012 8 78.0987707214050033 6.12712441023697973 12.7463990000000003 20.6197780000000002 9 132.530658966311989 19.1553052677076003 6.91874400000000023 19.4561300000000017 1.46448960000000006 0 1.16364859999999992 0.32599450000000002 0.837654099999999957 \N \N 0 \N \N \N NOT_AVAILABLE 151.027400951368008 -62.7518783369341975 22.4868434707052991 -12.2455748153028008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463401609068672 2481463401609068672 1128246240 2015.5 25.3676721400264 0.421491797571684979 -2.6499743460454801 0.233132924583326989 0.681837866418954053 0.374445319604231996 1.82092769999999993 16.1079250785968 1.07116469877425002 -17.1458054798153015 0.400523966236276008 -0.115789323999999999 -0.122754580000000002 -0.633579430000000055 0.237689210000000012 0.128074770000000004 0.330365030000000004 0.0611744079999999996 0.375284579999999979 0.0215931140000000001 -0.0708213599999999999 132 0 131 1 2.0113468000000001 159.919006 0.793640542115896963 1.58851340138379005 31 false 0.242029679999999997 1.51164989762525992 0.079704298797093398 -0.0571907720000000008 15 9 0.990307099999999996 0 15 false 131 469.063503666308975 2.09191886430643015 224.225998 19.0102860000000007 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.128936888057012 -62.7500083553241979 22.5210162762279005 -12.2779728255540004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463401608487040 2481463401608487040 581878459 2015.5 25.3675887976109991 0.279571474886438021 -2.64973561785309997 0.15543028628021599 0.560277808181066983 0.248540846484677003 2.25426860000000007 17.364759018651899 0.717347617418742978 -16.710581893409401 0.272120461982725992 -0.116582950000000005 -0.153234700000000001 -0.639054699999999976 0.230955589999999988 0.131021470000000001 0.32386520000000002 0.0227598980000000006 0.38771460000000002 0.0107513890000000001 -0.071864285 134 0 133 1 1.19339630000000008 147.326004 0.250206591469458006 0.273144593859734996 31 false 0.538290799999999958 1.4507647174953 0.0535445363436096028 -0.0529730730000000025 15 9 0.66502859999999997 0 15 false 132 750.893401118599968 1.93194481504066995 388.671997 18.4994200000000006 13 443.525353252716002 32.1370179445625013 13.8010739999999998 18.7340930000000014 14 1112.10232933262 19.5439946807534994 56.9025079999999974 17.1465589999999999 2.07170249999999978 0 1.587534 0.234672550000000008 1.3528614000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.128552471948012 -62.7498268584315966 22.5210269157886991 -12.2777202108663008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463435968806784 2481463435968806784 891320624 2015.5 25.3758966356819009 0.232699494496486997 -2.64434349229667021 0.123898130805106005 0.596629126814504973 0.241516099875208001 2.47034930000000008 -5.40194705748229964 0.627103700796666996 -21.4243264733605017 0.226167899677665013 0.135765980000000008 -0.342172860000000023 -0.712118699999999993 -0.0554174740000000013 -0.0695765599999999956 0.00278093390000000006 -0.174444939999999993 0.597392799999999946 0.265623480000000023 0.218856099999999998 106 0 106 0 1.46578910000000007 122.538002 0.378348977276276977 1.21110185262504011 31 true 1.10344920000000002 1.3970292192306899 0.0466279254913413987 0.0604526900000000034 12 7 0.589543599999999945 0 12 false 106 1420.81139904293991 2.95025358287437989 481.589996 17.8070239999999984 11 413.951872475944015 14.5898814850311993 28.3725319999999996 18.8090130000000002 11 1544.02697051890004 15.5726107760745993 99.1501700000000028 16.7902829999999987 1.37807100000000005 0 2.01873019999999981 1.00198940000000003 1.0167408 \N \N 0 \N \N \N NOT_AVAILABLE 151.140032448542001 -62.7414417374032993 22.5309544644183006 -12.2757586324842993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463053716305152 2481463053716305152 817328423 2015.5 25.4035139016330014 1.25328345049062007 -2.67634643126097993 0.953598874666774954 -1.25179636860450993 1.25612901139293998 -0.996550799999999959 -0.987955981993609011 3.3457133577367002 -1.18857155907658996 2.67217649632442988 -0.170893450000000002 -0.43629005999999998 -0.619424639999999971 0.406982600000000028 0.317296619999999974 0.434785699999999997 -0.322050449999999988 0.409948599999999996 -0.508416949999999979 -0.0322298150000000019 92 0 90 2 -0.898797500000000027 73.2062988 0 0 31 false 0.0376369949999999995 1.33826897125646993 0.311009035279721013 0.0527003070000000018 11 8 3.12215920000000002 0 11 false 93 114.683508626713007 1.2980789009151199 88.3486023 20.5396140000000003 9 56.4975331151431988 11.3779247591197006 4.96553950000000022 20.9713150000000006 8 98.4806361919310973 18.8967099194154002 5.21152299999999968 19.7785429999999991 1.35135530000000004 0 1.19277190000000011 0.431701659999999987 0.761070249999999948 \N \N 0 \N \N \N NOT_AVAILABLE 151.224139639856986 -62.7588260506910984 22.5451637671956995 -12.3156649044749997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463088077859584 2481463088077859584 1215464242 2015.5 25.4113563243593994 1.37762160790870003 -2.67148941846670018 1.04839212490097999 3.66034219866652011 1.31175753394534 2.79041080000000008 6.0652478949192199 3.67244648037143007 -2.86516247255566014 2.49333402235669022 -0.202987450000000014 -0.329582199999999992 -0.681351359999999961 0.31378064 0.358063850000000017 0.397933419999999982 -0.478490599999999988 0.47191749999999999 -0.371924220000000028 -0.132246079999999988 97 0 96 1 1.42489479999999991 110.846001 0 0 31 false 0.028296959 1.34529671346539992 0.350000528080948003 0.0482412600000000011 11 8 3.46065740000000011 0 11 false 96 93.9053302628311002 1.21414225244900997 77.3429031 20.7566400000000009 7 38.2384881602595001 11.1487019220683994 3.42986000000000013 21.3951360000000008 10 84.9869909428799986 9.64782404152298056 8.80892850000000038 19.9385399999999997 1.31223099999999993 0 1.45659640000000001 0.638496399999999964 0.818100000000000049 \N \N 0 \N \N \N NOT_AVAILABLE 151.235169491060987 -62.7511147885170004 22.5544485230347007 -12.3140293150170006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463195450638592 2481463195450638592 1559741374 2015.5 25.4143306511821017 8.18089546596915973 -2.65905859087098007 2.3661627797397502 \N \N \N \N \N \N \N 0.282384960000000018 \N \N \N \N \N \N \N \N \N 73 0 72 1 28.1081350000000008 1198.72998 11.1325894428248002 102.959159261069004 3 false 0.00751499399999999967 \N \N 0.0723570659999999977 10 6 25.3173369999999984 0 10 true 86 307.164343894824015 5.42955352859855989 56.5727005 19.4699379999999991 10 332.759438135955975 9.16455494331835929 36.3093950000000021 19.0460619999999992 10 757.396763088984017 23.5574427058679987 32.1510620000000031 17.5636119999999991 3.54909749999999979 0 1.48245049999999989 -0.423875800000000025 1.90632629999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.229584462064992 -62.7385923601300988 22.5619553265534982 -12.3035621359959002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481462435241019904 2481462435241019904 571360233 2015.5 25.4320931353773005 0.547674072187879002 -2.66015064485626018 0.284859230786873974 0.229795491070799995 0.483081859915822975 0.475686429999999993 10.2183884192097008 1.24644203284653998 -3.75668075210584984 0.475088176622213976 -0.149563630000000003 0.0756575000000000025 -0.601175099999999962 0.225779000000000007 -0.11743924 0.325716850000000002 0.160359799999999997 0.236513730000000005 0.0317618200000000031 0.00473758499999999989 113 0 112 1 4.75288060000000012 191.690994 1.42431140469311002 4.71087735843059008 31 false 0.190947189999999989 1.47077560201916002 0.0992732260091291063 -0.0550589640000000019 13 9 1.15545560000000003 0 13 false 112 495.39523136352102 1.67672059687740993 295.454987 18.9509870000000014 10 161.578915235745995 8.36660016650633054 19.3123739999999984 19.8304270000000002 10 589.825477730747025 13.1732644506955996 44.7744369999999989 17.8351119999999987 1.51677759999999995 0 1.99531560000000008 0.879440299999999953 1.11587520000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.265695612898014 -62.7320837103539972 22.5784327286762014 -12.3111020427230997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463500392926592 2481463500392926592 1565628343 2015.5 25.4027920853315017 0.749168314681634029 -2.63137092251580018 0.408247178208061001 2.51990837271966006 0.672102300636576055 3.74929289999999993 4.7464834439597503 2.04948549367867994 -4.58754336388547035 0.688770327200739052 -0.102390334 -0.344431600000000004 -0.705854239999999966 0.232353339999999992 0.156942649999999989 0.343562800000000002 0.107425383999999999 0.5105267 -0.0181428549999999994 -0.0530712159999999974 132 0 131 1 -0.294468799999999975 120.734001 0 0 31 false 0.0854393239999999971 1.66887495523290008 0.142002093734056006 -0.043256395000000003 15 9 1.9001155999999999 0 15 false 130 198.397155432614994 1.41681671073503002 140.029999 19.9445270000000008 11 126.191236218260002 9.23650109165122046 13.6622330000000005 20.0988159999999993 12 131.516399454162013 11.9548250791710995 11.0011150000000004 19.4644699999999986 1.29894829999999994 0 0.634345999999999965 0.154289249999999989 0.480056760000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.181278184907995 -62.718355414038399 22.5614055241154006 -12.2735759173086993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463294234493952 2481463294234493952 591409811 2015.5 25.4189741086699001 0.531164858786172034 -2.63416110933325021 0.292844343899528015 1.25115102423362989 0.471511624032075027 2.65348940000000022 9.34913786258752921 1.41442733036113011 4.18082134913175008 0.52277215032128399 -0.109675123999999999 -0.277175369999999976 -0.68520190000000003 0.225968849999999999 0.122366050000000004 0.324312099999999992 0.0208648999999999987 0.458808270000000018 -0.0309684630000000016 -0.0577870200000000014 130 0 127 3 0.79654999999999998 134.158997 0.254576396919596992 0.0804162434203698068 31 false 0.164585129999999996 1.36643418798718996 0.102016262412588002 -0.0523980100000000018 15 9 1.31072089999999997 0 15 false 124 306.105349341681972 1.78217507815879994 171.759003 19.4736879999999992 12 103.638417549145998 12.4878407952790003 8.29914699999999961 20.3125859999999996 13 323.331620982545019 11.5650195970388996 27.9577239999999989 18.487798999999999 1.39484669999999999 0 1.8247871 0.838897699999999968 0.985889429999999956 \N \N 0 \N \N \N NOT_AVAILABLE 151.215817809178986 -62.7140647468522019 22.5757398949594013 -12.2821145412068002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481462400881277952 2481462400881277952 1072312263 2015.5 25.4563871370976003 0.327097156389709987 -2.67172482335333994 0.187079756788863988 -0.108690614570724001 0.294734401720184003 -0.368774769999999974 0.382808704575268 0.924735906080120018 1.3148334362032601 0.357535566868464993 -0.0375445670000000009 -0.312324580000000018 -0.633476299999999992 0.229023040000000011 -0.00877026699999999999 0.221733669999999994 0.171151759999999986 0.372078399999999976 -0.0613949000000000022 -0.108170520000000006 121 0 120 1 -0.469777259999999974 107.383003 0 0 31 false 0.409547180000000011 1.69484319812492989 0.0659618801552679934 -0.0548325799999999988 14 9 0.847226099999999982 0 15 false 119 587.734765784682963 1.78714179422003006 328.868988 18.7654110000000003 13 307.705717430124992 9.69084026908527996 31.7522219999999997 19.1310499999999983 12 411.865744438867978 10.3704043106071992 39.7154960000000017 18.2250300000000003 1.22431329999999994 0 0.906019200000000025 0.365638730000000023 0.540380500000000041 \N \N 0 \N \N \N NOT_AVAILABLE 151.32437861558401 -62.7322986420251993 22.5971770500738991 -12.3307878785712006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481462199018226176 2481462199018226176 795012341 2015.5 25.4716962382146015 0.0582781472623246019 -2.67470208196872994 0.039652687594378698 0.491581191676286 0.0635458954000309995 7.7358450000000003 1.01702699005153008 0.15489877965781601 2.78505685937604985 0.0843254209357087031 0.274495480000000014 -0.239437919999999999 -0.621807099999999946 -0.171570639999999996 -0.295394500000000004 -0.196309580000000011 -0.389986800000000022 0.471614599999999995 0.275635000000000019 0.377849800000000013 106 0 105 1 2.46983400000000008 138.324005 0.0674789267151886946 0.399119530056215976 31 false 18.6150109999999991 1.64569930683760002 0.0136385514347534004 0.0868991600000000031 12 7 0.15601066999999999 0 12 false 104 17088.1732032455984 12.3537394450895999 1383.23999 15.1066265000000008 11 9715.04943488983918 22.9740325821246003 422.87088 15.3827750000000005 11 10861.2205096853995 23.6186848730685988 459.857120000000009 14.6722230000000007 1.2041234999999999 0 0.710552199999999967 0.276148800000000028 0.434403419999999985 \N \N 0 \N \N \N NOT_AVAILABLE 151.35736281377001 -62.7285129820063005 22.6106143378593991 -12.3391784855697999 100001 6312 6184.6499 6439.08008 0.342700005 0.131899998 0.519999981 0.169699997 0.0649000034 0.275999993 200111 1.38428529999999994 1.3301847 1.44188310000000008 2.74039959999999994 1.9851875000000001 3.49561169999999999 +1635721458409799680 Gaia DR2 2481463225515009792 2481463225515009792 847772138 2015.5 25.4355422633197996 3.71657684530641008 -2.64358359562797007 1.76558406874651008 \N \N \N \N \N \N \N -0.31095440000000002 \N \N \N \N \N \N \N \N \N 94 0 94 0 16.0394210000000008 518.159973 11.0922193617500007 29.3017884506399007 3 false 0.00655908370000000008 \N \N -0.032203756 11 8 9.09665200000000063 0 11 false 95 117.139550684363002 2.23272225254613987 52.464901 20.5166070000000005 9 151.031281764682006 8.05815481516289012 18.7426619999999993 19.9037199999999999 10 167.430033780687012 12.0651166543764994 13.8772000000000002 19.202337 2.71864900000000009 0 0.701383599999999996 -0.612886400000000053 1.31427000000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.257224742861013 -62.7156134947257016 22.5879465719565999 -12.2969621968412 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464737343597184 2481464737343597184 913810460 2015.5 25.4525556102942012 12.2223894870012995 -2.63310853334128003 4.04196276008774014 \N \N \N \N \N \N \N 0.876719059999999994 \N \N \N \N \N \N \N \N \N 59 0 59 0 1.63328279999999992 72.0034027 3.31001556448785994 1.72610713256717996 3 false 0.022224443 \N \N 0.102027729999999997 7 4 8797.21500000000015 0 7 false 59 89.2929529120468999 1.2935412185391999 69.0298004 20.8113230000000016 4 64.7247447194719001 20.0303293125828006 3.2313369999999999 20.8237109999999994 5 87.2948237293352065 8.34259597792977914 10.4637480000000007 19.9094489999999986 1.70248120000000003 0 0.914262800000000042 0.0123882290000000006 0.901874540000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.281150889315995 -62.6989340351188034 22.6080641028306992 -12.2934685996966007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464741638863616 2481464741638863616 1327775982 2015.5 25.4571173716776009 0.949237792983058992 -2.62937030840961006 0.45185982813664699 1.10670057004434996 0.773844640848106002 1.43013269999999992 2.37801400277797015 2.63973517889878018 -7.5320800332425204 0.761232963503947979 -0.213088290000000014 -0.47851680000000002 -0.783626739999999988 0.299664019999999975 0.167436449999999987 0.410397440000000002 0.127684550000000008 0.578436430000000001 -0.119922929999999997 -0.144447390000000009 118 0 118 0 3.51491640000000016 173.615997 1.37500962310574004 1.43611494296616993 31 false 0.0811959950000000069 1.37701890614435007 0.147698307398448997 -0.0636362060000000007 14 8 2.46696189999999982 0 14 false 117 207.22057719509101 1.55379445859034004 133.363998 19.8972839999999991 10 59.2689388205241983 9.34671997480450933 6.3411483999999998 20.9193210000000001 12 222.915655070024002 13.7277268347370995 16.238351999999999 18.8915700000000015 1.36175950000000001 0 2.027752 1.02203749999999993 1.00571440000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.286704304327998 -62.6936188747392009 22.6138078329184999 -12.2916671864081994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463981429255296 2481463981429255296 91891134 2015.5 25.4698381652506995 0.714501644939454006 -2.64084713380897984 0.346952136379153009 2.02794756351193994 0.591659898654900984 3.4275563 -14.2150449586265992 2.00995808977455992 -17.7042343113171015 0.611119541343976946 -0.202531650000000008 -0.510194099999999984 -0.782814600000000027 0.307103069999999978 0.17420368 0.403590740000000003 0.0803489460000000044 0.588191330000000012 -0.152060339999999988 -0.15311749999999999 122 0 120 2 1.50263400000000003 138.570999 0.615068115678560012 0.396378335300601015 31 false 0.136022840000000006 1.27251412335455005 0.111815709321323994 -0.0656949649999999941 14 8 1.87802760000000002 0 14 false 118 264.992863002869001 1.38615294573544001 191.171005 19.6302799999999991 11 54.4625174532492977 8.22610049320926073 6.62069699999999983 21.0111449999999991 13 355.601316553785011 11.4533013064552005 31.0479319999999994 18.3845120000000009 1.5474523 0 2.62663270000000004 1.38086510000000007 1.24576759999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.322394132948006 -62.6986364124549027 22.6215855322746009 -12.3070114507137998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463985724619776 2481463985724619776 502999116 2015.5 25.4632442099164003 0.110702036778564994 -2.63649778495100007 0.0484988406809976971 4.43142603934737966 0.082767331299725494 53.5407640000000029 25.1126611357219005 0.289312943324095018 -88.4691754742870984 0.0918280891957413969 -0.296377239999999986 -0.437994779999999972 -0.794253499999999946 0.316857800000000023 0.0948729960000000011 0.413746029999999987 -0.0817347699999999983 0.529616529999999974 -0.160807389999999995 -0.186322299999999996 122 0 122 0 3.31240900000000016 174.464996 0.209005986043369008 2.5931365435533098 31 true 7.59881069999999958 1.32722789113911999 0.0161955897993878994 -0.0678262560000000014 14 8 0.283472840000000004 0 14 false 122 9447.7644129561304 8.79286846476862038 1074.47998 15.7500429999999998 14 2397.97230285711021 12.3238214076299997 194.58026000000001 16.9017769999999992 14 10864.9693308354999 21.6106467699424982 502.760040000000004 14.6718480000000007 1.40381800000000001 0 2.22992899999999983 1.15173440000000005 1.0781946 \N \N 0 \N \N \N NOT_AVAILABLE 151.305369052973987 -62.6974859543068987 22.6169519474382987 -12.3005454035802 100001 3551 3514 4015.16992 0.348500013 0.207699999 0.611599982 0.187999994 0.0922000036 0.324099988 200111 0.549630170000000029 0.42989767000000001 0.561265499999999973 0.0432751440000000015 0.0415914880000000028 0.0449588000000000002 +1635721458409799680 Gaia DR2 2481473091055268736 2481473091055268736 958454983 2015.5 25.1932063180951999 0.0441210609991167027 -2.62208618837165996 0.0431283439426575974 3.69114350103106981 0.0585904292609793001 62.9990840000000034 8.31049790234368935 0.110849381617767001 -45.6833751815517033 0.0963228760773426063 0.261269599999999991 0.0049772095000000004 0.0283216240000000001 -0.0861263649999999964 -0.493626330000000002 -0.156811709999999993 -0.422119499999999981 0.0253322399999999989 0.305175629999999976 0.468103920000000007 132 132 126 6 6.52873329999999985 252.539001 0 0 31 true 258.080080000000009 1.51038813595639998 0.0125746331341107 0.0129256879999999994 15 8 0.0740273800000000037 0 17 false 136 54033883.3437990025 20863.4899621436998 2589.87988 6.35670040000000025 15 21682427.1919403002 42939.269795031003 504.955660000000023 7.01111839999999997 15 45204222.1245457977 107747.578134694995 419.538180000000011 5.62397240000000043 1.23786499999999999 0 1.38714599999999999 0.654418000000000055 0.732728000000000046 13.2621245482321992 0.14341448160668499 10 4500 4.5 0 NOT_AVAILABLE 150.757441783546 -62.7976019996547024 22.3657051294880986 -12.1879000632621999 100001 4527 4461.8999 4615.75 \N \N \N \N \N \N 200111 22.9290519999999987 22.0557860000000012 23.6030140000000017 198.933960000000013 194.757499999999993 203.110410000000002 +1635721458409799680 Gaia DR2 2481470131822677248 2481470131822677248 67667183 2015.5 25.205210459482899 0.476878924193419984 -2.62988805344348986 0.275589294600800006 0.629905582028684963 0.500088030193187039 1.25958940000000008 18.0182079946889999 0.841826582769237053 -1.21860955490774003 0.439412127333339009 -0.106195150000000002 0.506249700000000025 -0.0151100959999999999 0.200912179999999996 -0.393238069999999995 0.320085699999999973 0.308583380000000018 -0.136281860000000005 0.0116102080000000003 0.254627669999999973 113 0 112 1 3.47276760000000007 165.373993 1.03867910882751002 2.34460686317830991 31 false 0.224687620000000005 1.5321263893833601 0.0841800883024440005 -0.0909709860000000037 13 8 0.755784099999999959 0 13 false 112 561.700054298151031 2.8110485708686701 199.819 18.8146039999999992 9 284.808859365715023 11.5815179060160993 24.5916700000000006 19.2150040000000004 9 451.748725479384007 12.0433015868383997 37.5103719999999967 18.1246779999999994 1.31130049999999998 0 1.09032630000000008 0.400400160000000005 0.689926150000000016 \N \N 0 \N \N \N NOT_AVAILABLE 150.788397491669997 -62.7997070358103002 22.3741722310608999 -12.1995693651411994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481473361637936896 2481473361637936896 133309115 2015.5 25.1795770914334014 0.324312844986908988 -2.5966992938360498 0.166024429200995999 1.06311523459207002 0.318349181825435978 3.33946280000000018 3.13731134312916016 0.863622487226059055 -17.2593615530721998 0.293867177069568997 0.145292819999999989 -0.466282640000000026 -0.715559660000000042 0.0475848540000000028 -0.313754900000000003 0.0160373749999999995 0.0847292000000000045 0.545420099999999963 0.0894917999999999964 0.150862369999999996 123 0 121 2 2.79380419999999985 163.130997 0.564957878207565045 1.65903248966438999 31 false 0.558134139999999945 1.41945089232340993 0.0527700783986242011 0.0161763099999999993 14 8 0.807492549999999976 0 14 false 121 866.824192539818 2.49749210321221016 347.078003 18.3435379999999988 14 282.408906052942996 10.9694851898068002 25.7449550000000009 19.2241919999999986 13 938.202357272651966 10.4664286996425009 89.6392060000000015 17.3311789999999988 1.40814159999999999 0 1.89301300000000006 0.880653400000000031 1.01235959999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.707290391495007 -62.7801677155405002 22.3623190888922991 -12.1592834634694 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479065354506624 2481479065354506624 1469776003 2015.5 25.2034509648741007 0.319021616861263013 -2.59337997782240004 0.192690865717559001 1.57802052547277993 0.281423725670250979 5.6072759999999997 -16.346144419582199 0.806924433744008018 -40.9595150369343983 0.341387493622012983 -0.0684871150000000012 -0.111551455999999993 -0.556455200000000039 0.224754120000000002 -0.140098990000000007 0.342644899999999974 0.224755050000000012 0.226199719999999993 -0.073715929999999999 0.0621727850000000012 130 0 129 1 2.67412420000000006 170.235001 0.791065915911726036 2.71963497930090004 31 false 0.39397660000000001 1.2986733366688501 0.0627613762979983975 -0.0662797400000000037 15 9 0.738953900000000052 0 15 false 128 724.42628388891103 2.26613694922694009 319.674988 18.5383800000000001 15 227.01397708672701 16.7639971767296991 13.5417570000000005 19.4612559999999988 14 885.563713873928009 16.6135413644634014 53.3037300000000016 17.3938710000000007 1.53580519999999998 0 2.06738469999999985 0.922876359999999951 1.14450840000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.751693027919003 -62.7672397077864019 22.3862522694772004 -12.1649789059690008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481473400292993024 2481473400292993024 84147379 2015.5 25.1882259017625003 1.40538623835244003 -2.59287008881421999 0.922961394084710007 \N \N \N \N \N \N \N -0.197345639999999989 \N \N \N \N \N \N \N \N \N 78 0 78 0 0.0804601399999999994 73.3059998 0 0 3 false 0.0272283219999999992 \N \N -0.113528900000000002 10 7 4.77251300000000001 0 11 false 79 97.0913996278655986 1.25912718857402006 77.1100998 20.7204130000000006 7 86.8090583132124038 11.4688780405544009 7.56909749999999981 20.5049759999999992 8 79.3967580847239986 6.25227949457409959 12.6988500000000002 20.0124129999999987 1.71184899999999995 0 0.492563250000000008 -0.215436939999999993 0.708000199999999968 \N \N 0 \N \N \N NOT_AVAILABLE 150.720995753945999 -62.7730964542163008 22.3719786688063991 -12.1589047796228993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479271512864384 2481479271512864384 868918377 2015.5 25.1998305338629009 0.970644078430314972 -2.58825368618584983 0.583580102417684987 1.71507568139526989 0.791042003102518043 2.16812199999999988 4.53614974111814995 2.34101563436442994 -11.5553772360380993 0.974451786800014985 -0.197247620000000012 0.0163653199999999992 -0.610695600000000005 0.240983639999999999 -0.229424400000000001 0.476661769999999985 0.316233129999999973 0.115529839999999995 -0.160733149999999991 0.0893748000000000042 121 0 118 3 3.28694199999999981 169.093002 2.00727005044692008 2.31038202108324997 31 false 0.0568137299999999998 1.37404153688589004 0.171881074959147007 -0.0853272199999999953 14 9 2.16595529999999981 0 15 false 119 191.148817249334002 1.43553206173752002 133.154999 19.9849360000000011 13 48.2978713873110976 10.3717077815123009 4.65669440000000012 21.1415700000000015 14 285.445498865683987 9.67041831978079003 29.5173899999999989 18.623111999999999 1.74598699999999996 0 2.51845739999999996 1.15663340000000003 1.36182399999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.739848547181992 -62.7640807739891002 22.3847431105288983 -12.1588811087629995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479344527650560 2481479344527650560 266401281 2015.5 25.1968466672417009 0.106425275907970004 -2.57671050972657012 0.0625435685647530992 0.738444232107190013 0.0972964421794828976 7.58963249999999956 -3.2465926590156502 0.27208019987998 -7.86774738679812025 0.125748374492732989 -0.0634441500000000047 -0.137861650000000002 -0.531005260000000034 0.170564199999999999 -0.212113159999999995 0.236855430000000006 0.0698335699999999976 0.20540810000000001 -0.0615021470000000001 0.0600372799999999984 137 0 137 0 0.540108699999999997 140.276001 0.112398949866794995 0.304638347847012991 31 true 3.36735819999999997 1.55163761749883999 0.0216428420791489017 -0.0794504359999999993 16 9 0.25431680000000001 0 16 false 136 3315.10410917300987 4.12123559859599986 804.395996 16.887122999999999 16 1382.67248265807007 11.0826129463554999 124.760509999999996 17.4995900000000013 16 2841.53602548171011 13.7572018526461992 206.54898 16.1280360000000016 1.27423109999999995 0 1.37155340000000003 0.612466799999999978 0.759086599999999945 \N \N 0 \N \N \N NOT_AVAILABLE 150.723446847183993 -62.7548196903301019 22.3862554662783992 -12.1470512965910995 100001 4984 4646.33008 5132.83008 0.744799972 0.592700005 0.824100018 0.370000005 0.319299996 0.398699999 200111 0.691778960000000054 0.652242699999999953 0.795980930000000031 0.266036720000000004 0.193784709999999999 0.338288719999999987 +1635721458409799680 Gaia DR2 2481480237880847744 2481480237880847744 1348884802 2015.5 25.2015487123471011 0.367641766030104011 -2.55161243855335007 0.18077007249090099 0.320009234176197976 0.351230156114899994 0.91110979999999997 -3.82427596133427983 0.920975585039815026 -11.6976890938798004 0.310447055778781011 0.0102113269999999992 -0.327023540000000001 -0.734325600000000023 0.0506527900000000031 -0.427577600000000002 0.0361260360000000003 0.0131746569999999993 0.502450350000000046 0.110238550000000005 0.167731020000000008 123 0 119 4 1.96084480000000005 145.460007 0.536497851316164009 1.19124847242529008 31 false 0.513572040000000007 1.62182659389459993 0.0579216545794358009 -0.0744277500000000009 14 8 0.866845129999999964 0 14 false 118 826.589591243382984 2.77449435958813995 297.924011 18.3951419999999999 11 478.19466954994499 11.8292452834960002 40.4247799999999984 18.6523760000000003 12 541.061279612461021 7.55059997596423038 71.6580500000000029 17.9288039999999995 1.23308590000000007 0 0.723571799999999987 0.257234569999999996 0.466337200000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.710019206375989 -62.7300374626212971 22.4001738096539995 -12.1254452733373004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475972977961728 2481475972977961728 1401536339 2015.5 25.2512293114981006 0.972787233139819962 -2.61933113590963007 0.532032676920103031 -0.122169619226118006 0.743960836520472957 -0.164215119999999992 -1.47948298917818 2.58752303568047992 -2.86728411392833982 1.02799440096118011 -0.32777630000000002 -0.36957884000000002 -0.749250050000000001 0.379401739999999987 0.242909299999999995 0.501426040000000017 -0.172930400000000012 0.486293299999999984 -0.227014099999999996 -0.225327040000000006 111 0 109 2 1.62965920000000009 128.548996 0.679947013306162029 0.229932819026443996 31 false 0.0693745100000000003 1.71497461503860005 0.167237958696401012 -0.103261919999999993 13 8 2.43154450000000022 0 13 false 105 163.832264011932011 1.34835632429945007 121.504997 20.1523670000000017 8 112.971120752641994 17.3806800432934985 6.49981000000000009 20.2189699999999988 9 110.630469123127995 16.4976784860335002 6.70582060000000002 19.652232999999999 1.36482020000000004 0 0.566736200000000023 0.0666027099999999955 0.500133500000000009 \N \N 0 \N \N \N NOT_AVAILABLE 150.870145319084003 -62.7709480994941984 22.4218785796475011 -12.2066781942816007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479069649743872 2481479069649743872 1577287702 2015.5 25.2155774845547995 0.141475780488703989 -2.59486742960211014 0.0727477305692044024 0.600101273639867983 0.104993995460772996 5.71557699999999969 -0.699049310081568009 0.374264434197334017 -8.9332197464911296 0.125279516703500987 -0.278352770000000027 -0.378082199999999979 -0.751583459999999981 0.320399519999999993 0.120621859999999997 0.490280959999999988 0.0589249430000000005 0.47578397 -0.146407829999999989 -0.111827570000000001 122 0 122 0 1.31570589999999998 137.559006 0 9.28992634585218961e-16 31 false 3.65584590000000009 1.59624688226747002 0.0226894085155297 -0.0451474899999999985 14 9 0.359109820000000024 0 14 false 114 3613.51214330206994 4.10802109867131016 879.624023 16.7935429999999997 11 1833.75525991575 20.433447836164401 89.7428199999999947 17.1930349999999983 12 2566.43393907335985 14.0660606690359007 182.455759999999998 16.2385939999999991 1.21770430000000007 0 0.954441100000000042 0.399492259999999988 0.55494880000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.777117449944996 -62.7635535067688011 22.3972141309865016 -12.1708218335423997 100001 5412 5385.14014 5771.37012 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479000930347136 2481479000930347136 776621589 2015.5 25.2348777174603001 3.35211365472440015 -2.60262754858496992 1.17529513006001007 \N \N \N \N \N \N \N 0.417121699999999984 \N \N \N \N \N \N \N \N \N 70 0 70 0 0.194594949999999989 66.5643997 0 0 3 false 0.0433471949999999981 \N \N -0.0566536149999999974 8 5 9.8778220000000001 0 9 false 70 114.665169784648995 1.55748631716638997 73.6219025 20.5397870000000005 6 110.485514227888004 18.9534165678330986 5.82931899999999992 20.2431240000000017 6 91.2163233115844037 7.64228178508021028 11.9357439999999997 19.861737999999999 1.75905059999999991 0 0.381385799999999997 -0.296663279999999974 0.67804909999999996 \N \N 0 \N \N \N NOT_AVAILABLE 150.822478928940001 -62.7625796162111982 22.4126307434770986 -12.1851346597826993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476080352505984 2481476080352505984 1050364968 2015.5 25.2421683309520013 0.0494790975764030014 -2.59983033538199981 0.0319101904786975032 0.420884078231674008 0.0465212815772610006 9.04712999999999923 9.08292113696339953 0.123202420862987994 -12.5377733663464994 0.0677516960785799066 -0.0364278150000000023 -0.0264625180000000008 -0.468365849999999972 0.160709779999999997 -0.17963960000000001 0.231146960000000012 -0.000948202159999999997 0.151658970000000004 -0.0563485300000000008 0.123774969999999998 133 0 133 0 -1.22784169999999992 108.742996 0 0 31 false 16.649006 1.58080592324612001 0.0122337726858707998 -0.0586736429999999975 15 9 0.12369107 0 15 false 133 13820.8030644617993 11.2610517456734005 1227.31006 15.3370320000000007 14 7002.64028193352988 22.1475938479612005 316.180630000000008 15.7382340000000003 15 9989.25578817909991 20.6585869627977985 483.540129999999976 14.7630870000000005 1.22944340000000008 0 0.975146300000000021 0.401201250000000009 0.573945049999999957 \N \N 0 \N \N \N NOT_AVAILABLE 150.834394985146986 -62.7570011558568979 22.4206119368060008 -12.1852147460034992 100001 5323.64014 5099.0498 5381.25 \N \N \N \N \N \N 200111 2.10836300000000021 2.06346369999999979 2.29818319999999998 3.2167775999999999 2.42681980000000008 4.00673529999999989 +1635721458409799680 Gaia DR2 2481479030994696064 2481479030994696064 1396907103 2015.5 25.2363304316294013 0.541356187994118998 -2.58654600546628011 0.358559586108983974 -0.0312291639508005987 0.471979937633616009 -0.0661662999999999973 -1.63971983815889999 1.47074484520594995 -1.46994255096539006 0.600791960518343049 -0.0341921040000000009 -0.263213660000000016 -0.599578139999999982 0.281401100000000015 0.0244452279999999994 0.443504720000000019 0.302936580000000011 0.359894129999999979 -0.113176959999999993 0.0860612300000000024 115 0 115 0 -0.953500869999999945 95.8452988 0 0 31 false 0.159294600000000008 1.64687487454603998 0.107977227964793004 0.0156894030000000011 13 9 1.34947529999999993 0 13 false 114 291.321388905182005 1.47813808113705991 197.087006 19.5274350000000005 10 186.888947723180991 11.8973023355249001 15.7085139999999992 19.6724299999999985 10 213.192710860571992 8.8371365718125201 24.1246380000000009 18.9399900000000017 1.37333430000000001 0 0.73244094999999998 0.144994740000000011 0.587446200000000029 \N \N 0 \N \N \N NOT_AVAILABLE 150.810723868935014 -62.7473558747397036 22.4200669813203 -12.1707164370273997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476011633029504 2481476011633029504 1082674941 2015.5 25.2643358832989016 2.95446844841678979 -2.61066150379161011 1.66011173009941992 \N \N \N \N \N \N \N -0.0692948000000000036 \N \N \N \N \N \N \N \N \N 108 0 107 1 36.5208900000000014 2013.18005 13.5781728629608001 143.824880752246003 3 false 0.00501485169999999966 \N \N -0.107274620000000001 16 9 6.94461149999999972 0 17 false 138 256.582044270565973 2.58878911143185997 99.1128006 19.6652999999999984 16 326.184324492630992 14.2921432285129004 22.8226319999999987 19.067730000000001 15 668.429776018223947 9.40871050290206057 71.0437199999999933 17.6992800000000017 3.87639779999999989 0 1.36845020000000006 -0.597570399999999946 1.96602060000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.888231414079002 -62.7576035858102017 22.4375986962681999 -12.2034362612060008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475839834337920 2481475839834337920 841509988 2015.5 25.2915034584436 2.18936897915141016 -2.62347238855058995 1.17698328757401005 \N \N \N \N \N \N \N -0.0687365600000000021 \N \N \N \N \N \N \N \N \N 114 0 114 0 42.1556659999999965 2662.21997 9.82370066101957029 147.916133781679008 3 false 0.00946188599999999921 \N \N -0.0928206099999999978 16 9 5.08929969999999976 0 16 false 135 415.844207317256974 4.27866772908506032 97.1901016 19.1410389999999992 14 406.412785889915028 15.1161327834548995 26.8860279999999996 18.8289700000000018 15 955.863023957457017 11.4388783891850991 83.562650000000005 17.310929999999999 3.2759282999999999 0 1.5180397000000001 -0.312068940000000017 1.83010859999999997 \N \N 0 \N \N \N NOT_AVAILABLE 150.953789703402009 -62.7578937419208032 22.4585938658033015 -12.2253358251272992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475839834337792 2481475839834337792 233295738 2015.5 25.2889369058900009 2.88316943336227016 -2.62044256688445021 1.59796503061816009 \N \N \N \N \N \N \N -0.174550399999999994 \N \N \N \N \N \N \N \N \N 68 0 68 0 52.3704830000000001 4363.75 10.8397081215350006 358.171720433726989 3 false 0.00826819999999999986 \N \N -0.244204069999999995 13 8 6.06983599999999957 0 15 false 132 898.236736447432008 11.8682561236014994 75.6839981 18.3048879999999983 13 1113.66021952677011 21.9641436198649984 50.703555999999999 17.7345070000000007 13 2649.06431186713007 17.1103827453322985 154.822039999999987 16.2041900000000005 4.18901199999999996 0 1.5303173000000001 -0.570381160000000054 2.10069850000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.945932951984986 -62.7562150175362987 22.457295434811801 -12.2215751231953007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475942913552640 2481475942913552640 747793149 2015.5 25.2923965540991986 5.53642109942687011 -2.60452575287850996 2.64917201512723022 \N \N \N \N \N \N \N -0.330215219999999976 \N \N \N \N \N \N \N \N \N 72 0 71 1 34.5913600000000017 1788.82996 16.5042657072130012 166.871808078377001 3 false 0.00339878370000000008 \N \N -0.187924940000000013 12 8 15.4933049999999994 0 12 true 106 249.067154732739994 2.72384356584439979 91.4395981 19.6975750000000005 8 330.109400194210025 6.98469232485487002 47.2618369999999999 19.0547429999999984 9 748.510277788423991 12.482410374234 59.9652019999999979 17.5764260000000014 4.33063800000000043 0 1.47831730000000006 -0.642831799999999953 2.12114899999999995 \N \N 0 \N \N \N NOT_AVAILABLE 150.938244468607991 -62.7403123478555997 22.4665761850488011 -12.2080469061193995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476522736852992 2481476522736852992 1387688770 2015.5 25.2910220854896011 2.91126287881923984 -2.58137163488349008 1.97390349512348995 \N \N \N \N \N \N \N 0.0696874600000000066 \N \N \N \N \N \N \N \N \N 91 6 89 2 49.6619639999999976 3763.43994 14.1828306717463999 225.686781870227009 3 false 0.00464394459999999988 \N \N -0.000623152070000000018 14 9 5.98007250000000035 0 14 true 123 311.009903055589007 4.85065532038975977 64.1171036 19.456430000000001 13 477.428828596280027 18.4926234317723015 25.817259 18.6541159999999984 11 1063.34894470964991 39.3971870823377017 26.9904790000000006 17.1952299999999987 4.95411160000000006 0 1.4588852000000001 -0.802314760000000016 2.2612000000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.914389966382004 -62.7198541075956015 22.473986365678801 -12.1860119625024002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479305872608128 2481479305872608128 447295394 2015.5 25.2206257414675008 0.245031460877973006 -2.57179851816079008 0.167036910719270987 2.32398777944665991 0.241499179706388012 9.62317099999999925 21.2983230582738017 0.604566248888462998 -13.2849638950841005 0.273374619153779974 0.103341619999999995 0.0316990649999999985 -0.420186339999999992 0.22877784000000001 -0.0114756259999999992 0.299535359999999973 0.305810960000000021 0.213860230000000012 0.0540488059999999979 0.124115944000000006 115 0 115 0 12.7405249999999999 426.196014 1.08076607098803001 18.561439164316301 31 false 0.614674570000000031 1.38842912462895995 0.0521093270722296012 0.0155360745000000001 13 9 0.548140700000000036 0 13 false 114 2436.7843440268598 5.02817485248836959 484.626007 17.2213230000000017 13 501.151534670563024 10.4718094497790002 47.857204000000003 18.601465000000001 13 3107.4260946566701 10.1315676006471005 306.707339999999988 16.0309179999999998 1.48087689999999994 0 2.57054699999999992 1.3801422000000001 1.1904049000000001 \N \N 0 \N \N \N NOT_AVAILABLE 150.766170846687999 -62.7404777739158988 22.4106979767083985 -12.1512294325557004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479408951824896 2481479408951824896 1685926273 2015.5 25.2255234874923993 0.280923432992875977 -2.55740175897875988 0.204003540857781995 2.25307110887310991 0.272680080426780991 8.26269100000000023 3.01492757445826021 0.723817476010199967 4.31446014301837 0.338999821264119983 0.0811445799999999939 -0.0285113230000000016 -0.475551930000000012 0.251943919999999988 0.15127966000000001 0.369602140000000023 0.211044969999999998 0.299415439999999977 0.000480906919999999976 0.0928421239999999981 103 0 102 1 2.54312560000000021 136.070999 0.737740058384505959 2.58537508801938998 31 false 0.51268714999999998 1.35542607139719995 0.0665543878975771996 0.0377858020000000003 12 9 0.659786940000000044 0 12 false 102 932.610404700051959 2.87189601028660002 324.737 18.2641139999999993 11 224.995907663039986 12.2020782438175992 18.4391460000000009 19.4709509999999995 11 1152.32495071946005 11.0221296964181992 104.546486000000002 17.1079830000000008 1.47684480000000007 0 2.36296840000000019 1.20683669999999998 1.15613169999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.762812211760007 -62.7253503518443978 22.4207720888392004 -12.1396444749465005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479615110255232 2481479615110255232 868800428 2015.5 25.2519794853161983 0.171258696705173991 -2.55727284861574988 0.103219206511756006 0.284693361101838016 0.151965403868950993 1.8734090000000001 2.29474623366813013 0.434942859867788023 -4.42564562806575967 0.195267528749016012 -0.0726417000000000035 -0.129919530000000005 -0.560229599999999994 0.218179910000000005 -0.142886220000000008 0.323700959999999982 0.147443380000000013 0.227671160000000011 -0.0924289499999999958 0.0608718999999999996 132 0 129 3 1.99376569999999997 157.339996 0.256047669205582973 0.758888323044889956 31 false 1.36272290000000007 1.59919230779263999 0.0354980838347076014 -0.0616271050000000015 15 9 0.401846949999999981 0 15 false 128 1648.56286720871003 2.97842604182124981 553.500977 17.6456009999999992 15 860.04987241106096 11.2456372974787993 76.4785399999999953 18.0150800000000011 14 1174.01690011053006 9.85578939783555086 119.119519999999994 17.0877340000000011 1.23384239999999989 0 0.927345300000000039 0.369478230000000019 0.557867050000000031 \N \N 0 \N \N \N NOT_AVAILABLE 150.815124999234001 -62.7142310909165985 22.4459577165271007 -12.1492518167138002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479512031042432 2481479512031042432 1632927589 2015.5 25.2262007228707006 0.872069142978725953 -2.53990713127884016 0.546624094127251992 -0.959922523741224998 0.717907006675964965 -1.33711270000000004 30.7912401706350991 2.34389904671252003 -11.8612756404024005 1.07827815815936989 -0.104277540000000002 -0.293806430000000007 -0.645698699999999959 0.30089515 -0.0927761349999999957 0.409244720000000006 0.223786370000000012 0.32418155999999998 -0.215322839999999988 0.0117683189999999993 105 0 102 3 -0.866049230000000003 84.819397 0 0.0670503883663575023 31 false 0.0728138460000000015 1.82079634809600011 0.184700992956314008 -0.0855516399999999982 13 9 2.15543150000000017 0 13 false 102 170.918198763751008 1.99114322641468 85.8392029 20.1063960000000002 6 61.0519923025947975 10.0524725299134001 6.07333099999999959 20.8871380000000002 10 190.344624177561002 11.0975775012139 17.1519070000000013 19.0630680000000012 1.47085930000000009 0 1.82407000000000008 0.780742649999999982 1.04332730000000007 \N \N 0 \N \N \N NOT_AVAILABLE 150.748284549623008 -62.7091585464690979 22.4280017366947 -12.1236269713762006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476213496152704 2481476213496152704 848185289 2015.5 25.2648526553563002 0.442090919267970006 -2.57876059836301996 0.251766235458038001 0.465677247337747013 0.367607703083194015 1.26677780000000006 7.12993199168418013 1.14604348243464993 -8.33438356563009997 0.462536278175048998 -0.164146829999999994 -0.200254130000000002 -0.653805260000000055 0.260860299999999989 0.0933650099999999983 0.372789829999999989 0.0114759235000000005 0.371300579999999991 -0.0658319599999999949 -0.0760727699999999979 138 0 138 0 0.735185439999999968 144.647995 0 0 31 false 0.20784314000000001 1.37924513052576003 0.0887242370238094935 -0.0906741400000000003 16 9 1.06074040000000003 0 16 false 137 360.233985600693984 1.80590880717909008 199.475006 19.2969040000000014 14 114.177250190216995 10.1317254669907992 11.2692794999999997 20.2074399999999983 15 391.072698243239017 9.18409907970480965 42.5814969999999988 18.2812769999999993 1.4025605000000001 0 1.92616269999999989 0.910535800000000006 1.0156269 \N \N 0 \N \N \N NOT_AVAILABLE 150.860177382021988 -62.7283998763679023 22.4501008456025986 -12.1739642736738993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479546390776576 2481479546390776576 619522896 2015.5 25.2703859748081996 0.896286589438402004 -2.57128340849811998 0.551740052674744019 -0.101510035552139999 0.747239957245564024 -0.135846639999999991 1.5991826815561101 2.57482391520342979 -3.63713933675097989 1.21453493285571001 -0.17755862 -0.322643400000000025 -0.668407300000000038 0.317492700000000017 0.179761510000000013 0.335533860000000017 -0.093466629999999995 0.406048299999999973 -0.165372710000000006 -0.232506290000000004 112 0 112 0 1.54269180000000006 130.429001 0.501682861440256977 0.0977438558158557069 31 false 0.0547731200000000015 1.72870205974617996 0.214416117998659006 -0.093259439999999999 13 9 2.37716359999999982 0 13 false 113 148.699649957409008 1.51266996096847994 98.302803 20.2575910000000015 11 94.8166724890583055 8.68186876187511913 10.9212279999999993 20.4091759999999987 13 111.672004331433001 9.38626115080720957 11.8973890000000004 19.6420600000000007 1.38862920000000001 0 0.767116550000000008 0.151584629999999998 0.615531900000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.864330528712003 -62.7192981385730022 22.4581737043873986 -12.1690459215563997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476561388235136 2481476561388235136 972291589 2015.5 25.2930412787302998 4.58169070377549037 -2.57642104459191978 3.51784697017445014 \N \N \N \N \N \N \N 0.107811519999999994 \N \N \N \N \N \N \N \N \N 71 0 71 0 27.1714130000000011 1124.62 19.1628319093026995 91.7810658037767979 3 false 0.00249440529999999999 \N \N 0.0449640450000000011 9 8 9.94038300000000064 0 9 true 76 148.085536544617014 2.04128184315265004 72.5454025 20.262084999999999 5 170.673651367387009 15.9341660957637998 10.711176 19.7709709999999994 6 317.459068186149977 11.2991595975597008 28.0958119999999987 18.5076999999999998 3.2962889999999998 0 1.26327129999999999 -0.491113660000000007 1.75438500000000008 \N \N 0 \N \N \N NOT_AVAILABLE 150.913873161091004 -62.7145135915107019 22.4777687071393011 -12.1821508269364003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479653765104768 2481479653765104768 309220606 2015.5 25.2699394509962012 1.39613457346500991 -2.54204047743851014 0.880796119444890002 1.0174333762760801 1.27634243448182993 0.797147629999999996 20.3216489559083016 3.57377066268246013 -5.9334241561768204 2.7176464269432099 -0.161966799999999994 -0.454612459999999996 -0.289621860000000009 0.56235075000000001 0.0480195839999999971 0.524120750000000024 -0.0747879449999999946 -0.0384627769999999966 -0.590677600000000025 0.155471999999999999 78 0 77 1 0.265359220000000007 74.5470963 1.00206531739985993 0.212255015878903996 31 false 0.0374596120000000032 \N \N -0.119439279999999995 9 7 3.22292110000000021 0 9 false 77 114.163727862273007 1.42722158082697992 79.9901962 20.5445460000000004 4 34.3167206698824998 7.13420675291165995 4.81016639999999995 21.5126230000000014 7 189.810699172606007 13.7745495008612995 13.7798119999999997 19.0661179999999995 1.96321049999999997 0 2.44650459999999992 0.968076700000000012 1.47842790000000002 \N \N 0 \N \N \N NOT_AVAILABLE 150.836845639574989 -62.6929067745737001 22.4687564509981001 -12.1416905021077994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479649469995264 2481479649469995264 434626346 2015.5 25.2723918886899988 0.194792035043454992 -2.54194521342287993 0.108001051594863007 0.496283028369126022 0.169696393376077004 2.92453500000000011 18.2385289531427013 0.475115034459685004 -33.6796949172569029 0.191220852222105997 -0.124167 -0.0559768230000000019 -0.431611719999999977 0.233667120000000006 -0.228970040000000014 0.390476050000000019 0.186271519999999996 0.0289492249999999986 -0.104030624000000002 0.0804140700000000042 115 0 114 1 -1.2159449 91.4201965 0 0 31 false 1.35125910000000005 1.62046637064311994 0.0365824482857725966 -0.159933519999999996 13 8 0.432898669999999985 0 13 false 113 1519.1333800335799 3.2593216594718899 466.088989 17.7343769999999985 12 711.184810117704956 15.7826939117370006 45.0610539999999986 18.2214320000000001 10 1183.85489417776989 7.68180837593069032 154.11148 17.0786739999999995 1.2474478 0 1.14275740000000003 0.487054819999999999 0.655702600000000024 \N \N 0 \N \N \N NOT_AVAILABLE 150.841613110043994 -62.6917986182992024 22.4711225896148008 -12.1425033826398998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481479688125033600 2481479688125033600 1660624959 2015.5 25.2948703508363018 2.36548143072368999 -2.55104512395827987 1.45496586507152004 \N \N \N \N \N \N \N 0.0211723369999999994 \N \N \N \N \N \N \N \N \N 105 0 105 0 27.5398560000000003 1210.39001 11.4062983751007998 71.6939808468975031 3 false 0.0067122359999999999 \N \N -0.0624847450000000013 13 8 5.46976330000000033 0 13 true 115 201.28578497557001 2.20140515222268984 91.4350967 19.9288330000000009 11 215.207940416207009 9.17096599594398931 23.4662250000000014 19.5192429999999995 13 469.46646521622398 8.25087983749799037 56.8989559999999983 18.0829090000000008 3.40150400000000008 0 1.43633459999999991 -0.40958977000000002 1.84592439999999991 \N \N 0 \N \N \N NOT_AVAILABLE 150.894371718255996 -62.6906957565716993 22.4890575814991003 -12.1592270019254993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475869898749312 2481475869898749312 1154859997 2015.5 25.3059511142482982 0.206428214144398992 -2.61414046214322005 0.114058757888170006 0.519044186967105969 0.177594895959389987 2.92262999999999984 -0.421667690784400973 0.556039396301801991 -0.298139087552802995 0.214010829588544005 -0.111002034999999999 -0.169907260000000004 -0.595411699999999988 0.189892580000000005 0.00781155330000000026 0.19751959999999999 0.108152280000000003 0.319258399999999998 0.0420440399999999978 -0.137211100000000003 133 0 133 0 1.13562289999999999 146.313004 0.21280645188317901 0.339248870182880025 31 false 0.920901999999999998 1.58802176957093999 0.0404131924320172004 -0.122499029999999995 15 9 0.511865099999999962 0 15 false 133 1155.08192380947003 2.41734317060380999 477.830994 18.0318339999999999 13 570.654064916477978 17.4029508887234989 32.7906499999999994 18.4604549999999996 14 851.129419451624017 10.9671733438679997 77.6069999999999993 17.4369319999999988 1.23089409999999999 0 1.02352329999999991 0.428621299999999983 0.594902040000000021 \N \N 0 \N \N \N NOT_AVAILABLE 150.973881490493994 -62.7433762836692992 22.4758386404954003 -12.2219693885183993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475496236972928 2481475496236972928 351397571 2015.5 25.321673955756701 3.21386997178769995 -2.61845382036608987 1.92552267837573998 \N \N \N \N \N \N \N -0.0115478390000000007 \N \N \N \N \N \N \N \N \N 98 0 97 1 43.895465999999999 2889.06006 15.0936651329481997 197.237219308536993 3 false 0.00415738440000000022 \N \N -0.0548350550000000006 14 9 7.28245260000000005 0 14 false 125 332.664315285281987 3.9106336999301301 85.066597 19.3833500000000001 11 447.887124542887022 10.3955257836167991 43.0846060000000008 18.7234669999999994 11 1000.08842530301001 18.2498727825684988 54.7997470000000035 17.2618240000000007 4.35266260000000038 0 1.46164319999999992 -0.659883499999999956 2.12152669999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.008965348081006 -62.7407103908113015 22.4891584850923998 -12.2317590270316003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476252151197568 2481476252151197568 283768858 2015.5 25.3053459608965987 0.0285732242922733005 -2.6000974493272202 0.0183431264904596984 1.4678166981081 0.0266268270778458015 55.1254840000000002 6.0747150949383899 0.0668547194229242997 -8.25253732923479966 0.0392768068890474997 -0.0476237570000000027 0.104570650000000001 -0.472190830000000006 0.0944071100000000024 -0.0618927599999999981 0.0971668499999999991 -0.29250130000000002 0.219855300000000004 0.102267960000000005 0.0572070029999999993 143 0 143 0 2.79776720000000001 189.070007 0 0 31 true 82.1300999999999988 1.56345658533987009 0.00698897097205283032 -0.0941439399999999954 16 9 0.0757303099999999951 0 16 false 142 66405.7519721236022 20.7205029495585009 3204.83008 13.6328519999999997 16 34420.3490972821965 89.3289911245111057 385.321140000000014 14.0093499999999995 16 46025.4752924493005 59.299969808909097 776.146669999999972 13.1044239999999999 1.21142850000000002 0 0.904925349999999962 0.376498219999999995 0.528427100000000038 \N \N 0 \N \N \N NOT_AVAILABLE 150.959845973634998 -62.7308768532963015 22.4805501327712989 -12.2086890539404997 100001 5506 5447.5 5678 0.314999998 0.195600003 0.501999974 0.172700003 0.0992000028 0.231299996 200111 1.2256669 1.15253479999999997 1.25213280000000005 1.24389700000000003 1.18746130000000005 1.30033270000000001 +1635721458409799680 Gaia DR2 2481476247857478016 2481476247857478016 1619015985 2015.5 25.3135149904255989 1.72461993690684001 -2.59507287288866983 1.40299166325091007 -1.44002876509792999 1.87439135084447006 -0.768264700000000023 -2.35482234695039017 4.45256954056358012 8.77570755656408963 4.63668450622984007 0.00737098230000000042 -0.229228660000000001 -0.461201279999999991 0.400138099999999997 0.125228480000000003 0.431293070000000001 0.00528235040000000003 0.166356549999999992 -0.560463900000000015 0.115452795999999996 67 0 67 0 1.51192470000000001 79.615799 1.82171432457195004 0.377887079792375014 31 false 0.0205890050000000005 \N \N 0.0398388100000000023 8 7 4.26399900000000009 0 8 false 68 80.8350014527783003 1.44672300156243994 55.8745995 20.9193670000000012 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 150.971427293684002 -62.7228969560418008 22.4902053273723013 -12.2070193234048006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476350935101184 2481476350935101184 565469324 2015.5 25.3125693454666987 0.528046168019066009 -2.59136623059526006 0.251818259112691012 0.832218338134109947 0.419235772084326996 1.98508430000000002 6.30186777337692039 1.21001526601898002 -15.9833928223174002 0.426467250466066983 -0.235968260000000013 0.00282146829999999982 -0.658106199999999975 0.228920950000000012 -0.0932969099999999968 0.332782999999999995 0.0673104800000000059 0.283220799999999995 0.0532795859999999968 -0.0594301299999999977 133 0 131 2 1.62695319999999999 152.871994 0.98843791011319504 2.02388275058993994 31 false 0.199602649999999993 1.31060483510761006 0.0904587771738902952 -0.135161310000000007 15 9 1.13106970000000007 0 15 false 131 418.711366666405013 1.73701119365126 241.052994 19.1335799999999985 14 111.211084854107 7.8796865893475001 14.1136440000000007 20.2360170000000004 15 517.86024588807004 10.9689454402269995 47.2114899999999977 17.9763890000000011 1.50239849999999997 0 2.25962830000000015 1.10243800000000003 1.15719029999999989 \N \N 0 \N \N \N NOT_AVAILABLE 150.966168827101995 -62.7199265546198035 22.4907018014170994 -12.2032250986956008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481475663740558976 2481475663740558976 146854935 2015.5 25.3645651668173002 1.66663154463150009 -2.58337615589518999 1.29785691596334996 \N \N \N \N \N \N \N -0.437133800000000017 \N \N \N \N \N \N \N \N \N 88 0 86 2 -0.352642540000000004 75.9534988 0 1.11651019284180006e-15 3 false 0.0320757100000000003 \N \N 0.0220333779999999993 10 7 4.67297799999999963 0 11 false 87 97.2858758290382042 1.34020491203065006 72.5903015 20.7182400000000015 9 56.1269450309034994 8.47538172455456973 6.62234999999999996 20.9784599999999983 9 97.7592851193675045 13.5902568437702005 7.1933360000000004 19.7865259999999985 1.58179409999999998 0 1.19193459999999996 0.260219570000000011 0.93171499999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.061691681887993 -62.6908894883839025 22.5431278251810987 -12.2149012008901998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477072489611008 2481477072489611008 814102164 2015.5 25.3768982391774003 0.443587674550872002 -2.58171107864184002 0.21967150157618201 0.577115384430396006 0.362395107039137021 1.5925031999999999 -2.01256164188436992 1.21229908977789003 -3.91335922860423002 0.362297262883410021 -0.271565900000000027 -0.405778650000000018 -0.77185119999999996 0.308602780000000021 0.277778420000000026 0.458452550000000014 -0.0046016182999999997 0.565131599999999956 -0.0896819699999999997 -0.175889800000000013 126 0 125 1 2.08826849999999986 154.554993 0.631469408071779981 1.15009771995434007 31 false 0.329512799999999995 1.43869431310250007 0.0695034596220836937 -0.0884499900000000061 14 8 1.1372625999999999 0 14 false 123 541.784941821280995 1.94524347090565009 278.518005 18.8537980000000012 11 136.525373504794999 8.1217638802777401 16.8098179999999999 20.0133550000000007 12 600.681440656372956 14.3997615072985994 41.7146800000000013 17.8153100000000002 1.36070010000000008 0 2.19804570000000021 1.1595572999999999 1.03848840000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.084532819628009 -62.6842016123491987 22.5554770107517015 -12.2178835606472003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476458309646080 2481476458309646080 203746673 2015.5 25.3307846445969993 0.139646312232993008 -2.57220344029467007 0.084123172943503105 -0.0907055776449166989 0.129882048052511995 -0.698368850000000041 -1.08976110558504002 0.354555871861503002 -2.63956900025408014 0.160398701904528013 -0.0443767300000000031 -0.0971184699999999984 -0.578479230000000011 0.15922581999999999 0.0806732250000000012 0.224056150000000009 -0.108977630000000006 0.335632350000000024 0.0339315800000000029 -0.0114418179999999994 126 0 125 1 2.0337048000000002 153.557007 0.284362229728455984 1.28416997914264996 31 false 1.95619230000000011 1.60956438685364001 0.0304824818174517995 -0.0370224399999999967 14 9 0.329998430000000009 0 14 false 123 2324.61620817927997 2.83323144237458013 820.481995 17.2724879999999992 13 1110.16476077495008 10.0604944106445 110.348929999999996 17.7379190000000015 12 1777.89430531837002 21.3613689127552 83.2294160000000005 16.6371560000000009 1.24238099999999996 0 1.10076329999999989 0.465431199999999989 0.635332099999999955 \N \N 0 \N \N \N NOT_AVAILABLE 150.984700667695989 -62.6949039828191985 22.5152255747907013 -12.1920999503117997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481476767547272192 2481476767547272192 1134170750 2015.5 25.3112025939705987 0.196174635129438002 -2.53904126828154997 0.131947698244551992 1.93480518958544989 0.203731272030330007 9.49684899999999921 66.5515223529816069 0.474670263665510017 -7.00811565168594974 0.240500157321224012 0.0351740999999999998 -0.00771871300000000031 -0.126130629999999994 0.126006069999999998 -0.0629740099999999969 0.170463169999999997 0.113194320000000001 -0.0381133300000000008 0.0955411099999999985 0.0395362270000000002 134 0 133 1 2.5759938 172.981995 0.478633116823190985 1.37912831948460002 31 false 0.669539100000000054 1.34473731663918006 0.0461257891885860014 -0.129350999999999994 15 8 0.420427620000000002 0 15 false 131 928.39717712475499 2.34947509862525017 395.151001 18.2690319999999993 13 257.208690162058019 14.4749380684848994 17.7692429999999995 19.3256739999999994 13 1080.42672187374001 17.4058205656139009 62.0727270000000004 17.1779299999999999 1.4408008000000001 0 2.14774319999999985 1.05664249999999993 1.09110069999999992 \N \N 0 \N \N \N NOT_AVAILABLE 150.91574160751901 -62.6729721725968005 22.5090947264090993 -12.1540669652495001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481478240720789888 2481478240720789888 314987939 2015.5 25.3158551277353006 9.04656297536904042 -2.53963912892456989 3.68546472660086 \N \N \N \N \N \N \N 0.775645899999999999 \N \N \N \N \N \N \N \N \N 77 0 77 0 2.63115260000000006 107.541 3.52528433351641013 1.8023531518220901 3 false 0.0190981050000000006 \N \N 0.108194990000000005 9 5 39.2942620000000034 0 9 false 76 85.2943862893648941 1.22962581892284994 69.3660965 20.861065 4 74.1909821285536992 19.3613520645508999 3.8319112999999998 20.6755099999999992 6 54.9808622872621982 13.2924617380146994 4.13624399999999959 20.4113900000000008 1.51442370000000004 0 0.264120100000000024 -0.185554500000000011 0.44967459999999998 \N \N 0 \N \N \N NOT_AVAILABLE 150.925483303432003 -62.6715720562747975 22.5132910041708989 -12.1563325703979999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477145504413568 2481477145504413568 485842342 2015.5 25.3742217058866011 0.0364592383793740996 -2.5764181231523402 0.0252416864912471985 2.57200494542960012 0.0371006680519173002 69.3250299999999982 16.4167795006337016 0.0810378714252645016 -17.1406491144408015 0.049988251433865899 -0.0142003249999999998 0.162407899999999994 -0.360353599999999996 0.128727869999999994 0.014137775 0.146755489999999988 -0.202486290000000013 0.158207950000000014 0.0788085399999999964 0.0444332900000000003 134 0 134 0 -0.245456979999999991 124.445 0 0 31 false 29.6785029999999992 1.49083522683649994 0.00938378807738727075 -0.0386930259999999984 15 9 0.0841331399999999952 0 15 false 133 23116.0844264184016 10.4598313433815999 2209.98999 14.7785799999999998 15 9377.28571070217913 23.6656402312117997 396.24054000000001 15.4211950000000009 14 19748.7434555262007 28.0063850419184988 705.151500000000055 14.0230709999999998 1.25998969999999999 0 1.39812369999999997 0.6426153 0.755508399999999969 \N \N 0 \N \N \N NOT_AVAILABLE 151.074398872267011 -62.6805225268238999 22.5549243631540008 -12.2119782278184008 100001 4865 4705.25 4913 0.254000008 0.112000003 0.402999997 0.122000001 0.0540000014 0.207900003 200111 0.558320000000000038 0.547463699999999998 0.596875099999999992 0.157323080000000004 0.152070449999999996 0.16257569999999999 +1635721458409799680 Gaia DR2 2481477072489612672 2481477072489612672 733245194 2015.5 25.3768406986993007 12.8074353323635002 -2.5763020547187101 6.32248266903187961 \N \N \N \N \N \N \N 0.627014300000000024 \N \N \N \N \N \N \N \N \N 52 0 52 0 10.3213709999999992 232.947998 12.6262217949171998 18.9709097892441996 3 false 0.00436057150000000032 \N \N 0.169938950000000005 6 4 26837.3379999999997 0 6 false 54 84.8799414022941932 1.94624391241349004 43.6122017 20.8663540000000012 6 53.0575533078572974 10.3646905340096005 5.11906770000000044 21.0395199999999996 6 186.643888007660991 12.3063216449862001 15.1665050000000008 19.084385000000001 2.82400580000000012 0 1.95513530000000002 0.173166280000000006 1.78196909999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.079465390771986 -62.679317721053998 22.5574574013325986 -12.2128323747803993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477106849351424 2481477106849351424 1539895982 2015.5 25.382685087361601 0.240834371344489012 -2.57545442130553015 0.193659665190352992 0.138420755721461008 0.264997234111354008 0.522347899999999976 18.4813582621836012 0.569734994446128962 -1.68579812945124008 0.374080143276815991 0.123462669999999997 0.140951369999999992 -0.235144939999999997 0.111563704999999999 0.0802803099999999936 0.119866280000000006 0.0121435150000000006 0.0680574199999999935 0.0659384799999999938 0.0580781660000000005 117 0 115 2 1.22182140000000006 128.395996 0 0 31 false 0.41403413 1.69165831019816992 0.0681486251278843047 -0.0594228359999999997 13 9 0.506277259999999951 0 13 false 115 563.43580393339596 1.93703088495997 290.876007 18.8112549999999992 12 288.854780374004974 11.6937696118312999 24.7015969999999996 19.1996900000000004 12 383.735973997821986 12.4422074216144996 30.8414700000000011 18.3018380000000001 1.1937310000000001 0 0.897851940000000015 0.388435360000000007 0.509416599999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.090230935329004 -62.6760944327880978 22.5633314821939983 -12.2141909880722999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481478103281769728 2481478103281769728 116647869 2015.5 25.3577765083071007 0.39833448811963601 -2.53800313435574987 0.320795918854755002 -0.0197701781452994003 0.434369570203611999 -0.0455146469999999984 -1.10333040323638998 0.929473542867197966 -3.03211513769026997 0.580960052936991045 0.162045639999999991 0.137149989999999999 -0.295216680000000009 0.159332560000000012 0.113351489999999999 0.208160399999999995 0.0282996260000000013 0.148983310000000008 0.0367720200000000025 0.118530679999999999 126 0 125 1 1.31334360000000006 140.774994 0 0 31 false 0.150311560000000011 1.63622173310408003 0.114547211215691003 -0.0367164130000000033 14 9 0.832348050000000006 0 14 false 124 277.071292993347981 1.41775379747990993 195.429993 19.5818860000000008 14 175.789970496222992 10.8057754526699004 16.2681499999999986 19.7389030000000005 14 151.008888584265009 9.02320585306379996 16.7356130000000007 19.3144129999999983 1.17947570000000002 0 0.424489969999999994 0.15701675000000001 0.267473220000000012 \N \N 0 \N \N \N NOT_AVAILABLE 151.006808021686993 -62.652550931340997 22.5537459738952997 -12.1702135198259001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481478068922031744 2481478068922031744 1056527302 2015.5 25.3823864641777988 0.191506729900797007 -2.53604865982361982 0.159454016356396 0.385314528591761019 0.212550973787873992 1.81281000000000003 4.80999521691502974 0.45016453107833998 -13.2809512469520996 0.282899912156702016 0.199393619999999994 0.101858296000000001 -0.169085879999999994 0.232636499999999996 -0.0991806759999999954 0.301396160000000024 0.287800969999999989 0.00959785800000000078 -0.0426002549999999966 0.225776549999999993 125 0 124 1 2.09140199999999998 153.477005 0.364285186805411998 0.740300849712496989 31 false 0.66853225000000005 1.49936123069305993 0.0497122478478161031 -4.48108619999999975e-05 14 9 0.407841120000000001 0 14 false 123 896.457675229852953 2.07012796604688987 433.045013 18.3070410000000017 14 441.845705643597 10.6401201447882006 41.5263819999999981 18.7382099999999987 14 693.005493614296029 8.2968438459316598 83.5263999999999953 17.6600779999999986 1.26592839999999995 0 1.0781326 0.431169499999999983 0.646963100000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.053593443735991 -62.6404610308498988 22.5778707332591999 -12.1774357554456998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463569112410496 2481463569112410496 988786803 2015.5 25.3961038034995994 1.21340473673817995 -2.62023024488855016 0.665739819126248022 1.90277106484979996 1.06240674303869009 1.79100060000000005 8.88227380228937946 3.30594807917626987 3.44795434022974989 1.23693482537485999 -0.132892819999999995 -0.213860600000000012 -0.666924700000000037 0.235857309999999987 0.161902170000000012 0.265203899999999992 0.0130689139999999992 0.408339049999999981 -0.00290285980000000009 -0.175310199999999999 115 0 111 4 6.48116830000000022 230.022003 3.38961050591032009 5.98460210975101958 31 false 0.0334865859999999987 1.17114832992393003 0.221229056875308 -0.0705678799999999995 14 9 3.04568549999999982 0 14 false 114 160.79620810442799 1.92345212435057 83.597702 20.1726759999999992 8 63.4619115414918014 11.4758069719302007 5.53006099999999989 20.8451060000000012 10 192.82194471138601 15.2258929848101996 12.6640820000000005 19.0490279999999998 1.59384260000000011 0 1.79607770000000011 0.672430039999999951 1.12364770000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.157817826527008 -62.7110691445627992 22.5592396240602007 -12.2607589528938998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481463573407758848 2481463573407758848 826166592 2015.5 25.4005847220218008 0.0510866793104760991 -2.61350295427169987 0.0245328232332116987 0.945195550693866959 0.0369321227771097008 25.5927749999999996 11.4449946700026004 0.129267502825816005 -6.37422572559200962 0.0465658279012775983 -0.410455259999999988 -0.357337950000000015 -0.806246640000000014 0.368139620000000001 0.291527099999999983 0.478754640000000009 -0.431173470000000003 0.553958240000000046 -0.141344030000000009 -0.305381000000000014 124 0 124 0 -1.68533160000000004 94.2755966 0 0 31 true 72.1628400000000028 1.60157882248493011 0.00830150355986107071 -0.0833209750000000055 14 8 0.142637120000000006 0 14 false 124 55390.5626126283969 21.6836928796112005 2554.47998 13.8297760000000007 12 29769.1224489041015 58.629799415300802 507.747299999999996 14.1669730000000005 13 37073.0537918627015 61.7497727716284999 600.375549999999976 13.3392739999999996 1.2067429999999999 1 0.827698700000000009 0.337197299999999978 0.490501399999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.160488738281003 -62.7030820751974005 22.5660308231526017 -12.2561489677711002 100002 5810.5 5783.66992 5844 0.765299976 0.487599999 1.01960003 0.396299988 0.238999993 0.540099978 200111 1.5425812000000001 1.52494660000000004 1.55692800000000009 2.4436827000000001 2.22249249999999998 2.66487300000000005 +1635721458409799680 Gaia DR2 2481465184020130688 2481465184020130688 1602163646 2015.5 25.4262964721342009 0.323242054344984986 -2.59263449588216988 0.240146115016516004 1.62144091332387008 0.353848421616126008 4.58230350000000008 -1.34703503591686991 0.746497727614556017 -17.5048415094794017 0.422254462763848981 0.113065550000000001 0.133248630000000007 -0.267146600000000012 0.161854859999999989 0.00620378930000000002 0.177509840000000002 0.142301810000000001 0.114340230000000001 0.103840020000000005 0.0839894100000000005 132 0 131 1 1.79566439999999994 155.938995 0.841483967452767989 1.64019682955603008 31 false 0.229347020000000013 1.32042658808728008 0.0822880728178548015 -0.0446722199999999986 15 9 0.665271799999999969 0 15 false 131 417.007886278136027 1.69850625525198007 245.514008 19.1380039999999987 13 104.768092283187002 10.0719647991521004 10.4019519999999996 20.3008160000000011 13 510.507470051485996 13.8421510382517994 36.8806459999999987 17.9919149999999988 1.4754529999999999 0 2.30890079999999998 1.16281129999999999 1.14608960000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.192074404185007 -62.6733299374370034 22.5983249818755993 -12.2461855132885997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481464909142213248 2481464909142213248 1070551239 2015.5 25.4555565164727007 0.280815754847293986 -2.60891855695073982 0.222992775137341004 0.0877243389100119952 0.310484205685109982 0.282540400000000025 9.14235678032174981 0.683226061914523952 -5.28401499584612022 0.41109701374761598 0.120560269999999997 0.0732542050000000028 -0.199525759999999996 0.137618330000000011 -0.0284149139999999994 0.1375913 0.200949529999999987 0.0359100440000000021 0.0826189299999999932 0.0538859400000000002 116 0 110 6 2.11688799999999988 137.960007 0.848823035950660998 1.81858315072510002 31 false 0.325826349999999987 1.64883856872530998 0.0733922480931003957 -0.0151720759999999996 14 9 0.604728939999999993 0 14 false 109 587.235728535285944 1.95925754748062997 299.723999 18.7663350000000015 11 343.861294117249997 9.70557739834043964 35.4292450000000017 19.0104299999999995 11 389.10385365832002 7.75389902246146967 50.1816999999999993 18.2867570000000015 1.24816170000000004 0 0.723672870000000024 0.244094850000000002 0.479578019999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.26477421348099 -62.6757461975514971 22.6200173413921988 -12.2720740221473008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465149660653696 2481465149660653696 1599081389 2015.5 25.4568992456973007 0.46453035846808699 -2.59599095869454022 0.37627658754809501 0.228909550081172003 0.52459367533743595 0.436355920000000008 26.4321339984429997 1.06922115293988007 -14.3371761883276001 0.650203976070442002 0.177457539999999997 0.139423419999999992 -0.176255119999999987 0.189967350000000007 -0.0654566139999999963 0.212057980000000007 0.260108139999999988 0.0440611880000000011 0.0605474100000000029 0.153021290000000004 122 0 122 0 2.81237650000000006 164.671005 1.2742511408850199 1.74999929046027991 31 false 0.111497305000000005 1.12906654138085005 0.123005863296702003 0.0045115114000000003 14 9 0.951603650000000023 0 14 false 121 247.023056266872999 1.83987831093577991 134.261002 19.7065219999999997 8 73.1943954737837998 10.2564215151433 7.13644549999999978 20.6901930000000007 10 305.813632897494017 10.2826716814193002 29.7406790000000001 18.5482790000000008 1.53430219999999995 0 2.14191440000000011 0.983671199999999968 1.15824320000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.255518220684991 -62.6634635783457981 22.6261564783925984 -12.2605443133461005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465153955723264 2481465153955723264 628288571 2015.5 25.4574191303393 0.174913238687068012 -2.59482139570549997 0.136652802280109009 1.10532280045860998 0.195035284305073997 5.66729639999999968 26.8882829596233996 0.405058208569272993 -14.662036017078 0.243127681363522002 0.147374730000000009 0.10379236 -0.235056710000000002 0.168664520000000012 -0.0933299499999999949 0.198321980000000009 0.164516579999999996 0.0876639040000000008 0.0592772800000000016 0.157569960000000009 122 0 121 1 1.3099985999999999 136.375 0.241111941702181004 0.356792683474633998 31 false 0.829679000000000055 1.34718825500234995 0.0456750041191522002 0.0102592550000000001 14 9 0.363931720000000014 0 14 false 120 955.60415737174003 2.19953720987005985 434.457001 18.2376700000000014 13 285.176287475374011 11.0986272757044997 25.6947350000000014 19.2136040000000001 13 1012.82883033733003 9.53582476695268966 106.213030000000003 17.2480800000000016 1.35830830000000002 0 1.96552470000000001 0.975933099999999998 0.989591600000000016 \N \N 0 \N \N \N NOT_AVAILABLE 151.255466642377002 -62.6621841087780993 22.6270906429774996 -12.2596474909103996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465149662232704 2481465149662232704 472927792 2015.5 25.4539721210854992 0.731202823882892039 -2.58899716144704017 0.772560267811434054 0.831755477892904049 0.827628158112899026 1.00498690000000002 -1.34125237797058006 1.74524975103980995 -10.1392904899520993 1.84215078168447999 0.25508249999999999 0.15441044000000001 -0.243934170000000006 -0.0309079569999999998 0.150952599999999992 -0.0177016239999999991 -0.441056669999999984 0.033763528000000001 -0.121522549999999993 0.287641529999999979 101 0 101 0 1.35311819999999994 115.241997 0 0 31 false 0.0456591800000000006 1.50608865748258003 0.235567039471532014 0.013705699 12 8 1.81270909999999996 0 12 false 102 118.598983892706997 1.17712021612033002 100.753998 20.5031619999999997 7 33.8365956598674984 7.49664923938012961 4.51356269999999959 21.5279220000000002 11 164.278204154766001 13.8522752643090001 11.8592940000000002 19.2229710000000011 1.67045949999999999 0 2.30495070000000002 1.02475929999999993 1.28019140000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.243311968809991 -62.6583607514007994 22.6260040278814998 -12.2529652939550999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465149660392448 2481465149660392448 433073866 2015.5 25.4632005874926008 0.308371119384726 -2.59251911072067021 0.252706701227491004 0.872143338506624954 0.34794989882090599 2.50651979999999996 6.05494328907732005 0.713320392867320963 -4.03362574901237014 0.436997223653043998 0.193067669999999997 0.124243359999999997 -0.188878089999999998 0.1948154 -0.0643798000000000009 0.221933920000000007 0.251141579999999975 0.0589168559999999966 0.0516091620000000001 0.170583280000000004 121 0 121 0 1.01669919999999991 131.459 0.369809403945137005 0.248635901785729002 31 false 0.255517539999999987 1.46821875908748001 0.083164802047298203 0.00956094899999999914 14 9 0.637469900000000034 0 14 false 121 386.022827392464023 1.56844361147377009 246.117996 19.2218340000000012 11 161.748445581735012 15.0467182473843 10.7497489999999996 19.8292879999999982 11 351.997417005477985 7.54918618199523994 46.627200000000002 18.3955699999999993 1.33086909999999992 0 1.43371770000000009 0.607454300000000003 0.826263399999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.26474386373701 -62.657656057797503 22.6334532120167005 -12.2596290042949008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477106849351936 2481477106849351936 116637960 2015.5 25.3910781089219988 0.367979867280059991 -2.57458477452847978 0.292082054692921977 0.0267746557851430006 0.401560745365338978 0.0666764749999999989 2.44190739528107992 0.874465481149892976 -2.99183286017388994 0.594379813935061008 0.0811665399999999954 0.150055699999999986 -0.240304679999999993 0.0941218000000000055 0.0621755829999999995 0.0927227659999999981 -0.0155712679999999992 0.0562006800000000029 0.0564679130000000015 0.0174878779999999984 115 0 112 3 1.75164640000000005 133.947998 0.934942323957719035 1.43698197252327997 31 false 0.18095557000000001 1.42175241716832002 0.101143316089251006 -0.0705669450000000059 13 9 0.774252830000000003 0 14 false 110 361.855668240371017 1.77194918718209005 204.212997 19.2920270000000009 12 205.794390552842998 7.86114538502714044 26.1786789999999989 19.5678039999999989 13 293.136186238649998 20.7148565248796999 14.1510119999999997 18.5942459999999983 1.37881100000000001 0 0.973558400000000046 0.275777820000000007 0.697780599999999973 \N \N 0 \N \N \N NOT_AVAILABLE 151.106005613509012 -62.6717794963122969 22.5716364697437015 -12.2164651732209997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477042425198208 2481477042425198208 1490656916 2015.5 25.4161086064451993 0.0814085165932565968 -2.56810062876294998 0.0580724930819905977 0.468244834796100018 0.0870457467961840009 5.37929600000000008 1.85407907048705001 0.185348781650446992 0.246382224142555006 0.109979320415077006 0.0497693000000000024 0.136447440000000003 -0.298672080000000006 0.116997435999999996 -0.0231310729999999985 0.126734259999999987 -0.0520009000000000027 0.132579940000000007 0.113205929999999996 0.0723344100000000018 132 0 132 0 1.72613330000000009 155.779007 0 0 31 false 3.93088939999999987 1.55060412768483991 0.0203628640084115992 -0.039877283999999999 15 9 0.171316099999999999 0 15 false 132 3559.66138932649983 4.67287120087577001 761.771973 16.8098430000000008 15 1681.6609167587601 7.99609286651701012 210.310329999999993 17.2870430000000006 15 2710.48139111091996 18.0410039437708996 150.240049999999997 16.1793039999999984 1.23386510000000005 0 1.10773849999999996 0.477199549999999972 0.630538939999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.149455346383007 -62.6553722701282965 22.5978685977106011 -12.2196281426944005 100001 4897.27002 4462.87988 4990.41992 0.651000023 0.379900008 0.852999985 0.3037 0.180199996 0.451499999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477416090061824 2481477416090061824 774383696 2015.5 25.4270832624271002 1.44491748726513003 -2.55652736232404987 1.45351505009308002 0.638834174774628005 1.70060310069049003 0.375651540000000006 10.9033484550335995 2.99586109438773995 -11.5148407076438009 3.2545949521328601 0.270441470000000017 0.432800100000000021 -0.15928175 -0.0494115430000000022 0.335155370000000008 -0.0163540130000000006 -0.208537830000000007 -0.0227205639999999987 -0.0909926100000000015 0.0451974419999999974 53 0 50 3 1.72754530000000006 62.6244011 3.86169807583815983 6.52300319568140985 31 false 0.0236457620000000007 1.10623360493110989 0.467522448201138974 0.0438440930000000006 6 6 2.89544729999999984 0 6 false 50 92.1953825167131953 1.55351473051715994 59.3462982 20.7765920000000008 4 143.796881823631992 81.6347777785851036 1.76146589999999992 19.9570140000000009 5 124.856782201460007 13.6264977171396993 9.16279300000000063 19.5208900000000014 2.91395999999999988 0 0.436124799999999979 -0.819578200000000034 1.25570300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.160484324030989 -62.6402572208483974 22.6126536688624 -12.2128952110507996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477454742058368 2481477454742058368 495097352 2015.5 25.4486605556026007 0.0505204605897748987 -2.55181211645223005 0.0372956364886223996 -0.0104151182565685001 0.0560097100278537027 -0.185952010000000001 -0.147057942459323993 0.112777854864193006 -2.35623573113976992 0.0732816459825301053 0.0979628699999999936 0.234672459999999999 -0.201094930000000005 0.0581961650000000011 -0.0638761000000000051 0.0251233579999999984 -0.0778780059999999996 0.078597940000000005 0.154209259999999987 0.111400604 140 0 137 3 -0.166077389999999991 128.662994 0.0888253232269922977 0.490686164518786994 31 false 10.1758159999999993 1.49920367366570995 0.0134027312033638997 -0.0120986689999999994 16 10 0.108046160000000002 0 16 false 134 8998.87857597522088 6.72937536352630961 1337.25 15.8028949999999995 14 3847.99197240196008 26.0010918687098993 147.993470000000002 16.3883019999999995 15 7452.08954456529955 21.0782523880094992 353.543999999999983 15.0812240000000006 1.25572109999999992 0 1.30707740000000006 0.585407259999999985 0.72167015000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.198680477516007 -62.6268928789479986 22.6349383338754002 -12.2164324809282991 110001 5069.16992 4800 5277 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481465634992059904 2481465634992059904 1428187990 2015.5 25.4668238594084997 0.0292055727847487998 -2.55961454260225985 0.0220921380187983005 0.885254384884417989 0.0314027839494311969 28.1903149999999982 -6.12346839124812004 0.0633964618355845055 2.11669209581158002 0.0462907878030393016 0.101894416000000002 0.275269800000000009 -0.274816329999999998 0.0341794600000000018 -0.0176581259999999997 0.0112518559999999993 -0.289692700000000025 0.115176714999999999 0.107614390000000004 0.157446560000000013 130 0 127 3 0.465901730000000014 128.731003 0 0 31 false 55.962612 1.58037560979608993 0.0078724710719956896 0.00271420950000000015 15 10 0.0683753039999999979 0 16 false 128 43737.0991103367996 17.1615771356272013 2548.55005 14.0862409999999993 14 23426.4143878083996 30.1044964792043004 778.169899999999984 14.4271239999999992 14 29316.9553647667999 45.297252979246899 647.212650000000053 13.5941229999999997 1.2059183 0 0.833001140000000029 0.340883260000000021 0.492117880000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.241619647352991 -62.6263050584126972 22.6492716085023993 -12.2303570676528999 100001 5804 5781.33008 5840 0.449999988 0.128000006 0.747699976 0.224999994 0.0559 0.375499994 200111 1.46710919999999989 1.44907739999999996 1.47863579999999994 2.20053980000000005 2.01318699999999984 2.38789270000000009 +1635721458409799680 Gaia DR2 2481477484806476672 2481477484806476672 1000645852 2015.5 25.4686316027852016 0.552864151070218024 -2.55326161045074995 0.44724011587708401 0.544630557500940027 0.643418432322775957 0.846464039999999973 2.15480038808177987 1.23311218166152003 -6.36307300814802002 0.802119157930798021 0.222907419999999995 0.249956349999999994 -0.121162005000000003 0.129680450000000003 -0.0524185370000000012 0.102931300000000003 0.17013934 0.0246828530000000011 0.121795180000000003 0.171337629999999991 139 0 136 3 4.31628300000000031 213.098007 1.57456590458656009 1.81728016409318993 31 false 0.0691512749999999982 1.52966832156661003 0.148534759461355997 -0.00818756300000000013 16 10 1.09511359999999991 0 16 false 134 189.030807346692995 1.30226121727133992 145.156006 19.9970339999999993 13 52.5872695831894035 6.55191257295140961 8.02624699999999969 21.0491869999999999 14 200.692614276392987 11.2059863675351004 17.9094100000000012 19.005592 1.33988679999999993 0 2.04359439999999992 1.0521526000000001 0.991441699999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.239342651308988 -62.6197839506008975 22.6533788371348983 -12.2251122049532004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477553525955200 2481477553525955200 656677784 2015.5 25.4515995241717015 0.369732416000527975 -2.54020737828968013 0.295048019993171984 0.84018353905877996 0.426423886212283998 1.97030130000000003 4.03002303000851025 0.820401311585154946 1.98851404265205001 0.515741580433163982 0.222547429999999991 0.264594759999999984 -0.112523116000000006 0.15694981999999999 -0.0265444090000000014 0.129654870000000005 0.233358199999999988 0.0145306319999999999 0.121045600000000003 0.154983010000000004 139 0 134 5 0.755381399999999981 140.809998 0 0 31 false 0.162337029999999993 1.32100083201654006 0.100285888974006004 -0.00265570400000000005 16 10 0.727658150000000004 0 16 false 133 278.739988901067989 1.51592018713593002 183.875 19.575367 11 57.847353275210402 9.66352363282105031 5.98615549999999974 20.9456789999999984 10 336.610804301799021 10.0032333876846007 33.6501999999999981 18.4440999999999988 1.41514730000000011 0 2.50157929999999995 1.37031170000000002 1.13126750000000009 \N \N 0 \N \N \N NOT_AVAILABLE 151.193823550737989 -62.6151327096351977 22.6420955451571011 -12.2067187438207991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477484806545152 2481477484806545152 671420956 2015.5 25.4620136997400017 0.749648495292621009 -2.54747381221286995 0.776520075755161021 -0.993046505210653963 0.843923360238506004 -1.17670230000000009 3.84309643281953006 1.7845864002232299 -1.11319974357820994 1.86340212588556997 0.384246529999999975 0.236780359999999995 -0.171613979999999999 -0.122512869999999996 0.0571816900000000003 -0.128558349999999988 -0.363521719999999993 -0.0467088800000000012 -0.0248945630000000015 0.413441449999999988 111 0 110 1 1.73247670000000009 131.384003 1.5324061088087999 0.746873363553598013 31 false 0.0407993830000000016 1.66858383547310996 0.235802774840641993 0.0496922730000000021 13 9 1.9248961 0 13 false 113 122.863084573736998 1.19191125105869999 103.081001 20.464811000000001 12 73.7492132021125997 8.70117620978603057 8.4757750000000005 20.6819950000000006 11 85.7348849610324066 10.6662264166584997 8.03797699999999971 19.9290260000000004 1.2980636000000001 0 0.752969740000000054 0.217184070000000007 0.535785700000000031 \N \N 0 \N \N \N NOT_AVAILABLE 151.220997502942993 -62.6173297912260978 22.6492635342299984 -12.2172999247587999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2481477519166217600 2481477519166217600 842800250 2015.5 25.4679555978678991 0.114103915115684004 -2.53753095644692017 0.0878590714321502014 0.136569181061583 0.129291911112321994 1.05628560000000005 0.0690707468904975946 0.25807346614920601 -2.46571880268566002 0.162734418090514005 0.17116576 0.216641169999999994 -0.177846940000000009 0.0973214300000000004 -0.0483260640000000019 0.0736878400000000044 0.0572566350000000002 0.0649380459999999993 0.142042580000000002 0.141963019999999995 139 0 138 1 1.42925159999999996 156.953003 0 0 31 true 1.68491499999999994 1.59760467368893 0.029788015005452001 0.00221935360000000007 16 10 0.232738539999999994 0 16 false 138 1705.03401838650007 2.55968551101064978 666.111023 17.6090340000000012 14 799.00565266488104 12.8508854659066998 62.1751440000000031 18.0950130000000016 14 1335.95593025901007 15.3309570838100004 87.1410699999999991 16.9474400000000003 1.25215180000000004 0 1.14757350000000002 0.485979080000000008 0.661594400000000027 \N \N 0 \N \N \N NOT_AVAILABLE 151.223569037461999 -62.6058103439374989 22.6586502824509992 -12.2102338336816008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518615790061824 2505518615790061824 1335034622 2015.5 26.1140687727620993 13.7347292388603996 -2.18958907107935019 11.0341109469621994 \N \N \N \N \N \N \N 0.704829599999999945 \N \N \N \N \N \N \N \N \N 43 0 43 0 1.51366709999999993 51.9566002 3.56597067019002978 1.38887715137886003 3 false 0.0165207979999999997 \N \N 0.325832430000000006 5 3 53720.2459999999992 0 5 false 43 80.4813227900918946 2.12088774479253006 37.9469986 20.9241279999999996 4 17.2744960634180984 2.30612336254730987 7.4907079999999997 22.2578749999999985 5 131.512084415357009 15.6570858049832005 8.39952500000000057 19.4645060000000001 1.84870950000000001 0 2.79336930000000017 1.3337479000000001 1.45962140000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.157900444603996 -62.0147639752892985 23.4035340951312989 -12.1230079365495005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527965929579136 2505527965929579136 410586331 2015.5 26.1137830333913996 0.104442293072163003 -2.11596940517131005 0.113720379268037006 0.297446499276697973 0.107316046904199006 2.77168700000000001 8.5036324854680192 0.23439291329838699 -15.4305204857218001 0.159002396348461 0.529941100000000054 0.230716480000000002 0.124816430000000006 0.448286320000000016 0.234158740000000004 0.526653099999999985 0.488604429999999978 0.149836300000000006 0.0870837 0.419989849999999998 87 0 86 1 1.24015129999999996 97.0779037 0 0 31 false 4.54088829999999977 1.56370868000463004 0.0249682775669071016 0.163938210000000001 11 7 0.238070260000000006 0 12 false 85 4480.19196386291969 5.89987359886507967 759.370972 16.5601230000000008 9 2409.24590935162996 19.9147649823005999 120.977874999999997 16.8966850000000015 11 3006.81907432577009 11.0992429575059006 270.903079999999989 16.0666520000000013 1.20889129999999989 0 0.830032349999999974 0.336561200000000005 0.493471150000000025 \N \N 0 \N \N \N NOT_AVAILABLE 152.089276609883996 -61.9485766821633987 23.4307633260948016 -12.0543710347899005 100001 5791 5762 5832 0.519999981 0.241699994 0.713999987 0.257999986 0.114500001 0.332199991 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518409626842240 2505518409626842240 14608345 2015.5 26.1162279707924014 0.352009008132120993 -2.19262922534000992 0.277185776397705974 1.71592453344154006 0.399346519642164999 4.29683100000000007 -6.9701712085694103 0.828687809049505009 -18.2928289669210002 0.485968816284053973 0.180407390000000001 0.0407793450000000016 -0.128980060000000007 0.119252730000000001 -0.0746703499999999964 0.12704776000000001 0.100493810000000003 0.0497068239999999967 0.1824297 0.110297000000000006 140 0 140 0 1.44713249999999993 159.455994 0.413980644205626025 0.235940403645333002 31 false 0.163827660000000014 1.25444033894552009 0.0826119095540543968 0.0600547459999999991 16 10 0.732066870000000036 0 16 false 140 353.99746461425201 1.78314803495056995 198.524002 19.3158649999999987 12 111.453938592840998 11.5901769540048001 9.61624100000000048 20.2336500000000008 13 435.327168728994991 17.310361706700899 25.1483570000000007 18.1648800000000001 1.54459049999999998 0 2.06876950000000015 0.917785639999999958 1.15098379999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.164858792626006 -62.0165631968251034 23.4044524500414006 -12.1266261807709004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518409626992384 2505518409626992384 620794178 2015.5 26.1348857659709992 19.2040856402892004 -2.19277806728478009 7.60752767344555014 \N \N \N \N \N \N \N -0.975302000000000002 \N \N \N \N \N \N \N \N \N 71 0 71 0 -0.00249031769999999994 65.3071976 0 0 3 false 0.0153149310000000004 \N \N -0.190893399999999991 9 6 36.5829960000000014 0 9 false 73 81.9080351554302979 1.42110558812247989 57.6367989 20.9050499999999992 3 35.467577823450597 10.1489507132701 3.49470400000000003 21.4768089999999994 5 45.1114252404615002 10.2774625253585992 4.38935399999999998 20.6262040000000013 0.983774069999999945 1 0.850605000000000055 0.571758300000000053 0.278846739999999982 \N \N 0 \N \N \N NOT_AVAILABLE 152.200766606036012 -62.0085833174357006 23.422148877904899 -12.1335752981658995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524220718165632 2505524220718165632 1342883349 2015.5 26.1431305418102014 2.28727276845039995 -2.1959963114313501 2.14972973140182999 \N \N \N \N \N \N \N 0.106699354999999996 \N \N \N \N \N \N \N \N \N 71 0 70 1 1.06345219999999996 77.1451035 0 0 3 false 0.0179855319999999985 \N \N 0.0115144029999999994 9 6 6.32751800000000042 0 9 false 76 81.3141270942042951 1.88098354143685009 43.229599 20.9129499999999986 7 69.9379032228268045 17.3896473114401005 4.02181239999999995 20.7396069999999995 6 133.704683732462001 21.7018942817101994 6.1609683000000004 19.446553999999999 2.50439360000000022 0 1.29305270000000005 -0.173343660000000011 1.46639629999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.219554301871995 -62.0078917000775007 23.4287913299654988 -12.1395804527804998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524491304249216 2505524491304249216 1218283684 2015.5 26.1340363004848015 0.668401802463309047 -2.17519730819123991 0.705987742114671968 0.285008422687464014 0.736159922558996982 0.387155599999999989 12.4510889978646997 1.74209268123157002 3.65240500532916013 1.80290422496307001 0.263813799999999987 -0.0985364400000000029 -0.162011149999999993 -0.166873460000000001 -0.0743641899999999967 -0.156084210000000001 -0.525560400000000039 -0.00299197999999999999 0.155460390000000004 0.261364700000000005 109 0 109 0 1.10336119999999993 120.002998 0.929740641197019047 0.343796496176171973 31 false 0.0492625419999999994 1.31509416682362001 0.191951903422339004 0.0419521669999999985 13 9 1.78678190000000003 0 13 false 107 170.502776688920989 1.4970130770127601 113.894997 20.1090370000000007 8 80.2278682543270065 12.1772905670833005 6.58831830000000007 20.5905740000000002 9 185.082033030077014 13.5331542457760996 13.6761929999999996 19.0935099999999984 1.55604450000000005 0 1.49706460000000008 0.481536870000000006 1.01552770000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.182836570067991 -61.9931252801610029 23.4279086882925007 -12.1168992092840995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523529227858688 2505523529227858688 1125407779 2015.5 26.1998347680744992 0.43438170434485901 -2.19330429660592019 0.343882477681195009 1.16750462162391999 0.496429301645749999 2.35180450000000008 -3.87589239991622003 1.06473829565804001 -13.5599317963363006 0.621354340381937043 0.162421779999999988 -0.0517343359999999988 -0.0941333399999999959 0.143692139999999996 -0.244582830000000001 0.187569189999999997 0.185271010000000014 -0.0419534000000000018 0.0526545979999999969 0.143482579999999998 136 0 135 1 3.05341079999999998 184.867996 1.3606116929254799 2.40198390860612987 31 false 0.115690656000000003 1.44419289342384993 0.104667581531295004 0.0627176700000000031 16 10 0.942063870000000025 0 16 false 134 327.398174093051011 1.88833551306315006 173.378998 19.4006749999999997 10 153.269424093779008 43.1513157597234027 3.55190599999999979 19.8877489999999995 11 313.691792858548979 9.2318194045560702 33.9794120000000035 18.5206620000000015 1.42627919999999997 0 1.36708640000000003 0.487073900000000004 0.880012499999999975 \N \N 0 \N \N \N NOT_AVAILABLE 152.325626361023012 -61.980741114369799 23.4837547685283994 -12.1577660816682993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523323073220096 2505523323073220096 933005512 2015.5 26.2029301462675015 0.479645250670168999 -2.19444481621404996 0.377546040529807003 0.187252073616691994 0.545303293031121017 0.343390699999999993 4.72799217166547958 1.15737149152018004 -1.64638017655452007 0.666683192522359969 0.149414989999999998 -0.00225271679999999993 -0.0873024599999999984 0.155029680000000003 -0.221556560000000013 0.193031599999999998 0.220564929999999992 -0.0405438170000000028 0.0635214699999999965 0.128061039999999987 138 0 135 3 3.81644439999999996 200.867004 1.81384129283372997 4.2721750321873504 31 false 0.0953350000000000031 1.55659093492091993 0.111095138408693006 0.0595869239999999994 16 10 1.02277679999999993 0 16 false 133 327.647290238852975 1.95156931181069004 167.889008 19.3998489999999997 11 190.617394440020007 25.9579026562986002 7.34332799999999963 19.6509819999999991 12 205.367789442293997 8.10126168750779918 25.3501000000000012 18.9805889999999984 1.20857159999999997 0 0.670393000000000017 0.251132970000000011 0.419260030000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.332609498192994 -61.980414618831901 23.4862744885078989 -12.1599571488826008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523632311870464 2505523632311870464 1066274127 2015.5 26.1932348532045012 0.0829257842913474069 -2.17077918947330994 0.0637096226732130066 2.97812652574347991 0.0906245970912464005 32.8622319999999988 9.5741078085132596 0.191654918815539005 -11.7518712743005995 0.133398023184672004 0.0879310199999999986 0.163454929999999998 -0.20194049 0.0599664079999999988 -0.0933993459999999942 0.0544556679999999987 -0.139976319999999987 0.0497200299999999984 0.0930912700000000037 0.141324640000000001 128 0 127 1 2.98376099999999989 173.949005 0.273603446324134025 2.43855524539557011 31 false 3.57883210000000007 1.32760606007787008 0.0185720133083287012 0.012223556 15 10 0.176260429999999996 0 15 false 126 4757.75112107354016 6.45755379635247984 736.77301 16.4948620000000012 13 1281.42966394276004 42.733915135007301 29.9862460000000013 17.5821509999999996 14 5474.02227025232969 34.6397584495633026 158.027150000000006 15.4161540000000006 1.41988340000000002 0 2.16599750000000002 1.08728979999999997 1.07870770000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.292058393994012 -61.9633610165730033 23.4858863482178997 -12.1343880215185997 100001 3577 3532.33008 4008.6499 0.303299993 0.212899998 0.586099982 0.154499993 0.114 0.333999991 200111 0.566403450000000031 0.450990600000000019 0.580818530000000055 0.0473175529999999983 0.0443365569999999987 0.0502985499999999974 +1635721458409799680 Gaia DR2 2505523632307083008 2505523632307083008 1220059782 2015.5 26.1930644790655016 0.680281753569872971 -2.16979092802288021 0.542959872783910003 2.06669120993790001 0.725047357095059963 2.8504223999999998 11.1231965153552004 1.76247169806247994 -12.7503100018106004 1.19016698554735001 0.14032464 -0.139564450000000007 -0.347827229999999987 -0.00234094900000000015 -0.0460516440000000027 0.0238973219999999986 -0.303909329999999978 0.162459199999999998 0.0997984400000000021 0.141103730000000011 119 0 119 0 1.77554119999999993 142.192993 1.25328238986485996 0.676377421944363011 31 false 0.0543537330000000013 1.53064955959262994 0.168907019295255006 0.0387514200000000017 14 10 1.58000120000000011 0 14 false 117 189.493272078686999 1.62153146475886989 116.861 19.9943799999999996 5 40.9443830679339982 15.5972136761668008 2.62510870000000018 21.3209020000000002 5 311.862774568547991 23.4578538646175012 13.2946000000000009 18.5270119999999991 1.86184529999999993 1 2.79389000000000021 1.3265209 1.46736909999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.290814461836987 -61.9625462949163008 23.4860932714687003 -12.1334058194182006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524766178452352 2505524766178452352 223153641 2015.5 26.1929490247650989 0.843750045537396964 -2.16265792735562012 0.55471377497627905 0.00941520448736041064 0.875677178589767014 0.0107519120000000006 2.14680259396930984 2.2566727865652001 -2.02758537644055981 1.15684647961325004 0.196924500000000002 -0.427975739999999993 -0.526065769999999988 -0.0774221499999999951 -0.233039329999999989 -0.0380110550000000019 -0.229624699999999987 0.376454769999999994 0.235652830000000008 0.175109390000000004 112 0 112 0 0.300509540000000019 110.773003 0 0 31 false 0.052692830000000003 1.40232106980791005 0.179076385813554007 0.0709646599999999989 13 9 2.06006100000000014 0 13 false 111 160.509711845846994 1.31144247281954995 122.391998 20.1746119999999998 12 104.724726383746003 19.7761020633952995 5.29551899999999964 20.3012659999999983 11 123.295948039094995 6.75824543904607999 18.243780000000001 19.5345480000000009 1.42060359999999997 0 0.766717899999999952 0.126653669999999996 0.640064239999999951 \N \N 0 \N \N \N NOT_AVAILABLE 152.283968824808994 -61.956179449116398 23.4886470048571994 -12.1267230493285005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524594382270848 2505524594382270848 605336579 2015.5 26.1182843129966002 1.53671827734948008 -2.15769315807012019 1.27626483719446004 \N \N \N \N \N \N \N -0.0567755360000000014 \N \N \N \N \N \N \N \N \N 86 0 84 2 -0.180641230000000014 76.098999 0 0 3 false 0.0184227060000000005 \N \N -0.090541499999999997 11 9 3.50590629999999992 0 11 false 88 93.5176032375622981 1.40379648749218999 66.6175995 20.7611330000000009 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.136447376080014 -61.9842082254405966 23.4194612042157004 -12.0948550633879996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527549322045440 2505527549322045440 1574304297 2015.5 26.1209319851348987 0.128804742910419989 -2.14875727119994986 0.100125544562938998 4.48703922849187986 0.149123585256800001 30.0894000000000013 40.8504377471196989 0.284094333954533984 1.18338888392116992 0.188793856258914011 0.120370439999999995 0.213084880000000004 -0.059098959999999999 0.0886343299999999973 -0.113786670000000006 0.068538379999999996 0.0147570519999999997 -0.00882562100000000051 0.157182870000000002 0.127144019999999996 147 0 147 0 3.1166974999999999 200.425995 0.401939085289445996 1.8602495169645501 31 false 1.21291829999999989 1.26901718320821 0.0301057724783737983 0.0290326420000000009 17 10 0.253916319999999973 0 17 false 145 1788.21781811772007 2.39683607808365018 746.073975 17.5573140000000016 14 298.512124253083982 27.3500617548723 10.9144950000000005 19.1639820000000007 15 2469.1565532671998 21.1782078663714017 116.589489999999998 16.2805479999999996 1.54772460000000001 0 2.88343429999999978 1.60666850000000005 1.27676579999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.133254412267007 -61.9750103822588017 23.4253180321871 -12.0875029891919006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524697458979840 2505524697458979840 187489460 2015.5 26.1379918379742016 0.297157006915307997 -2.15046251907438979 0.200696218527089992 0.953773211493073036 0.313150878937710986 3.04573060000000018 13.7696243527774005 0.727070624479471017 -25.9230624367984994 0.361033786355834996 0.0540759099999999979 -0.043353102999999997 -0.327613739999999987 0.130136119999999994 -0.090267710000000001 0.148243380000000008 0.0757377500000000065 0.160451050000000012 0.140105859999999999 0.0341972629999999986 140 0 138 2 0.738783599999999985 144.710007 0.598339457648089046 0.865496314275851053 31 false 0.290446280000000001 1.51181168459503001 0.0637205470299590931 -0.0133980369999999998 16 10 0.649561170000000021 0 16 false 138 551.885368273770951 1.99350000991612997 276.84201 18.8337439999999994 15 132.91326403749099 8.42834836603597992 15.7697880000000001 20.0424669999999985 16 635.012016319518011 7.54621194457130962 84.1497700000000037 17.7549649999999986 1.39145790000000003 0 2.28750229999999988 1.20872310000000005 1.07877920000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.167503787024003 -61.9691345739245989 23.4409113262153994 -12.0953167754994002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524731818723328 2505524731818723328 519355097 2015.5 26.1372451641463002 1.13755415706675 -2.13663030043670998 0.999062683564818976 0.404030780411279988 1.23573890444895995 0.32695479999999999 15.2936870531106006 3.42769321525543003 -4.24384887471113004 2.96023647955159008 0.228955660000000005 -0.424947620000000026 -0.117626389999999997 -0.236955059999999995 -0.100359770000000001 -0.0880405799999999933 -0.496244000000000018 -0.105175630000000006 0.256625260000000022 0.0181880929999999989 85 0 85 0 0.834713099999999986 90.3050003 0 0 31 false 0.0280824640000000014 1.19283305546087992 0.317484597201058982 0.00179203960000000003 10 8 3.01152009999999981 0 10 false 86 110.824585460522002 1.48142690045131009 74.8093033 20.5767750000000014 9 101.455447196893005 29.1399042219280986 3.48166699999999985 20.3356999999999992 7 116.893815624225994 15.3288479790632994 7.62574050000000003 19.5924419999999984 1.97022399999999998 0 0.743257500000000015 -0.241075519999999988 0.984333039999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.153276823683996 -61.9570033043525967 23.4453670203475006 -12.0821674578479001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525109775846272 2505525109775846272 465247027 2015.5 26.1598004024743993 0.202132278452285014 -2.13241000912675993 0.140545691058040989 0.609828727666088977 0.214058881983464011 2.84888319999999995 7.28086087768485957 0.500685011241967959 -0.432618424745794983 0.265311172302067022 0.0677988800000000058 -0.059558947000000001 -0.330618999999999996 0.0934715639999999931 -0.0860464600000000052 0.109137713999999997 -0.0160021259999999985 0.166058139999999993 0.147829120000000008 0.0505022700000000019 138 0 135 3 0.467108599999999985 136.987 0 8.81319796442941009e-16 31 false 0.618539100000000008 1.41055318939725005 0.0446131686462969967 -0.00118247759999999991 16 10 0.448771739999999975 0 16 false 135 880.417774818991006 2.36393064834026978 372.437988 18.3266430000000007 13 373.844186060821016 14.4023236511432007 25.9572119999999984 18.9196619999999989 15 753.586194838580013 12.0801427460995008 62.3822249999999983 17.5690880000000007 1.2805629999999999 0 1.35057450000000001 0.593019500000000033 0.757554999999999978 \N \N 0 \N \N \N NOT_AVAILABLE 152.192530917923989 -61.9433975457843999 23.4684016571648009 -12.0864691077692008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524461236266112 2505524461236266112 1046346857 2015.5 26.1703655489565001 0.0383894890853530013 -2.15280543926966983 0.0343262668960587977 2.42871071818533002 0.0428052996209166009 56.7385519999999985 30.3579892206758011 0.0814168293424843009 -12.0362518559861993 0.0759599933533472993 0.194075419999999998 0.321040300000000001 -0.240320649999999997 -0.101617076000000001 -0.0688974200000000009 -0.188510239999999996 -0.526418860000000044 0.133678170000000013 0.180794210000000011 0.282244600000000012 130 121 127 3 3.54397319999999993 185.272003 0 0 31 true 234.881969999999995 1.59653895600765994 0.00936499771276312967 -0.00237088280000000021 15 10 0.0590982199999999999 0 15 false 122 169298.033088002005 38.6362266595250006 4381.8501 12.6167359999999995 15 89787.8589319591993 157.952699651844 568.447750000000042 12.9683440000000001 15 114383.195480950002 136.892613441260011 835.56880000000001 12.1160145000000004 1.205986 0 0.852329250000000038 0.351607320000000001 0.500721929999999982 -5.91817606839434962 2.86319865233822979 9 5500 4.5 0 NOT_AVAILABLE 152.231633307413006 -61.9571577374521993 23.4708377216995991 -12.1093113082861006 100001 5718.33008 5558.6001 5786.5 \N \N \N \N \N \N 200111 1.08680460000000001 1.06134759999999995 1.15016019999999997 1.13782070000000002 1.10842379999999996 1.16721760000000008 +1635721458409799680 Gaia DR2 2505524873553145216 2505524873553145216 894778015 2015.5 26.199374903646099 0.506822218245738032 -2.13406126638242988 0.327509040208442015 -0.0374749890319812026 0.513012361353246016 -0.0730488999999999999 0.675015688305125039 1.22043832545747 0.0427494993693113973 0.662610917919617015 -0.0481509530000000033 -0.0297069979999999983 -0.343822240000000001 0.0780276699999999934 -0.208633750000000007 0.0763337000000000043 -0.124669810000000006 0.158524410000000004 0.153365659999999987 0.0307375530000000008 121 0 120 1 1.3777680000000001 136.436996 0.629237034519809946 0.427520797647585993 31 false 0.120932944000000001 1.63300224780186998 0.106060823782150995 -0.0473321800000000015 14 10 1.08938559999999995 0 14 false 118 311.414517097838996 1.94853151446549 159.820007 19.4550190000000001 10 185.35451224608201 7.53241733577640993 24.6075729999999986 19.6813800000000008 13 221.533283737219989 9.29103497786156041 23.8437699999999992 18.8983230000000013 1.30657939999999995 0 0.783056259999999948 0.226360320000000004 0.55669594 \N \N 0 \N \N \N NOT_AVAILABLE 152.26971645047999 -61.9276476866911025 23.5054383775907993 -12.1024440249072001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525075416281216 2505525075416281216 554047430 2015.5 26.1891934673388995 0.442453372606075979 -2.12901214864634003 0.265290053063067022 3.4712601969146899 0.449285671329808012 7.72617629999999966 19.5989372964389013 1.00298364963138997 -70.1941526674249019 0.466915938787120011 -0.0849637399999999959 0.0895463799999999949 -0.322827729999999979 0.14018193000000001 -0.187081710000000012 0.13704115 0.0850060200000000016 0.13882288000000001 0.160265340000000006 -0.0216527039999999983 130 0 129 1 1.86175420000000003 154.916 0.632613098616578995 0.615631895275034036 31 false 0.167995830000000013 1.24811094636587994 0.0808653322115445994 -0.0503881300000000032 15 10 0.896255800000000047 0 15 false 128 376.922535038669025 1.74199151766202998 216.373993 19.2477359999999997 13 108.271097279648998 18.5541425633991999 5.83541349999999959 20.2651059999999994 14 513.354642271620037 7.72769009322540956 66.4305399999999935 17.9858760000000011 1.64921359999999995 0 2.27923000000000009 1.0173702 1.26185989999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.245580958391002 -61.9275422438953029 23.4976358794082003 -12.0940293291209997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524869257678208 2505524869257678208 898429960 2015.5 26.1974817349333016 0.134811853459856995 -2.13208073674360987 0.0911915386139895978 1.00801301485549999 0.14585329526528501 6.91114329999999999 27.4729734914603014 0.278732639428327988 2.63973620712943013 0.180688672375841991 -0.0358681299999999981 0.30243566999999999 -0.211016700000000001 0.107688580000000006 -0.191937030000000008 0.0711664300000000027 -0.132709309999999997 0.076096579999999997 0.146046359999999986 0.117537349999999999 120 0 119 1 1.87052499999999999 143.860992 0.283171791691200991 1.10326514475829995 31 false 1.71947610000000006 1.44390070415624994 0.0279682275683802994 -0.0349739449999999993 14 10 0.250985650000000005 0 14 false 117 2261.20088098096994 3.2845490056825799 688.435974 17.3025170000000017 13 831.280176675889038 28.8840216538269985 28.7799319999999987 18.0520199999999988 12 2068.93168096448017 15.6206417184345003 132.448579999999993 16.4725549999999998 1.2825979999999999 0 1.57946399999999998 0.749502200000000007 0.829961799999999972 \N \N 0 \N \N \N NOT_AVAILABLE 152.26426286178301 -61.9266910831442985 23.5043764071619989 -12.0999095815573003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528034649074304 2505528034649074304 128777886 2015.5 26.1027246794323986 0.045754328126947498 -2.09400618534807004 0.0360647886271091012 2.01178198662071983 0.0496349585608907018 40.5315549999999973 13.0993440977304001 0.102427274855549005 -9.49532142763131937 0.0776228210890118064 0.096645250000000002 0.218326789999999993 -0.22609338000000001 0.0154643739999999995 -0.0595543720000000013 -0.014766866 -0.303138760000000007 0.0854240599999999961 0.124165974999999998 0.16409783 133 0 133 0 -1.10587499999999994 110.502998 0 8.88178419700125035e-16 31 true 12.8565009999999997 1.43779981711443994 0.0113162267498738995 -0.00665995850000000028 15 10 0.101149929999999999 0 15 false 133 11132.0744503101996 6.3592038564794704 1750.55005 15.5719250000000002 13 3905.48039167530987 14.7029270465421007 265.626039999999989 16.3722020000000015 15 10531.3502704879993 21.7435001749127998 484.344760000000008 14.7057090000000006 1.29686799999999991 0 1.66649249999999993 0.800276760000000031 0.866215700000000033 \N \N 0 \N \N \N NOT_AVAILABLE 152.047859722639004 -61.9335776599980008 23.4284464081551995 -12.0298889846133008 100001 4197 4039.84009 4275.5 \N \N \N \N \N \N 200111 0.75889249999999997 0.73128283000000005 0.819088640000000034 0.160995269999999996 0.152257219999999999 0.169733329999999988 +1635721458409799680 Gaia DR2 2505529198584735360 2505529198584735360 650382915 2015.5 26.1139175244036998 0.15703191276525999 -2.06685020589535995 0.109349783245330998 3.07804389640340981 0.16589777213853199 18.5538600000000002 44.0425106674777993 0.37594354714203998 5.11354946832245005 0.205292959390632995 0.0467329100000000025 0.0544992239999999989 -0.284649339999999973 0.110563874000000006 -0.0502403999999999976 0.114201954999999994 0.00555768900000000021 0.12204682 0.146556660000000005 0.0297825110000000011 141 0 141 0 1.33540239999999999 158.494995 0.344734707621575986 1.00808884465737991 31 false 0.974670200000000042 1.28214398903742 0.0334697730951257003 -0.0186940880000000011 16 10 0.337216650000000007 0 16 false 139 1365.09654327906992 2.63412408144210985 518.234985 17.8504579999999997 11 307.22461841277601 11.4687703087257002 26.7879299999999994 19.1327479999999994 14 1693.19193033478996 12.7343135242062004 132.962950000000006 16.6901550000000007 1.46540300000000001 0 2.44259259999999978 1.28228950000000008 1.16030309999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.044277719460013 -61.9042566967475025 23.449232215831799 -12.0086935217460002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528373951004800 2505528373951004800 202971779 2015.5 26.1381669221430997 0.205958940647231997 -2.09578927758900013 0.114583674238920005 0.495667895655050983 0.197023376531509004 2.51578200000000018 -1.49168393609021011 0.456141195577332015 -3.37385550973931014 0.207480958752320005 -0.125510409999999989 0.13735594000000001 -0.40341935000000001 0.166060819999999998 -0.120021983999999998 0.163383450000000013 -0.0113791050000000005 0.174893400000000004 0.165334199999999987 -0.0401134859999999968 126 0 122 4 0.344896230000000026 121.669998 0.389128019533119984 1.2575406749817899 31 false 0.960138900000000017 1.58829827768978005 0.0371481624008166977 -0.0984403940000000005 15 10 0.414656069999999988 0 15 false 122 1447.33031370294998 2.6799338857750401 540.062012 17.7869470000000014 12 737.393612839028037 17.0887367525121014 43.1508559999999974 18.1821400000000004 13 1059.4840010789901 8.8356292262561702 119.910415999999998 17.1991839999999989 1.24151180000000005 0 0.982955930000000033 0.395193100000000019 0.587762829999999958 \N \N 0 \N \N \N NOT_AVAILABLE 152.117315187219987 -61.9198193036210967 23.4614943162358998 -12.0444831356219009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528442670611968 2505528442670611968 170482995 2015.5 26.1315639490070986 0.890772825331270002 -2.08383361022689018 0.680282516788724978 0.90922347670595105 0.938720790618471024 0.968577099999999969 -0.540170033967677043 2.43583687497062007 -1.95768213687916992 1.37142693108441005 0.213363780000000003 -0.341919199999999979 -0.23039807000000001 0.218631579999999992 -0.209030939999999998 0.269380569999999986 0.180641620000000003 0.0224043109999999997 -0.113155839999999994 0.180398059999999999 112 0 112 0 -0.0504295900000000033 105.601997 0 0 31 false 0.0385033529999999971 1.60517140479821996 0.206254660867415007 0.0663302540000000052 13 10 2.16733960000000003 0 13 false 112 140.367459049832007 1.43434571600374006 97.861702 20.3201999999999998 11 84.0283492677579034 18.1760441820824994 4.62302730000000039 20.5403230000000008 13 95.7882959758265002 12.1461596436139008 7.88630299999999984 19.8086400000000005 1.28104219999999991 0 0.731683729999999977 0.220123289999999999 0.511560440000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.093663269292989 -61.9119135512798024 23.4596768369499991 -12.0309435749356997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528167792573696 2505528167792573696 75560642 2015.5 26.1389522768889009 2.61190608868830987 -2.09798435577714004 1.30161522225698989 \N \N \N \N \N \N \N -0.624102530000000044 \N \N \N \N \N \N \N \N \N 78 0 78 0 0.56260836000000003 79.3046036 1.18396067352088008 0.265786571300409002 3 false 0.0255185269999999992 \N \N -0.145963769999999993 10 7 4.44982339999999965 0 10 false 78 123.939186974077998 1.60954207195015009 77.0028 20.4553429999999992 4 75.634948618509398 58.205813572601997 1.29943980000000003 20.6545810000000003 8 133.641992989048987 14.7191613028380992 9.07945699999999967 19.447063 1.68854529999999992 0 1.20751760000000008 0.19923782000000001 1.00827979999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.12084249339901 -61.9214556982572972 23.4614218571676005 -12.0468132220869997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528373955774848 2505528373955774848 640396207 2015.5 26.1394915344133985 0.106504455115050994 -2.08626811683069002 0.076523744040685196 0.536133854550236988 0.114422302979026003 4.68557100000000037 6.08077010303674026 0.254117400483625022 0.716923226797137048 0.148206378151329005 0.0680255899999999969 0.0630275799999999997 -0.271250099999999994 0.083965449999999997 -0.0690881240000000008 0.0839441199999999971 -0.060513235999999998 0.11621542 0.146063040000000005 0.065430260000000004 139 0 139 0 -1.4320790000000001 111.306 0 8.6806611219220396e-16 31 false 2.13737250000000012 1.52379656796771989 0.0232312217810809983 -0.00886913100000000058 16 10 0.230416860000000001 0 16 false 139 2305.34555851925006 2.53174636294819999 910.575012 17.2815270000000005 14 1049.40462457350009 10.8029042108626001 97.1409759999999949 17.7990299999999984 16 1747.33412668073993 12.0757436428883 144.697849999999988 16.6559799999999996 1.21315379999999995 0 1.1430511000000001 0.51750373999999999 0.625547399999999976 \N \N 0 \N \N \N NOT_AVAILABLE 152.111065869382998 -61.9106678454213011 23.4663090163720014 -12.0361026741986006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528442672986496 2505528442672986496 137093082 2015.5 26.1300604409663997 5.5157138842486404 -2.07854695160123981 9.50447106798734076 \N \N \N \N \N \N \N -0.848055200000000009 \N \N \N \N \N \N \N \N \N 50 0 50 0 1.21026370000000005 56.7043991 3.10517135100552988 0.686415483639018054 3 false 0.0122870630000000008 \N \N -0.0204969329999999984 6 4 1840.33200000000011 0 6 false 52 79.7709012826914972 1.9346949283419399 41.2318001 20.9337540000000004 2 76.7578274893143941 19.6139057426488002 3.91343929999999984 20.6385819999999995 3 65.8132897189088055 1.36389345380060001 48.2539829999999981 20.2161369999999998 1.78725719999999999 0 0.422445300000000024 -0.295171740000000016 0.717617029999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.085916576274002 -61.9078024363705026 23.4602203514077985 -12.0254733157523006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528240807485696 2505528240807485696 1182579704 2015.5 26.1699149644053009 0.0536211229728328978 -2.08931422205249984 0.0399778112706921027 0.493660264644044999 0.0586391505097720034 8.41861250000000005 -0.765089161789464955 0.127731167791869993 -9.00070908672872072 0.0832275293040350972 0.0884946999999999956 0.0880774799999999997 -0.102057220000000004 0.0075816395999999996 -0.0580635330000000005 -0.00208007470000000014 -0.203929450000000012 -0.0185229740000000011 0.157311929999999989 0.0944301000000000029 130 0 128 2 -0.601043400000000005 113.18 0 0 31 false 10.1458519999999996 1.58366771821557006 0.0127083306066239007 -0.0538988670000000031 15 9 0.120876860000000003 0 15 false 127 8956.4485137399206 7.61043095718884022 1176.85999 15.8080259999999999 13 4695.0984924423401 22.386919472011801 209.725079999999991 16.1722760000000001 14 6173.01501965521038 21.6435767028966985 285.212339999999983 15.2856769999999997 1.21344009999999991 0 0.886598600000000014 0.364249229999999979 0.522349359999999985 \N \N 0 \N \N \N NOT_AVAILABLE 152.172021254940006 -61.9001977294663988 23.4941135418114015 -12.0500382114082996 100001 5744.5 5589.0498 6363.7998 0.518000007 0.351200014 0.605099976 0.25999999 0.175899997 0.300999999 200111 1.21756829999999994 0.992121339999999963 1.28624080000000007 1.45442160000000009 1.0827450999999999 1.82609819999999989 +1635721458409799680 Gaia DR2 2505528236512180480 2505528236512180480 1189822302 2015.5 26.1833762099794995 0.781502787770816054 -2.09296844977667984 0.471735082087400004 0.198714716444589989 0.773166925002041983 0.257013979999999975 27.6416696347409001 1.9061517745177099 -31.6899532975259 0.834939443473666998 -0.0488332199999999966 -0.125833269999999997 -0.401847540000000003 0.150731069999999995 -0.201455190000000006 0.182589190000000012 0.122928599999999999 0.177690359999999992 0.0823296760000000044 -0.020741822 106 0 106 0 0.983924600000000038 114.911003 0 0 31 false 0.0672557899999999959 0.981583797788708967 0.138037792165874001 -0.085533045000000002 13 9 1.71093049999999991 0 13 false 106 190.245194150164991 1.34831419040218004 141.098999 19.990082000000001 5 32.315746352747297 10.7952132389303994 2.99352550000000006 21.577852 7 225.805362009926 14.0270680616305992 16.0978299999999983 18.8775839999999988 1.35678119999999991 0 2.70026780000000022 1.58777049999999997 1.11249730000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.201110374635988 -61.8976330188944033 23.5055559646764998 -12.0583507553894993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529748343154176 2505529748343154176 930617223 2015.5 26.1999445932356991 1.0834387538802901 -2.07548626012976989 0.916654165556501033 2.1208290694502101 1.07679531144319007 1.96957490000000002 9.95200462412302045 3.08630089115544015 -5.58715553203079018 2.46011511003051986 0.209025099999999991 -0.491699839999999999 -0.46853918 -0.181153089999999989 -0.114349989999999999 -0.092946479999999998 -0.612000470000000019 0.266455470000000028 0.204873680000000002 0.155380710000000005 91 0 91 0 0.106185235000000003 86.7279968 0 0 31 false 0.0367161670000000009 0.683319192624106009 0.257164817939668 -0.0332891229999999969 11 7 2.83065100000000003 0 11 false 93 124.008550614214002 1.36804827084926006 90.6463013 20.4547370000000015 9 65.3336223622575005 12.6228266157130005 5.17583129999999958 20.8135469999999998 10 135.530025581305011 16.2157309456195016 8.35793499999999945 19.431830999999999 1.61975650000000004 0 1.38171580000000005 0.358810420000000019 1.02290529999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.216582389042998 -61.8746848285764983 23.527843179217701 -12.0481177104840995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528580109447040 2505528580109447040 789722263 2015.5 26.1435226575850983 0.283564139507467006 -2.05708119839886017 0.199438460918481997 2.09437009100600013 0.302231582552069 6.92968649999999986 37.3443044767789019 0.731848774067206054 0.731688110087938992 0.344319995548488023 0.142245700000000003 -0.239683790000000008 -0.150761900000000004 0.226756979999999997 -0.210545100000000013 0.311288699999999974 0.27007123999999999 -0.0533896540000000017 -0.0415861199999999973 0.100389539999999999 114 0 114 0 2.64037999999999995 151.983994 0.806832780037185948 2.55946520608033978 31 false 0.415606260000000005 1.31778686916056009 0.0576946684717093011 -0.0530200899999999989 13 8 0.648876600000000026 0 13 false 114 811.455237072780051 2.13251147409031994 380.515991 18.4152050000000003 13 160.21416244584799 8.13678138681273921 19.6901149999999987 19.8396359999999987 13 1003.38004168272005 8.91302943610707032 112.574523999999997 17.2582570000000004 1.43395980000000001 0 2.58137900000000009 1.42443080000000011 1.15694809999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.091875939953013 -61.8826252133831005 23.4810385895809013 -12.0104013308357995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529336023813632 2505529336023813632 460040546 2015.5 26.1422835788190007 1.25838199527497996 -2.05608648425699014 0.989134777704841039 0.812154790442581986 1.36545082147621999 0.594788729999999988 -9.7827327534781503 3.72414870044566015 -25.5192882309398001 3.3162769980191098 0.151836130000000014 -0.498246159999999993 -0.135948330000000006 0.204605680000000012 -0.100383975 0.0599623660000000031 -0.329778970000000005 -0.118534654000000003 -0.278463899999999986 0.382193500000000019 84 0 83 1 -1.12735439999999998 64.1625977 0 0 31 false 0.0277241130000000016 1.96150983557768011 0.29511601096187301 -0.028855024 10 7 3.65777330000000012 0 10 false 84 109.834402080125002 1.4210384824115101 77.2916031 20.5865200000000002 7 50.0639083243887981 7.90428043668823044 6.33377169999999978 21.1025770000000001 7 115.315411042356004 16.5453746491793012 6.96964649999999963 19.6072029999999984 1.50571509999999997 0 1.49537469999999995 0.516057969999999977 0.97931670000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.088592873685997 -61.8822663105624002 23.4802312506394983 -12.0090232091668998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505530023218580736 2505530023218580736 436768181 2015.5 26.1854582127282995 0.942365026280606033 -2.05694380390848996 0.768105099351243048 0.018988990840980699 0.956481454773603024 0.0198529619999999983 1.14803201072985006 2.85370940813472007 -3.83024772200506991 2.09208049508047011 0.0573072020000000015 -0.452644229999999981 -0.369795140000000022 0.0179221830000000013 0.0789437999999999945 0.0679053440000000064 -0.482850879999999982 0.12617718 -0.00261739100000000016 -0.020522888999999999 92 0 90 2 0.995997099999999969 97.9243011 0.563363909606663049 0.108569432016076994 31 false 0.0440210700000000024 1.37970205653537992 0.239187645743332011 -0.0977292800000000017 11 7 2.53051400000000015 0 11 false 87 134.896854246710006 1.7663584369310199 76.3700027 20.3633610000000012 8 50.784381774143597 12.7647086732880997 3.9784991999999999 21.0870630000000006 8 136.017666432687008 8.59960277105703952 15.8167380000000009 19.4279299999999999 1.38477699999999992 0 1.65913200000000005 0.723701499999999998 0.935430500000000054 \N \N 0 \N \N \N NOT_AVAILABLE 152.171818982373992 -61.8642935334808968 23.5209810545499991 -12.0255707771309002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523357429165952 2505523357429165952 44445009 2015.5 26.2094463865145002 2.71769527789779008 -2.19614271936699978 2.44897614285148979 \N \N \N \N \N \N \N 0.232315080000000007 \N \N \N \N \N \N \N \N \N 127 0 126 1 38.977722 2299.38989 17.1909446820400014 134.338289164152997 3 false 0.00305727869999999988 \N \N 0.10101019 16 10 5.68620899999999985 0 16 false 134 194.979818086665006 2.0927761550773698 93.1679993 19.9633919999999989 12 185.711576537565008 9.23527880596665085 20.1089300000000009 19.6792900000000017 12 517.143662506269038 11.3694195442730006 45.4854929999999982 17.9778920000000006 3.60475900000000005 0 1.70139879999999999 -0.284101500000000007 1.9855003 \N \N 0 \N \N \N NOT_AVAILABLE 152.346654933643009 -61.9790939345010017 23.4918415614748994 -12.1639150804346006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523735386290560 2505523735386290560 1463897119 2015.5 26.2226957544528005 0.613408831769028051 -2.19009630146581991 0.45901090429229402 -0.451752221687775013 0.658228060381447988 -0.686315659999999994 2.65734342436088999 1.56825900416496999 -4.48423579225725 0.774052652582030043 0.188265399999999999 -0.212884519999999994 -0.278630099999999992 0.170516539999999994 -0.193892139999999991 0.198317860000000012 0.253297150000000026 0.133798 0.0787887200000000065 0.0981152359999999946 119 0 116 3 0.935537199999999958 124.808998 1.51099204951569011 2.78006979614945005 31 false 0.0779029200000000005 1.74251038133022007 0.126050781330411005 0.0835180060000000057 14 10 1.39338490000000004 0 14 false 117 248.206199778788999 1.85768848941194009 133.610001 19.7013339999999992 11 139.457046263357 12.8071069863123004 10.8890360000000008 19.9902879999999996 11 159.291192883303012 9.78054664219740921 16.2865329999999986 19.2564409999999988 1.20362930000000001 0 0.733846659999999984 0.288953779999999993 0.444892879999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.366360797395998 -61.967863999200901 23.5067085364815007 -12.1631191523423006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523666666814208 2505523666666814208 1688212008 2015.5 26.2280932364085011 1.23262954266483993 -2.18939222731771999 1.01689815157284991 -0.730836711664056948 1.28961525656114007 -0.566709099999999966 1.51856697788954009 3.60288003184551009 -2.09065978923488016 3.21581210079615998 0.254399869999999972 -0.483646870000000006 -0.320340540000000007 -0.12220259 -0.306914840000000022 -0.163627489999999987 -0.555759800000000026 0.113001964999999996 0.136000829999999989 0.376458230000000005 91 0 91 0 -0.291359499999999993 81.589798 0 0 31 false 0.0278295170000000015 1.57616734497630007 0.308752376315186983 0.045363937 11 8 3.57403540000000008 0 11 false 90 103.394156012213998 1.33792500541329007 77.2795029 20.6521259999999991 9 49.356084897528703 9.60941131255417957 5.13622400000000034 21.118036 10 60.6744223617492011 8.58901818431472996 7.0641860000000003 20.3044049999999991 1.06418499999999994 0 0.813631059999999962 0.465909960000000012 0.347721100000000005 \N \N 0 \N \N \N NOT_AVAILABLE 152.376022939241011 -61.9648699485510974 23.5121081386499995 -12.1644324431591002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523975904465280 2505523975904465280 1451652480 2015.5 26.2254556769470994 4.11220648025453972 -2.17259420670316983 5.39309700535612002 \N \N \N \N \N \N \N 0.508714400000000011 \N \N \N \N \N \N \N \N \N 86 0 86 0 19.9762120000000003 691.286011 19.4810544862450001 39.462634381901303 3 false 0.0021365844000000001 \N \N 0.214388159999999994 10 8 15.9228810000000003 0 10 false 86 96.6759680166887989 1.33051126983105994 72.6607971 20.7250690000000013 8 102.051348034057 17.608393260524501 5.79560799999999965 20.3293420000000005 7 278.804793162454018 9.69543137990664938 28.7563059999999986 18.6486699999999992 3.93951200000000012 0 1.68067169999999999 -0.395727160000000022 2.07639880000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.355343481787997 -61.9509198188238983 23.5158701591109995 -12.1478313916109997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524044626616448 2505524044626616448 49135659 2015.5 26.2200465034118011 3.47464580769814013 -2.15821222241345012 1.70042906381909997 \N \N \N \N \N \N \N -0.373648099999999983 \N \N \N \N \N \N \N \N \N 66 0 66 0 2.90008949999999999 98.0491028 4.83591983216606014 1.99255541573812001 3 false 0.0123618909999999999 \N \N -0.119984099999999996 8 7 8.75782799999999995 0 8 false 68 81.6575225868463974 1.64023708883172992 49.7840004 20.9083749999999995 3 160.104779262163987 136.967005885203008 1.16892960000000001 19.8403780000000012 5 119.338933499085996 7.0166261090358697 17.0080220000000004 19.5699649999999998 3.42214300000000016 0 0.270412450000000026 -1.06799700000000009 1.33840939999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.331633301414996 -61.9403504521439032 23.5160921932986007 -12.1324687180383997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505476765623941120 2505476765623941120 1286658268 2015.5 26.2613201257348017 0.208406353506887992 -2.19094830968196996 0.143047014699411001 0.631084776058328023 0.223418544837950012 2.82467500000000005 10.9981147260973007 0.51433254759449698 -6.73846923730699032 0.261865789675734983 0.0444050730000000032 -0.0647170299999999948 -0.277618299999999985 0.15471122000000001 -0.24848213999999999 0.197443160000000006 0.155251410000000006 0.0541568499999999994 0.0168159080000000009 0.0738526399999999972 136 0 134 2 2.01042750000000003 163.279999 0.426449794150533024 0.906223234740670014 31 false 0.639986040000000034 1.45358727815032007 0.043864517278183697 -0.0108194810000000006 16 10 0.45903322000000002 0 16 false 133 989.229965797200975 1.90976902332927989 517.984009 18.2001230000000014 11 350.858893769981989 10.6425296096719997 32.9676199999999966 18.9885580000000012 13 933.111610886179051 6.09405724977800034 153.118290000000002 17.3370859999999993 1.29794940000000003 0 1.65147210000000011 0.788434999999999997 0.863037100000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.440956456571001 -61.9517174387019978 23.543150176634299 -12.1779993235769002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505476799983677696 2505476799983677696 1572341119 2015.5 26.2794895887734015 0.163567124744204012 -2.19435147298767008 0.118915400723917 1.22074833030327001 0.181375633693390992 6.73049799999999987 -0.884136811934748024 0.416221596100300018 -6.60610654606858994 0.224844355983608996 0.0551997700000000022 -0.0411928780000000022 -0.174642030000000004 0.0973079349999999982 -0.231190709999999994 0.116084926000000005 0.175250750000000011 -0.00697769129999999994 0.0651997549999999981 0.0199921700000000001 130 0 128 2 1.31445520000000005 144.048004 0.480526338069839021 1.94304792723878994 31 false 0.975658829999999977 1.29681546833263006 0.0367226569254852017 -0.0130053129999999992 15 10 0.369517419999999985 0 15 false 127 1471.24931482446004 2.30984355265414987 636.947998 17.7691499999999998 10 423.019402382459987 21.2603492037859994 19.8971039999999988 18.7854880000000009 10 1621.02670602766989 9.89594064433550002 163.807240000000007 16.737444 1.38932680000000008 0 2.04804420000000009 1.01633829999999992 1.03170589999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.478823994925989 -61.9468055620237976 23.5591733406648984 -12.1877931919548992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505476838638888192 2505476838638888192 968786614 2015.5 26.2860521573840984 0.647379257192426949 -2.18809677199547981 0.43317449342727099 0.608508653765954977 0.689600473580302964 0.88240755000000004 16.4131428492919014 1.82776747322590993 -33.5726674097722011 0.802720521640237994 0.0512925239999999991 -0.258193080000000019 -0.1686753 0.0796948499999999976 -0.236846059999999997 0.100123500000000004 0.273640779999999972 -0.0359583299999999967 0.0817102340000000066 -0.123146400000000003 131 0 131 0 2.35759229999999986 166.449005 1.66900300176321004 1.84247648707800993 31 false 0.0692122399999999943 1.33808661633050008 0.129364910148689005 -0.0190869570000000016 15 10 1.60936400000000002 0 15 false 128 224.453304565433996 1.42186826202813998 157.858002 19.8105499999999992 10 79.6764377072597938 6.69124185039174968 11.9075710000000008 20.5980629999999998 10 255.838876112865989 11.4681019006452996 22.3087370000000007 18.7420040000000014 1.49481120000000001 0 1.85605810000000004 0.787511799999999984 1.06854629999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.485508029071013 -61.9383060529584029 23.5677545422514001 -12.1843624897610994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505476628184987520 2505476628184987520 1683489515 2015.5 26.2929316764255994 1.30379029629436993 -2.19071809448141996 0.886199084016125016 -0.828318718853532032 1.31529240072631004 -0.629760149999999963 -0.52115470059489899 3.11548845179301015 -4.66183104598843023 2.02343350412396017 -0.111113859999999995 -0.0227137430000000015 -0.330140050000000018 0.0921693150000000017 -0.403095700000000001 0.0701164400000000021 -0.227872669999999999 0.106112559999999995 0.104285959999999997 0.139051439999999998 102 0 102 0 -0.287878069999999986 92.3983994 0 0 31 false 0.0226775539999999991 1.40435605432024002 0.269496933249923021 0.00076928624000000001 12 10 2.78791000000000011 0 12 false 102 110.742572761985997 1.41014640013770998 78.5326996 20.5775800000000011 8 76.5536820432115945 12.5985456918397993 6.07639029999999991 20.6414739999999988 7 92.1665873032588934 10.39535750748 8.86613000000000007 19.8504870000000011 1.52353570000000005 0 0.790986999999999996 0.063894270000000003 0.727092740000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.501083470380991 -61.9376400994663996 23.5733242489554016 -12.1893113112417009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523804105772416 2505523804105772416 1105490358 2015.5 26.2519895116043998 0.383014016417404013 -2.17493701178507015 0.267705565350329022 3.63347350898094001 0.406177059292428977 8.94554100000000041 14.946745292228 1.00016530318803998 -10.0822170270549005 0.503420027298813966 0.119632290000000002 -0.230258849999999987 -0.308048040000000023 0.127083439999999992 -0.2149171 0.161301389999999989 0.123466889999999996 0.110900120000000005 0.047323983 0.0731959300000000063 120 0 120 0 1.14814130000000003 132.572006 0.400461920201803989 0.230840805344980998 31 false 0.202063379999999987 1.19674568984608998 0.0793675528381720952 0.0517897049999999984 14 10 0.889269349999999958 0 15 false 120 379.629860580664001 1.47801065215811001 256.85199 19.2399650000000015 12 46.0063249750272973 11.4865475148583993 4.00523499999999988 21.194344000000001 13 538.986153395787028 17.1246537286966998 31.4742810000000013 17.932976 1.54095479999999996 0 3.26136779999999993 1.95437810000000001 1.30698969999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.40821052667701 -61.9414155785326983 23.5402472208091993 -12.1596896811891 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523911480451968 2505523911480451968 461268998 2015.5 26.2626823572830013 0.622828830467111016 -2.15667867242671019 0.390597852844981996 1.73130524131045993 0.631448372719294992 2.74180000000000001 21.3589640087614008 1.84965682811037002 -19.0200738295900003 0.730840076098998037 0.0695504839999999958 -0.424516620000000011 -0.340117720000000012 0.129110370000000002 -0.133991450000000012 0.110933884999999996 0.284082769999999984 0.104745290000000005 0.077987349999999997 -0.18363663999999999 113 9 113 0 1.98044039999999999 139.009003 0 0 31 false 0.113067520000000005 1.32476341067888992 0.121816974563657004 -0.032701448000000001 13 9 1.54490130000000003 0 13 false 113 243.833660722797987 1.45497085046793995 167.587006 19.7206299999999999 8 40.3692906611660973 5.85675635803684003 6.89277270000000009 21.3362599999999993 12 325.274370276312993 17.8127909664543012 18.2607199999999992 18.4812949999999994 1.4995619 0 2.85496520000000009 1.6156292000000001 1.23933599999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.411615839863003 -61.9203211914758995 23.5572390855944995 -12.1465895426808999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523838465355392 2505523838465355392 336921091 2015.5 26.2672924081806016 0.0296501742652123014 -2.15878537218073019 0.0237435913988204017 1.29750426279332998 0.0320583694762993018 40.4731829999999988 -0.831381650943347039 0.0684112633466752995 -12.4379883665838999 0.0563697942729496984 0.0228821560000000007 0.111371399999999995 -0.29205819999999999 0.123213745999999999 -0.14358224 0.125629779999999996 -0.241847740000000005 0.0479758159999999975 -0.0656349100000000046 0.240817370000000003 128 0 128 0 -2.97341059999999979 81.5018997 0 0 31 true 61.3172100000000029 1.59687826783363995 0.00774132102041734035 -0.0213028250000000009 15 9 0.0753348499999999949 0 15 false 128 49036.179434901198 15.6443068893991004 3134.43994 13.9620739999999994 14 26181.9137580913011 46.8544186157979965 558.792850000000044 14.3063850000000006 13 33008.5808692717983 36.9089744676899016 894.323999999999955 13.4653530000000003 1.2070780000000001 1 0.841032000000000002 0.344310759999999993 0.496721269999999993 \N \N 0 \N \N \N NOT_AVAILABLE 152.42237442671501 -61.9201952623733973 23.5608402008676983 -12.1502319195759991 100002 5773.66992 5677.0498 5794 0.171000004 0.0491999984 0.270399988 0.0900000036 0.0225000009 0.127100006 200111 1.07201640000000009 1.06450529999999999 1.10881450000000004 1.15054699999999999 1.08264429999999989 1.21844970000000008 +1635721458409799680 Gaia DR2 2505476903062898048 2505476903062898048 914818786 2015.5 26.2795710101108 0.132175234206545006 -2.1812404930819298 0.0914595923579041986 0.152206839037338004 0.14632654698943301 1.04018600000000006 -0.337774346311348006 0.295621326582666988 -6.49569663616046977 0.190656677981450001 -0.0703619300000000031 0.250329140000000006 -0.120917189999999994 0.0449695660000000025 -0.24964829999999999 0.0625585599999999992 0.0182175150000000001 -0.0455498900000000026 0.0333218949999999972 0.0737682300000000041 109 0 105 4 2.0538514000000001 131.147995 0.338532012294244011 1.65178689796856992 31 false 1.97114590000000001 1.61456585717623002 0.0283875615290066011 -0.0408051999999999998 13 10 0.263787270000000018 0 13 false 104 2790.40958160894979 3.81826068014900022 730.80603 17.0741960000000006 13 1537.95959948754989 18.4434734964602995 83.3877399999999938 17.3840259999999986 12 1873.81092641260011 11.9150531362639001 157.26418000000001 16.5801049999999996 1.22267740000000003 0 0.803920749999999962 0.309829699999999986 0.494091029999999987 \N \N 0 \N \N \N NOT_AVAILABLE 152.466739687634998 -61.9349905795512967 23.5641449783273984 -12.1756158441809994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478380531656960 2505478380531656960 168000180 2015.5 26.291242335771301 0.592198244708034949 -2.16005863091380013 0.365250081689505013 1.35886821155297 0.60158726716640798 2.25880480000000006 12.1987734811545998 1.58685610534425003 2.33730443896687001 0.636790325942549029 0.0811873000000000039 -0.378079739999999997 -0.431759329999999997 0.189820779999999995 -0.187360940000000004 0.201771830000000013 0.252421500000000021 0.209989559999999992 -0.00102418730000000007 -0.0407733899999999996 128 0 128 0 1.6634951 150.216003 0.575759845903305978 0.327784269510310977 31 false 0.10370567 1.15917564147319996 0.114169934106848003 -0.0105403030000000009 15 9 1.42362980000000006 0 15 false 127 249.007660931547008 1.49039034474579002 167.074997 19.6978340000000003 11 54.1884771730119965 10.6823985052746995 5.07268800000000031 21.0166199999999996 10 334.713690589461976 10.8642008228885008 30.8088650000000008 18.4502349999999993 1.56180800000000009 0 2.56638529999999987 1.31878659999999992 1.24759859999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.469244108986999 -61.9108388444947977 23.5831592151283012 -12.1601492136874008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505524903617414912 2505524903617414912 579908752 2015.5 26.2193786011470991 0.329003539712686977 -2.13800202965053998 0.234454183831610014 1.03564393761497997 0.347398608707427003 2.98114010000000018 -3.09071862693952015 0.850962436079521045 -17.7089619722343983 0.425834464477156005 0.107038270000000005 -0.166807089999999991 -0.27810600000000002 0.168671800000000011 -0.205084729999999993 0.207748369999999988 0.20609187000000001 0.0719651199999999935 0.0165774150000000016 0.0674430099999999977 129 0 127 2 1.48955609999999994 146.024994 0.709055373107065012 1.16021920778807996 31 false 0.256006000000000011 1.45680014355164 0.0690550268758827052 0.0269116239999999986 15 10 0.756068900000000044 0 15 false 127 504.754417827190991 1.90299417403724003 265.242004 18.9306659999999987 13 186.468264645662998 7.79108510937116971 23.9335419999999992 19.6748750000000001 15 486.485393623621974 10.6665381511258008 45.6085550000000026 18.0442450000000001 1.33322990000000008 0 1.63063050000000009 0.744209299999999963 0.88642120000000002 \N \N 0 \N \N \N NOT_AVAILABLE 152.311584561406988 -61.9224645228003965 23.5230013575422987 -12.1134091747398998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525659531663872 2505525659531663872 298559734 2015.5 26.244642857238901 0.180521930835888994 -2.11974187294157979 0.12925158706429199 0.535178467611893027 0.186773697596005012 2.86538460000000006 3.50205772277463012 0.463321072253377986 -4.14963118505520967 0.239521616991044989 0.0927769199999999988 -0.200246380000000002 -0.314239769999999974 0.207499380000000011 -0.185310620000000009 0.259719219999999973 0.189930509999999997 0.0923498499999999972 -0.0421870839999999997 0.0852482900000000043 122 0 121 1 -0.640037100000000025 105.892998 0 0 31 false 0.945515749999999988 1.51890466072152996 0.0386934715594074025 0.0123300709999999997 14 9 0.416026979999999991 0 14 false 121 1150.32265540311005 2.61534235683091021 439.835999 18.0363159999999993 11 456.535649488094009 12.8184201514534006 35.6155929999999969 18.7027019999999986 13 994.182724553367052 12.5525029414746996 79.2019499999999965 17.2682549999999999 1.2611403000000001 0 1.43444630000000006 0.666385650000000052 0.768060700000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.342855298551001 -61.8950051176646028 23.5538573079757008 -12.1056216780028993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523907184997120 2505523907184997120 580982905 2015.5 26.2575768085696986 0.171771914885803012 -2.15147221859059989 0.126099636005398003 0.402469295486830025 0.180331325495678013 2.23183249999999989 -0.100327754351321005 0.433238126656905975 -4.97660726733372005 0.234127590401126989 0.0327526330000000032 -0.0342155059999999997 -0.227381319999999998 0.149251949999999994 -0.114691929999999997 0.167820130000000012 0.217009139999999989 0.0308476609999999984 0.0589083659999999967 -0.0180763770000000011 112 0 110 2 2.95361019999999996 153.022995 0.622291160298870993 4.36443235984298017 31 false 1.02202759999999993 1.49859208325788007 0.0385376610667637967 -0.0245240310000000017 13 9 0.386083569999999987 0 13 false 110 1898.0489529030699 2.78585489844452994 681.317017 17.492598000000001 12 949.173399808700992 16.1335358720621009 58.8323249999999973 17.9080240000000011 13 1335.58561629993005 10.5532786183319001 126.556465000000003 16.9477399999999996 1.20374080000000006 0 0.960283299999999951 0.415426249999999997 0.544857000000000036 \N \N 0 \N \N \N NOT_AVAILABLE 152.397026516672014 -61.9178768028126996 23.5543234555570002 -12.1398804274307004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525350294008704 2505525350294008704 1680472552 2015.5 26.2903808178498011 1.60158488587818004 -2.15062121005083995 1.1997018801522199 \N \N \N \N \N \N \N 0.119143940000000004 \N \N \N \N \N \N \N \N \N 119 0 113 6 34.9336429999999964 1860.28003 8.16605435724403961 73.0624747576826934 3 false 0.0119492509999999993 \N \N 0.00973088499999999988 14 9 3.5000167000000002 0 14 true 123 269.31121656173201 6.94453758768447038 38.7803001 19.6127299999999991 11 68.9705367212327047 10.3901494691370004 6.63806959999999968 20.7547280000000001 11 458.044829660692017 9.74976328541155013 46.9801000000000002 18.1096499999999985 1.956901 0 2.6450787 1.14199830000000002 1.50308039999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.458803619375004 -61.9027373588376975 23.5858610732666989 -12.1510481306867 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525625171924224 2505525625171924224 9445080 2015.5 26.2673625438986988 0.422338652303311024 -2.12529127166867982 0.28389018360120899 0.43163260558286598 0.433526494968183018 0.995631460000000024 4.35783264141934001 1.12125143199604005 -19.6008926457625989 0.503721844343080982 0.0948449799999999954 -0.30206442 -0.363095000000000001 0.174294929999999987 -0.158689949999999996 0.204593140000000007 0.225040049999999991 0.159414510000000009 0.0322691459999999986 -0.000855467699999999968 122 0 121 1 1.25386419999999998 135.425003 0.657241893249641995 0.660636366842862977 31 false 0.182648840000000007 1.29746468251597991 0.0837574347169519062 0.00859013599999999995 14 9 1.00067759999999994 0 14 false 120 371.695567819767007 1.6899416582014799 219.945999 19.2628969999999988 13 153.144919949892994 11.6739196268838992 13.1185519999999993 19.8886320000000012 14 321.729466204667972 10.4217958682270009 30.8708290000000005 18.4931930000000015 1.27758959999999999 0 1.39543909999999993 0.625734299999999966 0.769704799999999967 \N \N 0 \N \N \N NOT_AVAILABLE 152.391340848992996 -61.8900577561410969 23.5734067045599005 -12.1190723185160003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525693891402496 2505525693891402496 178292695 2015.5 26.2658667617873007 1.31865859583016998 -2.11890452807908991 0.493476828805704981 \N \N \N \N \N \N \N -0.0775088740000000054 \N \N \N \N \N \N \N \N \N 105 0 105 0 1.73385319999999998 125.801003 0 0 3 false 0.0675340400000000035 \N \N -0.106905325999999995 12 7 3.60337540000000001 0 12 false 105 171.849657093618987 1.42460621729792991 120.629997 20.1004940000000012 8 79.145186270513193 4.13085900888917035 19.1594979999999993 20.6053280000000001 9 189.434802435313003 16.5844173630875993 11.4224580000000007 19.0682699999999983 1.56287770000000004 0 1.53705789999999998 0.504833199999999982 1.0322247 \N \N 0 \N \N \N NOT_AVAILABLE 152.382553104223007 -61.8849706755933013 23.5743664342688994 -12.1125804554919991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525526388154880 2505525526388154880 1415611069 2015.5 26.2938002118453014 0.514731447520090035 -2.1303898809088202 0.325797966156916974 1.04274354942757008 0.542270170804364016 1.92292259999999993 5.06119170279191977 1.32689371785609 -1.52623649281730001 0.573814490857614046 0.0834172700000000017 -0.305123270000000002 -0.247550959999999987 0.161106680000000002 -0.248837069999999994 0.22867113 0.199142700000000006 0.0280252770000000012 0.0147130579999999993 0.0124373590000000003 124 0 123 1 5.24785699999999977 217.369995 1.69371140980035007 5.37449392330793962 31 false 0.129753960000000002 1.04572573003432989 0.102529965033893999 -0.0759158360000000004 14 8 1.17403630000000003 0 14 false 123 400.414910432064005 2.02690523800503009 197.550003 19.1820899999999988 12 152.49613320968399 10.7974260707085001 14.1233789999999999 19.8932420000000008 12 516.062406184222027 22.3364850065003004 23.1040120000000009 17.9801639999999985 1.66966450000000011 0 1.91307830000000001 0.711151100000000036 1.20192720000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.446475889852991 -61.8830586534065006 23.596664429818901 -12.1334574004015003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525728251141504 2505525728251141504 944134590 2015.5 26.2768662980724983 0.408797614039516977 -2.11693704638852997 0.272540877613310972 1.66926723091731999 0.423716517137088022 3.93958500000000011 3.61750995802310005 1.09890085771882995 2.07238651494371995 0.522295601188240033 0.107786220000000002 -0.352477969999999974 -0.251601399999999975 0.132929120000000012 -0.160465699999999989 0.199358719999999989 0.0993764399999999964 0.0503528079999999989 0.0415050100000000019 0.0204751580000000002 104 0 103 1 1.28871880000000005 116.422997 0.653193747164385052 0.711945781150963963 31 false 0.219908770000000003 1.47828210022119011 0.0956788693407241986 -0.0280473510000000016 12 8 0.972185500000000036 0 12 false 104 423.830677824701013 2.19239185348361021 193.319 19.1203840000000014 11 117.321776030232996 9.6639913805951192 12.1400959999999998 20.1779420000000016 10 462.314447287905978 7.53673503489145968 61.3414760000000001 18.099577 1.36761270000000001 0 2.07836530000000019 1.05755810000000006 1.02080729999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.401691281897996 -61.8783873308839034 23.5855680834041017 -12.1147586022264004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478105653739264 2505478105653739264 1150132277 2015.5 26.3137197313896998 0.260470056938167993 -2.18637273483677008 0.183433435624171998 2.17809629144861994 0.268147868218746976 8.12274400000000085 20.6910443861481994 0.665128559098143946 -36.3263007703991008 0.349437619017492984 0.0653405340000000057 -0.192473300000000014 -0.324749049999999984 0.165587349999999994 -0.194029000000000007 0.206832700000000008 0.114934289999999995 0.11332159 0.0115705540000000003 0.0598286170000000006 115 0 113 2 1.30257230000000002 127.551003 0.277629108122091017 0.248529864426472014 31 false 0.464501769999999981 1.43705470194555995 0.0585638259879227019 0.00575062070000000036 13 9 0.594254850000000001 0 13 false 113 708.093206445389001 1.97439849914507004 358.636993 18.5631389999999996 12 187.837074039487987 10.1123437748480001 18.5750300000000017 19.6669349999999987 13 831.070793539282022 8.59245002350253984 96.7210539999999952 17.4628259999999997 1.43894600000000006 0 2.20410919999999999 1.103796 1.10031319999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.536672341001008 -61.9246026208465992 23.5947335173842987 -12.1928437746132996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478414891396096 2505478414891396096 11297116 2015.5 26.3072936938898998 0.154068625513376994 -2.15695184355138014 0.122288364864111002 2.54453678860765997 0.170143591237003011 14.9552320000000005 -22.9667968472955017 0.374031620169597012 -26.3981575189083983 0.21768722745625399 0.156578269999999992 -0.00132444620000000002 -0.278747740000000022 0.183086749999999993 0.0287332570000000016 0.23227624999999999 0.0886379260000000058 0.134181539999999988 0.0347900999999999974 0.114552989999999993 106 0 106 0 2.47288079999999999 139.552002 0.417858052197726981 1.73641515156997994 31 true 1.25679469999999993 1.31579513229642009 0.0363669672656483992 0.0772572599999999943 12 8 0.336960460000000017 0 12 false 106 1856.79574768656994 3.07934044341185986 602.984985 17.5164550000000006 12 452.800822606896986 11.0089816473508009 41.1301270000000017 18.7116199999999999 11 2158.59007290964018 16.7202326197063016 129.100480000000005 16.4264949999999992 1.40639639999999999 0 2.28512570000000004 1.19516559999999994 1.0899601000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.496945246226005 -61.9010021946791014 23.5995960785981005 -12.1631077497643005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478178668703616 2505478178668703616 837745810 2015.5 26.3406386458457007 0.0267479063495258997 -2.17213975982387986 0.0226966783555377985 1.89516007228794003 0.0288370373951775012 65.7196500000000015 24.1234577029333011 0.0615608038984149994 -12.1851013038895992 0.0536143259093926003 0.0600936339999999999 0.128023980000000009 -0.29405271999999999 0.100822529999999994 -0.0818079300000000009 0.0932407600000000059 -0.312817799999999979 0.0768059999999999993 -0.0477458720000000017 0.250418719999999984 116 0 116 0 -0.0955140139999999943 108.922997 0 0 31 true 99.4295500000000061 1.58319944303318993 0.00682185702636298012 0.0101411699999999997 13 9 0.0705542599999999936 0 13 false 115 77264.5604450188985 24.1839166035646009 3194.87012 13.4684150000000002 12 39826.0334631954029 62.2940601835737979 639.323099999999954 13.8509700000000002 13 53902.9228150049021 52.218982059796403 1032.2476999999999 12.9328889999999994 1.21309109999999998 0 0.918081299999999989 0.382554999999999978 0.535526300000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.574662258383 -61.8999808730830026 23.6256688258538006 -12.1894027332890005 100001 5456.5 5399.25 5522.47998 0.205500007 0.101000004 0.291099995 0.101999998 0.0392999984 0.152400002 200111 1.04534039999999995 1.02051099999999995 1.06762610000000002 0.87270380000000003 0.840166799999999991 0.905240799999999957 +1635721458409799680 Gaia DR2 2505478243092845696 2505478243092845696 541123999 2015.5 26.3342513620094998 2.00679181063904988 -2.16331770309662996 1.79583243567779993 \N \N \N \N \N \N \N 0.420782900000000015 \N \N \N \N \N \N \N \N \N 60 0 60 0 -0.207864550000000009 52.2020988 0 0 3 false 0.0211213269999999988 \N \N 0.0322767899999999996 8 7 6.51507660000000044 0 8 false 63 84.0492997651916056 1.55131944607965999 54.1791992 20.8770309999999988 2 95.5688785861183021 24.5476601249478001 3.8931969999999998 20.4005970000000012 3 59.6223222374476975 24.3166377980865001 2.45191479999999995 20.3233989999999984 1.84643069999999998 0 0.0771980300000000008 -0.476434699999999989 0.553632739999999957 \N \N 0 \N \N \N NOT_AVAILABLE 152.554249631613004 -61.8948709005880033 23.6228803301912009 -12.1788605152410003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505477418458971264 2505477418458971264 279658548 2015.5 26.3523127266803989 1.35081856499528996 -2.18805951842663005 0.494123005262551984 \N \N \N \N \N \N \N -0.0487241799999999989 \N \N \N \N \N \N \N \N \N 106 0 106 0 1.18041069999999992 117.982002 0.868982785071468977 0.385575069908147994 3 false 0.0668983999999999968 \N \N -0.0517451700000000001 12 8 3.6845254999999999 0 12 false 107 181.177463750649991 1.42200233107658991 127.410004 20.0431060000000016 9 54.1821901671998987 11.7868713761031003 4.59682559999999985 21.0167469999999987 12 226.081467795294003 10.4627771793515993 21.6081700000000012 18.876256999999999 1.54690130000000003 0 2.14048959999999999 0.973640440000000051 1.16684910000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.611796457713012 -61.9091293136586032 23.6308419979290001 -12.2084804395354993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505477418459120768 2505477418459120768 1224322963 2015.5 26.3533481740928011 38.8489164406325997 -2.18621052395618021 15.0381572025275005 \N \N \N \N \N \N \N -0.98453676999999995 \N \N \N \N \N \N \N \N \N 39 0 38 1 1.45229279999999994 45.4304008 2.55969362534822986 0.388742738367065022 3 false 0.0157156380000000005 \N \N -0.406075240000000004 5 5 89.1201400000000064 0 5 false 40 74.0021703081980036 1.63319040714381991 45.3114014 21.0152549999999998 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 152.612036916854009 -61.9070135278697009 23.6325176248830005 -12.2071361216114997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478243092701696 2505478243092701696 1255277974 2015.5 26.3414714243154009 1.07540211510552997 -2.16360944882864015 0.66959109397229799 -1.68659914310591996 1.07712497443525002 -1.56583420000000006 8.36811392427054912 3.15904824593049982 0.173849475267730008 1.47100861408419004 0.120948260000000002 -0.503716500000000011 -0.395603629999999984 0.0972032250000000042 -0.189089060000000003 0.104321999999999998 0.0526556820000000023 0.166172359999999991 0.0428660360000000032 -0.0721277800000000024 97 0 97 0 0.715449600000000019 101.336998 0.701487852733736039 0.13410413500236501 31 false 0.0388013499999999983 1.60081390067742002 0.223827578319463011 -0.00350378970000000001 11 9 2.81089199999999995 0 11 false 98 122.697802503011005 1.21554215935768006 100.941002 20.4662739999999985 8 67.4502784940804929 10.5905970478443994 6.3688836000000002 20.7789290000000015 10 82.4876519516014071 10.7890774876753994 7.64547799999999977 19.9709469999999989 1.22200989999999998 0 0.807981500000000019 0.312654500000000002 0.495327000000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.568272442567007 -61.8919560255899981 23.6296442005320984 -12.1817634108271005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478243097523072 2505478243097523072 1035091262 2015.5 26.3424479235099014 11.1041982149705003 -2.16278432185460012 5.03642858715632968 \N \N \N \N \N \N \N 0.740027670000000026 \N \N \N \N \N \N \N \N \N 48 0 48 0 1.36716079999999995 56.1651001 0 0 3 false 0.016146118000000001 \N \N 0.233392949999999988 6 5 68.7874149999999958 0 6 false 49 85.0198575592617942 1.78478917117718994 47.6357994 20.8645649999999989 3 49.8899866727373009 4.01264652412903011 12.4331875000000007 21.1063539999999996 6 70.0092671589987958 7.19927996962468963 9.72448200000000007 20.1490299999999998 1.41025 0 0.957323099999999982 0.241788859999999994 0.715534200000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.569360586035003 -61.890785473175697 23.6308815729073984 -12.1813509687427004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505477835071319808 2505477835071319808 455002390 2015.5 26.3784100888768016 0.0411816609853975987 -2.17316018469895011 0.0317340710535833972 1.11528700177558004 0.0430291902559885031 25.9193120000000015 -1.81009929003171011 0.0976913144010690959 -11.9740862433702002 0.0700535050836935957 0.0203681460000000002 0.0271501900000000011 -0.299928550000000016 0.144682959999999999 -0.153901530000000009 0.165174920000000003 -0.138168810000000003 0.0807682799999999979 -0.0169798250000000005 0.16263691999999999 122 0 122 0 -2.30053200000000002 84.6804962 0 0 31 true 20.00901 1.57187058192899998 0.00950432932682132928 -0.0206807419999999985 14 9 0.0986898499999999956 0 14 false 120 16853.4770208695008 7.41664549877054036 2272.38989 15.1216419999999996 12 8097.74442785896008 20.2994442787906983 398.914580000000001 15.5804779999999994 11 12697.7975623400998 24.1504128025459011 525.779700000000048 14.502599 1.23390219999999995 0 1.07787900000000003 0.45883560000000001 0.619043349999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.647520591775987 -61.8842519263763009 23.6612451688598 -12.2041163238784005 100001 5240 5032.87988 5775 0.412999988 0.291500002 0.521499991 0.201000005 0.105700001 0.25909999 200111 0.912374800000000041 0.751159000000000021 0.989014449999999989 0.565413830000000006 0.516313400000000033 0.614514299999999958 +1635721458409799680 Gaia DR2 2505477830775839488 2505477830775839488 590986882 2015.5 26.3756497898748989 0.801397777321425031 -2.16707757496708986 0.526019676065885955 2.78186370601639998 0.783142624312742952 3.55218029999999985 9.06851282655406976 2.14602571493165994 -18.3633128648835999 0.861056919569272994 0.0808422099999999977 -0.349169159999999978 -0.454869179999999984 0.253114549999999994 -0.14603258999999999 0.272531540000000017 0.350023479999999998 0.245509859999999996 -0.0235542080000000001 -0.0257902599999999989 116 0 114 2 3.68491649999999993 172.056 2.40344675982747003 3.91312242743445005 31 false 0.0631873899999999961 1.28388930918881994 0.137755205984306989 0.0181519820000000005 13 9 1.93174160000000006 0 14 false 112 254.611358758074999 2.04191491551953996 124.692001 19.6736719999999998 8 60.5939098232814999 6.34422635587128969 9.5510319999999993 20.8953150000000001 11 395.367849266650978 17.1314192298117014 23.0785240000000016 18.2694170000000007 1.79081460000000003 0 2.62589840000000008 1.22164340000000005 1.40425489999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.636571935899013 -61.8800114909398999 23.6608863319011 -12.1974467321574007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478414891397504 2505478414891397504 803170021 2015.5 26.3047993377488005 0.143387458043399002 -2.15244251312536994 0.102491308345387999 0.443576056764310001 0.159188063763351012 2.78649069999999988 17.2385805979256013 0.363118198629690025 1.87142224332900997 0.208531494829945013 0.147468800000000011 -0.278261539999999974 -0.406345339999999999 0.0292770730000000007 -0.330313299999999976 0.0316989759999999968 -0.123543780000000006 0.239486589999999999 0.137213400000000013 0.168582569999999987 113 0 112 1 -0.568830300000000011 98.2613983 0 0 31 false 1.66390820000000006 1.50828913087246996 0.0305136521355987012 0.0364943799999999999 13 8 0.331531200000000026 0 13 false 111 1809.04919243121003 2.68601909693885021 673.505981 17.5447400000000009 12 809.556972857248979 10.1236964189030001 79.9665399999999948 18.0807700000000011 13 1437.05241195724011 13.5394859013398001 106.137885999999995 16.8682380000000016 1.241873 0 1.21253199999999994 0.536029800000000001 0.676502200000000053 \N \N 0 \N \N \N NOT_AVAILABLE 152.487985083143997 -61.8980466528718978 23.5989045724267008 -12.1579999012468996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478517970615808 2505478517970615808 85054657 2015.5 26.3108934455489987 4.21163723036799986 -2.14487087691572009 6.84545200224487971 \N \N \N \N \N \N \N 0.652852059999999956 \N \N \N \N \N \N \N \N \N 74 0 74 0 19.7567139999999988 655.565002 16.8933621536315997 39.0601028436079005 3 false 0.00286217200000000007 \N \N 0.264240599999999992 9 6 17.6977539999999998 0 9 false 79 119.810142693383 2.89783372831898989 41.3446999 20.4921320000000016 8 153.89670618068601 9.81122313667487056 15.6857814999999992 19.8833139999999986 8 297.144380303626974 11.9676607876719991 24.8289429999999989 18.5795020000000015 3.7646320000000002 0 1.30381199999999997 -0.608818049999999999 1.91263010000000011 \N \N 0 \N \N \N NOT_AVAILABLE 152.492535995697011 -61.8885693709381997 23.6075300104882011 -12.1531712221666002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525457668697216 2505525457668697216 365607171 2015.5 26.2974888950083994 0.0329152838986499011 -2.13550786666835979 0.0272702936413582002 1.81720177213804002 0.0357825276718320984 50.7846100000000007 1.80977450163491005 0.0772157949772992042 -15.1129500361062004 0.0685169178321751032 0.0242406800000000006 0.0983295500000000017 -0.296182930000000011 0.102308179999999999 -0.140611989999999992 0.0812220099999999973 -0.309211200000000019 0.0455490299999999973 -0.074917965000000003 0.265169649999999979 123 53 123 0 2.31796099999999994 156.505005 0 0 31 true 160.837459999999993 1.61517340421393008 0.0086682217317017099 -0.0154238129999999998 14 9 0.0678224600000000011 0 14 false 121 121850.878476059006 46.2708314013385973 2633.42993 12.9737939999999998 13 65457.785750524803 89.6042280281884018 730.521200000000022 13.3114849999999993 13 80923.2331602464983 99.9016165630605002 810.029239999999959 12.4917370000000005 1.20131279999999996 0 0.819747899999999974 0.337691300000000028 0.482056619999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.458270432217006 -61.8860399289989971 23.5982654858383007 -12.1395673299443008 100001 5784 5693.5 6027.52002 0.163499996 0.00889999978 0.453799993 0.112000003 0.00389999989 0.249599993 200111 1.20191200000000009 1.10675790000000007 1.24042520000000001 1.45664320000000003 1.40328509999999995 1.5100013000000001 +1635721458409799680 Gaia DR2 2505478449251135488 2505478449251135488 939277553 2015.5 26.3247043842142006 2.25729758384827006 -2.15432551891906021 1.70831219909895005 \N \N \N \N \N \N \N 0.0854936200000000063 \N \N \N \N \N \N \N \N \N 112 0 112 0 25.5510650000000012 1081.82996 12.3927766062691003 52.7451353852674032 3 false 0.00552211000000000021 \N \N 0.0160702749999999984 13 9 4.78387259999999959 0 13 false 114 197.85309294697899 2.40337160632279989 82.3230972 19.9475079999999991 10 178.130304238235993 15.6767177831174003 11.3627289999999999 19.7245449999999991 11 439.581290478355982 13.2912177461364998 33.0730629999999977 18.1543220000000005 3.12207200000000018 0 1.57022290000000009 -0.222963329999999987 1.79318620000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.527666634740001 -61.8909941405778028 23.6171479114312 -12.1670082879671995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525556457256576 2505525556457256576 189334368 2015.5 26.2967833925689014 2.99011808409809987 -2.1143560247529698 1.39670253498104002 \N \N \N \N \N \N \N -0.193772420000000001 \N \N \N \N \N \N \N \N \N 57 0 56 1 -0.207568570000000008 48.2865982 1.13330259121234 0.273795953577522011 3 false 0.0204744970000000012 \N \N -0.122791300000000006 7 6 7.7486069999999998 0 7 false 57 83.2292110297512977 1.54908865891351999 53.7279015 20.887675999999999 4 24.4717451938320991 9.76539183085306028 2.50596640000000015 21.8797260000000016 5 156.345809576394998 15.7929372594431996 9.89972999999999992 19.2767049999999998 2.17252519999999993 0 2.60302159999999994 0.992050199999999993 1.6109715 \N \N 0 \N \N \N NOT_AVAILABLE 152.437237608891991 -61.867342202164501 23.6054854388731989 -12.1196156061494005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525900052637824 2505525900052637824 845864185 2015.5 26.3260663202661007 3.81022269215055998 -2.10640049494779014 4.07882273700920983 \N \N \N \N \N \N \N 0.755436960000000046 \N \N \N \N \N \N \N \N \N 39 0 38 1 1.83986580000000011 49.4393997 5.15729923206207008 1.88234035127473009 3 false 0.0124095179999999996 \N \N 0.0889589600000000036 5 5 13.1895369999999996 0 5 false 38 77.4864748517963022 1.61792685441148998 47.8923988 20.9653020000000012 3 27.6380792485267008 14.1154565453544993 1.95800109999999994 21.7476179999999992 3 167.589360202937002 74.2478485277191993 2.25716109999999981 19.2013029999999993 2.51950340000000006 0 2.54631419999999986 0.782316200000000017 1.76399799999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.485579148324007 -61.8473491082378004 23.6363218904248988 -12.1228801637569994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525865694902144 2505525865694902144 1209729208 2015.5 26.3323780188875993 1.58055345254256996 -2.11694824114008018 0.946043838849548013 \N \N \N \N \N \N \N 0.392414060000000009 \N \N \N \N \N \N \N \N \N 77 0 77 0 0.692029540000000054 79.9108963 1.51913678013813991 0.515276829947877046 3 false 0.0368888080000000021 \N \N 0.0678299099999999933 9 6 6.95278200000000002 0 9 false 77 127.760851810481 1.3072671235311899 97.7313004 20.4223700000000008 8 31.0119882906933988 8.50755334430271049 3.64523000000000019 21.6225640000000006 9 176.83185407151899 8.29826966978943048 21.3094840000000012 19.1430189999999989 1.62681950000000008 0 2.47954559999999979 1.20019340000000008 1.27935219999999994 \N \N 0 \N \N \N NOT_AVAILABLE 152.507413358193986 -61.854052326867297 23.6383950236906983 -12.1350016429869996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525904345295232 2505525904345295232 441158562 2015.5 26.3389225639716997 0.173480312540737008 -2.11287830964257983 0.132153686202440002 -0.0682200569482656061 0.19855535553141801 -0.343582060000000022 -1.04324445399270993 0.498429496928635973 -4.11939786984442957 0.272942887741311979 0.167149560000000003 -0.205262119999999992 0.113808735999999994 -0.0221070610000000008 -0.171591770000000005 0.0459827699999999992 0.0983689400000000019 -0.241255130000000012 0.173046320000000003 -0.00825364399999999922 105 0 105 0 -1.61083500000000002 78.3375015 0 0 31 false 0.959733100000000006 1.55461585748023001 0.0455446415282493022 -0.0261516899999999983 12 9 0.44192627000000001 0 12 false 104 1101.21536610494991 2.69285324968948014 408.940002 18.0836849999999991 10 619.880969597305011 12.5550846426654008 49.3729020000000034 18.3706169999999993 11 745.004425130578966 26.7267549988371016 27.8748550000000002 17.5815219999999997 1.23943540000000008 0 0.789094900000000044 0.28693200000000002 0.502162930000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.51607205853 -61.8475215846700976 23.6461419598181983 -12.1335966997579998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478659705040128 2505478659705040128 1513411097 2015.5 26.3620602796327006 0.109595097535857999 -2.1479935162588002 0.0744615490617273057 0.604032256666140022 0.112665257817552003 5.36129999999999995 -2.99866970613451 0.278904549935333979 -5.58537831760562042 0.147351984400072994 0.0362182399999999988 -0.186424179999999995 -0.22557316999999999 0.155196589999999995 -0.135961920000000014 0.211984050000000007 0.0159956379999999995 0.0149084539999999998 0.0125154919999999996 0.0497486330000000004 112 0 111 1 0.581658070000000027 113.995003 0.183428340263825013 0.612359318081523996 31 true 2.85958740000000011 1.54542658421379997 0.0225598029576436002 -0.0599027570000000009 13 8 0.252079429999999993 0 13 false 110 3161.21428803739991 5.07705514908407984 622.646973 16.9387299999999996 10 1637.89510906179999 27.0689761333515015 60.5082000000000022 17.3156740000000013 10 2231.18891721936006 12.8469034684171994 173.675229999999999 16.3905799999999999 1.22392330000000005 0 0.925094599999999989 0.37694359999999999 0.548151000000000055 \N \N 0 \N \N \N NOT_AVAILABLE 152.592863236655006 -61.8688728914915984 23.6550683137021984 -12.1747250847244004 100001 5320 4954.29004 5521.79004 0.0170000009 0.00529999984 0.114100002 0.00800000038 0.00340000005 0.0568999983 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478895927740672 2505478895927740672 551907270 2015.5 26.3561016085464992 0.249334718107342007 -2.13577834771172004 0.169920100605074009 1.1716696660388799 0.261179366319566009 4.4860730000000002 -9.13256068563856083 0.645137605132128034 -8.84509136680788011 0.323250700081817 0.060237157999999999 -0.207124840000000005 -0.168720399999999993 0.141645500000000008 -0.155847619999999992 0.205484749999999994 0.104347414999999999 -0.0293769369999999988 0.0397660250000000035 0.023531059 107 0 107 0 3.3304412000000001 156.457993 0.826089184797126008 3.81279266661924998 31 false 0.53280559999999999 1.25589066496280011 0.0562972834917101969 -0.0514549539999999972 12 8 0.570551159999999946 0 12 false 106 1064.94112201406006 3.03777457530142003 350.56601 18.1200520000000012 9 265.290300688342995 10.7215781890919004 24.7435870000000016 19.2920860000000012 11 1287.01437052386996 15.9499974930480999 80.6905699999999939 16.9879600000000011 1.45764359999999993 0 2.30412479999999986 1.17203330000000006 1.13209150000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.570114691441006 -61.8605306027304991 23.6539524309106994 -12.1611797300127993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478934582946560 2505478934582946560 883296703 2015.5 26.3417234752722003 3.08185713225801994 -2.1261482484816101 2.25364080587717996 \N \N \N \N \N \N \N 0.0369318400000000005 \N \N \N \N \N \N \N \N \N 71 0 71 0 43.0141750000000016 2811.76001 14.6792471840785996 222.304562413186005 3 false 0.00440247729999999979 \N \N -0.0487366600000000011 11 8 6.88018470000000004 0 11 false 99 364.199254489638975 5.40655122199127014 67.3626022 19.2850189999999984 9 516.477845707370989 15.8700418374580998 32.5441999999999965 18.568757999999999 10 1037.33041209553994 10.1329708040466997 102.371796000000003 17.2221280000000014 4.26636840000000017 0 1.34663010000000005 -0.716260899999999978 2.06289100000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.533772560160003 -61.8582081808827979 23.6438585329889008 -12.1469736284711001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478895930588288 2505478895930588288 1465896360 2015.5 26.3590421885628992 1.17000211345530003 -2.12764356390204012 0.878284614707761979 -0.084081218556667503 1.2076219273555 -0.0696254500000000054 19.4444325980497013 3.54286447260574011 9.73357748391621946 2.97678080110097021 0.209169720000000003 -0.577554939999999961 -0.267301469999999985 -0.0221522169999999984 -0.216135519999999998 -0.0318810460000000032 -0.464987600000000001 0.028760819 0.0233627500000000016 0.229733409999999999 88 0 88 0 1.59625419999999996 104.531998 1.38225257001437996 0.49447417859297399 31 false 0.0347102320000000006 1.9404395512736301 0.28165776253451702 -0.0125070870000000001 10 7 3.26648400000000017 0 10 false 87 120.592154974628997 1.31791626678375007 91.5020981 20.4850670000000008 5 75.227447107213905 30.8820905196098998 2.43595719999999982 20.6604479999999988 8 171.241375008684997 11.7243770256005 14.6055840000000003 19.177897999999999 2.04382129999999984 0 1.48254970000000008 0.1753807 1.30716900000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.568112471679996 -61.8519330549020978 23.6597854864305006 -12.1546763165243004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478999006960640 2505478999006960640 1122638985 2015.5 26.3615408645203004 0.556548587597221034 -2.11860017544826995 0.42142237772694302 -0.99140680107002499 0.64557168814080601 -1.5357037 -4.73755329314557994 1.57136205227890002 -5.0554126106927999 0.791830639534491953 0.234693120000000005 -0.267535540000000016 0.0543152100000000027 0.0586699619999999991 -0.283542400000000028 0.144598229999999994 0.184868979999999988 -0.198329090000000013 0.101166930000000002 0.0608026119999999989 116 0 115 1 3.56721380000000021 170.951004 1.55803813367203992 2.30305155745105017 31 false 0.0895789399999999958 1.22636421787252003 0.140512342381978989 -0.0144387030000000006 13 9 1.38324270000000005 0 13 false 114 258.225477224090014 1.51778760098553001 170.132996 19.6583669999999984 8 45.8768037792651029 7.53444100691164032 6.08894599999999997 21.1974049999999998 10 288.20104072944298 11.2950139560353993 25.5157759999999989 18.612680000000001 1.29374469999999997 0 2.58472439999999981 1.53903769999999995 1.04568670000000008 \N \N 0 \N \N \N NOT_AVAILABLE 152.564423354002997 -61.8427141630890986 23.6655364990561985 -12.1471657312967007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478999006961280 2505478999006961280 272197598 2015.5 26.3608358565336012 0.599098076789523981 -2.1162017241627602 0.44587292253192401 -1.60511016819432006 0.696950606373972992 -2.30304719999999996 3.86429318911552011 1.63591228651664999 -2.40453953135580001 0.828790077684097959 0.148204499999999989 -0.151329760000000008 0.0977888400000000019 0.0121541089999999997 -0.369251669999999976 0.0936245200000000027 0.156873079999999998 -0.177502199999999999 0.133846899999999991 0.0444775339999999991 105 0 104 1 0.64916790000000002 107.711998 0 0 31 false 0.0879600100000000051 1.75536368888874006 0.154641847121649995 -0.0553558950000000022 12 9 1.4391335999999999 0 12 false 102 217.360023229018992 1.51397505648350994 143.569 19.8454170000000012 8 143.088273186070012 7.22855286798832974 19.7948699999999995 19.9623780000000011 6 125.915247388466 11.4526146307845007 10.9944539999999993 19.511724000000001 1.23759419999999998 0 0.450653079999999984 0.116960525999999995 0.333692549999999977 \N \N 0 \N \N \N NOT_AVAILABLE 152.560845039899988 -61.8408709483972032 23.6657598757902008 -12.1446755027803004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479067731246080 2505479067731246080 24632508 2015.5 26.3618396618529012 0.85507918991851195 -2.10554864320212998 0.86819670189221898 \N \N \N \N \N \N \N 0.55861649999999996 \N \N \N \N \N \N \N \N \N 54 0 47 7 31.9863280000000003 1538.87 2.82876928621349011 148.205081128806995 3 false 0.119467290000000004 \N \N 0.104152604999999995 6 6 2.37422129999999987 0 12 true 60 4326.67749616967012 99.7865594615504961 43.3592987 16.5979789999999987 6 1207.32287344474003 22.956179633664199 52.5925000000000011 17.6468300000000013 6 8305.44964000655091 48.6626015281185005 170.674180000000007 14.9635119999999997 2.19863220000000004 0 2.68331719999999985 1.04885099999999998 1.63446620000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.552817057341002 -61.8308641327403024 23.6706879142004993 -12.1351212953900003 132001 3770 3431 4205.00977 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526484165389824 2505526484165389824 1097231643 2015.5 26.2198705716474016 1.67820665153608006 -2.10634724919159 2.44504802775874985 \N \N \N \N \N \N \N 0.725028000000000006 \N \N \N \N \N \N \N \N \N 69 0 68 1 0.807979349999999985 71.7819977 1.40467665697664001 0.411143072648163022 3 false 0.0305343829999999983 \N \N 0.170342860000000013 8 6 5.78766439999999971 0 8 false 70 123.409977841949996 1.85350679452578992 66.5819016 20.4599900000000012 4 26.0017269407220013 4.22708731653662007 6.1512159999999998 21.8138830000000006 5 76.4471518732480035 9.12556718844843928 8.37725000000000009 20.0535159999999983 0.830150700000000019 0 1.76036640000000011 1.35389329999999997 0.40647316 \N \N 0 \N \N \N NOT_AVAILABLE 152.283165128729991 -61.8937734108051032 23.5352844861882993 -12.0841172014718001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526518525132544 2505526518525132544 257555772 2015.5 26.2328487178928995 0.748173271086771008 -2.09595571170146 0.594737183196889951 0.449223541078010991 0.85190616259887797 0.527315740000000033 19.8933327654943994 2.03886233737619005 4.72845118365115002 0.922272296442050998 0.387619800000000014 -0.481472200000000017 0.0881512599999999952 0.417017550000000015 -0.499908359999999996 0.521958770000000016 0.559426549999999967 -0.306822119999999976 -0.336173900000000025 0.313362099999999977 104 0 104 0 3.99288730000000003 165.542999 1.9005822337904299 3.21593251328507002 31 false 0.0830294040000000011 1.18444429551979002 0.143029230459846002 -0.00541135799999999979 12 7 1.8570336999999999 0 12 false 103 270.810006791627018 2.0795105112463399 130.227997 19.6067050000000016 9 61.0023720177826974 7.01401224099662013 8.69721499999999992 20.8880209999999984 10 351.406552985880978 11.9492517080515999 29.4082469999999994 18.3973960000000005 1.52287189999999995 0 2.49062539999999988 1.28131679999999992 1.20930859999999996 \N \N 0 \N \N \N NOT_AVAILABLE 152.298297003419009 -61.8787618816051008 23.5515109612891997 -12.0791749150382994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526900777688960 2505526900777688960 1496427242 2015.5 26.225724923426899 0.412567101732393027 -2.07147919947963999 0.248128903276711998 0.818012763616852046 0.416648227754358003 1.96331750000000005 13.2222196938517005 1.13421689014061999 -17.7096831698369002 0.463870789687528984 0.0280337670000000011 -0.38004391999999998 -0.377666180000000018 0.102909689999999998 -0.0556551480000000015 0.156082169999999992 0.101071659999999994 0.169187140000000014 0.116514400000000004 -0.0910723199999999983 122 0 121 1 -1.68861810000000001 91.5633011 0 0 31 false 0.210362689999999991 1.43121170043558998 0.0795853024168961948 -0.0806095800000000001 14 8 1.01235140000000001 0 14 false 120 377.240767542154003 1.80120600831594002 209.438004 19.2468189999999986 11 134.981375213972001 7.67721881919649984 17.5820669999999986 20.025703 10 387.268143220564014 10.6419165997718999 36.3908270000000016 18.2918909999999997 1.38439310000000004 0 1.73381230000000008 0.778884899999999991 0.954927439999999961 \N \N 0 \N \N \N NOT_AVAILABLE 152.262052351394999 -61.859847485773102 23.5538657407365015 -12.0537883371143995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526935137427200 2505526935137427200 1529947539 2015.5 26.2328583505655004 0.122343640970062006 -2.06273312456317992 0.0858452082916586062 1.1427945108128299 0.128154326434711002 8.91733100000000078 24.4879470437470985 0.303346499582539009 -4.85292196541630982 0.155297885958046999 0.0376990919999999965 -0.0751573900000000045 -0.267918319999999988 0.110645400000000005 0.0776366299999999981 0.154982239999999993 -0.00997861300000000076 0.115814570000000006 0.160512519999999992 -0.0199900809999999998 113 0 113 0 1.05348789999999992 123.503998 0.177154821519198008 0.450096020949019016 31 true 2.10339739999999997 1.41677125303178997 0.0265830177831270983 -0.0604055800000000004 13 8 0.27359998000000002 0 13 false 111 2356.76630602062005 2.8693314187854102 821.364014 17.2575740000000017 11 814.602097965743951 15.7599145085398007 51.6882319999999993 18.0740240000000014 12 2270.69551974012984 24.1750984588129008 93.9270400000000052 16.3715229999999998 1.30912329999999999 0 1.7025013 0.816450099999999956 0.886051200000000039 \N \N 0 \N \N \N NOT_AVAILABLE 152.267561820753002 -61.848867543020603 23.5639156541968013 -12.0482462000303006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527308799126400 2505527308799126400 5781991 2015.5 26.245413660705001 0.41801166417820701 -2.0592804924522099 0.286083257607394004 1.06884774051407994 0.435327191449234985 2.45527460000000008 15.1179083675993997 1.12481991401405002 6.37385415613950013 0.487084403796156973 0.0972832000000000002 -0.287558319999999978 -0.257265450000000007 0.162664919999999991 -0.0335074100000000014 0.228463589999999994 0.245915999999999996 0.0792161100000000062 0.105285450000000003 -0.0252015070000000015 103 0 103 0 1.50279429999999992 119.817001 0.760144013938258034 0.944084127926970051 31 false 0.20859591999999999 1.3074799271887001 0.0880184329629978973 -0.0235865469999999994 12 8 0.996206700000000001 0 12 false 101 412.692106397671012 1.6094084519279801 256.424988 19.1493000000000002 6 140.358149294621995 39.697497843358299 3.5356926999999998 19.9832940000000008 7 470.294152647524015 13.0343013432127002 36.0812719999999985 18.080995999999999 1.47968009999999994 0 1.90229800000000004 0.833993899999999955 1.06830409999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.288292671086992 -61.8402848914681016 23.5771491851961983 -12.0496090767494994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526587244612480 2505526587244612480 756275063 2015.5 26.2598637007485003 0.461577909857692981 -2.08845563495491993 0.284983152601208989 1.33239236552922002 0.469870627551849995 2.8356577999999999 -6.18733611703668007 1.26949464321145999 -8.54173853829601981 0.509950677286617027 0.0853274700000000025 -0.406745699999999988 -0.299078899999999981 0.152506699999999995 -0.159849500000000005 0.210804720000000001 0.219730840000000011 0.0809075159999999988 0.045122530000000001 -0.061240830000000003 114 0 114 0 1.31548810000000005 128.852997 0.568776904616622003 0.452260591763331998 31 false 0.184029710000000013 1.35845455703943996 0.0891835029596396017 -0.0511640900000000023 13 8 1.12578259999999997 0 13 false 113 355.571173861087004 1.6293367812286299 218.231003 19.3110490000000006 12 120.305155385950002 10.4818336791219995 11.4774910000000006 20.1506770000000017 11 369.764110766399995 11.5206947253362006 32.095641999999998 18.3421079999999996 1.37825930000000008 0 1.80856900000000009 0.839628200000000047 0.968940730000000028 \N \N 0 \N \N \N NOT_AVAILABLE 152.342846908176995 -61.860217326054503 23.5800145861753983 -12.0820415819440008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526655964091136 2505526655964091136 942304179 2015.5 26.2617724437947011 0.100613763679882007 -2.08279361896082005 0.0698207466184155023 0.480814148134977026 0.104864977445334004 4.58507819999999988 12.2086171471987992 0.253062646017298998 -4.55262397618191983 0.136430508767090009 0.0553527619999999998 -0.144127000000000005 -0.18378623999999999 0.168113900000000011 -0.137052089999999988 0.22794157000000001 0.0482389219999999966 -0.0214920640000000017 -0.00478502269999999969 0.0819103500000000068 114 0 114 0 0.812186999999999992 120.722 0.116560219631423004 0.289553683395067984 31 false 3.3467039999999999 1.58127676386124993 0.0231990931913455996 -0.0511968019999999996 13 8 0.229330599999999996 0 13 false 112 3372.69428927689978 3.67833909932384984 916.906982 16.8684229999999999 12 1743.5722695960701 12.4405133541255992 140.152760000000001 17.2477869999999989 13 2361.65166752498999 9.27715900079481948 254.566249999999997 16.3288800000000016 1.2171942 0 0.918907169999999995 0.379363999999999979 0.539543149999999971 \N \N 0 \N \N \N NOT_AVAILABLE 152.341234043073001 -61.8542912671084011 23.5839431029496005 -12.0774656057878005 100001 5439.5 5274.74023 5457.66992 0.0670000017 0.00800000038 0.183799997 0.0329999998 0.00789999962 0.0886999965 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527033921217920 2505527033921217920 1010811738 2015.5 26.271261892860899 0.564113943507281945 -2.0669961554987899 0.370320539718998976 0.105527771625123001 0.60286354160018496 0.175044210000000006 3.08892324464110013 1.58410480880240989 -1.38097647958578995 0.651148638904849975 0.139308299999999996 -0.418085780000000018 -0.186631899999999989 0.126551019999999986 -0.150824559999999996 0.190927540000000007 0.276425960000000026 -0.0150666749999999999 0.0897086299999999975 -0.0734987500000000016 114 0 113 1 -0.738430260000000005 96.8853989 0 0 31 false 0.114523920000000001 1.62315400729935 0.114383906054281004 -0.0456075780000000028 13 8 1.39549429999999997 0 13 false 113 247.904542013843013 2.28320995035092 108.577003 19.702653999999999 11 171.253999418762987 9.17162006186683954 18.6721649999999997 19.7672859999999986 10 146.668633651844004 7.55736897779407979 19.4073680000000017 19.3460770000000011 1.28243970000000007 0 0.421209339999999988 0.0646324159999999981 0.356576920000000019 \N \N 0 \N \N \N NOT_AVAILABLE 152.344666187792001 -61.8359372829213996 23.5988653558442003 -12.0662158379711997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527244375072256 2505527244375072256 1078884412 2015.5 26.2631445707874995 4.14071747623214037 -2.05873973907009011 3.15952713187496981 \N \N \N \N \N \N \N 0.208000669999999999 \N \N \N \N \N \N \N \N \N 65 0 65 0 115.961479999999995 31340.3008 18.2657104235942001 809.406096990348033 3 false 0.00284980239999999994 \N \N 0.0654708700000000005 11 7 8.57256199999999957 0 12 true 101 305.247934959307997 4.41433791638182971 69.1492004 19.4767340000000004 9 415.553468190033016 10.4478057679035992 39.7742349999999973 18.8048210000000005 10 941.350080203991979 12.1617870398423005 77.4022800000000046 17.3275410000000001 4.44525050000000022 0 1.47727969999999997 -0.671913149999999959 2.14919279999999979 \N \N 0 \N \N \N NOT_AVAILABLE 152.321562894651009 -61.8320583255420999 23.5942212304575989 -12.0555693493391995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527072576380544 2505527072576380544 1282063026 2015.5 26.2827982737002017 0.0634353878475182043 -2.06673536648649003 0.0464713053156719028 0.459064206414927012 0.071999587691526104 6.37592840000000027 2.71887837452511016 0.139818554178900989 -6.58512665020811028 0.100179382329962999 0.0712108300000000027 0.260246040000000012 0.035267409999999999 0.106725680000000003 -0.22654015999999999 0.119885854 -0.0756132300000000035 -0.149355490000000007 -0.0099367450000000003 0.297210450000000015 104 0 104 0 6.24618770000000012 214.350006 0.270454533666402985 7.66070792997911987 31 true 9.97551299999999941 1.5967048559607 0.0184066651152727002 -0.0431287549999999978 12 9 0.134355009999999997 0 12 false 103 30791.9074742906014 13.9189425999270995 2212.22998 14.4672750000000008 12 16636.5627316991995 52.6932382302478999 315.724820000000022 14.7987289999999998 12 20850.9563623085996 68.6080028880492989 303.914339999999982 13.964105 1.21744720000000006 0 0.834624299999999986 0.33145427999999999 0.503170000000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.366386591674001 -61.8306588645190018 23.6099399037219015 -12.0701779761895995 100001 5753 5374.12988 5850.45996 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526999561480448 2505526999561480448 372312810 2015.5 26.2896390905952018 0.128503368214579999 -2.06396171423797981 0.0969598695756588025 1.25975837760834009 0.145197896529950993 8.67614700000000028 9.66641074457444027 0.338635828192555 -1.52570281767114002 0.180208377021336991 0.181600939999999988 -0.094742640000000003 0.0239846950000000003 0.109411220000000003 -0.205298420000000009 0.16692398 0.183537320000000004 -0.158990670000000001 0.0738509700000000019 0.101920609999999995 123 0 123 0 0.577911260000000038 126.403 0 0 31 false 1.63141059999999993 1.42132283264338 0.0312820032832488992 -0.00769087349999999972 14 9 0.302445620000000026 0 14 false 123 1724.32969472539003 2.50023181278166007 689.66803 17.5968149999999994 11 505.862525560776021 14.2760996356324998 35.4342230000000029 18.5913070000000005 13 1785.26963139531995 13.7845795126486994 129.512079999999997 16.6326600000000013 1.32870890000000008 0 1.95864679999999991 0.994491600000000031 0.96415519999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.376834283803987 -61.8251726259086993 23.6174837501569996 -12.0700886381907004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527106936118656 2505527106936118656 201966059 2015.5 26.2944803621837018 0.130837291597213995 -2.05916623337818017 0.0909880388168048948 2.11799699636818017 0.139737337585685989 15.1569870000000009 -0.508500878727372041 0.390818937734529026 -1.35172462213486999 0.186817153700619992 0.113352603999999996 -0.189497799999999994 -0.087122229999999995 0.102012580000000005 -0.166468289999999991 0.152012229999999998 0.154591339999999994 -0.151938590000000012 0.015657945999999999 0.0203889680000000004 97 0 94 3 2.38118799999999986 123.865997 0.388332635728366016 2.87875082986662001 31 true 2.2975222999999998 1.28874723310314998 0.0307388834456325984 -0.0650694700000000043 11 8 0.348362999999999978 0 11 false 94 3129.17491868520983 4.60482677082737002 679.541992 16.9497910000000012 11 784.435463021898045 13.1851533990249994 59.4938429999999983 18.1149960000000014 11 3585.35595147257982 14.0003843604200995 256.089800000000025 15.8755889999999997 1.39646760000000003 0 2.23940660000000014 1.16520500000000005 1.07420160000000009 \N \N 0 \N \N \N NOT_AVAILABLE 152.381599546832007 -61.8187429501054027 23.6238788833633997 -12.0673878243015995 100001 3516 3443 3936.15991 1.55429995 1.20790005 1.98599994 0.7773 0.599900007 0.985099971 200111 0.684182399999999968 0.545915249999999963 0.713502650000000016 0.0644516400000000045 0.0558155779999999976 0.0730877100000000002 +1635721458409799680 Gaia DR2 2505526144863463680 2505526144863463680 852989309 2015.5 26.3029132720010992 0.0317876413320564016 -2.10222404219297987 0.0242983157330687004 1.39002432665307007 0.0345339884081813028 40.2509080000000026 8.0022582028238407 0.0777949802155846054 -10.1685120235414992 0.0604179451656225025 0.0210218130000000003 -0.0402131800000000011 -0.131660880000000008 0.138833970000000001 -0.141886280000000004 0.104344709999999993 -0.278432899999999983 -0.0988812740000000051 -0.104820129999999997 0.258913669999999985 114 0 114 0 -2.6143740000000002 74.259201 0 0 31 true 59.4190940000000012 1.58535062967907003 0.00844033033428157921 -0.0634054839999999981 13 8 0.0834468899999999958 0 13 false 114 46660.3947259252018 15.4754249293536006 3015.12988 14.0159950000000002 12 24876.8724624636016 48.6991495197903035 510.827670000000012 14.3618980000000001 13 31537.9904921796988 35.5526235987575987 887.079160000000002 13.5148349999999997 1.20905240000000003 0 0.847063059999999979 0.345903400000000028 0.501159669999999946 \N \N 0 \N \N \N NOT_AVAILABLE 152.437627027605998 -61.853752653285099 23.6158447621723013 -12.1105535413355998 100001 5793.5 5772.33008 5801.75 0.065700002 0.0130000003 0.214300007 0.0353000015 0.00700000022 0.100100003 200111 0.968866939999999954 0.966113499999999958 0.975985470000000022 0.952767800000000054 0.897157129999999969 1.00837850000000007 +1635721458409799680 Gaia DR2 2505526140568009600 2505526140568009600 805324815 2015.5 26.3104542678301989 0.399990860510218982 -2.09738073966014005 0.262110058471625995 1.96850917943449999 0.424148757160350998 4.64108199999999993 21.6498545693069993 1.05591326771255001 -16.5786595182010998 0.510601779053599047 0.0601838099999999973 -0.269904319999999975 -0.206236019999999992 0.139454720000000004 -0.17073292000000001 0.199421020000000004 0.0845415439999999963 -0.0182795109999999983 0.0145622809999999998 0.010083814 114 0 112 2 4.9477487 195.927002 1.12661435026493995 3.33912048987108978 31 false 0.207667779999999996 1.14778817585092008 0.0866535284306158005 -0.0615850839999999983 13 8 0.932125569999999959 0 13 false 112 500.298060504804027 2.02713927036803998 246.800003 18.9402940000000015 11 112.314462918629999 12.7378437501596995 8.81738499999999981 20.2253000000000007 12 671.311045389433048 8.15443710474492001 82.3246299999999991 17.6946100000000008 1.56631729999999991 0 2.53068919999999986 1.28500560000000008 1.24568370000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.447477696921993 -61.8460943402858021 23.6248278973666999 -12.1087921409244998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526174927750272 2505526174927750272 1000434556 2015.5 26.3176447132273985 0.203499194833792002 -2.09261065787765999 0.152755948444610989 0.607180935798257049 0.23637412690260301 2.56872839999999991 1.98977707265897008 0.566753148867954026 -5.06768628422257983 0.310851012892339018 0.189079780000000003 -0.197530840000000013 0.0435931999999999986 0.0387419050000000001 -0.272438020000000003 0.116486645999999999 0.0796014439999999934 -0.198028199999999988 0.0771368800000000049 0.104510829999999999 123 0 123 0 0.588308449999999983 126.570999 0 0 31 false 0.615098299999999987 1.41111061467834009 0.0510247483784396008 -0.0202790309999999994 14 9 0.501863900000000029 0 14 false 122 809.066577001500946 2.17366022091639 372.213989 18.4184060000000009 11 300.716313040666989 12.7581226952825002 23.5705780000000011 19.1559959999999982 13 765.487072304946992 12.5051293039417004 61.2138500000000008 17.5520740000000011 1.31781909999999991 0 1.60392190000000001 0.737590799999999991 0.866331100000000021 \N \N 0 \N \N \N NOT_AVAILABLE 152.456724702807008 -61.8386548753675029 23.6334500222244017 -12.1069709357023001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505525968769317120 2505525968769317120 1590607483 2015.5 26.3268682495538009 0.864615624273169958 -2.09845574725940986 0.786270168446041029 1.50224356700957995 0.986385383545630989 1.5229782999999999 1.62839530140373001 2.73108632616566993 -1.05184827887462995 2.40990619197649991 0.367667560000000004 -0.370638999999999996 0.050497489999999999 -0.272788599999999992 -0.22727485 -0.156988929999999999 -0.413684930000000006 -0.253979799999999978 0.220533759999999995 0.265483560000000007 87 0 86 1 1.01344600000000007 93.8584976 1.78940286805063997 1.1238987211787701 31 false 0.0455770529999999993 2.05816900448898998 0.247412078516199008 0.0123361860000000007 10 8 2.5780470000000002 0 10 false 86 145.325079758657012 1.4488220963040499 100.306 20.2825150000000001 8 77.2328659865710989 10.4020241045685005 7.42479230000000001 20.6318839999999994 8 91.5638010190384932 9.68936360222114956 9.44992899999999914 19.8576100000000011 1.16151099999999996 0 0.774272900000000042 0.349369050000000014 0.424903870000000017 \N \N 0 \N \N \N NOT_AVAILABLE 152.479709766729997 -61.8398597613420975 23.6400481811073 -12.1157746703278004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526076144003712 2505526076144003712 318987865 2015.5 26.3247263347568001 5.03654186829369976 -2.08916728419973996 3.01517347384266987 \N \N \N \N \N \N \N -0.19204736 \N \N \N \N \N \N \N \N \N 83 0 82 1 18.3413930000000001 599.91803 19.9439310997790997 31.1200433878364997 3 false 0.00200507070000000009 \N \N -0.136453359999999996 10 8 9.46465000000000067 0 11 false 87 98.4640498545584961 2.52775250943671992 38.9532013 20.705172000000001 7 72.7050130488464958 12.4335224643378002 5.84749940000000024 20.6974769999999992 6 197.787120865065987 8.94509735613621082 22.1112299999999991 19.0214250000000007 2.74711559999999988 0 1.67605209999999993 -0.00769424440000000039 1.68374629999999992 \N \N 0 \N \N \N NOT_AVAILABLE 152.466994168126007 -61.8324545668590986 23.6414737262037988 -12.1063452219456007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526071848535808 2505526071848535808 100818535 2015.5 26.3342754016523983 0.108928924839529997 -2.09179390192299985 0.0862853855251112939 2.32831799751695012 0.13471389957159699 17.2834280000000007 41.8266665038987995 0.293236375009129024 -27.4677587924694002 0.178885977945988012 0.215368959999999998 -0.230504569999999992 0.139338719999999999 -0.136348500000000011 -0.294112529999999983 -0.027829920000000001 -0.0725858100000000006 -0.199163819999999991 0.305505780000000005 0.0239763100000000007 96 0 95 1 1.34212039999999999 108.476997 0.281897146340207017 1.78240591570286 31 false 2.93249199999999988 1.34575712824814997 0.026120002525909701 0.0373210299999999981 11 8 0.262423870000000004 0 11 false 95 3577.69149432679978 5.01585153143444007 713.276978 16.8043599999999991 9 1008.64943319526003 10.9702678570924999 91.9439239999999955 17.8420370000000013 10 3866.86722075995021 16.6988619257930999 231.564709999999991 15.7935219999999994 1.36275499999999994 0 2.04851530000000004 1.03767779999999998 1.01083759999999989 \N \N 0 \N \N \N NOT_AVAILABLE 152.487598867179003 -61.8306236019365016 23.6495821597689009 -12.1122705116435991 100001 3739.25 3651.25 4142.1499 0.00899999961 0.00200000009 0.124300003 0.00400000019 0.000899999985 0.0507999994 200111 0.542473500000000053 0.442075969999999985 0.568937240000000011 0.0518310140000000016 0.0457336829999999972 0.0579283459999999986 +1635721458409799680 Gaia DR2 2505526278006970368 2505526278006970368 174924924 2015.5 26.3170554051432006 2.28978503160465019 -2.0774448918736601 2.02584477945991992 \N \N \N \N \N \N \N 0.233078000000000007 \N \N \N \N \N \N \N \N \N 89 0 89 0 20.9080100000000009 748.028015 11.4615611565908004 34.5614172271756033 3 false 0.00598854759999999965 \N \N 0.0181330650000000003 11 8 6.85251199999999994 0 11 false 94 149.751320500179986 1.75440068344515998 85.3574982 20.2499390000000012 9 139.462853505487004 8.39101417891125045 16.6204999999999998 19.9902419999999985 9 368.521810246561984 23.3796063778986998 15.7625320000000002 18.3457620000000006 3.39218829999999993 0 1.64447980000000005 -0.259696959999999977 1.90417670000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.441507228229995 -61.8252853589771973 23.6385450313043997 -12.0926346610494004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527102640499712 2505527102640499712 957928053 2015.5 26.306553107420001 0.0419591372267007004 -2.06183957384111016 0.0292286675700664002 0.622319023619727019 0.0423884069814884981 14.6813500000000001 -0.379806289530523977 0.111364551879134993 -12.0335569247531993 0.0749707374095527068 0.0252913009999999987 -0.110898670000000005 -0.316097320000000015 0.0940196199999999982 -0.138943840000000013 0.0925625800000000054 -0.282104430000000017 0.0129065010000000008 -0.094822080000000003 0.232324699999999995 106 0 106 0 1.18352100000000005 118.030998 0 0 31 true 31.3206060000000015 1.61002329687211998 0.0101983799906664001 -0.0592071970000000031 12 8 0.11325433 0 12 false 104 25257.2472181295998 13.5622639901501003 1862.31995 14.6824010000000005 11 13835.9052695908995 35.9845455978850026 384.495760000000018 14.9988689999999991 11 16729.9486814000993 86.9228839136471976 192.468860000000006 14.2031829999999992 1.21018150000000002 0 0.795685769999999959 0.316468240000000012 0.479217530000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.407043777537012 -61.8158614263702972 23.6343701219626006 -12.0742767120789001 100001 5835 5776.56006 5929.81006 0.814999998 0.626900017 0.91930002 0.41870001 0.312000006 0.483399987 200111 1.56775869999999995 1.51802529999999991 1.59963889999999997 2.56694500000000003 2.17236759999999984 2.96152259999999989 +1635721458409799680 Gaia DR2 2505526385381683712 2505526385381683712 44202875 2015.5 26.3245149612557015 4.86535802863363021 -2.06208566639993007 3.85008587135811009 \N \N \N \N \N \N \N 0.258505969999999974 \N \N \N \N \N \N \N \N \N 53 0 53 0 23.6476860000000002 847.929993 18.1434147747288996 71.149341733928793 3 false 0.00265454450000000017 \N \N -0.0266529139999999998 7 6 25.8407899999999984 0 8 false 59 134.756515643992003 2.59848293017126997 51.8596992 20.36449 5 174.984327219455992 21.5023687079254984 8.1379090000000005 19.7438900000000004 5 392.711690064452 30.4438653441460012 12.8995339999999992 18.2767349999999986 4.21275400000000033 0 1.46715550000000006 -0.620599750000000006 2.08775520000000014 \N \N 0 \N \N \N NOT_AVAILABLE 152.441425883152988 -61.8082126695178999 23.6513711417454999 -12.0810509597496996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479102086184832 2505479102086184832 1689789701 2015.5 26.3615160889502995 0.699163028415400012 -2.09547651628296006 0.613548561423600036 1.86072387169908993 0.784543732245351011 2.37172749999999999 17.0758221853063006 2.13170381286340005 -8.32999805110639002 1.77586741177441998 0.326592500000000008 -0.328846450000000012 -0.062420736999999997 -0.21819427999999999 -0.27753344000000002 -0.148399140000000013 -0.415815029999999974 -0.127265500000000004 0.201816529999999994 0.30468004999999998 103 0 96 7 -0.392610340000000002 85.1660004 1.03482912355496004 0.990878541654133027 31 false 0.0621937899999999988 1.21832254745212998 0.181464112162917995 0.0239720330000000002 12 9 2.0078564000000001 0 12 false 96 174.701536860538994 1.49736584697219 116.672997 20.0826239999999991 8 64.297358038980903 9.28789508052236989 6.92270499999999966 20.8309059999999988 11 201.479893485088013 17.1237021194175014 11.7661409999999993 19.001339999999999 1.52132179999999995 0 1.82956500000000011 0.748281500000000044 1.0812835999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.542813283186007 -61.8219622546667011 23.6741355990399001 -12.1256244196818006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526037488925568 2505526037488925568 1642074728 2015.5 26.3617523029742991 1.37544302238207994 -2.08681290237960004 1.11462751113416991 \N \N \N \N \N \N \N 0.336577059999999983 \N \N \N \N \N \N \N \N \N 86 0 86 0 4.0736226999999996 143.718994 3.16171343197911003 2.0426398423724299 3 false 0.0215936270000000007 \N \N -0.0293091010000000006 10 7 4.15863400000000016 0 10 false 84 99.1462600420319973 1.81879294819133008 54.5121002 20.6976760000000013 6 85.5071252730144948 6.22252811867468036 13.7415409999999998 20.5213830000000002 6 70.6872075038131982 2.67842499714247007 26.3913329999999995 20.1385690000000004 1.5753931000000001 0 0.382814399999999999 -0.176292420000000005 0.559106800000000015 \N \N 0 \N \N \N NOT_AVAILABLE 152.53519072424001 -61.814078447782201 23.6775906769012998 -12.1176430193855005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505479106381637632 2505479106381637632 1177542049 2015.5 26.3676750116602001 0.168929585873124011 -2.09981705629034021 0.127814081097969989 4.3883394922890604 0.192977420247190001 22.7401710000000001 69.8006049989633937 0.45729397452303 -23.1995890282231016 0.251116189268964007 0.168914850000000005 -0.130842029999999998 0.0558183530000000011 0.0470217760000000012 -0.217090029999999989 0.107732270000000005 0.112471803999999995 -0.1840474 0.110097564999999994 0.0725599600000000067 117 0 116 1 1.73200299999999996 138.085007 0.361945151670376997 0.971858571290673989 31 false 0.933111699999999988 1.18999575949157999 0.0422134565655264971 -0.0067528435000000003 13 9 0.405469829999999976 0 13 false 115 1227.79834276673 2.49796041104383004 491.519989 17.9655479999999983 12 183.526376645377013 8.66318704339903967 21.1846260000000015 19.6921420000000005 12 1618.5886693258401 10.8406781922770996 149.306960000000004 16.7390790000000003 1.4677614000000001 0 2.95306399999999991 1.72659490000000004 1.22646900000000003 \N \N 0 \N \N \N NOT_AVAILABLE 152.558562903285008 -61.8231506910877968 23.6783792970287017 -12.1319099465269993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505526312366710272 2505526312366710272 477978955 2015.5 26.3424526367112009 0.643928139520035026 -2.07274107624763992 0.456729317929237988 0.245376323162806997 0.762688183962076049 0.3217256 1.28441080342350999 1.70851769845391011 -38.3897784851565973 0.868592806544333018 0.128892590000000001 -0.162300870000000014 -0.13316710000000001 -0.0548999760000000031 -0.464726699999999993 -0.0387844700000000014 -0.0681710900000000036 0.0629872999999999961 0.243404330000000002 0.113984100000000005 81 0 81 0 1.56347389999999997 96.1692963 1.13387134734100004 1.14442872357930003 31 false 0.107899410000000001 1.33620855463789989 0.139991246980348011 -0.0657718550000000041 10 7 1.50401249999999997 0 10 false 85 262.896520111821985 1.65589067911431997 158.764008 19.6389050000000012 9 99.9874498252036972 4.07433698322390025 24.5407900000000012 20.3515240000000013 9 296.303194217444002 14.9630150977595004 19.8023719999999983 18.5825789999999991 1.5074015999999999 0 1.76894569999999995 0.712619800000000025 1.05632590000000004 \N \N 0 \N \N \N NOT_AVAILABLE 152.485421299941009 -61.809917767136902 23.6644689871523006 -12.0975084977864995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505620148812000640 2505620148812000640 1206683643 2015.5 26.3453819184884992 0.114070901561194996 -2.06685015220385004 0.0927309179466673933 2.19941812585804986 0.128126562024574009 17.1659809999999986 4.41939632499989976 0.306042555322037002 2.24710104052206994 0.215073732767396997 0.361417649999999979 -0.367180469999999981 -0.46723574000000001 -0.232024609999999992 -0.446656319999999996 -0.257924700000000007 -0.503382200000000002 0.358360559999999995 0.336131200000000019 0.474092100000000016 97 97 93 4 16.395626 531.72699 0.245026043392888998 13.7054816638113994 31 true 14.7711609999999993 1.6627079336958499 0.0252292847442139 0.0376677300000000034 11 7 0.175299299999999991 0 11 false 88 717974.503808649024 2648.84400117759014 271.052002 11.0480929999999997 9 528380.869648916996 4520.35288456440958 116.889300000000006 11.0440210000000008 10 604516.536223422037 5557.21084381217042 108.780559999999994 10.3083989999999996 1.57790760000000008 0 0.73562145000000001 -0.00407218930000000003 0.739693640000000041 \N \N 0 \N \N \N NOT_AVAILABLE 152.485510568904999 -61.8033397198452974 23.6694531346492987 -12.0930901873223 102001 5286.8999 5000 7050 \N \N \N \N \N \N 200111 2.95605830000000003 1.66240539999999992 3.30502820000000019 6.15070769999999989 5.73045540000000031 6.57096000000000036 +1635721458409799680 Gaia DR2 2505620153107614336 2505620153107614336 1223190628 2015.5 26.3473522324024003 1.10007661041242 -2.05570718158238019 0.92262276217368 -0.645094747169730032 1.21291413054420993 -0.531855199999999972 14.4321829952986995 3.67083199126619997 -28.5187574900424003 3.07540672869218001 0.410417529999999975 -0.49475363 -0.088925710000000005 -0.296951830000000028 -0.363570959999999999 -0.163461070000000014 -0.442508999999999986 -0.129183930000000002 0.261126399999999981 0.324818759999999984 79 0 79 0 1.05925509999999989 86.9047012 0 0 31 false 0.0367939430000000026 1.45273940244933009 0.295112030797641978 -0.0108618559999999996 10 7 3.48425999999999991 0 10 false 81 108.415015947469996 1.3387274315917399 80.9835968 20.6006409999999995 6 69.9045767090365047 16.0955620144178013 4.34309630000000002 20.7401240000000016 6 102.232342002718994 18.7686389582556004 5.44697669999999956 19.7379500000000014 1.58775899999999992 0 1.00217439999999991 0.139482500000000009 0.862691899999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.478897529808989 -61.7924642441768981 23.6754824538907016 -12.0834317970988003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527102643450240 2505527102643450240 182803585 2015.5 26.3017140407254004 1.01588601641371001 -2.05556951503079022 0.731209926183590042 1.46421095350041996 1.16773089099466998 1.25389419999999996 -6.52440097510357031 3.14728543405841998 -6.50158695876995019 1.49508973131843992 0.260230450000000002 -0.389677349999999978 -0.0136125929999999992 -0.0275658400000000012 -0.298732370000000025 0.0639079199999999931 0.103021379999999996 -0.170856370000000007 0.156273999999999996 0.0104107399999999999 110 0 110 0 2.28459719999999988 140.895996 1.87028962123472997 0.940953815864456034 31 false 0.0305017960000000012 0.898235072777480048 0.249050899600995995 -0.0563701900000000006 13 8 2.76079579999999991 0 13 false 111 114.829095473867994 1.16671309761812991 98.4209976 20.5382369999999987 9 41.2900645710321967 8.93926895534083954 4.61895300000000031 21.3117750000000008 10 150.322679133688013 15.2346747899352 9.86714100000000016 19.3193589999999986 1.66867769999999993 0 1.99241639999999998 0.773538599999999965 1.21887780000000001 \N \N 0 \N \N \N NOT_AVAILABLE 152.392024626078012 -61.8123437008623 23.6321034297459001 -12.0666749513540008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505620084388048768 2505620084388048768 45268842 2015.5 26.3699250449406009 0.453813483683496999 -2.05012228555759979 0.32041843795139302 0.336527347510036989 0.506492188011860023 0.664427499999999949 -1.24105142861164008 1.38413373101276993 -1.3539637809115499 0.628681060772181999 0.216048849999999987 -0.352158499999999985 -0.0627950099999999983 0.0172815290000000003 -0.26195750000000001 0.0830880499999999966 0.160061520000000013 -0.125657540000000012 0.140985470000000002 -0.0229673849999999999 108 0 108 0 -1.38438419999999995 83.7983017 0 0 31 false 0.158184380000000013 1.35487979450159002 0.109646850463398005 -0.0541861100000000026 12 8 1.21504750000000006 0 12 false 105 293.784199277161008 1.57198103686948998 186.888 19.5182949999999984 9 136.706521714345996 7.65955089121693966 17.8478500000000011 20.0119149999999983 10 306.495117262834981 13.0768455540129001 23.4380020000000009 18.5458600000000011 1.50859600000000005 0 1.46605490000000005 0.49361991999999999 0.972435000000000049 \N \N 0 \N \N \N NOT_AVAILABLE 152.516567307026008 -61.7775348031187974 23.6990467655351011 -12.0864536072097994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505478827208267776 2505478827208267776 904526960 2015.5 26.3892250886730011 0.168931977458956994 -2.12052510295812002 0.127281178178557997 0.323138079921712007 0.193873895667167007 1.66674359999999999 1.60591918901862996 0.443142831061234976 -7.63641193632835957 0.245296056718746991 0.160544249999999999 -0.0937951060000000031 0.0444406050000000011 0.0692571399999999948 -0.26102439999999999 0.132419349999999991 0.113689319999999996 -0.16553989999999999 0.0904406999999999989 0.106096410000000002 122 0 121 1 2.7612603 162.509995 0.340294355301694995 0.834425289140333981 31 false 0.904240099999999991 1.50235566009183996 0.0386675977517988018 -0.0257213150000000015 14 9 0.393438100000000013 0 14 false 116 1266.87083367368996 2.67692292956094002 473.256012 17.9315360000000013 13 565.401518050724007 10.8278009318675998 52.2175749999999965 18.4704949999999997 13 1019.02846282874998 16.8839398503631983 60.3548970000000011 17.2414549999999984 1.25066419999999989 0 1.22904009999999997 0.538959500000000036 0.690080640000000023 \N \N 0 \N \N \N NOT_AVAILABLE 152.618837487075012 -61.8322497023590003 23.6911708712530995 -12.1590432836093001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505572869812008448 2505572869812008448 756231806 2015.5 26.3906667092104001 7.47949352398306999 -2.10418649311736994 4.22658468693598 \N \N \N \N \N \N \N -0.721619840000000012 \N \N \N \N \N \N \N \N \N 41 0 41 0 1.38720390000000005 48.2849998 0 0 3 false 0.0307451340000000004 \N \N -0.0327579860000000028 5 4 11823.2639999999992 0 5 false 41 81.1781638043637059 1.32246449607086003 61.3839989 20.9147679999999987 3 78.7507242765332052 23.7540294056661985 3.31525749999999997 20.6107520000000015 4 115.565734493508998 3.71954516364520016 31.0698569999999989 19.6048469999999995 2.39370349999999998 1 1.00590519999999994 -0.304016100000000011 1.30992130000000007 \N \N 0 \N \N \N NOT_AVAILABLE 152.606316237686997 -61.8169503017560018 23.6986349308503002 -12.1443537611304997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505572904171748224 2505572904171748224 63909792 2015.5 26.3981346937562016 0.239983142688967005 -2.08584199646122981 0.165213614738857012 2.6658557738502302 0.265915081339682002 10.0252140000000001 1.0234077288121799 0.671641983558518008 -8.71773524319591075 0.291038086174550015 0.161878629999999996 -0.189361169999999995 -0.191106870000000012 0.123485499999999998 -0.110125236000000001 0.14239404 0.232085800000000009 -0.00669527100000000003 0.127587040000000013 -0.0194742720000000008 108 0 107 1 2.63508630000000021 143.615997 0.433879379771717977 0.893483525272061985 31 false 0.590381860000000036 1.21174156122795007 0.0506409118104583014 -0.0374167099999999989 13 8 0.59326696000000001 0 13 false 100 895.237831010231957 2.51412024450746019 356.084015 18.3085200000000015 12 214.50056418570199 4.7549235952726896 45.1112499999999983 19.5228180000000009 11 1051.81441512894003 10.1334552215892 103.796229999999994 17.2070709999999991 1.4145011999999999 0 2.31574629999999981 1.21429819999999999 1.10144799999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.603375708843004 -61.7971946225547981 23.7125821702687993 -12.1299909417879004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505620050028310016 2505620050028310016 1255957448 2015.5 26.3933362736391004 0.163032163938010011 -2.05010611855420999 0.108002482663514005 1.10529949343632006 0.17040769664958999 6.48620649999999976 3.88495842419834014 0.447393968388145991 -26.0952538069088007 0.198835110244988011 0.0909315900000000066 -0.165209440000000013 -0.204175789999999996 0.124894039999999998 -0.194602760000000014 0.167491059999999997 0.181038589999999999 -0.00717888399999999996 0.0740872850000000027 -0.000341441299999999993 116 0 116 0 2.34958 149.005005 0.406722411208410017 1.68627517904417989 31 false 1.26220500000000002 1.48445284131491007 0.033607509276426098 -0.0739653259999999979 13 8 0.397966299999999995 0 13 false 115 1752.91140272717007 2.75082213526414021 637.231995 17.5789660000000012 12 612.683273227900031 11.0350757385677998 55.5214399999999983 18.3832990000000009 11 1710.97508877203995 30.1105137843013004 56.8231770000000012 16.6788099999999986 1.32559939999999998 0 1.70448880000000003 0.804332730000000051 0.900155999999999956 \N \N 0 \N \N \N NOT_AVAILABLE 152.560973263444993 -61.7672264867522003 23.7213343200624003 -12.0949649464909008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533119889972480 2505533119889972480 1509400115 2015.5 25.7942333139890998 0.755014614491252956 -2.18107161734286015 0.666128656567908983 0.62792366780347797 0.908838849279137051 0.690907599999999955 24.2324507117665995 1.8314104063505301 -6.57912883546801996 1.91098338044407989 0.142835380000000012 0.280443500000000012 -0.0490638799999999972 0.0457212899999999978 -0.202328000000000008 0.0766581739999999956 -0.112788070000000004 -0.202165960000000006 -0.201384339999999995 0.500804999999999945 148 0 147 1 3.48832129999999996 208.408997 2.7609091816992799 26.0349377561788984 31 false 0.0316976640000000004 1.42972839238746996 0.228153733133006992 0.079145454000000004 17 9 2.0154662000000001 0 17 false 146 152.025171188017993 1.42064222667476003 107.012001 20.2335780000000014 12 50.3022985608997004 7.60692421174339994 6.6126990000000001 21.0974180000000011 14 210.994469451034007 8.10897319340459966 26.019874999999999 18.9512420000000006 1.71877300000000011 0 2.14617540000000018 0.8638401 1.28233529999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.534032663623009 -62.1447052723675029 23.1025445020372011 -11.9981918029076002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533184314495360 2505533184314495360 1294990403 2015.5 25.8308443188070989 1.69422304978895011 -2.16765629900462997 1.89373351058855999 \N \N \N \N \N \N \N 0.144036200000000003 \N \N \N \N \N \N \N \N \N 74 0 73 1 -0.24757499999999999 64.5076981 0 0 3 false 0.0111205885000000004 \N \N 0.0477361599999999997 10 8 5.14469770000000004 0 10 false 77 69.7202197876148944 2.23551939793923982 31.1875 21.0799699999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.59256372789099 -62.1169599064580993 23.1423707412992989 -11.9991008971332 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532432695544960 2505532432695544960 1112406689 2015.5 25.8368810331763008 0.121806752888125994 -2.17303236839343983 0.101899991458151998 0.447086449351030979 0.14290973904245699 3.12845329999999988 12.6571965850945993 0.272115043398905021 -3.73190694016135982 0.211484396962521998 0.123183349999999997 0.285634300000000008 -0.0153316649999999995 0.13215231999999999 -0.272575000000000012 0.224290970000000006 0.213284100000000004 -0.142044229999999994 -0.0963656160000000012 0.327770080000000019 170 0 169 1 2.03778360000000003 202.973999 0.312381382446601019 1.07966791702705001 31 false 1.17018690000000003 1.51358840831914998 0.0343758763367872019 0.0571654029999999966 19 10 0.258698199999999989 0 19 false 167 1549.31894691668003 3.01347840073667994 514.130005 17.7130130000000001 15 731.033667831214984 14.1684918122360006 51.5957300000000032 18.1915450000000014 17 1187.49603724673989 8.17573534432515991 145.246379999999988 17.0753400000000006 1.23830520000000011 0 1.11620520000000001 0.47853279999999998 0.637672400000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.609138223906996 -62.1192430293626998 23.1460982169618994 -12.0063119007515997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536860806507264 2505536860806507264 241815235 2015.5 25.7931343930746984 11.6836126544670993 -2.12035482741246994 12.4584038568725006 \N \N \N \N \N \N \N 0.982514740000000053 \N \N \N \N \N \N \N \N \N 56 0 55 1 -1.41746020000000006 36.578701 0 0 3 false 0.0103669529999999999 \N \N 0.166626469999999999 7 5 95.6598000000000042 0 7 false 58 66.5350886317686019 1.65109851407367003 40.2975006 21.1307399999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.476604427679007 -62.0902402208008013 23.124222676509099 -11.9412883334701991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533257328645632 2505533257328645632 1269920567 2015.5 25.8088250251707017 0.644575865899502998 -2.15621979147202003 0.532873291816919004 2.06034601850441978 0.756970436545419956 2.7218315999999998 2.31246420638619021 1.45261219322552004 -3.94036289642611992 0.927872241655528951 0.0628820699999999982 0.254699740000000008 0.0671589900000000017 0.121252330000000005 -0.299722849999999985 0.189037280000000002 0.422514300000000009 -0.160631219999999991 -0.035504527000000001 0.148946729999999999 170 0 170 0 4.15330099999999991 251.647995 2.25259208068773997 2.69161392440163016 31 false 0.044300616000000001 0.887660915831068986 0.159711658218900987 0.0299894250000000001 19 10 1.29404190000000008 0 19 false 170 185.552572477687988 1.43514174279124007 129.292007 20.0171990000000015 14 71.3331793946945965 20.8596471211284005 3.4196734000000002 20.718159 16 268.462228153204023 8.83426616947959964 30.3887399999999985 18.6897130000000011 1.83126220000000006 0 2.02844619999999987 0.700960160000000054 1.32748599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.539578299590005 -62.1160084779852966 23.1257173461156 -11.9804036852859994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533463487669504 2505533463487669504 854522636 2015.5 25.8015663955197994 0.0360378625493966986 -2.14390799109860009 0.0301216898294147002 1.93402458139299993 0.0418032946440404021 46.2648849999999996 12.9800438769301003 0.078513511364666097 1.22673510150657994 0.0701080941207546937 0.128935920000000009 0.356669159999999985 -0.0500069799999999995 0.0741715200000000047 -0.188070309999999991 0.144474330000000012 0.0704154740000000057 -0.120090799999999998 -0.1017652 0.352764279999999986 170 0 169 1 -1.2962958 141.022003 0 0 31 true 15.1528980000000004 1.48885585132796994 0.0111970546335421993 0.0571907399999999969 19 10 0.0865278599999999981 0 19 false 168 12566.3657855913007 6.02677339165528991 2085.09009 15.4403419999999993 17 5218.50828142717 22.4459876379002985 232.491800000000012 16.0575219999999987 19 10677.1292731448993 17.0519487015404003 626.15300000000002 14.6907835000000002 1.26493509999999998 0 1.36673829999999996 0.617179900000000004 0.749558449999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.514330375523997 -62.107963131518197 23.1234244800583006 -11.9662911730594992 100001 5034.5 4657.33008 6925.37988 0.0966999978 0.0335999988 0.254999995 0.0476999991 0.0136000002 0.127100006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533459192267008 2505533459192267008 963976918 2015.5 25.8080575916916999 0.0885160941430202935 -2.14504929798980992 0.0708869845998296999 -0.0228769654999093006 0.102598544095419006 -0.22297554 4.02507636718469985 0.201650963215816992 -4.12384074119578958 0.137488978343322993 0.130608649999999993 0.238249330000000009 0.0991991499999999998 0.148436160000000011 -0.263119339999999979 0.235563009999999989 0.277951659999999989 -0.206168669999999998 -0.0729102499999999959 0.277488740000000011 170 0 167 3 -0.688876400000000055 149.281998 0 0 31 true 2.42856259999999979 1.56880142002719003 0.0237840326873148995 0.00360075299999999994 19 10 0.189254160000000005 0 19 false 164 2508.49387124683017 2.74847238646992009 912.687012 17.1898330000000001 18 1401.29735539785997 13.0449670845595005 107.420529999999999 17.4850619999999992 18 1663.94141768041004 9.39696056375177946 177.072300000000013 16.7090740000000011 1.22194390000000008 0 0.7759876 0.295228959999999985 0.480758669999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.527913522389014 -62.1062311121805024 23.1291679236602015 -11.9697278179469002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533257329265280 2505533257329265280 612551898 2015.5 25.8219961103777997 0.43791697003739799 -2.15261033769313004 0.358313061610031014 0.791272875789961971 0.518111058889308973 1.52722629999999993 4.70026561881651972 0.977216048813282945 -1.24891305139053999 0.696419879221292004 0.13203993 0.247960939999999991 -0.0193763409999999983 0.158917100000000006 -0.289830860000000023 0.246698959999999995 0.217868940000000011 -0.134339380000000008 -0.071845874000000004 0.31609472999999999 170 0 170 0 1.68954070000000001 196.882996 0.973673784804813036 0.767589690590227969 31 false 0.0915043650000000042 1.53693560609110991 0.118159826249960007 0.0603070149999999985 19 10 0.901759740000000032 0 19 false 170 256.725445753276972 1.54456889483748006 166.212006 19.6646940000000008 17 151.770717246461004 6.5858231651482404 23.045065000000001 19.8984179999999995 18 195.744642665230003 6.85216223819530956 28.5668429999999987 19.0326960000000014 1.35364590000000007 0 0.865722659999999977 0.233724600000000005 0.631998060000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.561736171896001 -62.1071292765848 23.1395890465874992 -11.9818626648839999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533459196969216 2505533459196969216 625561801 2015.5 25.8053476768621017 1.20855149581587007 -2.13804375581359007 1.11483761959739991 -0.598095631103612968 1.50057703487201 -0.398577100000000017 2.17608436169367003 3.4947910612611599 -4.70681800296588992 3.3327988430461799 0.236199140000000002 0.00982598800000000078 -0.0385119950000000003 0.0129515299999999993 -0.206747220000000009 -0.102381070000000005 -0.388469669999999989 -0.237828000000000012 -0.169664029999999993 0.602489350000000035 102 0 102 0 0.160520699999999988 98.5775986 0 0 31 false 0.0187095999999999998 1.28978285840603002 0.358037026722044016 0.095539205000000002 12 8 3.80730820000000003 0 12 false 104 83.9034026251644036 1.46263977788995003 57.364399 20.8789179999999988 6 64.0353236915405972 14.5409795654993008 4.40378329999999973 20.8353390000000012 10 133.940042413370008 13.2031130661746001 10.1445810000000005 19.4446429999999992 2.35956300000000008 0 1.39069559999999992 -0.0435791000000000026 1.43427470000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.516296108532998 -62.1010478179261014 23.1292132961768004 -11.9622172231113009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536899461505664 2505536899461505664 683374630 2015.5 25.8061159967333005 1.54711984427197002 -2.1153352644868999 1.32869445353033 \N \N \N \N \N \N \N 0.182941240000000005 \N \N \N \N \N \N \N \N \N 122 0 121 1 43.9320499999999967 2890.8501 9.83986879137616022 217.896763550516994 3 false 0.0097895689999999997 \N \N 0.0451218629999999982 18 10 3.19174459999999982 0 18 false 159 492.355736809045993 5.11806412768023034 96.1996002 18.9576680000000017 15 717.469103394910007 14.5741968379882003 49.2287200000000027 18.2118800000000007 14 1462.04116912168001 9.40053031621670954 155.527530000000013 16.8495220000000003 4.42669800000000002 0 1.36235810000000002 -0.745788600000000024 2.10814669999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.497113894716989 -62.0801756377569021 23.1384401191203999 -11.9413657996137008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536968180982016 2505536968180982016 544349434 2015.5 25.7946502537519997 0.838777460353100968 -2.10591211725530014 0.681557309291740965 0.524993352570994998 0.984592724046196022 0.533208670000000051 9.65196575902944076 1.96626937286223002 -11.7771957785377008 1.35645617258275997 0.236801600000000001 0.1649177 0.0520788240000000027 0.201352630000000005 -0.202584600000000004 0.292556229999999973 0.193126750000000014 -0.206301420000000013 -0.129750499999999991 0.380165599999999992 142 0 139 3 0.954692899999999955 149.526001 0 0 31 false 0.0305608269999999987 1.39604733640450007 0.226594072068259988 0.0847098599999999979 16 10 1.83680080000000001 0 17 false 141 118.980464139980995 1.18518521758332995 100.389999 20.4996760000000009 12 40.5878749793646989 4.90846678934890956 8.2689509999999995 21.3303970000000014 15 186.096806953709006 5.68795585192633002 32.7176970000000011 19.0875720000000015 1.90522609999999992 0 2.24282460000000006 0.830720899999999984 1.41210370000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.466406681632009 -62.0765255833183005 23.1310671815830986 -11.9284025737823995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533940228615552 2505533940228615552 889356272 2015.5 25.8180015032666006 0.361293894791030024 -2.10884251684134005 0.215360560563175013 0.903010757158328015 0.335577595091121006 2.69091490000000011 -16.3478526209264992 0.760738618007447021 -28.051355599841699 0.36301371719349701 -0.157783480000000004 0.229876949999999997 -0.151759179999999994 0.205877990000000011 -0.299737570000000009 0.369443919999999981 0.28331748000000001 -0.176784589999999991 -0.0715543899999999955 0.103288904000000001 122 0 121 1 16.7667870000000008 602.64502 1.57756597197819004 27.7982326133416002 31 false 0.319190919999999989 1.47657904080992997 0.0709110256698717994 -0.215060129999999988 14 8 0.67926439999999999 0 15 true 121 1811.22693239813998 10.2577156454327998 176.572006 17.5434340000000013 12 463.946730562466996 10.5750137101448995 43.8719749999999991 18.685219 10 2629.04807532084988 18.3817479840556004 143.024920000000009 16.2124230000000011 1.70767939999999996 0 2.47279550000000015 1.1417847000000001 1.33101080000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.514154277359012 -62.0692420573172967 23.1521668010388986 -11.9396708217404992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537071260196736 2505537071260196736 1032441757 2015.5 25.806346968459799 2.08588726437550998 -2.0917018258602802 1.6619530425784399 \N \N \N \N \N \N \N 0.115433194000000003 \N \N \N \N \N \N \N \N \N 119 0 119 0 44.9312249999999977 3022.36011 12.8303949171792002 185.14866435252199 3 false 0.00569696630000000002 \N \N -0.000808579149999999968 16 10 4.25838300000000025 0 16 false 136 327.503620265994016 4.45945133484578982 73.4403 19.4003259999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.476080930006987 -62.058692308346302 23.1475007881949999 -11.9194567762746004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537032605203072 2505537032605203072 1381249613 2015.5 25.8269888676497992 0.713816538476114038 -2.08999606174279018 0.637784373884209055 -0.936294910650241952 0.844962964755355039 -1.10808989999999996 0.486027608480973983 2.00322286788777015 -2.33858199457635996 1.94590738298588994 0.151844929999999989 0.00833142549999999968 -0.162412630000000002 0.0128412790000000006 -0.308533669999999982 -0.0861486050000000031 -0.364065680000000003 -0.0955153400000000041 -0.0823923299999999997 0.550080659999999999 123 0 122 1 0.288413799999999998 120.785004 0 0 31 false 0.046305302999999999 1.7277980147010501 0.202750631557626987 0.0557104500000000016 14 9 2.16232559999999996 0 14 false 122 154.704618382602007 1.36706402769163993 113.166 20.2146070000000009 11 133.758321347008007 12.6785653775464997 10.5499569999999991 20.0355850000000011 11 117.008162182174004 7.53549021895407023 15.5276110000000003 19.5913800000000009 1.62093719999999997 0 0.444206239999999974 -0.179021839999999988 0.623228099999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.514357654181993 -62.0483651775724994 23.1677591673715 -11.9254186399576998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537071260196608 2505537071260196608 296052994 2015.5 25.8083466916566984 0.0331880554736836003 -2.08656657705222992 0.0263045935302302983 0.42961875860674098 0.038516705450489401 11.1540890000000008 8.00023876470029016 0.070724721664819204 0.580874410126717033 0.0561830056015560977 0.188357639999999993 0.375010940000000015 0.0476706660000000004 0.0930056600000000039 -0.0868189860000000008 0.146490900000000007 0.107939740000000006 -0.168216959999999999 -0.0740597999999999951 0.313581469999999973 159 0 159 0 0.696944200000000014 165.856995 0 0 31 false 23.5915779999999984 1.58313753376383004 0.0094331613566789492 0.0506109299999999984 18 10 0.0759132000000000001 0 18 false 158 19243.3387988916984 9.17003185376205998 2098.5 14.977665 16 9880.83619540159089 38.8134698854768985 254.572339999999997 15.3644040000000004 16 13541.7994818934003 33.2488661705186033 407.286040000000014 14.4327290000000001 1.21718140000000008 0 0.931674960000000052 0.386738780000000004 0.544936199999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.475276715413003 -62.053194824033703 23.1513223606471001 -11.9154092190309999 100001 5405 5340 5489 \N \N \N \N \N \N 200111 2.35224650000000013 2.28080300000000014 2.40985940000000021 4.25444699999999987 3.37822179999999994 5.13067250000000019 +1635721458409799680 Gaia DR2 2505537032605077504 2505537032605077504 1620832756 2015.5 25.8222882087633998 0.424865021634236006 -2.0865744922402798 0.339689588791133978 1.7292188497566201 0.48978311926267698 3.53058080000000007 6.65086925147805008 0.999424133659010949 -16.7497573408050009 0.593309673715628039 0.172158460000000013 0.146751519999999996 0.062902405999999994 0.217741330000000011 -0.295700899999999989 0.325883750000000028 0.38187589999999999 -0.208560269999999992 -0.0887231599999999954 0.277846399999999993 167 0 165 2 2.66275070000000014 211.710999 1.39438293315302997 2.51124715559065015 31 false 0.109096824999999994 1.13541281655585991 0.106169229872179 0.0152288319999999994 19 10 0.908049800000000018 0 19 false 166 309.635559006671997 1.32817354139196997 233.128998 19.4612389999999991 16 72.9572316177627016 8.45262894259857944 8.63130699999999962 20.6937180000000005 18 399.012420696516983 6.9904969395769303 57.079265999999997 18.2594549999999991 1.52427470000000009 0 2.43426320000000018 1.23247909999999994 1.20178410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.502181150377993 -62.0472706945004973 23.1645707965788006 -11.9205153576826 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538583088456960 2505538583088456960 752325961 2015.5 25.8270432005488999 1.27250864356659998 -2.07414037250436012 1.08358856285437999 1.54784464724521009 1.46294056969450992 1.0580366000000001 1.76589802312738997 4.21604944163605033 1.02097190743818 3.69410241271667017 0.179003300000000004 -0.280564870000000022 0.0554547700000000005 -0.195669110000000007 -0.0282877119999999996 -0.116897249999999994 -0.249561880000000014 -0.301968069999999977 0.124571169999999995 -0.0184347179999999992 76 0 75 1 -1.17959849999999999 56.3708992 0 0 31 false 0.0219762229999999996 1.00511363357377004 0.379462702915377981 0.0883898659999999975 9 8 3.71192050000000018 0 10 false 75 93.1811628236605003 1.40434581468946007 66.3519974 20.7650450000000006 6 38.428603498517802 15.0661925310780997 2.55065130000000018 21.3897510000000004 6 115.167783558142006 18.2078365024465008 6.3251767000000001 19.6085929999999991 1.64836310000000008 0 1.78115840000000003 0.624706270000000008 1.15645219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.500056324250011 -62.0339968464502007 23.1737407483749998 -11.9106825477831997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538510073830144 2505538510073830144 259989614 2015.5 25.8345298760089008 0.807519190987252 -2.0759208682623802 0.660848467239989024 0.245971367758918008 0.903846956025493031 0.2721383 2.94860781634156988 2.24037361318654016 -2.70698080233706007 2.00479606917450992 0.107038960000000002 -0.0513616169999999983 -0.112442769999999997 0.104830413999999997 -0.171127000000000001 0.0700475700000000034 -0.208483439999999992 -0.17291687 -0.208870560000000011 0.395623700000000023 124 0 119 5 0.964457149999999985 128.468994 0.405024622370533993 0.0529050195886284005 31 false 0.0359522140000000032 1.60323665506758006 0.231256405072524013 0.0126531000000000005 15 9 2.2152128000000002 0 15 false 119 134.625864797241007 1.36004822929298008 98.9860992 20.3655450000000009 12 112.099013286127999 13.2289352224381993 8.47377499999999984 20.2273850000000017 12 113.181647573787004 9.95186568624908041 11.3729080000000007 19.6274799999999985 1.67338319999999996 0 0.599905000000000022 -0.138160699999999997 0.738065700000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.516107693746989 -62.0324206008681998 23.1801910596573002 -11.9150772454245999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532467055283840 2505532467055283840 1292372466 2015.5 25.8748388107478 0.140275267915312002 -2.19094086523598985 0.105836585213066006 0.0899544295448882064 0.159873173347946013 0.562661199999999972 -1.25471303375086007 0.284417961241026973 -1.99732426470614999 0.203323046104975008 0.126500799999999997 0.388063670000000027 -0.0485203859999999987 0.11035064 -0.0844870600000000027 0.100100250000000002 0.0757733200000000051 -0.0277534089999999997 0.0838644199999999951 0.183174339999999991 176 0 175 1 0.4233267 177.240005 0 0 31 false 0.910987899999999962 1.60059513909124007 0.0355391283007391034 0.0501328600000000013 20 10 0.256455239999999973 0 20 false 173 1147.45021711571007 2.53764324158378018 452.171997 18.0390319999999988 16 597.12933813983102 11.4314623544846992 52.2356029999999976 18.4112170000000006 20 818.073185351413031 8.97663848695341038 91.1335749999999933 17.4799399999999991 1.23334549999999998 0 0.931276299999999946 0.372184750000000009 0.559091569999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.698835415490009 -62.1191940063570982 23.1754872364060986 -12.0368597745030002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532359680625152 2505532359680625152 53740055 2015.5 25.8476245806324982 0.182109087199626013 -2.18019089446852021 0.14162423823669501 0.81594823366217395 0.223138368568260997 3.65669179999999994 17.2144331062601985 0.360952647079570976 -9.00817858481314993 0.275359365956197977 -0.0079661100000000002 0.437562469999999981 -0.0327356420000000023 0.113360820000000001 -0.380949499999999996 0.230503099999999989 0.208966430000000009 -0.132923409999999992 -0.0833042340000000048 0.33593192999999999 160 0 159 1 -0.329888049999999988 147.634003 0 0 31 false 0.662135840000000031 1.51091319877752994 0.0486044359454972028 0.0280639859999999991 18 10 0.340432100000000015 0 19 false 159 906.429290397726049 2.14547416339163011 422.484009 18.2950300000000006 15 428.211261834382981 11.2529702652804993 38.053176999999998 18.7722429999999996 18 703.982836210539972 6.59897788905224036 106.680589999999995 17.6430149999999983 1.24907049999999997 0 1.12922860000000003 0.477212899999999995 0.652015699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.636437734384998 -62.1211238030510984 23.1536339429998996 -12.0169031273364002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532535774760320 2505532535774760320 154659462 2015.5 25.8685638552947985 0.0572534436446903994 -2.17872213291766981 0.0575300220659676967 0.310881249051348008 0.0741244294863924041 4.19404549999999965 4.11704789454755993 0.148702564235559997 -0.203985269723089002 0.138609864418406004 0.22741689000000001 0.16889788 0.108668420000000002 0.211851280000000003 -0.433516599999999974 0.435037139999999989 0.442758859999999976 -0.367600770000000021 -0.375386270000000022 0.576864539999999981 161 0 159 2 -0.287451179999999973 148.358994 0 0 31 false 5.84874150000000004 1.58106252188986995 0.0170349542264046985 0.0948366449999999972 18 9 0.171256839999999994 0 18 false 156 5279.20957565372009 4.27538528348697966 1234.79004 16.3819429999999997 16 2897.08549811557987 17.8525269078357987 162.278729999999996 16.6964860000000002 16 3507.85003379383988 11.9249314899180003 294.161000000000001 15.8993179999999992 1.21323760000000003 0 0.797167799999999982 0.314542770000000027 0.482625000000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.675527870954994 -62.1108402208366996 23.1740925458667988 -12.0231939559891998 100001 5861.5 5810 5985 0.371499985 0.112000003 0.547699988 0.179299995 0.0560000017 0.266099989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520746089052416 2505520746089052416 1076011288 2015.5 25.9147266685261997 7.88761463437001975 -2.19139303945175978 5.1444164845951903 \N \N \N \N \N \N \N 0.804690240000000001 \N \N \N \N \N \N \N \N \N 38 0 38 0 0.276747520000000025 34.6069984 1.96862550287203009 0.197813640168406996 3 false 0.0122107220000000002 \N \N 0.040453237000000003 5 5 78.9299699999999973 0 5 false 41 71.1743040535252049 1.84550259868060995 38.5663986 21.0575580000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.776216218826988 -62.1024972603439025 23.2132477928083993 -12.0518646427556 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520780448790656 2505520780448790656 821172663 2015.5 25.9317196002306005 0.499114563108120024 -2.19131804359941018 0.351342697097884016 1.07698047513478001 0.544495929535354972 1.97794029999999998 0.194991286586314011 1.04425640591396007 -0.417711448974943 0.668906779531190043 -0.00369314520000000018 0.267878349999999987 -0.181273519999999994 0.134947929999999994 -0.199097229999999986 0.135031390000000001 -0.0153503349999999997 0.0417419669999999979 0.104948509999999995 0.144896799999999992 181 0 178 3 2.69863600000000003 227.408005 1.30971613874813997 1.35006405781532002 31 false 0.0749981549999999969 1.43113014457814991 0.120111451661052998 -0.0442792899999999989 21 10 0.928332500000000005 0 21 false 178 235.73234221871499 2.36768971146383 99.5622025 19.7573180000000015 14 162.877573927355996 13.2068341620070999 12.3328249999999997 19.8217350000000003 17 161.447592739159006 10.9664174839093 14.7219990000000003 19.2418399999999998 1.37581960000000003 0 0.579895000000000049 0.0644168849999999932 0.515478129999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.808910232334 -62.0951297199672965 23.2294357185855986 -12.0580066537742994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532497119577728 2505532497119577728 903470563 2015.5 25.8975385743407998 0.824899409982181031 -2.18183019203220985 0.574846277518670012 2.17449411141285998 0.865804009908517025 2.51153160000000009 49.0315748376132987 1.9826293897837699 -1.25968743931903004 1.16468967574586002 -0.0183542049999999984 0.149053710000000006 -0.0813545499999999977 0.0422962399999999988 -0.116994105000000001 0.0287914280000000009 0.0657678839999999987 -0.0413438600000000031 0.130158679999999999 -0.0283291950000000015 153 0 149 4 1.9278128000000001 178.485992 2.05503946555668993 2.35782439076362005 31 false 0.0308554709999999989 1.39196258529818007 0.185874885925945005 -0.069562639999999995 18 10 1.73908510000000005 0 18 false 151 140.514678305119986 1.5225184361881301 92.2910004 20.3190610000000014 13 70.3723472970365975 10.3596775086221999 6.79290899999999986 20.7328830000000011 13 155.030344501479988 7.23299393967628035 21.4337729999999986 19.2858799999999988 1.60412200000000005 0 1.44700429999999991 0.413822169999999989 1.0331821000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734289020163999 -62.1012357880426009 23.2004805887467001 -12.0366809512355992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520853463715072 2505520853463715072 975572574 2015.5 25.9215367590568988 0.043379436266572903 -2.18369912456453008 0.032910099781121499 0.714289652652626006 0.0478011102704858012 14.9429510000000008 -0.476699113448983025 0.0897019524289496967 -36.9928313525212005 0.071364925396052506 0.00910922200000000015 0.354726339999999973 -0.123101059999999998 0.06987815 -0.161106570000000004 0.0652380800000000038 -0.0858313200000000026 -0.0080632719999999998 0.0417212659999999999 0.175807970000000008 184 9 184 0 -0.150586930000000008 175.507004 0 0 31 false 10.497871 1.61191516465418005 0.0114728921159586994 -0.030965887000000001 21 10 0.0862575500000000023 0 21 false 182 9159.65024039425043 5.66706786990360989 1616.29004 15.7836684999999992 21 5058.88234745805039 24.414501577500701 207.208100000000002 16.0912509999999997 19 6101.09655309503978 16.2557550472209016 375.319180000000017 15.2984000000000009 1.21838489999999999 0 0.792851450000000013 0.307582860000000013 0.485268599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.782282085894991 -62.0926256709149982 23.2226019530391987 -12.0471935616264005 100001 5869.75 5527.8999 6145.5 0.050999999 0.0113000004 0.124799997 0.0250000004 0.00789999962 0.061999999 200111 0.812100049999999962 0.74085690000000004 0.915648699999999982 0.705329800000000007 0.604226649999999976 0.806432900000000008 +1635721458409799680 Gaia DR2 2505532879371798656 2505532879371798656 767566114 2015.5 25.8839100435653009 0.769559192386424007 -2.16339059180043014 0.653785436228965011 1.11924246854774001 0.856284979100246035 1.30709110000000006 1.71231683026132009 1.74131620292704992 -5.7891490707727602 1.67496058178005991 0.0659584000000000004 0.257729199999999992 -0.160922289999999996 0.0077402405000000004 -0.175286219999999993 -0.0747346059999999951 -0.416712399999999983 -0.00924017000000000067 0.0284549969999999992 0.350827500000000014 160 0 158 2 -1.17540339999999999 132.738998 0 0 31 false 0.0311240900000000001 1.10988342479418001 0.217511314383809995 0.0421001349999999969 18 9 1.7541023 0 18 false 158 121.979318216126003 1.13048452232125007 107.900002 20.4726500000000016 13 75.9478684137693989 19.3837719350637983 3.91811599999999993 20.6500990000000009 13 172.028917599870994 9.75990074913976002 17.6260930000000009 19.1729160000000007 2.03294130000000006 0 1.47718240000000001 0.177448269999999991 1.2997341 \N \N 0 \N \N \N NOT_AVAILABLE 151.691104559385991 -62.0904172113858976 23.1944198463202014 -12.0145370873963007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533974590375808 2505533974590375808 1639037023 2015.5 25.8463308775286009 1.0923137650789001 -2.1211090213758701 0.90988431030857797 0.307051268860166982 1.29344805096539006 0.237389710000000004 -2.31622605708124008 2.97337651465436981 -7.89891609468688038 2.88234385972400986 0.073378410000000005 -0.00297362610000000008 0.0700463000000000058 0.119641595000000003 -0.192021369999999997 0.067898824999999996 -0.172580540000000004 -0.309850569999999992 -0.2533474 0.427900300000000011 114 0 113 1 0.159589599999999998 109.688004 1.11205089974235993 0.194271512323771989 31 false 0.0195215250000000014 1.57995459974934005 0.304692765714767 0.00746302030000000043 14 9 3.08477930000000011 0 14 false 115 96.6264331872750972 1.28144522577892994 75.4042969 20.7256259999999983 9 58.2141210637213007 8.93178164879179981 6.51763799999999982 20.9388180000000013 11 136.344546472697004 10.3888574717542994 13.1241140000000005 19.4253250000000008 2.01351380000000013 0 1.51349259999999997 0.213191989999999998 1.30030059999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.579988980298992 -62.0682617824114971 23.1745081770036983 -11.9614467702894007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532982451357568 2505532982451357568 1232674648 2015.5 25.8834951276189003 0.314082393829629991 -2.13064030459480014 0.261256283759572994 -0.396658062420788993 0.387655058000120012 -1.02322420000000003 2.21497019864212996 0.747776894898510958 -2.01298262749403989 0.461417419317836974 0.192324610000000007 0.0360398779999999974 0.0543391199999999977 0.178080700000000008 -0.417458099999999999 0.269060799999999989 0.224298629999999999 -0.174604249999999989 -0.0394911999999999971 0.308686760000000004 154 0 153 1 0.388963500000000018 154.106995 0 0 31 false 0.203745160000000008 1.48773766858189993 0.0774181115923651963 0.0327001199999999992 18 10 0.681485899999999978 0 18 false 153 408.469110591456001 1.66389467531232005 245.490005 19.1604670000000006 16 252.850500582445989 18.3708517261980013 13.7636789999999998 19.3442289999999986 16 267.70713023894001 11.4880079505918005 23.3031800000000011 18.6927699999999994 1.27441120000000008 0 0.651458740000000036 0.183761599999999997 0.467697140000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.660352528288996 -62.0610002866402013 23.2062752466605993 -11.9839057708948005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533738365601536 2505533738365601536 1268063759 2015.5 25.8793110133903994 0.0294041708000904005 -2.12863022239608002 0.0242398193055640004 1.5621456642206899 0.0344784391429956982 45.3078999999999965 16.9612612549283988 0.0659269847158252958 -8.10242502948947951 0.0550955646581224034 0.129012299999999996 0.299660119999999974 0.037393860000000001 0.073262944999999996 -0.229398380000000013 0.113083950000000003 0.0202764980000000004 -0.150208759999999997 -0.0522066699999999967 0.350675259999999989 166 0 166 0 -1.45434189999999997 135.692001 0 0 31 true 28.1411969999999982 1.55607027360618999 0.00827602885602824086 0.0216944310000000001 19 10 0.0738669200000000026 0 19 false 166 23127.2168063151985 8.82298256595919028 2621.25 14.7780570000000004 15 11380.7341243430001 28.335664240242199 401.639920000000018 15.2109620000000003 14 16972.9460207679003 27.8456458773670015 609.536799999999971 14.1875269999999993 1.22598760000000007 0 1.0234356 0.43290519999999999 0.590530400000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.650450915834 -62.0609732258266007 23.2030489889381997 -11.9805053362803999 100001 5338 5175.12988 5997.49023 0.0909999982 0.0266999993 0.174999997 0.0450000018 0.0135000004 0.113799997 200111 0.730172200000000049 0.578420999999999963 0.776855799999999985 0.389995519999999984 0.369765879999999991 0.410225149999999983 +1635721458409799680 Gaia DR2 2505532634558539648 2505532634558539648 971190794 2015.5 25.9101807941509001 0.479976719113620998 -2.16176327996765982 0.311386754663052989 0.833428920459784006 0.528568664075372951 1.57676569999999994 6.63021472699629033 0.972218935941407958 -5.9673319231764701 0.555380994525522032 -0.0590868500000000033 0.335068599999999994 -0.0713600800000000063 0.122539599999999999 -0.274149699999999996 0.106827850000000002 0.101775765000000004 -0.00453990299999999965 0.136261400000000005 0.0973830299999999954 158 0 156 2 2.83336139999999981 204.966003 1.35014389194369011 2.21927781249172007 31 false 0.105940709999999993 1.54794265080549009 0.102181022416375999 -0.0751550899999999938 19 10 0.855827800000000027 0 19 false 153 303.089067506303024 1.62370128248143009 186.666 19.4844399999999993 15 145.375880795667996 9.94357896566664046 14.6200759999999992 19.9451579999999993 16 264.332443815975012 8.05279481948369913 32.8249319999999969 18.7065429999999999 1.3517752999999999 0 1.23861500000000002 0.460718149999999993 0.777896900000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.740269281227 -62.0776892172928996 23.2200081627911992 -12.0226269459951993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532703278683520 2505532703278683520 446571810 2015.5 25.9047568788660989 0.879736334815331977 -2.15594091166834012 0.741793167679433041 3.38212177040401984 1.00367151855473002 3.36974980000000013 13.5002671612304006 2.09798426659027992 -13.2321819221957995 1.96829234138986009 0.101297230000000002 0.214247300000000002 -0.045048073000000001 0.027531367000000001 -0.162271080000000012 -0.0324022959999999971 -0.323975200000000019 -0.134815800000000013 -0.0632261259999999936 0.400124040000000014 149 0 145 4 1.47993609999999998 165.505997 1.75473319877987999 0.707812709593461986 31 false 0.0247481820000000005 1.86022122854455008 0.254144566184731024 0.0296183700000000015 17 9 2.11881999999999993 0 17 false 146 114.476073048681002 1.24311558453082993 92.0879974 20.5415780000000012 13 35.3145734604245973 5.01788216439237011 7.03774449999999963 21.481503 14 195.459689814802005 7.8545592628493397 24.8848699999999994 19.0342769999999994 2.01591699999999996 0 2.44722559999999989 0.939924239999999966 1.50730129999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.724480184794999 -62.0747555922419991 23.2170284037981993 -12.0152253835533998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534386905343104 2505534386905343104 102221545 2015.5 25.9054231002793003 1.69121379554447993 -2.13816472874147978 1.67415123543064004 \N \N \N \N \N \N \N 0.408934149999999996 \N \N \N \N \N \N \N \N \N 88 0 86 2 -0.0288855340000000009 79.9701004 0 0 3 false 0.0135832469999999997 \N \N 0.113871009999999995 10 7 7.00055739999999993 0 10 false 87 89.0795406690399005 1.73899390295788003 51.2248001 20.8139210000000006 7 42.3624107532626013 8.27245200939236014 5.12090159999999983 21.2839370000000017 7 58.9910405639252033 17.8562633885624003 3.30366090000000012 20.3349550000000008 1.13778589999999991 0 0.948982239999999977 0.470016480000000014 0.478965760000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.70949029602599 -62.0584115335003972 23.2243100478604987 -11.9989248239781006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532703280164352 2505532703280164352 51006118 2015.5 25.9156125613506987 2.44658147681297988 -2.15512716300430984 1.81684982029038999 \N \N \N \N \N \N \N -0.0123987235000000001 \N \N \N \N \N \N \N \N \N 48 0 46 2 -1.23423419999999995 30.2605991 0 7.84663186513843042e-16 3 false 0.0132652380000000004 \N \N -0.100401773999999999 6 6 5.48395630000000001 0 6 false 50 75.2294146109576047 1.47510900919964993 50.9991989 20.9973959999999984 4 82.0302862553485994 65.9585306310058996 1.24366449999999995 20.5664520000000017 5 135.619495829794005 17.6483200546928991 7.68455550000000009 19.4311140000000009 2.89314749999999998 0 1.13533780000000006 -0.430944439999999984 1.56628229999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.744655627984002 -62.0693657462195034 23.2276550750361999 -12.0184363278322 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534180746772480 2505534180746772480 1629411614 2015.5 25.9257999129795991 1.55364669228088004 -2.14469168228735985 2.01121598264341017 \N \N \N \N \N \N \N 0.0613867499999999969 \N \N \N \N \N \N \N \N \N 85 0 85 0 0.623329800000000045 87.4372025 2.26598748213501988 0.448333429543111006 3 false 0.0141760940000000002 \N \N 0.0276295359999999997 11 9 5.97471700000000006 0 11 false 87 86.2131440634350952 1.72114898376550007 50.0904999 20.8494320000000002 5 38.5142959371980993 11.3562378368133992 3.39146610000000015 21.3873330000000017 11 97.6811985591204035 10.8849691765285002 8.9739520000000006 19.7873920000000005 1.57975329999999992 0 1.59994130000000001 0.537900900000000015 1.06204030000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.754718227490997 -62.0555704705086981 23.2412445597177992 -12.0124476337805 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534391200630784 2505534391200630784 1610582802 2015.5 25.9081730080119002 0.154935935524980001 -2.13397003010652986 0.124485051611815001 2.02680577085883007 0.178615721049867004 11.3472980000000003 -2.89334255783000982 0.358779469413102015 -2.02614186903943017 0.234390171123939006 0.143265219999999999 0.19278287999999999 0.0828124300000000063 0.171034230000000009 -0.271192429999999984 0.258815139999999999 0.297515799999999997 -0.199539620000000001 -0.0668219850000000004 0.264323739999999974 167 0 167 0 3.08976000000000006 223.395996 0.489518597509630005 2.0042946185911199 31 false 0.773515399999999964 1.22771807172202996 0.0378980539847457998 0.0132295850000000003 19 10 0.328912800000000005 0 20 false 167 1209.98039252954004 2.46583963183305022 490.696991 17.98142 15 238.578093132832009 8.08942490741127962 29.4925899999999999 19.407312000000001 18 1557.06173772496004 11.0256282462047004 141.222049999999996 16.7811549999999983 1.48402389999999995 0 2.6261578000000001 1.4258919000000001 1.2002659 \N \N 0 \N \N \N NOT_AVAILABLE 151.710950116052999 -62.0534437361376021 23.2284933662994995 -11.9960260310036002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520574290357888 2505520574290357888 462297754 2015.5 25.9441486625631015 0.0875431673936812038 -2.19716481769465988 0.0639924039380840026 3.50700041350990022 0.097162961028240305 36.0940060000000003 18.7872657010942987 0.191260622855727008 10.0816722598968003 0.129878917091019008 0.0295661460000000015 0.283278580000000002 -0.00484070549999999957 0.0794632499999999992 -0.196668029999999994 0.0962877500000000053 0.0638666900000000037 -0.0923989800000000056 0.0425735640000000012 0.157326130000000008 183 0 181 2 1.31905650000000008 201.195999 0.151193371964008005 0.484232794207549 31 false 2.32479449999999987 1.32067338916855004 0.0224040897112492005 -0.0397475440000000027 21 10 0.174636829999999993 0 21 false 181 2517.29884434203996 3.08939809877744009 814.81897 17.1860299999999988 16 588.167279185783968 9.68605835212343003 60.7230800000000031 18.4276349999999987 17 3023.11011185297002 12.1053997377483 249.73236 16.0607849999999992 1.43458430000000003 0 2.3668499999999999 1.24160580000000009 1.12524409999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.838241469921002 -62.0950629489090034 23.2390690098157009 -12.0679912773751994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520608650098432 2505520608650098432 1217032008 2015.5 25.9464457018511006 0.259793378804981989 -2.19204769333518978 0.189646976084888008 0.227056799245958008 0.290453670906206995 0.781731550000000053 16.6813396826641984 0.565937722178387004 -1.89823855604831992 0.362507047002464 0.0230799970000000014 0.255399500000000002 -0.133213450000000011 0.117745765000000002 -0.242232959999999997 0.140600560000000013 0.0967949500000000046 -0.0131345790000000004 0.0534910560000000021 0.159915069999999993 194 0 193 1 1.45589419999999992 216.932999 0.232301388253118996 0.12613684753784199 31 false 0.246570359999999988 1.38473156493633009 0.0642740183887692967 -0.0132772480000000002 22 10 0.503820840000000048 0 22 false 194 469.901773065945008 1.57866352469694005 297.65799 19.0083480000000016 19 246.060502697472003 8.60198164664944009 28.6050949999999986 19.3737829999999995 21 333.144434940747999 5.8891668823490404 56.5690269999999984 18.4553399999999996 1.23260860000000005 0 0.918443699999999974 0.365434650000000028 0.553009030000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.837961045703992 -62.0894561328188033 23.2431675318848008 -12.0640682999933997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520612945546752 2505520612945546752 140136317 2015.5 25.9465165252246983 0.0581044533654263007 -2.18815176014750001 0.043460884553588798 2.07710759752636021 0.0654479384994386959 31.7367920000000012 22.0585940211644989 0.120019281419151996 -16.6892386241006996 0.0909414804802228943 0.0284054759999999989 0.376099440000000007 -0.0591607400000000033 0.0680901500000000021 -0.195496140000000013 0.0740848000000000062 0.0137167134999999999 -0.0436110239999999982 0.0381892399999999993 0.195647979999999999 193 0 191 2 1.53886999999999996 216.548996 0.167244337991172998 1.29442653659335005 31 false 5.14320700000000031 1.35678590108602992 0.0149511033522223002 -0.00885873600000000073 22 10 0.114354566000000005 0 22 false 191 5524.21111410804042 4.4499175123223802 1241.42004 16.3326899999999995 20 1465.2937396407799 16.8418401704781004 87.0031800000000004 17.4365769999999998 19 6203.16363574076968 23.8044876215701002 260.587980000000016 15.2803869999999993 1.38815430000000006 0 2.15619000000000005 1.10388759999999997 1.05230240000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.834514754412993 -62.085909212912803 23.2446920269779014 -12.0604682010446993 100001 3672.33008 3488 4201.43018 2.13800001 1.89090002 2.3829999 1.06770003 0.935899973 1.18669999 200111 0.801967500000000055 0.612698399999999976 0.888971799999999979 0.105384459999999999 0.0983267599999999992 0.112442165999999996 +1635721458409799680 Gaia DR2 2505520814808370688 2505520814808370688 45335045 2015.5 25.9358251884579012 0.0450663787699776969 -2.18035099771095986 0.0306010728016648005 3.92363754620498995 0.0462503243741606979 84.8348100000000045 8.4828310103665796 0.0812660999760031061 22.4187038714079989 0.0665248262384914996 0.0345468099999999972 0.530123349999999993 -0.0834929100000000035 0.0208910219999999987 0.063317849999999995 -0.00185766899999999994 -0.208970529999999988 -0.00522091240000000043 0.0295292499999999999 0.0635076599999999936 115 115 115 0 7.40471120000000038 259.255005 0 0 31 true 261.635400000000004 1.60366332959084001 0.0117063854362533994 -0.141593649999999988 13 10 0.050221509999999997 0 13 true 113 885234.328159769997 239.280097618658999 3699.57007 10.8207199999999997 13 498818.621624228021 765.492357394600049 651.631099999999947 11.1065310000000004 12 552854.130245293956 343.205182328813009 1610.85599999999999 10.4053939999999994 1.18801620000000008 0 0.701137539999999948 0.285811419999999983 0.415326120000000021 28.0210213349359982 0.850712085332314016 6 6250 4.5 0 NOT_AVAILABLE 151.806745743187008 -62.0834643488554008 23.2374421137035014 -12.0493003052917995 100001 5975.8999 5822 6099.33008 0.193000004 0.0864000022 0.308999985 0.0834999979 0.0370000005 0.153999999 200111 1.3988567999999999 1.34281169999999994 1.47378959999999992 2.24830130000000006 2.2111196999999998 2.28548300000000015 +1635721458409799680 Gaia DR2 2505522292277284736 2505522292277284736 992583067 2015.5 25.9421466439319985 0.339275459095582987 -2.17522353998425988 0.234877511263801991 1.19324100731493998 0.347174095228043988 3.43701049999999997 3.84426435633708019 0.914862500557973024 -1.42870117424490006 0.482449722922387025 -0.171943079999999998 0.0623722150000000017 0.22919312 -0.15721713000000001 -0.0467749949999999998 -0.19503297 0.328682499999999989 -0.225457149999999995 0.22380934999999999 -0.312409759999999981 162 0 162 0 2.53345300000000018 205.509003 0.877970870835446004 1.59826053032540005 31 false 0.191039669999999995 1.42389018897868991 0.0799699047629023052 -0.0952780800000000011 19 9 0.826198639999999984 0 21 false 161 443.503552238628004 1.47705170091649007 300.263 19.071123 16 126.728120886588002 9.51082766433160032 13.3246155000000002 20.0942059999999998 17 500.010305111809998 9.51421495057275912 52.5540280000000024 18.0144729999999988 1.4131532 0 2.07973300000000005 1.02308270000000001 1.05665019999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.814214470384002 -62.0761183476564966 23.2453713839671998 -12.0468386131589007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522124774034176 2505522124774034176 1333598526 2015.5 25.967301221388599 0.0356896468117417001 -2.16822223358190991 0.026973911119072401 0.456156156443525973 0.0390712563159743981 11.6749799999999997 -4.97971660624873014 0.0749007143468193998 -8.19342953345945979 0.0576064950091838973 0.0717243999999999937 0.347267869999999979 -0.0192592419999999993 0.057652384000000001 -0.0833955599999999936 0.0449201600000000006 -0.073128245999999994 -0.0649048099999999933 0.0500639000000000015 0.178026899999999988 174 0 174 0 0.596557259999999978 179.511993 0 0 31 false 16.2804199999999994 1.60274895789415006 0.0100139493050922998 -0.0322852500000000014 20 10 0.0766942300000000021 0 20 false 173 13961.1620815584993 6.40301419099469982 2180.3999 15.3260620000000003 15 7490.16434693984957 19.454370841291901 385.011900000000026 15.6651600000000002 14 9478.6361413832492 25.0922410269468017 377.751680000000022 14.820055 1.21542900000000009 0 0.845105200000000001 0.339097980000000021 0.50600719999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.856215368790004 -62.0589784296592981 23.2719117171138983 -12.0495150517400003 100001 5790.5 5745 5958 1.19819999 0.824899971 1.50329995 0.570299983 0.395200014 0.724799991 200111 1.6167701000000001 1.527142 1.64248100000000008 2.64761949999999979 2.12809630000000016 3.16714260000000003 +1635721458409799680 Gaia DR2 2505521334500123776 2505521334500123776 454359869 2015.5 26.0120230334180995 0.684074242550576028 -2.19185418834972001 0.59324070437363996 0.66939546750497303 0.749367644034450997 0.893280450000000004 -2.47406774324895018 1.5105048969822501 -1.09543074063133994 1.41603677481453993 0.108154819999999999 0.269963059999999977 -0.124056269999999996 0.00711032400000000033 -0.13834724000000001 -0.0862061100000000025 -0.43976763000000002 0.0134280379999999998 0.085792586000000004 0.342351599999999978 151 0 150 1 1.21017540000000001 165.869995 1.3732038374411899 0.706863091788140996 31 false 0.0408141240000000002 1.38326945647406996 0.198451204143689997 0.00629911430000000029 17 9 1.50267740000000005 0 17 false 149 162.744097461105014 1.25187674634159007 130 20.1596030000000006 12 89.3916915339014935 7.55845276425108015 11.8267179999999996 20.4731449999999988 13 148.996918273031014 8.26594866250504978 18.0253869999999985 19.3289779999999993 1.46480640000000006 0 1.14416699999999993 0.313541400000000026 0.830625529999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.964021259058001 -62.0610141397017969 23.3056110635942986 -12.0878506201781004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522154841833984 2505522154841833984 521252359 2015.5 25.987415691246099 0.946220763327677017 -2.17103691175246016 0.852219504762612989 1.01947139879100002 1.06040904959318993 0.961394500000000041 10.1985956388573005 2.1756706759740001 -6.49597108875604956 2.03041089935583985 0.214935380000000009 0.248928790000000011 -0.0753123760000000003 -0.0198692599999999997 -0.0162848899999999998 -0.0605010699999999971 -0.365348879999999987 -0.0812021299999999974 -0.0205581300000000008 0.360962600000000022 140 0 139 1 4.33002420000000043 217.197998 3.23473950722314019 2.78367439213372014 31 false 0.0213682580000000011 1.63275735542343003 0.287077160075789983 0.0604359140000000003 16 9 2.16732669999999983 0 16 false 138 125.711612224503995 1.0989681743578299 114.390999 20.4399279999999983 9 68.0903833285397013 11.4654995175619003 5.93871929999999981 20.7686729999999997 13 146.494060493758013 12.4492829188447001 11.7672690000000006 19.3473700000000015 1.70695799999999998 0 1.42130280000000009 0.328744900000000007 1.09255790000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.897508168283991 -62.0528543749232995 23.2899893090543983 -12.0594844274936008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522189198073600 2505522189198073600 1309268429 2015.5 26.0123686575918001 0.571288416445766001 -2.16655147040795981 0.417128445066310027 -0.683865992182748017 0.623805579115951025 -1.09628070000000011 0.401003894024073992 1.49895443632447001 -3.22866765194820005 0.785215460850992031 0.0406337999999999977 -0.0379494500000000026 0.125537900000000008 0.0119112395000000003 -0.112834130000000005 0.0337566200000000011 0.252418099999999979 -0.206148340000000013 0.177430599999999994 -0.0840190650000000039 163 0 161 2 0.713305529999999965 168.240005 0 0 31 false 0.0588516200000000003 1.42053132449299002 0.139063591650760987 -0.0601350999999999969 19 10 1.32137539999999998 0 19 false 161 193.971287716092007 1.21620711832150996 159.488998 19.969023 16 116.736074702954994 11.1674031700373995 10.4532869999999996 20.1833759999999991 16 127.198929317240996 7.74528857289158967 16.4227489999999996 19.500710999999999 1.2575829999999999 0 0.682664900000000019 0.214353559999999999 0.468311299999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.941360975638986 -62.0380459018530033 23.3153991118452986 -12.0644255418258002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521433286159232 2505521433286159232 1224978287 2015.5 26.0143425565765014 3.86343734316298981 -2.17349953081863978 4.66137079151253975 \N \N \N \N \N \N \N 0.679304299999999972 \N \N \N \N \N \N \N \N \N 47 0 46 1 1.62370529999999991 56.6994019 6.79611422956126976 2.70914138816380001 3 false 0.00551015099999999959 \N \N 0.209707349999999987 6 5 9.55137399999999914 0 6 false 47 65.1255669547325056 2.36158423728531996 27.5771008 21.1539879999999982 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.951557098773009 -62.0434601562753016 23.3146792513900003 -12.0716137743263001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522360996767232 2505522360996767232 1177817371 2015.5 25.9415873834136015 0.97424534341401503 -2.16227007194486998 0.766013154074057012 0.493899611955776974 1.12937392381049007 0.437321599999999977 0.844938725817677039 2.29513966949782988 -2.09317892441500986 2.0822068484931302 -0.0112528065000000004 0.233929049999999999 -0.0532166059999999996 0.0781533400000000017 -0.287866650000000002 -0.038208917000000002 -0.372899319999999979 -0.149448130000000012 -0.0598644279999999973 0.458245599999999975 127 0 124 3 -0.416980030000000002 112.041 0 0 31 false 0.0277547500000000016 1.57550119391589005 0.267257899746134009 -0.0528868300000000027 15 8 2.33236700000000008 0 15 false 124 112.708389135112 1.05759978210799011 106.57 20.5584750000000014 10 78.8963728519886018 11.2022951675086997 7.04287599999999969 20.608746 12 104.135879055987999 12.2432159988230005 8.50559800000000088 19.7179180000000009 1.62394520000000009 0 0.890827200000000041 0.0502700800000000017 0.840557099999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.801242816979993 -62.0646645289922034 23.2496837549877995 -12.0345782144928002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534146389210496 2505534146389210496 1302604483 2015.5 25.9353072501579014 3.2303890621393001 -2.13899732181983993 3.2238603109374302 \N \N \N \N \N \N \N 0.179563460000000008 \N \N \N \N \N \N \N \N \N 38 0 38 0 -0.33872770000000002 29.6982002 0 0 3 false 0.0111231079999999996 \N \N -0.0463862680000000013 5 5 11.5959869999999992 0 5 false 40 67.3242494368353022 2.03314255601996008 33.1133995 21.1179370000000013 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.767806946842001 -62.0463478433864992 23.2524142222607999 -12.0106225584972997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522429716245632 2505522429716245632 450162494 2015.5 25.9709464680700997 0.750883161874608018 -2.15736356084462022 0.710149710661115985 -1.00756156473226999 0.816395374341794988 -1.23415889999999995 -2.1591452839079901 1.8853419171891399 -3.28156498707177002 1.76445550153205999 0.202959499999999987 0.0412705299999999997 -0.168040049999999996 -0.0304300769999999998 -0.126149919999999999 -0.0846481600000000001 -0.440323830000000027 0.0145638585000000004 0.0611619539999999975 0.372332600000000014 146 0 146 0 1.00519470000000011 157.843002 0 0 31 false 0.0315462280000000025 1.60203363058759995 0.236685544565909012 0.00813355950000000001 17 9 1.89374859999999989 0 17 false 146 133.140038152214998 1.20128582917933002 110.831001 20.3775939999999984 11 67.5613970292154988 10.0882154553808991 6.69706099999999971 20.7771420000000013 10 89.8396069789928049 11.8402230730469 7.58766169999999995 19.8782500000000013 1.18222139999999998 0 0.898891450000000036 0.399547580000000013 0.499343870000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.853249900355991 -62.047609690951198 23.2794384407075015 -12.0407403621338993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534730502595584 2505534730502595584 116746441 2015.5 25.9575397104757997 0.129199298738741003 -2.11451817342961013 0.0930976576387630983 0.357771010592070005 0.141043033771214993 2.53660899999999989 7.77535067133467006 0.297552651602870977 -6.79967192530386999 0.186186490776344998 0.0107539769999999996 0.194646370000000013 0.00578990999999999967 0.0593065730000000013 -0.177481529999999998 0.0699971300000000046 0.090408459999999996 -0.100954169999999996 0.0803048400000000023 0.0715676400000000018 182 0 182 0 0.337863269999999993 182.751007 0 0 31 false 1.03235900000000003 1.63849682349101 0.0314753756279970986 -0.0493769650000000018 21 10 0.265231099999999997 0 21 false 181 1303.17641447589995 2.37333852055024996 549.090027 17.9008579999999995 17 649.226951862758028 8.77466320166213087 73.9888150000000024 18.3203959999999988 15 937.207451429984985 5.04955183722491974 185.60211000000001 17.3323299999999989 1.21735970000000004 0 0.988065700000000047 0.419538499999999981 0.56852720000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.788155598596006 -62.0146973910689994 23.2827064420742005 -11.9959631144962007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680064 2505522635874680064 772906798 2015.5 25.9950364282852995 0.191125003654868009 -2.14660715026268001 0.162522284916350013 0.99355106107838298 0.220522852594457003 4.50543359999999993 5.68875531600709028 0.474050373396383007 -7.32571618004132041 0.328796035034769007 0.187575490000000011 0.129741090000000003 0.173239699999999996 0.122687539999999998 -0.147231360000000006 0.167196569999999989 0.291000700000000001 -0.264361349999999995 -0.0352777900000000033 0.197729920000000003 140 0 140 0 2.67183970000000004 183.016006 0.512249159294078993 1.32490588156229006 31 false 0.541590600000000033 1.37943249498429998 0.0495812911101767978 0.0498767499999999975 16 10 0.430369820000000014 0 16 false 140 958.708730716311038 2.3413098257508298 409.475006 18.2341499999999996 14 296.558971784011021 7.53579921601433966 39.3533550000000005 19.1711099999999988 15 1056.42812578724011 9.02571899659571031 117.046424999999999 17.2023200000000003 1.41125980000000006 0 1.96879000000000004 0.936960200000000021 1.03182979999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.889691579285 -62.0275289818027034 23.3063698969513986 -12.0395300746756 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680448 2505522635874680448 1485102832 2015.5 26.0098473129209999 0.182577400759906 -2.1460313174494301 0.132665412613604011 0.213277248152637988 0.19843594064984299 1.07479140000000006 5.71190298835723009 0.404968971269250022 -5.4349805312154098 0.247951428403996005 0.0578935740000000032 0.224123020000000006 -0.0446039400000000016 0.114976410000000001 -0.14827883 0.118284749999999994 0.118583720000000004 -0.0426648780000000033 0.110894844000000006 0.105088650000000006 175 0 172 3 -0.302415759999999978 160.882996 0 0 31 false 0.547093599999999958 1.49270610756654998 0.0453489856165743971 -0.0389811600000000008 20 10 0.359096199999999977 0 20 false 171 833.06846817854796 1.84106839332902994 452.492004 18.3866629999999986 17 468.486616528255013 10.0143828616254993 46.7813760000000016 18.6746440000000007 17 573.548053162431984 18.3018185846688013 31.3383099999999999 17.8654960000000003 1.25083910000000009 0 0.809148800000000001 0.287981030000000027 0.52116775999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.917626022547012 -62.0206246501701983 23.3206712376979013 -12.0444045073569992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680704 2505522635874680704 630577571 2015.5 26.0145175122580987 0.385419257158627016 -2.14486421169916985 0.290822958931997 0.785185121558967025 0.435866625321442991 1.80143439999999999 7.99085396983274965 0.864453576722606032 -7.15179654036364987 0.52388616329465898 0.097308569999999997 0.208568780000000009 -0.00698717800000000014 0.118990200000000004 -0.190105629999999998 0.119660710000000003 0.183607770000000003 -0.0557710230000000029 0.120099139999999993 0.1212144 174 0 171 3 7.52139399999999991 343.136993 1.9579558220023201 8.02398817887280025 31 false 0.119556220000000005 1.20933466254727007 0.0910228140846374989 -0.0180732530000000009 20 10 0.762629699999999966 0 20 false 172 459.925832695278984 2.04005965317720994 225.447006 19.0316469999999995 15 104.695949340967005 8.31940075629690057 12.5845540000000007 20.3015630000000016 15 574.46040287088897 9.23149111773079944 62.2283439999999999 17.8637699999999988 1.47666490000000006 0 2.43779369999999984 1.26991649999999989 1.16787719999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.92552500312101 -62.0175574484660004 23.3255492107760993 -12.0450240649834992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522880688276864 2505522880688276864 948160739 2015.5 26.008231439901401 0.144377733817121989 -2.12130468084927992 0.108035476345042 2.61449616866328016 0.154885293033316995 16.8802090000000007 1.22947939848428001 0.323133196702307002 -2.16557333225610993 0.193077067341372005 0.110035450000000007 0.206825580000000009 -0.0287704649999999985 0.15187893999999999 -0.00514500729999999972 0.15303752000000001 0.18239182000000001 -0.0537351199999999973 0.128635599999999989 0.0721509000000000039 158 0 155 3 1.57162679999999999 178.153 0.357443725779749977 1.25898537559492008 31 false 0.955719949999999985 1.29005476929934004 0.0352417098040037 -0.0275037599999999986 18 10 0.287611720000000015 0 18 false 151 1345.78771836324995 2.6480346419398999 508.221008 17.8659250000000007 16 317.460357370710028 8.03249657480689017 39.522002999999998 19.0971639999999994 14 1601.35378907231006 13.3907792286772001 119.586299999999994 16.7507020000000004 1.42579260000000008 0 2.34646219999999994 1.23123929999999993 1.11522290000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.891793048457998 -61.9990139087501007 23.3283756461706986 -12.0207986667579991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522979472072448 2505522979472072448 1634968372 2015.5 26.0143479014057988 0.262653737917036001 -2.11751287763783003 0.189502643336610987 1.74794680712058992 0.278291562313202012 6.28099100000000021 -15.4879170451735995 0.61286257136186495 -11.3633026890638007 0.345960169740278989 0.0494774700000000026 0.112782753999999999 -0.104611499999999996 0.136535440000000008 -0.100801569999999993 0.159785850000000007 0.1637044 -0.0311882599999999989 0.0991807799999999962 0.0530686640000000015 170 0 169 1 3.36540440000000007 231.970993 0.712413130836573982 1.61615946764102003 31 false 0.268918299999999999 1.41430217889229004 0.0648122473421259976 -0.0523669569999999987 19 10 0.541008060000000013 0 19 false 168 540.615788994626996 1.3926052144213199 388.204987 18.8561440000000005 17 112.662748231790005 9.42639848323804053 11.9518339999999998 20.2219370000000005 18 685.224486691531979 9.89920134731067058 69.2201799999999992 17.6723379999999999 1.47588589999999997 0 2.54959870000000022 1.36579319999999993 1.18380550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.900055024403002 -61.9929567691166028 23.3356095330677 -12.0195032427774002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535486416843776 2505535486416843776 23055366 2015.5 25.858611679124099 0.585225151108525021 -2.10291975157679989 0.483532776894593008 1.23831774386930005 0.67440358794591404 1.8361672 11.0044077207776994 1.45014907697911011 -6.46117169078985043 0.926587813014617012 0.216347829999999991 0.0398598949999999994 0.0343139299999999994 0.215714779999999995 -0.285192999999999974 0.313267379999999984 0.280509169999999974 -0.20032817 -0.122482084000000005 0.321549330000000022 160 0 158 2 1.9055434 188.046997 1.64500541842574011 6.04892191079068997 31 false 0.0547374200000000019 1.07179643291874993 0.158423636683347996 0.0143588185000000004 18 10 1.32835560000000008 0 18 false 158 194.727207766472986 1.61091506272221996 120.879997 19.9648000000000003 13 71.0853695812496937 8.16201761102177059 8.70928900000000006 20.7219370000000005 14 216.445767572262014 8.02784366604880972 26.9618819999999992 18.9235480000000003 1.47658430000000007 0 1.79838940000000003 0.757137300000000013 1.0412520999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.587095454061995 -62.0465736772852026 23.1929858838167995 -11.9490094187477993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535490712257792 2505535490712257792 580637237 2015.5 25.8624128057652989 0.0379141560597673968 -2.10194313252309017 0.0309059547350682001 1.12099116096399998 0.0444474604720936015 25.2205890000000004 13.6403491296123995 0.0835884700766101052 -8.47295993831557048 0.0697416696212348058 0.189892129999999992 0.341125200000000017 0.0481912270000000031 0.0786856100000000031 -0.115465280000000003 0.133976089999999992 0.0575249499999999983 -0.186793199999999993 -0.10245638 0.355153019999999986 151 0 150 1 -1.74670980000000009 116.665001 0 0 31 true 16.6080269999999999 1.53575094611478002 0.0109637483592467996 0.0694258600000000059 17 10 0.0894898499999999958 0 17 false 149 13723.3850272527998 6.61539762678270016 2074.45996 15.3447119999999995 17 6725.94542048955009 41.2774194948052013 162.944919999999996 15.7820040000000006 17 10199.3627571220004 30.726888015952099 331.936069999999972 14.7404869999999999 1.23331879999999994 0 1.04151729999999998 0.437292100000000017 0.604225160000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.593532534962009 -62.0440681999235011 23.1969646103203004 -11.9494902985100993 100001 5085.8501 4835.60986 5448.43994 0.112999998 0 0.333999991 0.0463000014 0 0.164100006 200111 0.881129300000000004 0.767755500000000035 0.9746861 0.467982100000000012 0.426447359999999998 0.509516839999999971 +1635721458409799680 Gaia DR2 2505535314621432448 2505535314621432448 1091679930 2015.5 25.8847747740081999 0.738560907697679014 -2.10080260122435991 0.750459835469124981 -0.305239647279005988 0.885893638523941984 -0.344555649999999991 4.27093399861641032 2.13474478034218018 -8.59130518424177048 2.20807313771189984 0.3092221 -0.00774978749999999991 -0.0689518400000000004 0.0140342390000000004 -0.230961830000000007 -0.0881584660000000048 -0.356370420000000021 -0.159935650000000013 -0.127931089999999997 0.636619799999999958 125 0 120 5 0.702447999999999961 125.278 1.09450616124388 0.353161646844281973 31 false 0.0403107629999999995 1.61405817844468991 0.217536377165156003 0.137407990000000008 15 9 2.4441647999999998 0 16 false 122 152.578164214779008 1.3803867440906501 110.532997 20.2296349999999983 7 104.748474324773994 16.6948064750910987 6.27431499999999964 20.3010200000000012 7 153.000331038935997 9.97655240564045087 15.3359919999999992 19.3001900000000006 1.68929029999999991 0 1.00082969999999993 0.0713844299999999987 0.92944526999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.635580186738991 -62.033485049260598 23.2186498746959984 -11.9566041309082998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535525071996032 2505535525071996032 1051832138 2015.5 25.8754296240445996 0.461986015630115987 -2.09647780581452992 0.382291841932321019 -1.13083727934618006 0.532664614002510972 -2.12298179999999981 4.96937892233863998 1.05469325185128993 4.82782746060185008 0.753170639369405981 0.117084384 0.212366980000000011 0.0471713770000000004 0.162950979999999995 -0.286241999999999996 0.257501329999999973 0.266902479999999998 -0.182234850000000004 -0.0921092699999999931 0.289530200000000015 150 0 148 2 94.7611600000000038 15171.2998 3.22733208199110999 695.37042081218101 31 true 0.0916898849999999987 1.32043039815892005 0.123400863886452994 -0.00281292249999999999 17 10 0.97088677000000001 0 17 false 150 9791.77380603335041 38.100845490751901 256.996002 15.7112119999999997 16 4897.96337417016002 20.8204215049691008 235.248050000000006 16.1263480000000001 14 7800.8848219770598 22.7623979922273989 342.709259999999972 15.0315600000000007 1.29688939999999997 0 1.0947886 0.415136339999999993 0.67965220000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.613634927376012 -62.0335686545464995 23.2113828069260002 -11.9491627931171003 110001 4989.91992 4878.74023 5152.74023 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535520776589440 2505535520776589440 1556615225 2015.5 25.8712816626176014 0.0973057390331242972 -2.08657522232239012 0.0779239489584433037 1.3929996629105601 0.111867938458796001 12.4521800000000002 14.2422561946771005 0.224995502313132006 -4.20377453355301967 0.162334741886758005 0.12991939999999999 0.229627940000000003 0.0554309259999999984 0.144755290000000009 -0.248766850000000012 0.234069589999999994 0.208776240000000002 -0.200909749999999998 -0.106380240000000001 0.311676320000000007 158 0 157 1 1.94352459999999994 187.699005 0.279082585454654974 1.48482704534734999 31 true 2.06066800000000017 1.37658363686448992 0.0261464219075789005 0.0184832439999999994 18 10 0.212636949999999991 0 18 false 156 2542.61321475707018 3.01657707867809011 842.880005 17.1751649999999998 15 714.361244288039984 12.4144179614613002 57.5428700000000006 18.2165929999999996 14 2789.10650295092 8.48071627816687013 328.876280000000008 16.1482559999999999 1.37790039999999991 0 2.06833650000000002 1.04142760000000001 1.02690890000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.596622074478006 -62.0263869867203965 23.2111423314762 -11.9384302037246002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535520776590208 2505535520776590208 1259521477 2015.5 25.8737564055570992 1.13160838414697995 -2.08324366370184011 1.01782496843002002 \N \N \N \N \N \N \N 0.282810720000000015 \N \N \N \N \N \N \N \N \N 137 0 137 0 167.034909999999996 63898.1992 7.63783036485534961 2556.83642235469006 3 false 0.0162970960000000005 \N \N 0.102424845 16 10 2.63910320000000009 0 16 true 139 6224.08400541126957 76.9336841239628058 80.9019012 16.2031759999999991 15 2580.57861498916009 18.4194312597700005 140.100889999999993 16.8220959999999984 14 7961.03609759614028 15.5782321996438995 511.035919999999976 15.0094960000000004 1.6936814 0 1.81260010000000005 0.618919400000000008 1.1936808000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.598354774103001 -62.0223182177281984 23.2147405737614996 -11.9362342722977992 132001 4403.81006 3882.6499 4550.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535245900766720 2505535245900766720 318294728 2015.5 25.8945500728854014 2.38486825115833989 -2.11103935386099995 1.32325087967479993 -0.135337894478462006 2.44161149231993013 -0.0554297399999999982 -5.25792380161836981 4.05051371855719999 -13.9157889584018992 3.63457475105682981 -0.482656660000000015 0.521574300000000046 -0.236354320000000007 0.0590324360000000006 -0.442709679999999994 0.233398099999999997 -0.131883129999999987 -0.310280300000000009 -0.322975400000000024 0.24895173000000001 75 0 73 2 0.125244889999999998 68.7969971 0 0 31 false 0.015802502999999999 1.29159305200478003 0.437642292133231026 -0.152418730000000002 9 7 3.92850160000000015 0 9 false 75 82.8524099271559038 1.70199314619477993 48.6795998 20.8926030000000011 5 23.6125064622761016 6.85773063741307976 3.44319530000000018 21.918533 6 83.504730356880799 9.81641445357170994 8.50664199999999937 19.9576419999999999 1.29286809999999996 0 1.9608916999999999 1.02593040000000002 0.934961299999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.663750761785991 -62.0385569177903022 23.2241156513711999 -11.9697047959186005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535245898675456 2505535245898675456 518850871 2015.5 25.893177602619101 0.750806736349773018 -2.10185492025896004 0.598742893968351009 -0.00197216145373896009 0.884012976423812047 -0.00223091920000000011 -0.897065533284262973 1.91545318075566007 -7.6661974766410399 1.1386422886435299 0.247452740000000004 -0.178473309999999996 -0.152431669999999991 0.154947790000000002 -0.411577369999999998 0.223919289999999993 0.14948322 -0.0433701000000000017 -0.0631465100000000029 0.320367630000000014 138 0 138 0 1.73658840000000003 162.617004 0.35195842770241198 0.045011565519153203 31 false 0.0424156379999999986 1.10085187141546004 0.193334935544706987 0.0329965759999999997 16 10 1.73011390000000009 0 16 false 140 144.139243009203994 1.40735669249225004 102.417999 20.2914099999999991 11 59.3091119240668974 14.5431458688657997 4.0781489999999998 20.9185850000000002 14 181.406443579828988 9.68011789460095073 18.7401069999999983 19.1152879999999996 1.67002089999999992 0 1.80329699999999993 0.627174400000000021 1.17612270000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.652723989809999 -62.0308434766766013 23.2262449883067994 -11.9606551687950002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534627423387136 2505534627423387136 1579352179 2015.5 25.9342536728426012 0.0966031337421540959 -2.09876741740849981 0.0704107419944935004 2.83254810356958986 0.105529789299064994 26.8412189999999988 12.7706075403211994 0.210267135887571011 -23.2842541465550994 0.139126121816755988 0.0586738799999999977 0.282530400000000015 -0.0208026819999999994 0.0941015199999999941 -0.132875999999999994 0.095777580000000001 0.0656479449999999992 -0.0671053199999999961 0.0782783199999999985 0.132699029999999996 177 0 175 2 1.80077200000000004 204.658005 0.294347839826225977 1.7197658221229899 31 false 1.9509723000000001 1.3658646423960501 0.0233846989056167992 -0.0253503599999999989 20 10 0.190441899999999997 0 20 false 174 2470.04216384632991 2.94486301850432985 838.763 17.2066039999999987 16 633.620952112652958 9.91321012922666078 63.9168299999999974 18.3468149999999994 19 2785.36904364653992 10.2026245656575991 273.005159999999989 16.1497139999999995 1.38418280000000005 0 2.19710159999999988 1.14021109999999992 1.05689049999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.728960037653991 -62.0104651621581979 23.2664526477342015 -11.9727942112427996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536040468070400 2505536040468070400 1003126997 2015.5 25.9086476152263003 0.0497582815811941984 -2.0666062215311598 0.044851205471784103 3.38842450650777982 0.0604064389940398017 56.0937649999999977 -39.6588799714455007 0.116845377048445997 -53.9856743659254974 0.101941457169155994 0.243007930000000011 0.219610109999999997 0.0208362970000000002 0.064714506000000005 -0.218091499999999994 0.0905952450000000048 -0.0570182899999999993 -0.144358010000000009 -0.0411703849999999968 0.426223929999999973 137 0 136 1 0.855128699999999964 144.621002 0 0 31 true 8.85441400000000023 1.35434664314302999 0.0127549240903401997 0.133883150000000006 16 10 0.123836050000000003 0 17 false 133 7842.01794778013027 6.16537765327934029 1271.93994 15.9522960000000005 14 2216.96853592666002 22.9083787094378017 96.7754439999999931 16.9869899999999987 15 8524.79332524976053 26.9021167773916012 316.881869999999992 14.9352099999999997 1.36977020000000005 0 2.05177969999999998 1.03469370000000005 1.01708599999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.650354842777006 -61.9923695978965981 23.2541296128123989 -11.9335029462279003 100001 3850.5 3598.5 4275.27002 0.0555000007 0.0208999999 0.194100007 0.0344999991 0.0109000001 0.0996999964 200111 0.501038549999999971 0.406422349999999988 0.573670270000000038 0.0497170600000000004 0.0478164900000000032 0.0516176340000000025 +1635721458409799680 Gaia DR2 2505535452057239680 2505535452057239680 154692711 2015.5 25.9151450723012999 0.833472137398052038 -2.08042852923703014 0.652650982823547055 -0.231768512371896995 1.00802507771946992 -0.229923349999999999 -6.77475440176310961 2.09922401847419993 -5.45470761229282974 1.87500890653823005 0.0763438939999999955 0.183159550000000004 -0.00103562649999999995 0.0998922399999999933 -0.187488910000000009 0.0526466599999999979 -0.23931849999999999 -0.287613899999999978 -0.246959790000000012 0.507701340000000001 115 0 115 0 0.836797200000000019 122.167999 0.428315869619393996 0.052035661954841099 31 false 0.0383936240000000012 2.00894763987685021 0.231121497980339013 0.0148913359999999998 13 8 2.16036649999999986 0 13 false 114 139.452026779704994 1.46956642031873996 94.8933029 20.3273030000000006 12 100.609947349641999 14.2881697480731003 7.04148599999999991 20.3447859999999991 12 108.360548565677007 7.78029651159871971 13.9275599999999997 19.6747419999999984 1.49851169999999989 0 0.670043950000000055 0.017482758000000001 0.652561199999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.675456087583001 -62.002081568330901 23.2551400850222016 -11.9487423861419 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535761294759808 2505535761294759808 544395196 2015.5 25.9247417106399993 0.287836324659560994 -2.07951738948250009 0.212046477457913995 0.210931244502002013 0.318993921683019988 0.661239099999999969 8.3144613008380599 0.68770456429374005 -6.9155406171132503 0.40745882819207202 0.0846177300000000021 0.172079879999999991 -0.0334204030000000013 0.0657739999999999991 0.00680600850000000028 0.0419428599999999985 0.117406800000000006 -0.0924132899999999952 0.136564839999999993 0.00128535900000000002 151 0 149 2 0.890954200000000029 158.942001 0.399110203068525016 0.332785429460014992 31 false 0.238397880000000006 1.47219936255501005 0.0704896128871047994 0.00465508600000000012 17 10 0.604579300000000042 0 18 false 149 456.460345880107013 1.98430358945176999 230.035995 19.0398579999999988 13 192.999765276847995 16.5251229163127995 11.6791725 19.6374969999999998 12 378.354802515078006 10.0328573640339993 37.7115700000000018 18.3171709999999983 1.2517069999999999 0 1.32032590000000005 0.597639099999999979 0.722686770000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.693082994520012 -61.9971498862355972 23.264604452417899 -11.9514014163025006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535795654500352 2505535795654500352 739305245 2015.5 25.9333121065111989 0.280587572575197008 -2.07336430135777983 0.220130888505988997 0.23428211077688299 0.314719552710937989 0.744415500000000008 8.41945345985848981 0.743561966805246999 -8.79565904944773003 0.420763277379747003 0.108577610000000005 -0.0305216129999999995 0.118621939999999995 0.0926549700000000032 -0.22224851000000001 0.151200030000000013 0.312866450000000018 -0.241252350000000004 0.0188028070000000012 0.0611538439999999989 163 0 160 3 0.702532770000000029 167 0.569474818232121982 0.676330481568728992 31 false 0.237309429999999988 1.49437228543404999 0.0676012773400483935 -0.021488732 19 10 0.658379300000000001 0 19 false 161 491.503457621004998 2.1025161375782 233.768997 18.9595489999999991 15 274.566561698810006 9.03667456365763044 30.3835850000000001 19.2547679999999986 17 356.612277651153988 8.97403214387155934 39.7382429999999971 18.3814300000000017 1.28417979999999998 0 0.873338700000000023 0.29521942000000001 0.578119300000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.703946152821004 -61.9879198496573025 23.2750524613833996 -11.9488062291340995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536036172673664 2505536036172673664 977370188 2015.5 25.9046255185626002 0.135734956329163992 -2.05536094721884011 0.106849727430657002 1.36040044831915008 0.147644059511752995 9.21405500000000011 11.4044577322639995 0.358657485680735022 -6.55765459420428964 0.235728559807626997 0.101936429999999995 0.0221933440000000003 -0.0261067900000000012 0.132261220000000013 -0.21556075999999999 0.195155109999999993 0.19554494 -0.176491680000000012 -0.0952089950000000046 0.173552960000000006 141 0 140 1 0.380347549999999979 140.660004 0 0 31 false 1.13428269999999998 1.37683671603370006 0.0329298884215847992 -0.0299060010000000015 16 10 0.323489579999999999 0 16 false 138 1381.58918859827008 2.38738689910824009 578.703003 17.8374179999999996 13 425.526734685528027 7.76653240002304024 54.7897999999999996 18.7790719999999993 15 1448.26583914313005 13.5165866470569007 107.147310000000004 16.8597980000000014 1.35625890000000004 0 1.91927340000000002 0.941654199999999997 0.977619200000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.632376019540004 -61.9839248202210982 23.2545091112071987 -11.9215666710282999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536070532535040 2505536070532535040 232633903 2015.5 25.9208644595039992 1.5831689067680601 -2.04958122625986983 1.53746454155868006 -2.75481177414914979 1.71945850450101001 -1.60213910000000004 -5.40689708245260992 4.74536314554207017 -0.611594036000940977 3.98754184003285017 0.263235400000000008 -0.345924759999999998 -0.0446457830000000014 -0.033664417000000002 0.0125985569999999998 0.0272636599999999986 -0.29247662000000002 -0.144309300000000001 0.056252996999999999 0.163222659999999992 73 0 71 2 -0.949037970000000008 55.092701 0 0 31 false 0.0143613144999999998 1.51155959204095991 0.478337278073228012 -0.0140196090000000006 9 7 4.27076670000000025 0 9 false 76 76.6219525906998058 1.60433420233542989 47.7593002 20.9774819999999984 4 42.3069170484481987 1.63654189005252992 25.8514119999999998 21.2853600000000007 6 72.8608744470212031 22.7369149207262993 3.2045189999999999 20.1056840000000001 1.50306519999999999 0 1.17967599999999995 0.307878499999999999 0.871797559999999971 \N \N 0 \N \N \N NOT_AVAILABLE 151.658333758228991 -61.9717574374611999 23.2721067661182985 -11.9221215502812008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534936661029760 2505534936661029760 659575069 2015.5 25.9549127865396017 0.247556935145104989 -2.10345271518370014 0.16161421560269601 2.47394929097136984 0.270875576084927017 9.13315799999999989 21.7364547862656003 0.488985294377306978 -5.99071531816456027 0.300440167057373975 -0.0869240000000000013 0.399003200000000002 -0.00432954900000000024 0.0951374599999999931 -0.277116499999999988 0.109908249999999999 0.134070500000000009 -0.0690873999999999933 0.0652425699999999997 0.10757448 177 0 176 1 6.0490339999999998 308.045013 1.08594773275256995 6.77530956090083958 31 false 0.358449159999999989 1.34067050701528001 0.0527532789125920998 -0.0727609699999999943 20 10 0.432189880000000026 0 20 false 176 918.104183367817996 2.47843812689808018 370.437012 18.2811360000000001 19 244.042367823218001 8.12431253009052945 30.0385249999999999 19.3827250000000006 19 1277.08823103142004 16.3536882123934006 78.0917599999999936 16.9963680000000004 1.65681699999999998 0 2.38635639999999993 1.10158920000000005 1.28476720000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.772973124185 -62.0058336836738988 23.2843446636470013 -11.9847039933884005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535009675919744 2505535009675919744 310162396 2015.5 25.9356859131200004 0.0978470799141337028 -2.08546074425900985 0.0719883016274868032 0.474077039649313026 0.107315943110505005 4.41758249999999997 9.37622872206721958 0.216804101419604989 -6.57216908450979975 0.14389078834977001 0.0529568700000000031 0.258773179999999992 0.034408130000000002 0.0681816900000000031 -0.127424850000000006 0.0628269699999999959 0.0656583599999999989 -0.0975169540000000029 0.0922047800000000001 0.10673473 175 9 173 2 1.72671090000000005 200.927994 0.189333508979708992 0.688875381152119992 31 false 2.04147960000000017 1.44733805783186997 0.0237922220721737999 -0.030370359999999999 20 10 0.188420609999999988 0 20 false 172 2345.6477208347801 3.38181542193566997 693.606018 17.262709000000001 16 972.046624369804022 10.9301664243615004 88.9324649999999934 17.8821699999999986 16 2025.10786815483993 15.2655613476960994 132.658580000000001 16.4957999999999991 1.27775130000000003 0 1.38636969999999993 0.619461060000000008 0.76690864999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.719555013903005 -61.9978308533539035 23.2727882709219998 -11.9609324354244002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535039740379008 2505535039740379008 103194699 2015.5 25.9442489973674988 2.58978438011269985 -2.08137786302805017 1.63773042589589002 \N \N \N \N \N \N \N 0.293630800000000025 \N \N \N \N \N \N \N \N \N 78 0 77 1 1.24644400000000011 87.2570038 0 0 3 false 0.0150123649999999997 \N \N -0.0416877569999999989 10 7 7.34462740000000025 0 10 false 79 78.039318217413097 1.50983619575773997 51.6873016 20.9575819999999986 5 54.8158750422065992 12.1895191454112997 4.49696799999999985 21.0041219999999988 8 63.1401288543664023 11.1091729870390008 5.68360299999999974 20.2611559999999997 1.51149449999999996 0 0.742965699999999951 0.046539307000000002 0.696426400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.732287641287996 -61.9904719186470032 23.282455892698799 -11.9602612038193001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535903029116800 2505535903029116800 1136235801 2015.5 25.9520501713477003 0.36923590793945299 -2.06753294728191017 0.229259497201972001 0.0609460141640670999 0.357120246893138982 0.170659649999999996 -0.390467284200610998 0.92871790794201603 -2.87893036459598983 0.435240984633021022 -0.0469705870000000011 -0.0894091050000000026 -0.368552600000000008 0.158483700000000005 -0.101605445000000003 0.203647059999999991 0.0694730100000000017 0.117641209999999996 0.0421776619999999977 -0.0214887929999999991 165 0 163 2 -0.390273900000000007 150.516998 0 0 31 false 0.17954363000000001 1.53778489026778997 0.0786133444270029069 -0.0964490600000000031 19 10 0.830924699999999961 0 19 false 164 363.830317470309012 1.68512596827216998 215.906998 19.2861200000000004 16 191.533157347415994 8.92398287959129988 21.4627440000000007 19.645779000000001 16 266.894873138051025 10.5703086265225998 25.2494869999999985 18.6960699999999989 1.26000500000000004 0 0.949708939999999946 0.359659200000000012 0.590049739999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.734633074086986 -61.9746211640086031 23.2950471367260015 -11.9502250799777006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534833581820416 2505534833581820416 1570627120 2015.5 25.9991333102928017 3.42422415794820978 -2.09001498529184992 2.68403028126616006 \N \N \N \N \N \N \N 0.51767295999999996 \N \N \N \N \N \N \N \N \N 69 0 69 0 2.43209700000000018 94.7789993 5.71206484834520989 2.00841402996984986 3 false 0.00931648900000000071 \N \N -0.0260456430000000003 8 7 12.2558109999999996 0 8 false 70 86.926561625062007 1.57246605904768 55.2803993 20.840485000000001 6 63.9986735021993027 11.5846038430085994 5.52445939999999958 20.83596 6 67.8254585200652969 9.19424192156341924 7.37694929999999971 20.1834370000000014 1.51649999999999996 0 0.652523040000000054 -0.00452423100000000009 0.657047300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.845617381405987 -61.9746959931162991 23.3314156398728016 -11.9883507471546 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523082551293440 2505523082551293440 621711455 2015.5 26.0231020222524982 0.141117436333773993 -2.10159495574980015 0.0946603630323405026 0.573776883102322999 0.139977310780033004 4.09907049999999984 0.454366862182822018 0.338801546710666979 -4.89368549777740025 0.180828190714272002 -0.0233205219999999998 0.0539150720000000014 -0.272851940000000015 0.141303299999999993 -0.0935232200000000041 0.170794470000000004 0.0647470500000000004 0.0653428100000000012 0.0771178299999999983 0.0106076989999999999 159 0 159 0 -2.16246200000000011 118.519997 0 0 31 false 1.1239889999999999 1.58489644876031011 0.0324878589528473025 -0.0910960499999999979 18 10 0.30491486000000001 0 18 false 158 1387.59560589176999 2.08955181525261979 664.064026 17.8327080000000002 16 764.984582590660011 11.3661465562437005 67.3037800000000033 18.1422559999999997 15 942.592138742243037 12.6135878544522999 74.7283099999999934 17.3261099999999999 1.23060109999999989 0 0.816144940000000041 0.309547420000000018 0.506597500000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.902239955682006 -61.9748223343140978 23.3498826459914 -12.0078836289163995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534872236966016 2505534872236966016 1127307098 2015.5 25.9826495570008014 0.221400357206102988 -2.08211005099144986 0.142633340433497013 1.48087172570407999 0.217429526318042993 6.81081249999999994 9.25624276400104051 0.530322316813647054 -20.9541658205613999 0.270925906676677986 -0.057670082999999997 0.0600952579999999986 -0.274425770000000013 0.155205769999999993 -0.133867399999999998 0.200239630000000002 0.108061820000000003 0.0302755180000000013 0.0357964750000000012 0.000415236079999999985 166 0 166 0 3.02575400000000005 220.802994 0.665744548900028987 2.21391297669040021 31 false 0.463580849999999989 1.297323965573 0.0471598264120468985 -0.104778155999999997 19 10 0.473343699999999978 0 19 false 164 836.786520885421965 1.62437092131213001 515.14502 18.3818279999999987 16 203.788105728344988 12.3014685771877996 16.56616 19.578441999999999 16 1011.67563472407005 9.94735517956369009 101.702979999999997 17.2493170000000013 1.45253739999999998 0 2.32912449999999982 1.1966133000000001 1.1325111000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.80673087241999 -61.974649036030101 23.3186948094543993 -11.9749717888437992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534902301299328 2505534902301299328 878911215 2015.5 25.9922260106661014 1.78905592529284996 -2.083166111343 1.46910299776204001 2.43247643312106021 2.04359453710037986 1.1902931000000001 14.9973329167578004 4.78224216984155959 -14.5943282683280007 2.95615581882913014 0.341255299999999984 -0.381952349999999996 -0.213033210000000001 0.0187146800000000009 -0.300055919999999976 0.0691128200000000054 0.0126831050000000001 0.0616250370000000006 0.11128093 0.21044017000000001 95 0 95 0 2.9518184999999999 134.820999 4.20938358198865981 1.52806196011890005 31 false 0.0103077389999999998 \N \N 0.106183890000000003 11 9 4.26389930000000028 0 11 false 96 86.040468843361495 1.48528711264008995 57.9285011 20.8516079999999988 8 84.8264610388335996 22.3316429250168014 3.79848719999999984 20.5300599999999989 9 87.9556892870382967 6.45700956563350026 13.6217375000000001 19.9012600000000006 2.00814989999999982 0 0.628799439999999987 -0.32154845999999998 0.950347900000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.826083698398008 -61.9714854214012973 23.3274063800797009 -11.9794528004347001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540983975119872 2505540983975119872 1653447998 2015.5 25.9897419241858003 1.20327287869087995 -2.0581803332455002 0.829476471003790961 -0.526889982636214005 1.28150215557828995 -0.411150279999999979 -7.00760489550926025 3.6227824715449799 -6.89253898032606038 3.17136095540536989 -0.0018081588999999999 -0.403737659999999998 -0.12894659 0.270801599999999976 -0.143401830000000008 0.151015640000000007 -0.192361580000000004 -0.183416529999999994 -0.341846900000000009 0.187066270000000007 117 0 116 1 -1.62563649999999993 87.9256973 0 0 31 false 0.0219290419999999993 1.38154772539569004 0.29644428536192502 -0.116333640000000002 14 9 3.3151704999999998 0 14 false 118 100.661899859187997 1.1121590247289399 90.5102997 20.681204000000001 11 67.4631084436674939 21.2373423940217982 3.17662669999999991 20.7787229999999994 12 58.8570246125947989 8.74669754273242006 6.72905700000000007 20.3374230000000011 1.25489519999999999 0 0.441299439999999987 0.0975189199999999951 0.343780519999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.798453724062995 -61.9499968565369983 23.3343792824333001 -11.9552883453132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521746816912256 2505521746816912256 413327641 2015.5 26.0389667963580003 0.113188662320798994 -2.17838362936292995 0.0858606996959483948 2.9271804435656299 0.130689583960967998 22.3979630000000007 40.2376409574080967 0.246761303850697999 -4.47198480405644982 0.163040771149124991 0.0692963300000000032 0.254512249999999995 0.0109824390000000001 0.0706509300000000007 -0.216902399999999995 0.0412782540000000003 0.0436521699999999971 -0.0321432050000000011 0.161166189999999987 0.139159430000000001 169 0 168 1 2.41594340000000019 209.837997 0.359586168959186991 1.87220804252355011 31 false 1.43671079999999995 1.27342871438876992 0.0289112692627706003 0.00337823639999999988 19 10 0.221505750000000001 0 19 false 167 1959.61237996274008 2.43574825742309997 804.521973 17.4579410000000017 18 381.937327118924998 14.4395329141557003 26.4508100000000006 18.896408000000001 16 2524.19267006579003 16.6086606186719017 151.98051000000001 16.256615 1.48301269999999996 1 2.63979339999999985 1.43846699999999994 1.20132639999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.003384084639009 -62.0372240731806031 23.3362757640642009 -12.0851543085036006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521746816911872 2505521746816911872 943305144 2015.5 26.0369677013550991 0.0304115527021095004 -2.17412543876563991 0.0249840532670402016 2.69278106200140988 0.0353914964349305999 76.0855399999999946 3.87551786311057 0.0646459525515469952 -4.48479703577067035 0.0542086090749279992 0.104167140000000005 0.328609099999999987 -0.0116422399999999999 -0.0147877570000000003 -0.196649419999999991 -0.0984736600000000045 -0.241797480000000009 0.0138228610000000005 0.190705760000000002 0.2417184 167 0 166 1 -1.7503652999999999 131.007004 0 0 31 false 26.3058450000000015 1.47669911475079996 0.00837940313739241917 0.0116251229999999994 19 10 0.0697358849999999975 0 19 false 163 21624.314138985701 9.9007769272781303 2184.1001 14.8510100000000005 19 8556.33098730990059 34.0102605738418973 251.580870000000004 15.5206689999999998 18 19071.0790265456999 28.0385715724758988 680.173000000000002 14.0609819999999992 1.27760859999999998 0 1.45968720000000007 0.669658659999999961 0.79002859999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.995614126394997 -62.0342495561210967 23.3359658344175003 -12.0804605937989002 100001 4417.66992 4346.06982 4625.66992 0.358500004 0.110600002 0.493999988 0.174700007 0.0810000002 0.25029999 200111 0.675340999999999969 0.615971099999999994 0.697776199999999958 0.156499400000000011 0.151691839999999994 0.161306959999999999 +1635721458409799680 Gaia DR2 2505521815535831424 2505521815535831424 142795799 2015.5 26.0277562934966014 0.653163305831212959 -2.16754577878817001 0.474029785307865992 2.7216632713973401 0.740079411227875017 3.67752860000000004 20.011630937576399 1.47910426228463998 2.74823232305899978 0.83999292017306304 0.0520672159999999995 0.161266739999999992 0.0137493249999999997 0.0916287449999999976 -0.236671569999999998 0.0902937000000000045 0.165301370000000003 -0.0562295650000000022 0.156409949999999992 0.0756428299999999942 165 0 161 4 6.03489300000000028 287.71701 3.02886268998802022 8.61963675514613925 31 false 0.0461210499999999968 1.16438004424288 0.152807849196368001 -0.0144447050000000004 19 10 1.29890299999999992 0 19 false 161 237.025206778797013 1.41859387553702998 167.085007 19.751379 10 139.956378791551003 17.0625886370063 8.20252900000000018 19.9864059999999988 9 425.302703723097011 17.0341075447534998 24.9677119999999988 18.190173999999999 2.38480569999999981 0 1.79623219999999995 0.235027309999999989 1.5612048999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.971848631056986 -62.0322980487547966 23.3296634019319988 -12.0709717588740002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521815536388224 2505521815536388224 1533766416 2015.5 26.028483823239899 0.0351175185566693984 -2.16794462821570999 0.0286216600232835003 1.32958322057726996 0.040627628181104998 32.7260860000000022 19.7625267840874983 0.0767627176387225968 2.58161497667231998 0.0617571680942195986 0.0975223800000000057 0.28280818000000002 -0.031354967999999997 0.00825690400000000067 -0.216598120000000005 -0.0481878440000000005 -0.187789769999999995 0.000755331600000000024 0.159882439999999987 0.241331149999999994 166 0 166 0 -2.34655740000000002 121.902 0 0 31 false 17.517277 1.51918575729218008 0.00979659069233933082 0.00426966700000000043 19 10 0.0797524099999999958 0 19 false 166 14726.4067414796009 6.79707493737569024 2166.58008 15.2681240000000003 15 6737.99640113674013 10.4906122652083003 642.288199999999961 15.7800609999999999 17 11512.3204511965996 34.0621244727002974 337.980099999999993 14.6090129999999991 1.2392919 0 1.17104819999999998 0.511937140000000013 0.659111000000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.973614168976013 -62.0323433817802012 23.3302063247503 -12.0716087434874009 100001 4938.25 4906.5 5029 0.287299991 0.172999993 0.449699998 0.132499993 0.076700002 0.223100007 200111 0.829159599999999997 0.799504699999999957 0.839925350000000015 0.368352200000000018 0.342755319999999974 0.393949099999999997 +1635721458409799680 Gaia DR2 2505521742521473152 2505521742521473152 104690333 2015.5 26.0374922632345012 0.118808962703203 -2.16985482885400982 0.0906998305262835952 1.89703502557369008 0.137191536882519005 13.8276389999999996 19.2559267415296986 0.262181050180502973 -9.88613008561475937 0.171664458034040013 0.0845921000000000034 0.236690370000000011 -0.00192068160000000003 0.0706059400000000059 -0.204548759999999996 0.0421916700000000006 0.0497340559999999987 -0.0277525220000000017 0.164548470000000002 0.135796840000000002 168 0 168 0 3.9158141999999998 243.544998 0.47249769040164602 3.40372361726325989 31 false 1.28223899999999991 1.31438912957772991 0.0297934100870080008 0.0113780159999999995 19 10 0.234844770000000008 0 19 false 168 2010.21015823916991 2.80193056944569996 717.437988 17.430261999999999 18 505.142955439565981 13.5915121460930006 37.1660600000000017 18.5928520000000006 17 2365.39234186163003 20.4738361823498991 115.532449999999997 16.3271620000000013 1.42797770000000002 0 2.26568980000000009 1.16259000000000001 1.10309980000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.992682185900009 -62.0301725186645001 23.3380610348132009 -12.0766770462420006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521575018219776 2505521575018219776 90670090 2015.5 26.0686490432724014 0.153297159942969996 -2.17242559783636979 0.0972213941151551936 15.9238143547696005 0.172890051037057013 92.1037100000000066 284.703577262456008 0.272277186817882988 21.4111464228497006 0.182722354536449999 -0.0396732429999999969 0.50399970000000005 -0.0676737899999999976 0.124885960000000004 -0.181499450000000007 0.0395019399999999993 -0.0609710099999999991 0.0440311899999999978 0.183302390000000009 0.132489699999999988 129 0 126 3 6.31875560000000025 247.242004 0.598338665857864993 7.23799259323662003 31 false 1.4076344999999999 1.17034187468252004 0.0352328812108586992 -0.0331013650000000006 15 10 0.242857960000000012 0 15 false 126 2960.71959685312004 5.85770355686724997 505.440002 17.0098720000000014 13 328.273453882991021 26.7345501603591984 12.2789959999999994 19.0607989999999994 13 4446.98037223785013 10.8315402061372996 410.558440000000019 15.6417570000000001 1.6128693999999999 0 3.4190415999999999 2.05092620000000014 1.36811539999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.054881219788001 -62.0190075207947018 23.3667377275078003 -12.0904482238509008 100001 4095.25 3669.11011 4485.33984 0.147 0.0560000017 0.818099976 0.0920000002 0.0179999992 0.35679999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518478351107712 2505518478351107712 812990459 2015.5 26.0912053662565988 0.434057646033747024 -2.19594135247479993 0.360626740777670984 1.23981592849452005 0.497806236467116026 2.49055930000000014 -10.0914576609657995 0.981182818798558953 -12.0437647409328008 0.663088717480947998 0.233324659999999989 0.166267720000000008 -0.070993760000000003 0.0790245900000000057 -0.0452098770000000025 0.0635941800000000002 -0.0271966530000000012 0.0227533239999999984 0.188438699999999987 0.176860170000000011 138 0 136 2 0.829795100000000008 144.184006 0.787610969323792043 0.900038574744460029 31 false 0.103227520000000003 1.43312215880488991 0.106418411636294993 0.114784226000000003 16 10 0.871825929999999971 0 16 false 135 290.759373466148986 1.49203847547928992 194.873993 19.5295309999999986 12 109.590601032196005 12.0636875236715007 9.08433699999999966 20.2519549999999988 13 327.259521259899998 12.4863964418897009 26.2092859999999988 18.4746899999999989 1.50244559999999994 0 1.77726549999999994 0.722423550000000025 1.05484200000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.119924289847006 -62.0304141969581977 23.3794080892254996 -12.120573988456 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518482641810688 2505518482641810688 635484374 2015.5 26.091546882645499 0.0363587085460495008 -2.19379958583103019 0.0330503646309009969 1.79243185537999006 0.042220816753210301 42.4537469999999999 22.4312407075865003 0.0713360048511672978 16.9139968481702994 0.0661013285213909035 0.270834299999999972 0.413611169999999972 -0.0595727860000000026 -0.0445502200000000015 0.0211328580000000009 -0.130763600000000008 -0.345831569999999977 0.0413959360000000012 0.186861630000000001 0.267805130000000002 129 0 126 3 0.92741686000000001 135.289001 0 0 31 true 24.5197749999999992 1.54914369943857011 0.00949008834626948079 0.0868387199999999942 15 10 0.0779411500000000007 0 15 false 125 21188.3202482089 11.2951557441086994 1875.88 14.8731240000000007 13 10088.4416025348 47.7238978612101974 211.391819999999996 15.3418279999999996 12 16018.3036297480994 28.0215089708622003 571.643100000000004 14.2503790000000006 1.23212910000000009 1 1.09144970000000008 0.468704220000000005 0.622745499999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.11859630163201 -62.0283367748086008 23.3805334099341984 -12.1187050044269995 100002 4902.5 4597.8501 5044.1001 0.0160000008 0.00529999984 0.151999995 0.00800000038 0.00260000001 0.0716999993 200111 0.751769240000000005 0.710153699999999999 0.854691700000000054 0.294126539999999992 0.2784798 0.309773269999999989 +1635721458409799680 Gaia DR2 2505521609377958272 2505521609377958272 1061168351 2015.5 26.0771715932039001 0.0310102830947008995 -2.17331814283783009 0.027218943005836601 0.222922245450495993 0.0370407616740099019 6.01829530000000013 5.96316099125203003 0.0658509126035411035 -2.17352579764635001 0.0570984255320551998 0.182747660000000006 0.296777669999999993 -0.0872200900000000001 -0.0325860099999999986 -0.15371304999999999 -0.120949215999999998 -0.338580500000000006 0.0629350540000000042 0.218776539999999992 0.282232939999999988 147 0 147 0 -1.6523102999999999 115.353996 0 1.68651817232593998e-15 31 false 29.783885999999999 1.55101871270012004 0.00847028830933498067 0.0465687300000000026 17 10 0.0723294399999999948 0 17 false 142 24498.482950039499 9.80812246133067056 2497.77002 14.7155179999999994 16 11499.4478879644994 31.4816603077725006 365.274499999999989 15.1996959999999994 14 18768.1446241183985 48.8553411553912014 384.157469999999989 14.0783660000000008 1.23548839999999993 0 1.12132929999999997 0.484177599999999986 0.637151699999999988 \N \N 0 \N \N \N NOT_AVAILABLE 152.072062111786011 -62.0161193223551024 23.3745115797762004 -12.0943909942323007 100001 4955 4855.58984 4983.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521811240955264 2505521811240955264 1189070030 2015.5 26.0254807267209998 0.204318872714629007 -2.1568160828221199 0.146900196342542005 0.234137366999843 0.21462153949166099 1.09093130000000005 9.60299812003771081 0.482559729122436998 -2.60952743015459987 0.268630456082840974 0.0623165800000000034 0.1555367 -0.104539359999999998 0.120927185000000006 -0.0724880549999999957 0.115717799999999996 0.189117249999999987 -0.0177845789999999983 0.134576720000000011 0.0249351909999999989 156 0 156 0 2.40910050000000009 196.059998 0.304974168069642004 0.407763986744573981 31 false 0.487716880000000019 1.6913493427519799 0.0501267416092177967 -0.0473488270000000031 18 10 0.426486199999999982 0 18 false 155 793.761700604080033 2.14838546500571015 369.468994 18.4391399999999983 17 463.649508913686986 15.1361843119937998 30.6318629999999992 18.6859129999999993 18 539.598057447990982 11.7857780058788997 45.7838300000000018 17.9317439999999984 1.26391530000000007 0 0.754169459999999958 0.246772770000000002 0.507396700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.957589231804008 -62.0236052550428028 23.331509422211699 -12.0601533339573006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521948679911936 2505521948679911936 1659242199 2015.5 26.0458323064445985 0.283126811060148975 -2.14773604458713985 0.211326293300019008 -0.0481218998930598024 0.310059500590154025 -0.155202150000000011 0.463193803341567012 0.681019945921247039 -2.13552900532646994 0.393060668676114 0.0925616850000000047 0.000934643500000000038 -0.151091900000000001 0.091153449999999997 -0.168375820000000009 0.108330960000000004 0.0681547099999999934 0.0335180049999999966 0.147643300000000005 0.0864262950000000002 161 0 158 3 0.439243879999999975 160.125 0 0 31 false 0.235155370000000002 1.63696305522468011 0.0714521520877755001 -0.016337125000000001 18 10 0.601705099999999993 0 18 false 158 451.218341263147977 1.75957887415470005 256.434998 19.0523990000000012 16 309.694304145418982 14.0743915167597997 22.0040990000000001 19.1240559999999995 15 227.316527482538987 9.01102544233306979 25.2264879999999998 18.8703420000000008 1.19013520000000006 0 0.253713599999999984 0.0716571800000000009 0.182056429999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.988304271277002 -62.0066251396861006 23.3542603669970994 -12.0591342316232009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521952975341184 2505521952975341184 1582511183 2015.5 26.0459030164947016 0.0577957233020700012 -2.14454992837088998 0.0449808900658918986 1.38114176958645007 0.0646646317623679051 21.3585339999999988 118.910969407856001 0.129079184970167987 -47.6743965326071972 0.0919854087810264009 0.0619318150000000012 0.196114640000000007 -0.0689724099999999979 0.0514341599999999996 -0.184324399999999999 0.0259861000000000016 -0.101611660000000006 0.000617952440000000039 0.15212384000000001 0.153718770000000005 161 0 161 0 -0.640402849999999968 144.326004 0 0 31 true 5.80570460000000033 1.5234234400831701 0.0150598474982159992 -0.0174692380000000015 18 10 0.121718034000000003 0 18 false 159 5387.29569972171976 3.99113007059099001 1349.81995 16.3599400000000017 14 2513.33444631391012 19.6307847111261999 128.030259999999998 16.8507630000000006 11 4227.53908129034971 21.2324314307528006 199.107640000000004 15.6967009999999991 1.25125369999999991 0 1.1540623000000001 0.490823750000000003 0.663238499999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.985504124946004 -62.003721904951199 23.3555182329297004 -12.0561943086252992 100001 4955.97998 4852 5142.77002 0.105300002 0.00400000019 0.314799994 0.0520000011 0.00190000003 0.167600006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521987335079424 2505521987335079424 1332234691 2015.5 26.0603690350212993 0.0260790003778655008 -2.1411354871986501 0.0206384185252724006 1.65218396024328995 0.0291814116421358002 56.6176829999999995 17.2433880775786008 0.0563134614982849988 0.184704597241815011 0.0458215722843060003 0.0522450470000000028 0.256213899999999994 0.0375168849999999998 -0.0341869439999999969 -0.194219300000000011 -0.135616779999999992 -0.377163740000000025 -0.0148361194999999998 0.22947569000000001 0.20492262 151 27 149 2 2.83724800000000021 196.893005 0.0425584233555363969 0.408976329071398026 31 true 114.196709999999996 1.61386730505509002 0.00690095619945622039 -0.0499717299999999989 17 9 0.0567263299999999984 0 17 false 144 115941.45847297 55.9653779217303011 2071.65991 13.0277689999999993 15 64860.3323065510995 124.447647247796993 521.185669999999959 13.3214410000000001 16 74875.418613867907 130.089185799035988 575.569899999999961 12.5760719999999999 1.20522679999999993 0 0.745368959999999969 0.293671599999999977 0.451697349999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.010117001737001 -61.994388943301999 23.3705538064100011 -12.0582984617012006 100001 6223 6045.5 6477.83984 0.0869999975 0.0199999996 0.230100006 0.0427000001 0.00889999978 0.115099996 200111 1.10460500000000006 1.01940270000000011 1.17042109999999999 1.64857180000000003 1.58413270000000006 1.71301100000000006 +1635721458409799680 Gaia DR2 2505522738953900928 2505522738953900928 386217618 2015.5 26.0470636921637002 0.209161328108676992 -2.12743467334786018 0.139733950020652004 0.177221043910309989 0.224967860884218995 0.787761599999999951 7.84560751102695964 0.442377205472879009 -9.76413862158974943 0.254979601448637017 -0.0705772100000000013 0.229024890000000009 -0.152425410000000011 0.115574109999999994 -0.277840640000000028 0.100330143999999996 0.0258799769999999985 0.0459890179999999996 0.154608030000000007 0.0841529000000000027 146 0 145 1 1.50238570000000005 165.927002 0.399688826610546 0.835687751303427984 31 false 0.576745570000000041 1.68434662894760989 0.0462356799858366987 -0.0659153400000000028 17 10 0.392436500000000021 0 17 false 145 923.171201764995999 1.87970509077415993 491.126007 18.2751599999999996 16 527.900409857889031 10.3214816619413998 51.1457979999999992 18.5450079999999993 15 593.360081326071054 8.51849573777879954 69.6555000000000035 17.8286249999999988 1.21457480000000007 0 0.716382999999999992 0.26984786999999999 0.446535100000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.971969514848013 -61.9877879402868004 23.3630174723745014 -12.0406865984218996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188642688 2505528683188642688 355850717 2015.5 26.0461514878183991 0.0741484939841449975 -2.11468978934109986 0.0509054067731542978 0.0512771981565615029 0.0741591199278652941 0.691448330000000055 -0.0787831038892272961 0.173355029878562994 -1.35130080158962995 0.103235365986907995 -0.0352955599999999967 0.141671170000000013 -0.208182040000000013 0.113745150000000003 -0.0839633300000000027 0.129846130000000004 0.00274757920000000006 0.0146006399999999998 0.0643323660000000019 0.0161274910000000007 158 0 158 0 0.594399699999999975 162.938995 0 0 31 false 4.0801280000000002 1.47897941827506996 0.0174290272862304002 -0.100660780000000005 18 10 0.160646129999999998 0 18 false 158 4012.14192054428986 4.22439459588960986 949.755005 16.6799259999999983 17 1629.54316520672 15.2262783546291001 107.021770000000004 17.3212240000000008 17 3494.11652746776008 18.8859166991230012 185.011750000000006 15.9035770000000003 1.27703849999999997 0 1.41764739999999989 0.641298299999999988 0.776349069999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.958492701776009 -61.9766890359442968 23.3669116066517013 -12.0284899594365999 100001 4490.5 4384.5 4995.24023 0.577000022 0.273499995 2.20429993 0.257299989 0.1285 0.917999983 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188643200 2505528683188643200 1648996611 2015.5 26.0481763148546008 0.77508890604806302 -2.1130280072488099 0.546009907039450959 1.16259838220947009 0.746738016683113015 1.55690259999999991 8.59736935692860982 2.06291904553021999 -26.6061458493913001 1.20210590360607994 -0.000668287039999999996 -0.211762470000000008 -0.414573760000000013 0.121384784999999995 -0.0110216989999999994 0.159771649999999987 -0.199190229999999996 0.191349330000000012 0.0202693359999999989 0.0191323400000000012 140 0 140 0 -0.398191870000000003 127.917999 0 0 31 false 0.0411685970000000012 1.30781323801552007 0.177926804892261009 -0.0861281599999999953 16 10 1.84591499999999997 0 16 false 140 150.337626015667013 1.36687314673209004 109.987 20.2456969999999998 11 63.8604517435231003 8.65300663963352079 7.38014599999999987 20.8383080000000014 11 162.556005003785003 9.71611159403632918 16.730561999999999 19.234413 1.50605319999999998 0 1.60389519999999997 0.592611299999999952 1.01128390000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.960847972832994 -61.9743160095473016 23.3694582592529017 -12.0276824515203007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521708161740416 2505521708161740416 1228284018 2015.5 26.0884105254850986 0.198572768116386994 -2.15611419217507994 0.147937904042916013 1.33065869500375 0.239793471784779 5.54918669999999992 31.0543869177864984 0.451241193191009027 3.19617917342249003 0.251524204800899986 0.130302000000000001 0.0758315299999999942 -0.149386099999999994 0.0971356849999999994 -0.205359039999999993 0.061117005000000002 0.0935873539999999976 0.104447380000000006 0.245047960000000009 0.105636190000000005 150 0 149 1 0.948033600000000032 159.979004 0.269210101979017014 0.311230223502248993 31 false 0.535960439999999982 1.40079116234695999 0.0466569649999808017 0.0384966799999999984 17 9 0.400209870000000023 0 17 false 146 813.864412057331947 2.07078903084206001 393.020996 18.4119850000000014 14 217.297035631914014 12.1694410679713005 17.8559589999999986 19.5087529999999987 12 916.682652021265994 11.2410753698900994 81.5475899999999996 17.3563730000000014 1.39332750000000005 0 2.15237999999999996 1.09676740000000006 1.0556125999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.077724406877991 -61.995746655291498 23.3916314323325985 -12.0824799053940009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527789835646080 2505527789835646080 46110733 2015.5 26.0840356816243002 1.13815874049589993 -2.13041913435586983 0.962955623970200958 5.3887720170741904 1.10477710447700006 4.87770100000000006 12.7148426475029002 2.90081822893638996 -13.5129511153527009 2.24798887133117997 0.0504194649999999966 -0.194055470000000008 -0.513052759999999997 0.0207910260000000006 0.0200399310000000004 0.0256346460000000005 -0.580707399999999985 0.307411880000000026 0.0203441209999999997 0.18246003999999999 106 0 104 2 -0.697494399999999959 88.8843002 0 0 31 false 0.027364755000000001 1.14999267719059994 0.275206265717322984 -0.00169008099999999996 13 9 2.67499179999999992 0 13 false 106 111.417967359873998 1.58637770712341997 70.2341995 20.5709780000000002 5 248.654992732696996 125.493830610651997 1.98141199999999995 19.3623939999999983 11 180.151223320668009 11.6145955584443001 15.5107610000000005 19.1228279999999984 3.84862700000000002 0 0.239566799999999996 -1.20858379999999999 1.44815059999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.045620160195995 -61.9744872947358019 23.397069298176401 -12.0569638119547005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527892914658176 2505527892914658176 654887735 2015.5 26.085395942644201 0.372554800901143013 -2.11969506348405989 0.220305962707148001 2.01733392513258014 0.36530427892692402 5.52233839999999976 9.16670998758053912 0.922548131697107032 6.59223748534351994 0.38742585107066102 -0.028969588000000001 -0.0339227949999999986 -0.42654955 0.151784659999999988 -0.0389844250000000031 0.163706330000000011 0.116284676000000003 0.214930890000000013 0.149443130000000007 -0.042647659999999997 133 0 133 0 13.5953455000000005 490.381012 1.64149345947702008 13.8942090986927003 31 false 0.234602270000000002 1.19033629013462994 0.0711658581111511007 -0.0493778439999999971 16 10 0.83114695999999999 0 16 false 133 998.52371199391996 3.76599300316317986 265.141998 18.1899699999999989 14 257.997257459916 14.7689861846859003 17.4688529999999993 19.3223500000000001 11 1231.52942727092 13.6392803857141995 90.2928500000000014 17.0358090000000004 1.49172890000000002 0 2.28654100000000016 1.13237950000000009 1.15416150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.038339979229988 -61.9642331082638975 23.4023691438553989 -12.0474775210534002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523013832463872 2505523013832463872 1424025286 2015.5 26.0255709890403004 0.777690570487609034 -2.10792315050530998 0.575256235754180945 4.12087267319722983 0.821616308358658953 5.01556829999999998 -17.3065365474917989 1.96677103040726009 -20.9527978990088002 1.09850508656627999 0.109699643999999999 -0.0904823899999999959 -0.157922459999999987 0.10178355 -0.0449132770000000014 0.14695242 0.0146960230000000008 0.0064162443999999999 0.101284490000000005 0.0798050399999999938 138 0 138 0 1.6700851000000001 161.380005 0.188395038577274992 0.00977709582759605025 31 false 0.0356982200000000027 1.10595851222323005 0.219780146754403993 -0.0814527599999999991 16 9 1.7326649999999999 0 16 false 138 128.992750437387002 1.26793898888367007 101.734001 20.4119530000000005 8 37.096194280639601 15.8278864129457997 2.3437237999999998 21.4280639999999991 14 219.399878855991005 8.67649055605988018 25.2867069999999998 18.9088290000000008 1.98845340000000004 0 2.51923560000000002 1.0161114 1.50312420000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.912788724096004 -61.9794668014918031 23.3498663170631993 -12.0146757838355001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528889347240320 2505528889347240320 1330458035 2015.5 26.0300961637253998 1.90848534100750999 -2.09911636164556992 1.50158631652005004 \N \N \N \N \N \N \N 0.066692814000000003 \N \N \N \N \N \N \N \N \N 63 0 63 0 0.145237370000000005 58.9021988 0 0 3 false 0.0140043500000000005 \N \N -0.0199042400000000001 8 8 5.28563549999999971 0 8 false 64 82.9703565772811942 1.63576898919062996 50.7224998 20.891058000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.913383007194994 -61.9695707832521023 23.3574602509560982 -12.0081306475400993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522807673383936 2505522807673383936 1348069095 2015.5 26.039132050007499 0.239124859251606009 -2.10957042623596003 0.165349264102364002 0.896722809325185 0.237474959686288012 3.77607319999999991 2.81225720054364992 0.585078285392438002 2.17168136073741014 0.301221655169677027 0.0174942689999999998 0.028260594 -0.285072739999999991 0.165071830000000003 -0.0064946976 0.197221260000000009 0.117719229999999994 0.0947899499999999978 0.0990299959999999951 -0.00161692169999999992 146 0 146 0 1.32609430000000006 163.723999 0.327307224528133989 0.402678157516011992 31 false 0.408632160000000022 1.36062124891645997 0.0538392227866092005 -0.0702117599999999981 17 10 0.52205020000000002 0 17 false 147 675.705324053328013 1.62205662173484 416.572998 18.6139720000000004 13 235.468084865679998 13.6379164858433999 17.2656939999999999 19.421558000000001 12 654.02766621140097 5.8048539417467202 112.6691 17.7229290000000006 1.3163959999999999 0 1.69862939999999996 0.807586669999999951 0.891042699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.940320843703006 -61.9751024096687004 23.3621481509491993 -12.0211613988865 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188645760 2505528683188645760 704906790 2015.5 26.0434204990345002 0.172209552996287013 -2.10583296874072978 0.106865640346981997 0.292460576176835019 0.15671000763895801 1.86625339999999995 2.93442286739947011 0.418350536525819994 -24.7221975890925982 0.201552115800347986 -0.116886320000000002 -0.0372863000000000014 -0.434163999999999994 0.205131869999999994 -0.0300857650000000004 0.262472360000000016 0.028416170000000001 0.163824890000000001 0.0267925900000000015 -0.0608162019999999998 151 0 148 3 0.4299153 149.705994 0 0 31 false 0.964137800000000045 1.53419424676081007 0.0374453224795276984 -0.13526624000000001 17 9 0.381932319999999992 0 17 false 146 1201.12846272651996 2.29682727223118999 522.950989 17.9893910000000012 14 550.470553869565947 7.18465902635444031 76.6174900000000036 18.4995539999999998 14 927.125457973999005 10.4367176818914995 88.833045999999996 17.3440739999999991 1.23017320000000008 0 1.15547939999999993 0.510162349999999987 0.645317099999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.945111144993007 -61.9698805542562994 23.3676230761583987 -12.0192483558828993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528923706821888 2505528923706821888 831485924 2015.5 26.0453974403719002 0.352938851206510973 -2.08739858819224011 0.242612615721987002 -0.207779613021404991 0.348841122002521986 -0.595628200000000052 1.19478763617459993 0.895936440061622985 -6.21364870776617995 0.440577854764893972 0.018017847 -0.0615455619999999981 -0.304371100000000006 0.15829124 -0.00939189300000000012 0.196149450000000003 0.132169680000000012 0.11099974 0.102742575000000003 -0.0186462919999999983 148 0 148 0 0.6722051 153.970993 0 0 31 false 0.185961619999999994 1.59375546881857999 0.080279133605644995 -0.0748088499999999962 17 10 0.797486959999999967 0 17 false 145 378.898772524391006 1.47672700274887991 256.579987 19.2420580000000001 15 196.016134036072998 10.5712130125259005 18.5424439999999997 19.6206589999999998 17 295.185338487112006 13.1329389585952008 22.4767149999999987 18.5866830000000007 1.29639229999999994 0 1.03397559999999999 0.378601069999999984 0.655374499999999971 \N \N 0 \N \N \N NOT_AVAILABLE 151.931966171527989 -61.952400604182003 23.3763896324429012 -12.0028104397182993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528717548387968 2505528717548387968 207694698 2015.5 26.0548603542522983 0.292250624192428976 -2.09787378038803984 0.188946096025763011 0.52223593225180498 0.282068867743712981 1.85144829999999994 18.4880288672636013 0.727359751635806018 -19.8000191670683989 0.342736607484957989 -0.0266766919999999984 -0.0497143270000000026 -0.328594949999999997 0.171782779999999996 -0.0994657349999999996 0.22195026000000001 0.150083899999999992 0.0979140800000000006 0.059539393000000003 -0.00887805900000000064 158 0 156 2 1.34316419999999992 174.828995 0 0 31 false 0.288563220000000009 1.48488726055068998 0.0644325265717988066 -0.100048079999999998 18 10 0.649945439999999985 0 18 false 157 514.051693296976964 1.59712625364765004 321.859985 18.9108489999999989 14 212.079498491374011 8.69802711250149052 24.3824830000000006 19.5351409999999994 14 477.707648428618995 12.9676892476025003 36.8383030000000034 18.0640140000000002 1.34186340000000004 0 1.47112660000000006 0.62429239999999997 0.846834199999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.959730248157996 -61.9577633449094023 23.3814765359628005 -12.0160165257667 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528824923013376 2505528824923013376 667648886 2015.5 26.0644190467370009 0.0463405725513063027 -2.09236290581418993 0.0341697577352209972 1.36758395453410997 0.0485809028889210986 28.1506499999999988 2.31635661001875981 0.111449733116337005 -15.8415395828693999 0.0745297723507409027 -0.0115717990000000007 0.129573610000000006 -0.145466569999999989 -0.00582710100000000033 -0.134709309999999999 -0.0390362959999999981 -0.113849839999999994 0.0377132780000000029 0.18120660999999999 0.0037682417000000001 141 0 141 0 -0.692052200000000006 124.274002 0 0 31 false 11.9919709999999995 1.50733594396112003 0.0119812565421516005 -0.0855134060000000001 16 10 0.108022443999999995 0 16 false 141 10430.5777246016005 5.54908707364518961 1879.68994 15.642595 15 4643.38705999660033 28.1585030096393005 164.901780000000002 16.1843010000000014 16 8366.92956339042939 25.176173249898401 332.335239999999999 14.9555039999999995 1.24732460000000001 0 1.22879699999999992 0.541706099999999968 0.687090899999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.972984261872995 -61.9486650377331998 23.3926261339533994 -12.0143764519719003 100001 4887.66992 4841.06982 5137.75 0.1087 0.0350000001 0.248600006 0.063000001 0.0269000009 0.1338 200111 0.696802900000000003 0.630619170000000007 0.710281199999999946 0.249643880000000012 0.230073080000000013 0.269214699999999973 +1635721458409799680 Gaia DR2 2505529026786039424 2505529026786039424 594551104 2015.5 26.0655457113042992 0.507147733860038974 -2.07950547923205997 0.308241314163761992 0.569611666977701048 0.475431248504018023 1.19809469999999996 9.01437874973341025 1.30909655761895993 -6.95575975016726034 0.537832645323230052 -0.0546041700000000005 -0.183007360000000008 -0.424746659999999998 0.181369570000000008 -0.0324002470000000001 0.23774882 0.176048819999999995 0.194475409999999987 0.0796314800000000045 -0.0708091500000000013 149 0 147 2 0.680811000000000055 153.082993 0.800493564005486991 0.654776853260397029 31 false 0.114516019999999996 1.27951912601677997 0.101631837948628997 -0.134984910000000013 17 9 1.17670319999999995 0 17 false 147 279.989028601039024 1.32242542908611993 211.723999 19.5705129999999983 15 68.0124007756033961 6.89714447751461002 9.86095000000000077 20.7699180000000005 15 322.036852601644 9.74040634560360985 33.0619500000000031 18.4921569999999988 1.39308760000000009 0 2.27776149999999999 1.19940570000000002 1.07835579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.963326954704002 -61.9365841434161979 23.3984997927820011 -12.0028190005543003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529129865259776 2505529129865259776 987710764 2015.5 26.0524288316161012 0.568476737611252947 -2.06214609995062981 0.329743550834464993 0.369936236368933025 0.492492113034219026 0.75115160000000003 4.71034320740478041 1.69893826030497008 -2.30915941519818979 0.607237484139593997 -0.123918539999999994 -0.241610569999999997 -0.503276100000000004 0.208835409999999999 0.100374779999999997 0.184945300000000007 0.233486150000000003 0.215841599999999995 0.0913110399999999961 -0.275858969999999981 131 0 131 0 2.86792179999999997 176.395004 1.08459574258478009 1.42154159416892001 31 false 0.114195260000000007 1.60049092555805994 0.103815709036464004 -0.149152819999999992 15 9 1.53135299999999996 0 15 false 130 312.241000109556978 1.58318922725794997 197.223007 19.45214 11 125.913925282202001 12.2265776473168 10.2983790000000006 20.1012039999999992 12 298.714848598211972 9.47335736089070046 31.5320989999999988 18.5737780000000008 1.3599391999999999 0 1.52742580000000006 0.649063100000000004 0.878362659999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.922265977524006 -61.926588924816997 23.3925083007362993 -11.9818707841260998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528756203536896 2505528756203536896 879622560 2015.5 26.0865859710581987 0.0347743028298728996 -2.10351244590350994 0.0264848859318188995 0.598559407850920988 0.037057636474432297 16.15212 6.49506617977384959 0.0818178754091929972 0.676074356279640964 0.059312727536212799 0.0129134880000000007 0.16538137 -0.15037797 -0.0159139070000000014 -0.150869609999999987 -0.0555786269999999985 -0.190565740000000011 0.0483206029999999967 0.176675959999999993 0.0643118839999999997 141 0 139 2 -1.62264319999999995 108.571999 0 0 31 false 24.0226420000000012 1.56178572085098 0.00902770208583015057 -0.0771126699999999943 16 10 0.0834404499999999993 0 16 false 138 20188.6805786984005 7.61462616081225008 2651.30005 14.9255960000000005 15 9946.50726061737078 24.3000919497544992 409.319729999999993 15.3572120000000005 13 14812.8838830980003 21.591173612715 686.062000000000012 14.3353199999999994 1.22639969999999998 0 1.02189160000000001 0.431615829999999978 0.590275760000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.025711232129993 -61.9491321072817982 23.4095454489739012 -12.0328476582867001 100001 5296.54004 5072.8999 5718.4502 \N \N \N \N \N \N 200111 1.81356260000000002 1.55582630000000011 1.97698989999999997 2.33201029999999987 1.99778570000000011 2.66623469999999996 +1635721458409799680 Gaia DR2 2505540880900538624 2505540880900538624 910501953 2015.5 26.0438362958818992 0.153600541944618002 -2.0561005690139198 0.0852741380916507002 0.269483450671551994 0.128404200147364006 2.09871220000000003 1.30829266101353991 0.39619429880342899 -7.98549455618026016 0.164068677548953989 -0.174893959999999987 -0.13937679 -0.552984950000000031 0.224699110000000007 0.000664540000000000031 0.27786797000000002 -0.00416988499999999991 0.248549760000000008 0.00745063700000000041 -0.137137490000000001 149 0 149 0 0.253310170000000001 147.662994 0 0 31 false 1.50214000000000003 1.64704557069044011 0.0288424557035706006 -0.13633321000000001 17 9 0.367514600000000025 0 17 false 148 1741.42574471310991 2.62760248275364994 662.742981 17.5861030000000014 16 1049.15712968673006 17.2960206615952998 60.6588750000000019 17.7992859999999986 16 1155.08878328805008 9.67185018588602041 119.427899999999994 17.1053810000000013 1.26577080000000008 0 0.693904900000000047 0.213182449999999996 0.480722429999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.900262841820989 -61.9248401453669004 23.3865946983531998 -11.9731060703570993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540885191179520 2505540885191179520 1240499226 2015.5 26.0458589688854012 5.6521311654017703 -2.05363809357809002 3.80194917039127001 \N \N \N \N \N \N \N -0.285825759999999984 \N \N \N \N \N \N \N \N \N 42 0 42 0 63.6506350000000012 7703.12012 17.5819312115253013 837.884592766743026 3 false 0.00318273089999999981 \N \N -0.143008009999999991 10 9 8.89048599999999922 0 17 false 150 1298.07301261849011 17.5117695350020988 74.1257019 17.9051170000000006 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.90188084972101 -61.9217466331783015 23.389437808694499 -11.9715522728173003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529507822383616 2505529507822383616 114779796 2015.5 26.0715228258223988 0.553733485835084971 -2.05455357344400014 0.354406137015531975 0.439763739112685015 0.537599816650301987 0.818013199999999996 5.85715783699899006 1.46722535539880994 -1.78520665664453992 0.640778285374405954 -0.00228697299999999987 -0.189237249999999996 -0.372507240000000017 0.153017280000000006 -0.0614562199999999989 0.191348839999999992 0.170323059999999998 0.153403600000000001 0.0865527900000000044 -0.0552085800000000002 160 0 160 0 1.66764099999999993 185.501999 0 0 31 false 0.0794808699999999951 1.68852582099762993 0.118259273564339004 -0.0950903800000000021 18 10 1.30945350000000005 0 18 false 160 222.900904549029008 1.37999741294485001 161.522995 19.8180869999999985 17 118.567869230772004 8.39091460350423013 14.1305060000000005 20.1664710000000014 17 150.610682808034994 9.36738722316263939 16.0781959999999984 19.3172800000000002 1.20761539999999989 0 0.849191669999999954 0.348384860000000018 0.500806799999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.951863792289004 -61.9115008711154005 23.4135021688631006 -11.9817732729715001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533119889972480 2505533119889972480 1509400115 2015.5 25.7942333139890998 0.755014614491252956 -2.18107161734286015 0.666128656567908983 0.62792366780347797 0.908838849279137051 0.690907599999999955 24.2324507117665995 1.8314104063505301 -6.57912883546801996 1.91098338044407989 0.142835380000000012 0.280443500000000012 -0.0490638799999999972 0.0457212899999999978 -0.202328000000000008 0.0766581739999999956 -0.112788070000000004 -0.202165960000000006 -0.201384339999999995 0.500804999999999945 148 0 147 1 3.48832129999999996 208.408997 2.7609091816992799 26.0349377561788984 31 false 0.0316976640000000004 1.42972839238746996 0.228153733133006992 0.079145454000000004 17 9 2.0154662000000001 0 17 false 146 152.025171188017993 1.42064222667476003 107.012001 20.2335780000000014 12 50.3022985608997004 7.60692421174339994 6.6126990000000001 21.0974180000000011 14 210.994469451034007 8.10897319340459966 26.019874999999999 18.9512420000000006 1.71877300000000011 0 2.14617540000000018 0.8638401 1.28233529999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.534032663623009 -62.1447052723675029 23.1025445020372011 -11.9981918029076002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533184314495360 2505533184314495360 1294990403 2015.5 25.8308443188070989 1.69422304978895011 -2.16765629900462997 1.89373351058855999 \N \N \N \N \N \N \N 0.144036200000000003 \N \N \N \N \N \N \N \N \N 74 0 73 1 -0.24757499999999999 64.5076981 0 0 3 false 0.0111205885000000004 \N \N 0.0477361599999999997 10 8 5.14469770000000004 0 10 false 77 69.7202197876148944 2.23551939793923982 31.1875 21.0799699999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.59256372789099 -62.1169599064580993 23.1423707412992989 -11.9991008971332 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532432695544960 2505532432695544960 1112406689 2015.5 25.8368810331763008 0.121806752888125994 -2.17303236839343983 0.101899991458151998 0.447086449351030979 0.14290973904245699 3.12845329999999988 12.6571965850945993 0.272115043398905021 -3.73190694016135982 0.211484396962521998 0.123183349999999997 0.285634300000000008 -0.0153316649999999995 0.13215231999999999 -0.272575000000000012 0.224290970000000006 0.213284100000000004 -0.142044229999999994 -0.0963656160000000012 0.327770080000000019 170 0 169 1 2.03778360000000003 202.973999 0.312381382446601019 1.07966791702705001 31 false 1.17018690000000003 1.51358840831914998 0.0343758763367872019 0.0571654029999999966 19 10 0.258698199999999989 0 19 false 167 1549.31894691668003 3.01347840073667994 514.130005 17.7130130000000001 15 731.033667831214984 14.1684918122360006 51.5957300000000032 18.1915450000000014 17 1187.49603724673989 8.17573534432515991 145.246379999999988 17.0753400000000006 1.23830520000000011 0 1.11620520000000001 0.47853279999999998 0.637672400000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.609138223906996 -62.1192430293626998 23.1460982169618994 -12.0063119007515997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536860806507264 2505536860806507264 241815235 2015.5 25.7931343930746984 11.6836126544670993 -2.12035482741246994 12.4584038568725006 \N \N \N \N \N \N \N 0.982514740000000053 \N \N \N \N \N \N \N \N \N 56 0 55 1 -1.41746020000000006 36.578701 0 0 3 false 0.0103669529999999999 \N \N 0.166626469999999999 7 5 95.6598000000000042 0 7 false 58 66.5350886317686019 1.65109851407367003 40.2975006 21.1307399999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.476604427679007 -62.0902402208008013 23.124222676509099 -11.9412883334701991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533257328645632 2505533257328645632 1269920567 2015.5 25.8088250251707017 0.644575865899502998 -2.15621979147202003 0.532873291816919004 2.06034601850441978 0.756970436545419956 2.7218315999999998 2.31246420638619021 1.45261219322552004 -3.94036289642611992 0.927872241655528951 0.0628820699999999982 0.254699740000000008 0.0671589900000000017 0.121252330000000005 -0.299722849999999985 0.189037280000000002 0.422514300000000009 -0.160631219999999991 -0.035504527000000001 0.148946729999999999 170 0 170 0 4.15330099999999991 251.647995 2.25259208068773997 2.69161392440163016 31 false 0.044300616000000001 0.887660915831068986 0.159711658218900987 0.0299894250000000001 19 10 1.29404190000000008 0 19 false 170 185.552572477687988 1.43514174279124007 129.292007 20.0171990000000015 14 71.3331793946945965 20.8596471211284005 3.4196734000000002 20.718159 16 268.462228153204023 8.83426616947959964 30.3887399999999985 18.6897130000000011 1.83126220000000006 0 2.02844619999999987 0.700960160000000054 1.32748599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.539578299590005 -62.1160084779852966 23.1257173461156 -11.9804036852859994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533463487669504 2505533463487669504 854522636 2015.5 25.8015663955197994 0.0360378625493966986 -2.14390799109860009 0.0301216898294147002 1.93402458139299993 0.0418032946440404021 46.2648849999999996 12.9800438769301003 0.078513511364666097 1.22673510150657994 0.0701080941207546937 0.128935920000000009 0.356669159999999985 -0.0500069799999999995 0.0741715200000000047 -0.188070309999999991 0.144474330000000012 0.0704154740000000057 -0.120090799999999998 -0.1017652 0.352764279999999986 170 0 169 1 -1.2962958 141.022003 0 0 31 true 15.1528980000000004 1.48885585132796994 0.0111970546335421993 0.0571907399999999969 19 10 0.0865278599999999981 0 19 false 168 12566.3657855913007 6.02677339165528991 2085.09009 15.4403419999999993 17 5218.50828142717 22.4459876379002985 232.491800000000012 16.0575219999999987 19 10677.1292731448993 17.0519487015404003 626.15300000000002 14.6907835000000002 1.26493509999999998 0 1.36673829999999996 0.617179900000000004 0.749558449999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.514330375523997 -62.107963131518197 23.1234244800583006 -11.9662911730594992 100001 5034.5 4657.33008 6925.37988 0.0966999978 0.0335999988 0.254999995 0.0476999991 0.0136000002 0.127100006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533459192267008 2505533459192267008 963976918 2015.5 25.8080575916916999 0.0885160941430202935 -2.14504929798980992 0.0708869845998296999 -0.0228769654999093006 0.102598544095419006 -0.22297554 4.02507636718469985 0.201650963215816992 -4.12384074119578958 0.137488978343322993 0.130608649999999993 0.238249330000000009 0.0991991499999999998 0.148436160000000011 -0.263119339999999979 0.235563009999999989 0.277951659999999989 -0.206168669999999998 -0.0729102499999999959 0.277488740000000011 170 0 167 3 -0.688876400000000055 149.281998 0 0 31 true 2.42856259999999979 1.56880142002719003 0.0237840326873148995 0.00360075299999999994 19 10 0.189254160000000005 0 19 false 164 2508.49387124683017 2.74847238646992009 912.687012 17.1898330000000001 18 1401.29735539785997 13.0449670845595005 107.420529999999999 17.4850619999999992 18 1663.94141768041004 9.39696056375177946 177.072300000000013 16.7090740000000011 1.22194390000000008 0 0.7759876 0.295228959999999985 0.480758669999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.527913522389014 -62.1062311121805024 23.1291679236602015 -11.9697278179469002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533257329265280 2505533257329265280 612551898 2015.5 25.8219961103777997 0.43791697003739799 -2.15261033769313004 0.358313061610031014 0.791272875789961971 0.518111058889308973 1.52722629999999993 4.70026561881651972 0.977216048813282945 -1.24891305139053999 0.696419879221292004 0.13203993 0.247960939999999991 -0.0193763409999999983 0.158917100000000006 -0.289830860000000023 0.246698959999999995 0.217868940000000011 -0.134339380000000008 -0.071845874000000004 0.31609472999999999 170 0 170 0 1.68954070000000001 196.882996 0.973673784804813036 0.767589690590227969 31 false 0.0915043650000000042 1.53693560609110991 0.118159826249960007 0.0603070149999999985 19 10 0.901759740000000032 0 19 false 170 256.725445753276972 1.54456889483748006 166.212006 19.6646940000000008 17 151.770717246461004 6.5858231651482404 23.045065000000001 19.8984179999999995 18 195.744642665230003 6.85216223819530956 28.5668429999999987 19.0326960000000014 1.35364590000000007 0 0.865722659999999977 0.233724600000000005 0.631998060000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.561736171896001 -62.1071292765848 23.1395890465874992 -11.9818626648839999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533459196969216 2505533459196969216 625561801 2015.5 25.8053476768621017 1.20855149581587007 -2.13804375581359007 1.11483761959739991 -0.598095631103612968 1.50057703487201 -0.398577100000000017 2.17608436169367003 3.4947910612611599 -4.70681800296588992 3.3327988430461799 0.236199140000000002 0.00982598800000000078 -0.0385119950000000003 0.0129515299999999993 -0.206747220000000009 -0.102381070000000005 -0.388469669999999989 -0.237828000000000012 -0.169664029999999993 0.602489350000000035 102 0 102 0 0.160520699999999988 98.5775986 0 0 31 false 0.0187095999999999998 1.28978285840603002 0.358037026722044016 0.095539205000000002 12 8 3.80730820000000003 0 12 false 104 83.9034026251644036 1.46263977788995003 57.364399 20.8789179999999988 6 64.0353236915405972 14.5409795654993008 4.40378329999999973 20.8353390000000012 10 133.940042413370008 13.2031130661746001 10.1445810000000005 19.4446429999999992 2.35956300000000008 0 1.39069559999999992 -0.0435791000000000026 1.43427470000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.516296108532998 -62.1010478179261014 23.1292132961768004 -11.9622172231113009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536899461505664 2505536899461505664 683374630 2015.5 25.8061159967333005 1.54711984427197002 -2.1153352644868999 1.32869445353033 \N \N \N \N \N \N \N 0.182941240000000005 \N \N \N \N \N \N \N \N \N 122 0 121 1 43.9320499999999967 2890.8501 9.83986879137616022 217.896763550516994 3 false 0.0097895689999999997 \N \N 0.0451218629999999982 18 10 3.19174459999999982 0 18 false 159 492.355736809045993 5.11806412768023034 96.1996002 18.9576680000000017 15 717.469103394910007 14.5741968379882003 49.2287200000000027 18.2118800000000007 14 1462.04116912168001 9.40053031621670954 155.527530000000013 16.8495220000000003 4.42669800000000002 0 1.36235810000000002 -0.745788600000000024 2.10814669999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.497113894716989 -62.0801756377569021 23.1384401191203999 -11.9413657996137008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536968180982016 2505536968180982016 544349434 2015.5 25.7946502537519997 0.838777460353100968 -2.10591211725530014 0.681557309291740965 0.524993352570994998 0.984592724046196022 0.533208670000000051 9.65196575902944076 1.96626937286223002 -11.7771957785377008 1.35645617258275997 0.236801600000000001 0.1649177 0.0520788240000000027 0.201352630000000005 -0.202584600000000004 0.292556229999999973 0.193126750000000014 -0.206301420000000013 -0.129750499999999991 0.380165599999999992 142 0 139 3 0.954692899999999955 149.526001 0 0 31 false 0.0305608269999999987 1.39604733640450007 0.226594072068259988 0.0847098599999999979 16 10 1.83680080000000001 0 17 false 141 118.980464139980995 1.18518521758332995 100.389999 20.4996760000000009 12 40.5878749793646989 4.90846678934890956 8.2689509999999995 21.3303970000000014 15 186.096806953709006 5.68795585192633002 32.7176970000000011 19.0875720000000015 1.90522609999999992 0 2.24282460000000006 0.830720899999999984 1.41210370000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.466406681632009 -62.0765255833183005 23.1310671815830986 -11.9284025737823995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533940228615552 2505533940228615552 889356272 2015.5 25.8180015032666006 0.361293894791030024 -2.10884251684134005 0.215360560563175013 0.903010757158328015 0.335577595091121006 2.69091490000000011 -16.3478526209264992 0.760738618007447021 -28.051355599841699 0.36301371719349701 -0.157783480000000004 0.229876949999999997 -0.151759179999999994 0.205877990000000011 -0.299737570000000009 0.369443919999999981 0.28331748000000001 -0.176784589999999991 -0.0715543899999999955 0.103288904000000001 122 0 121 1 16.7667870000000008 602.64502 1.57756597197819004 27.7982326133416002 31 false 0.319190919999999989 1.47657904080992997 0.0709110256698717994 -0.215060129999999988 14 8 0.67926439999999999 0 15 true 121 1811.22693239813998 10.2577156454327998 176.572006 17.5434340000000013 12 463.946730562466996 10.5750137101448995 43.8719749999999991 18.685219 10 2629.04807532084988 18.3817479840556004 143.024920000000009 16.2124230000000011 1.70767939999999996 0 2.47279550000000015 1.1417847000000001 1.33101080000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.514154277359012 -62.0692420573172967 23.1521668010388986 -11.9396708217404992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537071260196736 2505537071260196736 1032441757 2015.5 25.806346968459799 2.08588726437550998 -2.0917018258602802 1.6619530425784399 \N \N \N \N \N \N \N 0.115433194000000003 \N \N \N \N \N \N \N \N \N 119 0 119 0 44.9312249999999977 3022.36011 12.8303949171792002 185.14866435252199 3 false 0.00569696630000000002 \N \N -0.000808579149999999968 16 10 4.25838300000000025 0 16 false 136 327.503620265994016 4.45945133484578982 73.4403 19.4003259999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.476080930006987 -62.058692308346302 23.1475007881949999 -11.9194567762746004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537032605203072 2505537032605203072 1381249613 2015.5 25.8269888676497992 0.713816538476114038 -2.08999606174279018 0.637784373884209055 -0.936294910650241952 0.844962964755355039 -1.10808989999999996 0.486027608480973983 2.00322286788777015 -2.33858199457635996 1.94590738298588994 0.151844929999999989 0.00833142549999999968 -0.162412630000000002 0.0128412790000000006 -0.308533669999999982 -0.0861486050000000031 -0.364065680000000003 -0.0955153400000000041 -0.0823923299999999997 0.550080659999999999 123 0 122 1 0.288413799999999998 120.785004 0 0 31 false 0.046305302999999999 1.7277980147010501 0.202750631557626987 0.0557104500000000016 14 9 2.16232559999999996 0 14 false 122 154.704618382602007 1.36706402769163993 113.166 20.2146070000000009 11 133.758321347008007 12.6785653775464997 10.5499569999999991 20.0355850000000011 11 117.008162182174004 7.53549021895407023 15.5276110000000003 19.5913800000000009 1.62093719999999997 0 0.444206239999999974 -0.179021839999999988 0.623228099999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.514357654181993 -62.0483651775724994 23.1677591673715 -11.9254186399576998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537071260196608 2505537071260196608 296052994 2015.5 25.8083466916566984 0.0331880554736836003 -2.08656657705222992 0.0263045935302302983 0.42961875860674098 0.038516705450489401 11.1540890000000008 8.00023876470029016 0.070724721664819204 0.580874410126717033 0.0561830056015560977 0.188357639999999993 0.375010940000000015 0.0476706660000000004 0.0930056600000000039 -0.0868189860000000008 0.146490900000000007 0.107939740000000006 -0.168216959999999999 -0.0740597999999999951 0.313581469999999973 159 0 159 0 0.696944200000000014 165.856995 0 0 31 false 23.5915779999999984 1.58313753376383004 0.0094331613566789492 0.0506109299999999984 18 10 0.0759132000000000001 0 18 false 158 19243.3387988916984 9.17003185376205998 2098.5 14.977665 16 9880.83619540159089 38.8134698854768985 254.572339999999997 15.3644040000000004 16 13541.7994818934003 33.2488661705186033 407.286040000000014 14.4327290000000001 1.21718140000000008 0 0.931674960000000052 0.386738780000000004 0.544936199999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.475276715413003 -62.053194824033703 23.1513223606471001 -11.9154092190309999 100001 5405 5340 5489 \N \N \N \N \N \N 200111 2.35224650000000013 2.28080300000000014 2.40985940000000021 4.25444699999999987 3.37822179999999994 5.13067250000000019 +1635721458409799680 Gaia DR2 2505537032605077504 2505537032605077504 1620832756 2015.5 25.8222882087633998 0.424865021634236006 -2.0865744922402798 0.339689588791133978 1.7292188497566201 0.48978311926267698 3.53058080000000007 6.65086925147805008 0.999424133659010949 -16.7497573408050009 0.593309673715628039 0.172158460000000013 0.146751519999999996 0.062902405999999994 0.217741330000000011 -0.295700899999999989 0.325883750000000028 0.38187589999999999 -0.208560269999999992 -0.0887231599999999954 0.277846399999999993 167 0 165 2 2.66275070000000014 211.710999 1.39438293315302997 2.51124715559065015 31 false 0.109096824999999994 1.13541281655585991 0.106169229872179 0.0152288319999999994 19 10 0.908049800000000018 0 19 false 166 309.635559006671997 1.32817354139196997 233.128998 19.4612389999999991 16 72.9572316177627016 8.45262894259857944 8.63130699999999962 20.6937180000000005 18 399.012420696516983 6.9904969395769303 57.079265999999997 18.2594549999999991 1.52427470000000009 0 2.43426320000000018 1.23247909999999994 1.20178410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.502181150377993 -62.0472706945004973 23.1645707965788006 -11.9205153576826 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538583088456960 2505538583088456960 752325961 2015.5 25.8270432005488999 1.27250864356659998 -2.07414037250436012 1.08358856285437999 1.54784464724521009 1.46294056969450992 1.0580366000000001 1.76589802312738997 4.21604944163605033 1.02097190743818 3.69410241271667017 0.179003300000000004 -0.280564870000000022 0.0554547700000000005 -0.195669110000000007 -0.0282877119999999996 -0.116897249999999994 -0.249561880000000014 -0.301968069999999977 0.124571169999999995 -0.0184347179999999992 76 0 75 1 -1.17959849999999999 56.3708992 0 0 31 false 0.0219762229999999996 1.00511363357377004 0.379462702915377981 0.0883898659999999975 9 8 3.71192050000000018 0 10 false 75 93.1811628236605003 1.40434581468946007 66.3519974 20.7650450000000006 6 38.428603498517802 15.0661925310780997 2.55065130000000018 21.3897510000000004 6 115.167783558142006 18.2078365024465008 6.3251767000000001 19.6085929999999991 1.64836310000000008 0 1.78115840000000003 0.624706270000000008 1.15645219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.500056324250011 -62.0339968464502007 23.1737407483749998 -11.9106825477831997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538510073830144 2505538510073830144 259989614 2015.5 25.8345298760089008 0.807519190987252 -2.0759208682623802 0.660848467239989024 0.245971367758918008 0.903846956025493031 0.2721383 2.94860781634156988 2.24037361318654016 -2.70698080233706007 2.00479606917450992 0.107038960000000002 -0.0513616169999999983 -0.112442769999999997 0.104830413999999997 -0.171127000000000001 0.0700475700000000034 -0.208483439999999992 -0.17291687 -0.208870560000000011 0.395623700000000023 124 0 119 5 0.964457149999999985 128.468994 0.405024622370533993 0.0529050195886284005 31 false 0.0359522140000000032 1.60323665506758006 0.231256405072524013 0.0126531000000000005 15 9 2.2152128000000002 0 15 false 119 134.625864797241007 1.36004822929298008 98.9860992 20.3655450000000009 12 112.099013286127999 13.2289352224381993 8.47377499999999984 20.2273850000000017 12 113.181647573787004 9.95186568624908041 11.3729080000000007 19.6274799999999985 1.67338319999999996 0 0.599905000000000022 -0.138160699999999997 0.738065700000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.516107693746989 -62.0324206008681998 23.1801910596573002 -11.9150772454245999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538132116715264 2505538132116715264 1119521272 2015.5 25.7918411680901016 0.605897389998694025 -2.05153681816877009 0.547265364515852948 -0.976715148304697967 0.68823757683590403 -1.41915400000000003 -6.71843385217979971 1.36020195103589003 -8.02519672930008987 0.919521143704116972 0.384637830000000014 0.141057490000000008 0.0185488739999999999 0.192218739999999999 -0.0580417179999999991 0.217497109999999994 0.167087910000000006 -0.0217535569999999998 0.0998490749999999955 0.317464619999999975 132 0 130 2 -0.365559069999999986 118.664001 0 0 31 false 0.0585752800000000004 1.39412453484869991 0.178915971558150005 0.153198869999999987 15 10 1.2447185999999999 0 15 false 129 186.171478784738014 1.73905029953850998 107.054001 20.0135819999999995 12 63.1107509753990996 9.84154646086738971 6.41268629999999984 20.8511300000000013 12 179.079491665316993 8.6758001734499306 20.6412660000000017 19.1293049999999987 1.30089879999999991 0 1.72182459999999993 0.837547299999999995 0.884277340000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.411670338022986 -62.0284997002947023 23.1487368731777998 -11.8767729601427003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532467055283840 2505532467055283840 1292372466 2015.5 25.8748388107478 0.140275267915312002 -2.19094086523598985 0.105836585213066006 0.0899544295448882064 0.159873173347946013 0.562661199999999972 -1.25471303375086007 0.284417961241026973 -1.99732426470614999 0.203323046104975008 0.126500799999999997 0.388063670000000027 -0.0485203859999999987 0.11035064 -0.0844870600000000027 0.100100250000000002 0.0757733200000000051 -0.0277534089999999997 0.0838644199999999951 0.183174339999999991 176 0 175 1 0.4233267 177.240005 0 0 31 false 0.910987899999999962 1.60059513909124007 0.0355391283007391034 0.0501328600000000013 20 10 0.256455239999999973 0 20 false 173 1147.45021711571007 2.53764324158378018 452.171997 18.0390319999999988 16 597.12933813983102 11.4314623544846992 52.2356029999999976 18.4112170000000006 20 818.073185351413031 8.97663848695341038 91.1335749999999933 17.4799399999999991 1.23334549999999998 0 0.931276299999999946 0.372184750000000009 0.559091569999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.698835415490009 -62.1191940063570982 23.1754872364060986 -12.0368597745030002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532359680625152 2505532359680625152 53740055 2015.5 25.8476245806324982 0.182109087199626013 -2.18019089446852021 0.14162423823669501 0.81594823366217395 0.223138368568260997 3.65669179999999994 17.2144331062601985 0.360952647079570976 -9.00817858481314993 0.275359365956197977 -0.0079661100000000002 0.437562469999999981 -0.0327356420000000023 0.113360820000000001 -0.380949499999999996 0.230503099999999989 0.208966430000000009 -0.132923409999999992 -0.0833042340000000048 0.33593192999999999 160 0 159 1 -0.329888049999999988 147.634003 0 0 31 false 0.662135840000000031 1.51091319877752994 0.0486044359454972028 0.0280639859999999991 18 10 0.340432100000000015 0 19 false 159 906.429290397726049 2.14547416339163011 422.484009 18.2950300000000006 15 428.211261834382981 11.2529702652804993 38.053176999999998 18.7722429999999996 18 703.982836210539972 6.59897788905224036 106.680589999999995 17.6430149999999983 1.24907049999999997 0 1.12922860000000003 0.477212899999999995 0.652015699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.636437734384998 -62.1211238030510984 23.1536339429998996 -12.0169031273364002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532535774760320 2505532535774760320 154659462 2015.5 25.8685638552947985 0.0572534436446903994 -2.17872213291766981 0.0575300220659676967 0.310881249051348008 0.0741244294863924041 4.19404549999999965 4.11704789454755993 0.148702564235559997 -0.203985269723089002 0.138609864418406004 0.22741689000000001 0.16889788 0.108668420000000002 0.211851280000000003 -0.433516599999999974 0.435037139999999989 0.442758859999999976 -0.367600770000000021 -0.375386270000000022 0.576864539999999981 161 0 159 2 -0.287451179999999973 148.358994 0 0 31 false 5.84874150000000004 1.58106252188986995 0.0170349542264046985 0.0948366449999999972 18 9 0.171256839999999994 0 18 false 156 5279.20957565372009 4.27538528348697966 1234.79004 16.3819429999999997 16 2897.08549811557987 17.8525269078357987 162.278729999999996 16.6964860000000002 16 3507.85003379383988 11.9249314899180003 294.161000000000001 15.8993179999999992 1.21323760000000003 0 0.797167799999999982 0.314542770000000027 0.482625000000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.675527870954994 -62.1108402208366996 23.1740925458667988 -12.0231939559891998 100001 5861.5 5810 5985 0.371499985 0.112000003 0.547699988 0.179299995 0.0560000017 0.266099989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520746089052416 2505520746089052416 1076011288 2015.5 25.9147266685261997 7.88761463437001975 -2.19139303945175978 5.1444164845951903 \N \N \N \N \N \N \N 0.804690240000000001 \N \N \N \N \N \N \N \N \N 38 0 38 0 0.276747520000000025 34.6069984 1.96862550287203009 0.197813640168406996 3 false 0.0122107220000000002 \N \N 0.040453237000000003 5 5 78.9299699999999973 0 5 false 41 71.1743040535252049 1.84550259868060995 38.5663986 21.0575580000000002 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.776216218826988 -62.1024972603439025 23.2132477928083993 -12.0518646427556 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520780448790656 2505520780448790656 821172663 2015.5 25.9317196002306005 0.499114563108120024 -2.19131804359941018 0.351342697097884016 1.07698047513478001 0.544495929535354972 1.97794029999999998 0.194991286586314011 1.04425640591396007 -0.417711448974943 0.668906779531190043 -0.00369314520000000018 0.267878349999999987 -0.181273519999999994 0.134947929999999994 -0.199097229999999986 0.135031390000000001 -0.0153503349999999997 0.0417419669999999979 0.104948509999999995 0.144896799999999992 181 0 178 3 2.69863600000000003 227.408005 1.30971613874813997 1.35006405781532002 31 false 0.0749981549999999969 1.43113014457814991 0.120111451661052998 -0.0442792899999999989 21 10 0.928332500000000005 0 21 false 178 235.73234221871499 2.36768971146383 99.5622025 19.7573180000000015 14 162.877573927355996 13.2068341620070999 12.3328249999999997 19.8217350000000003 17 161.447592739159006 10.9664174839093 14.7219990000000003 19.2418399999999998 1.37581960000000003 0 0.579895000000000049 0.0644168849999999932 0.515478129999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.808910232334 -62.0951297199672965 23.2294357185855986 -12.0580066537742994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532497119577728 2505532497119577728 903470563 2015.5 25.8975385743407998 0.824899409982181031 -2.18183019203220985 0.574846277518670012 2.17449411141285998 0.865804009908517025 2.51153160000000009 49.0315748376132987 1.9826293897837699 -1.25968743931903004 1.16468967574586002 -0.0183542049999999984 0.149053710000000006 -0.0813545499999999977 0.0422962399999999988 -0.116994105000000001 0.0287914280000000009 0.0657678839999999987 -0.0413438600000000031 0.130158679999999999 -0.0283291950000000015 153 0 149 4 1.9278128000000001 178.485992 2.05503946555668993 2.35782439076362005 31 false 0.0308554709999999989 1.39196258529818007 0.185874885925945005 -0.069562639999999995 18 10 1.73908510000000005 0 18 false 151 140.514678305119986 1.5225184361881301 92.2910004 20.3190610000000014 13 70.3723472970365975 10.3596775086221999 6.79290899999999986 20.7328830000000011 13 155.030344501479988 7.23299393967628035 21.4337729999999986 19.2858799999999988 1.60412200000000005 0 1.44700429999999991 0.413822169999999989 1.0331821000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734289020163999 -62.1012357880426009 23.2004805887467001 -12.0366809512355992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520853463715072 2505520853463715072 975572574 2015.5 25.9215367590568988 0.043379436266572903 -2.18369912456453008 0.032910099781121499 0.714289652652626006 0.0478011102704858012 14.9429510000000008 -0.476699113448983025 0.0897019524289496967 -36.9928313525212005 0.071364925396052506 0.00910922200000000015 0.354726339999999973 -0.123101059999999998 0.06987815 -0.161106570000000004 0.0652380800000000038 -0.0858313200000000026 -0.0080632719999999998 0.0417212659999999999 0.175807970000000008 184 9 184 0 -0.150586930000000008 175.507004 0 0 31 false 10.497871 1.61191516465418005 0.0114728921159586994 -0.030965887000000001 21 10 0.0862575500000000023 0 21 false 182 9159.65024039425043 5.66706786990360989 1616.29004 15.7836684999999992 21 5058.88234745805039 24.414501577500701 207.208100000000002 16.0912509999999997 19 6101.09655309503978 16.2557550472209016 375.319180000000017 15.2984000000000009 1.21838489999999999 0 0.792851450000000013 0.307582860000000013 0.485268599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.782282085894991 -62.0926256709149982 23.2226019530391987 -12.0471935616264005 100001 5869.75 5527.8999 6145.5 0.050999999 0.0113000004 0.124799997 0.0250000004 0.00789999962 0.061999999 200111 0.812100049999999962 0.74085690000000004 0.915648699999999982 0.705329800000000007 0.604226649999999976 0.806432900000000008 +1635721458409799680 Gaia DR2 2505520883528157568 2505520883528157568 372057399 2015.5 25.9298226357223989 7.51143486705974972 -2.17713194413436018 4.87049029069672024 \N \N \N \N \N \N \N 0.883295900000000023 \N \N \N \N \N \N \N \N \N 59 0 58 1 0.700940200000000013 59.8235016 2.86976442201449 0.777600420527481018 3 false 0.0132840730000000004 \N \N -0.0890810199999999969 7 6 49.8577879999999993 0 7 false 59 75.3496399191540007 1.30479543081011995 57.7481995 20.9956630000000004 5 72.6804782311330939 22.9983985897262002 3.16024100000000008 20.6978439999999999 4 23.5385263520335002 2.2199448110139901 10.6032039999999999 21.3324719999999992 1.27696699999999996 0 -0.634628300000000034 -0.297819139999999982 -0.336809159999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.792222608959008 -62.0831372149637986 23.2329378340836001 -12.0441103060101007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520883528012288 2505520883528012288 414117532 2015.5 25.933630658797501 2.58586176762615017 -2.17310083727665004 1.19813336671468007 \N \N \N \N \N \N \N -0.478590819999999972 \N \N \N \N \N \N \N \N \N 93 0 92 1 1.23144190000000009 103.525002 0 0 3 false 0.018002569999999999 \N \N -0.185664600000000013 11 6 5.43100000000000005 0 11 false 95 84.4421840162442976 1.4752332914175601 57.2398987 20.8719670000000015 7 58.6259703746925993 8.37511172268544968 7.00002239999999976 20.931163999999999 7 54.8305869306020028 7.34319044057421966 7.46686169999999994 20.4143620000000006 1.34360049999999998 0 0.516801830000000018 0.059196472 0.457605360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.795858991378992 -62.0778617146049001 23.238066784327799 -12.0417504298007003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532879371798656 2505532879371798656 767566114 2015.5 25.8839100435653009 0.769559192386424007 -2.16339059180043014 0.653785436228965011 1.11924246854774001 0.856284979100246035 1.30709110000000006 1.71231683026132009 1.74131620292704992 -5.7891490707727602 1.67496058178005991 0.0659584000000000004 0.257729199999999992 -0.160922289999999996 0.0077402405000000004 -0.175286219999999993 -0.0747346059999999951 -0.416712399999999983 -0.00924017000000000067 0.0284549969999999992 0.350827500000000014 160 0 158 2 -1.17540339999999999 132.738998 0 0 31 false 0.0311240900000000001 1.10988342479418001 0.217511314383809995 0.0421001349999999969 18 9 1.7541023 0 18 false 158 121.979318216126003 1.13048452232125007 107.900002 20.4726500000000016 13 75.9478684137693989 19.3837719350637983 3.91811599999999993 20.6500990000000009 13 172.028917599870994 9.75990074913976002 17.6260930000000009 19.1729160000000007 2.03294130000000006 0 1.47718240000000001 0.177448269999999991 1.2997341 \N \N 0 \N \N \N NOT_AVAILABLE 151.691104559385991 -62.0904172113858976 23.1944198463202014 -12.0145370873963007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533974590375808 2505533974590375808 1639037023 2015.5 25.8463308775286009 1.0923137650789001 -2.1211090213758701 0.90988431030857797 0.307051268860166982 1.29344805096539006 0.237389710000000004 -2.31622605708124008 2.97337651465436981 -7.89891609468688038 2.88234385972400986 0.073378410000000005 -0.00297362610000000008 0.0700463000000000058 0.119641595000000003 -0.192021369999999997 0.067898824999999996 -0.172580540000000004 -0.309850569999999992 -0.2533474 0.427900300000000011 114 0 113 1 0.159589599999999998 109.688004 1.11205089974235993 0.194271512323771989 31 false 0.0195215250000000014 1.57995459974934005 0.304692765714767 0.00746302030000000043 14 9 3.08477930000000011 0 14 false 115 96.6264331872750972 1.28144522577892994 75.4042969 20.7256259999999983 9 58.2141210637213007 8.93178164879179981 6.51763799999999982 20.9388180000000013 11 136.344546472697004 10.3888574717542994 13.1241140000000005 19.4253250000000008 2.01351380000000013 0 1.51349259999999997 0.213191989999999998 1.30030059999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.579988980298992 -62.0682617824114971 23.1745081770036983 -11.9614467702894007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532982451357568 2505532982451357568 1232674648 2015.5 25.8834951276189003 0.314082393829629991 -2.13064030459480014 0.261256283759572994 -0.396658062420788993 0.387655058000120012 -1.02322420000000003 2.21497019864212996 0.747776894898510958 -2.01298262749403989 0.461417419317836974 0.192324610000000007 0.0360398779999999974 0.0543391199999999977 0.178080700000000008 -0.417458099999999999 0.269060799999999989 0.224298629999999999 -0.174604249999999989 -0.0394911999999999971 0.308686760000000004 154 0 153 1 0.388963500000000018 154.106995 0 0 31 false 0.203745160000000008 1.48773766858189993 0.0774181115923651963 0.0327001199999999992 18 10 0.681485899999999978 0 18 false 153 408.469110591456001 1.66389467531232005 245.490005 19.1604670000000006 16 252.850500582445989 18.3708517261980013 13.7636789999999998 19.3442289999999986 16 267.70713023894001 11.4880079505918005 23.3031800000000011 18.6927699999999994 1.27441120000000008 0 0.651458740000000036 0.183761599999999997 0.467697140000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.660352528288996 -62.0610002866402013 23.2062752466605993 -11.9839057708948005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533738365601536 2505533738365601536 1268063759 2015.5 25.8793110133903994 0.0294041708000904005 -2.12863022239608002 0.0242398193055640004 1.5621456642206899 0.0344784391429956982 45.3078999999999965 16.9612612549283988 0.0659269847158252958 -8.10242502948947951 0.0550955646581224034 0.129012299999999996 0.299660119999999974 0.037393860000000001 0.073262944999999996 -0.229398380000000013 0.113083950000000003 0.0202764980000000004 -0.150208759999999997 -0.0522066699999999967 0.350675259999999989 166 0 166 0 -1.45434189999999997 135.692001 0 0 31 true 28.1411969999999982 1.55607027360618999 0.00827602885602824086 0.0216944310000000001 19 10 0.0738669200000000026 0 19 false 166 23127.2168063151985 8.82298256595919028 2621.25 14.7780570000000004 15 11380.7341243430001 28.335664240242199 401.639920000000018 15.2109620000000003 14 16972.9460207679003 27.8456458773670015 609.536799999999971 14.1875269999999993 1.22598760000000007 0 1.0234356 0.43290519999999999 0.590530400000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.650450915834 -62.0609732258266007 23.2030489889381997 -11.9805053362803999 100001 5338 5175.12988 5997.49023 0.0909999982 0.0266999993 0.174999997 0.0450000018 0.0135000004 0.113799997 200111 0.730172200000000049 0.578420999999999963 0.776855799999999985 0.389995519999999984 0.369765879999999991 0.410225149999999983 +1635721458409799680 Gaia DR2 2505532634558539648 2505532634558539648 971190794 2015.5 25.9101807941509001 0.479976719113620998 -2.16176327996765982 0.311386754663052989 0.833428920459784006 0.528568664075372951 1.57676569999999994 6.63021472699629033 0.972218935941407958 -5.9673319231764701 0.555380994525522032 -0.0590868500000000033 0.335068599999999994 -0.0713600800000000063 0.122539599999999999 -0.274149699999999996 0.106827850000000002 0.101775765000000004 -0.00453990299999999965 0.136261400000000005 0.0973830299999999954 158 0 156 2 2.83336139999999981 204.966003 1.35014389194369011 2.21927781249172007 31 false 0.105940709999999993 1.54794265080549009 0.102181022416375999 -0.0751550899999999938 19 10 0.855827800000000027 0 19 false 153 303.089067506303024 1.62370128248143009 186.666 19.4844399999999993 15 145.375880795667996 9.94357896566664046 14.6200759999999992 19.9451579999999993 16 264.332443815975012 8.05279481948369913 32.8249319999999969 18.7065429999999999 1.3517752999999999 0 1.23861500000000002 0.460718149999999993 0.777896900000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.740269281227 -62.0776892172928996 23.2200081627911992 -12.0226269459951993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532703278683520 2505532703278683520 446571810 2015.5 25.9047568788660989 0.879736334815331977 -2.15594091166834012 0.741793167679433041 3.38212177040401984 1.00367151855473002 3.36974980000000013 13.5002671612304006 2.09798426659027992 -13.2321819221957995 1.96829234138986009 0.101297230000000002 0.214247300000000002 -0.045048073000000001 0.027531367000000001 -0.162271080000000012 -0.0324022959999999971 -0.323975200000000019 -0.134815800000000013 -0.0632261259999999936 0.400124040000000014 149 0 145 4 1.47993609999999998 165.505997 1.75473319877987999 0.707812709593461986 31 false 0.0247481820000000005 1.86022122854455008 0.254144566184731024 0.0296183700000000015 17 9 2.11881999999999993 0 17 false 146 114.476073048681002 1.24311558453082993 92.0879974 20.5415780000000012 13 35.3145734604245973 5.01788216439237011 7.03774449999999963 21.481503 14 195.459689814802005 7.8545592628493397 24.8848699999999994 19.0342769999999994 2.01591699999999996 0 2.44722559999999989 0.939924239999999966 1.50730129999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.724480184794999 -62.0747555922419991 23.2170284037981993 -12.0152253835533998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534386905343104 2505534386905343104 102221545 2015.5 25.9054231002793003 1.69121379554447993 -2.13816472874147978 1.67415123543064004 \N \N \N \N \N \N \N 0.408934149999999996 \N \N \N \N \N \N \N \N \N 88 0 86 2 -0.0288855340000000009 79.9701004 0 0 3 false 0.0135832469999999997 \N \N 0.113871009999999995 10 7 7.00055739999999993 0 10 false 87 89.0795406690399005 1.73899390295788003 51.2248001 20.8139210000000006 7 42.3624107532626013 8.27245200939236014 5.12090159999999983 21.2839370000000017 7 58.9910405639252033 17.8562633885624003 3.30366090000000012 20.3349550000000008 1.13778589999999991 0 0.948982239999999977 0.470016480000000014 0.478965760000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.70949029602599 -62.0584115335003972 23.2243100478604987 -11.9989248239781006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532703280164352 2505532703280164352 51006118 2015.5 25.9156125613506987 2.44658147681297988 -2.15512716300430984 1.81684982029038999 \N \N \N \N \N \N \N -0.0123987235000000001 \N \N \N \N \N \N \N \N \N 48 0 46 2 -1.23423419999999995 30.2605991 0 7.84663186513843042e-16 3 false 0.0132652380000000004 \N \N -0.100401773999999999 6 6 5.48395630000000001 0 6 false 50 75.2294146109576047 1.47510900919964993 50.9991989 20.9973959999999984 4 82.0302862553485994 65.9585306310058996 1.24366449999999995 20.5664520000000017 5 135.619495829794005 17.6483200546928991 7.68455550000000009 19.4311140000000009 2.89314749999999998 0 1.13533780000000006 -0.430944439999999984 1.56628229999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.744655627984002 -62.0693657462195034 23.2276550750361999 -12.0184363278322 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534180746772480 2505534180746772480 1629411614 2015.5 25.9257999129795991 1.55364669228088004 -2.14469168228735985 2.01121598264341017 \N \N \N \N \N \N \N 0.0613867499999999969 \N \N \N \N \N \N \N \N \N 85 0 85 0 0.623329800000000045 87.4372025 2.26598748213501988 0.448333429543111006 3 false 0.0141760940000000002 \N \N 0.0276295359999999997 11 9 5.97471700000000006 0 11 false 87 86.2131440634350952 1.72114898376550007 50.0904999 20.8494320000000002 5 38.5142959371980993 11.3562378368133992 3.39146610000000015 21.3873330000000017 11 97.6811985591204035 10.8849691765285002 8.9739520000000006 19.7873920000000005 1.57975329999999992 0 1.59994130000000001 0.537900900000000015 1.06204030000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.754718227490997 -62.0555704705086981 23.2412445597177992 -12.0124476337805 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534391200630784 2505534391200630784 1610582802 2015.5 25.9081730080119002 0.154935935524980001 -2.13397003010652986 0.124485051611815001 2.02680577085883007 0.178615721049867004 11.3472980000000003 -2.89334255783000982 0.358779469413102015 -2.02614186903943017 0.234390171123939006 0.143265219999999999 0.19278287999999999 0.0828124300000000063 0.171034230000000009 -0.271192429999999984 0.258815139999999999 0.297515799999999997 -0.199539620000000001 -0.0668219850000000004 0.264323739999999974 167 0 167 0 3.08976000000000006 223.395996 0.489518597509630005 2.0042946185911199 31 false 0.773515399999999964 1.22771807172202996 0.0378980539847457998 0.0132295850000000003 19 10 0.328912800000000005 0 20 false 167 1209.98039252954004 2.46583963183305022 490.696991 17.98142 15 238.578093132832009 8.08942490741127962 29.4925899999999999 19.407312000000001 18 1557.06173772496004 11.0256282462047004 141.222049999999996 16.7811549999999983 1.48402389999999995 0 2.6261578000000001 1.4258919000000001 1.2002659 \N \N 0 \N \N \N NOT_AVAILABLE 151.710950116052999 -62.0534437361376021 23.2284933662994995 -11.9960260310036002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520574290357888 2505520574290357888 462297754 2015.5 25.9441486625631015 0.0875431673936812038 -2.19716481769465988 0.0639924039380840026 3.50700041350990022 0.097162961028240305 36.0940060000000003 18.7872657010942987 0.191260622855727008 10.0816722598968003 0.129878917091019008 0.0295661460000000015 0.283278580000000002 -0.00484070549999999957 0.0794632499999999992 -0.196668029999999994 0.0962877500000000053 0.0638666900000000037 -0.0923989800000000056 0.0425735640000000012 0.157326130000000008 183 0 181 2 1.31905650000000008 201.195999 0.151193371964008005 0.484232794207549 31 false 2.32479449999999987 1.32067338916855004 0.0224040897112492005 -0.0397475440000000027 21 10 0.174636829999999993 0 21 false 181 2517.29884434203996 3.08939809877744009 814.81897 17.1860299999999988 16 588.167279185783968 9.68605835212343003 60.7230800000000031 18.4276349999999987 17 3023.11011185297002 12.1053997377483 249.73236 16.0607849999999992 1.43458430000000003 0 2.3668499999999999 1.24160580000000009 1.12524409999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.838241469921002 -62.0950629489090034 23.2390690098157009 -12.0679912773751994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520608650098432 2505520608650098432 1217032008 2015.5 25.9464457018511006 0.259793378804981989 -2.19204769333518978 0.189646976084888008 0.227056799245958008 0.290453670906206995 0.781731550000000053 16.6813396826641984 0.565937722178387004 -1.89823855604831992 0.362507047002464 0.0230799970000000014 0.255399500000000002 -0.133213450000000011 0.117745765000000002 -0.242232959999999997 0.140600560000000013 0.0967949500000000046 -0.0131345790000000004 0.0534910560000000021 0.159915069999999993 194 0 193 1 1.45589419999999992 216.932999 0.232301388253118996 0.12613684753784199 31 false 0.246570359999999988 1.38473156493633009 0.0642740183887692967 -0.0132772480000000002 22 10 0.503820840000000048 0 22 false 194 469.901773065945008 1.57866352469694005 297.65799 19.0083480000000016 19 246.060502697472003 8.60198164664944009 28.6050949999999986 19.3737829999999995 21 333.144434940747999 5.8891668823490404 56.5690269999999984 18.4553399999999996 1.23260860000000005 0 0.918443699999999974 0.365434650000000028 0.553009030000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.837961045703992 -62.0894561328188033 23.2431675318848008 -12.0640682999933997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520612945546752 2505520612945546752 140136317 2015.5 25.9465165252246983 0.0581044533654263007 -2.18815176014750001 0.043460884553588798 2.07710759752636021 0.0654479384994386959 31.7367920000000012 22.0585940211644989 0.120019281419151996 -16.6892386241006996 0.0909414804802228943 0.0284054759999999989 0.376099440000000007 -0.0591607400000000033 0.0680901500000000021 -0.195496140000000013 0.0740848000000000062 0.0137167134999999999 -0.0436110239999999982 0.0381892399999999993 0.195647979999999999 193 0 191 2 1.53886999999999996 216.548996 0.167244337991172998 1.29442653659335005 31 false 5.14320700000000031 1.35678590108602992 0.0149511033522223002 -0.00885873600000000073 22 10 0.114354566000000005 0 22 false 191 5524.21111410804042 4.4499175123223802 1241.42004 16.3326899999999995 20 1465.2937396407799 16.8418401704781004 87.0031800000000004 17.4365769999999998 19 6203.16363574076968 23.8044876215701002 260.587980000000016 15.2803869999999993 1.38815430000000006 0 2.15619000000000005 1.10388759999999997 1.05230240000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.834514754412993 -62.085909212912803 23.2446920269779014 -12.0604682010446993 100001 3672.33008 3488 4201.43018 2.13800001 1.89090002 2.3829999 1.06770003 0.935899973 1.18669999 200111 0.801967500000000055 0.612698399999999976 0.888971799999999979 0.105384459999999999 0.0983267599999999992 0.112442165999999996 +1635721458409799680 Gaia DR2 2505520814808370688 2505520814808370688 45335045 2015.5 25.9358251884579012 0.0450663787699776969 -2.18035099771095986 0.0306010728016648005 3.92363754620498995 0.0462503243741606979 84.8348100000000045 8.4828310103665796 0.0812660999760031061 22.4187038714079989 0.0665248262384914996 0.0345468099999999972 0.530123349999999993 -0.0834929100000000035 0.0208910219999999987 0.063317849999999995 -0.00185766899999999994 -0.208970529999999988 -0.00522091240000000043 0.0295292499999999999 0.0635076599999999936 115 115 115 0 7.40471120000000038 259.255005 0 0 31 true 261.635400000000004 1.60366332959084001 0.0117063854362533994 -0.141593649999999988 13 10 0.050221509999999997 0 13 true 113 885234.328159769997 239.280097618658999 3699.57007 10.8207199999999997 13 498818.621624228021 765.492357394600049 651.631099999999947 11.1065310000000004 12 552854.130245293956 343.205182328813009 1610.85599999999999 10.4053939999999994 1.18801620000000008 0 0.701137539999999948 0.285811419999999983 0.415326120000000021 28.0210213349359982 0.850712085332314016 6 6250 4.5 0 NOT_AVAILABLE 151.806745743187008 -62.0834643488554008 23.2374421137035014 -12.0493003052917995 100001 5975.8999 5822 6099.33008 0.193000004 0.0864000022 0.308999985 0.0834999979 0.0370000005 0.153999999 200111 1.3988567999999999 1.34281169999999994 1.47378959999999992 2.24830130000000006 2.2111196999999998 2.28548300000000015 +1635721458409799680 Gaia DR2 2505522292277284736 2505522292277284736 992583067 2015.5 25.9421466439319985 0.339275459095582987 -2.17522353998425988 0.234877511263801991 1.19324100731493998 0.347174095228043988 3.43701049999999997 3.84426435633708019 0.914862500557973024 -1.42870117424490006 0.482449722922387025 -0.171943079999999998 0.0623722150000000017 0.22919312 -0.15721713000000001 -0.0467749949999999998 -0.19503297 0.328682499999999989 -0.225457149999999995 0.22380934999999999 -0.312409759999999981 162 0 162 0 2.53345300000000018 205.509003 0.877970870835446004 1.59826053032540005 31 false 0.191039669999999995 1.42389018897868991 0.0799699047629023052 -0.0952780800000000011 19 9 0.826198639999999984 0 21 false 161 443.503552238628004 1.47705170091649007 300.263 19.071123 16 126.728120886588002 9.51082766433160032 13.3246155000000002 20.0942059999999998 17 500.010305111809998 9.51421495057275912 52.5540280000000024 18.0144729999999988 1.4131532 0 2.07973300000000005 1.02308270000000001 1.05665019999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.814214470384002 -62.0761183476564966 23.2453713839671998 -12.0468386131589007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522124774034176 2505522124774034176 1333598526 2015.5 25.967301221388599 0.0356896468117417001 -2.16822223358190991 0.026973911119072401 0.456156156443525973 0.0390712563159743981 11.6749799999999997 -4.97971660624873014 0.0749007143468193998 -8.19342953345945979 0.0576064950091838973 0.0717243999999999937 0.347267869999999979 -0.0192592419999999993 0.057652384000000001 -0.0833955599999999936 0.0449201600000000006 -0.073128245999999994 -0.0649048099999999933 0.0500639000000000015 0.178026899999999988 174 0 174 0 0.596557259999999978 179.511993 0 0 31 false 16.2804199999999994 1.60274895789415006 0.0100139493050922998 -0.0322852500000000014 20 10 0.0766942300000000021 0 20 false 173 13961.1620815584993 6.40301419099469982 2180.3999 15.3260620000000003 15 7490.16434693984957 19.454370841291901 385.011900000000026 15.6651600000000002 14 9478.6361413832492 25.0922410269468017 377.751680000000022 14.820055 1.21542900000000009 0 0.845105200000000001 0.339097980000000021 0.50600719999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.856215368790004 -62.0589784296592981 23.2719117171138983 -12.0495150517400003 100001 5790.5 5745 5958 1.19819999 0.824899971 1.50329995 0.570299983 0.395200014 0.724799991 200111 1.6167701000000001 1.527142 1.64248100000000008 2.64761949999999979 2.12809630000000016 3.16714260000000003 +1635721458409799680 Gaia DR2 2505521334500123776 2505521334500123776 454359869 2015.5 26.0120230334180995 0.684074242550576028 -2.19185418834972001 0.59324070437363996 0.66939546750497303 0.749367644034450997 0.893280450000000004 -2.47406774324895018 1.5105048969822501 -1.09543074063133994 1.41603677481453993 0.108154819999999999 0.269963059999999977 -0.124056269999999996 0.00711032400000000033 -0.13834724000000001 -0.0862061100000000025 -0.43976763000000002 0.0134280379999999998 0.085792586000000004 0.342351599999999978 151 0 150 1 1.21017540000000001 165.869995 1.3732038374411899 0.706863091788140996 31 false 0.0408141240000000002 1.38326945647406996 0.198451204143689997 0.00629911430000000029 17 9 1.50267740000000005 0 17 false 149 162.744097461105014 1.25187674634159007 130 20.1596030000000006 12 89.3916915339014935 7.55845276425108015 11.8267179999999996 20.4731449999999988 13 148.996918273031014 8.26594866250504978 18.0253869999999985 19.3289779999999993 1.46480640000000006 0 1.14416699999999993 0.313541400000000026 0.830625529999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.964021259058001 -62.0610141397017969 23.3056110635942986 -12.0878506201781004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522154841833984 2505522154841833984 521252359 2015.5 25.987415691246099 0.946220763327677017 -2.17103691175246016 0.852219504762612989 1.01947139879100002 1.06040904959318993 0.961394500000000041 10.1985956388573005 2.1756706759740001 -6.49597108875604956 2.03041089935583985 0.214935380000000009 0.248928790000000011 -0.0753123760000000003 -0.0198692599999999997 -0.0162848899999999998 -0.0605010699999999971 -0.365348879999999987 -0.0812021299999999974 -0.0205581300000000008 0.360962600000000022 140 0 139 1 4.33002420000000043 217.197998 3.23473950722314019 2.78367439213372014 31 false 0.0213682580000000011 1.63275735542343003 0.287077160075789983 0.0604359140000000003 16 9 2.16732669999999983 0 16 false 138 125.711612224503995 1.0989681743578299 114.390999 20.4399279999999983 9 68.0903833285397013 11.4654995175619003 5.93871929999999981 20.7686729999999997 13 146.494060493758013 12.4492829188447001 11.7672690000000006 19.3473700000000015 1.70695799999999998 0 1.42130280000000009 0.328744900000000007 1.09255790000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.897508168283991 -62.0528543749232995 23.2899893090543983 -12.0594844274936008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522189198073600 2505522189198073600 1309268429 2015.5 26.0123686575918001 0.571288416445766001 -2.16655147040795981 0.417128445066310027 -0.683865992182748017 0.623805579115951025 -1.09628070000000011 0.401003894024073992 1.49895443632447001 -3.22866765194820005 0.785215460850992031 0.0406337999999999977 -0.0379494500000000026 0.125537900000000008 0.0119112395000000003 -0.112834130000000005 0.0337566200000000011 0.252418099999999979 -0.206148340000000013 0.177430599999999994 -0.0840190650000000039 163 0 161 2 0.713305529999999965 168.240005 0 0 31 false 0.0588516200000000003 1.42053132449299002 0.139063591650760987 -0.0601350999999999969 19 10 1.32137539999999998 0 19 false 161 193.971287716092007 1.21620711832150996 159.488998 19.969023 16 116.736074702954994 11.1674031700373995 10.4532869999999996 20.1833759999999991 16 127.198929317240996 7.74528857289158967 16.4227489999999996 19.500710999999999 1.2575829999999999 0 0.682664900000000019 0.214353559999999999 0.468311299999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.941360975638986 -62.0380459018530033 23.3153991118452986 -12.0644255418258002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521433286159232 2505521433286159232 1224978287 2015.5 26.0143425565765014 3.86343734316298981 -2.17349953081863978 4.66137079151253975 \N \N \N \N \N \N \N 0.679304299999999972 \N \N \N \N \N \N \N \N \N 47 0 46 1 1.62370529999999991 56.6994019 6.79611422956126976 2.70914138816380001 3 false 0.00551015099999999959 \N \N 0.209707349999999987 6 5 9.55137399999999914 0 6 false 47 65.1255669547325056 2.36158423728531996 27.5771008 21.1539879999999982 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.951557098773009 -62.0434601562753016 23.3146792513900003 -12.0716137743263001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522360996767232 2505522360996767232 1177817371 2015.5 25.9415873834136015 0.97424534341401503 -2.16227007194486998 0.766013154074057012 0.493899611955776974 1.12937392381049007 0.437321599999999977 0.844938725817677039 2.29513966949782988 -2.09317892441500986 2.0822068484931302 -0.0112528065000000004 0.233929049999999999 -0.0532166059999999996 0.0781533400000000017 -0.287866650000000002 -0.038208917000000002 -0.372899319999999979 -0.149448130000000012 -0.0598644279999999973 0.458245599999999975 127 0 124 3 -0.416980030000000002 112.041 0 0 31 false 0.0277547500000000016 1.57550119391589005 0.267257899746134009 -0.0528868300000000027 15 8 2.33236700000000008 0 15 false 124 112.708389135112 1.05759978210799011 106.57 20.5584750000000014 10 78.8963728519886018 11.2022951675086997 7.04287599999999969 20.608746 12 104.135879055987999 12.2432159988230005 8.50559800000000088 19.7179180000000009 1.62394520000000009 0 0.890827200000000041 0.0502700800000000017 0.840557099999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.801242816979993 -62.0646645289922034 23.2496837549877995 -12.0345782144928002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534146389210496 2505534146389210496 1302604483 2015.5 25.9353072501579014 3.2303890621393001 -2.13899732181983993 3.2238603109374302 \N \N \N \N \N \N \N 0.179563460000000008 \N \N \N \N \N \N \N \N \N 38 0 38 0 -0.33872770000000002 29.6982002 0 0 3 false 0.0111231079999999996 \N \N -0.0463862680000000013 5 5 11.5959869999999992 0 5 false 40 67.3242494368353022 2.03314255601996008 33.1133995 21.1179370000000013 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.767806946842001 -62.0463478433864992 23.2524142222607999 -12.0106225584972997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522429716245632 2505522429716245632 450162494 2015.5 25.9709464680700997 0.750883161874608018 -2.15736356084462022 0.710149710661115985 -1.00756156473226999 0.816395374341794988 -1.23415889999999995 -2.1591452839079901 1.8853419171891399 -3.28156498707177002 1.76445550153205999 0.202959499999999987 0.0412705299999999997 -0.168040049999999996 -0.0304300769999999998 -0.126149919999999999 -0.0846481600000000001 -0.440323830000000027 0.0145638585000000004 0.0611619539999999975 0.372332600000000014 146 0 146 0 1.00519470000000011 157.843002 0 0 31 false 0.0315462280000000025 1.60203363058759995 0.236685544565909012 0.00813355950000000001 17 9 1.89374859999999989 0 17 false 146 133.140038152214998 1.20128582917933002 110.831001 20.3775939999999984 11 67.5613970292154988 10.0882154553808991 6.69706099999999971 20.7771420000000013 10 89.8396069789928049 11.8402230730469 7.58766169999999995 19.8782500000000013 1.18222139999999998 0 0.898891450000000036 0.399547580000000013 0.499343870000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.853249900355991 -62.047609690951198 23.2794384407075015 -12.0407403621338993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534730502595584 2505534730502595584 116746441 2015.5 25.9575397104757997 0.129199298738741003 -2.11451817342961013 0.0930976576387630983 0.357771010592070005 0.141043033771214993 2.53660899999999989 7.77535067133467006 0.297552651602870977 -6.79967192530386999 0.186186490776344998 0.0107539769999999996 0.194646370000000013 0.00578990999999999967 0.0593065730000000013 -0.177481529999999998 0.0699971300000000046 0.090408459999999996 -0.100954169999999996 0.0803048400000000023 0.0715676400000000018 182 0 182 0 0.337863269999999993 182.751007 0 0 31 false 1.03235900000000003 1.63849682349101 0.0314753756279970986 -0.0493769650000000018 21 10 0.265231099999999997 0 21 false 181 1303.17641447589995 2.37333852055024996 549.090027 17.9008579999999995 17 649.226951862758028 8.77466320166213087 73.9888150000000024 18.3203959999999988 15 937.207451429984985 5.04955183722491974 185.60211000000001 17.3323299999999989 1.21735970000000004 0 0.988065700000000047 0.419538499999999981 0.56852720000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.788155598596006 -62.0146973910689994 23.2827064420742005 -11.9959631144962007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680064 2505522635874680064 772906798 2015.5 25.9950364282852995 0.191125003654868009 -2.14660715026268001 0.162522284916350013 0.99355106107838298 0.220522852594457003 4.50543359999999993 5.68875531600709028 0.474050373396383007 -7.32571618004132041 0.328796035034769007 0.187575490000000011 0.129741090000000003 0.173239699999999996 0.122687539999999998 -0.147231360000000006 0.167196569999999989 0.291000700000000001 -0.264361349999999995 -0.0352777900000000033 0.197729920000000003 140 0 140 0 2.67183970000000004 183.016006 0.512249159294078993 1.32490588156229006 31 false 0.541590600000000033 1.37943249498429998 0.0495812911101767978 0.0498767499999999975 16 10 0.430369820000000014 0 16 false 140 958.708730716311038 2.3413098257508298 409.475006 18.2341499999999996 14 296.558971784011021 7.53579921601433966 39.3533550000000005 19.1711099999999988 15 1056.42812578724011 9.02571899659571031 117.046424999999999 17.2023200000000003 1.41125980000000006 0 1.96879000000000004 0.936960200000000021 1.03182979999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.889691579285 -62.0275289818027034 23.3063698969513986 -12.0395300746756 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680448 2505522635874680448 1485102832 2015.5 26.0098473129209999 0.182577400759906 -2.1460313174494301 0.132665412613604011 0.213277248152637988 0.19843594064984299 1.07479140000000006 5.71190298835723009 0.404968971269250022 -5.4349805312154098 0.247951428403996005 0.0578935740000000032 0.224123020000000006 -0.0446039400000000016 0.114976410000000001 -0.14827883 0.118284749999999994 0.118583720000000004 -0.0426648780000000033 0.110894844000000006 0.105088650000000006 175 0 172 3 -0.302415759999999978 160.882996 0 0 31 false 0.547093599999999958 1.49270610756654998 0.0453489856165743971 -0.0389811600000000008 20 10 0.359096199999999977 0 20 false 171 833.06846817854796 1.84106839332902994 452.492004 18.3866629999999986 17 468.486616528255013 10.0143828616254993 46.7813760000000016 18.6746440000000007 17 573.548053162431984 18.3018185846688013 31.3383099999999999 17.8654960000000003 1.25083910000000009 0 0.809148800000000001 0.287981030000000027 0.52116775999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.917626022547012 -62.0206246501701983 23.3206712376979013 -12.0444045073569992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680704 2505522635874680704 630577571 2015.5 26.0145175122580987 0.385419257158627016 -2.14486421169916985 0.290822958931997 0.785185121558967025 0.435866625321442991 1.80143439999999999 7.99085396983274965 0.864453576722606032 -7.15179654036364987 0.52388616329465898 0.097308569999999997 0.208568780000000009 -0.00698717800000000014 0.118990200000000004 -0.190105629999999998 0.119660710000000003 0.183607770000000003 -0.0557710230000000029 0.120099139999999993 0.1212144 174 0 171 3 7.52139399999999991 343.136993 1.9579558220023201 8.02398817887280025 31 false 0.119556220000000005 1.20933466254727007 0.0910228140846374989 -0.0180732530000000009 20 10 0.762629699999999966 0 20 false 172 459.925832695278984 2.04005965317720994 225.447006 19.0316469999999995 15 104.695949340967005 8.31940075629690057 12.5845540000000007 20.3015630000000016 15 574.46040287088897 9.23149111773079944 62.2283439999999999 17.8637699999999988 1.47666490000000006 0 2.43779369999999984 1.26991649999999989 1.16787719999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.92552500312101 -62.0175574484660004 23.3255492107760993 -12.0450240649834992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522880688276864 2505522880688276864 948160739 2015.5 26.008231439901401 0.144377733817121989 -2.12130468084927992 0.108035476345042 2.61449616866328016 0.154885293033316995 16.8802090000000007 1.22947939848428001 0.323133196702307002 -2.16557333225610993 0.193077067341372005 0.110035450000000007 0.206825580000000009 -0.0287704649999999985 0.15187893999999999 -0.00514500729999999972 0.15303752000000001 0.18239182000000001 -0.0537351199999999973 0.128635599999999989 0.0721509000000000039 158 0 155 3 1.57162679999999999 178.153 0.357443725779749977 1.25898537559492008 31 false 0.955719949999999985 1.29005476929934004 0.0352417098040037 -0.0275037599999999986 18 10 0.287611720000000015 0 18 false 151 1345.78771836324995 2.6480346419398999 508.221008 17.8659250000000007 16 317.460357370710028 8.03249657480689017 39.522002999999998 19.0971639999999994 14 1601.35378907231006 13.3907792286772001 119.586299999999994 16.7507020000000004 1.42579260000000008 0 2.34646219999999994 1.23123929999999993 1.11522290000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.891793048457998 -61.9990139087501007 23.3283756461706986 -12.0207986667579991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522979472072448 2505522979472072448 1634968372 2015.5 26.0143479014057988 0.262653737917036001 -2.11751287763783003 0.189502643336610987 1.74794680712058992 0.278291562313202012 6.28099100000000021 -15.4879170451735995 0.61286257136186495 -11.3633026890638007 0.345960169740278989 0.0494774700000000026 0.112782753999999999 -0.104611499999999996 0.136535440000000008 -0.100801569999999993 0.159785850000000007 0.1637044 -0.0311882599999999989 0.0991807799999999962 0.0530686640000000015 170 0 169 1 3.36540440000000007 231.970993 0.712413130836573982 1.61615946764102003 31 false 0.268918299999999999 1.41430217889229004 0.0648122473421259976 -0.0523669569999999987 19 10 0.541008060000000013 0 19 false 168 540.615788994626996 1.3926052144213199 388.204987 18.8561440000000005 17 112.662748231790005 9.42639848323804053 11.9518339999999998 20.2219370000000005 18 685.224486691531979 9.89920134731067058 69.2201799999999992 17.6723379999999999 1.47588589999999997 0 2.54959870000000022 1.36579319999999993 1.18380550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.900055024403002 -61.9929567691166028 23.3356095330677 -12.0195032427774002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535486416843776 2505535486416843776 23055366 2015.5 25.858611679124099 0.585225151108525021 -2.10291975157679989 0.483532776894593008 1.23831774386930005 0.67440358794591404 1.8361672 11.0044077207776994 1.45014907697911011 -6.46117169078985043 0.926587813014617012 0.216347829999999991 0.0398598949999999994 0.0343139299999999994 0.215714779999999995 -0.285192999999999974 0.313267379999999984 0.280509169999999974 -0.20032817 -0.122482084000000005 0.321549330000000022 160 0 158 2 1.9055434 188.046997 1.64500541842574011 6.04892191079068997 31 false 0.0547374200000000019 1.07179643291874993 0.158423636683347996 0.0143588185000000004 18 10 1.32835560000000008 0 18 false 158 194.727207766472986 1.61091506272221996 120.879997 19.9648000000000003 13 71.0853695812496937 8.16201761102177059 8.70928900000000006 20.7219370000000005 14 216.445767572262014 8.02784366604880972 26.9618819999999992 18.9235480000000003 1.47658430000000007 0 1.79838940000000003 0.757137300000000013 1.0412520999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.587095454061995 -62.0465736772852026 23.1929858838167995 -11.9490094187477993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535490712257792 2505535490712257792 580637237 2015.5 25.8624128057652989 0.0379141560597673968 -2.10194313252309017 0.0309059547350682001 1.12099116096399998 0.0444474604720936015 25.2205890000000004 13.6403491296123995 0.0835884700766101052 -8.47295993831557048 0.0697416696212348058 0.189892129999999992 0.341125200000000017 0.0481912270000000031 0.0786856100000000031 -0.115465280000000003 0.133976089999999992 0.0575249499999999983 -0.186793199999999993 -0.10245638 0.355153019999999986 151 0 150 1 -1.74670980000000009 116.665001 0 0 31 true 16.6080269999999999 1.53575094611478002 0.0109637483592467996 0.0694258600000000059 17 10 0.0894898499999999958 0 17 false 149 13723.3850272527998 6.61539762678270016 2074.45996 15.3447119999999995 17 6725.94542048955009 41.2774194948052013 162.944919999999996 15.7820040000000006 17 10199.3627571220004 30.726888015952099 331.936069999999972 14.7404869999999999 1.23331879999999994 0 1.04151729999999998 0.437292100000000017 0.604225160000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.593532534962009 -62.0440681999235011 23.1969646103203004 -11.9494902985100993 100001 5085.8501 4835.60986 5448.43994 0.112999998 0 0.333999991 0.0463000014 0 0.164100006 200111 0.881129300000000004 0.767755500000000035 0.9746861 0.467982100000000012 0.426447359999999998 0.509516839999999971 +1635721458409799680 Gaia DR2 2505535314621432448 2505535314621432448 1091679930 2015.5 25.8847747740081999 0.738560907697679014 -2.10080260122435991 0.750459835469124981 -0.305239647279005988 0.885893638523941984 -0.344555649999999991 4.27093399861641032 2.13474478034218018 -8.59130518424177048 2.20807313771189984 0.3092221 -0.00774978749999999991 -0.0689518400000000004 0.0140342390000000004 -0.230961830000000007 -0.0881584660000000048 -0.356370420000000021 -0.159935650000000013 -0.127931089999999997 0.636619799999999958 125 0 120 5 0.702447999999999961 125.278 1.09450616124388 0.353161646844281973 31 false 0.0403107629999999995 1.61405817844468991 0.217536377165156003 0.137407990000000008 15 9 2.4441647999999998 0 16 false 122 152.578164214779008 1.3803867440906501 110.532997 20.2296349999999983 7 104.748474324773994 16.6948064750910987 6.27431499999999964 20.3010200000000012 7 153.000331038935997 9.97655240564045087 15.3359919999999992 19.3001900000000006 1.68929029999999991 0 1.00082969999999993 0.0713844299999999987 0.92944526999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.635580186738991 -62.033485049260598 23.2186498746959984 -11.9566041309082998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535525071996032 2505535525071996032 1051832138 2015.5 25.8754296240445996 0.461986015630115987 -2.09647780581452992 0.382291841932321019 -1.13083727934618006 0.532664614002510972 -2.12298179999999981 4.96937892233863998 1.05469325185128993 4.82782746060185008 0.753170639369405981 0.117084384 0.212366980000000011 0.0471713770000000004 0.162950979999999995 -0.286241999999999996 0.257501329999999973 0.266902479999999998 -0.182234850000000004 -0.0921092699999999931 0.289530200000000015 150 0 148 2 94.7611600000000038 15171.2998 3.22733208199110999 695.37042081218101 31 true 0.0916898849999999987 1.32043039815892005 0.123400863886452994 -0.00281292249999999999 17 10 0.97088677000000001 0 17 false 150 9791.77380603335041 38.100845490751901 256.996002 15.7112119999999997 16 4897.96337417016002 20.8204215049691008 235.248050000000006 16.1263480000000001 14 7800.8848219770598 22.7623979922273989 342.709259999999972 15.0315600000000007 1.29688939999999997 0 1.0947886 0.415136339999999993 0.67965220000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.613634927376012 -62.0335686545464995 23.2113828069260002 -11.9491627931171003 110001 4989.91992 4878.74023 5152.74023 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535520776589440 2505535520776589440 1556615225 2015.5 25.8712816626176014 0.0973057390331242972 -2.08657522232239012 0.0779239489584433037 1.3929996629105601 0.111867938458796001 12.4521800000000002 14.2422561946771005 0.224995502313132006 -4.20377453355301967 0.162334741886758005 0.12991939999999999 0.229627940000000003 0.0554309259999999984 0.144755290000000009 -0.248766850000000012 0.234069589999999994 0.208776240000000002 -0.200909749999999998 -0.106380240000000001 0.311676320000000007 158 0 157 1 1.94352459999999994 187.699005 0.279082585454654974 1.48482704534734999 31 true 2.06066800000000017 1.37658363686448992 0.0261464219075789005 0.0184832439999999994 18 10 0.212636949999999991 0 18 false 156 2542.61321475707018 3.01657707867809011 842.880005 17.1751649999999998 15 714.361244288039984 12.4144179614613002 57.5428700000000006 18.2165929999999996 14 2789.10650295092 8.48071627816687013 328.876280000000008 16.1482559999999999 1.37790039999999991 0 2.06833650000000002 1.04142760000000001 1.02690890000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.596622074478006 -62.0263869867203965 23.2111423314762 -11.9384302037246002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535520776590208 2505535520776590208 1259521477 2015.5 25.8737564055570992 1.13160838414697995 -2.08324366370184011 1.01782496843002002 \N \N \N \N \N \N \N 0.282810720000000015 \N \N \N \N \N \N \N \N \N 137 0 137 0 167.034909999999996 63898.1992 7.63783036485534961 2556.83642235469006 3 false 0.0162970960000000005 \N \N 0.102424845 16 10 2.63910320000000009 0 16 true 139 6224.08400541126957 76.9336841239628058 80.9019012 16.2031759999999991 15 2580.57861498916009 18.4194312597700005 140.100889999999993 16.8220959999999984 14 7961.03609759614028 15.5782321996438995 511.035919999999976 15.0094960000000004 1.6936814 0 1.81260010000000005 0.618919400000000008 1.1936808000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.598354774103001 -62.0223182177281984 23.2147405737614996 -11.9362342722977992 132001 4403.81006 3882.6499 4550.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535245900766720 2505535245900766720 318294728 2015.5 25.8945500728854014 2.38486825115833989 -2.11103935386099995 1.32325087967479993 -0.135337894478462006 2.44161149231993013 -0.0554297399999999982 -5.25792380161836981 4.05051371855719999 -13.9157889584018992 3.63457475105682981 -0.482656660000000015 0.521574300000000046 -0.236354320000000007 0.0590324360000000006 -0.442709679999999994 0.233398099999999997 -0.131883129999999987 -0.310280300000000009 -0.322975400000000024 0.24895173000000001 75 0 73 2 0.125244889999999998 68.7969971 0 0 31 false 0.015802502999999999 1.29159305200478003 0.437642292133231026 -0.152418730000000002 9 7 3.92850160000000015 0 9 false 75 82.8524099271559038 1.70199314619477993 48.6795998 20.8926030000000011 5 23.6125064622761016 6.85773063741307976 3.44319530000000018 21.918533 6 83.504730356880799 9.81641445357170994 8.50664199999999937 19.9576419999999999 1.29286809999999996 0 1.9608916999999999 1.02593040000000002 0.934961299999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.663750761785991 -62.0385569177903022 23.2241156513711999 -11.9697047959186005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535245898675456 2505535245898675456 518850871 2015.5 25.893177602619101 0.750806736349773018 -2.10185492025896004 0.598742893968351009 -0.00197216145373896009 0.884012976423812047 -0.00223091920000000011 -0.897065533284262973 1.91545318075566007 -7.6661974766410399 1.1386422886435299 0.247452740000000004 -0.178473309999999996 -0.152431669999999991 0.154947790000000002 -0.411577369999999998 0.223919289999999993 0.14948322 -0.0433701000000000017 -0.0631465100000000029 0.320367630000000014 138 0 138 0 1.73658840000000003 162.617004 0.35195842770241198 0.045011565519153203 31 false 0.0424156379999999986 1.10085187141546004 0.193334935544706987 0.0329965759999999997 16 10 1.73011390000000009 0 16 false 140 144.139243009203994 1.40735669249225004 102.417999 20.2914099999999991 11 59.3091119240668974 14.5431458688657997 4.0781489999999998 20.9185850000000002 14 181.406443579828988 9.68011789460095073 18.7401069999999983 19.1152879999999996 1.67002089999999992 0 1.80329699999999993 0.627174400000000021 1.17612270000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.652723989809999 -62.0308434766766013 23.2262449883067994 -11.9606551687950002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534627423387136 2505534627423387136 1579352179 2015.5 25.9342536728426012 0.0966031337421540959 -2.09876741740849981 0.0704107419944935004 2.83254810356958986 0.105529789299064994 26.8412189999999988 12.7706075403211994 0.210267135887571011 -23.2842541465550994 0.139126121816755988 0.0586738799999999977 0.282530400000000015 -0.0208026819999999994 0.0941015199999999941 -0.132875999999999994 0.095777580000000001 0.0656479449999999992 -0.0671053199999999961 0.0782783199999999985 0.132699029999999996 177 0 175 2 1.80077200000000004 204.658005 0.294347839826225977 1.7197658221229899 31 false 1.9509723000000001 1.3658646423960501 0.0233846989056167992 -0.0253503599999999989 20 10 0.190441899999999997 0 20 false 174 2470.04216384632991 2.94486301850432985 838.763 17.2066039999999987 16 633.620952112652958 9.91321012922666078 63.9168299999999974 18.3468149999999994 19 2785.36904364653992 10.2026245656575991 273.005159999999989 16.1497139999999995 1.38418280000000005 0 2.19710159999999988 1.14021109999999992 1.05689049999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.728960037653991 -62.0104651621581979 23.2664526477342015 -11.9727942112427996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536040468070400 2505536040468070400 1003126997 2015.5 25.9086476152263003 0.0497582815811941984 -2.0666062215311598 0.044851205471784103 3.38842450650777982 0.0604064389940398017 56.0937649999999977 -39.6588799714455007 0.116845377048445997 -53.9856743659254974 0.101941457169155994 0.243007930000000011 0.219610109999999997 0.0208362970000000002 0.064714506000000005 -0.218091499999999994 0.0905952450000000048 -0.0570182899999999993 -0.144358010000000009 -0.0411703849999999968 0.426223929999999973 137 0 136 1 0.855128699999999964 144.621002 0 0 31 true 8.85441400000000023 1.35434664314302999 0.0127549240903401997 0.133883150000000006 16 10 0.123836050000000003 0 17 false 133 7842.01794778013027 6.16537765327934029 1271.93994 15.9522960000000005 14 2216.96853592666002 22.9083787094378017 96.7754439999999931 16.9869899999999987 15 8524.79332524976053 26.9021167773916012 316.881869999999992 14.9352099999999997 1.36977020000000005 0 2.05177969999999998 1.03469370000000005 1.01708599999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.650354842777006 -61.9923695978965981 23.2541296128123989 -11.9335029462279003 100001 3850.5 3598.5 4275.27002 0.0555000007 0.0208999999 0.194100007 0.0344999991 0.0109000001 0.0996999964 200111 0.501038549999999971 0.406422349999999988 0.573670270000000038 0.0497170600000000004 0.0478164900000000032 0.0516176340000000025 +1635721458409799680 Gaia DR2 2505535452057239680 2505535452057239680 154692711 2015.5 25.9151450723012999 0.833472137398052038 -2.08042852923703014 0.652650982823547055 -0.231768512371896995 1.00802507771946992 -0.229923349999999999 -6.77475440176310961 2.09922401847419993 -5.45470761229282974 1.87500890653823005 0.0763438939999999955 0.183159550000000004 -0.00103562649999999995 0.0998922399999999933 -0.187488910000000009 0.0526466599999999979 -0.23931849999999999 -0.287613899999999978 -0.246959790000000012 0.507701340000000001 115 0 115 0 0.836797200000000019 122.167999 0.428315869619393996 0.052035661954841099 31 false 0.0383936240000000012 2.00894763987685021 0.231121497980339013 0.0148913359999999998 13 8 2.16036649999999986 0 13 false 114 139.452026779704994 1.46956642031873996 94.8933029 20.3273030000000006 12 100.609947349641999 14.2881697480731003 7.04148599999999991 20.3447859999999991 12 108.360548565677007 7.78029651159871971 13.9275599999999997 19.6747419999999984 1.49851169999999989 0 0.670043950000000055 0.017482758000000001 0.652561199999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.675456087583001 -62.002081568330901 23.2551400850222016 -11.9487423861419 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535761294759808 2505535761294759808 544395196 2015.5 25.9247417106399993 0.287836324659560994 -2.07951738948250009 0.212046477457913995 0.210931244502002013 0.318993921683019988 0.661239099999999969 8.3144613008380599 0.68770456429374005 -6.9155406171132503 0.40745882819207202 0.0846177300000000021 0.172079879999999991 -0.0334204030000000013 0.0657739999999999991 0.00680600850000000028 0.0419428599999999985 0.117406800000000006 -0.0924132899999999952 0.136564839999999993 0.00128535900000000002 151 0 149 2 0.890954200000000029 158.942001 0.399110203068525016 0.332785429460014992 31 false 0.238397880000000006 1.47219936255501005 0.0704896128871047994 0.00465508600000000012 17 10 0.604579300000000042 0 18 false 149 456.460345880107013 1.98430358945176999 230.035995 19.0398579999999988 13 192.999765276847995 16.5251229163127995 11.6791725 19.6374969999999998 12 378.354802515078006 10.0328573640339993 37.7115700000000018 18.3171709999999983 1.2517069999999999 0 1.32032590000000005 0.597639099999999979 0.722686770000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.693082994520012 -61.9971498862355972 23.264604452417899 -11.9514014163025006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535795654500352 2505535795654500352 739305245 2015.5 25.9333121065111989 0.280587572575197008 -2.07336430135777983 0.220130888505988997 0.23428211077688299 0.314719552710937989 0.744415500000000008 8.41945345985848981 0.743561966805246999 -8.79565904944773003 0.420763277379747003 0.108577610000000005 -0.0305216129999999995 0.118621939999999995 0.0926549700000000032 -0.22224851000000001 0.151200030000000013 0.312866450000000018 -0.241252350000000004 0.0188028070000000012 0.0611538439999999989 163 0 160 3 0.702532770000000029 167 0.569474818232121982 0.676330481568728992 31 false 0.237309429999999988 1.49437228543404999 0.0676012773400483935 -0.021488732 19 10 0.658379300000000001 0 19 false 161 491.503457621004998 2.1025161375782 233.768997 18.9595489999999991 15 274.566561698810006 9.03667456365763044 30.3835850000000001 19.2547679999999986 17 356.612277651153988 8.97403214387155934 39.7382429999999971 18.3814300000000017 1.28417979999999998 0 0.873338700000000023 0.29521942000000001 0.578119300000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.703946152821004 -61.9879198496573025 23.2750524613833996 -11.9488062291340995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536036172673664 2505536036172673664 977370188 2015.5 25.9046255185626002 0.135734956329163992 -2.05536094721884011 0.106849727430657002 1.36040044831915008 0.147644059511752995 9.21405500000000011 11.4044577322639995 0.358657485680735022 -6.55765459420428964 0.235728559807626997 0.101936429999999995 0.0221933440000000003 -0.0261067900000000012 0.132261220000000013 -0.21556075999999999 0.195155109999999993 0.19554494 -0.176491680000000012 -0.0952089950000000046 0.173552960000000006 141 0 140 1 0.380347549999999979 140.660004 0 0 31 false 1.13428269999999998 1.37683671603370006 0.0329298884215847992 -0.0299060010000000015 16 10 0.323489579999999999 0 16 false 138 1381.58918859827008 2.38738689910824009 578.703003 17.8374179999999996 13 425.526734685528027 7.76653240002304024 54.7897999999999996 18.7790719999999993 15 1448.26583914313005 13.5165866470569007 107.147310000000004 16.8597980000000014 1.35625890000000004 0 1.91927340000000002 0.941654199999999997 0.977619200000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.632376019540004 -61.9839248202210982 23.2545091112071987 -11.9215666710282999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536070532535040 2505536070532535040 232633903 2015.5 25.9208644595039992 1.5831689067680601 -2.04958122625986983 1.53746454155868006 -2.75481177414914979 1.71945850450101001 -1.60213910000000004 -5.40689708245260992 4.74536314554207017 -0.611594036000940977 3.98754184003285017 0.263235400000000008 -0.345924759999999998 -0.0446457830000000014 -0.033664417000000002 0.0125985569999999998 0.0272636599999999986 -0.29247662000000002 -0.144309300000000001 0.056252996999999999 0.163222659999999992 73 0 71 2 -0.949037970000000008 55.092701 0 0 31 false 0.0143613144999999998 1.51155959204095991 0.478337278073228012 -0.0140196090000000006 9 7 4.27076670000000025 0 9 false 76 76.6219525906998058 1.60433420233542989 47.7593002 20.9774819999999984 4 42.3069170484481987 1.63654189005252992 25.8514119999999998 21.2853600000000007 6 72.8608744470212031 22.7369149207262993 3.2045189999999999 20.1056840000000001 1.50306519999999999 0 1.17967599999999995 0.307878499999999999 0.871797559999999971 \N \N 0 \N \N \N NOT_AVAILABLE 151.658333758228991 -61.9717574374611999 23.2721067661182985 -11.9221215502812008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534936661029760 2505534936661029760 659575069 2015.5 25.9549127865396017 0.247556935145104989 -2.10345271518370014 0.16161421560269601 2.47394929097136984 0.270875576084927017 9.13315799999999989 21.7364547862656003 0.488985294377306978 -5.99071531816456027 0.300440167057373975 -0.0869240000000000013 0.399003200000000002 -0.00432954900000000024 0.0951374599999999931 -0.277116499999999988 0.109908249999999999 0.134070500000000009 -0.0690873999999999933 0.0652425699999999997 0.10757448 177 0 176 1 6.0490339999999998 308.045013 1.08594773275256995 6.77530956090083958 31 false 0.358449159999999989 1.34067050701528001 0.0527532789125920998 -0.0727609699999999943 20 10 0.432189880000000026 0 20 false 176 918.104183367817996 2.47843812689808018 370.437012 18.2811360000000001 19 244.042367823218001 8.12431253009052945 30.0385249999999999 19.3827250000000006 19 1277.08823103142004 16.3536882123934006 78.0917599999999936 16.9963680000000004 1.65681699999999998 0 2.38635639999999993 1.10158920000000005 1.28476720000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.772973124185 -62.0058336836738988 23.2843446636470013 -11.9847039933884005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535009675919744 2505535009675919744 310162396 2015.5 25.9356859131200004 0.0978470799141337028 -2.08546074425900985 0.0719883016274868032 0.474077039649313026 0.107315943110505005 4.41758249999999997 9.37622872206721958 0.216804101419604989 -6.57216908450979975 0.14389078834977001 0.0529568700000000031 0.258773179999999992 0.034408130000000002 0.0681816900000000031 -0.127424850000000006 0.0628269699999999959 0.0656583599999999989 -0.0975169540000000029 0.0922047800000000001 0.10673473 175 9 173 2 1.72671090000000005 200.927994 0.189333508979708992 0.688875381152119992 31 false 2.04147960000000017 1.44733805783186997 0.0237922220721737999 -0.030370359999999999 20 10 0.188420609999999988 0 20 false 172 2345.6477208347801 3.38181542193566997 693.606018 17.262709000000001 16 972.046624369804022 10.9301664243615004 88.9324649999999934 17.8821699999999986 16 2025.10786815483993 15.2655613476960994 132.658580000000001 16.4957999999999991 1.27775130000000003 0 1.38636969999999993 0.619461060000000008 0.76690864999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.719555013903005 -61.9978308533539035 23.2727882709219998 -11.9609324354244002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535039740379008 2505535039740379008 103194699 2015.5 25.9442489973674988 2.58978438011269985 -2.08137786302805017 1.63773042589589002 \N \N \N \N \N \N \N 0.293630800000000025 \N \N \N \N \N \N \N \N \N 78 0 77 1 1.24644400000000011 87.2570038 0 0 3 false 0.0150123649999999997 \N \N -0.0416877569999999989 10 7 7.34462740000000025 0 10 false 79 78.039318217413097 1.50983619575773997 51.6873016 20.9575819999999986 5 54.8158750422065992 12.1895191454112997 4.49696799999999985 21.0041219999999988 8 63.1401288543664023 11.1091729870390008 5.68360299999999974 20.2611559999999997 1.51149449999999996 0 0.742965699999999951 0.046539307000000002 0.696426400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.732287641287996 -61.9904719186470032 23.282455892698799 -11.9602612038193001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535903029116800 2505535903029116800 1136235801 2015.5 25.9520501713477003 0.36923590793945299 -2.06753294728191017 0.229259497201972001 0.0609460141640670999 0.357120246893138982 0.170659649999999996 -0.390467284200610998 0.92871790794201603 -2.87893036459598983 0.435240984633021022 -0.0469705870000000011 -0.0894091050000000026 -0.368552600000000008 0.158483700000000005 -0.101605445000000003 0.203647059999999991 0.0694730100000000017 0.117641209999999996 0.0421776619999999977 -0.0214887929999999991 165 0 163 2 -0.390273900000000007 150.516998 0 0 31 false 0.17954363000000001 1.53778489026778997 0.0786133444270029069 -0.0964490600000000031 19 10 0.830924699999999961 0 19 false 164 363.830317470309012 1.68512596827216998 215.906998 19.2861200000000004 16 191.533157347415994 8.92398287959129988 21.4627440000000007 19.645779000000001 16 266.894873138051025 10.5703086265225998 25.2494869999999985 18.6960699999999989 1.26000500000000004 0 0.949708939999999946 0.359659200000000012 0.590049739999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.734633074086986 -61.9746211640086031 23.2950471367260015 -11.9502250799777006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534833581820416 2505534833581820416 1570627120 2015.5 25.9991333102928017 3.42422415794820978 -2.09001498529184992 2.68403028126616006 \N \N \N \N \N \N \N 0.51767295999999996 \N \N \N \N \N \N \N \N \N 69 0 69 0 2.43209700000000018 94.7789993 5.71206484834520989 2.00841402996984986 3 false 0.00931648900000000071 \N \N -0.0260456430000000003 8 7 12.2558109999999996 0 8 false 70 86.926561625062007 1.57246605904768 55.2803993 20.840485000000001 6 63.9986735021993027 11.5846038430085994 5.52445939999999958 20.83596 6 67.8254585200652969 9.19424192156341924 7.37694929999999971 20.1834370000000014 1.51649999999999996 0 0.652523040000000054 -0.00452423100000000009 0.657047300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.845617381405987 -61.9746959931162991 23.3314156398728016 -11.9883507471546 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523082551293440 2505523082551293440 621711455 2015.5 26.0231020222524982 0.141117436333773993 -2.10159495574980015 0.0946603630323405026 0.573776883102322999 0.139977310780033004 4.09907049999999984 0.454366862182822018 0.338801546710666979 -4.89368549777740025 0.180828190714272002 -0.0233205219999999998 0.0539150720000000014 -0.272851940000000015 0.141303299999999993 -0.0935232200000000041 0.170794470000000004 0.0647470500000000004 0.0653428100000000012 0.0771178299999999983 0.0106076989999999999 159 0 159 0 -2.16246200000000011 118.519997 0 0 31 false 1.1239889999999999 1.58489644876031011 0.0324878589528473025 -0.0910960499999999979 18 10 0.30491486000000001 0 18 false 158 1387.59560589176999 2.08955181525261979 664.064026 17.8327080000000002 16 764.984582590660011 11.3661465562437005 67.3037800000000033 18.1422559999999997 15 942.592138742243037 12.6135878544522999 74.7283099999999934 17.3261099999999999 1.23060109999999989 0 0.816144940000000041 0.309547420000000018 0.506597500000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.902239955682006 -61.9748223343140978 23.3498826459914 -12.0078836289163995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534872236966016 2505534872236966016 1127307098 2015.5 25.9826495570008014 0.221400357206102988 -2.08211005099144986 0.142633340433497013 1.48087172570407999 0.217429526318042993 6.81081249999999994 9.25624276400104051 0.530322316813647054 -20.9541658205613999 0.270925906676677986 -0.057670082999999997 0.0600952579999999986 -0.274425770000000013 0.155205769999999993 -0.133867399999999998 0.200239630000000002 0.108061820000000003 0.0302755180000000013 0.0357964750000000012 0.000415236079999999985 166 0 166 0 3.02575400000000005 220.802994 0.665744548900028987 2.21391297669040021 31 false 0.463580849999999989 1.297323965573 0.0471598264120468985 -0.104778155999999997 19 10 0.473343699999999978 0 19 false 164 836.786520885421965 1.62437092131213001 515.14502 18.3818279999999987 16 203.788105728344988 12.3014685771877996 16.56616 19.578441999999999 16 1011.67563472407005 9.94735517956369009 101.702979999999997 17.2493170000000013 1.45253739999999998 0 2.32912449999999982 1.1966133000000001 1.1325111000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.80673087241999 -61.974649036030101 23.3186948094543993 -11.9749717888437992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534902301299328 2505534902301299328 878911215 2015.5 25.9922260106661014 1.78905592529284996 -2.083166111343 1.46910299776204001 2.43247643312106021 2.04359453710037986 1.1902931000000001 14.9973329167578004 4.78224216984155959 -14.5943282683280007 2.95615581882913014 0.341255299999999984 -0.381952349999999996 -0.213033210000000001 0.0187146800000000009 -0.300055919999999976 0.0691128200000000054 0.0126831050000000001 0.0616250370000000006 0.11128093 0.21044017000000001 95 0 95 0 2.9518184999999999 134.820999 4.20938358198865981 1.52806196011890005 31 false 0.0103077389999999998 \N \N 0.106183890000000003 11 9 4.26389930000000028 0 11 false 96 86.040468843361495 1.48528711264008995 57.9285011 20.8516079999999988 8 84.8264610388335996 22.3316429250168014 3.79848719999999984 20.5300599999999989 9 87.9556892870382967 6.45700956563350026 13.6217375000000001 19.9012600000000006 2.00814989999999982 0 0.628799439999999987 -0.32154845999999998 0.950347900000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.826083698398008 -61.9714854214012973 23.3274063800797009 -11.9794528004347001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540983975119872 2505540983975119872 1653447998 2015.5 25.9897419241858003 1.20327287869087995 -2.0581803332455002 0.829476471003790961 -0.526889982636214005 1.28150215557828995 -0.411150279999999979 -7.00760489550926025 3.6227824715449799 -6.89253898032606038 3.17136095540536989 -0.0018081588999999999 -0.403737659999999998 -0.12894659 0.270801599999999976 -0.143401830000000008 0.151015640000000007 -0.192361580000000004 -0.183416529999999994 -0.341846900000000009 0.187066270000000007 117 0 116 1 -1.62563649999999993 87.9256973 0 0 31 false 0.0219290419999999993 1.38154772539569004 0.29644428536192502 -0.116333640000000002 14 9 3.3151704999999998 0 14 false 118 100.661899859187997 1.1121590247289399 90.5102997 20.681204000000001 11 67.4631084436674939 21.2373423940217982 3.17662669999999991 20.7787229999999994 12 58.8570246125947989 8.74669754273242006 6.72905700000000007 20.3374230000000011 1.25489519999999999 0 0.441299439999999987 0.0975189199999999951 0.343780519999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.798453724062995 -61.9499968565369983 23.3343792824333001 -11.9552883453132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540915255522048 2505540915255522048 1644634575 2015.5 26.0185526159757003 2.90998208451944995 -2.05437744193132987 2.46748425976445995 \N \N \N \N \N \N \N 0.142920209999999992 \N \N \N \N \N \N \N \N \N 116 0 113 3 28.6260529999999989 1307.94995 17.4496120296292005 75.9573838876739984 3 false 0.0028806779999999998 \N \N 0.0268654699999999989 14 10 6.64143750000000033 0 15 false 121 147.846754461101995 2.18942542427945996 67.5276031 20.2638360000000013 12 161.00798386367299 8.34154376239126982 19.3019399999999983 19.8342700000000001 13 422.560699384755992 10.4053423380102998 40.6099740000000011 18.1971969999999992 3.94711880000000015 0 1.63707350000000007 -0.429565430000000026 2.06663899999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.850230792918012 -61.9341750620683982 23.3631951468051007 -11.9622702217085006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521746816912256 2505521746816912256 413327641 2015.5 26.0389667963580003 0.113188662320798994 -2.17838362936292995 0.0858606996959483948 2.9271804435656299 0.130689583960967998 22.3979630000000007 40.2376409574080967 0.246761303850697999 -4.47198480405644982 0.163040771149124991 0.0692963300000000032 0.254512249999999995 0.0109824390000000001 0.0706509300000000007 -0.216902399999999995 0.0412782540000000003 0.0436521699999999971 -0.0321432050000000011 0.161166189999999987 0.139159430000000001 169 0 168 1 2.41594340000000019 209.837997 0.359586168959186991 1.87220804252355011 31 false 1.43671079999999995 1.27342871438876992 0.0289112692627706003 0.00337823639999999988 19 10 0.221505750000000001 0 19 false 167 1959.61237996274008 2.43574825742309997 804.521973 17.4579410000000017 18 381.937327118924998 14.4395329141557003 26.4508100000000006 18.896408000000001 16 2524.19267006579003 16.6086606186719017 151.98051000000001 16.256615 1.48301269999999996 1 2.63979339999999985 1.43846699999999994 1.20132639999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.003384084639009 -62.0372240731806031 23.3362757640642009 -12.0851543085036006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521746816911872 2505521746816911872 943305144 2015.5 26.0369677013550991 0.0304115527021095004 -2.17412543876563991 0.0249840532670402016 2.69278106200140988 0.0353914964349305999 76.0855399999999946 3.87551786311057 0.0646459525515469952 -4.48479703577067035 0.0542086090749279992 0.104167140000000005 0.328609099999999987 -0.0116422399999999999 -0.0147877570000000003 -0.196649419999999991 -0.0984736600000000045 -0.241797480000000009 0.0138228610000000005 0.190705760000000002 0.2417184 167 0 166 1 -1.7503652999999999 131.007004 0 0 31 false 26.3058450000000015 1.47669911475079996 0.00837940313739241917 0.0116251229999999994 19 10 0.0697358849999999975 0 19 false 163 21624.314138985701 9.9007769272781303 2184.1001 14.8510100000000005 19 8556.33098730990059 34.0102605738418973 251.580870000000004 15.5206689999999998 18 19071.0790265456999 28.0385715724758988 680.173000000000002 14.0609819999999992 1.27760859999999998 0 1.45968720000000007 0.669658659999999961 0.79002859999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.995614126394997 -62.0342495561210967 23.3359658344175003 -12.0804605937989002 100001 4417.66992 4346.06982 4625.66992 0.358500004 0.110600002 0.493999988 0.174700007 0.0810000002 0.25029999 200111 0.675340999999999969 0.615971099999999994 0.697776199999999958 0.156499400000000011 0.151691839999999994 0.161306959999999999 +1635721458409799680 Gaia DR2 2505521815535831424 2505521815535831424 142795799 2015.5 26.0277562934966014 0.653163305831212959 -2.16754577878817001 0.474029785307865992 2.7216632713973401 0.740079411227875017 3.67752860000000004 20.011630937576399 1.47910426228463998 2.74823232305899978 0.83999292017306304 0.0520672159999999995 0.161266739999999992 0.0137493249999999997 0.0916287449999999976 -0.236671569999999998 0.0902937000000000045 0.165301370000000003 -0.0562295650000000022 0.156409949999999992 0.0756428299999999942 165 0 161 4 6.03489300000000028 287.71701 3.02886268998802022 8.61963675514613925 31 false 0.0461210499999999968 1.16438004424288 0.152807849196368001 -0.0144447050000000004 19 10 1.29890299999999992 0 19 false 161 237.025206778797013 1.41859387553702998 167.085007 19.751379 10 139.956378791551003 17.0625886370063 8.20252900000000018 19.9864059999999988 9 425.302703723097011 17.0341075447534998 24.9677119999999988 18.190173999999999 2.38480569999999981 0 1.79623219999999995 0.235027309999999989 1.5612048999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.971848631056986 -62.0322980487547966 23.3296634019319988 -12.0709717588740002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521815536388224 2505521815536388224 1533766416 2015.5 26.028483823239899 0.0351175185566693984 -2.16794462821570999 0.0286216600232835003 1.32958322057726996 0.040627628181104998 32.7260860000000022 19.7625267840874983 0.0767627176387225968 2.58161497667231998 0.0617571680942195986 0.0975223800000000057 0.28280818000000002 -0.031354967999999997 0.00825690400000000067 -0.216598120000000005 -0.0481878440000000005 -0.187789769999999995 0.000755331600000000024 0.159882439999999987 0.241331149999999994 166 0 166 0 -2.34655740000000002 121.902 0 0 31 false 17.517277 1.51918575729218008 0.00979659069233933082 0.00426966700000000043 19 10 0.0797524099999999958 0 19 false 166 14726.4067414796009 6.79707493737569024 2166.58008 15.2681240000000003 15 6737.99640113674013 10.4906122652083003 642.288199999999961 15.7800609999999999 17 11512.3204511965996 34.0621244727002974 337.980099999999993 14.6090129999999991 1.2392919 0 1.17104819999999998 0.511937140000000013 0.659111000000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.973614168976013 -62.0323433817802012 23.3302063247503 -12.0716087434874009 100001 4938.25 4906.5 5029 0.287299991 0.172999993 0.449699998 0.132499993 0.076700002 0.223100007 200111 0.829159599999999997 0.799504699999999957 0.839925350000000015 0.368352200000000018 0.342755319999999974 0.393949099999999997 +1635721458409799680 Gaia DR2 2505521742521473152 2505521742521473152 104690333 2015.5 26.0374922632345012 0.118808962703203 -2.16985482885400982 0.0906998305262835952 1.89703502557369008 0.137191536882519005 13.8276389999999996 19.2559267415296986 0.262181050180502973 -9.88613008561475937 0.171664458034040013 0.0845921000000000034 0.236690370000000011 -0.00192068160000000003 0.0706059400000000059 -0.204548759999999996 0.0421916700000000006 0.0497340559999999987 -0.0277525220000000017 0.164548470000000002 0.135796840000000002 168 0 168 0 3.9158141999999998 243.544998 0.47249769040164602 3.40372361726325989 31 false 1.28223899999999991 1.31438912957772991 0.0297934100870080008 0.0113780159999999995 19 10 0.234844770000000008 0 19 false 168 2010.21015823916991 2.80193056944569996 717.437988 17.430261999999999 18 505.142955439565981 13.5915121460930006 37.1660600000000017 18.5928520000000006 17 2365.39234186163003 20.4738361823498991 115.532449999999997 16.3271620000000013 1.42797770000000002 0 2.26568980000000009 1.16259000000000001 1.10309980000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.992682185900009 -62.0301725186645001 23.3380610348132009 -12.0766770462420006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521575018219776 2505521575018219776 90670090 2015.5 26.0686490432724014 0.153297159942969996 -2.17242559783636979 0.0972213941151551936 15.9238143547696005 0.172890051037057013 92.1037100000000066 284.703577262456008 0.272277186817882988 21.4111464228497006 0.182722354536449999 -0.0396732429999999969 0.50399970000000005 -0.0676737899999999976 0.124885960000000004 -0.181499450000000007 0.0395019399999999993 -0.0609710099999999991 0.0440311899999999978 0.183302390000000009 0.132489699999999988 129 0 126 3 6.31875560000000025 247.242004 0.598338665857864993 7.23799259323662003 31 false 1.4076344999999999 1.17034187468252004 0.0352328812108586992 -0.0331013650000000006 15 10 0.242857960000000012 0 15 false 126 2960.71959685312004 5.85770355686724997 505.440002 17.0098720000000014 13 328.273453882991021 26.7345501603591984 12.2789959999999994 19.0607989999999994 13 4446.98037223785013 10.8315402061372996 410.558440000000019 15.6417570000000001 1.6128693999999999 0 3.4190415999999999 2.05092620000000014 1.36811539999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.054881219788001 -62.0190075207947018 23.3667377275078003 -12.0904482238509008 100001 4095.25 3669.11011 4485.33984 0.147 0.0560000017 0.818099976 0.0920000002 0.0179999992 0.35679999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518478351107712 2505518478351107712 812990459 2015.5 26.0912053662565988 0.434057646033747024 -2.19594135247479993 0.360626740777670984 1.23981592849452005 0.497806236467116026 2.49055930000000014 -10.0914576609657995 0.981182818798558953 -12.0437647409328008 0.663088717480947998 0.233324659999999989 0.166267720000000008 -0.070993760000000003 0.0790245900000000057 -0.0452098770000000025 0.0635941800000000002 -0.0271966530000000012 0.0227533239999999984 0.188438699999999987 0.176860170000000011 138 0 136 2 0.829795100000000008 144.184006 0.787610969323792043 0.900038574744460029 31 false 0.103227520000000003 1.43312215880488991 0.106418411636294993 0.114784226000000003 16 10 0.871825929999999971 0 16 false 135 290.759373466148986 1.49203847547928992 194.873993 19.5295309999999986 12 109.590601032196005 12.0636875236715007 9.08433699999999966 20.2519549999999988 13 327.259521259899998 12.4863964418897009 26.2092859999999988 18.4746899999999989 1.50244559999999994 0 1.77726549999999994 0.722423550000000025 1.05484200000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.119924289847006 -62.0304141969581977 23.3794080892254996 -12.120573988456 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518482641810688 2505518482641810688 635484374 2015.5 26.091546882645499 0.0363587085460495008 -2.19379958583103019 0.0330503646309009969 1.79243185537999006 0.042220816753210301 42.4537469999999999 22.4312407075865003 0.0713360048511672978 16.9139968481702994 0.0661013285213909035 0.270834299999999972 0.413611169999999972 -0.0595727860000000026 -0.0445502200000000015 0.0211328580000000009 -0.130763600000000008 -0.345831569999999977 0.0413959360000000012 0.186861630000000001 0.267805130000000002 129 0 126 3 0.92741686000000001 135.289001 0 0 31 true 24.5197749999999992 1.54914369943857011 0.00949008834626948079 0.0868387199999999942 15 10 0.0779411500000000007 0 15 false 125 21188.3202482089 11.2951557441086994 1875.88 14.8731240000000007 13 10088.4416025348 47.7238978612101974 211.391819999999996 15.3418279999999996 12 16018.3036297480994 28.0215089708622003 571.643100000000004 14.2503790000000006 1.23212910000000009 1 1.09144970000000008 0.468704220000000005 0.622745499999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.11859630163201 -62.0283367748086008 23.3805334099341984 -12.1187050044269995 100002 4902.5 4597.8501 5044.1001 0.0160000008 0.00529999984 0.151999995 0.00800000038 0.00260000001 0.0716999993 200111 0.751769240000000005 0.710153699999999999 0.854691700000000054 0.294126539999999992 0.2784798 0.309773269999999989 +1635721458409799680 Gaia DR2 2505521609377958272 2505521609377958272 1061168351 2015.5 26.0771715932039001 0.0310102830947008995 -2.17331814283783009 0.027218943005836601 0.222922245450495993 0.0370407616740099019 6.01829530000000013 5.96316099125203003 0.0658509126035411035 -2.17352579764635001 0.0570984255320551998 0.182747660000000006 0.296777669999999993 -0.0872200900000000001 -0.0325860099999999986 -0.15371304999999999 -0.120949215999999998 -0.338580500000000006 0.0629350540000000042 0.218776539999999992 0.282232939999999988 147 0 147 0 -1.6523102999999999 115.353996 0 1.68651817232593998e-15 31 false 29.783885999999999 1.55101871270012004 0.00847028830933498067 0.0465687300000000026 17 10 0.0723294399999999948 0 17 false 142 24498.482950039499 9.80812246133067056 2497.77002 14.7155179999999994 16 11499.4478879644994 31.4816603077725006 365.274499999999989 15.1996959999999994 14 18768.1446241183985 48.8553411553912014 384.157469999999989 14.0783660000000008 1.23548839999999993 0 1.12132929999999997 0.484177599999999986 0.637151699999999988 \N \N 0 \N \N \N NOT_AVAILABLE 152.072062111786011 -62.0161193223551024 23.3745115797762004 -12.0943909942323007 100001 4955 4855.58984 4983.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521811240955264 2505521811240955264 1189070030 2015.5 26.0254807267209998 0.204318872714629007 -2.1568160828221199 0.146900196342542005 0.234137366999843 0.21462153949166099 1.09093130000000005 9.60299812003771081 0.482559729122436998 -2.60952743015459987 0.268630456082840974 0.0623165800000000034 0.1555367 -0.104539359999999998 0.120927185000000006 -0.0724880549999999957 0.115717799999999996 0.189117249999999987 -0.0177845789999999983 0.134576720000000011 0.0249351909999999989 156 0 156 0 2.40910050000000009 196.059998 0.304974168069642004 0.407763986744573981 31 false 0.487716880000000019 1.6913493427519799 0.0501267416092177967 -0.0473488270000000031 18 10 0.426486199999999982 0 18 false 155 793.761700604080033 2.14838546500571015 369.468994 18.4391399999999983 17 463.649508913686986 15.1361843119937998 30.6318629999999992 18.6859129999999993 18 539.598057447990982 11.7857780058788997 45.7838300000000018 17.9317439999999984 1.26391530000000007 0 0.754169459999999958 0.246772770000000002 0.507396700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.957589231804008 -62.0236052550428028 23.331509422211699 -12.0601533339573006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521948679911936 2505521948679911936 1659242199 2015.5 26.0458323064445985 0.283126811060148975 -2.14773604458713985 0.211326293300019008 -0.0481218998930598024 0.310059500590154025 -0.155202150000000011 0.463193803341567012 0.681019945921247039 -2.13552900532646994 0.393060668676114 0.0925616850000000047 0.000934643500000000038 -0.151091900000000001 0.091153449999999997 -0.168375820000000009 0.108330960000000004 0.0681547099999999934 0.0335180049999999966 0.147643300000000005 0.0864262950000000002 161 0 158 3 0.439243879999999975 160.125 0 0 31 false 0.235155370000000002 1.63696305522468011 0.0714521520877755001 -0.016337125000000001 18 10 0.601705099999999993 0 18 false 158 451.218341263147977 1.75957887415470005 256.434998 19.0523990000000012 16 309.694304145418982 14.0743915167597997 22.0040990000000001 19.1240559999999995 15 227.316527482538987 9.01102544233306979 25.2264879999999998 18.8703420000000008 1.19013520000000006 0 0.253713599999999984 0.0716571800000000009 0.182056429999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.988304271277002 -62.0066251396861006 23.3542603669970994 -12.0591342316232009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521952975341184 2505521952975341184 1582511183 2015.5 26.0459030164947016 0.0577957233020700012 -2.14454992837088998 0.0449808900658918986 1.38114176958645007 0.0646646317623679051 21.3585339999999988 118.910969407856001 0.129079184970167987 -47.6743965326071972 0.0919854087810264009 0.0619318150000000012 0.196114640000000007 -0.0689724099999999979 0.0514341599999999996 -0.184324399999999999 0.0259861000000000016 -0.101611660000000006 0.000617952440000000039 0.15212384000000001 0.153718770000000005 161 0 161 0 -0.640402849999999968 144.326004 0 0 31 true 5.80570460000000033 1.5234234400831701 0.0150598474982159992 -0.0174692380000000015 18 10 0.121718034000000003 0 18 false 159 5387.29569972171976 3.99113007059099001 1349.81995 16.3599400000000017 14 2513.33444631391012 19.6307847111261999 128.030259999999998 16.8507630000000006 11 4227.53908129034971 21.2324314307528006 199.107640000000004 15.6967009999999991 1.25125369999999991 0 1.1540623000000001 0.490823750000000003 0.663238499999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.985504124946004 -62.003721904951199 23.3555182329297004 -12.0561943086252992 100001 4955.97998 4852 5142.77002 0.105300002 0.00400000019 0.314799994 0.0520000011 0.00190000003 0.167600006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521987335079424 2505521987335079424 1332234691 2015.5 26.0603690350212993 0.0260790003778655008 -2.1411354871986501 0.0206384185252724006 1.65218396024328995 0.0291814116421358002 56.6176829999999995 17.2433880775786008 0.0563134614982849988 0.184704597241815011 0.0458215722843060003 0.0522450470000000028 0.256213899999999994 0.0375168849999999998 -0.0341869439999999969 -0.194219300000000011 -0.135616779999999992 -0.377163740000000025 -0.0148361194999999998 0.22947569000000001 0.20492262 151 27 149 2 2.83724800000000021 196.893005 0.0425584233555363969 0.408976329071398026 31 true 114.196709999999996 1.61386730505509002 0.00690095619945622039 -0.0499717299999999989 17 9 0.0567263299999999984 0 17 false 144 115941.45847297 55.9653779217303011 2071.65991 13.0277689999999993 15 64860.3323065510995 124.447647247796993 521.185669999999959 13.3214410000000001 16 74875.418613867907 130.089185799035988 575.569899999999961 12.5760719999999999 1.20522679999999993 0 0.745368959999999969 0.293671599999999977 0.451697349999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.010117001737001 -61.994388943301999 23.3705538064100011 -12.0582984617012006 100001 6223 6045.5 6477.83984 0.0869999975 0.0199999996 0.230100006 0.0427000001 0.00889999978 0.115099996 200111 1.10460500000000006 1.01940270000000011 1.17042109999999999 1.64857180000000003 1.58413270000000006 1.71301100000000006 +1635721458409799680 Gaia DR2 2505522738953900928 2505522738953900928 386217618 2015.5 26.0470636921637002 0.209161328108676992 -2.12743467334786018 0.139733950020652004 0.177221043910309989 0.224967860884218995 0.787761599999999951 7.84560751102695964 0.442377205472879009 -9.76413862158974943 0.254979601448637017 -0.0705772100000000013 0.229024890000000009 -0.152425410000000011 0.115574109999999994 -0.277840640000000028 0.100330143999999996 0.0258799769999999985 0.0459890179999999996 0.154608030000000007 0.0841529000000000027 146 0 145 1 1.50238570000000005 165.927002 0.399688826610546 0.835687751303427984 31 false 0.576745570000000041 1.68434662894760989 0.0462356799858366987 -0.0659153400000000028 17 10 0.392436500000000021 0 17 false 145 923.171201764995999 1.87970509077415993 491.126007 18.2751599999999996 16 527.900409857889031 10.3214816619413998 51.1457979999999992 18.5450079999999993 15 593.360081326071054 8.51849573777879954 69.6555000000000035 17.8286249999999988 1.21457480000000007 0 0.716382999999999992 0.26984786999999999 0.446535100000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.971969514848013 -61.9877879402868004 23.3630174723745014 -12.0406865984218996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188642688 2505528683188642688 355850717 2015.5 26.0461514878183991 0.0741484939841449975 -2.11468978934109986 0.0509054067731542978 0.0512771981565615029 0.0741591199278652941 0.691448330000000055 -0.0787831038892272961 0.173355029878562994 -1.35130080158962995 0.103235365986907995 -0.0352955599999999967 0.141671170000000013 -0.208182040000000013 0.113745150000000003 -0.0839633300000000027 0.129846130000000004 0.00274757920000000006 0.0146006399999999998 0.0643323660000000019 0.0161274910000000007 158 0 158 0 0.594399699999999975 162.938995 0 0 31 false 4.0801280000000002 1.47897941827506996 0.0174290272862304002 -0.100660780000000005 18 10 0.160646129999999998 0 18 false 158 4012.14192054428986 4.22439459588960986 949.755005 16.6799259999999983 17 1629.54316520672 15.2262783546291001 107.021770000000004 17.3212240000000008 17 3494.11652746776008 18.8859166991230012 185.011750000000006 15.9035770000000003 1.27703849999999997 0 1.41764739999999989 0.641298299999999988 0.776349069999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.958492701776009 -61.9766890359442968 23.3669116066517013 -12.0284899594365999 100001 4490.5 4384.5 4995.24023 0.577000022 0.273499995 2.20429993 0.257299989 0.1285 0.917999983 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188643200 2505528683188643200 1648996611 2015.5 26.0481763148546008 0.77508890604806302 -2.1130280072488099 0.546009907039450959 1.16259838220947009 0.746738016683113015 1.55690259999999991 8.59736935692860982 2.06291904553021999 -26.6061458493913001 1.20210590360607994 -0.000668287039999999996 -0.211762470000000008 -0.414573760000000013 0.121384784999999995 -0.0110216989999999994 0.159771649999999987 -0.199190229999999996 0.191349330000000012 0.0202693359999999989 0.0191323400000000012 140 0 140 0 -0.398191870000000003 127.917999 0 0 31 false 0.0411685970000000012 1.30781323801552007 0.177926804892261009 -0.0861281599999999953 16 10 1.84591499999999997 0 16 false 140 150.337626015667013 1.36687314673209004 109.987 20.2456969999999998 11 63.8604517435231003 8.65300663963352079 7.38014599999999987 20.8383080000000014 11 162.556005003785003 9.71611159403632918 16.730561999999999 19.234413 1.50605319999999998 0 1.60389519999999997 0.592611299999999952 1.01128390000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.960847972832994 -61.9743160095473016 23.3694582592529017 -12.0276824515203007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521708161740416 2505521708161740416 1228284018 2015.5 26.0884105254850986 0.198572768116386994 -2.15611419217507994 0.147937904042916013 1.33065869500375 0.239793471784779 5.54918669999999992 31.0543869177864984 0.451241193191009027 3.19617917342249003 0.251524204800899986 0.130302000000000001 0.0758315299999999942 -0.149386099999999994 0.0971356849999999994 -0.205359039999999993 0.061117005000000002 0.0935873539999999976 0.104447380000000006 0.245047960000000009 0.105636190000000005 150 0 149 1 0.948033600000000032 159.979004 0.269210101979017014 0.311230223502248993 31 false 0.535960439999999982 1.40079116234695999 0.0466569649999808017 0.0384966799999999984 17 9 0.400209870000000023 0 17 false 146 813.864412057331947 2.07078903084206001 393.020996 18.4119850000000014 14 217.297035631914014 12.1694410679713005 17.8559589999999986 19.5087529999999987 12 916.682652021265994 11.2410753698900994 81.5475899999999996 17.3563730000000014 1.39332750000000005 0 2.15237999999999996 1.09676740000000006 1.0556125999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.077724406877991 -61.995746655291498 23.3916314323325985 -12.0824799053940009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527789835646080 2505527789835646080 46110733 2015.5 26.0840356816243002 1.13815874049589993 -2.13041913435586983 0.962955623970200958 5.3887720170741904 1.10477710447700006 4.87770100000000006 12.7148426475029002 2.90081822893638996 -13.5129511153527009 2.24798887133117997 0.0504194649999999966 -0.194055470000000008 -0.513052759999999997 0.0207910260000000006 0.0200399310000000004 0.0256346460000000005 -0.580707399999999985 0.307411880000000026 0.0203441209999999997 0.18246003999999999 106 0 104 2 -0.697494399999999959 88.8843002 0 0 31 false 0.027364755000000001 1.14999267719059994 0.275206265717322984 -0.00169008099999999996 13 9 2.67499179999999992 0 13 false 106 111.417967359873998 1.58637770712341997 70.2341995 20.5709780000000002 5 248.654992732696996 125.493830610651997 1.98141199999999995 19.3623939999999983 11 180.151223320668009 11.6145955584443001 15.5107610000000005 19.1228279999999984 3.84862700000000002 0 0.239566799999999996 -1.20858379999999999 1.44815059999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.045620160195995 -61.9744872947358019 23.397069298176401 -12.0569638119547005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527892914658176 2505527892914658176 654887735 2015.5 26.085395942644201 0.372554800901143013 -2.11969506348405989 0.220305962707148001 2.01733392513258014 0.36530427892692402 5.52233839999999976 9.16670998758053912 0.922548131697107032 6.59223748534351994 0.38742585107066102 -0.028969588000000001 -0.0339227949999999986 -0.42654955 0.151784659999999988 -0.0389844250000000031 0.163706330000000011 0.116284676000000003 0.214930890000000013 0.149443130000000007 -0.042647659999999997 133 0 133 0 13.5953455000000005 490.381012 1.64149345947702008 13.8942090986927003 31 false 0.234602270000000002 1.19033629013462994 0.0711658581111511007 -0.0493778439999999971 16 10 0.83114695999999999 0 16 false 133 998.52371199391996 3.76599300316317986 265.141998 18.1899699999999989 14 257.997257459916 14.7689861846859003 17.4688529999999993 19.3223500000000001 11 1231.52942727092 13.6392803857141995 90.2928500000000014 17.0358090000000004 1.49172890000000002 0 2.28654100000000016 1.13237950000000009 1.15416150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.038339979229988 -61.9642331082638975 23.4023691438553989 -12.0474775210534002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523013832463872 2505523013832463872 1424025286 2015.5 26.0255709890403004 0.777690570487609034 -2.10792315050530998 0.575256235754180945 4.12087267319722983 0.821616308358658953 5.01556829999999998 -17.3065365474917989 1.96677103040726009 -20.9527978990088002 1.09850508656627999 0.109699643999999999 -0.0904823899999999959 -0.157922459999999987 0.10178355 -0.0449132770000000014 0.14695242 0.0146960230000000008 0.0064162443999999999 0.101284490000000005 0.0798050399999999938 138 0 138 0 1.6700851000000001 161.380005 0.188395038577274992 0.00977709582759605025 31 false 0.0356982200000000027 1.10595851222323005 0.219780146754403993 -0.0814527599999999991 16 9 1.7326649999999999 0 16 false 138 128.992750437387002 1.26793898888367007 101.734001 20.4119530000000005 8 37.096194280639601 15.8278864129457997 2.3437237999999998 21.4280639999999991 14 219.399878855991005 8.67649055605988018 25.2867069999999998 18.9088290000000008 1.98845340000000004 0 2.51923560000000002 1.0161114 1.50312420000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.912788724096004 -61.9794668014918031 23.3498663170631993 -12.0146757838355001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528889347240320 2505528889347240320 1330458035 2015.5 26.0300961637253998 1.90848534100750999 -2.09911636164556992 1.50158631652005004 \N \N \N \N \N \N \N 0.066692814000000003 \N \N \N \N \N \N \N \N \N 63 0 63 0 0.145237370000000005 58.9021988 0 0 3 false 0.0140043500000000005 \N \N -0.0199042400000000001 8 8 5.28563549999999971 0 8 false 64 82.9703565772811942 1.63576898919062996 50.7224998 20.891058000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.913383007194994 -61.9695707832521023 23.3574602509560982 -12.0081306475400993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522807673383936 2505522807673383936 1348069095 2015.5 26.039132050007499 0.239124859251606009 -2.10957042623596003 0.165349264102364002 0.896722809325185 0.237474959686288012 3.77607319999999991 2.81225720054364992 0.585078285392438002 2.17168136073741014 0.301221655169677027 0.0174942689999999998 0.028260594 -0.285072739999999991 0.165071830000000003 -0.0064946976 0.197221260000000009 0.117719229999999994 0.0947899499999999978 0.0990299959999999951 -0.00161692169999999992 146 0 146 0 1.32609430000000006 163.723999 0.327307224528133989 0.402678157516011992 31 false 0.408632160000000022 1.36062124891645997 0.0538392227866092005 -0.0702117599999999981 17 10 0.52205020000000002 0 17 false 147 675.705324053328013 1.62205662173484 416.572998 18.6139720000000004 13 235.468084865679998 13.6379164858433999 17.2656939999999999 19.421558000000001 12 654.02766621140097 5.8048539417467202 112.6691 17.7229290000000006 1.3163959999999999 0 1.69862939999999996 0.807586669999999951 0.891042699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.940320843703006 -61.9751024096687004 23.3621481509491993 -12.0211613988865 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188645760 2505528683188645760 704906790 2015.5 26.0434204990345002 0.172209552996287013 -2.10583296874072978 0.106865640346981997 0.292460576176835019 0.15671000763895801 1.86625339999999995 2.93442286739947011 0.418350536525819994 -24.7221975890925982 0.201552115800347986 -0.116886320000000002 -0.0372863000000000014 -0.434163999999999994 0.205131869999999994 -0.0300857650000000004 0.262472360000000016 0.028416170000000001 0.163824890000000001 0.0267925900000000015 -0.0608162019999999998 151 0 148 3 0.4299153 149.705994 0 0 31 false 0.964137800000000045 1.53419424676081007 0.0374453224795276984 -0.13526624000000001 17 9 0.381932319999999992 0 17 false 146 1201.12846272651996 2.29682727223118999 522.950989 17.9893910000000012 14 550.470553869565947 7.18465902635444031 76.6174900000000036 18.4995539999999998 14 927.125457973999005 10.4367176818914995 88.833045999999996 17.3440739999999991 1.23017320000000008 0 1.15547939999999993 0.510162349999999987 0.645317099999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.945111144993007 -61.9698805542562994 23.3676230761583987 -12.0192483558828993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528923706821888 2505528923706821888 831485924 2015.5 26.0453974403719002 0.352938851206510973 -2.08739858819224011 0.242612615721987002 -0.207779613021404991 0.348841122002521986 -0.595628200000000052 1.19478763617459993 0.895936440061622985 -6.21364870776617995 0.440577854764893972 0.018017847 -0.0615455619999999981 -0.304371100000000006 0.15829124 -0.00939189300000000012 0.196149450000000003 0.132169680000000012 0.11099974 0.102742575000000003 -0.0186462919999999983 148 0 148 0 0.6722051 153.970993 0 0 31 false 0.185961619999999994 1.59375546881857999 0.080279133605644995 -0.0748088499999999962 17 10 0.797486959999999967 0 17 false 145 378.898772524391006 1.47672700274887991 256.579987 19.2420580000000001 15 196.016134036072998 10.5712130125259005 18.5424439999999997 19.6206589999999998 17 295.185338487112006 13.1329389585952008 22.4767149999999987 18.5866830000000007 1.29639229999999994 0 1.03397559999999999 0.378601069999999984 0.655374499999999971 \N \N 0 \N \N \N NOT_AVAILABLE 151.931966171527989 -61.952400604182003 23.3763896324429012 -12.0028104397182993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528717548387968 2505528717548387968 207694698 2015.5 26.0548603542522983 0.292250624192428976 -2.09787378038803984 0.188946096025763011 0.52223593225180498 0.282068867743712981 1.85144829999999994 18.4880288672636013 0.727359751635806018 -19.8000191670683989 0.342736607484957989 -0.0266766919999999984 -0.0497143270000000026 -0.328594949999999997 0.171782779999999996 -0.0994657349999999996 0.22195026000000001 0.150083899999999992 0.0979140800000000006 0.059539393000000003 -0.00887805900000000064 158 0 156 2 1.34316419999999992 174.828995 0 0 31 false 0.288563220000000009 1.48488726055068998 0.0644325265717988066 -0.100048079999999998 18 10 0.649945439999999985 0 18 false 157 514.051693296976964 1.59712625364765004 321.859985 18.9108489999999989 14 212.079498491374011 8.69802711250149052 24.3824830000000006 19.5351409999999994 14 477.707648428618995 12.9676892476025003 36.8383030000000034 18.0640140000000002 1.34186340000000004 0 1.47112660000000006 0.62429239999999997 0.846834199999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.959730248157996 -61.9577633449094023 23.3814765359628005 -12.0160165257667 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528824923013376 2505528824923013376 667648886 2015.5 26.0644190467370009 0.0463405725513063027 -2.09236290581418993 0.0341697577352209972 1.36758395453410997 0.0485809028889210986 28.1506499999999988 2.31635661001875981 0.111449733116337005 -15.8415395828693999 0.0745297723507409027 -0.0115717990000000007 0.129573610000000006 -0.145466569999999989 -0.00582710100000000033 -0.134709309999999999 -0.0390362959999999981 -0.113849839999999994 0.0377132780000000029 0.18120660999999999 0.0037682417000000001 141 0 141 0 -0.692052200000000006 124.274002 0 0 31 false 11.9919709999999995 1.50733594396112003 0.0119812565421516005 -0.0855134060000000001 16 10 0.108022443999999995 0 16 false 141 10430.5777246016005 5.54908707364518961 1879.68994 15.642595 15 4643.38705999660033 28.1585030096393005 164.901780000000002 16.1843010000000014 16 8366.92956339042939 25.176173249898401 332.335239999999999 14.9555039999999995 1.24732460000000001 0 1.22879699999999992 0.541706099999999968 0.687090899999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.972984261872995 -61.9486650377331998 23.3926261339533994 -12.0143764519719003 100001 4887.66992 4841.06982 5137.75 0.1087 0.0350000001 0.248600006 0.063000001 0.0269000009 0.1338 200111 0.696802900000000003 0.630619170000000007 0.710281199999999946 0.249643880000000012 0.230073080000000013 0.269214699999999973 +1635721458409799680 Gaia DR2 2505529026786039424 2505529026786039424 594551104 2015.5 26.0655457113042992 0.507147733860038974 -2.07950547923205997 0.308241314163761992 0.569611666977701048 0.475431248504018023 1.19809469999999996 9.01437874973341025 1.30909655761895993 -6.95575975016726034 0.537832645323230052 -0.0546041700000000005 -0.183007360000000008 -0.424746659999999998 0.181369570000000008 -0.0324002470000000001 0.23774882 0.176048819999999995 0.194475409999999987 0.0796314800000000045 -0.0708091500000000013 149 0 147 2 0.680811000000000055 153.082993 0.800493564005486991 0.654776853260397029 31 false 0.114516019999999996 1.27951912601677997 0.101631837948628997 -0.134984910000000013 17 9 1.17670319999999995 0 17 false 147 279.989028601039024 1.32242542908611993 211.723999 19.5705129999999983 15 68.0124007756033961 6.89714447751461002 9.86095000000000077 20.7699180000000005 15 322.036852601644 9.74040634560360985 33.0619500000000031 18.4921569999999988 1.39308760000000009 0 2.27776149999999999 1.19940570000000002 1.07835579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.963326954704002 -61.9365841434161979 23.3984997927820011 -12.0028190005543003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529129865259776 2505529129865259776 987710764 2015.5 26.0524288316161012 0.568476737611252947 -2.06214609995062981 0.329743550834464993 0.369936236368933025 0.492492113034219026 0.75115160000000003 4.71034320740478041 1.69893826030497008 -2.30915941519818979 0.607237484139593997 -0.123918539999999994 -0.241610569999999997 -0.503276100000000004 0.208835409999999999 0.100374779999999997 0.184945300000000007 0.233486150000000003 0.215841599999999995 0.0913110399999999961 -0.275858969999999981 131 0 131 0 2.86792179999999997 176.395004 1.08459574258478009 1.42154159416892001 31 false 0.114195260000000007 1.60049092555805994 0.103815709036464004 -0.149152819999999992 15 9 1.53135299999999996 0 15 false 130 312.241000109556978 1.58318922725794997 197.223007 19.45214 11 125.913925282202001 12.2265776473168 10.2983790000000006 20.1012039999999992 12 298.714848598211972 9.47335736089070046 31.5320989999999988 18.5737780000000008 1.3599391999999999 0 1.52742580000000006 0.649063100000000004 0.878362659999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.922265977524006 -61.926588924816997 23.3925083007362993 -11.9818707841260998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528756203536896 2505528756203536896 879622560 2015.5 26.0865859710581987 0.0347743028298728996 -2.10351244590350994 0.0264848859318188995 0.598559407850920988 0.037057636474432297 16.15212 6.49506617977384959 0.0818178754091929972 0.676074356279640964 0.059312727536212799 0.0129134880000000007 0.16538137 -0.15037797 -0.0159139070000000014 -0.150869609999999987 -0.0555786269999999985 -0.190565740000000011 0.0483206029999999967 0.176675959999999993 0.0643118839999999997 141 0 139 2 -1.62264319999999995 108.571999 0 0 31 false 24.0226420000000012 1.56178572085098 0.00902770208583015057 -0.0771126699999999943 16 10 0.0834404499999999993 0 16 false 138 20188.6805786984005 7.61462616081225008 2651.30005 14.9255960000000005 15 9946.50726061737078 24.3000919497544992 409.319729999999993 15.3572120000000005 13 14812.8838830980003 21.591173612715 686.062000000000012 14.3353199999999994 1.22639969999999998 0 1.02189160000000001 0.431615829999999978 0.590275760000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.025711232129993 -61.9491321072817982 23.4095454489739012 -12.0328476582867001 100001 5296.54004 5072.8999 5718.4502 \N \N \N \N \N \N 200111 1.81356260000000002 1.55582630000000011 1.97698989999999997 2.33201029999999987 1.99778570000000011 2.66623469999999996 +1635721458409799680 Gaia DR2 2505540880900538624 2505540880900538624 910501953 2015.5 26.0438362958818992 0.153600541944618002 -2.0561005690139198 0.0852741380916507002 0.269483450671551994 0.128404200147364006 2.09871220000000003 1.30829266101353991 0.39619429880342899 -7.98549455618026016 0.164068677548953989 -0.174893959999999987 -0.13937679 -0.552984950000000031 0.224699110000000007 0.000664540000000000031 0.27786797000000002 -0.00416988499999999991 0.248549760000000008 0.00745063700000000041 -0.137137490000000001 149 0 149 0 0.253310170000000001 147.662994 0 0 31 false 1.50214000000000003 1.64704557069044011 0.0288424557035706006 -0.13633321000000001 17 9 0.367514600000000025 0 17 false 148 1741.42574471310991 2.62760248275364994 662.742981 17.5861030000000014 16 1049.15712968673006 17.2960206615952998 60.6588750000000019 17.7992859999999986 16 1155.08878328805008 9.67185018588602041 119.427899999999994 17.1053810000000013 1.26577080000000008 0 0.693904900000000047 0.213182449999999996 0.480722429999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.900262841820989 -61.9248401453669004 23.3865946983531998 -11.9731060703570993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540885191179520 2505540885191179520 1240499226 2015.5 26.0458589688854012 5.6521311654017703 -2.05363809357809002 3.80194917039127001 \N \N \N \N \N \N \N -0.285825759999999984 \N \N \N \N \N \N \N \N \N 42 0 42 0 63.6506350000000012 7703.12012 17.5819312115253013 837.884592766743026 3 false 0.00318273089999999981 \N \N -0.143008009999999991 10 9 8.89048599999999922 0 17 false 150 1298.07301261849011 17.5117695350020988 74.1257019 17.9051170000000006 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.90188084972101 -61.9217466331783015 23.389437808694499 -11.9715522728173003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529507822383616 2505529507822383616 114779796 2015.5 26.0715228258223988 0.553733485835084971 -2.05455357344400014 0.354406137015531975 0.439763739112685015 0.537599816650301987 0.818013199999999996 5.85715783699899006 1.46722535539880994 -1.78520665664453992 0.640778285374405954 -0.00228697299999999987 -0.189237249999999996 -0.372507240000000017 0.153017280000000006 -0.0614562199999999989 0.191348839999999992 0.170323059999999998 0.153403600000000001 0.0865527900000000044 -0.0552085800000000002 160 0 160 0 1.66764099999999993 185.501999 0 0 31 false 0.0794808699999999951 1.68852582099762993 0.118259273564339004 -0.0950903800000000021 18 10 1.30945350000000005 0 18 false 160 222.900904549029008 1.37999741294485001 161.522995 19.8180869999999985 17 118.567869230772004 8.39091460350423013 14.1305060000000005 20.1664710000000014 17 150.610682808034994 9.36738722316263939 16.0781959999999984 19.3172800000000002 1.20761539999999989 0 0.849191669999999954 0.348384860000000018 0.500806799999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.951863792289004 -61.9115008711154005 23.4135021688631006 -11.9817732729715001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533119889972480 2505533119889972480 1509400115 2015.5 25.7942333139890998 0.755014614491252956 -2.18107161734286015 0.666128656567908983 0.62792366780347797 0.908838849279137051 0.690907599999999955 24.2324507117665995 1.8314104063505301 -6.57912883546801996 1.91098338044407989 0.142835380000000012 0.280443500000000012 -0.0490638799999999972 0.0457212899999999978 -0.202328000000000008 0.0766581739999999956 -0.112788070000000004 -0.202165960000000006 -0.201384339999999995 0.500804999999999945 148 0 147 1 3.48832129999999996 208.408997 2.7609091816992799 26.0349377561788984 31 false 0.0316976640000000004 1.42972839238746996 0.228153733133006992 0.079145454000000004 17 9 2.0154662000000001 0 17 false 146 152.025171188017993 1.42064222667476003 107.012001 20.2335780000000014 12 50.3022985608997004 7.60692421174339994 6.6126990000000001 21.0974180000000011 14 210.994469451034007 8.10897319340459966 26.019874999999999 18.9512420000000006 1.71877300000000011 0 2.14617540000000018 0.8638401 1.28233529999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.534032663623009 -62.1447052723675029 23.1025445020372011 -11.9981918029076002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533184314495360 2505533184314495360 1294990403 2015.5 25.8308443188070989 1.69422304978895011 -2.16765629900462997 1.89373351058855999 \N \N \N \N \N \N \N 0.144036200000000003 \N \N \N \N \N \N \N \N \N 74 0 73 1 -0.24757499999999999 64.5076981 0 0 3 false 0.0111205885000000004 \N \N 0.0477361599999999997 10 8 5.14469770000000004 0 10 false 77 69.7202197876148944 2.23551939793923982 31.1875 21.0799699999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.59256372789099 -62.1169599064580993 23.1423707412992989 -11.9991008971332 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532432695544960 2505532432695544960 1112406689 2015.5 25.8368810331763008 0.121806752888125994 -2.17303236839343983 0.101899991458151998 0.447086449351030979 0.14290973904245699 3.12845329999999988 12.6571965850945993 0.272115043398905021 -3.73190694016135982 0.211484396962521998 0.123183349999999997 0.285634300000000008 -0.0153316649999999995 0.13215231999999999 -0.272575000000000012 0.224290970000000006 0.213284100000000004 -0.142044229999999994 -0.0963656160000000012 0.327770080000000019 170 0 169 1 2.03778360000000003 202.973999 0.312381382446601019 1.07966791702705001 31 false 1.17018690000000003 1.51358840831914998 0.0343758763367872019 0.0571654029999999966 19 10 0.258698199999999989 0 19 false 167 1549.31894691668003 3.01347840073667994 514.130005 17.7130130000000001 15 731.033667831214984 14.1684918122360006 51.5957300000000032 18.1915450000000014 17 1187.49603724673989 8.17573534432515991 145.246379999999988 17.0753400000000006 1.23830520000000011 0 1.11620520000000001 0.47853279999999998 0.637672400000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.609138223906996 -62.1192430293626998 23.1460982169618994 -12.0063119007515997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536860806507264 2505536860806507264 241815235 2015.5 25.7931343930746984 11.6836126544670993 -2.12035482741246994 12.4584038568725006 \N \N \N \N \N \N \N 0.982514740000000053 \N \N \N \N \N \N \N \N \N 56 0 55 1 -1.41746020000000006 36.578701 0 0 3 false 0.0103669529999999999 \N \N 0.166626469999999999 7 5 95.6598000000000042 0 7 false 58 66.5350886317686019 1.65109851407367003 40.2975006 21.1307399999999994 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.476604427679007 -62.0902402208008013 23.124222676509099 -11.9412883334701991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533257328645632 2505533257328645632 1269920567 2015.5 25.8088250251707017 0.644575865899502998 -2.15621979147202003 0.532873291816919004 2.06034601850441978 0.756970436545419956 2.7218315999999998 2.31246420638619021 1.45261219322552004 -3.94036289642611992 0.927872241655528951 0.0628820699999999982 0.254699740000000008 0.0671589900000000017 0.121252330000000005 -0.299722849999999985 0.189037280000000002 0.422514300000000009 -0.160631219999999991 -0.035504527000000001 0.148946729999999999 170 0 170 0 4.15330099999999991 251.647995 2.25259208068773997 2.69161392440163016 31 false 0.044300616000000001 0.887660915831068986 0.159711658218900987 0.0299894250000000001 19 10 1.29404190000000008 0 19 false 170 185.552572477687988 1.43514174279124007 129.292007 20.0171990000000015 14 71.3331793946945965 20.8596471211284005 3.4196734000000002 20.718159 16 268.462228153204023 8.83426616947959964 30.3887399999999985 18.6897130000000011 1.83126220000000006 0 2.02844619999999987 0.700960160000000054 1.32748599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.539578299590005 -62.1160084779852966 23.1257173461156 -11.9804036852859994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533463487669504 2505533463487669504 854522636 2015.5 25.8015663955197994 0.0360378625493966986 -2.14390799109860009 0.0301216898294147002 1.93402458139299993 0.0418032946440404021 46.2648849999999996 12.9800438769301003 0.078513511364666097 1.22673510150657994 0.0701080941207546937 0.128935920000000009 0.356669159999999985 -0.0500069799999999995 0.0741715200000000047 -0.188070309999999991 0.144474330000000012 0.0704154740000000057 -0.120090799999999998 -0.1017652 0.352764279999999986 170 0 169 1 -1.2962958 141.022003 0 0 31 true 15.1528980000000004 1.48885585132796994 0.0111970546335421993 0.0571907399999999969 19 10 0.0865278599999999981 0 19 false 168 12566.3657855913007 6.02677339165528991 2085.09009 15.4403419999999993 17 5218.50828142717 22.4459876379002985 232.491800000000012 16.0575219999999987 19 10677.1292731448993 17.0519487015404003 626.15300000000002 14.6907835000000002 1.26493509999999998 0 1.36673829999999996 0.617179900000000004 0.749558449999999987 \N \N 0 \N \N \N NOT_AVAILABLE 151.514330375523997 -62.107963131518197 23.1234244800583006 -11.9662911730594992 100001 5034.5 4657.33008 6925.37988 0.0966999978 0.0335999988 0.254999995 0.0476999991 0.0136000002 0.127100006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533459192267008 2505533459192267008 963976918 2015.5 25.8080575916916999 0.0885160941430202935 -2.14504929798980992 0.0708869845998296999 -0.0228769654999093006 0.102598544095419006 -0.22297554 4.02507636718469985 0.201650963215816992 -4.12384074119578958 0.137488978343322993 0.130608649999999993 0.238249330000000009 0.0991991499999999998 0.148436160000000011 -0.263119339999999979 0.235563009999999989 0.277951659999999989 -0.206168669999999998 -0.0729102499999999959 0.277488740000000011 170 0 167 3 -0.688876400000000055 149.281998 0 0 31 true 2.42856259999999979 1.56880142002719003 0.0237840326873148995 0.00360075299999999994 19 10 0.189254160000000005 0 19 false 164 2508.49387124683017 2.74847238646992009 912.687012 17.1898330000000001 18 1401.29735539785997 13.0449670845595005 107.420529999999999 17.4850619999999992 18 1663.94141768041004 9.39696056375177946 177.072300000000013 16.7090740000000011 1.22194390000000008 0 0.7759876 0.295228959999999985 0.480758669999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.527913522389014 -62.1062311121805024 23.1291679236602015 -11.9697278179469002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533257329265280 2505533257329265280 612551898 2015.5 25.8219961103777997 0.43791697003739799 -2.15261033769313004 0.358313061610031014 0.791272875789961971 0.518111058889308973 1.52722629999999993 4.70026561881651972 0.977216048813282945 -1.24891305139053999 0.696419879221292004 0.13203993 0.247960939999999991 -0.0193763409999999983 0.158917100000000006 -0.289830860000000023 0.246698959999999995 0.217868940000000011 -0.134339380000000008 -0.071845874000000004 0.31609472999999999 170 0 170 0 1.68954070000000001 196.882996 0.973673784804813036 0.767589690590227969 31 false 0.0915043650000000042 1.53693560609110991 0.118159826249960007 0.0603070149999999985 19 10 0.901759740000000032 0 19 false 170 256.725445753276972 1.54456889483748006 166.212006 19.6646940000000008 17 151.770717246461004 6.5858231651482404 23.045065000000001 19.8984179999999995 18 195.744642665230003 6.85216223819530956 28.5668429999999987 19.0326960000000014 1.35364590000000007 0 0.865722659999999977 0.233724600000000005 0.631998060000000028 \N \N 0 \N \N \N NOT_AVAILABLE 151.561736171896001 -62.1071292765848 23.1395890465874992 -11.9818626648839999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533459196969216 2505533459196969216 625561801 2015.5 25.8053476768621017 1.20855149581587007 -2.13804375581359007 1.11483761959739991 -0.598095631103612968 1.50057703487201 -0.398577100000000017 2.17608436169367003 3.4947910612611599 -4.70681800296588992 3.3327988430461799 0.236199140000000002 0.00982598800000000078 -0.0385119950000000003 0.0129515299999999993 -0.206747220000000009 -0.102381070000000005 -0.388469669999999989 -0.237828000000000012 -0.169664029999999993 0.602489350000000035 102 0 102 0 0.160520699999999988 98.5775986 0 0 31 false 0.0187095999999999998 1.28978285840603002 0.358037026722044016 0.095539205000000002 12 8 3.80730820000000003 0 12 false 104 83.9034026251644036 1.46263977788995003 57.364399 20.8789179999999988 6 64.0353236915405972 14.5409795654993008 4.40378329999999973 20.8353390000000012 10 133.940042413370008 13.2031130661746001 10.1445810000000005 19.4446429999999992 2.35956300000000008 0 1.39069559999999992 -0.0435791000000000026 1.43427470000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.516296108532998 -62.1010478179261014 23.1292132961768004 -11.9622172231113009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536899461505664 2505536899461505664 683374630 2015.5 25.8061159967333005 1.54711984427197002 -2.1153352644868999 1.32869445353033 \N \N \N \N \N \N \N 0.182941240000000005 \N \N \N \N \N \N \N \N \N 122 0 121 1 43.9320499999999967 2890.8501 9.83986879137616022 217.896763550516994 3 false 0.0097895689999999997 \N \N 0.0451218629999999982 18 10 3.19174459999999982 0 18 false 159 492.355736809045993 5.11806412768023034 96.1996002 18.9576680000000017 15 717.469103394910007 14.5741968379882003 49.2287200000000027 18.2118800000000007 14 1462.04116912168001 9.40053031621670954 155.527530000000013 16.8495220000000003 4.42669800000000002 0 1.36235810000000002 -0.745788600000000024 2.10814669999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.497113894716989 -62.0801756377569021 23.1384401191203999 -11.9413657996137008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536968180982016 2505536968180982016 544349434 2015.5 25.7946502537519997 0.838777460353100968 -2.10591211725530014 0.681557309291740965 0.524993352570994998 0.984592724046196022 0.533208670000000051 9.65196575902944076 1.96626937286223002 -11.7771957785377008 1.35645617258275997 0.236801600000000001 0.1649177 0.0520788240000000027 0.201352630000000005 -0.202584600000000004 0.292556229999999973 0.193126750000000014 -0.206301420000000013 -0.129750499999999991 0.380165599999999992 142 0 139 3 0.954692899999999955 149.526001 0 0 31 false 0.0305608269999999987 1.39604733640450007 0.226594072068259988 0.0847098599999999979 16 10 1.83680080000000001 0 17 false 141 118.980464139980995 1.18518521758332995 100.389999 20.4996760000000009 12 40.5878749793646989 4.90846678934890956 8.2689509999999995 21.3303970000000014 15 186.096806953709006 5.68795585192633002 32.7176970000000011 19.0875720000000015 1.90522609999999992 0 2.24282460000000006 0.830720899999999984 1.41210370000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.466406681632009 -62.0765255833183005 23.1310671815830986 -11.9284025737823995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533940228615552 2505533940228615552 889356272 2015.5 25.8180015032666006 0.361293894791030024 -2.10884251684134005 0.215360560563175013 0.903010757158328015 0.335577595091121006 2.69091490000000011 -16.3478526209264992 0.760738618007447021 -28.051355599841699 0.36301371719349701 -0.157783480000000004 0.229876949999999997 -0.151759179999999994 0.205877990000000011 -0.299737570000000009 0.369443919999999981 0.28331748000000001 -0.176784589999999991 -0.0715543899999999955 0.103288904000000001 122 0 121 1 16.7667870000000008 602.64502 1.57756597197819004 27.7982326133416002 31 false 0.319190919999999989 1.47657904080992997 0.0709110256698717994 -0.215060129999999988 14 8 0.67926439999999999 0 15 true 121 1811.22693239813998 10.2577156454327998 176.572006 17.5434340000000013 12 463.946730562466996 10.5750137101448995 43.8719749999999991 18.685219 10 2629.04807532084988 18.3817479840556004 143.024920000000009 16.2124230000000011 1.70767939999999996 0 2.47279550000000015 1.1417847000000001 1.33101080000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.514154277359012 -62.0692420573172967 23.1521668010388986 -11.9396708217404992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537071260196736 2505537071260196736 1032441757 2015.5 25.806346968459799 2.08588726437550998 -2.0917018258602802 1.6619530425784399 \N \N \N \N \N \N \N 0.115433194000000003 \N \N \N \N \N \N \N \N \N 119 0 119 0 44.9312249999999977 3022.36011 12.8303949171792002 185.14866435252199 3 false 0.00569696630000000002 \N \N -0.000808579149999999968 16 10 4.25838300000000025 0 16 false 136 327.503620265994016 4.45945133484578982 73.4403 19.4003259999999997 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.476080930006987 -62.058692308346302 23.1475007881949999 -11.9194567762746004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537032605203072 2505537032605203072 1381249613 2015.5 25.8269888676497992 0.713816538476114038 -2.08999606174279018 0.637784373884209055 -0.936294910650241952 0.844962964755355039 -1.10808989999999996 0.486027608480973983 2.00322286788777015 -2.33858199457635996 1.94590738298588994 0.151844929999999989 0.00833142549999999968 -0.162412630000000002 0.0128412790000000006 -0.308533669999999982 -0.0861486050000000031 -0.364065680000000003 -0.0955153400000000041 -0.0823923299999999997 0.550080659999999999 123 0 122 1 0.288413799999999998 120.785004 0 0 31 false 0.046305302999999999 1.7277980147010501 0.202750631557626987 0.0557104500000000016 14 9 2.16232559999999996 0 14 false 122 154.704618382602007 1.36706402769163993 113.166 20.2146070000000009 11 133.758321347008007 12.6785653775464997 10.5499569999999991 20.0355850000000011 11 117.008162182174004 7.53549021895407023 15.5276110000000003 19.5913800000000009 1.62093719999999997 0 0.444206239999999974 -0.179021839999999988 0.623228099999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.514357654181993 -62.0483651775724994 23.1677591673715 -11.9254186399576998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505537071260196608 2505537071260196608 296052994 2015.5 25.8083466916566984 0.0331880554736836003 -2.08656657705222992 0.0263045935302302983 0.42961875860674098 0.038516705450489401 11.1540890000000008 8.00023876470029016 0.070724721664819204 0.580874410126717033 0.0561830056015560977 0.188357639999999993 0.375010940000000015 0.0476706660000000004 0.0930056600000000039 -0.0868189860000000008 0.146490900000000007 0.107939740000000006 -0.168216959999999999 -0.0740597999999999951 0.313581469999999973 159 0 159 0 0.696944200000000014 165.856995 0 0 31 false 23.5915779999999984 1.58313753376383004 0.0094331613566789492 0.0506109299999999984 18 10 0.0759132000000000001 0 18 false 158 19243.3387988916984 9.17003185376205998 2098.5 14.977665 16 9880.83619540159089 38.8134698854768985 254.572339999999997 15.3644040000000004 16 13541.7994818934003 33.2488661705186033 407.286040000000014 14.4327290000000001 1.21718140000000008 0 0.931674960000000052 0.386738780000000004 0.544936199999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.475276715413003 -62.053194824033703 23.1513223606471001 -11.9154092190309999 100001 5405 5340 5489 \N \N \N \N \N \N 200111 2.35224650000000013 2.28080300000000014 2.40985940000000021 4.25444699999999987 3.37822179999999994 5.13067250000000019 +1635721458409799680 Gaia DR2 2505537032605077504 2505537032605077504 1620832756 2015.5 25.8222882087633998 0.424865021634236006 -2.0865744922402798 0.339689588791133978 1.7292188497566201 0.48978311926267698 3.53058080000000007 6.65086925147805008 0.999424133659010949 -16.7497573408050009 0.593309673715628039 0.172158460000000013 0.146751519999999996 0.062902405999999994 0.217741330000000011 -0.295700899999999989 0.325883750000000028 0.38187589999999999 -0.208560269999999992 -0.0887231599999999954 0.277846399999999993 167 0 165 2 2.66275070000000014 211.710999 1.39438293315302997 2.51124715559065015 31 false 0.109096824999999994 1.13541281655585991 0.106169229872179 0.0152288319999999994 19 10 0.908049800000000018 0 19 false 166 309.635559006671997 1.32817354139196997 233.128998 19.4612389999999991 16 72.9572316177627016 8.45262894259857944 8.63130699999999962 20.6937180000000005 18 399.012420696516983 6.9904969395769303 57.079265999999997 18.2594549999999991 1.52427470000000009 0 2.43426320000000018 1.23247909999999994 1.20178410000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.502181150377993 -62.0472706945004973 23.1645707965788006 -11.9205153576826 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538583088456960 2505538583088456960 752325961 2015.5 25.8270432005488999 1.27250864356659998 -2.07414037250436012 1.08358856285437999 1.54784464724521009 1.46294056969450992 1.0580366000000001 1.76589802312738997 4.21604944163605033 1.02097190743818 3.69410241271667017 0.179003300000000004 -0.280564870000000022 0.0554547700000000005 -0.195669110000000007 -0.0282877119999999996 -0.116897249999999994 -0.249561880000000014 -0.301968069999999977 0.124571169999999995 -0.0184347179999999992 76 0 75 1 -1.17959849999999999 56.3708992 0 0 31 false 0.0219762229999999996 1.00511363357377004 0.379462702915377981 0.0883898659999999975 9 8 3.71192050000000018 0 10 false 75 93.1811628236605003 1.40434581468946007 66.3519974 20.7650450000000006 6 38.428603498517802 15.0661925310780997 2.55065130000000018 21.3897510000000004 6 115.167783558142006 18.2078365024465008 6.3251767000000001 19.6085929999999991 1.64836310000000008 0 1.78115840000000003 0.624706270000000008 1.15645219999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.500056324250011 -62.0339968464502007 23.1737407483749998 -11.9106825477831997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505538510073830144 2505538510073830144 259989614 2015.5 25.8345298760089008 0.807519190987252 -2.0759208682623802 0.660848467239989024 0.245971367758918008 0.903846956025493031 0.2721383 2.94860781634156988 2.24037361318654016 -2.70698080233706007 2.00479606917450992 0.107038960000000002 -0.0513616169999999983 -0.112442769999999997 0.104830413999999997 -0.171127000000000001 0.0700475700000000034 -0.208483439999999992 -0.17291687 -0.208870560000000011 0.395623700000000023 124 0 119 5 0.964457149999999985 128.468994 0.405024622370533993 0.0529050195886284005 31 false 0.0359522140000000032 1.60323665506758006 0.231256405072524013 0.0126531000000000005 15 9 2.2152128000000002 0 15 false 119 134.625864797241007 1.36004822929298008 98.9860992 20.3655450000000009 12 112.099013286127999 13.2289352224381993 8.47377499999999984 20.2273850000000017 12 113.181647573787004 9.95186568624908041 11.3729080000000007 19.6274799999999985 1.67338319999999996 0 0.599905000000000022 -0.138160699999999997 0.738065700000000047 \N \N 0 \N \N \N NOT_AVAILABLE 151.516107693746989 -62.0324206008681998 23.1801910596573002 -11.9150772454245999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532467055283840 2505532467055283840 1292372466 2015.5 25.8748388107478 0.140275267915312002 -2.19094086523598985 0.105836585213066006 0.0899544295448882064 0.159873173347946013 0.562661199999999972 -1.25471303375086007 0.284417961241026973 -1.99732426470614999 0.203323046104975008 0.126500799999999997 0.388063670000000027 -0.0485203859999999987 0.11035064 -0.0844870600000000027 0.100100250000000002 0.0757733200000000051 -0.0277534089999999997 0.0838644199999999951 0.183174339999999991 176 0 175 1 0.4233267 177.240005 0 0 31 false 0.910987899999999962 1.60059513909124007 0.0355391283007391034 0.0501328600000000013 20 10 0.256455239999999973 0 20 false 173 1147.45021711571007 2.53764324158378018 452.171997 18.0390319999999988 16 597.12933813983102 11.4314623544846992 52.2356029999999976 18.4112170000000006 20 818.073185351413031 8.97663848695341038 91.1335749999999933 17.4799399999999991 1.23334549999999998 0 0.931276299999999946 0.372184750000000009 0.559091569999999982 \N \N 0 \N \N \N NOT_AVAILABLE 151.698835415490009 -62.1191940063570982 23.1754872364060986 -12.0368597745030002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532359680625152 2505532359680625152 53740055 2015.5 25.8476245806324982 0.182109087199626013 -2.18019089446852021 0.14162423823669501 0.81594823366217395 0.223138368568260997 3.65669179999999994 17.2144331062601985 0.360952647079570976 -9.00817858481314993 0.275359365956197977 -0.0079661100000000002 0.437562469999999981 -0.0327356420000000023 0.113360820000000001 -0.380949499999999996 0.230503099999999989 0.208966430000000009 -0.132923409999999992 -0.0833042340000000048 0.33593192999999999 160 0 159 1 -0.329888049999999988 147.634003 0 0 31 false 0.662135840000000031 1.51091319877752994 0.0486044359454972028 0.0280639859999999991 18 10 0.340432100000000015 0 19 false 159 906.429290397726049 2.14547416339163011 422.484009 18.2950300000000006 15 428.211261834382981 11.2529702652804993 38.053176999999998 18.7722429999999996 18 703.982836210539972 6.59897788905224036 106.680589999999995 17.6430149999999983 1.24907049999999997 0 1.12922860000000003 0.477212899999999995 0.652015699999999976 \N \N 0 \N \N \N NOT_AVAILABLE 151.636437734384998 -62.1211238030510984 23.1536339429998996 -12.0169031273364002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532535774760320 2505532535774760320 154659462 2015.5 25.8685638552947985 0.0572534436446903994 -2.17872213291766981 0.0575300220659676967 0.310881249051348008 0.0741244294863924041 4.19404549999999965 4.11704789454755993 0.148702564235559997 -0.203985269723089002 0.138609864418406004 0.22741689000000001 0.16889788 0.108668420000000002 0.211851280000000003 -0.433516599999999974 0.435037139999999989 0.442758859999999976 -0.367600770000000021 -0.375386270000000022 0.576864539999999981 161 0 159 2 -0.287451179999999973 148.358994 0 0 31 false 5.84874150000000004 1.58106252188986995 0.0170349542264046985 0.0948366449999999972 18 9 0.171256839999999994 0 18 false 156 5279.20957565372009 4.27538528348697966 1234.79004 16.3819429999999997 16 2897.08549811557987 17.8525269078357987 162.278729999999996 16.6964860000000002 16 3507.85003379383988 11.9249314899180003 294.161000000000001 15.8993179999999992 1.21323760000000003 0 0.797167799999999982 0.314542770000000027 0.482625000000000026 \N \N 0 \N \N \N NOT_AVAILABLE 151.675527870954994 -62.1108402208366996 23.1740925458667988 -12.0231939559891998 100001 5861.5 5810 5985 0.371499985 0.112000003 0.547699988 0.179299995 0.0560000017 0.266099989 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520780448790656 2505520780448790656 821172663 2015.5 25.9317196002306005 0.499114563108120024 -2.19131804359941018 0.351342697097884016 1.07698047513478001 0.544495929535354972 1.97794029999999998 0.194991286586314011 1.04425640591396007 -0.417711448974943 0.668906779531190043 -0.00369314520000000018 0.267878349999999987 -0.181273519999999994 0.134947929999999994 -0.199097229999999986 0.135031390000000001 -0.0153503349999999997 0.0417419669999999979 0.104948509999999995 0.144896799999999992 181 0 178 3 2.69863600000000003 227.408005 1.30971613874813997 1.35006405781532002 31 false 0.0749981549999999969 1.43113014457814991 0.120111451661052998 -0.0442792899999999989 21 10 0.928332500000000005 0 21 false 178 235.73234221871499 2.36768971146383 99.5622025 19.7573180000000015 14 162.877573927355996 13.2068341620070999 12.3328249999999997 19.8217350000000003 17 161.447592739159006 10.9664174839093 14.7219990000000003 19.2418399999999998 1.37581960000000003 0 0.579895000000000049 0.0644168849999999932 0.515478129999999979 \N \N 0 \N \N \N NOT_AVAILABLE 151.808910232334 -62.0951297199672965 23.2294357185855986 -12.0580066537742994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532497119577728 2505532497119577728 903470563 2015.5 25.8975385743407998 0.824899409982181031 -2.18183019203220985 0.574846277518670012 2.17449411141285998 0.865804009908517025 2.51153160000000009 49.0315748376132987 1.9826293897837699 -1.25968743931903004 1.16468967574586002 -0.0183542049999999984 0.149053710000000006 -0.0813545499999999977 0.0422962399999999988 -0.116994105000000001 0.0287914280000000009 0.0657678839999999987 -0.0413438600000000031 0.130158679999999999 -0.0283291950000000015 153 0 149 4 1.9278128000000001 178.485992 2.05503946555668993 2.35782439076362005 31 false 0.0308554709999999989 1.39196258529818007 0.185874885925945005 -0.069562639999999995 18 10 1.73908510000000005 0 18 false 151 140.514678305119986 1.5225184361881301 92.2910004 20.3190610000000014 13 70.3723472970365975 10.3596775086221999 6.79290899999999986 20.7328830000000011 13 155.030344501479988 7.23299393967628035 21.4337729999999986 19.2858799999999988 1.60412200000000005 0 1.44700429999999991 0.413822169999999989 1.0331821000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.734289020163999 -62.1012357880426009 23.2004805887467001 -12.0366809512355992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520853463715072 2505520853463715072 975572574 2015.5 25.9215367590568988 0.043379436266572903 -2.18369912456453008 0.032910099781121499 0.714289652652626006 0.0478011102704858012 14.9429510000000008 -0.476699113448983025 0.0897019524289496967 -36.9928313525212005 0.071364925396052506 0.00910922200000000015 0.354726339999999973 -0.123101059999999998 0.06987815 -0.161106570000000004 0.0652380800000000038 -0.0858313200000000026 -0.0080632719999999998 0.0417212659999999999 0.175807970000000008 184 9 184 0 -0.150586930000000008 175.507004 0 0 31 false 10.497871 1.61191516465418005 0.0114728921159586994 -0.030965887000000001 21 10 0.0862575500000000023 0 21 false 182 9159.65024039425043 5.66706786990360989 1616.29004 15.7836684999999992 21 5058.88234745805039 24.414501577500701 207.208100000000002 16.0912509999999997 19 6101.09655309503978 16.2557550472209016 375.319180000000017 15.2984000000000009 1.21838489999999999 0 0.792851450000000013 0.307582860000000013 0.485268599999999994 \N \N 0 \N \N \N NOT_AVAILABLE 151.782282085894991 -62.0926256709149982 23.2226019530391987 -12.0471935616264005 100001 5869.75 5527.8999 6145.5 0.050999999 0.0113000004 0.124799997 0.0250000004 0.00789999962 0.061999999 200111 0.812100049999999962 0.74085690000000004 0.915648699999999982 0.705329800000000007 0.604226649999999976 0.806432900000000008 +1635721458409799680 Gaia DR2 2505520883528157568 2505520883528157568 372057399 2015.5 25.9298226357223989 7.51143486705974972 -2.17713194413436018 4.87049029069672024 \N \N \N \N \N \N \N 0.883295900000000023 \N \N \N \N \N \N \N \N \N 59 0 58 1 0.700940200000000013 59.8235016 2.86976442201449 0.777600420527481018 3 false 0.0132840730000000004 \N \N -0.0890810199999999969 7 6 49.8577879999999993 0 7 false 59 75.3496399191540007 1.30479543081011995 57.7481995 20.9956630000000004 5 72.6804782311330939 22.9983985897262002 3.16024100000000008 20.6978439999999999 4 23.5385263520335002 2.2199448110139901 10.6032039999999999 21.3324719999999992 1.27696699999999996 0 -0.634628300000000034 -0.297819139999999982 -0.336809159999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.792222608959008 -62.0831372149637986 23.2329378340836001 -12.0441103060101007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520883528012288 2505520883528012288 414117532 2015.5 25.933630658797501 2.58586176762615017 -2.17310083727665004 1.19813336671468007 \N \N \N \N \N \N \N -0.478590819999999972 \N \N \N \N \N \N \N \N \N 93 0 92 1 1.23144190000000009 103.525002 0 0 3 false 0.018002569999999999 \N \N -0.185664600000000013 11 6 5.43100000000000005 0 11 false 95 84.4421840162442976 1.4752332914175601 57.2398987 20.8719670000000015 7 58.6259703746925993 8.37511172268544968 7.00002239999999976 20.931163999999999 7 54.8305869306020028 7.34319044057421966 7.46686169999999994 20.4143620000000006 1.34360049999999998 0 0.516801830000000018 0.059196472 0.457605360000000017 \N \N 0 \N \N \N NOT_AVAILABLE 151.795858991378992 -62.0778617146049001 23.238066784327799 -12.0417504298007003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532879371798656 2505532879371798656 767566114 2015.5 25.8839100435653009 0.769559192386424007 -2.16339059180043014 0.653785436228965011 1.11924246854774001 0.856284979100246035 1.30709110000000006 1.71231683026132009 1.74131620292704992 -5.7891490707727602 1.67496058178005991 0.0659584000000000004 0.257729199999999992 -0.160922289999999996 0.0077402405000000004 -0.175286219999999993 -0.0747346059999999951 -0.416712399999999983 -0.00924017000000000067 0.0284549969999999992 0.350827500000000014 160 0 158 2 -1.17540339999999999 132.738998 0 0 31 false 0.0311240900000000001 1.10988342479418001 0.217511314383809995 0.0421001349999999969 18 9 1.7541023 0 18 false 158 121.979318216126003 1.13048452232125007 107.900002 20.4726500000000016 13 75.9478684137693989 19.3837719350637983 3.91811599999999993 20.6500990000000009 13 172.028917599870994 9.75990074913976002 17.6260930000000009 19.1729160000000007 2.03294130000000006 0 1.47718240000000001 0.177448269999999991 1.2997341 \N \N 0 \N \N \N NOT_AVAILABLE 151.691104559385991 -62.0904172113858976 23.1944198463202014 -12.0145370873963007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533974590375808 2505533974590375808 1639037023 2015.5 25.8463308775286009 1.0923137650789001 -2.1211090213758701 0.90988431030857797 0.307051268860166982 1.29344805096539006 0.237389710000000004 -2.31622605708124008 2.97337651465436981 -7.89891609468688038 2.88234385972400986 0.073378410000000005 -0.00297362610000000008 0.0700463000000000058 0.119641595000000003 -0.192021369999999997 0.067898824999999996 -0.172580540000000004 -0.309850569999999992 -0.2533474 0.427900300000000011 114 0 113 1 0.159589599999999998 109.688004 1.11205089974235993 0.194271512323771989 31 false 0.0195215250000000014 1.57995459974934005 0.304692765714767 0.00746302030000000043 14 9 3.08477930000000011 0 14 false 115 96.6264331872750972 1.28144522577892994 75.4042969 20.7256259999999983 9 58.2141210637213007 8.93178164879179981 6.51763799999999982 20.9388180000000013 11 136.344546472697004 10.3888574717542994 13.1241140000000005 19.4253250000000008 2.01351380000000013 0 1.51349259999999997 0.213191989999999998 1.30030059999999992 \N \N 0 \N \N \N NOT_AVAILABLE 151.579988980298992 -62.0682617824114971 23.1745081770036983 -11.9614467702894007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532982451357568 2505532982451357568 1232674648 2015.5 25.8834951276189003 0.314082393829629991 -2.13064030459480014 0.261256283759572994 -0.396658062420788993 0.387655058000120012 -1.02322420000000003 2.21497019864212996 0.747776894898510958 -2.01298262749403989 0.461417419317836974 0.192324610000000007 0.0360398779999999974 0.0543391199999999977 0.178080700000000008 -0.417458099999999999 0.269060799999999989 0.224298629999999999 -0.174604249999999989 -0.0394911999999999971 0.308686760000000004 154 0 153 1 0.388963500000000018 154.106995 0 0 31 false 0.203745160000000008 1.48773766858189993 0.0774181115923651963 0.0327001199999999992 18 10 0.681485899999999978 0 18 false 153 408.469110591456001 1.66389467531232005 245.490005 19.1604670000000006 16 252.850500582445989 18.3708517261980013 13.7636789999999998 19.3442289999999986 16 267.70713023894001 11.4880079505918005 23.3031800000000011 18.6927699999999994 1.27441120000000008 0 0.651458740000000036 0.183761599999999997 0.467697140000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.660352528288996 -62.0610002866402013 23.2062752466605993 -11.9839057708948005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505533738365601536 2505533738365601536 1268063759 2015.5 25.8793110133903994 0.0294041708000904005 -2.12863022239608002 0.0242398193055640004 1.5621456642206899 0.0344784391429956982 45.3078999999999965 16.9612612549283988 0.0659269847158252958 -8.10242502948947951 0.0550955646581224034 0.129012299999999996 0.299660119999999974 0.037393860000000001 0.073262944999999996 -0.229398380000000013 0.113083950000000003 0.0202764980000000004 -0.150208759999999997 -0.0522066699999999967 0.350675259999999989 166 0 166 0 -1.45434189999999997 135.692001 0 0 31 true 28.1411969999999982 1.55607027360618999 0.00827602885602824086 0.0216944310000000001 19 10 0.0738669200000000026 0 19 false 166 23127.2168063151985 8.82298256595919028 2621.25 14.7780570000000004 15 11380.7341243430001 28.335664240242199 401.639920000000018 15.2109620000000003 14 16972.9460207679003 27.8456458773670015 609.536799999999971 14.1875269999999993 1.22598760000000007 0 1.0234356 0.43290519999999999 0.590530400000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.650450915834 -62.0609732258266007 23.2030489889381997 -11.9805053362803999 100001 5338 5175.12988 5997.49023 0.0909999982 0.0266999993 0.174999997 0.0450000018 0.0135000004 0.113799997 200111 0.730172200000000049 0.578420999999999963 0.776855799999999985 0.389995519999999984 0.369765879999999991 0.410225149999999983 +1635721458409799680 Gaia DR2 2505532634558539648 2505532634558539648 971190794 2015.5 25.9101807941509001 0.479976719113620998 -2.16176327996765982 0.311386754663052989 0.833428920459784006 0.528568664075372951 1.57676569999999994 6.63021472699629033 0.972218935941407958 -5.9673319231764701 0.555380994525522032 -0.0590868500000000033 0.335068599999999994 -0.0713600800000000063 0.122539599999999999 -0.274149699999999996 0.106827850000000002 0.101775765000000004 -0.00453990299999999965 0.136261400000000005 0.0973830299999999954 158 0 156 2 2.83336139999999981 204.966003 1.35014389194369011 2.21927781249172007 31 false 0.105940709999999993 1.54794265080549009 0.102181022416375999 -0.0751550899999999938 19 10 0.855827800000000027 0 19 false 153 303.089067506303024 1.62370128248143009 186.666 19.4844399999999993 15 145.375880795667996 9.94357896566664046 14.6200759999999992 19.9451579999999993 16 264.332443815975012 8.05279481948369913 32.8249319999999969 18.7065429999999999 1.3517752999999999 0 1.23861500000000002 0.460718149999999993 0.777896900000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.740269281227 -62.0776892172928996 23.2200081627911992 -12.0226269459951993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532703278683520 2505532703278683520 446571810 2015.5 25.9047568788660989 0.879736334815331977 -2.15594091166834012 0.741793167679433041 3.38212177040401984 1.00367151855473002 3.36974980000000013 13.5002671612304006 2.09798426659027992 -13.2321819221957995 1.96829234138986009 0.101297230000000002 0.214247300000000002 -0.045048073000000001 0.027531367000000001 -0.162271080000000012 -0.0324022959999999971 -0.323975200000000019 -0.134815800000000013 -0.0632261259999999936 0.400124040000000014 149 0 145 4 1.47993609999999998 165.505997 1.75473319877987999 0.707812709593461986 31 false 0.0247481820000000005 1.86022122854455008 0.254144566184731024 0.0296183700000000015 17 9 2.11881999999999993 0 17 false 146 114.476073048681002 1.24311558453082993 92.0879974 20.5415780000000012 13 35.3145734604245973 5.01788216439237011 7.03774449999999963 21.481503 14 195.459689814802005 7.8545592628493397 24.8848699999999994 19.0342769999999994 2.01591699999999996 0 2.44722559999999989 0.939924239999999966 1.50730129999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.724480184794999 -62.0747555922419991 23.2170284037981993 -12.0152253835533998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534386905343104 2505534386905343104 102221545 2015.5 25.9054231002793003 1.69121379554447993 -2.13816472874147978 1.67415123543064004 \N \N \N \N \N \N \N 0.408934149999999996 \N \N \N \N \N \N \N \N \N 88 0 86 2 -0.0288855340000000009 79.9701004 0 0 3 false 0.0135832469999999997 \N \N 0.113871009999999995 10 7 7.00055739999999993 0 10 false 87 89.0795406690399005 1.73899390295788003 51.2248001 20.8139210000000006 7 42.3624107532626013 8.27245200939236014 5.12090159999999983 21.2839370000000017 7 58.9910405639252033 17.8562633885624003 3.30366090000000012 20.3349550000000008 1.13778589999999991 0 0.948982239999999977 0.470016480000000014 0.478965760000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.70949029602599 -62.0584115335003972 23.2243100478604987 -11.9989248239781006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505532703280164352 2505532703280164352 51006118 2015.5 25.9156125613506987 2.44658147681297988 -2.15512716300430984 1.81684982029038999 \N \N \N \N \N \N \N -0.0123987235000000001 \N \N \N \N \N \N \N \N \N 48 0 46 2 -1.23423419999999995 30.2605991 0 7.84663186513843042e-16 3 false 0.0132652380000000004 \N \N -0.100401773999999999 6 6 5.48395630000000001 0 6 false 50 75.2294146109576047 1.47510900919964993 50.9991989 20.9973959999999984 4 82.0302862553485994 65.9585306310058996 1.24366449999999995 20.5664520000000017 5 135.619495829794005 17.6483200546928991 7.68455550000000009 19.4311140000000009 2.89314749999999998 0 1.13533780000000006 -0.430944439999999984 1.56628229999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.744655627984002 -62.0693657462195034 23.2276550750361999 -12.0184363278322 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534180746772480 2505534180746772480 1629411614 2015.5 25.9257999129795991 1.55364669228088004 -2.14469168228735985 2.01121598264341017 \N \N \N \N \N \N \N 0.0613867499999999969 \N \N \N \N \N \N \N \N \N 85 0 85 0 0.623329800000000045 87.4372025 2.26598748213501988 0.448333429543111006 3 false 0.0141760940000000002 \N \N 0.0276295359999999997 11 9 5.97471700000000006 0 11 false 87 86.2131440634350952 1.72114898376550007 50.0904999 20.8494320000000002 5 38.5142959371980993 11.3562378368133992 3.39146610000000015 21.3873330000000017 11 97.6811985591204035 10.8849691765285002 8.9739520000000006 19.7873920000000005 1.57975329999999992 0 1.59994130000000001 0.537900900000000015 1.06204030000000005 \N \N 0 \N \N \N NOT_AVAILABLE 151.754718227490997 -62.0555704705086981 23.2412445597177992 -12.0124476337805 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534391200630784 2505534391200630784 1610582802 2015.5 25.9081730080119002 0.154935935524980001 -2.13397003010652986 0.124485051611815001 2.02680577085883007 0.178615721049867004 11.3472980000000003 -2.89334255783000982 0.358779469413102015 -2.02614186903943017 0.234390171123939006 0.143265219999999999 0.19278287999999999 0.0828124300000000063 0.171034230000000009 -0.271192429999999984 0.258815139999999999 0.297515799999999997 -0.199539620000000001 -0.0668219850000000004 0.264323739999999974 167 0 167 0 3.08976000000000006 223.395996 0.489518597509630005 2.0042946185911199 31 false 0.773515399999999964 1.22771807172202996 0.0378980539847457998 0.0132295850000000003 19 10 0.328912800000000005 0 20 false 167 1209.98039252954004 2.46583963183305022 490.696991 17.98142 15 238.578093132832009 8.08942490741127962 29.4925899999999999 19.407312000000001 18 1557.06173772496004 11.0256282462047004 141.222049999999996 16.7811549999999983 1.48402389999999995 0 2.6261578000000001 1.4258919000000001 1.2002659 \N \N 0 \N \N \N NOT_AVAILABLE 151.710950116052999 -62.0534437361376021 23.2284933662994995 -11.9960260310036002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520574290357888 2505520574290357888 462297754 2015.5 25.9441486625631015 0.0875431673936812038 -2.19716481769465988 0.0639924039380840026 3.50700041350990022 0.097162961028240305 36.0940060000000003 18.7872657010942987 0.191260622855727008 10.0816722598968003 0.129878917091019008 0.0295661460000000015 0.283278580000000002 -0.00484070549999999957 0.0794632499999999992 -0.196668029999999994 0.0962877500000000053 0.0638666900000000037 -0.0923989800000000056 0.0425735640000000012 0.157326130000000008 183 0 181 2 1.31905650000000008 201.195999 0.151193371964008005 0.484232794207549 31 false 2.32479449999999987 1.32067338916855004 0.0224040897112492005 -0.0397475440000000027 21 10 0.174636829999999993 0 21 false 181 2517.29884434203996 3.08939809877744009 814.81897 17.1860299999999988 16 588.167279185783968 9.68605835212343003 60.7230800000000031 18.4276349999999987 17 3023.11011185297002 12.1053997377483 249.73236 16.0607849999999992 1.43458430000000003 0 2.3668499999999999 1.24160580000000009 1.12524409999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.838241469921002 -62.0950629489090034 23.2390690098157009 -12.0679912773751994 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520608650098432 2505520608650098432 1217032008 2015.5 25.9464457018511006 0.259793378804981989 -2.19204769333518978 0.189646976084888008 0.227056799245958008 0.290453670906206995 0.781731550000000053 16.6813396826641984 0.565937722178387004 -1.89823855604831992 0.362507047002464 0.0230799970000000014 0.255399500000000002 -0.133213450000000011 0.117745765000000002 -0.242232959999999997 0.140600560000000013 0.0967949500000000046 -0.0131345790000000004 0.0534910560000000021 0.159915069999999993 194 0 193 1 1.45589419999999992 216.932999 0.232301388253118996 0.12613684753784199 31 false 0.246570359999999988 1.38473156493633009 0.0642740183887692967 -0.0132772480000000002 22 10 0.503820840000000048 0 22 false 194 469.901773065945008 1.57866352469694005 297.65799 19.0083480000000016 19 246.060502697472003 8.60198164664944009 28.6050949999999986 19.3737829999999995 21 333.144434940747999 5.8891668823490404 56.5690269999999984 18.4553399999999996 1.23260860000000005 0 0.918443699999999974 0.365434650000000028 0.553009030000000013 \N \N 0 \N \N \N NOT_AVAILABLE 151.837961045703992 -62.0894561328188033 23.2431675318848008 -12.0640682999933997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505520612945546752 2505520612945546752 140136317 2015.5 25.9465165252246983 0.0581044533654263007 -2.18815176014750001 0.043460884553588798 2.07710759752636021 0.0654479384994386959 31.7367920000000012 22.0585940211644989 0.120019281419151996 -16.6892386241006996 0.0909414804802228943 0.0284054759999999989 0.376099440000000007 -0.0591607400000000033 0.0680901500000000021 -0.195496140000000013 0.0740848000000000062 0.0137167134999999999 -0.0436110239999999982 0.0381892399999999993 0.195647979999999999 193 0 191 2 1.53886999999999996 216.548996 0.167244337991172998 1.29442653659335005 31 false 5.14320700000000031 1.35678590108602992 0.0149511033522223002 -0.00885873600000000073 22 10 0.114354566000000005 0 22 false 191 5524.21111410804042 4.4499175123223802 1241.42004 16.3326899999999995 20 1465.2937396407799 16.8418401704781004 87.0031800000000004 17.4365769999999998 19 6203.16363574076968 23.8044876215701002 260.587980000000016 15.2803869999999993 1.38815430000000006 0 2.15619000000000005 1.10388759999999997 1.05230240000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.834514754412993 -62.085909212912803 23.2446920269779014 -12.0604682010446993 100001 3672.33008 3488 4201.43018 2.13800001 1.89090002 2.3829999 1.06770003 0.935899973 1.18669999 200111 0.801967500000000055 0.612698399999999976 0.888971799999999979 0.105384459999999999 0.0983267599999999992 0.112442165999999996 +1635721458409799680 Gaia DR2 2505520814808370688 2505520814808370688 45335045 2015.5 25.9358251884579012 0.0450663787699776969 -2.18035099771095986 0.0306010728016648005 3.92363754620498995 0.0462503243741606979 84.8348100000000045 8.4828310103665796 0.0812660999760031061 22.4187038714079989 0.0665248262384914996 0.0345468099999999972 0.530123349999999993 -0.0834929100000000035 0.0208910219999999987 0.063317849999999995 -0.00185766899999999994 -0.208970529999999988 -0.00522091240000000043 0.0295292499999999999 0.0635076599999999936 115 115 115 0 7.40471120000000038 259.255005 0 0 31 true 261.635400000000004 1.60366332959084001 0.0117063854362533994 -0.141593649999999988 13 10 0.050221509999999997 0 13 true 113 885234.328159769997 239.280097618658999 3699.57007 10.8207199999999997 13 498818.621624228021 765.492357394600049 651.631099999999947 11.1065310000000004 12 552854.130245293956 343.205182328813009 1610.85599999999999 10.4053939999999994 1.18801620000000008 0 0.701137539999999948 0.285811419999999983 0.415326120000000021 28.0210213349359982 0.850712085332314016 6 6250 4.5 0 NOT_AVAILABLE 151.806745743187008 -62.0834643488554008 23.2374421137035014 -12.0493003052917995 100001 5975.8999 5822 6099.33008 0.193000004 0.0864000022 0.308999985 0.0834999979 0.0370000005 0.153999999 200111 1.3988567999999999 1.34281169999999994 1.47378959999999992 2.24830130000000006 2.2111196999999998 2.28548300000000015 +1635721458409799680 Gaia DR2 2505522292277284736 2505522292277284736 992583067 2015.5 25.9421466439319985 0.339275459095582987 -2.17522353998425988 0.234877511263801991 1.19324100731493998 0.347174095228043988 3.43701049999999997 3.84426435633708019 0.914862500557973024 -1.42870117424490006 0.482449722922387025 -0.171943079999999998 0.0623722150000000017 0.22919312 -0.15721713000000001 -0.0467749949999999998 -0.19503297 0.328682499999999989 -0.225457149999999995 0.22380934999999999 -0.312409759999999981 162 0 162 0 2.53345300000000018 205.509003 0.877970870835446004 1.59826053032540005 31 false 0.191039669999999995 1.42389018897868991 0.0799699047629023052 -0.0952780800000000011 19 9 0.826198639999999984 0 21 false 161 443.503552238628004 1.47705170091649007 300.263 19.071123 16 126.728120886588002 9.51082766433160032 13.3246155000000002 20.0942059999999998 17 500.010305111809998 9.51421495057275912 52.5540280000000024 18.0144729999999988 1.4131532 0 2.07973300000000005 1.02308270000000001 1.05665019999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.814214470384002 -62.0761183476564966 23.2453713839671998 -12.0468386131589007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522124774034176 2505522124774034176 1333598526 2015.5 25.967301221388599 0.0356896468117417001 -2.16822223358190991 0.026973911119072401 0.456156156443525973 0.0390712563159743981 11.6749799999999997 -4.97971660624873014 0.0749007143468193998 -8.19342953345945979 0.0576064950091838973 0.0717243999999999937 0.347267869999999979 -0.0192592419999999993 0.057652384000000001 -0.0833955599999999936 0.0449201600000000006 -0.073128245999999994 -0.0649048099999999933 0.0500639000000000015 0.178026899999999988 174 0 174 0 0.596557259999999978 179.511993 0 0 31 false 16.2804199999999994 1.60274895789415006 0.0100139493050922998 -0.0322852500000000014 20 10 0.0766942300000000021 0 20 false 173 13961.1620815584993 6.40301419099469982 2180.3999 15.3260620000000003 15 7490.16434693984957 19.454370841291901 385.011900000000026 15.6651600000000002 14 9478.6361413832492 25.0922410269468017 377.751680000000022 14.820055 1.21542900000000009 0 0.845105200000000001 0.339097980000000021 0.50600719999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.856215368790004 -62.0589784296592981 23.2719117171138983 -12.0495150517400003 100001 5790.5 5745 5958 1.19819999 0.824899971 1.50329995 0.570299983 0.395200014 0.724799991 200111 1.6167701000000001 1.527142 1.64248100000000008 2.64761949999999979 2.12809630000000016 3.16714260000000003 +1635721458409799680 Gaia DR2 2505521334500123776 2505521334500123776 454359869 2015.5 26.0120230334180995 0.684074242550576028 -2.19185418834972001 0.59324070437363996 0.66939546750497303 0.749367644034450997 0.893280450000000004 -2.47406774324895018 1.5105048969822501 -1.09543074063133994 1.41603677481453993 0.108154819999999999 0.269963059999999977 -0.124056269999999996 0.00711032400000000033 -0.13834724000000001 -0.0862061100000000025 -0.43976763000000002 0.0134280379999999998 0.085792586000000004 0.342351599999999978 151 0 150 1 1.21017540000000001 165.869995 1.3732038374411899 0.706863091788140996 31 false 0.0408141240000000002 1.38326945647406996 0.198451204143689997 0.00629911430000000029 17 9 1.50267740000000005 0 17 false 149 162.744097461105014 1.25187674634159007 130 20.1596030000000006 12 89.3916915339014935 7.55845276425108015 11.8267179999999996 20.4731449999999988 13 148.996918273031014 8.26594866250504978 18.0253869999999985 19.3289779999999993 1.46480640000000006 0 1.14416699999999993 0.313541400000000026 0.830625529999999945 \N \N 0 \N \N \N NOT_AVAILABLE 151.964021259058001 -62.0610141397017969 23.3056110635942986 -12.0878506201781004 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522154841833984 2505522154841833984 521252359 2015.5 25.987415691246099 0.946220763327677017 -2.17103691175246016 0.852219504762612989 1.01947139879100002 1.06040904959318993 0.961394500000000041 10.1985956388573005 2.1756706759740001 -6.49597108875604956 2.03041089935583985 0.214935380000000009 0.248928790000000011 -0.0753123760000000003 -0.0198692599999999997 -0.0162848899999999998 -0.0605010699999999971 -0.365348879999999987 -0.0812021299999999974 -0.0205581300000000008 0.360962600000000022 140 0 139 1 4.33002420000000043 217.197998 3.23473950722314019 2.78367439213372014 31 false 0.0213682580000000011 1.63275735542343003 0.287077160075789983 0.0604359140000000003 16 9 2.16732669999999983 0 16 false 138 125.711612224503995 1.0989681743578299 114.390999 20.4399279999999983 9 68.0903833285397013 11.4654995175619003 5.93871929999999981 20.7686729999999997 13 146.494060493758013 12.4492829188447001 11.7672690000000006 19.3473700000000015 1.70695799999999998 0 1.42130280000000009 0.328744900000000007 1.09255790000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.897508168283991 -62.0528543749232995 23.2899893090543983 -12.0594844274936008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522189198073600 2505522189198073600 1309268429 2015.5 26.0123686575918001 0.571288416445766001 -2.16655147040795981 0.417128445066310027 -0.683865992182748017 0.623805579115951025 -1.09628070000000011 0.401003894024073992 1.49895443632447001 -3.22866765194820005 0.785215460850992031 0.0406337999999999977 -0.0379494500000000026 0.125537900000000008 0.0119112395000000003 -0.112834130000000005 0.0337566200000000011 0.252418099999999979 -0.206148340000000013 0.177430599999999994 -0.0840190650000000039 163 0 161 2 0.713305529999999965 168.240005 0 0 31 false 0.0588516200000000003 1.42053132449299002 0.139063591650760987 -0.0601350999999999969 19 10 1.32137539999999998 0 19 false 161 193.971287716092007 1.21620711832150996 159.488998 19.969023 16 116.736074702954994 11.1674031700373995 10.4532869999999996 20.1833759999999991 16 127.198929317240996 7.74528857289158967 16.4227489999999996 19.500710999999999 1.2575829999999999 0 0.682664900000000019 0.214353559999999999 0.468311299999999986 \N \N 0 \N \N \N NOT_AVAILABLE 151.941360975638986 -62.0380459018530033 23.3153991118452986 -12.0644255418258002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521433286159232 2505521433286159232 1224978287 2015.5 26.0143425565765014 3.86343734316298981 -2.17349953081863978 4.66137079151253975 \N \N \N \N \N \N \N 0.679304299999999972 \N \N \N \N \N \N \N \N \N 47 0 46 1 1.62370529999999991 56.6994019 6.79611422956126976 2.70914138816380001 3 false 0.00551015099999999959 \N \N 0.209707349999999987 6 5 9.55137399999999914 0 6 false 47 65.1255669547325056 2.36158423728531996 27.5771008 21.1539879999999982 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.951557098773009 -62.0434601562753016 23.3146792513900003 -12.0716137743263001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522360996767232 2505522360996767232 1177817371 2015.5 25.9415873834136015 0.97424534341401503 -2.16227007194486998 0.766013154074057012 0.493899611955776974 1.12937392381049007 0.437321599999999977 0.844938725817677039 2.29513966949782988 -2.09317892441500986 2.0822068484931302 -0.0112528065000000004 0.233929049999999999 -0.0532166059999999996 0.0781533400000000017 -0.287866650000000002 -0.038208917000000002 -0.372899319999999979 -0.149448130000000012 -0.0598644279999999973 0.458245599999999975 127 0 124 3 -0.416980030000000002 112.041 0 0 31 false 0.0277547500000000016 1.57550119391589005 0.267257899746134009 -0.0528868300000000027 15 8 2.33236700000000008 0 15 false 124 112.708389135112 1.05759978210799011 106.57 20.5584750000000014 10 78.8963728519886018 11.2022951675086997 7.04287599999999969 20.608746 12 104.135879055987999 12.2432159988230005 8.50559800000000088 19.7179180000000009 1.62394520000000009 0 0.890827200000000041 0.0502700800000000017 0.840557099999999946 \N \N 0 \N \N \N NOT_AVAILABLE 151.801242816979993 -62.0646645289922034 23.2496837549877995 -12.0345782144928002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534146389210496 2505534146389210496 1302604483 2015.5 25.9353072501579014 3.2303890621393001 -2.13899732181983993 3.2238603109374302 \N \N \N \N \N \N \N 0.179563460000000008 \N \N \N \N \N \N \N \N \N 38 0 38 0 -0.33872770000000002 29.6982002 0 0 3 false 0.0111231079999999996 \N \N -0.0463862680000000013 5 5 11.5959869999999992 0 5 false 40 67.3242494368353022 2.03314255601996008 33.1133995 21.1179370000000013 0 \N \N \N \N 0 \N \N \N \N \N 1 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.767806946842001 -62.0463478433864992 23.2524142222607999 -12.0106225584972997 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522429716245632 2505522429716245632 450162494 2015.5 25.9709464680700997 0.750883161874608018 -2.15736356084462022 0.710149710661115985 -1.00756156473226999 0.816395374341794988 -1.23415889999999995 -2.1591452839079901 1.8853419171891399 -3.28156498707177002 1.76445550153205999 0.202959499999999987 0.0412705299999999997 -0.168040049999999996 -0.0304300769999999998 -0.126149919999999999 -0.0846481600000000001 -0.440323830000000027 0.0145638585000000004 0.0611619539999999975 0.372332600000000014 146 0 146 0 1.00519470000000011 157.843002 0 0 31 false 0.0315462280000000025 1.60203363058759995 0.236685544565909012 0.00813355950000000001 17 9 1.89374859999999989 0 17 false 146 133.140038152214998 1.20128582917933002 110.831001 20.3775939999999984 11 67.5613970292154988 10.0882154553808991 6.69706099999999971 20.7771420000000013 10 89.8396069789928049 11.8402230730469 7.58766169999999995 19.8782500000000013 1.18222139999999998 0 0.898891450000000036 0.399547580000000013 0.499343870000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.853249900355991 -62.047609690951198 23.2794384407075015 -12.0407403621338993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534730502595584 2505534730502595584 116746441 2015.5 25.9575397104757997 0.129199298738741003 -2.11451817342961013 0.0930976576387630983 0.357771010592070005 0.141043033771214993 2.53660899999999989 7.77535067133467006 0.297552651602870977 -6.79967192530386999 0.186186490776344998 0.0107539769999999996 0.194646370000000013 0.00578990999999999967 0.0593065730000000013 -0.177481529999999998 0.0699971300000000046 0.090408459999999996 -0.100954169999999996 0.0803048400000000023 0.0715676400000000018 182 0 182 0 0.337863269999999993 182.751007 0 0 31 false 1.03235900000000003 1.63849682349101 0.0314753756279970986 -0.0493769650000000018 21 10 0.265231099999999997 0 21 false 181 1303.17641447589995 2.37333852055024996 549.090027 17.9008579999999995 17 649.226951862758028 8.77466320166213087 73.9888150000000024 18.3203959999999988 15 937.207451429984985 5.04955183722491974 185.60211000000001 17.3323299999999989 1.21735970000000004 0 0.988065700000000047 0.419538499999999981 0.56852720000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.788155598596006 -62.0146973910689994 23.2827064420742005 -11.9959631144962007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680064 2505522635874680064 772906798 2015.5 25.9950364282852995 0.191125003654868009 -2.14660715026268001 0.162522284916350013 0.99355106107838298 0.220522852594457003 4.50543359999999993 5.68875531600709028 0.474050373396383007 -7.32571618004132041 0.328796035034769007 0.187575490000000011 0.129741090000000003 0.173239699999999996 0.122687539999999998 -0.147231360000000006 0.167196569999999989 0.291000700000000001 -0.264361349999999995 -0.0352777900000000033 0.197729920000000003 140 0 140 0 2.67183970000000004 183.016006 0.512249159294078993 1.32490588156229006 31 false 0.541590600000000033 1.37943249498429998 0.0495812911101767978 0.0498767499999999975 16 10 0.430369820000000014 0 16 false 140 958.708730716311038 2.3413098257508298 409.475006 18.2341499999999996 14 296.558971784011021 7.53579921601433966 39.3533550000000005 19.1711099999999988 15 1056.42812578724011 9.02571899659571031 117.046424999999999 17.2023200000000003 1.41125980000000006 0 1.96879000000000004 0.936960200000000021 1.03182979999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.889691579285 -62.0275289818027034 23.3063698969513986 -12.0395300746756 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680448 2505522635874680448 1485102832 2015.5 26.0098473129209999 0.182577400759906 -2.1460313174494301 0.132665412613604011 0.213277248152637988 0.19843594064984299 1.07479140000000006 5.71190298835723009 0.404968971269250022 -5.4349805312154098 0.247951428403996005 0.0578935740000000032 0.224123020000000006 -0.0446039400000000016 0.114976410000000001 -0.14827883 0.118284749999999994 0.118583720000000004 -0.0426648780000000033 0.110894844000000006 0.105088650000000006 175 0 172 3 -0.302415759999999978 160.882996 0 0 31 false 0.547093599999999958 1.49270610756654998 0.0453489856165743971 -0.0389811600000000008 20 10 0.359096199999999977 0 20 false 171 833.06846817854796 1.84106839332902994 452.492004 18.3866629999999986 17 468.486616528255013 10.0143828616254993 46.7813760000000016 18.6746440000000007 17 573.548053162431984 18.3018185846688013 31.3383099999999999 17.8654960000000003 1.25083910000000009 0 0.809148800000000001 0.287981030000000027 0.52116775999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.917626022547012 -62.0206246501701983 23.3206712376979013 -12.0444045073569992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522635874680704 2505522635874680704 630577571 2015.5 26.0145175122580987 0.385419257158627016 -2.14486421169916985 0.290822958931997 0.785185121558967025 0.435866625321442991 1.80143439999999999 7.99085396983274965 0.864453576722606032 -7.15179654036364987 0.52388616329465898 0.097308569999999997 0.208568780000000009 -0.00698717800000000014 0.118990200000000004 -0.190105629999999998 0.119660710000000003 0.183607770000000003 -0.0557710230000000029 0.120099139999999993 0.1212144 174 0 171 3 7.52139399999999991 343.136993 1.9579558220023201 8.02398817887280025 31 false 0.119556220000000005 1.20933466254727007 0.0910228140846374989 -0.0180732530000000009 20 10 0.762629699999999966 0 20 false 172 459.925832695278984 2.04005965317720994 225.447006 19.0316469999999995 15 104.695949340967005 8.31940075629690057 12.5845540000000007 20.3015630000000016 15 574.46040287088897 9.23149111773079944 62.2283439999999999 17.8637699999999988 1.47666490000000006 0 2.43779369999999984 1.26991649999999989 1.16787719999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.92552500312101 -62.0175574484660004 23.3255492107760993 -12.0450240649834992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522880688276864 2505522880688276864 948160739 2015.5 26.008231439901401 0.144377733817121989 -2.12130468084927992 0.108035476345042 2.61449616866328016 0.154885293033316995 16.8802090000000007 1.22947939848428001 0.323133196702307002 -2.16557333225610993 0.193077067341372005 0.110035450000000007 0.206825580000000009 -0.0287704649999999985 0.15187893999999999 -0.00514500729999999972 0.15303752000000001 0.18239182000000001 -0.0537351199999999973 0.128635599999999989 0.0721509000000000039 158 0 155 3 1.57162679999999999 178.153 0.357443725779749977 1.25898537559492008 31 false 0.955719949999999985 1.29005476929934004 0.0352417098040037 -0.0275037599999999986 18 10 0.287611720000000015 0 18 false 151 1345.78771836324995 2.6480346419398999 508.221008 17.8659250000000007 16 317.460357370710028 8.03249657480689017 39.522002999999998 19.0971639999999994 14 1601.35378907231006 13.3907792286772001 119.586299999999994 16.7507020000000004 1.42579260000000008 0 2.34646219999999994 1.23123929999999993 1.11522290000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.891793048457998 -61.9990139087501007 23.3283756461706986 -12.0207986667579991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522979472072448 2505522979472072448 1634968372 2015.5 26.0143479014057988 0.262653737917036001 -2.11751287763783003 0.189502643336610987 1.74794680712058992 0.278291562313202012 6.28099100000000021 -15.4879170451735995 0.61286257136186495 -11.3633026890638007 0.345960169740278989 0.0494774700000000026 0.112782753999999999 -0.104611499999999996 0.136535440000000008 -0.100801569999999993 0.159785850000000007 0.1637044 -0.0311882599999999989 0.0991807799999999962 0.0530686640000000015 170 0 169 1 3.36540440000000007 231.970993 0.712413130836573982 1.61615946764102003 31 false 0.268918299999999999 1.41430217889229004 0.0648122473421259976 -0.0523669569999999987 19 10 0.541008060000000013 0 19 false 168 540.615788994626996 1.3926052144213199 388.204987 18.8561440000000005 17 112.662748231790005 9.42639848323804053 11.9518339999999998 20.2219370000000005 18 685.224486691531979 9.89920134731067058 69.2201799999999992 17.6723379999999999 1.47588589999999997 0 2.54959870000000022 1.36579319999999993 1.18380550000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.900055024403002 -61.9929567691166028 23.3356095330677 -12.0195032427774002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535486416843776 2505535486416843776 23055366 2015.5 25.858611679124099 0.585225151108525021 -2.10291975157679989 0.483532776894593008 1.23831774386930005 0.67440358794591404 1.8361672 11.0044077207776994 1.45014907697911011 -6.46117169078985043 0.926587813014617012 0.216347829999999991 0.0398598949999999994 0.0343139299999999994 0.215714779999999995 -0.285192999999999974 0.313267379999999984 0.280509169999999974 -0.20032817 -0.122482084000000005 0.321549330000000022 160 0 158 2 1.9055434 188.046997 1.64500541842574011 6.04892191079068997 31 false 0.0547374200000000019 1.07179643291874993 0.158423636683347996 0.0143588185000000004 18 10 1.32835560000000008 0 18 false 158 194.727207766472986 1.61091506272221996 120.879997 19.9648000000000003 13 71.0853695812496937 8.16201761102177059 8.70928900000000006 20.7219370000000005 14 216.445767572262014 8.02784366604880972 26.9618819999999992 18.9235480000000003 1.47658430000000007 0 1.79838940000000003 0.757137300000000013 1.0412520999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.587095454061995 -62.0465736772852026 23.1929858838167995 -11.9490094187477993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535490712257792 2505535490712257792 580637237 2015.5 25.8624128057652989 0.0379141560597673968 -2.10194313252309017 0.0309059547350682001 1.12099116096399998 0.0444474604720936015 25.2205890000000004 13.6403491296123995 0.0835884700766101052 -8.47295993831557048 0.0697416696212348058 0.189892129999999992 0.341125200000000017 0.0481912270000000031 0.0786856100000000031 -0.115465280000000003 0.133976089999999992 0.0575249499999999983 -0.186793199999999993 -0.10245638 0.355153019999999986 151 0 150 1 -1.74670980000000009 116.665001 0 0 31 true 16.6080269999999999 1.53575094611478002 0.0109637483592467996 0.0694258600000000059 17 10 0.0894898499999999958 0 17 false 149 13723.3850272527998 6.61539762678270016 2074.45996 15.3447119999999995 17 6725.94542048955009 41.2774194948052013 162.944919999999996 15.7820040000000006 17 10199.3627571220004 30.726888015952099 331.936069999999972 14.7404869999999999 1.23331879999999994 0 1.04151729999999998 0.437292100000000017 0.604225160000000039 \N \N 0 \N \N \N NOT_AVAILABLE 151.593532534962009 -62.0440681999235011 23.1969646103203004 -11.9494902985100993 100001 5085.8501 4835.60986 5448.43994 0.112999998 0 0.333999991 0.0463000014 0 0.164100006 200111 0.881129300000000004 0.767755500000000035 0.9746861 0.467982100000000012 0.426447359999999998 0.509516839999999971 +1635721458409799680 Gaia DR2 2505535314621432448 2505535314621432448 1091679930 2015.5 25.8847747740081999 0.738560907697679014 -2.10080260122435991 0.750459835469124981 -0.305239647279005988 0.885893638523941984 -0.344555649999999991 4.27093399861641032 2.13474478034218018 -8.59130518424177048 2.20807313771189984 0.3092221 -0.00774978749999999991 -0.0689518400000000004 0.0140342390000000004 -0.230961830000000007 -0.0881584660000000048 -0.356370420000000021 -0.159935650000000013 -0.127931089999999997 0.636619799999999958 125 0 120 5 0.702447999999999961 125.278 1.09450616124388 0.353161646844281973 31 false 0.0403107629999999995 1.61405817844468991 0.217536377165156003 0.137407990000000008 15 9 2.4441647999999998 0 16 false 122 152.578164214779008 1.3803867440906501 110.532997 20.2296349999999983 7 104.748474324773994 16.6948064750910987 6.27431499999999964 20.3010200000000012 7 153.000331038935997 9.97655240564045087 15.3359919999999992 19.3001900000000006 1.68929029999999991 0 1.00082969999999993 0.0713844299999999987 0.92944526999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.635580186738991 -62.033485049260598 23.2186498746959984 -11.9566041309082998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535525071996032 2505535525071996032 1051832138 2015.5 25.8754296240445996 0.461986015630115987 -2.09647780581452992 0.382291841932321019 -1.13083727934618006 0.532664614002510972 -2.12298179999999981 4.96937892233863998 1.05469325185128993 4.82782746060185008 0.753170639369405981 0.117084384 0.212366980000000011 0.0471713770000000004 0.162950979999999995 -0.286241999999999996 0.257501329999999973 0.266902479999999998 -0.182234850000000004 -0.0921092699999999931 0.289530200000000015 150 0 148 2 94.7611600000000038 15171.2998 3.22733208199110999 695.37042081218101 31 true 0.0916898849999999987 1.32043039815892005 0.123400863886452994 -0.00281292249999999999 17 10 0.97088677000000001 0 17 false 150 9791.77380603335041 38.100845490751901 256.996002 15.7112119999999997 16 4897.96337417016002 20.8204215049691008 235.248050000000006 16.1263480000000001 14 7800.8848219770598 22.7623979922273989 342.709259999999972 15.0315600000000007 1.29688939999999997 0 1.0947886 0.415136339999999993 0.67965220000000004 \N \N 0 \N \N \N NOT_AVAILABLE 151.613634927376012 -62.0335686545464995 23.2113828069260002 -11.9491627931171003 110001 4989.91992 4878.74023 5152.74023 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535520776589440 2505535520776589440 1556615225 2015.5 25.8712816626176014 0.0973057390331242972 -2.08657522232239012 0.0779239489584433037 1.3929996629105601 0.111867938458796001 12.4521800000000002 14.2422561946771005 0.224995502313132006 -4.20377453355301967 0.162334741886758005 0.12991939999999999 0.229627940000000003 0.0554309259999999984 0.144755290000000009 -0.248766850000000012 0.234069589999999994 0.208776240000000002 -0.200909749999999998 -0.106380240000000001 0.311676320000000007 158 0 157 1 1.94352459999999994 187.699005 0.279082585454654974 1.48482704534734999 31 true 2.06066800000000017 1.37658363686448992 0.0261464219075789005 0.0184832439999999994 18 10 0.212636949999999991 0 18 false 156 2542.61321475707018 3.01657707867809011 842.880005 17.1751649999999998 15 714.361244288039984 12.4144179614613002 57.5428700000000006 18.2165929999999996 14 2789.10650295092 8.48071627816687013 328.876280000000008 16.1482559999999999 1.37790039999999991 0 2.06833650000000002 1.04142760000000001 1.02690890000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.596622074478006 -62.0263869867203965 23.2111423314762 -11.9384302037246002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535520776590208 2505535520776590208 1259521477 2015.5 25.8737564055570992 1.13160838414697995 -2.08324366370184011 1.01782496843002002 \N \N \N \N \N \N \N 0.282810720000000015 \N \N \N \N \N \N \N \N \N 137 0 137 0 167.034909999999996 63898.1992 7.63783036485534961 2556.83642235469006 3 false 0.0162970960000000005 \N \N 0.102424845 16 10 2.63910320000000009 0 16 true 139 6224.08400541126957 76.9336841239628058 80.9019012 16.2031759999999991 15 2580.57861498916009 18.4194312597700005 140.100889999999993 16.8220959999999984 14 7961.03609759614028 15.5782321996438995 511.035919999999976 15.0094960000000004 1.6936814 0 1.81260010000000005 0.618919400000000008 1.1936808000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.598354774103001 -62.0223182177281984 23.2147405737614996 -11.9362342722977992 132001 4403.81006 3882.6499 4550.83008 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535245900766720 2505535245900766720 318294728 2015.5 25.8945500728854014 2.38486825115833989 -2.11103935386099995 1.32325087967479993 -0.135337894478462006 2.44161149231993013 -0.0554297399999999982 -5.25792380161836981 4.05051371855719999 -13.9157889584018992 3.63457475105682981 -0.482656660000000015 0.521574300000000046 -0.236354320000000007 0.0590324360000000006 -0.442709679999999994 0.233398099999999997 -0.131883129999999987 -0.310280300000000009 -0.322975400000000024 0.24895173000000001 75 0 73 2 0.125244889999999998 68.7969971 0 0 31 false 0.015802502999999999 1.29159305200478003 0.437642292133231026 -0.152418730000000002 9 7 3.92850160000000015 0 9 false 75 82.8524099271559038 1.70199314619477993 48.6795998 20.8926030000000011 5 23.6125064622761016 6.85773063741307976 3.44319530000000018 21.918533 6 83.504730356880799 9.81641445357170994 8.50664199999999937 19.9576419999999999 1.29286809999999996 0 1.9608916999999999 1.02593040000000002 0.934961299999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.663750761785991 -62.0385569177903022 23.2241156513711999 -11.9697047959186005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535245898675456 2505535245898675456 518850871 2015.5 25.893177602619101 0.750806736349773018 -2.10185492025896004 0.598742893968351009 -0.00197216145373896009 0.884012976423812047 -0.00223091920000000011 -0.897065533284262973 1.91545318075566007 -7.6661974766410399 1.1386422886435299 0.247452740000000004 -0.178473309999999996 -0.152431669999999991 0.154947790000000002 -0.411577369999999998 0.223919289999999993 0.14948322 -0.0433701000000000017 -0.0631465100000000029 0.320367630000000014 138 0 138 0 1.73658840000000003 162.617004 0.35195842770241198 0.045011565519153203 31 false 0.0424156379999999986 1.10085187141546004 0.193334935544706987 0.0329965759999999997 16 10 1.73011390000000009 0 16 false 140 144.139243009203994 1.40735669249225004 102.417999 20.2914099999999991 11 59.3091119240668974 14.5431458688657997 4.0781489999999998 20.9185850000000002 14 181.406443579828988 9.68011789460095073 18.7401069999999983 19.1152879999999996 1.67002089999999992 0 1.80329699999999993 0.627174400000000021 1.17612270000000008 \N \N 0 \N \N \N NOT_AVAILABLE 151.652723989809999 -62.0308434766766013 23.2262449883067994 -11.9606551687950002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534627423387136 2505534627423387136 1579352179 2015.5 25.9342536728426012 0.0966031337421540959 -2.09876741740849981 0.0704107419944935004 2.83254810356958986 0.105529789299064994 26.8412189999999988 12.7706075403211994 0.210267135887571011 -23.2842541465550994 0.139126121816755988 0.0586738799999999977 0.282530400000000015 -0.0208026819999999994 0.0941015199999999941 -0.132875999999999994 0.095777580000000001 0.0656479449999999992 -0.0671053199999999961 0.0782783199999999985 0.132699029999999996 177 0 175 2 1.80077200000000004 204.658005 0.294347839826225977 1.7197658221229899 31 false 1.9509723000000001 1.3658646423960501 0.0233846989056167992 -0.0253503599999999989 20 10 0.190441899999999997 0 20 false 174 2470.04216384632991 2.94486301850432985 838.763 17.2066039999999987 16 633.620952112652958 9.91321012922666078 63.9168299999999974 18.3468149999999994 19 2785.36904364653992 10.2026245656575991 273.005159999999989 16.1497139999999995 1.38418280000000005 0 2.19710159999999988 1.14021109999999992 1.05689049999999995 \N \N 0 \N \N \N NOT_AVAILABLE 151.728960037653991 -62.0104651621581979 23.2664526477342015 -11.9727942112427996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536040468070400 2505536040468070400 1003126997 2015.5 25.9086476152263003 0.0497582815811941984 -2.0666062215311598 0.044851205471784103 3.38842450650777982 0.0604064389940398017 56.0937649999999977 -39.6588799714455007 0.116845377048445997 -53.9856743659254974 0.101941457169155994 0.243007930000000011 0.219610109999999997 0.0208362970000000002 0.064714506000000005 -0.218091499999999994 0.0905952450000000048 -0.0570182899999999993 -0.144358010000000009 -0.0411703849999999968 0.426223929999999973 137 0 136 1 0.855128699999999964 144.621002 0 0 31 true 8.85441400000000023 1.35434664314302999 0.0127549240903401997 0.133883150000000006 16 10 0.123836050000000003 0 17 false 133 7842.01794778013027 6.16537765327934029 1271.93994 15.9522960000000005 14 2216.96853592666002 22.9083787094378017 96.7754439999999931 16.9869899999999987 15 8524.79332524976053 26.9021167773916012 316.881869999999992 14.9352099999999997 1.36977020000000005 0 2.05177969999999998 1.03469370000000005 1.01708599999999993 \N \N 0 \N \N \N NOT_AVAILABLE 151.650354842777006 -61.9923695978965981 23.2541296128123989 -11.9335029462279003 100001 3850.5 3598.5 4275.27002 0.0555000007 0.0208999999 0.194100007 0.0344999991 0.0109000001 0.0996999964 200111 0.501038549999999971 0.406422349999999988 0.573670270000000038 0.0497170600000000004 0.0478164900000000032 0.0516176340000000025 +1635721458409799680 Gaia DR2 2505535452057239680 2505535452057239680 154692711 2015.5 25.9151450723012999 0.833472137398052038 -2.08042852923703014 0.652650982823547055 -0.231768512371896995 1.00802507771946992 -0.229923349999999999 -6.77475440176310961 2.09922401847419993 -5.45470761229282974 1.87500890653823005 0.0763438939999999955 0.183159550000000004 -0.00103562649999999995 0.0998922399999999933 -0.187488910000000009 0.0526466599999999979 -0.23931849999999999 -0.287613899999999978 -0.246959790000000012 0.507701340000000001 115 0 115 0 0.836797200000000019 122.167999 0.428315869619393996 0.052035661954841099 31 false 0.0383936240000000012 2.00894763987685021 0.231121497980339013 0.0148913359999999998 13 8 2.16036649999999986 0 13 false 114 139.452026779704994 1.46956642031873996 94.8933029 20.3273030000000006 12 100.609947349641999 14.2881697480731003 7.04148599999999991 20.3447859999999991 12 108.360548565677007 7.78029651159871971 13.9275599999999997 19.6747419999999984 1.49851169999999989 0 0.670043950000000055 0.017482758000000001 0.652561199999999952 \N \N 0 \N \N \N NOT_AVAILABLE 151.675456087583001 -62.002081568330901 23.2551400850222016 -11.9487423861419 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535761294759808 2505535761294759808 544395196 2015.5 25.9247417106399993 0.287836324659560994 -2.07951738948250009 0.212046477457913995 0.210931244502002013 0.318993921683019988 0.661239099999999969 8.3144613008380599 0.68770456429374005 -6.9155406171132503 0.40745882819207202 0.0846177300000000021 0.172079879999999991 -0.0334204030000000013 0.0657739999999999991 0.00680600850000000028 0.0419428599999999985 0.117406800000000006 -0.0924132899999999952 0.136564839999999993 0.00128535900000000002 151 0 149 2 0.890954200000000029 158.942001 0.399110203068525016 0.332785429460014992 31 false 0.238397880000000006 1.47219936255501005 0.0704896128871047994 0.00465508600000000012 17 10 0.604579300000000042 0 18 false 149 456.460345880107013 1.98430358945176999 230.035995 19.0398579999999988 13 192.999765276847995 16.5251229163127995 11.6791725 19.6374969999999998 12 378.354802515078006 10.0328573640339993 37.7115700000000018 18.3171709999999983 1.2517069999999999 0 1.32032590000000005 0.597639099999999979 0.722686770000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.693082994520012 -61.9971498862355972 23.264604452417899 -11.9514014163025006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535795654500352 2505535795654500352 739305245 2015.5 25.9333121065111989 0.280587572575197008 -2.07336430135777983 0.220130888505988997 0.23428211077688299 0.314719552710937989 0.744415500000000008 8.41945345985848981 0.743561966805246999 -8.79565904944773003 0.420763277379747003 0.108577610000000005 -0.0305216129999999995 0.118621939999999995 0.0926549700000000032 -0.22224851000000001 0.151200030000000013 0.312866450000000018 -0.241252350000000004 0.0188028070000000012 0.0611538439999999989 163 0 160 3 0.702532770000000029 167 0.569474818232121982 0.676330481568728992 31 false 0.237309429999999988 1.49437228543404999 0.0676012773400483935 -0.021488732 19 10 0.658379300000000001 0 19 false 161 491.503457621004998 2.1025161375782 233.768997 18.9595489999999991 15 274.566561698810006 9.03667456365763044 30.3835850000000001 19.2547679999999986 17 356.612277651153988 8.97403214387155934 39.7382429999999971 18.3814300000000017 1.28417979999999998 0 0.873338700000000023 0.29521942000000001 0.578119300000000003 \N \N 0 \N \N \N NOT_AVAILABLE 151.703946152821004 -61.9879198496573025 23.2750524613833996 -11.9488062291340995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536036172673664 2505536036172673664 977370188 2015.5 25.9046255185626002 0.135734956329163992 -2.05536094721884011 0.106849727430657002 1.36040044831915008 0.147644059511752995 9.21405500000000011 11.4044577322639995 0.358657485680735022 -6.55765459420428964 0.235728559807626997 0.101936429999999995 0.0221933440000000003 -0.0261067900000000012 0.132261220000000013 -0.21556075999999999 0.195155109999999993 0.19554494 -0.176491680000000012 -0.0952089950000000046 0.173552960000000006 141 0 140 1 0.380347549999999979 140.660004 0 0 31 false 1.13428269999999998 1.37683671603370006 0.0329298884215847992 -0.0299060010000000015 16 10 0.323489579999999999 0 16 false 138 1381.58918859827008 2.38738689910824009 578.703003 17.8374179999999996 13 425.526734685528027 7.76653240002304024 54.7897999999999996 18.7790719999999993 15 1448.26583914313005 13.5165866470569007 107.147310000000004 16.8597980000000014 1.35625890000000004 0 1.91927340000000002 0.941654199999999997 0.977619200000000022 \N \N 0 \N \N \N NOT_AVAILABLE 151.632376019540004 -61.9839248202210982 23.2545091112071987 -11.9215666710282999 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505536070532535040 2505536070532535040 232633903 2015.5 25.9208644595039992 1.5831689067680601 -2.04958122625986983 1.53746454155868006 -2.75481177414914979 1.71945850450101001 -1.60213910000000004 -5.40689708245260992 4.74536314554207017 -0.611594036000940977 3.98754184003285017 0.263235400000000008 -0.345924759999999998 -0.0446457830000000014 -0.033664417000000002 0.0125985569999999998 0.0272636599999999986 -0.29247662000000002 -0.144309300000000001 0.056252996999999999 0.163222659999999992 73 0 71 2 -0.949037970000000008 55.092701 0 0 31 false 0.0143613144999999998 1.51155959204095991 0.478337278073228012 -0.0140196090000000006 9 7 4.27076670000000025 0 9 false 76 76.6219525906998058 1.60433420233542989 47.7593002 20.9774819999999984 4 42.3069170484481987 1.63654189005252992 25.8514119999999998 21.2853600000000007 6 72.8608744470212031 22.7369149207262993 3.2045189999999999 20.1056840000000001 1.50306519999999999 0 1.17967599999999995 0.307878499999999999 0.871797559999999971 \N \N 0 \N \N \N NOT_AVAILABLE 151.658333758228991 -61.9717574374611999 23.2721067661182985 -11.9221215502812008 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534936661029760 2505534936661029760 659575069 2015.5 25.9549127865396017 0.247556935145104989 -2.10345271518370014 0.16161421560269601 2.47394929097136984 0.270875576084927017 9.13315799999999989 21.7364547862656003 0.488985294377306978 -5.99071531816456027 0.300440167057373975 -0.0869240000000000013 0.399003200000000002 -0.00432954900000000024 0.0951374599999999931 -0.277116499999999988 0.109908249999999999 0.134070500000000009 -0.0690873999999999933 0.0652425699999999997 0.10757448 177 0 176 1 6.0490339999999998 308.045013 1.08594773275256995 6.77530956090083958 31 false 0.358449159999999989 1.34067050701528001 0.0527532789125920998 -0.0727609699999999943 20 10 0.432189880000000026 0 20 false 176 918.104183367817996 2.47843812689808018 370.437012 18.2811360000000001 19 244.042367823218001 8.12431253009052945 30.0385249999999999 19.3827250000000006 19 1277.08823103142004 16.3536882123934006 78.0917599999999936 16.9963680000000004 1.65681699999999998 0 2.38635639999999993 1.10158920000000005 1.28476720000000011 \N \N 0 \N \N \N NOT_AVAILABLE 151.772973124185 -62.0058336836738988 23.2843446636470013 -11.9847039933884005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535009675919744 2505535009675919744 310162396 2015.5 25.9356859131200004 0.0978470799141337028 -2.08546074425900985 0.0719883016274868032 0.474077039649313026 0.107315943110505005 4.41758249999999997 9.37622872206721958 0.216804101419604989 -6.57216908450979975 0.14389078834977001 0.0529568700000000031 0.258773179999999992 0.034408130000000002 0.0681816900000000031 -0.127424850000000006 0.0628269699999999959 0.0656583599999999989 -0.0975169540000000029 0.0922047800000000001 0.10673473 175 9 173 2 1.72671090000000005 200.927994 0.189333508979708992 0.688875381152119992 31 false 2.04147960000000017 1.44733805783186997 0.0237922220721737999 -0.030370359999999999 20 10 0.188420609999999988 0 20 false 172 2345.6477208347801 3.38181542193566997 693.606018 17.262709000000001 16 972.046624369804022 10.9301664243615004 88.9324649999999934 17.8821699999999986 16 2025.10786815483993 15.2655613476960994 132.658580000000001 16.4957999999999991 1.27775130000000003 0 1.38636969999999993 0.619461060000000008 0.76690864999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.719555013903005 -61.9978308533539035 23.2727882709219998 -11.9609324354244002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535039740379008 2505535039740379008 103194699 2015.5 25.9442489973674988 2.58978438011269985 -2.08137786302805017 1.63773042589589002 \N \N \N \N \N \N \N 0.293630800000000025 \N \N \N \N \N \N \N \N \N 78 0 77 1 1.24644400000000011 87.2570038 0 0 3 false 0.0150123649999999997 \N \N -0.0416877569999999989 10 7 7.34462740000000025 0 10 false 79 78.039318217413097 1.50983619575773997 51.6873016 20.9575819999999986 5 54.8158750422065992 12.1895191454112997 4.49696799999999985 21.0041219999999988 8 63.1401288543664023 11.1091729870390008 5.68360299999999974 20.2611559999999997 1.51149449999999996 0 0.742965699999999951 0.046539307000000002 0.696426400000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.732287641287996 -61.9904719186470032 23.282455892698799 -11.9602612038193001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505535903029116800 2505535903029116800 1136235801 2015.5 25.9520501713477003 0.36923590793945299 -2.06753294728191017 0.229259497201972001 0.0609460141640670999 0.357120246893138982 0.170659649999999996 -0.390467284200610998 0.92871790794201603 -2.87893036459598983 0.435240984633021022 -0.0469705870000000011 -0.0894091050000000026 -0.368552600000000008 0.158483700000000005 -0.101605445000000003 0.203647059999999991 0.0694730100000000017 0.117641209999999996 0.0421776619999999977 -0.0214887929999999991 165 0 163 2 -0.390273900000000007 150.516998 0 0 31 false 0.17954363000000001 1.53778489026778997 0.0786133444270029069 -0.0964490600000000031 19 10 0.830924699999999961 0 19 false 164 363.830317470309012 1.68512596827216998 215.906998 19.2861200000000004 16 191.533157347415994 8.92398287959129988 21.4627440000000007 19.645779000000001 16 266.894873138051025 10.5703086265225998 25.2494869999999985 18.6960699999999989 1.26000500000000004 0 0.949708939999999946 0.359659200000000012 0.590049739999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.734633074086986 -61.9746211640086031 23.2950471367260015 -11.9502250799777006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534833581820416 2505534833581820416 1570627120 2015.5 25.9991333102928017 3.42422415794820978 -2.09001498529184992 2.68403028126616006 \N \N \N \N \N \N \N 0.51767295999999996 \N \N \N \N \N \N \N \N \N 69 0 69 0 2.43209700000000018 94.7789993 5.71206484834520989 2.00841402996984986 3 false 0.00931648900000000071 \N \N -0.0260456430000000003 8 7 12.2558109999999996 0 8 false 70 86.926561625062007 1.57246605904768 55.2803993 20.840485000000001 6 63.9986735021993027 11.5846038430085994 5.52445939999999958 20.83596 6 67.8254585200652969 9.19424192156341924 7.37694929999999971 20.1834370000000014 1.51649999999999996 0 0.652523040000000054 -0.00452423100000000009 0.657047300000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.845617381405987 -61.9746959931162991 23.3314156398728016 -11.9883507471546 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523082551293440 2505523082551293440 621711455 2015.5 26.0231020222524982 0.141117436333773993 -2.10159495574980015 0.0946603630323405026 0.573776883102322999 0.139977310780033004 4.09907049999999984 0.454366862182822018 0.338801546710666979 -4.89368549777740025 0.180828190714272002 -0.0233205219999999998 0.0539150720000000014 -0.272851940000000015 0.141303299999999993 -0.0935232200000000041 0.170794470000000004 0.0647470500000000004 0.0653428100000000012 0.0771178299999999983 0.0106076989999999999 159 0 159 0 -2.16246200000000011 118.519997 0 0 31 false 1.1239889999999999 1.58489644876031011 0.0324878589528473025 -0.0910960499999999979 18 10 0.30491486000000001 0 18 false 158 1387.59560589176999 2.08955181525261979 664.064026 17.8327080000000002 16 764.984582590660011 11.3661465562437005 67.3037800000000033 18.1422559999999997 15 942.592138742243037 12.6135878544522999 74.7283099999999934 17.3261099999999999 1.23060109999999989 0 0.816144940000000041 0.309547420000000018 0.506597500000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.902239955682006 -61.9748223343140978 23.3498826459914 -12.0078836289163995 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534872236966016 2505534872236966016 1127307098 2015.5 25.9826495570008014 0.221400357206102988 -2.08211005099144986 0.142633340433497013 1.48087172570407999 0.217429526318042993 6.81081249999999994 9.25624276400104051 0.530322316813647054 -20.9541658205613999 0.270925906676677986 -0.057670082999999997 0.0600952579999999986 -0.274425770000000013 0.155205769999999993 -0.133867399999999998 0.200239630000000002 0.108061820000000003 0.0302755180000000013 0.0357964750000000012 0.000415236079999999985 166 0 166 0 3.02575400000000005 220.802994 0.665744548900028987 2.21391297669040021 31 false 0.463580849999999989 1.297323965573 0.0471598264120468985 -0.104778155999999997 19 10 0.473343699999999978 0 19 false 164 836.786520885421965 1.62437092131213001 515.14502 18.3818279999999987 16 203.788105728344988 12.3014685771877996 16.56616 19.578441999999999 16 1011.67563472407005 9.94735517956369009 101.702979999999997 17.2493170000000013 1.45253739999999998 0 2.32912449999999982 1.1966133000000001 1.1325111000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.80673087241999 -61.974649036030101 23.3186948094543993 -11.9749717888437992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505534902301299328 2505534902301299328 878911215 2015.5 25.9922260106661014 1.78905592529284996 -2.083166111343 1.46910299776204001 2.43247643312106021 2.04359453710037986 1.1902931000000001 14.9973329167578004 4.78224216984155959 -14.5943282683280007 2.95615581882913014 0.341255299999999984 -0.381952349999999996 -0.213033210000000001 0.0187146800000000009 -0.300055919999999976 0.0691128200000000054 0.0126831050000000001 0.0616250370000000006 0.11128093 0.21044017000000001 95 0 95 0 2.9518184999999999 134.820999 4.20938358198865981 1.52806196011890005 31 false 0.0103077389999999998 \N \N 0.106183890000000003 11 9 4.26389930000000028 0 11 false 96 86.040468843361495 1.48528711264008995 57.9285011 20.8516079999999988 8 84.8264610388335996 22.3316429250168014 3.79848719999999984 20.5300599999999989 9 87.9556892870382967 6.45700956563350026 13.6217375000000001 19.9012600000000006 2.00814989999999982 0 0.628799439999999987 -0.32154845999999998 0.950347900000000023 \N \N 0 \N \N \N NOT_AVAILABLE 151.826083698398008 -61.9714854214012973 23.3274063800797009 -11.9794528004347001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540983975119872 2505540983975119872 1653447998 2015.5 25.9897419241858003 1.20327287869087995 -2.0581803332455002 0.829476471003790961 -0.526889982636214005 1.28150215557828995 -0.411150279999999979 -7.00760489550926025 3.6227824715449799 -6.89253898032606038 3.17136095540536989 -0.0018081588999999999 -0.403737659999999998 -0.12894659 0.270801599999999976 -0.143401830000000008 0.151015640000000007 -0.192361580000000004 -0.183416529999999994 -0.341846900000000009 0.187066270000000007 117 0 116 1 -1.62563649999999993 87.9256973 0 0 31 false 0.0219290419999999993 1.38154772539569004 0.29644428536192502 -0.116333640000000002 14 9 3.3151704999999998 0 14 false 118 100.661899859187997 1.1121590247289399 90.5102997 20.681204000000001 11 67.4631084436674939 21.2373423940217982 3.17662669999999991 20.7787229999999994 12 58.8570246125947989 8.74669754273242006 6.72905700000000007 20.3374230000000011 1.25489519999999999 0 0.441299439999999987 0.0975189199999999951 0.343780519999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.798453724062995 -61.9499968565369983 23.3343792824333001 -11.9552883453132992 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540915255522048 2505540915255522048 1644634575 2015.5 26.0185526159757003 2.90998208451944995 -2.05437744193132987 2.46748425976445995 \N \N \N \N \N \N \N 0.142920209999999992 \N \N \N \N \N \N \N \N \N 116 0 113 3 28.6260529999999989 1307.94995 17.4496120296292005 75.9573838876739984 3 false 0.0028806779999999998 \N \N 0.0268654699999999989 14 10 6.64143750000000033 0 15 false 121 147.846754461101995 2.18942542427945996 67.5276031 20.2638360000000013 12 161.00798386367299 8.34154376239126982 19.3019399999999983 19.8342700000000001 13 422.560699384755992 10.4053423380102998 40.6099740000000011 18.1971969999999992 3.94711880000000015 0 1.63707350000000007 -0.429565430000000026 2.06663899999999989 \N \N 0 \N \N \N NOT_AVAILABLE 151.850230792918012 -61.9341750620683982 23.3631951468051007 -11.9622702217085006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521746816912256 2505521746816912256 413327641 2015.5 26.0389667963580003 0.113188662320798994 -2.17838362936292995 0.0858606996959483948 2.9271804435656299 0.130689583960967998 22.3979630000000007 40.2376409574080967 0.246761303850697999 -4.47198480405644982 0.163040771149124991 0.0692963300000000032 0.254512249999999995 0.0109824390000000001 0.0706509300000000007 -0.216902399999999995 0.0412782540000000003 0.0436521699999999971 -0.0321432050000000011 0.161166189999999987 0.139159430000000001 169 0 168 1 2.41594340000000019 209.837997 0.359586168959186991 1.87220804252355011 31 false 1.43671079999999995 1.27342871438876992 0.0289112692627706003 0.00337823639999999988 19 10 0.221505750000000001 0 19 false 167 1959.61237996274008 2.43574825742309997 804.521973 17.4579410000000017 18 381.937327118924998 14.4395329141557003 26.4508100000000006 18.896408000000001 16 2524.19267006579003 16.6086606186719017 151.98051000000001 16.256615 1.48301269999999996 1 2.63979339999999985 1.43846699999999994 1.20132639999999991 \N \N 0 \N \N \N NOT_AVAILABLE 152.003384084639009 -62.0372240731806031 23.3362757640642009 -12.0851543085036006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521746816911872 2505521746816911872 943305144 2015.5 26.0369677013550991 0.0304115527021095004 -2.17412543876563991 0.0249840532670402016 2.69278106200140988 0.0353914964349305999 76.0855399999999946 3.87551786311057 0.0646459525515469952 -4.48479703577067035 0.0542086090749279992 0.104167140000000005 0.328609099999999987 -0.0116422399999999999 -0.0147877570000000003 -0.196649419999999991 -0.0984736600000000045 -0.241797480000000009 0.0138228610000000005 0.190705760000000002 0.2417184 167 0 166 1 -1.7503652999999999 131.007004 0 0 31 false 26.3058450000000015 1.47669911475079996 0.00837940313739241917 0.0116251229999999994 19 10 0.0697358849999999975 0 19 false 163 21624.314138985701 9.9007769272781303 2184.1001 14.8510100000000005 19 8556.33098730990059 34.0102605738418973 251.580870000000004 15.5206689999999998 18 19071.0790265456999 28.0385715724758988 680.173000000000002 14.0609819999999992 1.27760859999999998 0 1.45968720000000007 0.669658659999999961 0.79002859999999997 \N \N 0 \N \N \N NOT_AVAILABLE 151.995614126394997 -62.0342495561210967 23.3359658344175003 -12.0804605937989002 100001 4417.66992 4346.06982 4625.66992 0.358500004 0.110600002 0.493999988 0.174700007 0.0810000002 0.25029999 200111 0.675340999999999969 0.615971099999999994 0.697776199999999958 0.156499400000000011 0.151691839999999994 0.161306959999999999 +1635721458409799680 Gaia DR2 2505521815535831424 2505521815535831424 142795799 2015.5 26.0277562934966014 0.653163305831212959 -2.16754577878817001 0.474029785307865992 2.7216632713973401 0.740079411227875017 3.67752860000000004 20.011630937576399 1.47910426228463998 2.74823232305899978 0.83999292017306304 0.0520672159999999995 0.161266739999999992 0.0137493249999999997 0.0916287449999999976 -0.236671569999999998 0.0902937000000000045 0.165301370000000003 -0.0562295650000000022 0.156409949999999992 0.0756428299999999942 165 0 161 4 6.03489300000000028 287.71701 3.02886268998802022 8.61963675514613925 31 false 0.0461210499999999968 1.16438004424288 0.152807849196368001 -0.0144447050000000004 19 10 1.29890299999999992 0 19 false 161 237.025206778797013 1.41859387553702998 167.085007 19.751379 10 139.956378791551003 17.0625886370063 8.20252900000000018 19.9864059999999988 9 425.302703723097011 17.0341075447534998 24.9677119999999988 18.190173999999999 2.38480569999999981 0 1.79623219999999995 0.235027309999999989 1.5612048999999999 \N \N 0 \N \N \N NOT_AVAILABLE 151.971848631056986 -62.0322980487547966 23.3296634019319988 -12.0709717588740002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521815536388224 2505521815536388224 1533766416 2015.5 26.028483823239899 0.0351175185566693984 -2.16794462821570999 0.0286216600232835003 1.32958322057726996 0.040627628181104998 32.7260860000000022 19.7625267840874983 0.0767627176387225968 2.58161497667231998 0.0617571680942195986 0.0975223800000000057 0.28280818000000002 -0.031354967999999997 0.00825690400000000067 -0.216598120000000005 -0.0481878440000000005 -0.187789769999999995 0.000755331600000000024 0.159882439999999987 0.241331149999999994 166 0 166 0 -2.34655740000000002 121.902 0 0 31 false 17.517277 1.51918575729218008 0.00979659069233933082 0.00426966700000000043 19 10 0.0797524099999999958 0 19 false 166 14726.4067414796009 6.79707493737569024 2166.58008 15.2681240000000003 15 6737.99640113674013 10.4906122652083003 642.288199999999961 15.7800609999999999 17 11512.3204511965996 34.0621244727002974 337.980099999999993 14.6090129999999991 1.2392919 0 1.17104819999999998 0.511937140000000013 0.659111000000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.973614168976013 -62.0323433817802012 23.3302063247503 -12.0716087434874009 100001 4938.25 4906.5 5029 0.287299991 0.172999993 0.449699998 0.132499993 0.076700002 0.223100007 200111 0.829159599999999997 0.799504699999999957 0.839925350000000015 0.368352200000000018 0.342755319999999974 0.393949099999999997 +1635721458409799680 Gaia DR2 2505521742521473152 2505521742521473152 104690333 2015.5 26.0374922632345012 0.118808962703203 -2.16985482885400982 0.0906998305262835952 1.89703502557369008 0.137191536882519005 13.8276389999999996 19.2559267415296986 0.262181050180502973 -9.88613008561475937 0.171664458034040013 0.0845921000000000034 0.236690370000000011 -0.00192068160000000003 0.0706059400000000059 -0.204548759999999996 0.0421916700000000006 0.0497340559999999987 -0.0277525220000000017 0.164548470000000002 0.135796840000000002 168 0 168 0 3.9158141999999998 243.544998 0.47249769040164602 3.40372361726325989 31 false 1.28223899999999991 1.31438912957772991 0.0297934100870080008 0.0113780159999999995 19 10 0.234844770000000008 0 19 false 168 2010.21015823916991 2.80193056944569996 717.437988 17.430261999999999 18 505.142955439565981 13.5915121460930006 37.1660600000000017 18.5928520000000006 17 2365.39234186163003 20.4738361823498991 115.532449999999997 16.3271620000000013 1.42797770000000002 0 2.26568980000000009 1.16259000000000001 1.10309980000000007 \N \N 0 \N \N \N NOT_AVAILABLE 151.992682185900009 -62.0301725186645001 23.3380610348132009 -12.0766770462420006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521575018219776 2505521575018219776 90670090 2015.5 26.0686490432724014 0.153297159942969996 -2.17242559783636979 0.0972213941151551936 15.9238143547696005 0.172890051037057013 92.1037100000000066 284.703577262456008 0.272277186817882988 21.4111464228497006 0.182722354536449999 -0.0396732429999999969 0.50399970000000005 -0.0676737899999999976 0.124885960000000004 -0.181499450000000007 0.0395019399999999993 -0.0609710099999999991 0.0440311899999999978 0.183302390000000009 0.132489699999999988 129 0 126 3 6.31875560000000025 247.242004 0.598338665857864993 7.23799259323662003 31 false 1.4076344999999999 1.17034187468252004 0.0352328812108586992 -0.0331013650000000006 15 10 0.242857960000000012 0 15 false 126 2960.71959685312004 5.85770355686724997 505.440002 17.0098720000000014 13 328.273453882991021 26.7345501603591984 12.2789959999999994 19.0607989999999994 13 4446.98037223785013 10.8315402061372996 410.558440000000019 15.6417570000000001 1.6128693999999999 0 3.4190415999999999 2.05092620000000014 1.36811539999999998 \N \N 0 \N \N \N NOT_AVAILABLE 152.054881219788001 -62.0190075207947018 23.3667377275078003 -12.0904482238509008 100001 4095.25 3669.11011 4485.33984 0.147 0.0560000017 0.818099976 0.0920000002 0.0179999992 0.35679999 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518478351107712 2505518478351107712 812990459 2015.5 26.0912053662565988 0.434057646033747024 -2.19594135247479993 0.360626740777670984 1.23981592849452005 0.497806236467116026 2.49055930000000014 -10.0914576609657995 0.981182818798558953 -12.0437647409328008 0.663088717480947998 0.233324659999999989 0.166267720000000008 -0.070993760000000003 0.0790245900000000057 -0.0452098770000000025 0.0635941800000000002 -0.0271966530000000012 0.0227533239999999984 0.188438699999999987 0.176860170000000011 138 0 136 2 0.829795100000000008 144.184006 0.787610969323792043 0.900038574744460029 31 false 0.103227520000000003 1.43312215880488991 0.106418411636294993 0.114784226000000003 16 10 0.871825929999999971 0 16 false 135 290.759373466148986 1.49203847547928992 194.873993 19.5295309999999986 12 109.590601032196005 12.0636875236715007 9.08433699999999966 20.2519549999999988 13 327.259521259899998 12.4863964418897009 26.2092859999999988 18.4746899999999989 1.50244559999999994 0 1.77726549999999994 0.722423550000000025 1.05484200000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.119924289847006 -62.0304141969581977 23.3794080892254996 -12.120573988456 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505518482641810688 2505518482641810688 635484374 2015.5 26.091546882645499 0.0363587085460495008 -2.19379958583103019 0.0330503646309009969 1.79243185537999006 0.042220816753210301 42.4537469999999999 22.4312407075865003 0.0713360048511672978 16.9139968481702994 0.0661013285213909035 0.270834299999999972 0.413611169999999972 -0.0595727860000000026 -0.0445502200000000015 0.0211328580000000009 -0.130763600000000008 -0.345831569999999977 0.0413959360000000012 0.186861630000000001 0.267805130000000002 129 0 126 3 0.92741686000000001 135.289001 0 0 31 true 24.5197749999999992 1.54914369943857011 0.00949008834626948079 0.0868387199999999942 15 10 0.0779411500000000007 0 15 false 125 21188.3202482089 11.2951557441086994 1875.88 14.8731240000000007 13 10088.4416025348 47.7238978612101974 211.391819999999996 15.3418279999999996 12 16018.3036297480994 28.0215089708622003 571.643100000000004 14.2503790000000006 1.23212910000000009 1 1.09144970000000008 0.468704220000000005 0.622745499999999952 \N \N 0 \N \N \N NOT_AVAILABLE 152.11859630163201 -62.0283367748086008 23.3805334099341984 -12.1187050044269995 100002 4902.5 4597.8501 5044.1001 0.0160000008 0.00529999984 0.151999995 0.00800000038 0.00260000001 0.0716999993 200111 0.751769240000000005 0.710153699999999999 0.854691700000000054 0.294126539999999992 0.2784798 0.309773269999999989 +1635721458409799680 Gaia DR2 2505521609377958272 2505521609377958272 1061168351 2015.5 26.0771715932039001 0.0310102830947008995 -2.17331814283783009 0.027218943005836601 0.222922245450495993 0.0370407616740099019 6.01829530000000013 5.96316099125203003 0.0658509126035411035 -2.17352579764635001 0.0570984255320551998 0.182747660000000006 0.296777669999999993 -0.0872200900000000001 -0.0325860099999999986 -0.15371304999999999 -0.120949215999999998 -0.338580500000000006 0.0629350540000000042 0.218776539999999992 0.282232939999999988 147 0 147 0 -1.6523102999999999 115.353996 0 1.68651817232593998e-15 31 false 29.783885999999999 1.55101871270012004 0.00847028830933498067 0.0465687300000000026 17 10 0.0723294399999999948 0 17 false 142 24498.482950039499 9.80812246133067056 2497.77002 14.7155179999999994 16 11499.4478879644994 31.4816603077725006 365.274499999999989 15.1996959999999994 14 18768.1446241183985 48.8553411553912014 384.157469999999989 14.0783660000000008 1.23548839999999993 0 1.12132929999999997 0.484177599999999986 0.637151699999999988 \N \N 0 \N \N \N NOT_AVAILABLE 152.072062111786011 -62.0161193223551024 23.3745115797762004 -12.0943909942323007 100001 4955 4855.58984 4983.66992 \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521811240955264 2505521811240955264 1189070030 2015.5 26.0254807267209998 0.204318872714629007 -2.1568160828221199 0.146900196342542005 0.234137366999843 0.21462153949166099 1.09093130000000005 9.60299812003771081 0.482559729122436998 -2.60952743015459987 0.268630456082840974 0.0623165800000000034 0.1555367 -0.104539359999999998 0.120927185000000006 -0.0724880549999999957 0.115717799999999996 0.189117249999999987 -0.0177845789999999983 0.134576720000000011 0.0249351909999999989 156 0 156 0 2.40910050000000009 196.059998 0.304974168069642004 0.407763986744573981 31 false 0.487716880000000019 1.6913493427519799 0.0501267416092177967 -0.0473488270000000031 18 10 0.426486199999999982 0 18 false 155 793.761700604080033 2.14838546500571015 369.468994 18.4391399999999983 17 463.649508913686986 15.1361843119937998 30.6318629999999992 18.6859129999999993 18 539.598057447990982 11.7857780058788997 45.7838300000000018 17.9317439999999984 1.26391530000000007 0 0.754169459999999958 0.246772770000000002 0.507396700000000034 \N \N 0 \N \N \N NOT_AVAILABLE 151.957589231804008 -62.0236052550428028 23.331509422211699 -12.0601533339573006 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521948679911936 2505521948679911936 1659242199 2015.5 26.0458323064445985 0.283126811060148975 -2.14773604458713985 0.211326293300019008 -0.0481218998930598024 0.310059500590154025 -0.155202150000000011 0.463193803341567012 0.681019945921247039 -2.13552900532646994 0.393060668676114 0.0925616850000000047 0.000934643500000000038 -0.151091900000000001 0.091153449999999997 -0.168375820000000009 0.108330960000000004 0.0681547099999999934 0.0335180049999999966 0.147643300000000005 0.0864262950000000002 161 0 158 3 0.439243879999999975 160.125 0 0 31 false 0.235155370000000002 1.63696305522468011 0.0714521520877755001 -0.016337125000000001 18 10 0.601705099999999993 0 18 false 158 451.218341263147977 1.75957887415470005 256.434998 19.0523990000000012 16 309.694304145418982 14.0743915167597997 22.0040990000000001 19.1240559999999995 15 227.316527482538987 9.01102544233306979 25.2264879999999998 18.8703420000000008 1.19013520000000006 0 0.253713599999999984 0.0716571800000000009 0.182056429999999991 \N \N 0 \N \N \N NOT_AVAILABLE 151.988304271277002 -62.0066251396861006 23.3542603669970994 -12.0591342316232009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521952975341184 2505521952975341184 1582511183 2015.5 26.0459030164947016 0.0577957233020700012 -2.14454992837088998 0.0449808900658918986 1.38114176958645007 0.0646646317623679051 21.3585339999999988 118.910969407856001 0.129079184970167987 -47.6743965326071972 0.0919854087810264009 0.0619318150000000012 0.196114640000000007 -0.0689724099999999979 0.0514341599999999996 -0.184324399999999999 0.0259861000000000016 -0.101611660000000006 0.000617952440000000039 0.15212384000000001 0.153718770000000005 161 0 161 0 -0.640402849999999968 144.326004 0 0 31 true 5.80570460000000033 1.5234234400831701 0.0150598474982159992 -0.0174692380000000015 18 10 0.121718034000000003 0 18 false 159 5387.29569972171976 3.99113007059099001 1349.81995 16.3599400000000017 14 2513.33444631391012 19.6307847111261999 128.030259999999998 16.8507630000000006 11 4227.53908129034971 21.2324314307528006 199.107640000000004 15.6967009999999991 1.25125369999999991 0 1.1540623000000001 0.490823750000000003 0.663238499999999953 \N \N 0 \N \N \N NOT_AVAILABLE 151.985504124946004 -62.003721904951199 23.3555182329297004 -12.0561943086252992 100001 4955.97998 4852 5142.77002 0.105300002 0.00400000019 0.314799994 0.0520000011 0.00190000003 0.167600006 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521987335079424 2505521987335079424 1332234691 2015.5 26.0603690350212993 0.0260790003778655008 -2.1411354871986501 0.0206384185252724006 1.65218396024328995 0.0291814116421358002 56.6176829999999995 17.2433880775786008 0.0563134614982849988 0.184704597241815011 0.0458215722843060003 0.0522450470000000028 0.256213899999999994 0.0375168849999999998 -0.0341869439999999969 -0.194219300000000011 -0.135616779999999992 -0.377163740000000025 -0.0148361194999999998 0.22947569000000001 0.20492262 151 27 149 2 2.83724800000000021 196.893005 0.0425584233555363969 0.408976329071398026 31 true 114.196709999999996 1.61386730505509002 0.00690095619945622039 -0.0499717299999999989 17 9 0.0567263299999999984 0 17 false 144 115941.45847297 55.9653779217303011 2071.65991 13.0277689999999993 15 64860.3323065510995 124.447647247796993 521.185669999999959 13.3214410000000001 16 74875.418613867907 130.089185799035988 575.569899999999961 12.5760719999999999 1.20522679999999993 0 0.745368959999999969 0.293671599999999977 0.451697349999999997 \N \N 0 \N \N \N NOT_AVAILABLE 152.010117001737001 -61.994388943301999 23.3705538064100011 -12.0582984617012006 100001 6223 6045.5 6477.83984 0.0869999975 0.0199999996 0.230100006 0.0427000001 0.00889999978 0.115099996 200111 1.10460500000000006 1.01940270000000011 1.17042109999999999 1.64857180000000003 1.58413270000000006 1.71301100000000006 +1635721458409799680 Gaia DR2 2505522738953900928 2505522738953900928 386217618 2015.5 26.0470636921637002 0.209161328108676992 -2.12743467334786018 0.139733950020652004 0.177221043910309989 0.224967860884218995 0.787761599999999951 7.84560751102695964 0.442377205472879009 -9.76413862158974943 0.254979601448637017 -0.0705772100000000013 0.229024890000000009 -0.152425410000000011 0.115574109999999994 -0.277840640000000028 0.100330143999999996 0.0258799769999999985 0.0459890179999999996 0.154608030000000007 0.0841529000000000027 146 0 145 1 1.50238570000000005 165.927002 0.399688826610546 0.835687751303427984 31 false 0.576745570000000041 1.68434662894760989 0.0462356799858366987 -0.0659153400000000028 17 10 0.392436500000000021 0 17 false 145 923.171201764995999 1.87970509077415993 491.126007 18.2751599999999996 16 527.900409857889031 10.3214816619413998 51.1457979999999992 18.5450079999999993 15 593.360081326071054 8.51849573777879954 69.6555000000000035 17.8286249999999988 1.21457480000000007 0 0.716382999999999992 0.26984786999999999 0.446535100000000018 \N \N 0 \N \N \N NOT_AVAILABLE 151.971969514848013 -61.9877879402868004 23.3630174723745014 -12.0406865984218996 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188642688 2505528683188642688 355850717 2015.5 26.0461514878183991 0.0741484939841449975 -2.11468978934109986 0.0509054067731542978 0.0512771981565615029 0.0741591199278652941 0.691448330000000055 -0.0787831038892272961 0.173355029878562994 -1.35130080158962995 0.103235365986907995 -0.0352955599999999967 0.141671170000000013 -0.208182040000000013 0.113745150000000003 -0.0839633300000000027 0.129846130000000004 0.00274757920000000006 0.0146006399999999998 0.0643323660000000019 0.0161274910000000007 158 0 158 0 0.594399699999999975 162.938995 0 0 31 false 4.0801280000000002 1.47897941827506996 0.0174290272862304002 -0.100660780000000005 18 10 0.160646129999999998 0 18 false 158 4012.14192054428986 4.22439459588960986 949.755005 16.6799259999999983 17 1629.54316520672 15.2262783546291001 107.021770000000004 17.3212240000000008 17 3494.11652746776008 18.8859166991230012 185.011750000000006 15.9035770000000003 1.27703849999999997 0 1.41764739999999989 0.641298299999999988 0.776349069999999974 \N \N 0 \N \N \N NOT_AVAILABLE 151.958492701776009 -61.9766890359442968 23.3669116066517013 -12.0284899594365999 100001 4490.5 4384.5 4995.24023 0.577000022 0.273499995 2.20429993 0.257299989 0.1285 0.917999983 \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188643200 2505528683188643200 1648996611 2015.5 26.0481763148546008 0.77508890604806302 -2.1130280072488099 0.546009907039450959 1.16259838220947009 0.746738016683113015 1.55690259999999991 8.59736935692860982 2.06291904553021999 -26.6061458493913001 1.20210590360607994 -0.000668287039999999996 -0.211762470000000008 -0.414573760000000013 0.121384784999999995 -0.0110216989999999994 0.159771649999999987 -0.199190229999999996 0.191349330000000012 0.0202693359999999989 0.0191323400000000012 140 0 140 0 -0.398191870000000003 127.917999 0 0 31 false 0.0411685970000000012 1.30781323801552007 0.177926804892261009 -0.0861281599999999953 16 10 1.84591499999999997 0 16 false 140 150.337626015667013 1.36687314673209004 109.987 20.2456969999999998 11 63.8604517435231003 8.65300663963352079 7.38014599999999987 20.8383080000000014 11 162.556005003785003 9.71611159403632918 16.730561999999999 19.234413 1.50605319999999998 0 1.60389519999999997 0.592611299999999952 1.01128390000000001 \N \N 0 \N \N \N NOT_AVAILABLE 151.960847972832994 -61.9743160095473016 23.3694582592529017 -12.0276824515203007 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505521708161740416 2505521708161740416 1228284018 2015.5 26.0884105254850986 0.198572768116386994 -2.15611419217507994 0.147937904042916013 1.33065869500375 0.239793471784779 5.54918669999999992 31.0543869177864984 0.451241193191009027 3.19617917342249003 0.251524204800899986 0.130302000000000001 0.0758315299999999942 -0.149386099999999994 0.0971356849999999994 -0.205359039999999993 0.061117005000000002 0.0935873539999999976 0.104447380000000006 0.245047960000000009 0.105636190000000005 150 0 149 1 0.948033600000000032 159.979004 0.269210101979017014 0.311230223502248993 31 false 0.535960439999999982 1.40079116234695999 0.0466569649999808017 0.0384966799999999984 17 9 0.400209870000000023 0 17 false 146 813.864412057331947 2.07078903084206001 393.020996 18.4119850000000014 14 217.297035631914014 12.1694410679713005 17.8559589999999986 19.5087529999999987 12 916.682652021265994 11.2410753698900994 81.5475899999999996 17.3563730000000014 1.39332750000000005 0 2.15237999999999996 1.09676740000000006 1.0556125999999999 \N \N 0 \N \N \N NOT_AVAILABLE 152.077724406877991 -61.995746655291498 23.3916314323325985 -12.0824799053940009 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527789835646080 2505527789835646080 46110733 2015.5 26.0840356816243002 1.13815874049589993 -2.13041913435586983 0.962955623970200958 5.3887720170741904 1.10477710447700006 4.87770100000000006 12.7148426475029002 2.90081822893638996 -13.5129511153527009 2.24798887133117997 0.0504194649999999966 -0.194055470000000008 -0.513052759999999997 0.0207910260000000006 0.0200399310000000004 0.0256346460000000005 -0.580707399999999985 0.307411880000000026 0.0203441209999999997 0.18246003999999999 106 0 104 2 -0.697494399999999959 88.8843002 0 0 31 false 0.027364755000000001 1.14999267719059994 0.275206265717322984 -0.00169008099999999996 13 9 2.67499179999999992 0 13 false 106 111.417967359873998 1.58637770712341997 70.2341995 20.5709780000000002 5 248.654992732696996 125.493830610651997 1.98141199999999995 19.3623939999999983 11 180.151223320668009 11.6145955584443001 15.5107610000000005 19.1228279999999984 3.84862700000000002 0 0.239566799999999996 -1.20858379999999999 1.44815059999999995 \N \N 0 \N \N \N NOT_AVAILABLE 152.045620160195995 -61.9744872947358019 23.397069298176401 -12.0569638119547005 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505527892914658176 2505527892914658176 654887735 2015.5 26.085395942644201 0.372554800901143013 -2.11969506348405989 0.220305962707148001 2.01733392513258014 0.36530427892692402 5.52233839999999976 9.16670998758053912 0.922548131697107032 6.59223748534351994 0.38742585107066102 -0.028969588000000001 -0.0339227949999999986 -0.42654955 0.151784659999999988 -0.0389844250000000031 0.163706330000000011 0.116284676000000003 0.214930890000000013 0.149443130000000007 -0.042647659999999997 133 0 133 0 13.5953455000000005 490.381012 1.64149345947702008 13.8942090986927003 31 false 0.234602270000000002 1.19033629013462994 0.0711658581111511007 -0.0493778439999999971 16 10 0.83114695999999999 0 16 false 133 998.52371199391996 3.76599300316317986 265.141998 18.1899699999999989 14 257.997257459916 14.7689861846859003 17.4688529999999993 19.3223500000000001 11 1231.52942727092 13.6392803857141995 90.2928500000000014 17.0358090000000004 1.49172890000000002 0 2.28654100000000016 1.13237950000000009 1.15416150000000006 \N \N 0 \N \N \N NOT_AVAILABLE 152.038339979229988 -61.9642331082638975 23.4023691438553989 -12.0474775210534002 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505523013832463872 2505523013832463872 1424025286 2015.5 26.0255709890403004 0.777690570487609034 -2.10792315050530998 0.575256235754180945 4.12087267319722983 0.821616308358658953 5.01556829999999998 -17.3065365474917989 1.96677103040726009 -20.9527978990088002 1.09850508656627999 0.109699643999999999 -0.0904823899999999959 -0.157922459999999987 0.10178355 -0.0449132770000000014 0.14695242 0.0146960230000000008 0.0064162443999999999 0.101284490000000005 0.0798050399999999938 138 0 138 0 1.6700851000000001 161.380005 0.188395038577274992 0.00977709582759605025 31 false 0.0356982200000000027 1.10595851222323005 0.219780146754403993 -0.0814527599999999991 16 9 1.7326649999999999 0 16 false 138 128.992750437387002 1.26793898888367007 101.734001 20.4119530000000005 8 37.096194280639601 15.8278864129457997 2.3437237999999998 21.4280639999999991 14 219.399878855991005 8.67649055605988018 25.2867069999999998 18.9088290000000008 1.98845340000000004 0 2.51923560000000002 1.0161114 1.50312420000000002 \N \N 0 \N \N \N NOT_AVAILABLE 151.912788724096004 -61.9794668014918031 23.3498663170631993 -12.0146757838355001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528889347240320 2505528889347240320 1330458035 2015.5 26.0300961637253998 1.90848534100750999 -2.09911636164556992 1.50158631652005004 \N \N \N \N \N \N \N 0.066692814000000003 \N \N \N \N \N \N \N \N \N 63 0 63 0 0.145237370000000005 58.9021988 0 0 3 false 0.0140043500000000005 \N \N -0.0199042400000000001 8 8 5.28563549999999971 0 8 false 64 82.9703565772811942 1.63576898919062996 50.7224998 20.891058000000001 0 \N \N \N \N 0 \N \N \N \N \N 2 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.913383007194994 -61.9695707832521023 23.3574602509560982 -12.0081306475400993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505522807673383936 2505522807673383936 1348069095 2015.5 26.039132050007499 0.239124859251606009 -2.10957042623596003 0.165349264102364002 0.896722809325185 0.237474959686288012 3.77607319999999991 2.81225720054364992 0.585078285392438002 2.17168136073741014 0.301221655169677027 0.0174942689999999998 0.028260594 -0.285072739999999991 0.165071830000000003 -0.0064946976 0.197221260000000009 0.117719229999999994 0.0947899499999999978 0.0990299959999999951 -0.00161692169999999992 146 0 146 0 1.32609430000000006 163.723999 0.327307224528133989 0.402678157516011992 31 false 0.408632160000000022 1.36062124891645997 0.0538392227866092005 -0.0702117599999999981 17 10 0.52205020000000002 0 17 false 147 675.705324053328013 1.62205662173484 416.572998 18.6139720000000004 13 235.468084865679998 13.6379164858433999 17.2656939999999999 19.421558000000001 12 654.02766621140097 5.8048539417467202 112.6691 17.7229290000000006 1.3163959999999999 0 1.69862939999999996 0.807586669999999951 0.891042699999999965 \N \N 0 \N \N \N NOT_AVAILABLE 151.940320843703006 -61.9751024096687004 23.3621481509491993 -12.0211613988865 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528683188645760 2505528683188645760 704906790 2015.5 26.0434204990345002 0.172209552996287013 -2.10583296874072978 0.106865640346981997 0.292460576176835019 0.15671000763895801 1.86625339999999995 2.93442286739947011 0.418350536525819994 -24.7221975890925982 0.201552115800347986 -0.116886320000000002 -0.0372863000000000014 -0.434163999999999994 0.205131869999999994 -0.0300857650000000004 0.262472360000000016 0.028416170000000001 0.163824890000000001 0.0267925900000000015 -0.0608162019999999998 151 0 148 3 0.4299153 149.705994 0 0 31 false 0.964137800000000045 1.53419424676081007 0.0374453224795276984 -0.13526624000000001 17 9 0.381932319999999992 0 17 false 146 1201.12846272651996 2.29682727223118999 522.950989 17.9893910000000012 14 550.470553869565947 7.18465902635444031 76.6174900000000036 18.4995539999999998 14 927.125457973999005 10.4367176818914995 88.833045999999996 17.3440739999999991 1.23017320000000008 0 1.15547939999999993 0.510162349999999987 0.645317099999999977 \N \N 0 \N \N \N NOT_AVAILABLE 151.945111144993007 -61.9698805542562994 23.3676230761583987 -12.0192483558828993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528923706821888 2505528923706821888 831485924 2015.5 26.0453974403719002 0.352938851206510973 -2.08739858819224011 0.242612615721987002 -0.207779613021404991 0.348841122002521986 -0.595628200000000052 1.19478763617459993 0.895936440061622985 -6.21364870776617995 0.440577854764893972 0.018017847 -0.0615455619999999981 -0.304371100000000006 0.15829124 -0.00939189300000000012 0.196149450000000003 0.132169680000000012 0.11099974 0.102742575000000003 -0.0186462919999999983 148 0 148 0 0.6722051 153.970993 0 0 31 false 0.185961619999999994 1.59375546881857999 0.080279133605644995 -0.0748088499999999962 17 10 0.797486959999999967 0 17 false 145 378.898772524391006 1.47672700274887991 256.579987 19.2420580000000001 15 196.016134036072998 10.5712130125259005 18.5424439999999997 19.6206589999999998 17 295.185338487112006 13.1329389585952008 22.4767149999999987 18.5866830000000007 1.29639229999999994 0 1.03397559999999999 0.378601069999999984 0.655374499999999971 \N \N 0 \N \N \N NOT_AVAILABLE 151.931966171527989 -61.952400604182003 23.3763896324429012 -12.0028104397182993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528717548387968 2505528717548387968 207694698 2015.5 26.0548603542522983 0.292250624192428976 -2.09787378038803984 0.188946096025763011 0.52223593225180498 0.282068867743712981 1.85144829999999994 18.4880288672636013 0.727359751635806018 -19.8000191670683989 0.342736607484957989 -0.0266766919999999984 -0.0497143270000000026 -0.328594949999999997 0.171782779999999996 -0.0994657349999999996 0.22195026000000001 0.150083899999999992 0.0979140800000000006 0.059539393000000003 -0.00887805900000000064 158 0 156 2 1.34316419999999992 174.828995 0 0 31 false 0.288563220000000009 1.48488726055068998 0.0644325265717988066 -0.100048079999999998 18 10 0.649945439999999985 0 18 false 157 514.051693296976964 1.59712625364765004 321.859985 18.9108489999999989 14 212.079498491374011 8.69802711250149052 24.3824830000000006 19.5351409999999994 14 477.707648428618995 12.9676892476025003 36.8383030000000034 18.0640140000000002 1.34186340000000004 0 1.47112660000000006 0.62429239999999997 0.846834199999999981 \N \N 0 \N \N \N NOT_AVAILABLE 151.959730248157996 -61.9577633449094023 23.3814765359628005 -12.0160165257667 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528824923013376 2505528824923013376 667648886 2015.5 26.0644190467370009 0.0463405725513063027 -2.09236290581418993 0.0341697577352209972 1.36758395453410997 0.0485809028889210986 28.1506499999999988 2.31635661001875981 0.111449733116337005 -15.8415395828693999 0.0745297723507409027 -0.0115717990000000007 0.129573610000000006 -0.145466569999999989 -0.00582710100000000033 -0.134709309999999999 -0.0390362959999999981 -0.113849839999999994 0.0377132780000000029 0.18120660999999999 0.0037682417000000001 141 0 141 0 -0.692052200000000006 124.274002 0 0 31 false 11.9919709999999995 1.50733594396112003 0.0119812565421516005 -0.0855134060000000001 16 10 0.108022443999999995 0 16 false 141 10430.5777246016005 5.54908707364518961 1879.68994 15.642595 15 4643.38705999660033 28.1585030096393005 164.901780000000002 16.1843010000000014 16 8366.92956339042939 25.176173249898401 332.335239999999999 14.9555039999999995 1.24732460000000001 0 1.22879699999999992 0.541706099999999968 0.687090899999999949 \N \N 0 \N \N \N NOT_AVAILABLE 151.972984261872995 -61.9486650377331998 23.3926261339533994 -12.0143764519719003 100001 4887.66992 4841.06982 5137.75 0.1087 0.0350000001 0.248600006 0.063000001 0.0269000009 0.1338 200111 0.696802900000000003 0.630619170000000007 0.710281199999999946 0.249643880000000012 0.230073080000000013 0.269214699999999973 +1635721458409799680 Gaia DR2 2505529026786039424 2505529026786039424 594551104 2015.5 26.0655457113042992 0.507147733860038974 -2.07950547923205997 0.308241314163761992 0.569611666977701048 0.475431248504018023 1.19809469999999996 9.01437874973341025 1.30909655761895993 -6.95575975016726034 0.537832645323230052 -0.0546041700000000005 -0.183007360000000008 -0.424746659999999998 0.181369570000000008 -0.0324002470000000001 0.23774882 0.176048819999999995 0.194475409999999987 0.0796314800000000045 -0.0708091500000000013 149 0 147 2 0.680811000000000055 153.082993 0.800493564005486991 0.654776853260397029 31 false 0.114516019999999996 1.27951912601677997 0.101631837948628997 -0.134984910000000013 17 9 1.17670319999999995 0 17 false 147 279.989028601039024 1.32242542908611993 211.723999 19.5705129999999983 15 68.0124007756033961 6.89714447751461002 9.86095000000000077 20.7699180000000005 15 322.036852601644 9.74040634560360985 33.0619500000000031 18.4921569999999988 1.39308760000000009 0 2.27776149999999999 1.19940570000000002 1.07835579999999998 \N \N 0 \N \N \N NOT_AVAILABLE 151.963326954704002 -61.9365841434161979 23.3984997927820011 -12.0028190005543003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529129865259776 2505529129865259776 987710764 2015.5 26.0524288316161012 0.568476737611252947 -2.06214609995062981 0.329743550834464993 0.369936236368933025 0.492492113034219026 0.75115160000000003 4.71034320740478041 1.69893826030497008 -2.30915941519818979 0.607237484139593997 -0.123918539999999994 -0.241610569999999997 -0.503276100000000004 0.208835409999999999 0.100374779999999997 0.184945300000000007 0.233486150000000003 0.215841599999999995 0.0913110399999999961 -0.275858969999999981 131 0 131 0 2.86792179999999997 176.395004 1.08459574258478009 1.42154159416892001 31 false 0.114195260000000007 1.60049092555805994 0.103815709036464004 -0.149152819999999992 15 9 1.53135299999999996 0 15 false 130 312.241000109556978 1.58318922725794997 197.223007 19.45214 11 125.913925282202001 12.2265776473168 10.2983790000000006 20.1012039999999992 12 298.714848598211972 9.47335736089070046 31.5320989999999988 18.5737780000000008 1.3599391999999999 0 1.52742580000000006 0.649063100000000004 0.878362659999999962 \N \N 0 \N \N \N NOT_AVAILABLE 151.922265977524006 -61.926588924816997 23.3925083007362993 -11.9818707841260998 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505528756203536896 2505528756203536896 879622560 2015.5 26.0865859710581987 0.0347743028298728996 -2.10351244590350994 0.0264848859318188995 0.598559407850920988 0.037057636474432297 16.15212 6.49506617977384959 0.0818178754091929972 0.676074356279640964 0.059312727536212799 0.0129134880000000007 0.16538137 -0.15037797 -0.0159139070000000014 -0.150869609999999987 -0.0555786269999999985 -0.190565740000000011 0.0483206029999999967 0.176675959999999993 0.0643118839999999997 141 0 139 2 -1.62264319999999995 108.571999 0 0 31 false 24.0226420000000012 1.56178572085098 0.00902770208583015057 -0.0771126699999999943 16 10 0.0834404499999999993 0 16 false 138 20188.6805786984005 7.61462616081225008 2651.30005 14.9255960000000005 15 9946.50726061737078 24.3000919497544992 409.319729999999993 15.3572120000000005 13 14812.8838830980003 21.591173612715 686.062000000000012 14.3353199999999994 1.22639969999999998 0 1.02189160000000001 0.431615829999999978 0.590275760000000038 \N \N 0 \N \N \N NOT_AVAILABLE 152.025711232129993 -61.9491321072817982 23.4095454489739012 -12.0328476582867001 100001 5296.54004 5072.8999 5718.4502 \N \N \N \N \N \N 200111 1.81356260000000002 1.55582630000000011 1.97698989999999997 2.33201029999999987 1.99778570000000011 2.66623469999999996 +1635721458409799680 Gaia DR2 2505540880900538624 2505540880900538624 910501953 2015.5 26.0438362958818992 0.153600541944618002 -2.0561005690139198 0.0852741380916507002 0.269483450671551994 0.128404200147364006 2.09871220000000003 1.30829266101353991 0.39619429880342899 -7.98549455618026016 0.164068677548953989 -0.174893959999999987 -0.13937679 -0.552984950000000031 0.224699110000000007 0.000664540000000000031 0.27786797000000002 -0.00416988499999999991 0.248549760000000008 0.00745063700000000041 -0.137137490000000001 149 0 149 0 0.253310170000000001 147.662994 0 0 31 false 1.50214000000000003 1.64704557069044011 0.0288424557035706006 -0.13633321000000001 17 9 0.367514600000000025 0 17 false 148 1741.42574471310991 2.62760248275364994 662.742981 17.5861030000000014 16 1049.15712968673006 17.2960206615952998 60.6588750000000019 17.7992859999999986 16 1155.08878328805008 9.67185018588602041 119.427899999999994 17.1053810000000013 1.26577080000000008 0 0.693904900000000047 0.213182449999999996 0.480722429999999978 \N \N 0 \N \N \N NOT_AVAILABLE 151.900262841820989 -61.9248401453669004 23.3865946983531998 -11.9731060703570993 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505540885191179520 2505540885191179520 1240499226 2015.5 26.0458589688854012 5.6521311654017703 -2.05363809357809002 3.80194917039127001 \N \N \N \N \N \N \N -0.285825759999999984 \N \N \N \N \N \N \N \N \N 42 0 42 0 63.6506350000000012 7703.12012 17.5819312115253013 837.884592766743026 3 false 0.00318273089999999981 \N \N -0.143008009999999991 10 9 8.89048599999999922 0 17 false 150 1298.07301261849011 17.5117695350020988 74.1257019 17.9051170000000006 0 \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N \N \N 0 \N \N \N NOT_AVAILABLE 151.90188084972101 -61.9217466331783015 23.389437808694499 -11.9715522728173003 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +1635721458409799680 Gaia DR2 2505529507822383616 2505529507822383616 114779796 2015.5 26.0715228258223988 0.553733485835084971 -2.05455357344400014 0.354406137015531975 0.439763739112685015 0.537599816650301987 0.818013199999999996 5.85715783699899006 1.46722535539880994 -1.78520665664453992 0.640778285374405954 -0.00228697299999999987 -0.189237249999999996 -0.372507240000000017 0.153017280000000006 -0.0614562199999999989 0.191348839999999992 0.170323059999999998 0.153403600000000001 0.0865527900000000044 -0.0552085800000000002 160 0 160 0 1.66764099999999993 185.501999 0 0 31 false 0.0794808699999999951 1.68852582099762993 0.118259273564339004 -0.0950903800000000021 18 10 1.30945350000000005 0 18 false 160 222.900904549029008 1.37999741294485001 161.522995 19.8180869999999985 17 118.567869230772004 8.39091460350423013 14.1305060000000005 20.1664710000000014 17 150.610682808034994 9.36738722316263939 16.0781959999999984 19.3172800000000002 1.20761539999999989 0 0.849191669999999954 0.348384860000000018 0.500806799999999996 \N \N 0 \N \N \N NOT_AVAILABLE 151.951863792289004 -61.9115008711154005 23.4135021688631006 -11.9817732729715001 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N +\. + + +-- +-- Name: gaia_dr2_ra_dec; Type: INDEX; Schema: gaia; Owner: postgres +-- + +CREATE INDEX gaia_dr2_ra_dec ON gaia.gaia_dr2 USING btree (public.q3c_ang2ipix(ra, "dec")); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/database_subset/galaxy_cluster_sample.zip b/database_subset/galaxy_cluster_sample.zip new file mode 100644 index 000000000..75ecbc92c Binary files /dev/null and b/database_subset/galaxy_cluster_sample.zip differ diff --git a/database_subset/y3a2_coadd_sample.sql.zip b/database_subset/y3a2_coadd_sample.sql.zip new file mode 100644 index 000000000..bff6c4043 Binary files /dev/null and b/database_subset/y3a2_coadd_sample.sql.zip differ diff --git a/docker-compose-development.yml b/docker-compose-development.yml index 9bc8a7f05..e787c35ae 100644 --- a/docker-compose-development.yml +++ b/docker-compose-development.yml @@ -1,11 +1,24 @@ version: '2' services: + database: + image: linea/postgresql_q3c:latest + environment: + - POSTGRES_PASSWORD=postgres + - POSTGRES_DB=postgres + expose: + # Deixa a porta do banco de dados acessivel para ferramentas externas como o dbeaver por exemplo. + - 5432 + volumes: + - ./pg_data:/var/lib/postgresql/data + - ./pg_backups:/pg_backups + # databse_subset é util para colocar arquivos a serem importados dentro do banco de dados. + - ./database_subset:/data + backend: build: ./api command: ./entrypoint.sh environment: - - NCSA=true - CELERY_BROKER=amqp://dri:adminadmin@rabbit:5672 volumes: - ./api:/app @@ -14,6 +27,7 @@ services: - ./log/backend:/log depends_on: - rabbit + - database rabbit: image: rabbitmq:3-management @@ -21,10 +35,8 @@ services: environment: - RABBITMQ_DEFAULT_USER=dri - RABBITMQ_DEFAULT_PASS=adminadmin - ports: - - "5672:5672" - - "15672:15672" + # Servidor de imagens PTIFFs # iipserver: # image: linea/iipserver:latest # environment: @@ -40,20 +52,6 @@ services: # - ./log/iipserver:/log # - ./archive/images:/images - - # Wordpress -# mysql: -# image: linea/dri_landing_page:MYSQLcef65a533dc17a5d7fcd901b52849cd4fdd7f040 -# env_file: -# - .env - -# wordpress: -# image: linea/dri_landing_page:WPcef65a533dc17a5d7fcd901b52849cd4fdd7f040 -# env_file: -# - .env -# depends_on: -# - mysql - # Frontend apps ExtJS with Sencha CMD app Watch # OBS: o container sky deve estar ligado para que os demais apps funcionem. # ele é responsavel por servir os diretórios de package e outras dependencias. @@ -110,5 +108,5 @@ services: depends_on: - backend # - iipserver - - rabbit -# - wordpress + - sky + diff --git a/env_template b/env_template deleted file mode 100644 index 0e5e9ae23..000000000 --- a/env_template +++ /dev/null @@ -1,9 +0,0 @@ -MYSQL_DATABASE=dri -MYSQL_USER=wordpress -MYSQL_PASSWORD=pwd -MYSQL_RANDOM_ROOT_PASSWORD='1' - -WORDPRESS_DB_HOST=mysql -WORDPRESS_DB_USER=wordpress -WORDPRESS_DB_PASSWORD=pwd -WORDPRESS_DB_NAME=dri diff --git a/frontend/explorer/.gitignore b/frontend/explorer/.gitignore new file mode 100644 index 000000000..78efbd1f6 --- /dev/null +++ b/frontend/explorer/.gitignore @@ -0,0 +1 @@ +bootstrap.jsonp diff --git a/frontend/explorer/app/view/coadd/Aladin.js b/frontend/explorer/app/view/coadd/Aladin.js index eb0d6abb1..c2cfaeabe 100644 --- a/frontend/explorer/app/view/coadd/Aladin.js +++ b/frontend/explorer/app/view/coadd/Aladin.js @@ -48,8 +48,6 @@ Ext.define('Explorer.view.coadd.Aladin', { ) ]); - console.log(object) - aladin.addCatalog(catalog); } diff --git a/frontend/explorer/app/view/coadd/Coadd.js b/frontend/explorer/app/view/coadd/Coadd.js index 53125db84..eeabeb779 100644 --- a/frontend/explorer/app/view/coadd/Coadd.js +++ b/frontend/explorer/app/view/coadd/Coadd.js @@ -10,7 +10,8 @@ Ext.define('Explorer.view.coadd.Coadd', { 'Explorer.view.coadd.Properties', 'Explorer.view.coadd.Visiomatic', 'Explorer.view.coadd.Aladin', - 'Explorer.view.coadd.SpectralDistribution' + 'Explorer.view.coadd.SpectralDistribution', + 'Ext.window.MessageBox' ], controller: 'coadd', diff --git a/frontend/explorer/app/view/coadd/CoaddController.js b/frontend/explorer/app/view/coadd/CoaddController.js index 5a32dd195..d6e7d4f24 100644 --- a/frontend/explorer/app/view/coadd/CoaddController.js +++ b/frontend/explorer/app/view/coadd/CoaddController.js @@ -128,16 +128,25 @@ Ext.define('Explorer.view.coadd.CoaddController', { objects.load({ callback: function () { - if (this.count() === 1) { + if (this.count() > 0) { me.onLoadObject(this.first()); view.setLoading(false); + } else { + console.log("Não encontrou nenhum resultado.") + view.setLoading(false); + Ext.MessageBox.show({ + msg: 'Sorry No objects found.', + buttons: Ext.MessageBox.OK, + icon: Ext.MessageBox.WARNING + }); } } }); }, onLoadObject: function (object) { + // console.log("onLoadObject()", object) var me = this, vm = me.getViewModel(), grid = me.lookupReference('properties-grid'), @@ -390,7 +399,7 @@ Ext.define('Explorer.view.coadd.CoaddController', { }, onClickSimbad: function () { - console.log('onClickSimbad()'); + // console.log('onClickSimbad()'); // Criar uma URL para o Servico SIMBAD var me = this, vm = me.getViewModel(), @@ -409,7 +418,7 @@ Ext.define('Explorer.view.coadd.CoaddController', { }, onClickNed: function () { - console.log('onClickNed') + // console.log('onClickNed') // Criar uma URL para o Servico NED var me = this, vm = me.getViewModel(), @@ -427,7 +436,7 @@ Ext.define('Explorer.view.coadd.CoaddController', { }, onClickVizier: function () { - console.log('onClickVizier') + // console.log('onClickVizier') // Criar uma URL para o Servico VizierCDS var me = this, vm = me.getViewModel(), @@ -444,6 +453,7 @@ Ext.define('Explorer.view.coadd.CoaddController', { loadSpectralDistribution: function () { + // console.log("loadSpectralDistribution()") var me = this, vm = me.getViewModel(), object = vm.get('object_data'), diff --git a/frontend/explorer/bootstrap.jsonp b/frontend/explorer/bootstrap.jsonp deleted file mode 100644 index 4a0f929ca..000000000 --- a/frontend/explorer/bootstrap.jsonp +++ /dev/null @@ -1 +0,0 @@ -Ext.Microloader.setManifest({"paths":{"Explorer":"app","Explorer.view.system.cmd.CmdBase":"app/view/system/cmd/Cmd.js","Ext":"../ext/classic/classic/src","Ext.AbstractManager":"../ext/packages/core/src/AbstractManager.js","Ext.Ajax":"../ext/packages/core/src/Ajax.js","Ext.AnimationQueue":"../ext/packages/core/src/AnimationQueue.js","Ext.Array":"../ext/packages/core/src/lang/Array.js","Ext.Assert":"../ext/packages/core/src/lang/Assert.js","Ext.Base":"../ext/packages/core/src/class/Base.js","Ext.Boot":".sencha/app/Boot.js","Ext.Class":"../ext/packages/core/src/class/Class.js","Ext.ClassManager":"../ext/packages/core/src/class/ClassManager.js","Ext.ComponentManager":"../ext/packages/core/src/ComponentManager.js","Ext.ComponentQuery":"../ext/packages/core/src/ComponentQuery.js","Ext.Config":"../ext/packages/core/src/class/Config.js","Ext.Configurator":"../ext/packages/core/src/class/Configurator.js","Ext.Date":"../ext/packages/core/src/lang/Date.js","Ext.Deferred":"../ext/packages/core/src/Deferred.js","Ext.Error":"../ext/packages/core/src/lang/Error.js","Ext.Evented":"../ext/packages/core/src/Evented.js","Ext.Factory":"../ext/packages/core/src/mixin/Factoryable.js","Ext.Function":"../ext/packages/core/src/lang/Function.js","Ext.GlobalEvents":"../ext/packages/core/src/GlobalEvents.js","Ext.Inventory":"../ext/packages/core/src/class/Inventory.js","Ext.JSON":"../ext/packages/core/src/JSON.js","Ext.Loader":"../ext/packages/core/src/class/Loader.js","Ext.Mixin":"../ext/packages/core/src/class/Mixin.js","Ext.Msg":"../ext/classic/classic/src/window/MessageBox.js","Ext.Number":"../ext/packages/core/src/lang/Number.js","Ext.Object":"../ext/packages/core/src/lang/Object.js","Ext.Progress":"../ext/packages/core/src/Progress.js","Ext.ProgressBase":"../ext/packages/core/src/ProgressBase.js","Ext.Promise":"../ext/packages/core/src/Promise.js","Ext.Script":"../ext/packages/core/src/class/Inventory.js","Ext.String":"../ext/packages/core/src/lang/String.js","Ext.String.format":"../ext/packages/core/src/Template.js","Ext.TaskQueue":"../ext/packages/core/src/TaskQueue.js","Ext.Template":"../ext/packages/core/src/Template.js","Ext.Util":"../ext/packages/core/src/Util.js","Ext.Version":"../ext/packages/core/src/util/Version.js","Ext.Widget":"../ext/packages/core/src/Widget.js","Ext.XTemplate":"../ext/packages/core/src/XTemplate.js","Ext.app":"../ext/packages/core/src/app","Ext.browser":"../ext/packages/core/src/env/Browser.js","Ext.chart":"../ext/packages/charts/src/chart","Ext.chart.LegendBase":"../ext/packages/charts/classic/src/chart/LegendBase.js","Ext.chart.TipSurface":"../ext/packages/charts/classic/src/chart/TipSurface.js","Ext.chart.interactions.ItemInfo":"../ext/packages/charts/classic/src/chart/interactions/ItemInfo.js","Ext.chart.overrides":"../ext/packages/charts/classic/overrides","Ext.class":"../ext/packages/core/src/class","Ext.data":"../ext/packages/core/src/data","Ext.direct":"../ext/packages/core/src/direct","Ext.dom":"../ext/packages/core/src/dom","Ext.dom.ButtonElement":"../ext/classic/classic/src/dom/ButtonElement.js","Ext.dom.Layer":"../ext/classic/classic/src/dom/Layer.js","Ext.draw":"../ext/packages/charts/src/draw","Ext.draw.ContainerBase":"../ext/packages/charts/classic/src/draw/ContainerBase.js","Ext.draw.SurfaceBase":"../ext/packages/charts/classic/src/draw/SurfaceBase.js","Ext.draw.engine.SvgContext.Gradient":"../ext/packages/charts/src/draw/engine/SvgContext.js","Ext.env":"../ext/packages/core/src/env","Ext.event":"../ext/packages/core/src/event","Ext.event.publisher.MouseEnterLeave":"../ext/classic/classic/src/event/publisher/MouseEnterLeave.js","Ext.feature":"../ext/packages/core/src/env/Feature.js","Ext.fx.Animation":"../ext/packages/core/src/fx/Animation.js","Ext.fx.Runner":"../ext/packages/core/src/fx/Runner.js","Ext.fx.State":"../ext/packages/core/src/fx/State.js","Ext.fx.animation":"../ext/packages/core/src/fx/animation","Ext.fx.easing":"../ext/packages/core/src/fx/easing","Ext.fx.layout":"../ext/packages/core/src/fx/layout","Ext.fx.runner":"../ext/packages/core/src/fx/runner","Ext.lang":"../ext/packages/core/src/lang","Ext.list":"../ext/packages/core/src/list","Ext.mixin":"../ext/packages/core/src/mixin","Ext.os":"../ext/packages/core/src/env/OS.js","Ext.overrides":"../ext/classic/classic/overrides","Ext.overrides.list.TreeItem":"../ext/classic/classic/overrides/list/Item.js","Ext.overrides.util.Positionable":"../ext/classic/classic/overrides/Positionable.js","Ext.perf":"../ext/packages/core/src/perf","Ext.plugin.Abstract":"../ext/packages/core/src/plugin/Abstract.js","Ext.plugin.LazyItems":"../ext/packages/core/src/plugin/LazyItems.js","Ext.promise":"../ext/packages/core/src/promise","Ext.scroll":"../ext/packages/core/src/scroll","Ext.supports":"../ext/packages/core/src/env/Feature.js","Ext.theme.crisp":"../ext/classic/theme-crisp/overrides","Ext.theme.neptune":"../ext/classic/theme-neptune/overrides","Ext.util":"../ext/packages/core/src/util","Ext.util.Animate":"../ext/classic/classic/src/util/Animate.js","Ext.util.CSS":"../ext/classic/classic/src/util/CSS.js","Ext.util.ClickRepeater":"../ext/classic/classic/src/util/ClickRepeater.js","Ext.util.ComponentDragger":"../ext/classic/classic/src/util/ComponentDragger.js","Ext.util.Cookies":"../ext/classic/classic/src/util/Cookies.js","Ext.util.ElementContainer":"../ext/classic/classic/src/util/ElementContainer.js","Ext.util.Floating":"../ext/classic/classic/src/util/Floating.js","Ext.util.FocusTrap":"../ext/classic/classic/src/util/FocusTrap.js","Ext.util.Focusable":"../ext/classic/classic/src/util/Focusable.js","Ext.util.FocusableContainer":"../ext/classic/classic/src/util/FocusableContainer.js","Ext.util.Format.format":"../ext/packages/core/src/Template.js","Ext.util.KeyMap":"../ext/classic/classic/src/util/KeyMap.js","Ext.util.KeyNav":"../ext/classic/classic/src/util/KeyNav.js","Ext.util.KeyboardInteractive":"../ext/classic/classic/src/util/KeyboardInteractive.js","Ext.util.Memento":"../ext/classic/classic/src/util/Memento.js","Ext.util.ProtoElement":"../ext/classic/classic/src/util/ProtoElement.js","Ext.util.Queue":"../ext/classic/classic/src/util/Queue.js","Ext.util.Renderable":"../ext/classic/classic/src/util/Renderable.js","Ext.util.StoreHolder":"../ext/classic/classic/src/util/StoreHolder.js","Ext.ux.BoxReorderer":"../ext/packages/ux/classic/src/BoxReorderer.js","Ext.ux.CellDragDrop":"../ext/packages/ux/classic/src/CellDragDrop.js","Ext.ux.DataTip":"../ext/packages/ux/classic/src/DataTip.js","Ext.ux.DataView.Animated":"../ext/packages/ux/classic/src/DataView/Animated.js","Ext.ux.DataView.DragSelector":"../ext/packages/ux/classic/src/DataView/DragSelector.js","Ext.ux.DataView.Draggable":"../ext/packages/ux/classic/src/DataView/Draggable.js","Ext.ux.DataView.LabelEditor":"../ext/packages/ux/classic/src/DataView/LabelEditor.js","Ext.ux.Explorer":"../ext/packages/ux/classic/src/Explorer.js","Ext.ux.FieldReplicator":"../ext/packages/ux/classic/src/FieldReplicator.js","Ext.ux.GMapPanel":"../ext/packages/ux/classic/src/GMapPanel.js","Ext.ux.GroupTabPanel":"../ext/packages/ux/classic/src/GroupTabPanel.js","Ext.ux.GroupTabRenderer":"../ext/packages/ux/classic/src/GroupTabRenderer.js","Ext.ux.IFrame":"../ext/packages/ux/classic/src/IFrame.js","Ext.ux.LiveSearchGridPanel":"../ext/packages/ux/classic/src/LiveSearchGridPanel.js","Ext.ux.PreviewPlugin":"../ext/packages/ux/classic/src/PreviewPlugin.js","Ext.ux.ProgressBarPager":"../ext/packages/ux/classic/src/ProgressBarPager.js","Ext.ux.RowExpander":"../ext/packages/ux/classic/src/RowExpander.js","Ext.ux.SlidingPager":"../ext/packages/ux/classic/src/SlidingPager.js","Ext.ux.Spotlight":"../ext/packages/ux/classic/src/Spotlight.js","Ext.ux.TabCloseMenu":"../ext/packages/ux/classic/src/TabCloseMenu.js","Ext.ux.TabReorderer":"../ext/packages/ux/classic/src/TabReorderer.js","Ext.ux.TabScrollerMenu":"../ext/packages/ux/classic/src/TabScrollerMenu.js","Ext.ux.ToolbarDroppable":"../ext/packages/ux/classic/src/ToolbarDroppable.js","Ext.ux.TreePicker":"../ext/packages/ux/classic/src/TreePicker.js","Ext.ux.ajax.DataSimlet":"../ext/packages/ux/src/ajax/DataSimlet.js","Ext.ux.ajax.JsonSimlet":"../ext/packages/ux/src/ajax/JsonSimlet.js","Ext.ux.ajax.SimManager":"../ext/packages/ux/src/ajax/SimManager.js","Ext.ux.ajax.SimXhr":"../ext/packages/ux/src/ajax/SimXhr.js","Ext.ux.ajax.Simlet":"../ext/packages/ux/src/ajax/Simlet.js","Ext.ux.ajax.XmlSimlet":"../ext/packages/ux/src/ajax/XmlSimlet.js","Ext.ux.colorpick.Button":"../ext/packages/ux/classic/src/colorpick/Button.js","Ext.ux.colorpick.ButtonController":"../ext/packages/ux/classic/src/colorpick/ButtonController.js","Ext.ux.colorpick.ColorMap":"../ext/packages/ux/classic/src/colorpick/ColorMap.js","Ext.ux.colorpick.ColorMapController":"../ext/packages/ux/classic/src/colorpick/ColorMapController.js","Ext.ux.colorpick.ColorPreview":"../ext/packages/ux/classic/src/colorpick/ColorPreview.js","Ext.ux.colorpick.ColorUtils":"../ext/packages/ux/classic/src/colorpick/ColorUtils.js","Ext.ux.colorpick.Field":"../ext/packages/ux/classic/src/colorpick/Field.js","Ext.ux.colorpick.Selection":"../ext/packages/ux/classic/src/colorpick/Selection.js","Ext.ux.colorpick.Selector":"../ext/packages/ux/classic/src/colorpick/Selector.js","Ext.ux.colorpick.SelectorController":"../ext/packages/ux/classic/src/colorpick/SelectorController.js","Ext.ux.colorpick.SelectorModel":"../ext/packages/ux/classic/src/colorpick/SelectorModel.js","Ext.ux.colorpick.Slider":"../ext/packages/ux/classic/src/colorpick/Slider.js","Ext.ux.colorpick.SliderAlpha":"../ext/packages/ux/classic/src/colorpick/SliderAlpha.js","Ext.ux.colorpick.SliderController":"../ext/packages/ux/classic/src/colorpick/SliderController.js","Ext.ux.colorpick.SliderHue":"../ext/packages/ux/classic/src/colorpick/SliderHue.js","Ext.ux.colorpick.SliderSaturation":"../ext/packages/ux/classic/src/colorpick/SliderSaturation.js","Ext.ux.colorpick.SliderValue":"../ext/packages/ux/classic/src/colorpick/SliderValue.js","Ext.ux.dashboard.GoogleRssPart":"../ext/packages/ux/classic/src/dashboard/GoogleRssPart.js","Ext.ux.dashboard.GoogleRssView":"../ext/packages/ux/classic/src/dashboard/GoogleRssView.js","Ext.ux.data.PagingMemoryProxy":"../ext/packages/ux/classic/src/data/PagingMemoryProxy.js","Ext.ux.dd.CellFieldDropZone":"../ext/packages/ux/classic/src/dd/CellFieldDropZone.js","Ext.ux.dd.PanelFieldDragZone":"../ext/packages/ux/classic/src/dd/PanelFieldDragZone.js","Ext.ux.desktop.App":"../ext/packages/ux/classic/src/desktop/App.js","Ext.ux.desktop.Desktop":"../ext/packages/ux/classic/src/desktop/Desktop.js","Ext.ux.desktop.Module":"../ext/packages/ux/classic/src/desktop/Module.js","Ext.ux.desktop.ShortcutModel":"../ext/packages/ux/classic/src/desktop/ShortcutModel.js","Ext.ux.desktop.StartMenu":"../ext/packages/ux/classic/src/desktop/StartMenu.js","Ext.ux.desktop.TaskBar":"../ext/packages/ux/classic/src/desktop/TaskBar.js","Ext.ux.desktop.TrayClock":"../ext/packages/ux/classic/src/desktop/TaskBar.js","Ext.ux.desktop.Video":"../ext/packages/ux/classic/src/desktop/Video.js","Ext.ux.desktop.Wallpaper":"../ext/packages/ux/classic/src/desktop/Wallpaper.js","Ext.ux.event.Driver":"../ext/packages/ux/src/event/Driver.js","Ext.ux.event.Maker":"../ext/packages/ux/src/event/Maker.js","Ext.ux.event.Player":"../ext/packages/ux/src/event/Player.js","Ext.ux.event.Recorder":"../ext/packages/ux/src/event/Recorder.js","Ext.ux.event.RecorderManager":"../ext/packages/ux/classic/src/event/RecorderManager.js","Ext.ux.form.ItemSelector":"../ext/packages/ux/classic/src/form/ItemSelector.js","Ext.ux.form.MultiSelect":"../ext/packages/ux/classic/src/form/MultiSelect.js","Ext.ux.form.SearchField":"../ext/packages/ux/classic/src/form/SearchField.js","Ext.ux.google.Api":"../ext/packages/ux/src/google/Api.js","Ext.ux.google.Feeds":"../ext/packages/ux/src/google/Feeds.js","Ext.ux.grid.SubTable":"../ext/packages/ux/classic/src/grid/SubTable.js","Ext.ux.grid.TransformGrid":"../ext/packages/ux/classic/src/grid/TransformGrid.js","Ext.ux.layout.ResponsiveColumn":"../ext/packages/ux/classic/src/layout/ResponsiveColumn.js","Ext.ux.rating.Picker":"../ext/packages/ux/classic/src/rating/Picker.js","Ext.ux.statusbar.StatusBar":"../ext/packages/ux/classic/src/statusbar/StatusBar.js","Ext.ux.statusbar.ValidationStatus":"../ext/packages/ux/classic/src/statusbar/ValidationStatus.js","aladin.Aladin":"../packages/local/aladin/src/Aladin.js","aladin.Events":"../packages/local/aladin/src/Events.js","aladin.Interfaces":"../packages/local/aladin/src/Interface.js","aladin.maps.MapSelectionController":"../packages/local/aladin/src/maps/MapSelectionController.js","aladin.maps.MapSelectionViewModel":"../packages/local/aladin/src/maps/MapSelectionViewModel.js","aladin.maps.MapSelectionWindow":"../packages/local/aladin/src/maps/MapSelectionWindow.js","aladin.model.Image":"../packages/local/aladin/src/model/Image.js","aladin.store.Images":"../packages/local/aladin/src/store/Images.js","common":"../packages/local/visiomatic/src","common.BandFilter":"../packages/local/common/src/BandFilter.js","common.SearchField":"../packages/local/common/src/SearchField.js","common.ToolbarController":"../packages/local/common/src/header/ToolbarController.js","common.contact.Contact":"../packages/local/common/src/contact/Contact.js","common.contact.ContactController":"../packages/local/common/src/contact/ContactController.js","common.data.Settings":"../packages/local/common/src/data/Settings.js","common.data.proxy.CrsfToken":"../packages/local/common/src/data/proxy/CrsfToken.js","common.data.proxy.Django":"../packages/local/common/src/data/proxy/Django.js","common.footer.Footer":"../packages/local/common/src/footer/Footer.js","common.footer.FooterController":"../packages/local/common/src/footer/FooterController.js","common.header.Toolbar":"../packages/local/common/src/header/Toolbar.js","common.help.Tutorials":"../packages/local/common/src/help/Tutorials.js","common.help.TutorialsController":"../packages/local/common/src/help/TutorialsController.js","common.link.LinkPrompt":"../packages/local/common/src/link/LinkPrompt.js","common.model.CommentObject":"../packages/local/common/src/model/CommentObject.js","common.model.CommentPosition":"../packages/local/common/src/model/CommentPosition.js","common.model.Dataset":"../packages/local/common/src/model/Dataset.js","common.model.Filter":"../packages/local/common/src/model/Filter.js","common.model.Footprint":"../packages/local/common/src/model/Footprint.js","common.model.Map":"../packages/local/common/src/model/Map.js","common.model.Release":"../packages/local/common/src/model/Release.js","common.model.Survey":"../packages/local/common/src/model/Survey.js","common.model.Tag":"../packages/local/common/src/model/Tag.js","common.model.Tile":"../packages/local/common/src/model/Tile.js","common.statistics.Events":"../packages/local/common/src/statistics/Events.js","common.store.CSVDelimiters":"../packages/local/common/src/store/CSVDelimiters.js","common.store.CommentsObjects":"../packages/local/common/src/store/CommentsObjects.js","common.store.CommentsPosition":"../packages/local/common/src/store/CommentsPosition.js","common.store.Datasets":"../packages/local/common/src/store/Datasets.js","common.store.Fields":"../packages/local/common/src/store/Fields.js","common.store.Filters":"../packages/local/common/src/store/Filters.js","common.store.Footprints":"../packages/local/common/src/store/Footprints.js","common.store.Maps":"../packages/local/common/src/store/Maps.js","common.store.MyStore":"../packages/local/common/src/store/MyStore.js","common.store.MyTreeStore":"../packages/local/common/src/store/MyTreeStore.js","common.store.Releases":"../packages/local/common/src/store/Releases.js","common.store.Surveys":"../packages/local/common/src/store/Surveys.js","common.store.Tags":"../packages/local/common/src/store/Tags.js","common.store.Tiles":"../packages/local/common/src/store/Tiles.js","common.store.Tutorials":"../packages/local/common/src/store/Tutorials.js","common.store.UsersSameGroup":"../packages/local/common/src/store/UsersSameGroup.js","common.token.GetToken":"../packages/local/common/src/token/GetToken.js","visiomatic.Comments":"../packages/local/visiomatic/src/Comments.js","visiomatic.Interface":"../packages/local/visiomatic/src/Interface.js","visiomatic.Visiomatic":"../packages/local/visiomatic/src/Visiomatic.js","visiomatic.VisiomaticController":"../packages/local/visiomatic/src/VisiomaticController.js","visiomatic.VisiomaticModel":"../packages/local/visiomatic/src/VisiomaticModel.js","visiomatic.catalog.CatalogController":"../packages/local/visiomatic/src/catalog/CatalogController.js","visiomatic.catalog.CatalogOverlayWindow":"../packages/local/visiomatic/src/catalog/CatalogOverlayWindow.js","visiomatic.catalog.CatalogViewModel":"../packages/local/visiomatic/src/catalog/CatalogViewModel.js","visiomatic.catalog.Catalogs":"../packages/local/visiomatic/src/catalog/Catalogs.js","visiomatic.catalog.OverlayGrid":"../packages/local/visiomatic/src/catalog/OverlaysGrid.js","visiomatic.catalog.Submit":"../packages/local/visiomatic/src/catalog/Submit.js","visiomatic.comment.CommentsPosition":"../packages/local/visiomatic/src/comment/CommentsPosition.js","visiomatic.comment.CommentsPositionController":"../packages/local/visiomatic/src/comment/CommentsPositionController.js","visiomatic.comment.CommentsPositionModel":"../packages/local/visiomatic/src/comment/CommentsPositionModel.js","visiomatic.crop.CropWindow":"../packages/local/visiomatic/src/crop/CropWindow.js","visiomatic.download.DescutDownloadWindow":"../packages/local/visiomatic/src/download/DescutDownloadWindow.js","visiomatic.download.FitsController":"../packages/local/visiomatic/src/download/FitsController.js","visiomatic.download.FitsModel":"../packages/local/visiomatic/src/download/FitsModel.js","visiomatic.filter.FiltersController":"../packages/local/visiomatic/src/filter/FiltersController.js","visiomatic.filter.FiltersModel":"../packages/local/visiomatic/src/filter/FiltersModel.js","visiomatic.filter.FiltersWindow":"../packages/local/visiomatic/src/filter/FiltersWindow.js","visiomatic.model.CatalogContent":"../packages/local/visiomatic/src/model/CatalogContent.js","visiomatic.model.CatalogTree":"../packages/local/visiomatic/src/model/CatalogTree.js","visiomatic.model.FilterCondition":"../packages/local/visiomatic/src/model/FilterCondition.js","visiomatic.model.FitsFiles":"../packages/local/visiomatic/src/model/FitsFiles.js","visiomatic.model.Object":"../packages/local/visiomatic/src/model/Object.js","visiomatic.model.Overlay":"../packages/local/visiomatic/src/model/Overlay.js","visiomatic.store.CatalogsTree":"../packages/local/visiomatic/src/store/CatalogsTree.js","visiomatic.store.ExternalObjects":"../packages/local/visiomatic/src/store/ExternalObjects.js","visiomatic.store.FilterConditions":"../packages/local/visiomatic/src/store/FilterConditions.js","visiomatic.store.FitsFiles":"../packages/local/visiomatic/src/store/FitsFiles.js","visiomatic.store.Objects":"../packages/local/visiomatic/src/store/Objects.js","visiomatic.store.Overlays":"../packages/local/visiomatic/src/store/Overlays.js","visiomatic.store.ProductDisplayContents":"../packages/local/visiomatic/src/store/ProductDisplayContents.js"},"loadOrder":[{"path":"../ext/classic/theme-neptune/overrides/Component.js","requires":[],"uses":[],"idx":0},{"path":"../ext/classic/theme-crisp/overrides/Component.js","requires":[],"uses":[],"idx":1},{"path":"../ext/classic/theme-neptune/overrides/resizer/Splitter.js","requires":[],"uses":[],"idx":2},{"path":"../ext/classic/theme-neptune/overrides/toolbar/Toolbar.js","requires":[],"uses":[],"idx":3},{"path":"../ext/classic/theme-neptune/overrides/layout/component/Dock.js","requires":[],"uses":[],"idx":4},{"path":"../ext/classic/theme-neptune/overrides/panel/Panel.js","requires":[],"uses":[],"idx":5},{"path":"../ext/classic/theme-neptune/overrides/container/ButtonGroup.js","requires":[],"uses":[],"idx":6},{"path":"../ext/classic/theme-neptune/overrides/toolbar/Paging.js","requires":[],"uses":[],"idx":7},{"path":"../ext/classic/theme-neptune/overrides/picker/Month.js","requires":[],"uses":[],"idx":8},{"path":"../ext/classic/theme-neptune/overrides/form/field/HtmlEditor.js","requires":[],"uses":[],"idx":9},{"path":"../ext/classic/theme-neptune/overrides/panel/Table.js","requires":[],"uses":[],"idx":10},{"path":"../ext/classic/theme-crisp/overrides/view/Table.js","requires":[],"uses":[],"idx":11},{"path":"../ext/classic/theme-neptune/overrides/grid/RowEditor.js","requires":[],"uses":[],"idx":12},{"path":"../ext/classic/theme-neptune/overrides/grid/column/RowNumberer.js","requires":[],"uses":[],"idx":13},{"path":"../ext/classic/theme-neptune/overrides/menu/Separator.js","requires":[],"uses":[],"idx":14},{"path":"../ext/classic/theme-neptune/overrides/menu/Menu.js","requires":[],"uses":[],"idx":15},{"path":"../ext/packages/ux/src/ajax/Simlet.js","requires":[],"uses":[19],"idx":16},{"path":"../ext/packages/ux/src/ajax/DataSimlet.js","requires":[16],"uses":[],"idx":17},{"path":"../ext/packages/ux/src/ajax/JsonSimlet.js","requires":[17],"uses":[],"idx":18},{"path":"../ext/packages/ux/src/ajax/SimXhr.js","requires":[],"uses":[],"idx":19},{"path":"../ext/packages/ux/src/ajax/SimManager.js","requires":[16,18,19],"uses":[],"idx":20},{"path":"../ext/packages/ux/src/ajax/XmlSimlet.js","requires":[17],"uses":[],"idx":21},{"path":"../ext/packages/ux/src/event/Driver.js","requires":[],"uses":[],"idx":22},{"path":"../ext/packages/ux/src/event/Maker.js","requires":[],"uses":[],"idx":23},{"path":"../ext/packages/ux/src/event/Player.js","requires":[22],"uses":[],"idx":24},{"path":"../ext/packages/ux/src/event/Recorder.js","requires":[22],"uses":[],"idx":25},{"path":"../ext/packages/ux/src/google/Api.js","requires":[],"uses":[],"idx":26},{"path":"../ext/packages/ux/src/google/Feeds.js","requires":[26],"uses":[],"idx":27},{"path":"../ext/packages/ux/classic/src/BoxReorderer.js","requires":[],"uses":[],"idx":28},{"path":"../ext/packages/ux/classic/src/CellDragDrop.js","requires":[],"uses":[],"idx":29},{"path":"../ext/packages/ux/classic/src/DataTip.js","requires":[],"uses":[],"idx":30},{"path":"../ext/packages/ux/classic/src/DataView/Animated.js","requires":[],"uses":[],"idx":31},{"path":"../ext/packages/ux/classic/src/DataView/DragSelector.js","requires":[],"uses":[],"idx":32},{"path":"../ext/packages/ux/classic/src/DataView/Draggable.js","requires":[],"uses":[],"idx":33},{"path":"../ext/packages/ux/classic/src/DataView/LabelEditor.js","requires":[],"uses":[],"idx":34},{"path":"../ext/packages/ux/classic/src/DataViewTransition.js","requires":[],"uses":[],"idx":35},{"path":"../ext/packages/ux/classic/src/Explorer.js","requires":[],"uses":[],"idx":36},{"path":"../ext/packages/ux/classic/src/FieldReplicator.js","requires":[],"uses":[],"idx":37},{"path":"../ext/packages/ux/classic/src/GMapPanel.js","requires":[],"uses":[],"idx":38},{"path":"../ext/packages/ux/classic/src/GroupTabRenderer.js","requires":[],"uses":[],"idx":39},{"path":"../ext/packages/ux/classic/src/GroupTabPanel.js","requires":[39],"uses":[],"idx":40},{"path":"../ext/packages/ux/classic/src/IFrame.js","requires":[],"uses":[],"idx":41},{"path":"../ext/packages/ux/classic/src/statusbar/StatusBar.js","requires":[],"uses":[],"idx":42},{"path":"../ext/packages/ux/classic/src/LiveSearchGridPanel.js","requires":[42],"uses":[],"idx":43},{"path":"../ext/packages/ux/classic/src/PreviewPlugin.js","requires":[],"uses":[],"idx":44},{"path":"../ext/packages/ux/classic/src/ProgressBarPager.js","requires":[],"uses":[],"idx":45},{"path":"../ext/packages/ux/classic/src/RowExpander.js","requires":[],"uses":[],"idx":46},{"path":"../ext/packages/ux/classic/src/SlidingPager.js","requires":[],"uses":[],"idx":47},{"path":"../ext/packages/ux/classic/src/Spotlight.js","requires":[],"uses":[],"idx":48},{"path":"../ext/packages/ux/classic/src/TabCloseMenu.js","requires":[],"uses":[],"idx":49},{"path":"../ext/packages/ux/classic/src/TabReorderer.js","requires":[28],"uses":[],"idx":50},{"path":"../ext/packages/ux/classic/src/TabScrollerMenu.js","requires":[],"uses":[],"idx":51},{"path":"../ext/packages/ux/classic/src/ToolbarDroppable.js","requires":[],"uses":[],"idx":52},{"path":"../ext/packages/ux/classic/src/TreePicker.js","requires":[],"uses":[],"idx":53},{"path":"../ext/packages/ux/classic/src/colorpick/Selection.js","requires":[],"uses":[55],"idx":54},{"path":"../ext/packages/ux/classic/src/colorpick/ColorUtils.js","requires":[],"uses":[],"idx":55},{"path":"../ext/packages/ux/classic/src/colorpick/ColorMapController.js","requires":[55],"uses":[],"idx":56},{"path":"../ext/packages/ux/classic/src/colorpick/ColorMap.js","requires":[56],"uses":[],"idx":57},{"path":"../ext/packages/ux/classic/src/colorpick/SelectorModel.js","requires":[55],"uses":[],"idx":58},{"path":"../ext/packages/ux/classic/src/colorpick/SelectorController.js","requires":[55],"uses":[],"idx":59},{"path":"../ext/packages/ux/classic/src/colorpick/ColorPreview.js","requires":[],"uses":[55],"idx":60},{"path":"../ext/packages/ux/classic/src/colorpick/SliderController.js","requires":[],"uses":[],"idx":61},{"path":"../ext/packages/ux/classic/src/colorpick/Slider.js","requires":[61],"uses":[],"idx":62},{"path":"../ext/packages/ux/classic/src/colorpick/SliderAlpha.js","requires":[62],"uses":[55],"idx":63},{"path":"../ext/packages/ux/classic/src/colorpick/SliderSaturation.js","requires":[62],"uses":[55],"idx":64},{"path":"../ext/packages/ux/classic/src/colorpick/SliderValue.js","requires":[62],"uses":[55],"idx":65},{"path":"../ext/packages/ux/classic/src/colorpick/SliderHue.js","requires":[62],"uses":[],"idx":66},{"path":"../ext/packages/ux/classic/src/colorpick/Selector.js","requires":[54,57,58,59,60,62,63,64,65,66],"uses":[56,61],"idx":67},{"path":"../ext/packages/ux/classic/src/colorpick/ButtonController.js","requires":[55,67],"uses":[],"idx":68},{"path":"../ext/packages/ux/classic/src/colorpick/Button.js","requires":[54,59,67,68],"uses":[55],"idx":69},{"path":"../ext/packages/ux/classic/src/colorpick/Field.js","requires":[54,55,59,67],"uses":[],"idx":70},{"path":"../ext/packages/ux/classic/src/dashboard/GoogleRssView.js","requires":[27],"uses":[],"idx":71},{"path":"../ext/packages/ux/classic/src/dashboard/GoogleRssPart.js","requires":[71],"uses":[],"idx":72},{"path":"../ext/packages/ux/classic/src/data/PagingMemoryProxy.js","requires":[],"uses":[],"idx":73},{"path":"../ext/packages/ux/classic/src/dd/CellFieldDropZone.js","requires":[],"uses":[],"idx":74},{"path":"../ext/packages/ux/classic/src/dd/PanelFieldDragZone.js","requires":[],"uses":[],"idx":75},{"path":"../ext/packages/ux/classic/src/desktop/Desktop.js","requires":[],"uses":[81,83],"idx":76},{"path":"../ext/packages/ux/classic/src/desktop/App.js","requires":[76],"uses":[],"idx":77},{"path":"../ext/packages/ux/classic/src/desktop/Module.js","requires":[],"uses":[],"idx":78},{"path":"../ext/packages/ux/classic/src/desktop/ShortcutModel.js","requires":[],"uses":[],"idx":79},{"path":"../ext/packages/ux/classic/src/desktop/StartMenu.js","requires":[],"uses":[],"idx":80},{"path":"../ext/packages/ux/classic/src/desktop/TaskBar.js","requires":[80],"uses":[],"idx":81},{"path":"../ext/packages/ux/classic/src/desktop/Video.js","requires":[],"uses":[],"idx":82},{"path":"../ext/packages/ux/classic/src/desktop/Wallpaper.js","requires":[],"uses":[],"idx":83},{"path":"../ext/packages/ux/classic/src/event/RecorderManager.js","requires":[],"uses":[24,25],"idx":84},{"path":"../ext/packages/ux/classic/src/form/MultiSelect.js","requires":[],"uses":[],"idx":85},{"path":"../ext/packages/ux/classic/src/form/ItemSelector.js","requires":[85],"uses":[],"idx":86},{"path":"../ext/packages/ux/classic/src/form/SearchField.js","requires":[],"uses":[],"idx":87},{"path":"../ext/packages/ux/classic/src/grid/SubTable.js","requires":[],"uses":[],"idx":88},{"path":"../ext/packages/ux/classic/src/grid/TransformGrid.js","requires":[],"uses":[],"idx":89},{"path":"../ext/packages/ux/classic/src/layout/ResponsiveColumn.js","requires":[],"uses":[],"idx":90},{"path":"../ext/packages/ux/classic/src/rating/Picker.js","requires":[],"uses":[],"idx":91},{"path":"../ext/packages/ux/classic/src/statusbar/ValidationStatus.js","requires":[],"uses":[],"idx":92},{"path":"../packages/local/common/src/BandFilter.js","requires":[],"uses":[],"idx":93},{"path":"../packages/local/common/src/SearchField.js","requires":[],"uses":[],"idx":94},{"path":"../packages/local/common/src/data/proxy/CrsfToken.js","requires":[],"uses":[],"idx":95},{"path":"../packages/local/common/src/data/proxy/Django.js","requires":[95],"uses":[],"idx":96},{"path":"../packages/local/common/src/store/MyStore.js","requires":[96],"uses":[],"idx":97},{"path":"../packages/local/common/src/store/CommentsObjects.js","requires":[97],"uses":[],"idx":98},{"path":"../packages/local/common/src/model/CommentObject.js","requires":[],"uses":[],"idx":99},{"path":"../packages/local/common/src/comment/CommentsObjectModel.js","requires":[98,99],"uses":[],"idx":100},{"path":"../packages/local/common/src/comment/CommentsObjectController.js","requires":[],"uses":[99],"idx":101},{"path":"../packages/local/common/src/comment/CommentsObject.js","requires":[44,100,101],"uses":[],"idx":102},{"path":"../packages/local/common/src/contact/ContactController.js","requires":[],"uses":[],"idx":103},{"path":"../packages/local/common/src/contact/Contact.js","requires":[103],"uses":[],"idx":104},{"path":"../packages/local/common/src/data/Settings.js","requires":[],"uses":[],"idx":105},{"path":"../packages/local/common/src/footer/FooterController.js","requires":[],"uses":[103,104],"idx":106},{"path":"../packages/local/common/src/footer/Footer.js","requires":[104,106],"uses":[],"idx":107},{"path":"../packages/local/common/src/header/ToolbarController.js","requires":[],"uses":[103,104,109,110],"idx":108},{"path":"../packages/local/common/src/help/TutorialsController.js","requires":[],"uses":[],"idx":109},{"path":"../packages/local/common/src/help/Tutorials.js","requires":[41,109],"uses":[],"idx":110},{"path":"../packages/local/common/src/header/Toolbar.js","requires":[96,104,108,110],"uses":[],"idx":111},{"path":"../packages/local/common/src/link/LinkPrompt.js","requires":[],"uses":[],"idx":112},{"path":"../packages/local/common/src/model/CommentPosition.js","requires":[],"uses":[],"idx":113},{"path":"../packages/local/common/src/model/Dataset.js","requires":[],"uses":[],"idx":114},{"path":"../packages/local/common/src/model/Filter.js","requires":[],"uses":[],"idx":115},{"path":"../packages/local/common/src/model/Footprint.js","requires":[],"uses":[],"idx":116},{"path":"../packages/local/common/src/model/Map.js","requires":[],"uses":[],"idx":117},{"path":"../packages/local/common/src/model/Release.js","requires":[],"uses":[],"idx":118},{"path":"../packages/local/common/src/model/Survey.js","requires":[],"uses":[],"idx":119},{"path":"../packages/local/common/src/model/Tag.js","requires":[],"uses":[],"idx":120},{"path":"../packages/local/common/src/model/Tile.js","requires":[],"uses":[],"idx":121},{"path":"../packages/local/common/src/statistics/Events.js","requires":[],"uses":[],"idx":122},{"path":"../packages/local/common/src/store/CSVDelimiters.js","requires":[97],"uses":[],"idx":123},{"path":"../packages/local/common/src/store/CommentsPosition.js","requires":[97,113],"uses":[],"idx":124},{"path":"../packages/local/common/src/store/Tiles.js","requires":[97],"uses":[],"idx":125},{"path":"../packages/local/common/src/store/Datasets.js","requires":[114,125],"uses":[],"idx":126},{"path":"../packages/local/common/src/store/Fields.js","requires":[97],"uses":[],"idx":127},{"path":"../packages/local/common/src/store/Filters.js","requires":[97,115],"uses":[],"idx":128},{"path":"../packages/local/common/src/store/Footprints.js","requires":[116,125],"uses":[],"idx":129},{"path":"../packages/local/common/src/store/Maps.js","requires":[96,97,117],"uses":[],"idx":130},{"path":"../packages/local/common/src/store/MyTreeStore.js","requires":[96],"uses":[],"idx":131},{"path":"../packages/local/common/src/store/Releases.js","requires":[97,118],"uses":[],"idx":132},{"path":"../packages/local/common/src/store/Surveys.js","requires":[97,119],"uses":[],"idx":133},{"path":"../packages/local/common/src/store/Tags.js","requires":[97,120],"uses":[],"idx":134},{"path":"../packages/local/common/src/store/Tutorials.js","requires":[97],"uses":[],"idx":135},{"path":"../packages/local/common/src/store/UsersSameGroup.js","requires":[97],"uses":[],"idx":136},{"path":"../packages/local/common/src/token/GetToken.js","requires":[],"uses":[],"idx":137},{"path":"../packages/local/visiomatic/src/Comments.js","requires":[],"uses":[96,113,124],"idx":138},{"path":"../packages/local/visiomatic/src/Interface.js","requires":[],"uses":[96,113,124,173,174,175],"idx":139},{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet-src.js","requires":[],"uses":[],"idx":140},{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet.js","requires":[],"uses":[],"idx":141},{"path":"../packages/local/visiomatic/src/VisiomaticModel.js","requires":[],"uses":[],"idx":142},{"path":"../packages/local/visiomatic/src/VisiomaticController.js","requires":[],"uses":[],"idx":143},{"path":"../packages/local/visiomatic/src/catalog/Catalogs.js","requires":[],"uses":[],"idx":144},{"path":"../packages/local/visiomatic/src/model/CatalogTree.js","requires":[],"uses":[],"idx":145},{"path":"../packages/local/visiomatic/src/store/CatalogsTree.js","requires":[96,131,145],"uses":[],"idx":146},{"path":"../packages/local/visiomatic/src/store/Overlays.js","requires":[],"uses":[],"idx":147},{"path":"../packages/local/visiomatic/src/model/FilterCondition.js","requires":[],"uses":[],"idx":148},{"path":"../packages/local/visiomatic/src/store/FilterConditions.js","requires":[148],"uses":[],"idx":149},{"path":"../packages/local/visiomatic/src/catalog/CatalogViewModel.js","requires":[114,145,146,147,149],"uses":[],"idx":150},{"path":"../packages/local/visiomatic/src/model/Object.js","requires":[],"uses":[],"idx":151},{"path":"../packages/local/visiomatic/src/store/Objects.js","requires":[97,151],"uses":[],"idx":152},{"path":"../packages/local/visiomatic/src/store/ExternalObjects.js","requires":[97,151],"uses":[],"idx":153},{"path":"../packages/local/visiomatic/src/model/Overlay.js","requires":[],"uses":[],"idx":154},{"path":"../packages/local/visiomatic/src/filter/FiltersController.js","requires":[],"uses":[148],"idx":155},{"path":"../packages/local/visiomatic/src/model/CatalogContent.js","requires":[],"uses":[],"idx":156},{"path":"../packages/local/visiomatic/src/store/ProductDisplayContents.js","requires":[97,156],"uses":[],"idx":157},{"path":"../packages/local/visiomatic/src/filter/FiltersModel.js","requires":[145,148,149,156,157],"uses":[],"idx":158},{"path":"../packages/local/visiomatic/src/filter/FiltersWindow.js","requires":[148,155,156,158],"uses":[],"idx":159},{"path":"../packages/local/visiomatic/src/catalog/CatalogController.js","requires":[152,153,154,159],"uses":[96,148,149,151,155,156,157,158],"idx":160},{"path":"../packages/local/visiomatic/src/catalog/Submit.js","requires":[69,70],"uses":[68],"idx":161},{"path":"../packages/local/visiomatic/src/catalog/OverlaysGrid.js","requires":[],"uses":[],"idx":162},{"path":"../packages/local/visiomatic/src/catalog/CatalogOverlayWindow.js","requires":[144,145,150,160,161,162],"uses":[],"idx":163},{"path":"../packages/local/visiomatic/src/download/FitsController.js","requires":[],"uses":[],"idx":164},{"path":"../packages/local/visiomatic/src/model/FitsFiles.js","requires":[96],"uses":[],"idx":165},{"path":"../packages/local/visiomatic/src/store/FitsFiles.js","requires":[97,165],"uses":[],"idx":166},{"path":"../packages/local/visiomatic/src/download/FitsModel.js","requires":[165,166],"uses":[],"idx":167},{"path":"../packages/local/visiomatic/src/download/DescutDownloadWindow.js","requires":[164,165,167],"uses":[],"idx":168},{"path":"../packages/local/visiomatic/src/Visiomatic.js","requires":[124,138,139,142,143,163,168],"uses":[96,145,146,147,150,160,164,165,166,167,176],"idx":169},{"path":"../packages/local/visiomatic/src/comment/CommentsObjectModel.js","requires":[98,99],"uses":[],"idx":170},{"path":"../packages/local/visiomatic/src/comment/CommentsObjectController.js","requires":[],"uses":[99],"idx":171},{"path":"../packages/local/visiomatic/src/comment/CommentsObject.js","requires":[44,170,171],"uses":[],"idx":172},{"path":"../packages/local/visiomatic/src/comment/CommentsPositionModel.js","requires":[113,124],"uses":[],"idx":173},{"path":"../packages/local/visiomatic/src/comment/CommentsPositionController.js","requires":[],"uses":[99,113],"idx":174},{"path":"../packages/local/visiomatic/src/comment/CommentsPosition.js","requires":[44,113,173,174],"uses":[],"idx":175},{"path":"../packages/local/visiomatic/src/crop/CropWindow.js","requires":[],"uses":[],"idx":176},{"path":"../packages/local/visiomatic/src/visiomatic/Jakefile.js","requires":[],"uses":[],"idx":177},{"path":"../packages/local/visiomatic/src/visiomatic/build/build.js","requires":[],"uses":[],"idx":178},{"path":"../packages/local/visiomatic/src/visiomatic/build/deps.js","requires":[],"uses":[],"idx":179},{"path":"../packages/local/visiomatic/src/visiomatic/build/hintrc.js","requires":[],"uses":[],"idx":180},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot-min.js","requires":[],"uses":[],"idx":181},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot.js","requires":[],"uses":[],"idx":182},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/excanvas.js","requires":[],"uses":[],"idx":183},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/excanvas.min.js","requires":[],"uses":[],"idx":184},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.jqplot.js","requires":[],"uses":[],"idx":185},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.jqplot.min.js","requires":[],"uses":[],"idx":186},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.js","requires":[],"uses":[],"idx":187},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.min.js","requires":[],"uses":[],"idx":188},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.BezierCurveRenderer.js","requires":[],"uses":[],"idx":189},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.BezierCurveRenderer.min.js","requires":[],"uses":[],"idx":190},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.barRenderer.js","requires":[],"uses":[],"idx":191},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.barRenderer.min.js","requires":[],"uses":[],"idx":192},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.blockRenderer.js","requires":[],"uses":[],"idx":193},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.blockRenderer.min.js","requires":[],"uses":[],"idx":194},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.bubbleRenderer.js","requires":[],"uses":[],"idx":195},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.bubbleRenderer.min.js","requires":[],"uses":[],"idx":196},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js","requires":[],"uses":[],"idx":197},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js","requires":[],"uses":[],"idx":198},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisTickRenderer.js","requires":[],"uses":[],"idx":199},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js","requires":[],"uses":[],"idx":200},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasOverlay.js","requires":[],"uses":[],"idx":201},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasOverlay.min.js","requires":[],"uses":[],"idx":202},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasTextRenderer.js","requires":[],"uses":[],"idx":203},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasTextRenderer.min.js","requires":[],"uses":[],"idx":204},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.categoryAxisRenderer.js","requires":[],"uses":[],"idx":205},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.categoryAxisRenderer.min.js","requires":[],"uses":[],"idx":206},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ciParser.js","requires":[],"uses":[],"idx":207},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ciParser.min.js","requires":[],"uses":[],"idx":208},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.cursor.js","requires":[],"uses":[],"idx":209},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.cursor.min.js","requires":[],"uses":[],"idx":210},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dateAxisRenderer.js","requires":[],"uses":[],"idx":211},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dateAxisRenderer.min.js","requires":[],"uses":[],"idx":212},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.donutRenderer.js","requires":[],"uses":[],"idx":213},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.donutRenderer.min.js","requires":[],"uses":[],"idx":214},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dragable.js","requires":[],"uses":[],"idx":215},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dragable.min.js","requires":[],"uses":[],"idx":216},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.enhancedLegendRenderer.js","requires":[],"uses":[],"idx":217},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.enhancedLegendRenderer.min.js","requires":[],"uses":[],"idx":218},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.funnelRenderer.js","requires":[],"uses":[],"idx":219},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.funnelRenderer.min.js","requires":[],"uses":[],"idx":220},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.highlighter.js","requires":[],"uses":[],"idx":221},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.highlighter.min.js","requires":[],"uses":[],"idx":222},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.json2.js","requires":[],"uses":[],"idx":223},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.json2.min.js","requires":[],"uses":[],"idx":224},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.logAxisRenderer.js","requires":[],"uses":[],"idx":225},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.logAxisRenderer.min.js","requires":[],"uses":[],"idx":226},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoAxisRenderer.js","requires":[],"uses":[],"idx":227},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoAxisRenderer.min.js","requires":[],"uses":[],"idx":228},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoRenderer.js","requires":[],"uses":[],"idx":229},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoRenderer.min.js","requires":[],"uses":[],"idx":230},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.meterGaugeRenderer.js","requires":[],"uses":[],"idx":231},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.meterGaugeRenderer.min.js","requires":[],"uses":[],"idx":232},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mobile.js","requires":[],"uses":[],"idx":233},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mobile.min.js","requires":[],"uses":[],"idx":234},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ohlcRenderer.js","requires":[],"uses":[],"idx":235},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ohlcRenderer.min.js","requires":[],"uses":[],"idx":236},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pieRenderer.js","requires":[],"uses":[],"idx":237},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pieRenderer.min.js","requires":[],"uses":[],"idx":238},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pointLabels.js","requires":[],"uses":[],"idx":239},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pointLabels.min.js","requires":[],"uses":[],"idx":240},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidAxisRenderer.js","requires":[],"uses":[],"idx":241},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidAxisRenderer.min.js","requires":[],"uses":[],"idx":242},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidGridRenderer.js","requires":[],"uses":[],"idx":243},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidGridRenderer.min.js","requires":[],"uses":[],"idx":244},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidRenderer.js","requires":[],"uses":[],"idx":245},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidRenderer.min.js","requires":[],"uses":[],"idx":246},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.trendline.js","requires":[],"uses":[],"idx":247},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.trendline.min.js","requires":[],"uses":[],"idx":248},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jquery-min.js","requires":[],"uses":[],"idx":249},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jquery.js","requires":[],"uses":[],"idx":250},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum-min.js","requires":[],"uses":[],"idx":251},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum.js","requires":[],"uses":[],"idx":252},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic-src.js","requires":[],"uses":[],"idx":253},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic.js","requires":[],"uses":[],"idx":254},{"path":"../packages/local/visiomatic/src/visiomatic/src/CRS.WCS.js","requires":[],"uses":[],"idx":255},{"path":"../packages/local/visiomatic/src/visiomatic/src/Catalog.js","requires":[],"uses":[],"idx":256},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Attribution.Logos.js","requires":[],"uses":[],"idx":257},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.ExtraMap.js","requires":[],"uses":[],"idx":258},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.FullScreen.js","requires":[],"uses":[],"idx":259},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Catalog.js","requires":[],"uses":[],"idx":260},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Channel.js","requires":[],"uses":[],"idx":261},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Doc.js","requires":[],"uses":[],"idx":262},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Image.js","requires":[],"uses":[],"idx":263},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Overlay.js","requires":[],"uses":[],"idx":264},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Profile.js","requires":[],"uses":[],"idx":265},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Region.js","requires":[],"uses":[],"idx":266},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Snapshot.js","requires":[],"uses":[],"idx":267},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.js","requires":[],"uses":[],"idx":268},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Layers.IIP.js","requires":[],"uses":[],"idx":269},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.LineaOverlay.js","requires":[],"uses":[],"idx":270},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Reticle.js","requires":[],"uses":[],"idx":271},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Scale.WCS.js","requires":[],"uses":[],"idx":272},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Sidebar.js","requires":[],"uses":[],"idx":273},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.WCS.js","requires":[],"uses":[],"idx":274},{"path":"../packages/local/visiomatic/src/visiomatic/src/Ellipse.js","requires":[],"uses":[],"idx":275},{"path":"../packages/local/visiomatic/src/visiomatic/src/EllipseMarker.js","requires":[],"uses":[],"idx":276},{"path":"../packages/local/visiomatic/src/visiomatic/src/FileTree.js","requires":[],"uses":[],"idx":277},{"path":"../packages/local/visiomatic/src/visiomatic/src/FlipSwitch.js","requires":[],"uses":[],"idx":278},{"path":"../packages/local/visiomatic/src/visiomatic/src/IIPUtils.js","requires":[],"uses":[],"idx":279},{"path":"../packages/local/visiomatic/src/visiomatic/src/Projection.WCS.js","requires":[],"uses":[],"idx":280},{"path":"../packages/local/visiomatic/src/visiomatic/src/RGB.js","requires":[],"uses":[],"idx":281},{"path":"../packages/local/visiomatic/src/visiomatic/src/SpinBox.js","requires":[],"uses":[],"idx":282},{"path":"../packages/local/visiomatic/src/visiomatic/src/TileLayer.IIP.js","requires":[],"uses":[],"idx":283},{"path":"../packages/local/visiomatic/src/visiomatic/src/copyright.js","requires":[],"uses":[],"idx":284},{"path":"../packages/local/aladin/src/Events.js","requires":[],"uses":[96,117,130,286,287,288,289,294],"idx":285},{"path":"../packages/local/aladin/src/model/Image.js","requires":[],"uses":[],"idx":286},{"path":"../packages/local/aladin/src/store/Images.js","requires":[96,97,286],"uses":[],"idx":287},{"path":"../packages/local/aladin/src/maps/MapSelectionController.js","requires":[117,130,286,287],"uses":[],"idx":288},{"path":"../packages/local/aladin/src/maps/MapSelectionWindow.js","requires":[117,286,288],"uses":[],"idx":289},{"path":"../packages/local/aladin/src/Interface.js","requires":[289],"uses":[93],"idx":290},{"path":"../packages/local/aladin/src/Aladin.js","requires":[93,285,290],"uses":[],"idx":291},{"path":"../packages/local/aladin/src/aladin/aladin-min.js","requires":[],"uses":[],"idx":292},{"path":"../packages/local/aladin/src/aladin/aladin-src.js","requires":[],"uses":[],"idx":293},{"path":"../packages/local/aladin/src/maps/MapSelectionViewModel.js","requires":[117,130,286],"uses":[],"idx":294},{"path":"../ext/packages/charts/classic/src/draw/ContainerBase.js","requires":[],"uses":[],"idx":295},{"path":"../ext/packages/charts/classic/src/draw/SurfaceBase.js","requires":[],"uses":[],"idx":296},{"path":"../ext/packages/charts/src/draw/Color.js","requires":[],"uses":[],"idx":297},{"path":"../ext/packages/charts/src/draw/sprite/AnimationParser.js","requires":[297],"uses":[312],"idx":298},{"path":"../ext/packages/charts/src/draw/Draw.js","requires":[],"uses":[],"idx":299},{"path":"../ext/packages/charts/src/draw/gradient/Gradient.js","requires":[297],"uses":[],"idx":300},{"path":"../ext/packages/charts/src/draw/gradient/GradientDefinition.js","requires":[],"uses":[],"idx":301},{"path":"../ext/packages/charts/src/draw/sprite/AttributeParser.js","requires":[297,301],"uses":[300,336,337],"idx":302},{"path":"../ext/packages/charts/src/draw/sprite/AttributeDefinition.js","requires":[298,302],"uses":[299,304],"idx":303},{"path":"../ext/packages/charts/src/draw/Matrix.js","requires":[],"uses":[],"idx":304},{"path":"../ext/packages/charts/src/draw/modifier/Modifier.js","requires":[],"uses":[],"idx":305},{"path":"../ext/packages/charts/src/draw/modifier/Target.js","requires":[304,305],"uses":[],"idx":306},{"path":"../ext/packages/charts/src/draw/TimingFunctions.js","requires":[],"uses":[],"idx":307},{"path":"../ext/packages/charts/src/draw/Animator.js","requires":[],"uses":[299],"idx":308},{"path":"../ext/packages/charts/src/draw/modifier/Animation.js","requires":[305,307,308],"uses":[],"idx":309},{"path":"../ext/packages/charts/src/draw/modifier/Highlight.js","requires":[305],"uses":[],"idx":310},{"path":"../ext/packages/charts/src/draw/sprite/Sprite.js","requires":[299,300,303,306,309,310],"uses":[297,305],"idx":311},{"path":"../ext/packages/charts/src/draw/Path.js","requires":[299],"uses":[],"idx":312},{"path":"../ext/packages/charts/src/draw/overrides/Path.js","requires":[],"uses":[416],"idx":313},{"path":"../ext/packages/charts/src/draw/sprite/Path.js","requires":[299,311,312],"uses":[],"idx":314},{"path":"../ext/packages/charts/src/draw/overrides/sprite/Path.js","requires":[297],"uses":[311],"idx":315},{"path":"../ext/packages/charts/src/draw/sprite/Circle.js","requires":[314],"uses":[],"idx":316},{"path":"../ext/packages/charts/src/draw/sprite/Arc.js","requires":[316],"uses":[],"idx":317},{"path":"../ext/packages/charts/src/draw/sprite/Arrow.js","requires":[314],"uses":[],"idx":318},{"path":"../ext/packages/charts/src/draw/sprite/Composite.js","requires":[311],"uses":[],"idx":319},{"path":"../ext/packages/charts/src/draw/sprite/Cross.js","requires":[314],"uses":[],"idx":320},{"path":"../ext/packages/charts/src/draw/sprite/Diamond.js","requires":[314],"uses":[],"idx":321},{"path":"../ext/packages/charts/src/draw/sprite/Ellipse.js","requires":[314],"uses":[],"idx":322},{"path":"../ext/packages/charts/src/draw/sprite/EllipticalArc.js","requires":[322],"uses":[],"idx":323},{"path":"../ext/packages/charts/src/draw/sprite/Rect.js","requires":[314],"uses":[],"idx":324},{"path":"../ext/packages/charts/src/draw/sprite/Image.js","requires":[324],"uses":[311],"idx":325},{"path":"../ext/packages/charts/src/draw/sprite/Instancing.js","requires":[311],"uses":[],"idx":326},{"path":"../ext/packages/charts/src/draw/overrides/sprite/Instancing.js","requires":[],"uses":[],"idx":327},{"path":"../ext/packages/charts/src/draw/sprite/Line.js","requires":[311],"uses":[],"idx":328},{"path":"../ext/packages/charts/src/draw/sprite/Plus.js","requires":[314],"uses":[],"idx":329},{"path":"../ext/packages/charts/src/draw/sprite/Sector.js","requires":[314],"uses":[],"idx":330},{"path":"../ext/packages/charts/src/draw/sprite/Square.js","requires":[324],"uses":[],"idx":331},{"path":"../ext/packages/charts/src/draw/TextMeasurer.js","requires":[],"uses":[],"idx":332},{"path":"../ext/packages/charts/src/draw/sprite/Text.js","requires":[297,311,332],"uses":[304],"idx":333},{"path":"../ext/packages/charts/src/draw/sprite/Tick.js","requires":[328],"uses":[],"idx":334},{"path":"../ext/packages/charts/src/draw/sprite/Triangle.js","requires":[314],"uses":[],"idx":335},{"path":"../ext/packages/charts/src/draw/gradient/Linear.js","requires":[297,300],"uses":[299],"idx":336},{"path":"../ext/packages/charts/src/draw/gradient/Radial.js","requires":[300],"uses":[],"idx":337},{"path":"../ext/packages/charts/src/draw/Surface.js","requires":[296,298,299,300,301,302,303,304,311,314,316,317,318,319,320,321,322,323,324,325,326,328,329,330,331,333,334,335,336,337],"uses":[343],"idx":338},{"path":"../ext/packages/charts/src/draw/overrides/Surface.js","requires":[],"uses":[311],"idx":339},{"path":"../ext/packages/charts/src/draw/engine/SvgContext.js","requires":[297],"uses":[304,312],"idx":340},{"path":"../ext/packages/charts/src/draw/engine/Svg.js","requires":[338,340],"uses":[],"idx":341},{"path":"../ext/packages/charts/src/draw/engine/excanvas.js","requires":[],"uses":[],"idx":342},{"path":"../ext/packages/charts/src/draw/engine/Canvas.js","requires":[297,308,338,342],"uses":[304],"idx":343},{"path":"../ext/packages/charts/src/draw/Container.js","requires":[295,301,338,341,343],"uses":[308],"idx":344},{"path":"../ext/packages/charts/src/chart/theme/Base.js","requires":[297],"uses":[],"idx":345},{"path":"../ext/packages/charts/src/chart/theme/Default.js","requires":[345],"uses":[],"idx":346},{"path":"../ext/packages/charts/src/chart/Markers.js","requires":[326],"uses":[],"idx":347},{"path":"../ext/packages/charts/src/chart/label/Callout.js","requires":[305],"uses":[],"idx":348},{"path":"../ext/packages/charts/src/chart/label/Label.js","requires":[333,348],"uses":[],"idx":349},{"path":"../ext/packages/charts/src/chart/series/Series.js","requires":[347,349],"uses":[297,326],"idx":350},{"path":"../ext/packages/charts/src/chart/interactions/Abstract.js","requires":[],"uses":[],"idx":351},{"path":"../ext/packages/charts/src/chart/MarkerHolder.js","requires":[],"uses":[304],"idx":352},{"path":"../ext/packages/charts/src/chart/axis/sprite/Axis.js","requires":[311,333,352],"uses":[299,304],"idx":353},{"path":"../ext/packages/charts/src/chart/axis/segmenter/Segmenter.js","requires":[],"uses":[],"idx":354},{"path":"../ext/packages/charts/src/chart/axis/segmenter/Names.js","requires":[354],"uses":[],"idx":355},{"path":"../ext/packages/charts/src/chart/axis/segmenter/Numeric.js","requires":[354],"uses":[],"idx":356},{"path":"../ext/packages/charts/src/chart/axis/segmenter/Time.js","requires":[354],"uses":[],"idx":357},{"path":"../ext/packages/charts/src/chart/axis/layout/Layout.js","requires":[],"uses":[],"idx":358},{"path":"../ext/packages/charts/src/chart/axis/layout/Discrete.js","requires":[358],"uses":[],"idx":359},{"path":"../ext/packages/charts/src/chart/axis/layout/CombineDuplicate.js","requires":[359],"uses":[],"idx":360},{"path":"../ext/packages/charts/src/chart/axis/layout/Continuous.js","requires":[358],"uses":[],"idx":361},{"path":"../ext/packages/charts/src/chart/axis/Axis.js","requires":[353,354,355,356,357,358,359,360,361],"uses":[326,333,347],"idx":362},{"path":"../ext/packages/charts/classic/src/chart/LegendBase.js","requires":[],"uses":[],"idx":363},{"path":"../ext/packages/charts/src/chart/Legend.js","requires":[363],"uses":[],"idx":364},{"path":"../ext/packages/charts/src/chart/AbstractChart.js","requires":[344,346,350,351,362,364,366],"uses":[308],"idx":365},{"path":"../ext/packages/charts/classic/overrides/AbstractChart.js","requires":[],"uses":[],"idx":366},{"path":"../ext/packages/charts/src/chart/grid/HorizontalGrid.js","requires":[311],"uses":[],"idx":367},{"path":"../ext/packages/charts/src/chart/grid/VerticalGrid.js","requires":[311],"uses":[],"idx":368},{"path":"../ext/packages/charts/src/chart/CartesianChart.js","requires":[365,367,368],"uses":[],"idx":369},{"path":"../ext/packages/charts/src/chart/grid/CircularGrid.js","requires":[316],"uses":[],"idx":370},{"path":"../ext/packages/charts/src/chart/grid/RadialGrid.js","requires":[314],"uses":[],"idx":371},{"path":"../ext/packages/charts/src/chart/PolarChart.js","requires":[365,370,371],"uses":[299],"idx":372},{"path":"../ext/packages/charts/src/chart/SpaceFillingChart.js","requires":[365],"uses":[],"idx":373},{"path":"../ext/packages/charts/src/chart/axis/sprite/Axis3D.js","requires":[353],"uses":[],"idx":374},{"path":"../ext/packages/charts/src/chart/axis/Axis3D.js","requires":[362,374],"uses":[],"idx":375},{"path":"../ext/packages/charts/src/chart/axis/Category.js","requires":[355,360,362],"uses":[],"idx":376},{"path":"../ext/packages/charts/src/chart/axis/Category3D.js","requires":[355,360,375],"uses":[],"idx":377},{"path":"../ext/packages/charts/src/chart/axis/Numeric.js","requires":[356,361,362],"uses":[],"idx":378},{"path":"../ext/packages/charts/src/chart/axis/Numeric3D.js","requires":[356,361,375],"uses":[],"idx":379},{"path":"../ext/packages/charts/src/chart/axis/Time.js","requires":[357,361,378],"uses":[],"idx":380},{"path":"../ext/packages/charts/src/chart/axis/Time3D.js","requires":[357,361,379],"uses":[],"idx":381},{"path":"../ext/packages/charts/src/chart/grid/HorizontalGrid3D.js","requires":[367],"uses":[],"idx":382},{"path":"../ext/packages/charts/src/chart/grid/VerticalGrid3D.js","requires":[368],"uses":[],"idx":383},{"path":"../ext/packages/charts/src/chart/interactions/CrossZoom.js","requires":[351],"uses":[],"idx":384},{"path":"../ext/packages/charts/src/chart/interactions/Crosshair.js","requires":[351,359,367,368,369],"uses":[],"idx":385},{"path":"../ext/packages/charts/src/chart/interactions/ItemHighlight.js","requires":[351],"uses":[],"idx":386},{"path":"../ext/packages/charts/src/chart/interactions/ItemEdit.js","requires":[386],"uses":[],"idx":387},{"path":"../ext/packages/charts/src/chart/interactions/PanZoom.js","requires":[308,351],"uses":[],"idx":388},{"path":"../ext/packages/charts/src/chart/interactions/Rotate.js","requires":[351],"uses":[],"idx":389},{"path":"../ext/packages/charts/src/chart/interactions/RotatePie3D.js","requires":[389],"uses":[],"idx":390},{"path":"../ext/packages/charts/src/chart/plugin/ItemEvents.js","requires":[],"uses":[],"idx":391},{"path":"../ext/packages/charts/src/chart/series/Cartesian.js","requires":[350],"uses":[],"idx":392},{"path":"../ext/packages/charts/src/chart/series/StackedCartesian.js","requires":[392],"uses":[],"idx":393},{"path":"../ext/packages/charts/src/chart/series/sprite/Series.js","requires":[311,352],"uses":[],"idx":394},{"path":"../ext/packages/charts/src/chart/series/sprite/Cartesian.js","requires":[394],"uses":[],"idx":395},{"path":"../ext/packages/charts/src/chart/series/sprite/StackedCartesian.js","requires":[395],"uses":[],"idx":396},{"path":"../ext/packages/charts/src/chart/series/sprite/Area.js","requires":[396],"uses":[],"idx":397},{"path":"../ext/packages/charts/src/chart/series/Area.js","requires":[393,397],"uses":[],"idx":398},{"path":"../ext/packages/charts/src/chart/series/sprite/Bar.js","requires":[396],"uses":[299],"idx":399},{"path":"../ext/packages/charts/src/chart/series/Bar.js","requires":[324,393,399],"uses":[],"idx":400},{"path":"../ext/packages/charts/src/chart/series/sprite/Bar3D.js","requires":[336,399],"uses":[],"idx":401},{"path":"../ext/packages/charts/src/chart/series/sprite/Box.js","requires":[311],"uses":[297,336],"idx":402},{"path":"../ext/packages/charts/src/chart/series/Bar3D.js","requires":[400,401,402],"uses":[],"idx":403},{"path":"../ext/packages/charts/src/draw/LimitedCache.js","requires":[],"uses":[],"idx":404},{"path":"../ext/packages/charts/src/draw/SegmentTree.js","requires":[],"uses":[],"idx":405},{"path":"../ext/packages/charts/src/chart/series/sprite/Aggregative.js","requires":[395,404,405],"uses":[],"idx":406},{"path":"../ext/packages/charts/src/chart/series/sprite/CandleStick.js","requires":[406],"uses":[324],"idx":407},{"path":"../ext/packages/charts/src/chart/series/CandleStick.js","requires":[392,407],"uses":[],"idx":408},{"path":"../ext/packages/charts/src/chart/series/Polar.js","requires":[350],"uses":[302],"idx":409},{"path":"../ext/packages/charts/src/chart/series/Gauge.js","requires":[330,409],"uses":[],"idx":410},{"path":"../ext/packages/charts/src/chart/series/sprite/Line.js","requires":[406],"uses":[299],"idx":411},{"path":"../ext/packages/charts/src/chart/series/Line.js","requires":[392,411],"uses":[],"idx":412},{"path":"../ext/packages/charts/src/chart/series/sprite/PieSlice.js","requires":[330,352],"uses":[],"idx":413},{"path":"../ext/packages/charts/src/chart/series/Pie.js","requires":[409,413],"uses":[],"idx":414},{"path":"../ext/packages/charts/src/chart/series/sprite/Pie3DPart.js","requires":[314,352],"uses":[297,302,336,337],"idx":415},{"path":"../ext/packages/charts/src/draw/PathUtil.js","requires":[313,315,327,339],"uses":[],"idx":416},{"path":"../ext/packages/charts/src/chart/series/Pie3D.js","requires":[409,415,416],"uses":[297],"idx":417},{"path":"../ext/packages/charts/src/chart/series/sprite/Polar.js","requires":[394],"uses":[],"idx":418},{"path":"../ext/packages/charts/src/chart/series/sprite/Radar.js","requires":[418],"uses":[],"idx":419},{"path":"../ext/packages/charts/src/chart/series/Radar.js","requires":[409,419],"uses":[],"idx":420},{"path":"../ext/packages/charts/src/chart/series/sprite/Scatter.js","requires":[395],"uses":[],"idx":421},{"path":"../ext/packages/charts/src/chart/series/Scatter.js","requires":[392,421],"uses":[],"idx":422},{"path":"../ext/packages/charts/src/chart/theme/Blue.js","requires":[345],"uses":[],"idx":423},{"path":"../ext/packages/charts/src/chart/theme/BlueGradients.js","requires":[345],"uses":[],"idx":424},{"path":"../ext/packages/charts/src/chart/theme/Category1.js","requires":[345],"uses":[],"idx":425},{"path":"../ext/packages/charts/src/chart/theme/Category1Gradients.js","requires":[345],"uses":[],"idx":426},{"path":"../ext/packages/charts/src/chart/theme/Category2.js","requires":[345],"uses":[],"idx":427},{"path":"../ext/packages/charts/src/chart/theme/Category2Gradients.js","requires":[345],"uses":[],"idx":428},{"path":"../ext/packages/charts/src/chart/theme/Category3.js","requires":[345],"uses":[],"idx":429},{"path":"../ext/packages/charts/src/chart/theme/Category3Gradients.js","requires":[345],"uses":[],"idx":430},{"path":"../ext/packages/charts/src/chart/theme/Category4.js","requires":[345],"uses":[],"idx":431},{"path":"../ext/packages/charts/src/chart/theme/Category4Gradients.js","requires":[345],"uses":[],"idx":432},{"path":"../ext/packages/charts/src/chart/theme/Category5.js","requires":[345],"uses":[],"idx":433},{"path":"../ext/packages/charts/src/chart/theme/Category5Gradients.js","requires":[345],"uses":[],"idx":434},{"path":"../ext/packages/charts/src/chart/theme/Category6.js","requires":[345],"uses":[],"idx":435},{"path":"../ext/packages/charts/src/chart/theme/Category6Gradients.js","requires":[345],"uses":[],"idx":436},{"path":"../ext/packages/charts/src/chart/theme/DefaultGradients.js","requires":[345],"uses":[],"idx":437},{"path":"../ext/packages/charts/src/chart/theme/Green.js","requires":[345],"uses":[],"idx":438},{"path":"../ext/packages/charts/src/chart/theme/GreenGradients.js","requires":[345],"uses":[],"idx":439},{"path":"../ext/packages/charts/src/chart/theme/Midnight.js","requires":[345],"uses":[],"idx":440},{"path":"../ext/packages/charts/src/chart/theme/Muted.js","requires":[345],"uses":[],"idx":441},{"path":"../ext/packages/charts/src/chart/theme/Purple.js","requires":[345],"uses":[],"idx":442},{"path":"../ext/packages/charts/src/chart/theme/PurpleGradients.js","requires":[345],"uses":[],"idx":443},{"path":"../ext/packages/charts/src/chart/theme/Red.js","requires":[345],"uses":[],"idx":444},{"path":"../ext/packages/charts/src/chart/theme/RedGradients.js","requires":[345],"uses":[],"idx":445},{"path":"../ext/packages/charts/src/chart/theme/Sky.js","requires":[345],"uses":[],"idx":446},{"path":"../ext/packages/charts/src/chart/theme/SkyGradients.js","requires":[345],"uses":[],"idx":447},{"path":"../ext/packages/charts/src/chart/theme/Yellow.js","requires":[345],"uses":[],"idx":448},{"path":"../ext/packages/charts/src/chart/theme/YellowGradients.js","requires":[345],"uses":[],"idx":449},{"path":"../ext/packages/charts/src/draw/Point.js","requires":[299,304],"uses":[],"idx":450},{"path":"../ext/packages/charts/src/draw/plugin/SpriteEvents.js","requires":[416],"uses":[],"idx":451},{"path":"../ext/packages/charts/classic/src/chart/TipSurface.js","requires":[344],"uses":[],"idx":452},{"path":"../ext/packages/charts/classic/src/chart/interactions/ItemInfo.js","requires":[351],"uses":[],"idx":453},{"path":"app/Application.js","requires":[],"uses":[],"idx":454},{"path":"app/model/Association.js","requires":[96],"uses":[],"idx":455},{"path":"app/model/CatalogContent.js","requires":[],"uses":[],"idx":456},{"path":"app/model/Product.js","requires":[96],"uses":[],"idx":457},{"path":"app/model/ProductRelated.js","requires":[96],"uses":[],"idx":458},{"path":"app/store/Association.js","requires":[97,455],"uses":[],"idx":459},{"path":"app/store/Objects.js","requires":[96,97],"uses":[],"idx":460},{"path":"app/store/ProductDisplayContents.js","requires":[97,456],"uses":[],"idx":461},{"path":"app/store/ProductRelateds.js","requires":[96,97,458],"uses":[],"idx":462},{"path":"app/store/Products.js","requires":[96,97,457],"uses":[],"idx":463},{"path":"app/store/SpectralDistributions.js","requires":[],"uses":[],"idx":464},{"path":"app/view/coadd/Aladin.js","requires":[291],"uses":[],"idx":465},{"path":"app/view/coadd/CoaddController.js","requires":[],"uses":[],"idx":466},{"path":"app/view/coadd/CoaddModel.js","requires":[114,116,119,120,126,129,133,134,455,457,459,460,463,464],"uses":[],"idx":467},{"path":"app/view/coadd/Form.js","requires":[],"uses":[],"idx":468},{"path":"app/view/coadd/Properties.js","requires":[94],"uses":[],"idx":469},{"path":"app/view/coadd/Visiomatic.js","requires":[169],"uses":[],"idx":470},{"path":"app/view/coadd/SpectralDistribution.js","requires":[369,376,378,384,386,391,422],"uses":[],"idx":471},{"path":"app/view/coadd/Coadd.js","requires":[114,116,119,120,455,457,465,466,467,468,469,470,471],"uses":[142,143],"idx":472},{"path":"app/view/system/SystemController.js","requires":[],"uses":[],"idx":473},{"path":"app/view/system/SystemModel.js","requires":[114,116,119,120,126,129,133,134,455,456,457,458,459,460,461,462,463],"uses":[],"idx":474},{"path":"app/view/system/Form.js","requires":[],"uses":[],"idx":475},{"path":"app/view/system/Properties.js","requires":[94],"uses":[],"idx":476},{"path":"app/view/system/Visiomatic.js","requires":[169],"uses":[],"idx":477},{"path":"app/view/system/Aladin.js","requires":[291],"uses":[],"idx":478},{"path":"app/view/system/MembersGrid.js","requires":[91],"uses":[],"idx":479},{"path":"app/view/system/VacGrid.js","requires":[],"uses":[68,69],"idx":480},{"path":"app/view/system/D3SvgComponent.js","requires":[],"uses":[],"idx":481},{"path":"app/view/system/SpatialDistribution.js","requires":[481],"uses":[],"idx":482},{"path":"app/view/system/ZDistribution.js","requires":[481],"uses":[],"idx":483},{"path":"app/view/system/MagDistribution.js","requires":[483],"uses":[],"idx":484},{"path":"app/view/system/cmd/Cmd.js","requires":[481],"uses":[],"idx":485},{"path":"app/view/system/cmd/CmdTab.js","requires":[90,485],"uses":[],"idx":486},{"path":"app/view/system/System.js","requires":[114,116,119,120,455,456,457,458,473,474,475,476,477,478,479,480,482,483,484,486],"uses":[142,143],"idx":487},{"path":"app/view/main/MainController.js","requires":[472,487],"uses":[96,114,116,119,120,126,129,133,134,455,456,457,458,459,460,461,462,463,464,466,467,473,474],"idx":488},{"path":"app/view/main/MainModel.js","requires":[],"uses":[],"idx":489},{"path":"app/view/main/Main.js","requires":[107,111,472,487,488,489],"uses":[],"idx":490},{"path":"app.js","requires":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,106,107,108,111,366,454,488,489,490],"uses":[],"idx":491},{"path":"../build/temp/development/Explorer/sencha-compiler/app/full-page-master-bundle.js","requires":[491],"uses":[],"idx":492}],"classes":{"Explorer.Application":{"idx":454,"alias":[],"alternates":[]},"Explorer.model.Association":{"idx":455,"alias":[],"alternates":[]},"Explorer.model.CatalogContent":{"idx":456,"alias":[],"alternates":[]},"Explorer.model.Product":{"idx":457,"alias":[],"alternates":[]},"Explorer.model.ProductRelated":{"idx":458,"alias":[],"alternates":[]},"Explorer.store.Association":{"idx":459,"alias":["store.association"],"alternates":[]},"Explorer.store.Objects":{"idx":460,"alias":["store.objects"],"alternates":[]},"Explorer.store.ProductDisplayContents":{"idx":461,"alias":["store.product-display-contents"],"alternates":[]},"Explorer.store.ProductRelateds":{"idx":462,"alias":["store.product_relateds"],"alternates":[]},"Explorer.store.Products":{"idx":463,"alias":["store.products"],"alternates":[]},"Explorer.store.SpectralDistributions":{"idx":464,"alias":["store.spectral-distribution"],"alternates":[]},"Explorer.view.coadd.Aladin":{"idx":465,"alias":["widget.coadd-aladin"],"alternates":[]},"Explorer.view.coadd.Coadd":{"idx":472,"alias":["widget.coadd-objects"],"alternates":[]},"Explorer.view.coadd.CoaddController":{"idx":466,"alias":["controller.coadd"],"alternates":[]},"Explorer.view.coadd.CoaddModel":{"idx":467,"alias":["viewmodel.coadd"],"alternates":[]},"Explorer.view.coadd.Form":{"idx":468,"alias":["widget.coadd-form"],"alternates":[]},"Explorer.view.coadd.Properties":{"idx":469,"alias":["widget.coadd-properties"],"alternates":[]},"Explorer.view.coadd.SpectralDistribution":{"idx":471,"alias":["widget.coadd-spectral-distribution"],"alternates":[]},"Explorer.view.coadd.Visiomatic":{"idx":470,"alias":["widget.coadd-visiomatic"],"alternates":[]},"Explorer.view.main.Main":{"idx":490,"alias":["widget.app-main"],"alternates":[]},"Explorer.view.main.MainController":{"idx":488,"alias":["controller.main"],"alternates":[]},"Explorer.view.main.MainModel":{"idx":489,"alias":["viewmodel.main"],"alternates":[]},"Explorer.view.system.Aladin":{"idx":478,"alias":["widget.system-aladin"],"alternates":[]},"Explorer.view.system.D3SvgComponent":{"idx":481,"alias":[],"alternates":[]},"Explorer.view.system.Form":{"idx":475,"alias":["widget.system-form"],"alternates":[]},"Explorer.view.system.MagDistribution":{"idx":484,"alias":["widget.system-mag-distribution"],"alternates":[]},"Explorer.view.system.MembersGrid":{"idx":479,"alias":["widget.system-members-grid"],"alternates":[]},"Explorer.view.system.Properties":{"idx":476,"alias":["widget.system-properties"],"alternates":[]},"Explorer.view.system.SpatialDistribution":{"idx":482,"alias":["widget.system-spatial-distribution"],"alternates":[]},"Explorer.view.system.System":{"idx":487,"alias":["widget.system"],"alternates":[]},"Explorer.view.system.SystemController":{"idx":473,"alias":["controller.system"],"alternates":[]},"Explorer.view.system.SystemModel":{"idx":474,"alias":["viewmodel.system"],"alternates":[]},"Explorer.view.system.VacGrid":{"idx":480,"alias":["widget.system-vac-grid"],"alternates":[]},"Explorer.view.system.Visiomatic":{"idx":477,"alias":["widget.system-visiomatic"],"alternates":[]},"Explorer.view.system.ZDistribution":{"idx":483,"alias":["widget.system-z-distribution"],"alternates":[]},"Explorer.view.system.cmd.CmdBase":{"idx":485,"alias":["widget.system-cmd"],"alternates":[]},"Explorer.view.system.cmd.CmdTab":{"idx":486,"alias":["widget.cmd-tab"],"alternates":[]},"Ext.AbstractManager":{"alias":[],"alternates":[]},"Ext.Action":{"alias":[],"alternates":[]},"Ext.Ajax":{"alias":[],"alternates":[]},"Ext.AnimationQueue":{"alias":[],"alternates":[]},"Ext.Component":{"alias":["widget.box","widget.component"],"alternates":["Ext.AbstractComponent"]},"Ext.ComponentLoader":{"alias":[],"alternates":[]},"Ext.ComponentManager":{"alias":[],"alternates":["Ext.ComponentMgr"]},"Ext.ComponentQuery":{"alias":[],"alternates":[]},"Ext.Deferred":{"alias":[],"alternates":[]},"Ext.Editor":{"alias":["widget.editor"],"alternates":[]},"Ext.ElementLoader":{"alias":[],"alternates":[]},"Ext.EventManager":{"alias":[],"alternates":[]},"Ext.Evented":{"alias":[],"alternates":["Ext.EventedBase"]},"Ext.GlobalEvents":{"alias":[],"alternates":["Ext.globalEvents"]},"Ext.Img":{"alias":["widget.image","widget.imagecomponent"],"alternates":[]},"Ext.LoadMask":{"alias":["widget.loadmask"],"alternates":[]},"Ext.Mixin":{"alias":[],"alternates":[]},"Ext.Progress":{"alias":["widget.progress","widget.progressbarwidget"],"alternates":["Ext.ProgressBarWidget"]},"Ext.ProgressBar":{"alias":["widget.progressbar"],"alternates":[]},"Ext.ProgressBase":{"alias":[],"alternates":[]},"Ext.Promise":{"alias":[],"alternates":[]},"Ext.TaskQueue":{"alias":[],"alternates":[]},"Ext.Template":{"alias":[],"alternates":[]},"Ext.Widget":{"alias":["widget.widget"],"alternates":[]},"Ext.XTemplate":{"alias":[],"alternates":[]},"Ext.ZIndexManager":{"alias":[],"alternates":["Ext.WindowGroup"]},"Ext.app.Application":{"alias":[],"alternates":[]},"Ext.app.BaseController":{"alias":[],"alternates":[]},"Ext.app.Controller":{"alias":[],"alternates":[]},"Ext.app.EventBus":{"alias":[],"alternates":[]},"Ext.app.EventDomain":{"alias":[],"alternates":[]},"Ext.app.Profile":{"alias":[],"alternates":[]},"Ext.app.Util":{"alias":[],"alternates":[]},"Ext.app.ViewController":{"alias":[],"alternates":[]},"Ext.app.ViewModel":{"alias":["viewmodel.default"],"alternates":[]},"Ext.app.bind.AbstractStub":{"alias":[],"alternates":[]},"Ext.app.bind.BaseBinding":{"alias":[],"alternates":[]},"Ext.app.bind.Binding":{"alias":[],"alternates":[]},"Ext.app.bind.Formula":{"alias":[],"alternates":[]},"Ext.app.bind.LinkStub":{"alias":[],"alternates":[]},"Ext.app.bind.Multi":{"alias":[],"alternates":[]},"Ext.app.bind.RootStub":{"alias":[],"alternates":[]},"Ext.app.bind.Stub":{"alias":[],"alternates":[]},"Ext.app.bind.Template":{"alias":[],"alternates":[]},"Ext.app.bind.TemplateBinding":{"alias":[],"alternates":[]},"Ext.app.domain.Component":{"alias":[],"alternates":[]},"Ext.app.domain.Controller":{"alias":[],"alternates":[]},"Ext.app.domain.Direct":{"alias":[],"alternates":[]},"Ext.app.domain.Global":{"alias":[],"alternates":[]},"Ext.app.domain.Store":{"alias":[],"alternates":[]},"Ext.app.domain.View":{"alias":[],"alternates":[]},"Ext.app.route.Queue":{"alias":[],"alternates":[]},"Ext.app.route.Route":{"alias":[],"alternates":[]},"Ext.app.route.Router":{"alias":[],"alternates":[]},"Ext.button.Button":{"alias":["widget.button"],"alternates":["Ext.Button"]},"Ext.button.Cycle":{"alias":["widget.cycle"],"alternates":["Ext.CycleButton"]},"Ext.button.Manager":{"alias":[],"alternates":["Ext.ButtonToggleManager"]},"Ext.button.Segmented":{"alias":["widget.segmentedbutton"],"alternates":[]},"Ext.button.Split":{"alias":["widget.splitbutton"],"alternates":["Ext.SplitButton"]},"Ext.chart.AbstractChart":{"idx":365,"alias":[],"alternates":[]},"Ext.chart.CartesianChart":{"idx":369,"alias":["widget.cartesian","widget.chart"],"alternates":["Ext.chart.Chart"]},"Ext.chart.Legend":{"idx":364,"alias":["widget.legend"],"alternates":[]},"Ext.chart.LegendBase":{"idx":363,"alias":[],"alternates":[]},"Ext.chart.MarkerHolder":{"idx":352,"alias":[],"alternates":[]},"Ext.chart.Markers":{"idx":347,"alias":[],"alternates":[]},"Ext.chart.PolarChart":{"idx":372,"alias":["widget.polar"],"alternates":[]},"Ext.chart.SpaceFillingChart":{"idx":373,"alias":["widget.spacefilling"],"alternates":[]},"Ext.chart.TipSurface":{"idx":452,"alias":[],"alternates":[]},"Ext.chart.axis.Axis":{"idx":362,"alias":["widget.axis"],"alternates":[]},"Ext.chart.axis.Axis3D":{"idx":375,"alias":["widget.axis3d"],"alternates":[]},"Ext.chart.axis.Category":{"idx":376,"alias":["axis.category"],"alternates":[]},"Ext.chart.axis.Category3D":{"idx":377,"alias":["axis.category3d"],"alternates":[]},"Ext.chart.axis.Numeric":{"idx":378,"alias":["axis.numeric","axis.radial"],"alternates":[]},"Ext.chart.axis.Numeric3D":{"idx":379,"alias":["axis.numeric3d"],"alternates":[]},"Ext.chart.axis.Time":{"idx":380,"alias":["axis.time"],"alternates":[]},"Ext.chart.axis.Time3D":{"idx":381,"alias":["axis.time3d"],"alternates":[]},"Ext.chart.axis.layout.CombineDuplicate":{"idx":360,"alias":["axisLayout.combineDuplicate"],"alternates":[]},"Ext.chart.axis.layout.Continuous":{"idx":361,"alias":["axisLayout.continuous"],"alternates":[]},"Ext.chart.axis.layout.Discrete":{"idx":359,"alias":["axisLayout.discrete"],"alternates":[]},"Ext.chart.axis.layout.Layout":{"idx":358,"alias":[],"alternates":[]},"Ext.chart.axis.segmenter.Names":{"idx":355,"alias":["segmenter.names"],"alternates":[]},"Ext.chart.axis.segmenter.Numeric":{"idx":356,"alias":["segmenter.numeric"],"alternates":[]},"Ext.chart.axis.segmenter.Segmenter":{"idx":354,"alias":[],"alternates":[]},"Ext.chart.axis.segmenter.Time":{"idx":357,"alias":["segmenter.time"],"alternates":[]},"Ext.chart.axis.sprite.Axis":{"idx":353,"alias":["sprite.axis"],"alternates":[]},"Ext.chart.axis.sprite.Axis3D":{"idx":374,"alias":["sprite.axis3d"],"alternates":[]},"Ext.chart.grid.CircularGrid":{"idx":370,"alias":["grid.circular"],"alternates":[]},"Ext.chart.grid.HorizontalGrid":{"idx":367,"alias":["grid.horizontal"],"alternates":[]},"Ext.chart.grid.HorizontalGrid3D":{"idx":382,"alias":["grid.horizontal3d"],"alternates":[]},"Ext.chart.grid.RadialGrid":{"idx":371,"alias":["grid.radial"],"alternates":[]},"Ext.chart.grid.VerticalGrid":{"idx":368,"alias":["grid.vertical"],"alternates":[]},"Ext.chart.grid.VerticalGrid3D":{"idx":383,"alias":["grid.vertical3d"],"alternates":[]},"Ext.chart.interactions.Abstract":{"idx":351,"alias":["widget.interaction"],"alternates":[]},"Ext.chart.interactions.CrossZoom":{"idx":384,"alias":["interaction.crosszoom"],"alternates":[]},"Ext.chart.interactions.Crosshair":{"idx":385,"alias":["interaction.crosshair"],"alternates":[]},"Ext.chart.interactions.ItemEdit":{"idx":387,"alias":["interaction.itemedit"],"alternates":[]},"Ext.chart.interactions.ItemHighlight":{"idx":386,"alias":["interaction.itemhighlight"],"alternates":[]},"Ext.chart.interactions.ItemInfo":{"idx":453,"alias":["interaction.iteminfo"],"alternates":[]},"Ext.chart.interactions.PanZoom":{"idx":388,"alias":["interaction.panzoom"],"alternates":[]},"Ext.chart.interactions.Rotate":{"idx":389,"alias":["interaction.rotate"],"alternates":[]},"Ext.chart.interactions.RotatePie3D":{"idx":390,"alias":["interaction.rotatePie3d"],"alternates":[]},"Ext.chart.label.Callout":{"idx":348,"alias":[],"alternates":[]},"Ext.chart.label.Label":{"idx":349,"alias":[],"alternates":[]},"Ext.chart.overrides.AbstractChart":{"idx":366,"alias":[],"alternates":[]},"Ext.chart.plugin.ItemEvents":{"idx":391,"alias":["plugin.chartitemevents"],"alternates":[]},"Ext.chart.series.Area":{"idx":398,"alias":["series.area"],"alternates":[]},"Ext.chart.series.Bar":{"idx":400,"alias":["series.bar"],"alternates":[]},"Ext.chart.series.Bar3D":{"idx":403,"alias":["series.bar3d"],"alternates":[]},"Ext.chart.series.CandleStick":{"idx":408,"alias":["series.candlestick"],"alternates":[]},"Ext.chart.series.Cartesian":{"idx":392,"alias":[],"alternates":[]},"Ext.chart.series.Gauge":{"idx":410,"alias":["series.gauge"],"alternates":[]},"Ext.chart.series.Line":{"idx":412,"alias":["series.line"],"alternates":[]},"Ext.chart.series.Pie":{"idx":414,"alias":["series.pie"],"alternates":[]},"Ext.chart.series.Pie3D":{"idx":417,"alias":["series.pie3d"],"alternates":[]},"Ext.chart.series.Polar":{"idx":409,"alias":[],"alternates":[]},"Ext.chart.series.Radar":{"idx":420,"alias":["series.radar"],"alternates":[]},"Ext.chart.series.Scatter":{"idx":422,"alias":["series.scatter"],"alternates":[]},"Ext.chart.series.Series":{"idx":350,"alias":[],"alternates":[]},"Ext.chart.series.StackedCartesian":{"idx":393,"alias":[],"alternates":[]},"Ext.chart.series.sprite.Aggregative":{"idx":406,"alias":[],"alternates":[]},"Ext.chart.series.sprite.Area":{"idx":397,"alias":["sprite.areaSeries"],"alternates":[]},"Ext.chart.series.sprite.Bar":{"idx":399,"alias":["sprite.barSeries"],"alternates":[]},"Ext.chart.series.sprite.Bar3D":{"idx":401,"alias":["sprite.bar3dSeries"],"alternates":[]},"Ext.chart.series.sprite.Box":{"idx":402,"alias":["sprite.box"],"alternates":[]},"Ext.chart.series.sprite.CandleStick":{"idx":407,"alias":["sprite.candlestickSeries"],"alternates":[]},"Ext.chart.series.sprite.Cartesian":{"idx":395,"alias":[],"alternates":[]},"Ext.chart.series.sprite.Line":{"idx":411,"alias":["sprite.lineSeries"],"alternates":[]},"Ext.chart.series.sprite.Pie3DPart":{"idx":415,"alias":["sprite.pie3dPart"],"alternates":[]},"Ext.chart.series.sprite.PieSlice":{"idx":413,"alias":["sprite.pieslice"],"alternates":[]},"Ext.chart.series.sprite.Polar":{"idx":418,"alias":[],"alternates":[]},"Ext.chart.series.sprite.Radar":{"idx":419,"alias":["sprite.radar"],"alternates":[]},"Ext.chart.series.sprite.Scatter":{"idx":421,"alias":["sprite.scatterSeries"],"alternates":[]},"Ext.chart.series.sprite.Series":{"idx":394,"alias":[],"alternates":[]},"Ext.chart.series.sprite.StackedCartesian":{"idx":396,"alias":[],"alternates":[]},"Ext.chart.theme.Base":{"idx":345,"alias":[],"alternates":[]},"Ext.chart.theme.Blue":{"idx":423,"alias":["chart.theme.Blue","chart.theme.blue"],"alternates":[]},"Ext.chart.theme.BlueGradients":{"idx":424,"alias":["chart.theme.Blue:gradients","chart.theme.blue-gradients"],"alternates":[]},"Ext.chart.theme.Category1":{"idx":425,"alias":["chart.theme.Category1","chart.theme.category1"],"alternates":[]},"Ext.chart.theme.Category1Gradients":{"idx":426,"alias":["chart.theme.Category1:gradients","chart.theme.category1-gradients"],"alternates":[]},"Ext.chart.theme.Category2":{"idx":427,"alias":["chart.theme.Category2","chart.theme.category2"],"alternates":[]},"Ext.chart.theme.Category2Gradients":{"idx":428,"alias":["chart.theme.Category2:gradients","chart.theme.category2-gradients"],"alternates":[]},"Ext.chart.theme.Category3":{"idx":429,"alias":["chart.theme.Category3","chart.theme.category3"],"alternates":[]},"Ext.chart.theme.Category3Gradients":{"idx":430,"alias":["chart.theme.Category3:gradients","chart.theme.category3-gradients"],"alternates":[]},"Ext.chart.theme.Category4":{"idx":431,"alias":["chart.theme.Category4","chart.theme.category4"],"alternates":[]},"Ext.chart.theme.Category4Gradients":{"idx":432,"alias":["chart.theme.Category4:gradients","chart.theme.category4-gradients"],"alternates":[]},"Ext.chart.theme.Category5":{"idx":433,"alias":["chart.theme.Category5","chart.theme.category5"],"alternates":[]},"Ext.chart.theme.Category5Gradients":{"idx":434,"alias":["chart.theme.Category5:gradients","chart.theme.category5-gradients"],"alternates":[]},"Ext.chart.theme.Category6":{"idx":435,"alias":["chart.theme.Category6","chart.theme.category6"],"alternates":[]},"Ext.chart.theme.Category6Gradients":{"idx":436,"alias":["chart.theme.Category6:gradients","chart.theme.category6-gradients"],"alternates":[]},"Ext.chart.theme.Default":{"idx":346,"alias":["chart.theme.Base","chart.theme.default"],"alternates":[]},"Ext.chart.theme.DefaultGradients":{"idx":437,"alias":["chart.theme.Base:gradients","chart.theme.default-gradients"],"alternates":[]},"Ext.chart.theme.Green":{"idx":438,"alias":["chart.theme.Green","chart.theme.green"],"alternates":[]},"Ext.chart.theme.GreenGradients":{"idx":439,"alias":["chart.theme.Green:gradients","chart.theme.green-gradients"],"alternates":[]},"Ext.chart.theme.Midnight":{"idx":440,"alias":["chart.theme.Midnight","chart.theme.midnight"],"alternates":[]},"Ext.chart.theme.Muted":{"idx":441,"alias":["chart.theme.Muted","chart.theme.muted"],"alternates":[]},"Ext.chart.theme.Purple":{"idx":442,"alias":["chart.theme.Purple","chart.theme.purple"],"alternates":[]},"Ext.chart.theme.PurpleGradients":{"idx":443,"alias":["chart.theme.Purple:gradients","chart.theme.purple-gradients"],"alternates":[]},"Ext.chart.theme.Red":{"idx":444,"alias":["chart.theme.Red","chart.theme.red"],"alternates":[]},"Ext.chart.theme.RedGradients":{"idx":445,"alias":["chart.theme.Red:gradients","chart.theme.red-gradients"],"alternates":[]},"Ext.chart.theme.Sky":{"idx":446,"alias":["chart.theme.Sky","chart.theme.sky"],"alternates":[]},"Ext.chart.theme.SkyGradients":{"idx":447,"alias":["chart.theme.Sky:gradients","chart.theme.sky-gradients"],"alternates":[]},"Ext.chart.theme.Yellow":{"idx":448,"alias":["chart.theme.Yellow","chart.theme.yellow"],"alternates":[]},"Ext.chart.theme.YellowGradients":{"idx":449,"alias":["chart.theme.Yellow:gradients","chart.theme.yellow-gradients"],"alternates":[]},"Ext.container.ButtonGroup":{"alias":["widget.buttongroup"],"alternates":["Ext.ButtonGroup"]},"Ext.container.Container":{"alias":["widget.container"],"alternates":["Ext.Container","Ext.AbstractContainer"]},"Ext.container.DockingContainer":{"alias":[],"alternates":[]},"Ext.container.Monitor":{"alias":[],"alternates":[]},"Ext.container.Viewport":{"alias":["widget.viewport"],"alternates":["Ext.Viewport"]},"Ext.dashboard.Column":{"alias":["widget.dashboard-column"],"alternates":[]},"Ext.dashboard.Dashboard":{"alias":["widget.dashboard"],"alternates":[]},"Ext.dashboard.DropZone":{"alias":[],"alternates":[]},"Ext.dashboard.Panel":{"alias":["widget.dashboard-panel"],"alternates":[]},"Ext.dashboard.Part":{"alias":["part.part"],"alternates":[]},"Ext.data.AbstractStore":{"alias":[],"alternates":[]},"Ext.data.ArrayStore":{"alias":["store.array"],"alternates":["Ext.data.SimpleStore"]},"Ext.data.Batch":{"alias":[],"alternates":[]},"Ext.data.BufferedStore":{"alias":["store.buffered"],"alternates":[]},"Ext.data.ChainedStore":{"alias":["store.chained"],"alternates":[]},"Ext.data.Connection":{"alias":[],"alternates":[]},"Ext.data.DirectStore":{"alias":["store.direct"],"alternates":[]},"Ext.data.Error":{"alias":[],"alternates":[]},"Ext.data.ErrorCollection":{"alias":[],"alternates":["Ext.data.Errors"]},"Ext.data.JsonP":{"alias":[],"alternates":[]},"Ext.data.JsonPStore":{"alias":["store.jsonp"],"alternates":[]},"Ext.data.JsonStore":{"alias":["store.json"],"alternates":[]},"Ext.data.LocalStore":{"alias":[],"alternates":[]},"Ext.data.Model":{"alias":[],"alternates":["Ext.data.Record"]},"Ext.data.ModelManager":{"alias":[],"alternates":["Ext.ModelMgr"]},"Ext.data.NodeInterface":{"alias":[],"alternates":[]},"Ext.data.NodeStore":{"alias":["store.node"],"alternates":[]},"Ext.data.PageMap":{"alias":[],"alternates":[]},"Ext.data.ProxyStore":{"alias":[],"alternates":[]},"Ext.data.Request":{"alias":[],"alternates":[]},"Ext.data.ResultSet":{"alias":[],"alternates":[]},"Ext.data.Session":{"alias":[],"alternates":[]},"Ext.data.SortTypes":{"alias":[],"alternates":[]},"Ext.data.Store":{"alias":["store.store"],"alternates":[]},"Ext.data.StoreManager":{"alias":[],"alternates":["Ext.StoreMgr","Ext.data.StoreMgr","Ext.StoreManager"]},"Ext.data.TreeModel":{"alias":[],"alternates":[]},"Ext.data.TreeStore":{"alias":["store.tree"],"alternates":[]},"Ext.data.Types":{"alias":[],"alternates":[]},"Ext.data.Validation":{"alias":[],"alternates":[]},"Ext.data.XmlStore":{"alias":["store.xml"],"alternates":[]},"Ext.data.field.Boolean":{"alias":["data.field.bool","data.field.boolean"],"alternates":[]},"Ext.data.field.Date":{"alias":["data.field.date"],"alternates":[]},"Ext.data.field.Field":{"alias":["data.field.auto"],"alternates":["Ext.data.Field"]},"Ext.data.field.Integer":{"alias":["data.field.int","data.field.integer"],"alternates":[]},"Ext.data.field.Number":{"alias":["data.field.float","data.field.number"],"alternates":[]},"Ext.data.field.String":{"alias":["data.field.string"],"alternates":[]},"Ext.data.flash.BinaryXhr":{"alias":[],"alternates":[]},"Ext.data.identifier.Generator":{"alias":["data.identifier.default"],"alternates":[]},"Ext.data.identifier.Negative":{"alias":["data.identifier.negative"],"alternates":[]},"Ext.data.identifier.Sequential":{"alias":["data.identifier.sequential"],"alternates":[]},"Ext.data.identifier.Uuid":{"alias":["data.identifier.uuid"],"alternates":[]},"Ext.data.matrix.Matrix":{"alias":[],"alternates":[]},"Ext.data.matrix.Side":{"alias":[],"alternates":[]},"Ext.data.matrix.Slice":{"alias":[],"alternates":[]},"Ext.data.operation.Create":{"alias":["data.operation.create"],"alternates":[]},"Ext.data.operation.Destroy":{"alias":["data.operation.destroy"],"alternates":[]},"Ext.data.operation.Operation":{"alias":[],"alternates":["Ext.data.Operation"]},"Ext.data.operation.Read":{"alias":["data.operation.read"],"alternates":[]},"Ext.data.operation.Update":{"alias":["data.operation.update"],"alternates":[]},"Ext.data.proxy.Ajax":{"alias":["proxy.ajax"],"alternates":["Ext.data.HttpProxy","Ext.data.AjaxProxy"]},"Ext.data.proxy.Client":{"alias":[],"alternates":["Ext.data.ClientProxy"]},"Ext.data.proxy.Direct":{"alias":["proxy.direct"],"alternates":["Ext.data.DirectProxy"]},"Ext.data.proxy.JsonP":{"alias":["proxy.jsonp","proxy.scripttag"],"alternates":["Ext.data.ScriptTagProxy"]},"Ext.data.proxy.LocalStorage":{"alias":["proxy.localstorage"],"alternates":["Ext.data.LocalStorageProxy"]},"Ext.data.proxy.Memory":{"alias":["proxy.memory"],"alternates":["Ext.data.MemoryProxy"]},"Ext.data.proxy.Proxy":{"alias":["proxy.proxy"],"alternates":["Ext.data.DataProxy","Ext.data.Proxy"]},"Ext.data.proxy.Rest":{"alias":["proxy.rest"],"alternates":["Ext.data.RestProxy"]},"Ext.data.proxy.Server":{"alias":["proxy.server"],"alternates":["Ext.data.ServerProxy"]},"Ext.data.proxy.SessionStorage":{"alias":["proxy.sessionstorage"],"alternates":["Ext.data.SessionStorageProxy"]},"Ext.data.proxy.WebStorage":{"alias":[],"alternates":["Ext.data.WebStorageProxy"]},"Ext.data.reader.Array":{"alias":["reader.array"],"alternates":["Ext.data.ArrayReader"]},"Ext.data.reader.Json":{"alias":["reader.json"],"alternates":["Ext.data.JsonReader"]},"Ext.data.reader.Reader":{"alias":["reader.base"],"alternates":["Ext.data.Reader","Ext.data.DataReader"]},"Ext.data.reader.Xml":{"alias":["reader.xml"],"alternates":["Ext.data.XmlReader"]},"Ext.data.request.Ajax":{"alias":["request.ajax"],"alternates":[]},"Ext.data.request.Base":{"alias":[],"alternates":[]},"Ext.data.request.Form":{"alias":["request.form"],"alternates":[]},"Ext.data.schema.Association":{"alias":[],"alternates":[]},"Ext.data.schema.ManyToMany":{"alias":[],"alternates":[]},"Ext.data.schema.ManyToOne":{"alias":[],"alternates":[]},"Ext.data.schema.Namer":{"alias":["namer.default"],"alternates":[]},"Ext.data.schema.OneToOne":{"alias":[],"alternates":[]},"Ext.data.schema.Role":{"alias":[],"alternates":[]},"Ext.data.schema.Schema":{"alias":["schema.default"],"alternates":[]},"Ext.data.session.BatchVisitor":{"alias":[],"alternates":[]},"Ext.data.session.ChangesVisitor":{"alias":[],"alternates":[]},"Ext.data.session.ChildChangesVisitor":{"alias":[],"alternates":[]},"Ext.data.validator.Bound":{"alias":["data.validator.bound"],"alternates":[]},"Ext.data.validator.Email":{"alias":["data.validator.email"],"alternates":[]},"Ext.data.validator.Exclusion":{"alias":["data.validator.exclusion"],"alternates":[]},"Ext.data.validator.Format":{"alias":["data.validator.format"],"alternates":[]},"Ext.data.validator.Inclusion":{"alias":["data.validator.inclusion"],"alternates":[]},"Ext.data.validator.Length":{"alias":["data.validator.length"],"alternates":[]},"Ext.data.validator.List":{"alias":["data.validator.list"],"alternates":[]},"Ext.data.validator.Presence":{"alias":["data.validator.presence"],"alternates":[]},"Ext.data.validator.Range":{"alias":["data.validator.range"],"alternates":[]},"Ext.data.validator.Validator":{"alias":["data.validator.base"],"alternates":[]},"Ext.data.writer.Json":{"alias":["writer.json"],"alternates":["Ext.data.JsonWriter"]},"Ext.data.writer.Writer":{"alias":["writer.base"],"alternates":["Ext.data.DataWriter","Ext.data.Writer"]},"Ext.data.writer.Xml":{"alias":["writer.xml"],"alternates":["Ext.data.XmlWriter"]},"Ext.dd.DD":{"alias":[],"alternates":[]},"Ext.dd.DDProxy":{"alias":[],"alternates":[]},"Ext.dd.DDTarget":{"alias":[],"alternates":[]},"Ext.dd.DragDrop":{"alias":[],"alternates":[]},"Ext.dd.DragDropManager":{"alias":[],"alternates":["Ext.dd.DragDropMgr","Ext.dd.DDM"]},"Ext.dd.DragSource":{"alias":[],"alternates":[]},"Ext.dd.DragTracker":{"alias":[],"alternates":[]},"Ext.dd.DragZone":{"alias":[],"alternates":[]},"Ext.dd.DropTarget":{"alias":[],"alternates":[]},"Ext.dd.DropZone":{"alias":[],"alternates":[]},"Ext.dd.Registry":{"alias":[],"alternates":[]},"Ext.dd.ScrollManager":{"alias":[],"alternates":[]},"Ext.dd.StatusProxy":{"alias":[],"alternates":[]},"Ext.direct.Event":{"alias":["direct.event"],"alternates":[]},"Ext.direct.ExceptionEvent":{"alias":["direct.exception"],"alternates":[]},"Ext.direct.JsonProvider":{"alias":["direct.jsonprovider"],"alternates":[]},"Ext.direct.Manager":{"alias":[],"alternates":[]},"Ext.direct.PollingProvider":{"alias":["direct.pollingprovider"],"alternates":[]},"Ext.direct.Provider":{"alias":["direct.provider"],"alternates":[]},"Ext.direct.RemotingEvent":{"alias":["direct.rpc"],"alternates":[]},"Ext.direct.RemotingMethod":{"alias":[],"alternates":[]},"Ext.direct.RemotingProvider":{"alias":["direct.remotingprovider"],"alternates":[]},"Ext.direct.Transaction":{"alias":["direct.transaction"],"alternates":[]},"Ext.dom.ButtonElement":{"alias":[],"alternates":[]},"Ext.dom.CompositeElement":{"alias":[],"alternates":["Ext.CompositeElement"]},"Ext.dom.CompositeElementLite":{"alias":[],"alternates":["Ext.CompositeElementLite"]},"Ext.dom.Element":{"alias":[],"alternates":["Ext.Element"]},"Ext.dom.ElementEvent":{"alias":[],"alternates":[]},"Ext.dom.Fly":{"alias":[],"alternates":["Ext.dom.Element.Fly"]},"Ext.dom.GarbageCollector":{"alias":[],"alternates":[]},"Ext.dom.Helper":{"alias":[],"alternates":["Ext.DomHelper","Ext.core.DomHelper"]},"Ext.dom.Layer":{"alias":[],"alternates":["Ext.Layer"]},"Ext.dom.Query":{"alias":[],"alternates":["Ext.core.DomQuery","Ext.DomQuery"]},"Ext.dom.Shadow":{"alias":[],"alternates":["Ext.Shadow"]},"Ext.dom.Shim":{"alias":[],"alternates":[]},"Ext.dom.Underlay":{"alias":[],"alternates":[]},"Ext.dom.UnderlayPool":{"alias":[],"alternates":[]},"Ext.draw.Animator":{"idx":308,"alias":[],"alternates":[]},"Ext.draw.Color":{"idx":297,"alias":[],"alternates":[]},"Ext.draw.Container":{"idx":344,"alias":["widget.draw"],"alternates":["Ext.draw.Component"]},"Ext.draw.ContainerBase":{"idx":295,"alias":[],"alternates":[]},"Ext.draw.Draw":{"idx":299,"alias":[],"alternates":[]},"Ext.draw.LimitedCache":{"idx":404,"alias":[],"alternates":[]},"Ext.draw.Matrix":{"idx":304,"alias":[],"alternates":[]},"Ext.draw.Path":{"idx":312,"alias":[],"alternates":[]},"Ext.draw.PathUtil":{"idx":416,"alias":[],"alternates":[]},"Ext.draw.Point":{"idx":450,"alias":[],"alternates":[]},"Ext.draw.SegmentTree":{"idx":405,"alias":[],"alternates":[]},"Ext.draw.Surface":{"idx":338,"alias":["widget.surface"],"alternates":[]},"Ext.draw.SurfaceBase":{"idx":296,"alias":[],"alternates":[]},"Ext.draw.TextMeasurer":{"idx":332,"alias":[],"alternates":[]},"Ext.draw.TimingFunctions":{"idx":307,"alias":[],"alternates":[]},"Ext.draw.engine.Canvas":{"idx":343,"alias":[],"alternates":[]},"Ext.draw.engine.Svg":{"idx":341,"alias":[],"alternates":[]},"Ext.draw.engine.SvgContext":{"idx":340,"alias":[],"alternates":[]},"Ext.draw.engine.SvgContext.Gradient":{"idx":340,"alias":[],"alternates":[]},"Ext.draw.gradient.Gradient":{"idx":300,"alias":[],"alternates":[]},"Ext.draw.gradient.GradientDefinition":{"idx":301,"alias":[],"alternates":[]},"Ext.draw.gradient.Linear":{"idx":336,"alias":[],"alternates":[]},"Ext.draw.gradient.Radial":{"idx":337,"alias":[],"alternates":[]},"Ext.draw.modifier.Animation":{"idx":309,"alias":["modifier.animation"],"alternates":[]},"Ext.draw.modifier.Highlight":{"idx":310,"alias":["modifier.highlight"],"alternates":[]},"Ext.draw.modifier.Modifier":{"idx":305,"alias":[],"alternates":[]},"Ext.draw.modifier.Target":{"idx":306,"alias":["modifier.target"],"alternates":[]},"Ext.draw.overrides.Path":{"idx":313,"alias":[],"alternates":[]},"Ext.draw.overrides.Surface":{"idx":339,"alias":[],"alternates":[]},"Ext.draw.overrides.sprite.Instancing":{"idx":327,"alias":[],"alternates":[]},"Ext.draw.overrides.sprite.Path":{"idx":315,"alias":[],"alternates":[]},"Ext.draw.plugin.SpriteEvents":{"idx":451,"alias":["plugin.spriteevents"],"alternates":[]},"Ext.draw.sprite.AnimationParser":{"idx":298,"alias":[],"alternates":[]},"Ext.draw.sprite.Arc":{"idx":317,"alias":["sprite.arc"],"alternates":[]},"Ext.draw.sprite.Arrow":{"idx":318,"alias":["sprite.arrow"],"alternates":[]},"Ext.draw.sprite.AttributeDefinition":{"idx":303,"alias":[],"alternates":[]},"Ext.draw.sprite.AttributeParser":{"idx":302,"alias":[],"alternates":[]},"Ext.draw.sprite.Circle":{"idx":316,"alias":["sprite.circle"],"alternates":[]},"Ext.draw.sprite.Composite":{"idx":319,"alias":["sprite.composite"],"alternates":[]},"Ext.draw.sprite.Cross":{"idx":320,"alias":["sprite.cross"],"alternates":[]},"Ext.draw.sprite.Diamond":{"idx":321,"alias":["sprite.diamond"],"alternates":[]},"Ext.draw.sprite.Ellipse":{"idx":322,"alias":["sprite.ellipse"],"alternates":[]},"Ext.draw.sprite.EllipticalArc":{"idx":323,"alias":["sprite.ellipticalArc"],"alternates":[]},"Ext.draw.sprite.Image":{"idx":325,"alias":["sprite.image"],"alternates":[]},"Ext.draw.sprite.Instancing":{"idx":326,"alias":["sprite.instancing"],"alternates":[]},"Ext.draw.sprite.Line":{"idx":328,"alias":["sprite.line"],"alternates":[]},"Ext.draw.sprite.Path":{"idx":314,"alias":["Ext.draw.Sprite","sprite.path"],"alternates":[]},"Ext.draw.sprite.Plus":{"idx":329,"alias":["sprite.plus"],"alternates":[]},"Ext.draw.sprite.Rect":{"idx":324,"alias":["sprite.rect"],"alternates":[]},"Ext.draw.sprite.Sector":{"idx":330,"alias":["sprite.sector"],"alternates":[]},"Ext.draw.sprite.Sprite":{"idx":311,"alias":["sprite.sprite"],"alternates":[]},"Ext.draw.sprite.Square":{"idx":331,"alias":["sprite.square"],"alternates":[]},"Ext.draw.sprite.Text":{"idx":333,"alias":["sprite.text"],"alternates":[]},"Ext.draw.sprite.Tick":{"idx":334,"alias":["sprite.tick"],"alternates":[]},"Ext.draw.sprite.Triangle":{"idx":335,"alias":["sprite.triangle"],"alternates":[]},"Ext.event.Event":{"alias":[],"alternates":["Ext.EventObjectImpl"]},"Ext.event.gesture.DoubleTap":{"alias":[],"alternates":[]},"Ext.event.gesture.Drag":{"alias":[],"alternates":[]},"Ext.event.gesture.EdgeSwipe":{"alias":[],"alternates":[]},"Ext.event.gesture.LongPress":{"alias":[],"alternates":[]},"Ext.event.gesture.MultiTouch":{"alias":[],"alternates":[]},"Ext.event.gesture.Pinch":{"alias":[],"alternates":[]},"Ext.event.gesture.Recognizer":{"alias":[],"alternates":[]},"Ext.event.gesture.Rotate":{"alias":[],"alternates":[]},"Ext.event.gesture.SingleTouch":{"alias":[],"alternates":[]},"Ext.event.gesture.Swipe":{"alias":[],"alternates":[]},"Ext.event.gesture.Tap":{"alias":[],"alternates":[]},"Ext.event.publisher.Dom":{"alias":[],"alternates":[]},"Ext.event.publisher.ElementPaint":{"alias":[],"alternates":[]},"Ext.event.publisher.ElementSize":{"alias":[],"alternates":[]},"Ext.event.publisher.Focus":{"alias":[],"alternates":[]},"Ext.event.publisher.Gesture":{"alias":[],"alternates":[]},"Ext.event.publisher.MouseEnterLeave":{"alias":[],"alternates":[]},"Ext.event.publisher.Publisher":{"alias":[],"alternates":[]},"Ext.flash.Component":{"alias":["widget.flash"],"alternates":["Ext.FlashComponent"]},"Ext.form.Basic":{"alias":[],"alternates":["Ext.form.BasicForm"]},"Ext.form.CheckboxGroup":{"alias":["widget.checkboxgroup"],"alternates":[]},"Ext.form.CheckboxManager":{"alias":[],"alternates":[]},"Ext.form.FieldAncestor":{"alias":[],"alternates":[]},"Ext.form.FieldContainer":{"alias":["widget.fieldcontainer"],"alternates":[]},"Ext.form.FieldSet":{"alias":["widget.fieldset"],"alternates":[]},"Ext.form.Label":{"alias":["widget.label"],"alternates":[]},"Ext.form.Labelable":{"alias":[],"alternates":[]},"Ext.form.Panel":{"alias":["widget.form"],"alternates":["Ext.FormPanel","Ext.form.FormPanel"]},"Ext.form.RadioGroup":{"alias":["widget.radiogroup"],"alternates":[]},"Ext.form.RadioManager":{"alias":[],"alternates":[]},"Ext.form.action.Action":{"alias":[],"alternates":["Ext.form.Action"]},"Ext.form.action.DirectAction":{"alias":[],"alternates":[]},"Ext.form.action.DirectLoad":{"alias":["formaction.directload"],"alternates":["Ext.form.Action.DirectLoad"]},"Ext.form.action.DirectSubmit":{"alias":["formaction.directsubmit"],"alternates":["Ext.form.Action.DirectSubmit"]},"Ext.form.action.Load":{"alias":["formaction.load"],"alternates":["Ext.form.Action.Load"]},"Ext.form.action.StandardSubmit":{"alias":["formaction.standardsubmit"],"alternates":[]},"Ext.form.action.Submit":{"alias":["formaction.submit"],"alternates":["Ext.form.Action.Submit"]},"Ext.form.field.Base":{"alias":["widget.field"],"alternates":["Ext.form.Field","Ext.form.BaseField"]},"Ext.form.field.Checkbox":{"alias":["widget.checkbox","widget.checkboxfield"],"alternates":["Ext.form.Checkbox"]},"Ext.form.field.ComboBox":{"alias":["widget.combo","widget.combobox"],"alternates":["Ext.form.ComboBox"]},"Ext.form.field.Date":{"alias":["widget.datefield"],"alternates":["Ext.form.DateField","Ext.form.Date"]},"Ext.form.field.Display":{"alias":["widget.displayfield"],"alternates":["Ext.form.DisplayField","Ext.form.Display"]},"Ext.form.field.Field":{"alias":[],"alternates":[]},"Ext.form.field.File":{"alias":["widget.filefield","widget.fileuploadfield"],"alternates":["Ext.form.FileUploadField","Ext.ux.form.FileUploadField","Ext.form.File"]},"Ext.form.field.FileButton":{"alias":["widget.filebutton"],"alternates":[]},"Ext.form.field.Hidden":{"alias":["widget.hidden","widget.hiddenfield"],"alternates":["Ext.form.Hidden"]},"Ext.form.field.HtmlEditor":{"alias":["widget.htmleditor"],"alternates":["Ext.form.HtmlEditor"]},"Ext.form.field.Number":{"alias":["widget.numberfield"],"alternates":["Ext.form.NumberField","Ext.form.Number"]},"Ext.form.field.Picker":{"alias":["widget.pickerfield"],"alternates":["Ext.form.Picker"]},"Ext.form.field.Radio":{"alias":["widget.radio","widget.radiofield"],"alternates":["Ext.form.Radio"]},"Ext.form.field.Spinner":{"alias":["widget.spinnerfield"],"alternates":["Ext.form.Spinner"]},"Ext.form.field.Tag":{"alias":["widget.tagfield"],"alternates":[]},"Ext.form.field.Text":{"alias":["widget.textfield"],"alternates":["Ext.form.TextField","Ext.form.Text"]},"Ext.form.field.TextArea":{"alias":["widget.textarea","widget.textareafield"],"alternates":["Ext.form.TextArea"]},"Ext.form.field.Time":{"alias":["widget.timefield"],"alternates":["Ext.form.TimeField","Ext.form.Time"]},"Ext.form.field.Trigger":{"alias":["widget.trigger","widget.triggerfield"],"alternates":["Ext.form.TriggerField","Ext.form.TwinTriggerField","Ext.form.Trigger"]},"Ext.form.field.VTypes":{"alias":[],"alternates":["Ext.form.VTypes"]},"Ext.form.trigger.Component":{"alias":["trigger.component"],"alternates":[]},"Ext.form.trigger.Spinner":{"alias":["trigger.spinner"],"alternates":[]},"Ext.form.trigger.Trigger":{"alias":["trigger.trigger"],"alternates":[]},"Ext.fx.Anim":{"alias":[],"alternates":[]},"Ext.fx.Animation":{"alias":[],"alternates":[]},"Ext.fx.Animator":{"alias":[],"alternates":[]},"Ext.fx.CubicBezier":{"alias":[],"alternates":[]},"Ext.fx.DrawPath":{"alias":[],"alternates":[]},"Ext.fx.Easing":{"alias":[],"alternates":[]},"Ext.fx.Manager":{"alias":[],"alternates":[]},"Ext.fx.PropertyHandler":{"alias":[],"alternates":[]},"Ext.fx.Queue":{"alias":[],"alternates":[]},"Ext.fx.Runner":{"alias":[],"alternates":[]},"Ext.fx.State":{"alias":[],"alternates":[]},"Ext.fx.animation.Abstract":{"alias":[],"alternates":[]},"Ext.fx.animation.Cube":{"alias":["animation.cube"],"alternates":[]},"Ext.fx.animation.Fade":{"alias":["animation.fade","animation.fadeIn"],"alternates":["Ext.fx.animation.FadeIn"]},"Ext.fx.animation.FadeOut":{"alias":["animation.fadeOut"],"alternates":[]},"Ext.fx.animation.Flip":{"alias":["animation.flip"],"alternates":[]},"Ext.fx.animation.Pop":{"alias":["animation.pop","animation.popIn"],"alternates":["Ext.fx.animation.PopIn"]},"Ext.fx.animation.PopOut":{"alias":["animation.popOut"],"alternates":[]},"Ext.fx.animation.Slide":{"alias":["animation.slide","animation.slideIn"],"alternates":["Ext.fx.animation.SlideIn"]},"Ext.fx.animation.SlideOut":{"alias":["animation.slideOut"],"alternates":[]},"Ext.fx.animation.Wipe":{"alias":[],"alternates":["Ext.fx.animation.WipeIn"]},"Ext.fx.animation.WipeOut":{"alias":[],"alternates":[]},"Ext.fx.easing.Abstract":{"alias":[],"alternates":[]},"Ext.fx.easing.Bounce":{"alias":[],"alternates":[]},"Ext.fx.easing.BoundMomentum":{"alias":[],"alternates":[]},"Ext.fx.easing.EaseIn":{"alias":["easing.ease-in"],"alternates":[]},"Ext.fx.easing.EaseOut":{"alias":["easing.ease-out"],"alternates":[]},"Ext.fx.easing.Easing":{"alias":[],"alternates":[]},"Ext.fx.easing.Linear":{"alias":["easing.linear"],"alternates":[]},"Ext.fx.easing.Momentum":{"alias":[],"alternates":[]},"Ext.fx.layout.Card":{"alias":[],"alternates":[]},"Ext.fx.layout.card.Abstract":{"alias":[],"alternates":[]},"Ext.fx.layout.card.Cover":{"alias":["fx.layout.card.cover"],"alternates":[]},"Ext.fx.layout.card.Cube":{"alias":["fx.layout.card.cube"],"alternates":[]},"Ext.fx.layout.card.Fade":{"alias":["fx.layout.card.fade"],"alternates":[]},"Ext.fx.layout.card.Flip":{"alias":["fx.layout.card.flip"],"alternates":[]},"Ext.fx.layout.card.Pop":{"alias":["fx.layout.card.pop"],"alternates":[]},"Ext.fx.layout.card.Reveal":{"alias":["fx.layout.card.reveal"],"alternates":[]},"Ext.fx.layout.card.Scroll":{"alias":["fx.layout.card.scroll"],"alternates":[]},"Ext.fx.layout.card.ScrollCover":{"alias":["fx.layout.card.scrollcover"],"alternates":[]},"Ext.fx.layout.card.ScrollReveal":{"alias":["fx.layout.card.scrollreveal"],"alternates":[]},"Ext.fx.layout.card.Slide":{"alias":["fx.layout.card.slide"],"alternates":[]},"Ext.fx.layout.card.Style":{"alias":[],"alternates":[]},"Ext.fx.runner.Css":{"alias":[],"alternates":[]},"Ext.fx.runner.CssAnimation":{"alias":[],"alternates":[]},"Ext.fx.runner.CssTransition":{"alias":[],"alternates":["Ext.Animator"]},"Ext.fx.target.Component":{"alias":[],"alternates":[]},"Ext.fx.target.CompositeElement":{"alias":[],"alternates":[]},"Ext.fx.target.CompositeElementCSS":{"alias":[],"alternates":[]},"Ext.fx.target.CompositeSprite":{"alias":[],"alternates":[]},"Ext.fx.target.Element":{"alias":[],"alternates":[]},"Ext.fx.target.ElementCSS":{"alias":[],"alternates":[]},"Ext.fx.target.Sprite":{"alias":[],"alternates":[]},"Ext.fx.target.Target":{"alias":[],"alternates":[]},"Ext.grid.CellContext":{"alias":[],"alternates":[]},"Ext.grid.CellEditor":{"alias":[],"alternates":[]},"Ext.grid.ColumnComponentLayout":{"alias":["layout.columncomponent"],"alternates":[]},"Ext.grid.ColumnLayout":{"alias":["layout.gridcolumn"],"alternates":[]},"Ext.grid.ColumnManager":{"alias":[],"alternates":["Ext.grid.ColumnModel"]},"Ext.grid.NavigationModel":{"alias":["view.navigation.grid"],"alternates":[]},"Ext.grid.Panel":{"alias":["widget.grid","widget.gridpanel"],"alternates":["Ext.list.ListView","Ext.ListView","Ext.grid.GridPanel"]},"Ext.grid.RowEditor":{"alias":["widget.roweditor"],"alternates":[]},"Ext.grid.RowEditorButtons":{"alias":["widget.roweditorbuttons"],"alternates":[]},"Ext.grid.Scroller":{"alias":[],"alternates":[]},"Ext.grid.ViewDropZone":{"alias":[],"alternates":[]},"Ext.grid.column.Action":{"alias":["widget.actioncolumn"],"alternates":["Ext.grid.ActionColumn"]},"Ext.grid.column.Boolean":{"alias":["widget.booleancolumn"],"alternates":["Ext.grid.BooleanColumn"]},"Ext.grid.column.Check":{"alias":["widget.checkcolumn"],"alternates":["Ext.ux.CheckColumn","Ext.grid.column.CheckColumn"]},"Ext.grid.column.Column":{"alias":["widget.gridcolumn"],"alternates":["Ext.grid.Column"]},"Ext.grid.column.Date":{"alias":["widget.datecolumn"],"alternates":["Ext.grid.DateColumn"]},"Ext.grid.column.Number":{"alias":["widget.numbercolumn"],"alternates":["Ext.grid.NumberColumn"]},"Ext.grid.column.RowNumberer":{"alias":["widget.rownumberer"],"alternates":["Ext.grid.RowNumberer"]},"Ext.grid.column.Template":{"alias":["widget.templatecolumn"],"alternates":["Ext.grid.TemplateColumn"]},"Ext.grid.column.Widget":{"alias":["widget.widgetcolumn"],"alternates":[]},"Ext.grid.feature.AbstractSummary":{"alias":["feature.abstractsummary"],"alternates":[]},"Ext.grid.feature.Feature":{"alias":["feature.feature"],"alternates":[]},"Ext.grid.feature.GroupStore":{"alias":[],"alternates":[]},"Ext.grid.feature.Grouping":{"alias":["feature.grouping"],"alternates":[]},"Ext.grid.feature.GroupingSummary":{"alias":["feature.groupingsummary"],"alternates":[]},"Ext.grid.feature.RowBody":{"alias":["feature.rowbody"],"alternates":[]},"Ext.grid.feature.Summary":{"alias":["feature.summary"],"alternates":[]},"Ext.grid.filters.Filters":{"alias":["plugin.gridfilters"],"alternates":[]},"Ext.grid.filters.filter.Base":{"alias":[],"alternates":[]},"Ext.grid.filters.filter.Boolean":{"alias":["grid.filter.boolean"],"alternates":[]},"Ext.grid.filters.filter.Date":{"alias":["grid.filter.date"],"alternates":[]},"Ext.grid.filters.filter.List":{"alias":["grid.filter.list"],"alternates":[]},"Ext.grid.filters.filter.Number":{"alias":["grid.filter.number","grid.filter.numeric"],"alternates":[]},"Ext.grid.filters.filter.SingleFilter":{"alias":[],"alternates":[]},"Ext.grid.filters.filter.String":{"alias":["grid.filter.string"],"alternates":[]},"Ext.grid.filters.filter.TriFilter":{"alias":[],"alternates":[]},"Ext.grid.header.Container":{"alias":["widget.headercontainer"],"alternates":[]},"Ext.grid.header.DragZone":{"alias":[],"alternates":[]},"Ext.grid.header.DropZone":{"alias":[],"alternates":[]},"Ext.grid.locking.HeaderContainer":{"alias":[],"alternates":[]},"Ext.grid.locking.Lockable":{"alias":[],"alternates":["Ext.grid.Lockable"]},"Ext.grid.locking.RowSynchronizer":{"alias":[],"alternates":[]},"Ext.grid.locking.View":{"alias":[],"alternates":["Ext.grid.LockingView"]},"Ext.grid.plugin.BufferedRenderer":{"alias":["plugin.bufferedrenderer"],"alternates":[]},"Ext.grid.plugin.CellEditing":{"alias":["plugin.cellediting"],"alternates":[]},"Ext.grid.plugin.Clipboard":{"alias":["plugin.clipboard"],"alternates":[]},"Ext.grid.plugin.DragDrop":{"alias":["plugin.gridviewdragdrop"],"alternates":[]},"Ext.grid.plugin.Editing":{"alias":["editing.editing"],"alternates":[]},"Ext.grid.plugin.HeaderReorderer":{"alias":["plugin.gridheaderreorderer"],"alternates":[]},"Ext.grid.plugin.HeaderResizer":{"alias":["plugin.gridheaderresizer"],"alternates":[]},"Ext.grid.plugin.RowEditing":{"alias":["plugin.rowediting"],"alternates":[]},"Ext.grid.plugin.RowExpander":{"alias":["plugin.rowexpander"],"alternates":[]},"Ext.grid.property.Grid":{"alias":["widget.propertygrid"],"alternates":["Ext.grid.PropertyGrid"]},"Ext.grid.property.HeaderContainer":{"alias":[],"alternates":["Ext.grid.PropertyColumnModel"]},"Ext.grid.property.Property":{"alias":[],"alternates":["Ext.PropGridProperty"]},"Ext.grid.property.Reader":{"alias":[],"alternates":[]},"Ext.grid.property.Store":{"alias":[],"alternates":["Ext.grid.PropertyStore"]},"Ext.grid.selection.Cells":{"alias":[],"alternates":[]},"Ext.grid.selection.Columns":{"alias":[],"alternates":[]},"Ext.grid.selection.Replicator":{"alias":["plugin.selectionreplicator"],"alternates":[]},"Ext.grid.selection.Rows":{"alias":[],"alternates":[]},"Ext.grid.selection.Selection":{"alias":[],"alternates":[]},"Ext.grid.selection.SelectionExtender":{"alias":[],"alternates":[]},"Ext.grid.selection.SpreadsheetModel":{"alias":["selection.spreadsheet"],"alternates":[]},"Ext.layout.Context":{"alias":[],"alternates":[]},"Ext.layout.ContextItem":{"alias":[],"alternates":[]},"Ext.layout.Layout":{"alias":[],"alternates":[]},"Ext.layout.SizeModel":{"alias":[],"alternates":[]},"Ext.layout.component.Auto":{"alias":["layout.autocomponent"],"alternates":[]},"Ext.layout.component.Body":{"alias":["layout.body"],"alternates":[]},"Ext.layout.component.BoundList":{"alias":["layout.boundlist"],"alternates":[]},"Ext.layout.component.Component":{"alias":[],"alternates":[]},"Ext.layout.component.Dock":{"alias":["layout.dock"],"alternates":["Ext.layout.component.AbstractDock"]},"Ext.layout.component.FieldSet":{"alias":["layout.fieldset"],"alternates":[]},"Ext.layout.component.ProgressBar":{"alias":["layout.progressbar"],"alternates":[]},"Ext.layout.component.field.FieldContainer":{"alias":["layout.fieldcontainer"],"alternates":[]},"Ext.layout.component.field.HtmlEditor":{"alias":["layout.htmleditor"],"alternates":[]},"Ext.layout.container.Absolute":{"alias":["layout.absolute"],"alternates":["Ext.layout.AbsoluteLayout"]},"Ext.layout.container.Accordion":{"alias":["layout.accordion"],"alternates":["Ext.layout.AccordionLayout"]},"Ext.layout.container.Anchor":{"alias":["layout.anchor"],"alternates":["Ext.layout.AnchorLayout"]},"Ext.layout.container.Auto":{"alias":["layout.auto","layout.autocontainer"],"alternates":[]},"Ext.layout.container.Border":{"alias":["layout.border"],"alternates":["Ext.layout.BorderLayout"]},"Ext.layout.container.Box":{"alias":["layout.box"],"alternates":["Ext.layout.BoxLayout"]},"Ext.layout.container.Card":{"alias":["layout.card"],"alternates":["Ext.layout.CardLayout"]},"Ext.layout.container.Center":{"alias":["layout.center","layout.ux.center"],"alternates":["Ext.ux.layout.Center"]},"Ext.layout.container.CheckboxGroup":{"alias":["layout.checkboxgroup"],"alternates":[]},"Ext.layout.container.Column":{"alias":["layout.column"],"alternates":["Ext.layout.ColumnLayout"]},"Ext.layout.container.ColumnSplitter":{"alias":["widget.columnsplitter"],"alternates":[]},"Ext.layout.container.ColumnSplitterTracker":{"alias":[],"alternates":[]},"Ext.layout.container.Container":{"alias":["layout.container"],"alternates":["Ext.layout.ContainerLayout"]},"Ext.layout.container.Dashboard":{"alias":["layout.dashboard"],"alternates":[]},"Ext.layout.container.Editor":{"alias":["layout.editor"],"alternates":[]},"Ext.layout.container.Fit":{"alias":["layout.fit"],"alternates":["Ext.layout.FitLayout"]},"Ext.layout.container.Form":{"alias":["layout.form"],"alternates":["Ext.layout.FormLayout"]},"Ext.layout.container.HBox":{"alias":["layout.hbox"],"alternates":["Ext.layout.HBoxLayout"]},"Ext.layout.container.SegmentedButton":{"alias":["layout.segmentedbutton"],"alternates":[]},"Ext.layout.container.Table":{"alias":["layout.table"],"alternates":["Ext.layout.TableLayout"]},"Ext.layout.container.VBox":{"alias":["layout.vbox"],"alternates":["Ext.layout.VBoxLayout"]},"Ext.layout.container.border.Region":{"alias":[],"alternates":[]},"Ext.layout.container.boxOverflow.Menu":{"alias":["box.overflow.Menu","box.overflow.menu"],"alternates":["Ext.layout.boxOverflow.Menu"]},"Ext.layout.container.boxOverflow.None":{"alias":["box.overflow.None","box.overflow.none"],"alternates":["Ext.layout.boxOverflow.None"]},"Ext.layout.container.boxOverflow.Scroller":{"alias":["box.overflow.Scroller","box.overflow.scroller"],"alternates":["Ext.layout.boxOverflow.Scroller"]},"Ext.list.AbstractTreeItem":{"alias":[],"alternates":[]},"Ext.list.RootTreeItem":{"alias":[],"alternates":[]},"Ext.list.Tree":{"alias":["widget.treelist"],"alternates":[]},"Ext.list.TreeItem":{"alias":["widget.treelistitem"],"alternates":[]},"Ext.menu.CheckItem":{"alias":["widget.menucheckitem"],"alternates":[]},"Ext.menu.ColorPicker":{"alias":["widget.colormenu"],"alternates":[]},"Ext.menu.DatePicker":{"alias":["widget.datemenu"],"alternates":[]},"Ext.menu.Item":{"alias":["widget.menuitem"],"alternates":["Ext.menu.TextItem"]},"Ext.menu.Manager":{"alias":[],"alternates":["Ext.menu.MenuMgr"]},"Ext.menu.Menu":{"alias":["widget.menu"],"alternates":[]},"Ext.menu.Separator":{"alias":["widget.menuseparator"],"alternates":[]},"Ext.mixin.Accessible":{"alias":[],"alternates":[]},"Ext.mixin.Bindable":{"alias":[],"alternates":[]},"Ext.mixin.ComponentDelegation":{"alias":[],"alternates":[]},"Ext.mixin.Container":{"alias":[],"alternates":[]},"Ext.mixin.Factoryable":{"alias":[],"alternates":[]},"Ext.mixin.Hookable":{"alias":[],"alternates":[]},"Ext.mixin.Identifiable":{"alias":[],"alternates":[]},"Ext.mixin.Inheritable":{"alias":[],"alternates":[]},"Ext.mixin.Mashup":{"alias":[],"alternates":[]},"Ext.mixin.Observable":{"alias":[],"alternates":[]},"Ext.mixin.Queryable":{"alias":[],"alternates":[]},"Ext.mixin.Responsive":{"alias":[],"alternates":[]},"Ext.mixin.Selectable":{"alias":[],"alternates":[]},"Ext.mixin.Templatable":{"alias":[],"alternates":[]},"Ext.mixin.Traversable":{"alias":[],"alternates":[]},"Ext.overrides.GlobalEvents":{"alias":[],"alternates":[]},"Ext.overrides.Progress":{"alias":[],"alternates":[]},"Ext.overrides.Widget":{"alias":[],"alternates":[]},"Ext.overrides.app.Application":{"alias":[],"alternates":[]},"Ext.overrides.app.domain.Component":{"alias":[],"alternates":[]},"Ext.overrides.dom.Element":{"alias":[],"alternates":[]},"Ext.overrides.dom.Helper":{"alias":[],"alternates":[]},"Ext.overrides.event.Event":{"alias":[],"alternates":[]},"Ext.overrides.event.publisher.Dom":{"alias":[],"alternates":[]},"Ext.overrides.event.publisher.Gesture":{"alias":[],"alternates":[]},"Ext.overrides.list.TreeItem":{"alias":[],"alternates":[]},"Ext.overrides.plugin.Abstract":{"alias":[],"alternates":[]},"Ext.overrides.util.Positionable":{"alias":[],"alternates":[]},"Ext.panel.Bar":{"alias":[],"alternates":[]},"Ext.panel.DD":{"alias":[],"alternates":[]},"Ext.panel.Header":{"alias":["widget.header"],"alternates":[]},"Ext.panel.Panel":{"alias":["widget.panel"],"alternates":["Ext.Panel"]},"Ext.panel.Pinnable":{"alias":[],"alternates":[]},"Ext.panel.Proxy":{"alias":[],"alternates":["Ext.dd.PanelProxy"]},"Ext.panel.Table":{"alias":["widget.tablepanel"],"alternates":[]},"Ext.panel.Title":{"alias":["widget.title"],"alternates":[]},"Ext.panel.Tool":{"alias":["widget.tool"],"alternates":[]},"Ext.perf.Accumulator":{"alias":[],"alternates":[]},"Ext.perf.Monitor":{"alias":[],"alternates":["Ext.Perf"]},"Ext.picker.Color":{"alias":["widget.colorpicker"],"alternates":["Ext.ColorPalette"]},"Ext.picker.Date":{"alias":["widget.datepicker"],"alternates":["Ext.DatePicker"]},"Ext.picker.Month":{"alias":["widget.monthpicker"],"alternates":["Ext.MonthPicker"]},"Ext.picker.Time":{"alias":["widget.timepicker"],"alternates":[]},"Ext.plugin.Abstract":{"alias":[],"alternates":["Ext.AbstractPlugin"]},"Ext.plugin.AbstractClipboard":{"alias":[],"alternates":[]},"Ext.plugin.LazyItems":{"alias":["plugin.lazyitems"],"alternates":[]},"Ext.plugin.Manager":{"alias":[],"alternates":["Ext.PluginManager","Ext.PluginMgr"]},"Ext.plugin.Responsive":{"alias":["plugin.responsive"],"alternates":[]},"Ext.plugin.Viewport":{"alias":["plugin.viewport"],"alternates":[]},"Ext.promise.Consequence":{"alias":[],"alternates":[]},"Ext.promise.Deferred":{"alias":[],"alternates":[]},"Ext.promise.Promise":{"alias":[],"alternates":[]},"Ext.resizer.BorderSplitter":{"alias":["widget.bordersplitter"],"alternates":[]},"Ext.resizer.BorderSplitterTracker":{"alias":[],"alternates":[]},"Ext.resizer.Handle":{"alias":[],"alternates":[]},"Ext.resizer.ResizeTracker":{"alias":[],"alternates":[]},"Ext.resizer.Resizer":{"alias":[],"alternates":["Ext.Resizable"]},"Ext.resizer.Splitter":{"alias":["widget.splitter"],"alternates":[]},"Ext.resizer.SplitterTracker":{"alias":[],"alternates":[]},"Ext.rtl.Component":{"alias":[],"alternates":[]},"Ext.rtl.button.Button":{"alias":[],"alternates":[]},"Ext.rtl.button.Segmented":{"alias":[],"alternates":[]},"Ext.rtl.dd.DD":{"alias":[],"alternates":[]},"Ext.rtl.dom.Element":{"alias":[],"alternates":[]},"Ext.rtl.event.Event":{"alias":[],"alternates":[]},"Ext.rtl.form.Labelable":{"alias":[],"alternates":[]},"Ext.rtl.form.field.File":{"alias":[],"alternates":[]},"Ext.rtl.form.field.FileButton":{"alias":[],"alternates":[]},"Ext.rtl.form.field.Tag":{"alias":[],"alternates":[]},"Ext.rtl.grid.CellEditor":{"alias":[],"alternates":[]},"Ext.rtl.grid.ColumnLayout":{"alias":[],"alternates":[]},"Ext.rtl.grid.NavigationModel":{"alias":[],"alternates":[]},"Ext.rtl.grid.column.Column":{"alias":[],"alternates":[]},"Ext.rtl.grid.plugin.BufferedRenderer":{"alias":[],"alternates":[]},"Ext.rtl.grid.plugin.HeaderResizer":{"alias":[],"alternates":[]},"Ext.rtl.grid.plugin.RowEditing":{"alias":[],"alternates":[]},"Ext.rtl.layout.ContextItem":{"alias":[],"alternates":[]},"Ext.rtl.layout.component.Dock":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Absolute":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Border":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Box":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Column":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.HBox":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.VBox":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.boxOverflow.Menu":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.boxOverflow.Scroller":{"alias":[],"alternates":[]},"Ext.rtl.panel.Bar":{"alias":[],"alternates":[]},"Ext.rtl.panel.Panel":{"alias":[],"alternates":[]},"Ext.rtl.panel.Title":{"alias":[],"alternates":[]},"Ext.rtl.resizer.BorderSplitterTracker":{"alias":[],"alternates":[]},"Ext.rtl.resizer.ResizeTracker":{"alias":[],"alternates":[]},"Ext.rtl.resizer.SplitterTracker":{"alias":[],"alternates":[]},"Ext.rtl.scroll.DomScroller":{"alias":[],"alternates":[]},"Ext.rtl.scroll.Indicator":{"alias":[],"alternates":[]},"Ext.rtl.scroll.Scroller":{"alias":[],"alternates":[]},"Ext.rtl.scroll.TouchScroller":{"alias":[],"alternates":[]},"Ext.rtl.slider.Multi":{"alias":[],"alternates":[]},"Ext.rtl.tab.Bar":{"alias":[],"alternates":[]},"Ext.rtl.tip.QuickTipManager":{"alias":[],"alternates":[]},"Ext.rtl.tree.Column":{"alias":[],"alternates":[]},"Ext.rtl.util.FocusableContainer":{"alias":[],"alternates":[]},"Ext.rtl.util.Renderable":{"alias":[],"alternates":[]},"Ext.rtl.view.NavigationModel":{"alias":[],"alternates":[]},"Ext.rtl.view.Table":{"alias":[],"alternates":[]},"Ext.scroll.DomScroller":{"alias":["scroller.dom"],"alternates":[]},"Ext.scroll.Indicator":{"alias":["widget.scrollindicator"],"alternates":[]},"Ext.scroll.Scroller":{"alias":["scroller.scroller"],"alternates":[]},"Ext.scroll.TouchScroller":{"alias":["scroller.touch"],"alternates":[]},"Ext.selection.CellModel":{"alias":["selection.cellmodel"],"alternates":[]},"Ext.selection.CheckboxModel":{"alias":["selection.checkboxmodel"],"alternates":[]},"Ext.selection.DataViewModel":{"alias":["selection.dataviewmodel"],"alternates":[]},"Ext.selection.Model":{"alias":["selection.abstract"],"alternates":["Ext.AbstractSelectionModel"]},"Ext.selection.RowModel":{"alias":["selection.rowmodel"],"alternates":[]},"Ext.selection.TreeModel":{"alias":["selection.treemodel"],"alternates":[]},"Ext.slider.Multi":{"alias":["widget.multislider"],"alternates":["Ext.slider.MultiSlider"]},"Ext.slider.Single":{"alias":["widget.slider","widget.sliderfield"],"alternates":["Ext.Slider","Ext.form.SliderField","Ext.slider.SingleSlider","Ext.slider.Slider"]},"Ext.slider.Thumb":{"alias":[],"alternates":[]},"Ext.slider.Tip":{"alias":["widget.slidertip"],"alternates":[]},"Ext.slider.Widget":{"alias":["widget.sliderwidget"],"alternates":[]},"Ext.sparkline.Bar":{"alias":["widget.sparklinebar"],"alternates":[]},"Ext.sparkline.BarBase":{"alias":[],"alternates":[]},"Ext.sparkline.Base":{"alias":[],"alternates":[]},"Ext.sparkline.Box":{"alias":["widget.sparklinebox"],"alternates":[]},"Ext.sparkline.Bullet":{"alias":["widget.sparklinebullet"],"alternates":[]},"Ext.sparkline.CanvasBase":{"alias":[],"alternates":[]},"Ext.sparkline.CanvasCanvas":{"alias":[],"alternates":[]},"Ext.sparkline.Discrete":{"alias":["widget.sparklinediscrete"],"alternates":[]},"Ext.sparkline.Line":{"alias":["widget.sparklineline"],"alternates":[]},"Ext.sparkline.Pie":{"alias":["widget.sparklinepie"],"alternates":[]},"Ext.sparkline.RangeMap":{"alias":[],"alternates":[]},"Ext.sparkline.Shape":{"alias":[],"alternates":[]},"Ext.sparkline.TriState":{"alias":["widget.sparklinetristate"],"alternates":[]},"Ext.sparkline.VmlCanvas":{"alias":[],"alternates":[]},"Ext.state.CookieProvider":{"alias":[],"alternates":[]},"Ext.state.LocalStorageProvider":{"alias":["state.localstorage"],"alternates":[]},"Ext.state.Manager":{"alias":[],"alternates":[]},"Ext.state.Provider":{"alias":[],"alternates":[]},"Ext.state.Stateful":{"alias":[],"alternates":[]},"Ext.tab.Bar":{"alias":["widget.tabbar"],"alternates":[]},"Ext.tab.Panel":{"alias":["widget.tabpanel"],"alternates":["Ext.TabPanel"]},"Ext.tab.Tab":{"alias":["widget.tab"],"alternates":[]},"Ext.theme.crisp.Component":{"idx":1,"alias":[],"alternates":[]},"Ext.theme.crisp.view.Table":{"idx":11,"alias":[],"alternates":[]},"Ext.theme.neptune.Component":{"idx":0,"alias":[],"alternates":[]},"Ext.theme.neptune.container.ButtonGroup":{"idx":6,"alias":[],"alternates":[]},"Ext.theme.neptune.form.field.HtmlEditor":{"idx":9,"alias":[],"alternates":[]},"Ext.theme.neptune.grid.RowEditor":{"idx":12,"alias":[],"alternates":[]},"Ext.theme.neptune.grid.column.RowNumberer":{"idx":13,"alias":[],"alternates":[]},"Ext.theme.neptune.layout.component.Dock":{"idx":4,"alias":[],"alternates":[]},"Ext.theme.neptune.menu.Menu":{"idx":15,"alias":[],"alternates":[]},"Ext.theme.neptune.menu.Separator":{"idx":14,"alias":[],"alternates":[]},"Ext.theme.neptune.panel.Panel":{"idx":5,"alias":[],"alternates":[]},"Ext.theme.neptune.panel.Table":{"idx":10,"alias":[],"alternates":[]},"Ext.theme.neptune.picker.Month":{"idx":8,"alias":[],"alternates":[]},"Ext.theme.neptune.resizer.Splitter":{"idx":2,"alias":[],"alternates":[]},"Ext.theme.neptune.toolbar.Paging":{"idx":7,"alias":[],"alternates":[]},"Ext.theme.neptune.toolbar.Toolbar":{"idx":3,"alias":[],"alternates":[]},"Ext.tip.QuickTip":{"alias":["widget.quicktip"],"alternates":["Ext.QuickTip"]},"Ext.tip.QuickTipManager":{"alias":[],"alternates":["Ext.QuickTips"]},"Ext.tip.Tip":{"alias":["widget.tip"],"alternates":["Ext.Tip"]},"Ext.tip.ToolTip":{"alias":["widget.tooltip"],"alternates":["Ext.ToolTip"]},"Ext.toolbar.Breadcrumb":{"alias":["widget.breadcrumb"],"alternates":[]},"Ext.toolbar.Fill":{"alias":["widget.tbfill"],"alternates":["Ext.Toolbar.Fill"]},"Ext.toolbar.Item":{"alias":["widget.tbitem"],"alternates":["Ext.Toolbar.Item"]},"Ext.toolbar.Paging":{"alias":["widget.pagingtoolbar"],"alternates":["Ext.PagingToolbar"]},"Ext.toolbar.Separator":{"alias":["widget.tbseparator"],"alternates":["Ext.Toolbar.Separator"]},"Ext.toolbar.Spacer":{"alias":["widget.tbspacer"],"alternates":["Ext.Toolbar.Spacer"]},"Ext.toolbar.TextItem":{"alias":["widget.tbtext"],"alternates":["Ext.Toolbar.TextItem"]},"Ext.toolbar.Toolbar":{"alias":["widget.toolbar"],"alternates":["Ext.Toolbar"]},"Ext.tree.Column":{"alias":["widget.treecolumn"],"alternates":[]},"Ext.tree.NavigationModel":{"alias":["view.navigation.tree"],"alternates":[]},"Ext.tree.Panel":{"alias":["widget.treepanel"],"alternates":["Ext.tree.TreePanel","Ext.TreePanel"]},"Ext.tree.View":{"alias":["widget.treeview"],"alternates":[]},"Ext.tree.ViewDragZone":{"alias":[],"alternates":[]},"Ext.tree.ViewDropZone":{"alias":[],"alternates":[]},"Ext.tree.plugin.TreeViewDragDrop":{"alias":["plugin.treeviewdragdrop"],"alternates":[]},"Ext.util.AbstractMixedCollection":{"alias":[],"alternates":[]},"Ext.util.Animate":{"alias":[],"alternates":[]},"Ext.util.Bag":{"alias":[],"alternates":[]},"Ext.util.Base64":{"alias":[],"alternates":[]},"Ext.util.CSS":{"alias":[],"alternates":[]},"Ext.util.CSV":{"alias":[],"alternates":[]},"Ext.util.ClickRepeater":{"alias":[],"alternates":[]},"Ext.util.Collection":{"alias":[],"alternates":[]},"Ext.util.CollectionKey":{"alias":[],"alternates":[]},"Ext.util.ComponentDragger":{"alias":[],"alternates":[]},"Ext.util.Cookies":{"alias":[],"alternates":[]},"Ext.util.DelimitedValue":{"alias":[],"alternates":[]},"Ext.util.ElementContainer":{"alias":[],"alternates":[]},"Ext.util.Event":{"alias":[],"alternates":[]},"Ext.util.Filter":{"alias":[],"alternates":[]},"Ext.util.FilterCollection":{"alias":[],"alternates":[]},"Ext.util.Floating":{"alias":[],"alternates":[]},"Ext.util.FocusTrap":{"alias":[],"alternates":[]},"Ext.util.Focusable":{"alias":[],"alternates":[]},"Ext.util.FocusableContainer":{"alias":[],"alternates":[]},"Ext.util.Format":{"alias":[],"alternates":[]},"Ext.util.Group":{"alias":[],"alternates":[]},"Ext.util.GroupCollection":{"alias":[],"alternates":[]},"Ext.util.Grouper":{"alias":[],"alternates":[]},"Ext.util.HashMap":{"alias":[],"alternates":[]},"Ext.util.History":{"alias":[],"alternates":["Ext.History"]},"Ext.util.Inflector":{"alias":[],"alternates":[]},"Ext.util.ItemCollection":{"alias":[],"alternates":["Ext.ItemCollection"]},"Ext.util.KeyMap":{"alias":[],"alternates":["Ext.KeyMap"]},"Ext.util.KeyNav":{"alias":[],"alternates":["Ext.KeyNav"]},"Ext.util.KeyboardInteractive":{"alias":[],"alternates":[]},"Ext.util.LocalStorage":{"alias":[],"alternates":[]},"Ext.util.LruCache":{"alias":[],"alternates":[]},"Ext.util.Memento":{"alias":[],"alternates":[]},"Ext.util.MixedCollection":{"alias":[],"alternates":[]},"Ext.util.ObjectTemplate":{"alias":[],"alternates":[]},"Ext.util.Observable":{"alias":[],"alternates":[]},"Ext.util.Offset":{"alias":[],"alternates":[]},"Ext.util.PaintMonitor":{"alias":[],"alternates":[]},"Ext.util.Point":{"alias":[],"alternates":[]},"Ext.util.Positionable":{"alias":[],"alternates":[]},"Ext.util.ProtoElement":{"alias":[],"alternates":[]},"Ext.util.Queue":{"alias":[],"alternates":[]},"Ext.util.Region":{"alias":[],"alternates":[]},"Ext.util.Renderable":{"alias":[],"alternates":[]},"Ext.util.Schedulable":{"alias":[],"alternates":[]},"Ext.util.Scheduler":{"alias":[],"alternates":[]},"Ext.util.SizeMonitor":{"alias":[],"alternates":[]},"Ext.util.Sortable":{"alias":[],"alternates":[]},"Ext.util.Sorter":{"alias":[],"alternates":[]},"Ext.util.SorterCollection":{"alias":[],"alternates":[]},"Ext.util.StoreHolder":{"alias":[],"alternates":[]},"Ext.util.TSV":{"alias":[],"alternates":[]},"Ext.util.TaskManager":{"alias":[],"alternates":["Ext.TaskManager"]},"Ext.util.TaskRunner":{"alias":[],"alternates":[]},"Ext.util.TextMetrics":{"alias":[],"alternates":[]},"Ext.util.Translatable":{"alias":[],"alternates":[]},"Ext.util.XTemplateCompiler":{"alias":[],"alternates":[]},"Ext.util.XTemplateParser":{"alias":[],"alternates":[]},"Ext.util.paintmonitor.Abstract":{"alias":[],"alternates":[]},"Ext.util.paintmonitor.CssAnimation":{"alias":[],"alternates":[]},"Ext.util.paintmonitor.OverflowChange":{"alias":[],"alternates":[]},"Ext.util.sizemonitor.Abstract":{"alias":[],"alternates":[]},"Ext.util.sizemonitor.OverflowChange":{"alias":[],"alternates":[]},"Ext.util.sizemonitor.Scroll":{"alias":[],"alternates":[]},"Ext.util.translatable.Abstract":{"alias":[],"alternates":[]},"Ext.util.translatable.CssPosition":{"alias":[],"alternates":[]},"Ext.util.translatable.CssTransform":{"alias":[],"alternates":[]},"Ext.util.translatable.Dom":{"alias":[],"alternates":[]},"Ext.util.translatable.ScrollParent":{"alias":[],"alternates":[]},"Ext.util.translatable.ScrollPosition":{"alias":[],"alternates":[]},"Ext.ux.BoxReorderer":{"idx":28,"alias":[],"alternates":[]},"Ext.ux.CellDragDrop":{"idx":29,"alias":["plugin.celldragdrop"],"alternates":[]},"Ext.ux.DataTip":{"idx":30,"alias":["plugin.datatip"],"alternates":[]},"Ext.ux.DataView.Animated":{"idx":31,"alias":[],"alternates":[]},"Ext.ux.DataView.DragSelector":{"idx":32,"alias":[],"alternates":[]},"Ext.ux.DataView.Draggable":{"idx":33,"alias":[],"alternates":[]},"Ext.ux.DataView.LabelEditor":{"idx":34,"alias":[],"alternates":[]},"Ext.ux.Explorer":{"idx":36,"alias":["widget.explorer"],"alternates":[]},"Ext.ux.FieldReplicator":{"idx":37,"alias":["plugin.fieldreplicator"],"alternates":[]},"Ext.ux.GMapPanel":{"idx":38,"alias":["widget.gmappanel"],"alternates":[]},"Ext.ux.GroupTabPanel":{"idx":40,"alias":["widget.grouptabpanel"],"alternates":[]},"Ext.ux.GroupTabRenderer":{"idx":39,"alias":["plugin.grouptabrenderer"],"alternates":[]},"Ext.ux.IFrame":{"idx":41,"alias":["widget.uxiframe"],"alternates":[]},"Ext.ux.LiveSearchGridPanel":{"idx":43,"alias":[],"alternates":[]},"Ext.ux.PreviewPlugin":{"idx":44,"alias":["plugin.preview"],"alternates":[]},"Ext.ux.ProgressBarPager":{"idx":45,"alias":[],"alternates":[]},"Ext.ux.RowExpander":{"idx":46,"alias":[],"alternates":[]},"Ext.ux.SlidingPager":{"idx":47,"alias":[],"alternates":[]},"Ext.ux.Spotlight":{"idx":48,"alias":[],"alternates":[]},"Ext.ux.TabCloseMenu":{"idx":49,"alias":["plugin.tabclosemenu"],"alternates":[]},"Ext.ux.TabReorderer":{"idx":50,"alias":["plugin.tabreorderer"],"alternates":[]},"Ext.ux.TabScrollerMenu":{"idx":51,"alias":["plugin.tabscrollermenu"],"alternates":[]},"Ext.ux.ToolbarDroppable":{"idx":52,"alias":[],"alternates":[]},"Ext.ux.TreePicker":{"idx":53,"alias":["widget.treepicker"],"alternates":[]},"Ext.ux.ajax.DataSimlet":{"idx":17,"alias":[],"alternates":[]},"Ext.ux.ajax.JsonSimlet":{"idx":18,"alias":["simlet.json"],"alternates":[]},"Ext.ux.ajax.SimManager":{"idx":20,"alias":[],"alternates":[]},"Ext.ux.ajax.SimXhr":{"idx":19,"alias":[],"alternates":[]},"Ext.ux.ajax.Simlet":{"idx":16,"alias":["simlet.basic"],"alternates":[]},"Ext.ux.ajax.XmlSimlet":{"idx":21,"alias":["simlet.xml"],"alternates":[]},"Ext.ux.colorpick.Button":{"idx":69,"alias":["widget.colorbutton"],"alternates":[]},"Ext.ux.colorpick.ButtonController":{"idx":68,"alias":["controller.colorpick-buttoncontroller"],"alternates":[]},"Ext.ux.colorpick.ColorMap":{"idx":57,"alias":["widget.colorpickercolormap"],"alternates":[]},"Ext.ux.colorpick.ColorMapController":{"idx":56,"alias":["controller.colorpickercolormapcontroller"],"alternates":[]},"Ext.ux.colorpick.ColorPreview":{"idx":60,"alias":["widget.colorpickercolorpreview"],"alternates":[]},"Ext.ux.colorpick.ColorUtils":{"idx":55,"alias":[],"alternates":[]},"Ext.ux.colorpick.Field":{"idx":70,"alias":["widget.colorfield"],"alternates":[]},"Ext.ux.colorpick.Selection":{"idx":54,"alias":[],"alternates":[]},"Ext.ux.colorpick.Selector":{"idx":67,"alias":["widget.colorselector"],"alternates":[]},"Ext.ux.colorpick.SelectorController":{"idx":59,"alias":["controller.colorpick-selectorcontroller"],"alternates":[]},"Ext.ux.colorpick.SelectorModel":{"idx":58,"alias":["viewmodel.colorpick-selectormodel"],"alternates":[]},"Ext.ux.colorpick.Slider":{"idx":62,"alias":["widget.colorpickerslider"],"alternates":[]},"Ext.ux.colorpick.SliderAlpha":{"idx":63,"alias":["widget.colorpickerslideralpha"],"alternates":[]},"Ext.ux.colorpick.SliderController":{"idx":61,"alias":["controller.colorpick-slidercontroller"],"alternates":[]},"Ext.ux.colorpick.SliderHue":{"idx":66,"alias":["widget.colorpickersliderhue"],"alternates":[]},"Ext.ux.colorpick.SliderSaturation":{"idx":64,"alias":["widget.colorpickerslidersaturation"],"alternates":[]},"Ext.ux.colorpick.SliderValue":{"idx":65,"alias":["widget.colorpickerslidervalue"],"alternates":[]},"Ext.ux.dashboard.GoogleRssPart":{"idx":72,"alias":["part.google-rss"],"alternates":[]},"Ext.ux.dashboard.GoogleRssView":{"idx":71,"alias":[],"alternates":[]},"Ext.ux.data.PagingMemoryProxy":{"idx":73,"alias":["proxy.pagingmemory"],"alternates":["Ext.data.PagingMemoryProxy"]},"Ext.ux.dd.CellFieldDropZone":{"idx":74,"alias":[],"alternates":[]},"Ext.ux.dd.PanelFieldDragZone":{"idx":75,"alias":[],"alternates":[]},"Ext.ux.desktop.App":{"idx":77,"alias":[],"alternates":[]},"Ext.ux.desktop.Desktop":{"idx":76,"alias":["widget.desktop"],"alternates":[]},"Ext.ux.desktop.Module":{"idx":78,"alias":[],"alternates":[]},"Ext.ux.desktop.ShortcutModel":{"idx":79,"alias":[],"alternates":[]},"Ext.ux.desktop.StartMenu":{"idx":80,"alias":[],"alternates":[]},"Ext.ux.desktop.TaskBar":{"idx":81,"alias":["widget.taskbar"],"alternates":[]},"Ext.ux.desktop.TrayClock":{"idx":81,"alias":["widget.trayclock"],"alternates":[]},"Ext.ux.desktop.Video":{"idx":82,"alias":["widget.video"],"alternates":[]},"Ext.ux.desktop.Wallpaper":{"idx":83,"alias":["widget.wallpaper"],"alternates":[]},"Ext.ux.event.Driver":{"idx":22,"alias":[],"alternates":[]},"Ext.ux.event.Maker":{"idx":23,"alias":[],"alternates":[]},"Ext.ux.event.Player":{"idx":24,"alias":[],"alternates":[]},"Ext.ux.event.Recorder":{"idx":25,"alias":[],"alternates":[]},"Ext.ux.event.RecorderManager":{"idx":84,"alias":["widget.eventrecordermanager"],"alternates":[]},"Ext.ux.form.ItemSelector":{"idx":86,"alias":["widget.itemselector","widget.itemselectorfield"],"alternates":["Ext.ux.ItemSelector"]},"Ext.ux.form.MultiSelect":{"idx":85,"alias":["widget.multiselect","widget.multiselectfield"],"alternates":["Ext.ux.Multiselect"]},"Ext.ux.form.SearchField":{"idx":87,"alias":["widget.searchfield"],"alternates":[]},"Ext.ux.google.Api":{"idx":26,"alias":[],"alternates":[]},"Ext.ux.google.Feeds":{"idx":27,"alias":[],"alternates":[]},"Ext.ux.grid.SubTable":{"idx":88,"alias":["plugin.subtable"],"alternates":[]},"Ext.ux.grid.TransformGrid":{"idx":89,"alias":[],"alternates":[]},"Ext.ux.layout.ResponsiveColumn":{"idx":90,"alias":["layout.responsivecolumn"],"alternates":[]},"Ext.ux.rating.Picker":{"idx":91,"alias":["widget.rating"],"alternates":[]},"Ext.ux.statusbar.StatusBar":{"idx":42,"alias":["widget.statusbar"],"alternates":["Ext.ux.StatusBar"]},"Ext.ux.statusbar.ValidationStatus":{"idx":92,"alias":[],"alternates":[]},"Ext.view.AbstractView":{"alias":[],"alternates":[]},"Ext.view.BoundList":{"alias":["widget.boundlist"],"alternates":["Ext.BoundList"]},"Ext.view.BoundListKeyNav":{"alias":["view.navigation.boundlist"],"alternates":[]},"Ext.view.DragZone":{"alias":[],"alternates":[]},"Ext.view.DropZone":{"alias":[],"alternates":[]},"Ext.view.MultiSelector":{"alias":["widget.multiselector"],"alternates":[]},"Ext.view.MultiSelectorSearch":{"alias":["widget.multiselector-search"],"alternates":[]},"Ext.view.NavigationModel":{"alias":["view.navigation.default"],"alternates":[]},"Ext.view.NodeCache":{"alias":[],"alternates":[]},"Ext.view.Table":{"alias":["widget.gridview","widget.tableview"],"alternates":["Ext.grid.View"]},"Ext.view.TableLayout":{"alias":["layout.tableview"],"alternates":[]},"Ext.view.View":{"alias":["widget.dataview"],"alternates":["Ext.DataView"]},"Ext.window.MessageBox":{"alias":["widget.messagebox"],"alternates":[]},"Ext.window.Toast":{"alias":["widget.toast"],"alternates":[]},"Ext.window.Window":{"alias":["widget.window"],"alternates":["Ext.Window"]},"aladin.Aladin":{"idx":291,"alias":["widget.aladin"],"alternates":[]},"aladin.Events":{"idx":285,"alias":[],"alternates":[]},"aladin.Interfaces":{"idx":290,"alias":[],"alternates":[]},"aladin.maps.MapSelectionController":{"idx":288,"alias":["controller.mapselection"],"alternates":[]},"aladin.maps.MapSelectionViewModel":{"idx":294,"alias":["viewmodel.mapselection"],"alternates":[]},"aladin.maps.MapSelectionWindow":{"idx":289,"alias":["widget.aladin-maps-mapselectionwindow"],"alternates":[]},"aladin.model.Image":{"idx":286,"alias":[],"alternates":[]},"aladin.store.Images":{"idx":287,"alias":["store.aladin_images"],"alternates":[]},"common.BandFilter":{"idx":93,"alias":["widget.bandfilter"],"alternates":["Portal.BandFilter"]},"common.SearchField":{"idx":94,"alias":["widget.common-searchfield"],"alternates":[]},"common.ToolbarController":{"idx":108,"alias":["controller.toolbar"],"alternates":[]},"common.comment.CommentsObject":{"idx":172,"alias":["widget.comments-object"],"alternates":[]},"common.comment.CommentsObjectController":{"idx":171,"alias":["controller.comment-object"],"alternates":[]},"common.comment.CommentsObjectModel":{"idx":170,"alias":["viewmodel.comment-object"],"alternates":[]},"common.contact.Contact":{"idx":104,"alias":["widget.form-contact-window"],"alternates":[]},"common.contact.ContactController":{"idx":103,"alias":["controller.contact"],"alternates":[]},"common.data.Settings":{"idx":105,"alias":[],"alternates":["Settings"]},"common.data.proxy.CrsfToken":{"idx":95,"alias":[],"alternates":[]},"common.data.proxy.Django":{"idx":96,"alias":["proxy.django"],"alternates":[]},"common.footer.Footer":{"idx":107,"alias":["widget.dri-footer"],"alternates":[]},"common.footer.FooterController":{"idx":106,"alias":["controller.footer"],"alternates":[]},"common.header.Toolbar":{"idx":111,"alias":["widget.dri-header"],"alternates":[]},"common.help.Tutorials":{"idx":110,"alias":["widget.tutorials-window"],"alternates":[]},"common.help.TutorialsController":{"idx":109,"alias":["controller.tutorials"],"alternates":[]},"common.link.LinkPrompt":{"idx":112,"alias":[],"alternates":[]},"common.model.CommentObject":{"idx":99,"alias":[],"alternates":[]},"common.model.CommentPosition":{"idx":113,"alias":[],"alternates":[]},"common.model.Dataset":{"idx":114,"alias":[],"alternates":[]},"common.model.Filter":{"idx":115,"alias":[],"alternates":[]},"common.model.Footprint":{"idx":116,"alias":[],"alternates":[]},"common.model.Map":{"idx":117,"alias":[],"alternates":[]},"common.model.Release":{"idx":118,"alias":[],"alternates":[]},"common.model.Survey":{"idx":119,"alias":[],"alternates":[]},"common.model.Tag":{"idx":120,"alias":[],"alternates":[]},"common.model.Tile":{"idx":121,"alias":[],"alternates":[]},"common.statistics.Events":{"idx":122,"alias":[],"alternates":[]},"common.store.CSVDelimiters":{"idx":123,"alias":[],"alternates":[]},"common.store.CommentsObjects":{"idx":98,"alias":["store.comments-objects"],"alternates":[]},"common.store.CommentsPosition":{"idx":124,"alias":["store.comments-position"],"alternates":[]},"common.store.Datasets":{"idx":126,"alias":["store.datasets"],"alternates":[]},"common.store.Fields":{"idx":127,"alias":["store.fields"],"alternates":[]},"common.store.Filters":{"idx":128,"alias":["store.filters"],"alternates":[]},"common.store.Footprints":{"idx":129,"alias":["store.footprints"],"alternates":[]},"common.store.Maps":{"idx":130,"alias":["store.maps"],"alternates":[]},"common.store.MyStore":{"idx":97,"alias":[],"alternates":[]},"common.store.MyTreeStore":{"idx":131,"alias":[],"alternates":[]},"common.store.Releases":{"idx":132,"alias":["store.releases"],"alternates":[]},"common.store.Surveys":{"idx":133,"alias":["store.surveys"],"alternates":[]},"common.store.Tags":{"idx":134,"alias":["store.tags"],"alternates":[]},"common.store.Tiles":{"idx":125,"alias":["store.tiles"],"alternates":[]},"common.store.Tutorials":{"idx":135,"alias":["store.tutorials"],"alternates":[]},"common.store.UsersSameGroup":{"idx":136,"alias":["store.users_same_group"],"alternates":[]},"common.token.GetToken":{"idx":137,"alias":[],"alternates":[]},"visiomatic.Comments":{"idx":138,"alias":[],"alternates":[]},"visiomatic.Interface":{"idx":139,"alias":[],"alternates":[]},"visiomatic.Visiomatic":{"idx":169,"alias":["widget.visiomatic"],"alternates":[]},"visiomatic.VisiomaticController":{"idx":143,"alias":["controller.visiomatic"],"alternates":[]},"visiomatic.VisiomaticModel":{"idx":142,"alias":["viewmodel.visiomatic"],"alternates":[]},"visiomatic.catalog.CatalogController":{"idx":160,"alias":["controller.catalogoverlay"],"alternates":[]},"visiomatic.catalog.CatalogOverlayWindow":{"idx":163,"alias":["widget.visiomatic-catalog-overlay"],"alternates":[]},"visiomatic.catalog.CatalogViewModel":{"idx":150,"alias":["viewmodel.catalogoverlay"],"alternates":[]},"visiomatic.catalog.Catalogs":{"idx":144,"alias":["widget.visiomatic-catalogs-tree"],"alternates":[]},"visiomatic.catalog.OverlayGrid":{"idx":162,"alias":["widget.visiomatic-catalogs-overlays-grid"],"alternates":[]},"visiomatic.catalog.Submit":{"idx":161,"alias":["widget.visiomatic-catalogs-submit"],"alternates":[]},"visiomatic.comment.CommentsPosition":{"idx":175,"alias":["widget.comments-position"],"alternates":[]},"visiomatic.comment.CommentsPositionController":{"idx":174,"alias":["controller.comment-position"],"alternates":[]},"visiomatic.comment.CommentsPositionModel":{"idx":173,"alias":["viewmodel.comment-position"],"alternates":[]},"visiomatic.crop.CropWindow":{"idx":176,"alias":["widget.target-download-crop"],"alternates":[]},"visiomatic.download.DescutDownloadWindow":{"idx":168,"alias":["widget.target-download-descut"],"alternates":[]},"visiomatic.download.FitsController":{"idx":164,"alias":["controller.fits-files"],"alternates":[]},"visiomatic.download.FitsModel":{"idx":167,"alias":["viewmodel.fits-files"],"alternates":[]},"visiomatic.filter.FiltersController":{"idx":155,"alias":["controller.overlay_filters"],"alternates":[]},"visiomatic.filter.FiltersModel":{"idx":158,"alias":["viewmodel.overlay_filters"],"alternates":[]},"visiomatic.filter.FiltersWindow":{"idx":159,"alias":["widget.overlay-filters-window"],"alternates":[]},"visiomatic.model.CatalogContent":{"idx":156,"alias":[],"alternates":[]},"visiomatic.model.CatalogTree":{"idx":145,"alias":[],"alternates":[]},"visiomatic.model.FilterCondition":{"idx":148,"alias":[],"alternates":[]},"visiomatic.model.FitsFiles":{"idx":165,"alias":[],"alternates":[]},"visiomatic.model.Object":{"idx":151,"alias":[],"alternates":[]},"visiomatic.model.Overlay":{"idx":154,"alias":[],"alternates":[]},"visiomatic.store.CatalogsTree":{"idx":146,"alias":["store.catalogs-overlay-tree"],"alternates":[]},"visiomatic.store.ExternalObjects":{"idx":153,"alias":["store.overlay-external-objects"],"alternates":[]},"visiomatic.store.FilterConditions":{"idx":149,"alias":["store.overlay-filter-conditions"],"alternates":[]},"visiomatic.store.FitsFiles":{"idx":166,"alias":["store.fits-files"],"alternates":[]},"visiomatic.store.Objects":{"idx":152,"alias":["store.overlay-objects"],"alternates":[]},"visiomatic.store.Overlays":{"idx":147,"alias":["store.overlays"],"alternates":[]},"visiomatic.store.ProductDisplayContents":{"idx":157,"alias":["store.overlay-product-display-contents"],"alternates":[]}},"packages":{"aladin":{"css":true,"included":true,"required":true,"requires":["ext","core","classic","ux","common"],"version":"1.0.0"},"charts":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic"],"version":"6.0.1.250"},"classic":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core"],"version":"6.0.1.250"},"cmd":{"current":"6.5.1.240","version":"6.5.3.6"},"common":{"css":true,"included":true,"required":true,"requires":["ext","core","classic","ux"],"version":"1.0.0"},"core":{"css":true,"included":true,"required":true,"requires":["ext","classic"],"version":"6.0.1.250"},"ext":{"css":true,"included":true,"license":"gpl","namespace":"Ext","required":true,"requires":[],"version":"6.0.1.250"},"font-awesome":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base","theme-neutral","theme-neptune"],"theme":"theme-neptune","version":"6.0.1.250"},"theme-base":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic"],"version":"6.0.1.250"},"theme-crisp":{"css":true,"extend":"theme-neptune","included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base","theme-neutral","theme-neptune"],"version":"6.0.1.250"},"theme-neptune":{"css":true,"extend":"theme-neutral","included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base","theme-neutral"],"version":"6.0.1.250"},"theme-neutral":{"css":true,"extend":"theme-base","included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base"],"version":"6.0.1.250"},"ux":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic"],"version":"6.0.1.250"},"visiomatic":{"css":true,"included":true,"namespace":"visiomatic","required":true,"requires":["ext","core","classic"],"version":"1.0.0"}},"js":[{"path":"resources/d3/d3.v4.min.js"},{"path":"resources/d3/d3-container.v0.0.1.min.js"},{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jquery-min.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot-min.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic-src.js"},{"path":"../packages/local/aladin/src/aladin/aladin-min.js"},{"isSdk":true,"path":"../ext/build/ext-all-rtl-debug.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/Component.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/container/ButtonGroup.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/form/field/HtmlEditor.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/grid/RowEditor.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/grid/column/RowNumberer.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/layout/component/Dock.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/menu/Menu.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/menu/Separator.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/panel/Panel.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/panel/Table.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/picker/Month.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/resizer/Splitter.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/toolbar/Paging.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/toolbar/Toolbar.js"},{"bootstrap":true,"path":"../ext/classic/theme-crisp/overrides/Component.js"},{"bootstrap":true,"path":"../ext/classic/theme-crisp/overrides/view/Table.js"},{"bootstrap":true,"path":"../ext/packages/charts/classic/overrides/AbstractChart.js"},{"bootstrap":true,"remote":true,"platform":["fashion"],"isSdk":false,"path":"../../../../~cmd/extensions/sencha-fashion/fashion/fashion.js/"},{"bootstrap":true,"remote":true,"platform":["fashion"],"isSdk":false,"path":"../../../../~cmd/extensions/sencha-fashion/sass-compiler.js/"},{"path":"app.js"}],"css":[{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet.css"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic.css"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum.css"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot.css"},{"path":"../packages/local/aladin/src/aladin/aladin-min.css"},{"remote":false,"exclude":["fashion"],"path":"../build/development/Explorer/resources/Explorer-all_1.css"},{"remote":false,"exclude":["fashion"],"path":"../build/development/Explorer/resources/Explorer-all_2.css"}],"cache":{"enable":false,"deltas":true},"fashion":{"inliner":{"enable":false}},"name":"Explorer","version":"1.0.0.0","framework":"ext","toolkit":"classic","theme":"theme-crisp","loader":{"cache":false,"cacheParam":"_dc"},"id":"1739eae9-ca05-49a0-800a-3c2bd487fa19","tags":[],"apiBaseUrl":"http://localhost","profile":"","hash":"903916a58073378b6d1cdb64aead780a5247f4e0","resources":{"path":"../build/development/Explorer/resources"}}); \ No newline at end of file diff --git a/frontend/packages/local/common/src/model/Database.js b/frontend/packages/local/common/src/model/Database.js new file mode 100644 index 000000000..a2c8477ad --- /dev/null +++ b/frontend/packages/local/common/src/model/Database.js @@ -0,0 +1,9 @@ +Ext.define('common.model.Database', { + + extend: 'Ext.data.Model', + + fields: [ + {name:'name', type:'string'}, + {name:'display_name', type:'string'}, + ] +}); diff --git a/frontend/packages/local/common/src/store/Databases.js b/frontend/packages/local/common/src/store/Databases.js new file mode 100644 index 000000000..814b967dc --- /dev/null +++ b/frontend/packages/local/common/src/store/Databases.js @@ -0,0 +1,25 @@ +Ext.define('common.store.Databases', { + extend: 'common.store.MyStore', + + alias: 'store.databases', + + model: 'common.model.Database', + + autoLoad: true, + + remoteSort: false, + + remoteFilter: false, + + proxy: { + type: 'django', + url: '/dri/api/available_database/' + }, + + sorters: [ + { + property: 'display_name', + direction: 'ASC' + }, + ] +}); diff --git a/frontend/packages/local/visiomatic/src/Visiomatic.js b/frontend/packages/local/visiomatic/src/Visiomatic.js index 285415319..a608f159b 100755 --- a/frontend/packages/local/visiomatic/src/Visiomatic.js +++ b/frontend/packages/local/visiomatic/src/Visiomatic.js @@ -7,7 +7,8 @@ Ext.define('visiomatic.Visiomatic', { 'visiomatic.catalog.CatalogOverlayWindow', 'visiomatic.contrast.ContrastWindow', 'visiomatic.download.DescutDownloadWindow', - 'common.store.CommentsPosition' + 'common.store.CommentsPosition', + 'visiomatic.store.XrayContours' ], mixins: { @@ -1908,6 +1909,104 @@ Ext.define('visiomatic.Visiomatic', { return null; } - } + }, + + /** + * Desenha objeto de contorno + * @param {Model/Array[ra,dec]} object - uma instancia de model com + * atributos ra e dec ou um array com [ra, dec] + * @return {I.GroupLayer} Return crosshair a groupLayer + */ + drawXrayContours: function (ra, dec, options) { + console.log("drawXrayContours") + + var me = this, + l = me.libL, + map = me.getMap(), + layer = null, + labelOptions, centerPadding, size, latlng, + lineTop, lineBottom, lineLeft, lineRight; + + labelOptions = { + color: '#FF4500', + weight: 2, + smoothFactor: 1, + }; + + if (options) { + labelOptions = Ext.Object.merge(labelOptions, options); + } + + // Verificar se ja contours + if (me.lContours) { + if (map.hasLayer(me.lContours)) { + // se ja houver remove do map + map.removeLayer(me.lContours); + me.lContours = null; + } + } + + var contours = [{"color":"#000080","count_points":0,"count_polygons":0,"curves":[],"index":0,"temperature":0.05},{"color":"#0000cd","count_points":0,"count_polygons":0,"curves":[],"index":1,"temperature":0.08},{"color":"#0000f1","count_points":0,"count_polygons":0,"curves":[],"index":2,"temperature":0.1},{"color":"#004cff","count_points":0,"count_polygons":0,"curves":[],"index":3,"temperature":0.2},{"color":"#0088ff","count_points":0,"count_polygons":0,"curves":[],"index":4,"temperature":0.3},{"color":"#00b4ff","count_points":0,"count_polygons":0,"curves":[],"index":5,"temperature":0.4},{"color":"#00d4ff","count_points":0,"count_polygons":0,"curves":[],"index":6,"temperature":0.5},{"color":"#09f0ee","count_points":0,"count_polygons":0,"curves":[],"index":7,"temperature":0.6},{"color":"#19ffde","count_points":0,"count_polygons":0,"curves":[],"index":8,"temperature":0.7},{"color":"#29ffce","count_points":13,"count_polygons":1,"curves":[[[356.14985319782784,-42.619858638644594],[356.15034397346864,-42.62107443699843],[356.1503809238733,-42.62115550202114],[356.1512103524716,-42.622290341814775],[356.15162777188954,-42.62350611378624],[356.152031546922,-42.62390526779316],[356.1536836968146,-42.62384614358282],[356.1539317681669,-42.623506743915094],[356.15372932058114,-42.62229103752421],[356.15368451191534,-42.62218783200245],[356.1527752652214,-42.62107512773587],[356.1520336078404,-42.619927370187376],[356.1519007600353,-42.61985923251684]]],"index":9,"temperature":0.8},{"color":"#39ffbe","count_points":25,"count_polygons":2,"curves":[[[356.3176420434388,-42.8095025509619],[356.3163095200609,-42.81064577955541],[356.31635792485326,-42.81186137731685],[356.31680649026924,-42.8130765140493],[356.31753760244015,-42.81429132154956],[356.3176526405273,-42.814423225391856]],[[356.1469221283988,-42.619857725067966],[356.14707747387024,-42.62007598119608],[356.147890817741,-42.62107368794679],[356.14863021713325,-42.6222895720037],[356.14872810182027,-42.62251103040564],[356.14926017917907,-42.62350541816989],[356.1500892421668,-42.62472132025949],[356.1503788212935,-42.625015584981995],[356.151860812839,-42.62593748562839],[356.1520304533881,-42.626015754332606],[356.1536825726721,-42.626133051567734],[356.1541837672238,-42.62593811604724],[356.15533517779113,-42.62521894320581],[356.155782753002,-42.624722869669746],[356.15636809761656,-42.62350736001752],[356.15623141699837,-42.62229167394533],[356.15570538325784,-42.62107589188167],[356.1553373101573,-42.6206325872474],[356.1547291249774,-42.61985999288545]]],"index":10,"temperature":0.9},{"color":"#46ffb1","count_points":39,"count_polygons":3,"curves":[[[356.3176383130545,-42.807770190081825],[356.3159805461977,-42.80741952493155],[356.3143235746862,-42.80743873311568],[356.31351098251497,-42.808217654686636],[356.3137434640941,-42.80943304649967],[356.3142269546073,-42.81064815410907],[356.31433067501126,-42.81082000938585],[356.3148223762189,-42.81186313246543],[356.3154952509269,-42.81307801921233],[356.31599407178317,-42.81377929222647],[356.3163457127272,-42.81429269791765],[356.3174136287611,-42.815507118441076],[356.3176554213645,-42.815714355556146]],[[356.04459781984855,-42.64435365525239],[356.0448428803299,-42.64409236173106],[356.04483787697325,-42.642876701706854],[356.04460198646086,-42.642499922127165]],[[356.14536030883926,-42.619857207756695],[356.1454255425731,-42.61993559065628],[356.1463235026235,-42.62107318197952],[356.1470762149859,-42.62218172697602],[356.1471542712945,-42.622289105608075],[356.1478098115436,-42.62350496796255],[356.1485130747971,-42.62472084150312],[356.1487266790727,-42.62500141359936],[356.14965146024355,-42.62593684249748],[356.1503780163825,-42.62649317773314],[356.1518115282493,-42.627153124879975],[356.1520298220594,-42.62723413401909],[356.1536819584608,-42.62738250613981],[356.1545554570878,-42.62715386570148],[356.15533440641644,-42.62687787208796],[356.15661029470425,-42.62593872446081],[356.15698720416304,-42.62551415618651],[356.1574522228731,-42.624723270541956],[356.1579674106183,-42.623507736388895],[356.15808883306863,-42.62229211117858],[356.15794353339146,-42.621076425270886],[356.15708485103653,-42.61986057308894]]],"index":11,"temperature":1.0},{"color":"#97ff60","count_points":1427,"count_polygons":28,"curves":[[[356.2631179583768,-42.82041982765523],[356.2646293390803,-42.81989345678847],[356.2662862714605,-42.819580343618476],[356.2679436422071,-42.819604022930406],[356.26960120211993,-42.8197640681958],[356.2712591124494,-42.82016745697656],[356.27194476258484,-42.82041342948876]],[[356.2489207539494,-42.820428696446726],[356.24805625073213,-42.82026751948593],[356.2463981913389,-42.81956826303086],[356.2459559081278,-42.81921467415891],[356.24510491461166,-42.81799947499496],[356.24481140203346,-42.81678397691369],[356.2448305832488,-42.81556831353247],[356.24518014502246,-42.81435247531837],[356.24579557663816,-42.81313649383695],[356.2463909224495,-42.812324900731284],[356.246787281621,-42.81192030477533],[356.24796794424316,-42.81070400243636],[356.24804632050547,-42.810628952549266],[356.2497025904127,-42.809843781406414],[356.2513599301916,-42.81008475474147],[356.2521769384622,-42.810701591001134],[356.25301832053987,-42.81126031074897],[356.2535590815136,-42.81191641909785],[356.2546773125658,-42.81290965591436],[356.25486595516224,-42.81313127677468],[356.255919630477,-42.81434627772982],[356.2563367663419,-42.81487983580529],[356.256885517994,-42.8155613244719],[356.257643697156,-42.81677649588312],[356.2579976418047,-42.81795525532478],[356.25801421660435,-42.81799191175136],[356.2579977476811,-42.818044162210846],[356.2574195300169,-42.819207945098874],[356.256342281093,-42.81961724642368],[356.2546855709265,-42.820170989842445],[356.25313463524327,-42.82042624712296]],[[356.1635694464895,-42.82044504802342],[356.1635764064533,-42.81922939621818],[356.1635315375,-42.81863170620736],[356.1634881092752,-42.81801372717438],[356.1632835498843,-42.8167980368476],[356.1630715478836,-42.815582344702264],[356.1628598252155,-42.814366652134304],[356.16277859982654,-42.813150983523514],[356.16281033521744,-42.8119353358807],[356.16287048372163,-42.81071969343229],[356.16291844062425,-42.80950404861309],[356.1627408398942,-42.80828836174611],[356.1621682509694,-42.80707259939089],[356.16187853831053,-42.80667142751652],[356.1612211438759,-42.80585675974521],[356.16022215382117,-42.805097230197],[356.1594689827936,-42.8046407416084],[356.1585655855098,-42.80417010598481],[356.1569089099596,-42.80359867175057],[356.15618369064407,-42.803424332808184],[356.15525218849564,-42.803190791672236],[356.1535954162567,-42.80292976509013],[356.1519386854462,-42.802616056305034],[356.15028202152234,-42.8022109103406],[356.15027148350885,-42.80220708391547],[356.1486256004927,-42.80142076638198],[356.14806082248595,-42.80099075526974],[356.1469695857384,-42.80002524166934],[356.1467297797515,-42.79977467439456],[356.1455755227327,-42.79855863762848],[356.1453138392883,-42.79832128366748],[356.14416737047213,-42.79734250098642],[356.1436579520837,-42.796971431775894],[356.14219639504824,-42.79612614257527],[356.14200187433795,-42.79600710605775],[356.14034567974034,-42.795280611041754],[356.1388107631191,-42.79490919998316],[356.13868931000457,-42.79484532096708],[356.13858301301593,-42.794909109758265],[356.13703173128215,-42.796028043851344],[356.13698858788206,-42.79612412003834],[356.13632744945846,-42.79733950088986],[356.135597048152,-42.79855484858256],[356.13537272230184,-42.79894465171926],[356.13491354163966,-42.799770211694266],[356.1341314494592,-42.80098552773965],[356.13371373997063,-42.801637024745105],[356.133224733821,-42.80220078315251],[356.13208197662476,-42.80341592448258],[356.13205536000544,-42.80344283847826],[356.1309246856786,-42.804631047634146],[356.13039700743275,-42.805105890608935],[356.12949993063364,-42.805846032001654],[356.1287387992674,-42.80650832882981],[356.12812672020135,-42.80706102379994],[356.12708020474895,-42.80824827289234],[356.1270533766232,-42.808276148680065],[356.1262886580482,-42.80949141945957],[356.126748321812,-42.810707303955745],[356.1270777709464,-42.81088673250392],[356.1287345177595,-42.81128857297513],[356.1303917371504,-42.81117135592698],[356.13204903538906,-42.810953108594255],[356.13276350198754,-42.81071015497902],[356.13370665982154,-42.81032056956614],[356.13513805743526,-42.809495540084725],[356.1353645274478,-42.809336799613796],[356.13702237002053,-42.80831684431934],[356.13709242038965,-42.808280704477546],[356.13867997171343,-42.80755033204685],[356.14029292147393,-42.80706631868725],[356.1403373418004,-42.8070528979142],[356.1419944327242,-42.80692599463195],[356.1425375962126,-42.80706715486823],[356.14365115240025,-42.80735562339782],[356.1450351116027,-42.808283687571645],[356.1453074372069,-42.808514116337165],[356.1459223855177,-42.80949964051184],[356.1467645354972,-42.810715571825234],[356.14696297099107,-42.81102422706302],[356.1474411226617,-42.811931444014256],[356.1481827919439,-42.8131473325717],[356.14861848199104,-42.81380740580979],[356.1489625299055,-42.81436322795062],[356.14966649722555,-42.8155790951967],[356.15024438082827,-42.816794920834184],[356.1502739684847,-42.81690672949421],[356.1505516301869,-42.81801066449696],[356.1505393280884,-42.81922631402461],[356.1502720578626,-42.820392358904215],[356.150261652655,-42.82044188533793]],[[356.11491439457114,-42.820426002389326],[356.114164891156,-42.819209894907345],[356.1138118692425,-42.818848025163625],[356.11215548284997,-42.81804609143687],[356.1119180182662,-42.817992850071484],[356.11049862538925,-42.81767600944268],[356.1088414871218,-42.81755297159395],[356.1071842511238,-42.81751383782866],[356.10552740147335,-42.81717228209039],[356.1044144871697,-42.816772230789695],[356.1038709815301,-42.816513580537276],[356.1028868331195,-42.815555506479804],[356.10221613982384,-42.814689384114864],[356.10195619781695,-42.814339190724596],[356.1007480604884,-42.813122666118545],[356.1005612427766,-42.81297835763428],[356.09890523579185,-42.81213966215825],[356.0979590604947,-42.811904952943664],[356.09724858625424,-42.8117906055461],[356.09559159832463,-42.811691148735704],[356.09393448555363,-42.81168103031088],[356.0922772790013,-42.811734493928505],[356.0906200317458,-42.811813034404004],[356.08950598794684,-42.81189829682311],[356.08896262495756,-42.81199261992455],[356.08730464446813,-42.81253279652523],[356.0858209172783,-42.81311085395238],[356.08564640746727,-42.81321603290629],[356.08542538514894,-42.81311051459195],[356.0841583341627,-42.811893764890414],[356.0841035292815,-42.810678063650535],[356.08402917085,-42.80946234525957],[356.0839965405695,-42.80870336432575],[356.08397988400844,-42.80824664861468],[356.0837709951358,-42.8070308124767],[356.08367708892297,-42.805815076540135],[356.083564159238,-42.80459932379178],[356.0834787653852,-42.80338359500105],[356.0833702789187,-42.80216784581177],[356.0831484305491,-42.80095199680445],[356.08287058547666,-42.79973609792958],[356.0824972453728,-42.798520113827486],[356.0823569452137,-42.79808953792654],[356.0820490006026,-42.79730406187714],[356.08169934266226,-42.79608809610417],[356.081435310877,-42.794872205817526],[356.08130905277835,-42.793656438316425],[356.08110027821033,-42.792440596601864],[356.0807116242634,-42.79123996074442],[356.08070638231055,-42.79122458785421],[356.0800238691529,-42.79000831638495],[356.0790587147171,-42.78907694996304],[356.0787486147506,-42.78879149835116],[356.0774039160357,-42.788076949017515],[356.0763900833115,-42.78757365482583],[356.075748756573,-42.78731361283874],[356.07409349209263,-42.786632350046574],[356.07352265934844,-42.78635527381652],[356.07243841205883,-42.78586903289556],[356.07092744557093,-42.78513708989243],[356.0707834540137,-42.7850613726678],[356.0691286971725,-42.7841686231993],[356.0687120793025,-42.783919229723786],[356.0674744417084,-42.78303504512763],[356.06697946370065,-42.782701820293234],[356.06582001312483,-42.78202379442262],[356.06486530307876,-42.781483989094326],[356.0641654311832,-42.781119617093125],[356.0625105778608,-42.78037825285802],[356.06212033105885,-42.78026545052862],[356.0608553159327,-42.779862099482784],[356.05920002458424,-42.779374230183386],[356.0575662204562,-42.78026052204081],[356.057541868089,-42.78030100953779],[356.0568989153373,-42.78147543979327],[356.055882257539,-42.78190609182651],[356.0542263261378,-42.781716120681914],[356.05374896269876,-42.781471907024894],[356.0525721980347,-42.780681978251714],[356.05212776289915,-42.78025440009629],[356.0509193894745,-42.77905998219406],[356.0509000286381,-42.77903732735945],[356.05061240681164,-42.777821338203466],[356.05092283219756,-42.77745915954945],[356.05257935017835,-42.77731456391962],[356.0542350770547,-42.77754355350277],[356.0557776166882,-42.77782722676048],[356.0558906132245,-42.77787059467299],[356.05636173803833,-42.777827878074085],[356.0574798526757,-42.776613461300855],[356.05750609353663,-42.775397834960216],[356.0575527860656,-42.77495868893325],[356.05758386100547,-42.77418226535186],[356.0576985658728,-42.77296673631219],[356.0579021217313,-42.77175130479972],[356.05823027851613,-42.77053600953753],[356.0587453183573,-42.76932091747011],[356.0592218744432,-42.76853986856619],[356.0595117159596,-42.768106096060976],[356.0607058347205,-42.76689172994698],[356.0608814122591,-42.76674811052948],[356.06253917173416,-42.76581356283825],[356.06300153993504,-42.76567851848561],[356.06419601662213,-42.7653256398437],[356.0658524193785,-42.76505565824779],[356.06750850462316,-42.76494670339286],[356.0691644335757,-42.764918859275795],[356.0708202564723,-42.76494821470451],[356.07247607388865,-42.76498151292947],[356.0741323699686,-42.76474629047662],[356.0745040901026,-42.764474418791856],[356.0743575871356,-42.7632586230872],[356.0741357716342,-42.762830607786704],[356.07383932848376,-42.76204247073229],[356.07333306226957,-42.76082632757922],[356.07284239708156,-42.759610197284424],[356.0724874132887,-42.7586898403394],[356.07235736556254,-42.75839407034819],[356.0714967755739,-42.757177573619394],[356.07083559985887,-42.75655893825265],[356.06969048818837,-42.755960131958055],[356.06918138578317,-42.75578320092565],[356.06752636298427,-42.755459201218706],[356.06587103956,-42.75530179689388],[356.0642154125878,-42.75530560611926],[356.06255965834634,-42.755374206817486],[356.06090374276624,-42.755522119967196],[356.0592473978675,-42.755879149981894],[356.0590386792522,-42.75594902425481],[356.0575902446517,-42.756622663929406],[356.0566726394138,-42.757162078867616],[356.05593225880585,-42.75774942255721],[356.055211764706,-42.75837610428223],[356.05427340093496,-42.75926353258662],[356.05395780418985,-42.759590345778925],[356.0526145724653,-42.760725655341446],[356.05253240709135,-42.76080437725655],[356.050956078363,-42.761995853961785],[356.05092991528346,-42.76201818577236],[356.04929769368727,-42.763184576916075],[356.04923685795035,-42.76323186557127],[356.0476394936247,-42.7642606665848],[356.04732758163993,-42.76444526305826],[356.0459814480427,-42.76524169409705],[356.0450992799861,-42.765658243059754],[356.0443236796689,-42.76607665657418]],[[356.04421002416615,-42.81640185316156],[356.04586693490586,-42.81655453744543],[356.0475238842703,-42.81669345249488],[356.04816556616646,-42.816719401597304],[356.0491809216105,-42.81679545337467],[356.0495433687315,-42.816721024552365],[356.049661429853,-42.81550550978717],[356.049580098536,-42.814289761379285],[356.04971394709736,-42.81307426488852],[356.0501328567915,-42.81185910111983],[356.05069216292355,-42.810644098955976],[356.050851994739,-42.81038101578635],[356.05168332738657,-42.809429592857164],[356.0525130561876,-42.80851345783894],[356.05304568686086,-42.80821550241907],[356.05417217784884,-42.8075223266435],[356.05582924293344,-42.80749799631281],[356.057485109539,-42.80805892412323],[356.05768970035297,-42.808220709429435],[356.05898978998283,-42.80943778709318],[356.059138903064,-42.809661514161206],[356.0596248200139,-42.81065413085044],[356.0598888111018,-42.81187007019513],[356.0599082535527,-42.81308574457791],[356.059545853473,-42.81430100525198],[356.0591287176306,-42.81470577702144],[356.05798057467297,-42.81551494961054],[356.0574694564785,-42.81570971397281],[356.05581107203835,-42.81626481899129],[356.05415306335857,-42.8166268475471],[356.0535183126017,-42.81672561418944],[356.05249510989245,-42.81695383043669],[356.0508369785115,-42.817355340312375],[356.05054131037804,-42.81793784272625],[356.0508347300764,-42.818399496201536],[356.0510688599572,-42.81915410809007],[356.05146768693913,-42.82037022232066]],[[356.31761698928005,-42.79786573559802],[356.3168838174684,-42.79727292571537],[356.31595675876537,-42.796231435980644],[356.3158228684394,-42.79605849110719],[356.3152975562256,-42.79484343703222],[356.31511532728797,-42.79362799028811],[356.31535445492085,-42.792412063236284],[356.31594691885493,-42.79160218735258],[356.3165105432556,-42.791195083902856],[356.3176016534187,-42.79074058281865]],[[356.04425611269096,-42.796004310544426],[356.0443221557095,-42.79604867465142],[356.045910095741,-42.79722434318453],[356.0459703507936,-42.79726632343763],[356.0473012937014,-42.79848357100108],[356.04756327785566,-42.79883709478889],[356.0483872289862,-42.79970051377008],[356.04876501945756,-42.80091661373813],[356.0475569366267,-42.80171214865316],[356.0458995745561,-42.801937519174736],[356.04424260513343,-42.80198378605844]],[[356.3175853497034,-42.783163958600994],[356.3160505547667,-42.78390168391638],[356.3159307010422,-42.783970902349346],[356.3142755627945,-42.784565080162594],[356.3126194198571,-42.784689610503435],[356.31096257388907,-42.78447361126346],[356.30930522377525,-42.78400210060548],[356.30905822167233,-42.78390949093962],[356.307647744573,-42.78345313140012],[356.30599024103634,-42.78287686193936],[356.30552566290146,-42.7826976183543],[356.30433256884527,-42.78219768229846],[356.3031514802134,-42.781484444388575],[356.30267417602965,-42.781122422609684],[356.3018260062422,-42.78027015310006],[356.3010140788939,-42.7791120892026],[356.3009792031159,-42.779055361233794],[356.30030949375504,-42.77784038435141],[356.29955918036217,-42.77662548442109],[356.299352709834,-42.77635896153662],[356.2982157151745,-42.77541116931856],[356.297694196037,-42.77508517687249],[356.29603692839515,-42.774464543881884],[356.295015338748,-42.77419864330803],[356.29438006070546,-42.77405034993707],[356.2927231443536,-42.77359573381706],[356.2910662107954,-42.773117065520005],[356.2906685026377,-42.77298709553144],[356.2894091801378,-42.772566120232334],[356.2877520204864,-42.771920326210484],[356.28735841169606,-42.77177445773345],[356.2860947418439,-42.77118113883366],[356.28486962412,-42.77056100834082],[356.28443729126144,-42.77031116478552],[356.2829808925227,-42.76934699101611],[356.2827794668252,-42.769176783824925],[356.2814888243011,-42.76813260763516],[356.281121281409,-42.767772647633116],[356.2800642113702,-42.766918148612156],[356.2794632814032,-42.76644034953685],[356.2784292237956,-42.76570384449191],[356.2778056657444,-42.76531551915833],[356.27614924189925,-42.76495402169165],[356.2746485677165,-42.76570688079907],[356.27449714665516,-42.76692265555617],[356.27541776524305,-42.76813758455245],[356.27615497828356,-42.76882287633796],[356.27682355635676,-42.76935211629762],[356.27781277237244,-42.7700235902152],[356.2785570108851,-42.7705663623579],[356.27947087680764,-42.77138453910555],[356.2797935727253,-42.77178099643621],[356.2804660763313,-42.77299609083005],[356.2810068891098,-42.774211292200185],[356.28113192815704,-42.77458415050978],[356.28141399650536,-42.77542660410893],[356.28166986637365,-42.77664204284182],[356.2818627979374,-42.777857534436045],[356.28202670419637,-42.77907305035667],[356.2821743123854,-42.78028857988181],[356.2823474462177,-42.781504087376526],[356.2826336564269,-42.7827194977982],[356.28280191614186,-42.783295608896914],[356.2830112832788,-42.783934828917936],[356.2839699778728,-42.78514965594985],[356.28446206271116,-42.7856321099434],[356.28527295694226,-42.786364172760095],[356.28612098321605,-42.787146752484325],[356.28649682051184,-42.787578745158484],[356.287105256657,-42.78879385697664],[356.2870496886251,-42.790009561460785],[356.28635152861244,-42.79122583862875],[356.28612803673144,-42.79143680497016],[356.2844724225663,-42.79203735006608],[356.28281559226775,-42.791893643285455],[356.2818287143794,-42.791229768381555],[356.2811564413483,-42.79026133592757],[356.2810671149952,-42.79001475789153],[356.2805386995918,-42.78879954712576],[356.2794995420699,-42.78758475836913],[356.2794957685542,-42.78758216302363],[356.27783778456984,-42.78658823359862],[356.2768199857667,-42.78637129337635],[356.2761808722565,-42.78628082861121],[356.27452441653105,-42.7862755707159],[356.2734464753496,-42.78637396159158],[356.27286818657063,-42.7864280057517],[356.2712121503706,-42.78672433590071],[356.26955623210625,-42.78711786215857],[356.26790032820765,-42.78753763805514],[356.2675666152723,-42.78759403039167],[356.2662443384989,-42.78790955395508],[356.2645883557565,-42.788302203276636],[356.2629321145412,-42.78850787389673],[356.2612757330224,-42.788609562393816],[356.2602166074249,-42.788814779749075],[356.2596195977779,-42.788918201239575],[356.2579634320403,-42.78921510759752],[356.2563074882132,-42.78971649176705],[356.2552713928065,-42.790033597735736],[356.2546514949504,-42.79019798339558],[356.2529955952626,-42.79078702752529],[356.2519220689383,-42.79125127402471],[356.25133979349886,-42.79149559811235],[356.24968409695015,-42.79233966468748],[356.24945371197043,-42.79246835607652],[356.248028590827,-42.79341253797929],[356.2476234267446,-42.79368503488008],[356.24637307566024,-42.794533587305764],[356.245774575922,-42.794901694422535],[356.244717524428,-42.795679085225586],[356.24403600003035,-42.796118266832856],[356.24306189985367,-42.79681183498921],[356.2421747189728,-42.79733487481512],[356.24140624228266,-42.797974456425685],[356.24075242918155,-42.79855123752995],[356.23975092327623,-42.79958429529727],[356.23957002573417,-42.79976746731847],[356.2383921753358,-42.80098368273097],[356.23809559518594,-42.80128265682551],[356.23725174139173,-42.802199868749106],[356.23644020749396,-42.80301800982574],[356.2360478072907,-42.803416072031354],[356.2348457980681,-42.80463226178485],[356.2347846741037,-42.80468847806717],[356.233128614231,-42.80580502510778],[356.23305060332797,-42.80584869241762],[356.23147231028355,-42.8066797966824],[356.23030595096526,-42.80706547952578],[356.2298157233465,-42.80723356509015],[356.2281591050129,-42.80778485156713],[356.2265023852001,-42.80823065372945],[356.2263564367234,-42.80828264899413],[356.2248457372573,-42.80882248156698],[356.2231890506681,-42.80940321806242],[356.22293559027935,-42.809499505829194],[356.2215323311978,-42.8099809608435],[356.21987562008627,-42.81062696511175],[356.2195841154176,-42.81071623945038],[356.21821876393415,-42.81107161864949],[356.21656176157796,-42.81128174349159],[356.21490468432575,-42.81136334645436],[356.21324751335925,-42.81125423528646],[356.211590326713,-42.811096440004455],[356.20993320291905,-42.81106981591742],[356.2082761526267,-42.8112289127273],[356.2066191868727,-42.81164549543908],[356.2052073026509,-42.81193541673761],[356.20496217292464,-42.811984694942495],[356.20362116067884,-42.811935695334796],[356.20330501701926,-42.811921853189176],[356.20164771569034,-42.811329898570825],[356.20065600500646,-42.81072050379096],[356.19999034780403,-42.81035189753642],[356.1984875170519,-42.80950513957829],[356.1983330444256,-42.80942744198734],[356.19671229557764,-42.808289692323214],[356.19667574291753,-42.80826616628675],[356.19508807326724,-42.8070742033995],[356.1950184902483,-42.807028632888404],[356.19343637916,-42.80585869364877],[356.1933613068043,-42.805811642132205],[356.19170421645333,-42.80482668634871],[356.19137320073656,-42.80464318640372],[356.1900471963481,-42.80402876141767],[356.1887205519706,-42.80342766660019],[356.1883902224112,-42.80328284512161],[356.18673328995914,-42.80257631332973],[356.18605115245987,-42.802212085765035],[356.18507639268614,-42.801679433478014],[356.18404265350944,-42.80099644582351],[356.1834195471315,-42.80049484165812],[356.1826257841214,-42.79978078048166],[356.18176278263337,-42.79886515264648],[356.1814795080774,-42.79856510439281],[356.18055666297874,-42.79734942415758],[356.18010614891404,-42.796579478398314],[356.1798240155343,-42.796133743890636],[356.179244691921,-42.79491806563746],[356.17875882708825,-42.793702388884554],[356.1784497665064,-42.792909195621995],[356.1782515831874,-42.79248670890411],[356.1775843943689,-42.79127101748799],[356.1768059138816,-42.79005531500422],[356.17679348426884,-42.79003935773521],[356.1755153190376,-42.78883956950662],[356.175137156884,-42.788523064350805],[356.1739204702037,-42.787623782574464],[356.17348085315297,-42.78733776520346],[356.1719659878307,-42.78640793564866],[356.1718245766076,-42.786333211134185],[356.17016829300576,-42.785596471457424],[356.1692608176058,-42.78519196012505],[356.16851204974694,-42.78485594628657],[356.16685584277155,-42.78412720043325],[356.16631323598074,-42.78397588334833],[356.1651996296129,-42.78354548267369],[356.1635432083448,-42.78368054317073],[356.16326604600846,-42.783975367994046],[356.16285800036775,-42.78519094798514],[356.1629113932015,-42.786406612978816],[356.1631532668195,-42.78762231260533],[356.1635415232487,-42.78872940982312],[356.163577048428,-42.78883804449318],[356.1642584298314,-42.79005381980574],[356.1650815935503,-42.79126961472541],[356.16519721126446,-42.791421719675476],[356.1659470507046,-42.79248541042338],[356.166840963877,-42.7937012038507],[356.1668531537123,-42.79371970424125],[356.16760654807456,-42.79491697177492],[356.16828390485165,-42.7961327223294],[356.16850911004076,-42.79644717563714],[356.169115683794,-42.79734848923493],[356.1699556663198,-42.79856425107314],[356.17016527096564,-42.79891550884853],[356.17065208091515,-42.79977998983553],[356.1712127043124,-42.80099570901153],[356.17164157077724,-42.80221141102889],[356.17182124728,-42.80296486450386],[356.1719382186811,-42.803427097312],[356.17217203463815,-42.80464277618299],[356.1725631062545,-42.805858470573064],[356.173477430265,-42.807070674820416],[356.1734805094811,-42.80707421398281],[356.1751342608549,-42.80826010414703],[356.1751752881158,-42.80829001385589],[356.17664841761456,-42.80950577425644],[356.17679113039236,-42.809655086408966],[356.1774997700079,-42.8107214809778],[356.17804512283715,-42.81193716525857],[356.17834203104303,-42.81315283441566],[356.17844783339814,-42.81363477003987],[356.17862395637917,-42.81436850199463],[356.17906789608224,-42.815584176187976],[356.1800258120708,-42.81679986852552],[356.18010479953386,-42.81685933283126],[356.18176202861935,-42.81781214606918],[356.1821712733437,-42.81801558018235],[356.1834193119776,-42.81851292648045],[356.18479122744174,-42.81923125035526],[356.185076634986,-42.819370801422615],[356.1866028274784,-42.820446880260455]],[[356.31754052113143,-42.762321766820236],[356.315884340454,-42.762145566864284],[356.31525965836,-42.76202079180134],[356.3142277231769,-42.761756677062806],[356.31257030290976,-42.76096985092312],[356.31233038908755,-42.76080843802061],[356.3110721960085,-42.75959417757503],[356.31091134952726,-42.759412098068665],[356.30995756214173,-42.75837974637297],[356.3092518235629,-42.75752906155932],[356.3088451451014,-42.7571653019183],[356.3075933119593,-42.75610525667164],[356.3073269064577,-42.755951281988885],[356.3059359384048,-42.75522251063802],[356.30451885291075,-42.75473859901206],[356.3042792242284,-42.75465601160017],[356.30262348790296,-42.75458584517119],[356.3022499947998,-42.75474095101354],[356.30154707996604,-42.755957326567255],[356.30158848553157,-42.75717294023531],[356.30180588493835,-42.75838837396372],[356.3020486875516,-42.75960378121086],[356.30241582072495,-42.760819060136235],[356.3026363152469,-42.76130344861719],[356.30304163693694,-42.76203407074667],[356.30371552742554,-42.76324902794443],[356.3042977141274,-42.76420506622272],[356.30448751331346,-42.76446387855759],[356.3054148296783,-42.7656785602764],[356.3059576807641,-42.76629806611794],[356.3065283259726,-42.76689303651788],[356.3076165274014,-42.76777204481652],[356.30800653685344,-42.768107109743205],[356.30927467891274,-42.768862321685894],[356.30987205592464,-42.76932074118021],[356.3109328011153,-42.76990975348024],[356.3117521736638,-42.77053432608725],[356.31259123402657,-42.771080214131636],[356.3134190575953,-42.77174812005544],[356.31425008181424,-42.77241865294938],[356.3148674850789,-42.77296213829919],[356.31590941727916,-42.77395298109524],[356.31615582466037,-42.77417632209694],[356.3173715061908,-42.775390575587316],[356.3175691214339,-42.7756205533061]],[[356.04434765806184,-42.755448874177134],[356.046004588482,-42.75486222554621],[356.0463582494411,-42.75471885822324],[356.0476624293844,-42.753847953131114],[356.0480648119942,-42.75350523656377],[356.04829964497213,-42.75228985855152],[356.0479958172558,-42.75107384287732],[356.04766981250833,-42.750495309276786],[356.0473439552149,-42.749857412444264],[356.04652473091,-42.74864077792015],[356.0460204983806,-42.747723943592526],[356.0457117082394,-42.74742414501399],[356.0447168842428,-42.74620728583287],[356.04437062720746,-42.745264994196994]],[[356.04437590629067,-42.742923922629025],[356.04442149826,-42.742559958633954],[356.0446821468362,-42.74134461921305],[356.0450532459405,-42.74012941296368],[356.0455137401347,-42.73891431340928],[356.0460422993591,-42.73793984473681],[356.04613253844667,-42.737699402280505],[356.0465956439018,-42.73648430149266],[356.0470250736946,-42.7352691586331],[356.04719816916713,-42.73405370887068],[356.0467175474143,-42.73283747868455],[356.04605537240593,-42.73207128817323],[356.04552604570824,-42.73162039092484],[356.04440321121274,-42.73081241088675]],[[356.0444164221743,-42.72495079029745],[356.0449522423365,-42.72432575952422],[356.0456013246782,-42.723110887824255],[356.04597421777896,-42.72189568061767],[356.04607935862356,-42.72130086534211],[356.0462198909271,-42.720680319536825],[356.0461236646838,-42.719464547690364],[356.04608443795365,-42.71901963685703],[356.04602452962513,-42.71824877226997],[356.0456798301712,-42.71703270107053],[356.0453626735738,-42.71581666211991],[356.044627574154,-42.714600115524945],[356.0444407213302,-42.71416651454538]],[[356.04444496950674,-42.71228073454376],[356.04447284266615,-42.7121686150264],[356.044562838313,-42.7109530681665],[356.0448283405108,-42.70973773420068],[356.0451308904401,-42.70852244446378],[356.04471836448425,-42.70730628837956],[356.04445666165657,-42.70708995766853]],[[356.31730743414647,-42.6537260494973],[356.3156537443112,-42.65335820394547],[356.31399989479894,-42.652904591552556],[356.3130412601274,-42.65261427144838],[356.3123458630495,-42.6523509514937],[356.31069133455276,-42.65153888438675],[356.31045410647,-42.65140148634383],[356.30926124760435,-42.65018713529126],[356.3090342183505,-42.64941747079302],[356.3089260020618,-42.64897184500633],[356.30903169951665,-42.64816384687888],[356.3090759504016,-42.64775602799091],[356.3094890856527,-42.6465399244275],[356.31006184077137,-42.64532364487377],[356.31067714526426,-42.64456900814218],[356.31106006494537,-42.64410689400177],[356.3123265942283,-42.643007971070766],[356.31247384532924,-42.64288967179307],[356.3139771271623,-42.64200565095355],[356.3146515082268,-42.64167156834342],[356.3156280945577,-42.64123394744058],[356.3172794244302,-42.64065067302506]],[[356.04458907614713,-42.648243384284825],[356.0462421344109,-42.648111504037225],[356.0478952097028,-42.64796869974767],[356.04954834064506,-42.64779675552856],[356.0499493504441,-42.64774540104734],[356.05120214169085,-42.64730766451299],[356.0528340325859,-42.64653307955491],[356.0528565898369,-42.64650031828227],[356.0536156437791,-42.64531831595996],[356.0539592209706,-42.64410305167029],[356.0541191169998,-42.64288757871967],[356.0542157571345,-42.641672034109256],[356.0544600667143,-42.640456656244574],[356.0545224440544,-42.64020981837682],[356.0547992847288,-42.63924138480548],[356.0551038973863,-42.63802607358164],[356.05539554968266,-42.63681074710381],[356.05566453574204,-42.6355953946201],[356.0559719798907,-42.63438008448722],[356.05618936056715,-42.63324019234646],[356.0562020821149,-42.6331646875207],[356.0562457122166,-42.63194908277189],[356.05619257154723,-42.63168202039429],[356.05593749375447,-42.63073308606127],[356.0554249568912,-42.62951685991885],[356.0547219337516,-42.628300417195675],[356.05454798866924,-42.62797251961692],[356.0538404821533,-42.62708376807482],[356.0535352076382,-42.62586776861503],[356.05455471272694,-42.6247505198125],[356.0546205760611,-42.624653344312875],[356.0562089947478,-42.62371121780077],[356.0565301646544,-42.62343982813156],[356.05786319553584,-42.62268468396407],[356.05839678084544,-42.622226233295024],[356.0595175467654,-42.62155598600101],[356.0602841566703,-42.62101263061156],[356.0611717110004,-42.62049140524533],[356.06246390136624,-42.61979930699565]],[[356.3172366826875,-42.62068755827303],[356.31691751913837,-42.61978721872525]],[[356.29542204547903,-42.61981001410759],[356.2950507899895,-42.62102602503085],[356.29455995778073,-42.622242149647235],[356.2942381707727,-42.6234581106576],[356.29411480926524,-42.62441454203473],[356.29405388067624,-42.624673939615015],[356.2941159479844,-42.62505846814081],[356.2942734337354,-42.625889382584475],[356.294631153901,-42.62710469264255],[356.2941200325887,-42.62736813201396],[356.2931810039396,-42.627106075855835],[356.29246700255675,-42.62689806270325],[356.2908140395138,-42.626452498933226],[356.28987943922533,-42.62589350382744],[356.2891603851224,-42.62558353200334],[356.28779820467054,-42.62467974437166],[356.2875064386444,-42.624511031209884],[356.2864397004138,-42.62346530715794],[356.28585178105703,-42.62296882495362],[356.28511889814484,-42.62225082090107],[356.2841973723853,-42.62153032972502],[356.2836224703802,-42.62103647149841],[356.2825431655361,-42.62017102450735],[356.2820626745834,-42.61982215663633]],[[356.2301552694962,-42.61985460480793],[356.2310798666465,-42.62106988447017],[356.2313314199161,-42.62135925408088],[356.23218913203107,-42.62228507990996],[356.2329849118961,-42.62319337640982],[356.23327481888015,-42.623500274795525],[356.23431095530793,-42.624715481108744],[356.23463859850654,-42.62514712298323],[356.23530488910126,-42.62593069692454],[356.2360081164147,-42.62714603551047],[356.2362929909944,-42.627819222215656],[356.2366046501904,-42.628361418528485],[356.2372874780348,-42.62957675874691],[356.237947288224,-42.63021658849214],[356.23959946730145,-42.63009398697844],[356.24036307276776,-42.62957529838938],[356.2412508038845,-42.62906050732345],[356.2419597099477,-42.62835885456283],[356.24290165512485,-42.62757124813802],[356.24334119315137,-42.62714249946666],[356.2445525316679,-42.62618959441356],[356.2449699805597,-42.62592599749005],[356.2462037703834,-42.625244707855806],[356.24784708176577,-42.624708788650736],[356.24785537485644,-42.62470610224597],[356.2495072097535,-42.624414125266966],[356.25115923805845,-42.62431615431986],[356.25281132522156,-42.624276263064594],[356.2544635478102,-42.62435809565858],[356.25611589551494,-42.62454434811238],[356.2569457134448,-42.62470339463477],[356.2577684006829,-42.624855314015655],[356.25942093225314,-42.62517446193682],[356.2604365341489,-42.62591678701956],[356.2610745983773,-42.62639732314771],[356.2618047220076,-42.62713152515448],[356.2627290100674,-42.62815883940116],[356.26291791130296,-42.62834642187954],[356.26383470599353,-42.62956144404338],[356.26438448643165,-42.63067296759946],[356.2645364169157,-42.630776609398474],[356.26603784331917,-42.63147572746488],[356.2676902631629,-42.63154914943659],[356.2693431507712,-42.63196121201699],[356.2693870605098,-42.63198877263625],[356.270996979533,-42.63303152972242],[356.27116820503903,-42.63320309315083],[356.27241874348226,-42.63441779433834],[356.2726516609515,-42.6346609533193],[356.27339306768494,-42.635632696523835],[356.2743067049123,-42.636480593849726],[356.27464393595125,-42.636847373399625],[356.2759614185945,-42.63801092731428],[356.2760087575761,-42.63806194583457],[356.2769899882295,-42.63927681224146],[356.2776169116135,-42.64000549654631],[356.277965062857,-42.64049167536299],[356.27866309329073,-42.64170675815733],[356.2792738062122,-42.642846691958816],[356.2793122574208,-42.64292187720376],[356.27979674939974,-42.6441371296427],[356.2800839657733,-42.64535254474152],[356.28028565933613,-42.64656803067132],[356.28018123152975,-42.64778377218949],[356.27928302115237,-42.64886893927767],[356.2787956124088,-42.64900057457499],[356.2776306668133,-42.649154390595754],[356.27669428733674,-42.649002283674164],[356.2759774745674,-42.648882889512166],[356.27432393008695,-42.64835861328043],[356.27326264482946,-42.64778933780014],[356.2726698423639,-42.64743322362067],[356.2712921075962,-42.64657519246578],[356.27101566995907,-42.64641198222495],[356.269593685684,-42.645360811710134],[356.26936128782484,-42.645198055026775],[356.2682706866602,-42.64414613213091],[356.26770619486734,-42.64340708635589],[356.26742199519816,-42.642931095186164],[356.26695368156567,-42.64171577900186],[356.26651820974536,-42.64050043748093],[356.26629606332887,-42.63928494231951],[356.2660471811787,-42.63856681118634],[356.2658661051406,-42.63806959453847],[356.26526534111963,-42.63685436573106],[356.2643912187755,-42.63589112434083],[356.2627389462743,-42.63602266613331],[356.2610871866956,-42.636574510123644],[356.2606129301743,-42.63685755053452],[356.259435613309,-42.6373044353966],[356.25778396811626,-42.63800652369064],[356.25764298990003,-42.63807513896626],[356.25613228576645,-42.63870879512074],[356.2545564130962,-42.63929272217468],[356.2544804671698,-42.639323637011216],[356.25282871842575,-42.64003137898737],[356.251651834037,-42.640510116037376],[356.25117700090686,-42.64080305092505],[356.249690984677,-42.641726903184086],[356.2495255867718,-42.641902427596264],[356.24845089144674,-42.642943256648884],[356.24804700548077,-42.64415913572434],[356.2480868463101,-42.64537476786692],[356.248578589622,-42.646590148036296],[356.2493654034554,-42.64780535938544],[356.2495319482974,-42.647954018918],[356.2508025081787,-42.64902019072383],[356.2511861279528,-42.64927108065873],[356.2525959379422,-42.65023479283553],[356.2528401205064,-42.65035528646493],[356.254493934312,-42.651230473857154],[356.25486856661115,-42.65144907361686],[356.2561479732342,-42.652259859603966],[356.2566467121767,-42.65266362204681],[356.2578025194373,-42.65367123532963],[356.2580260826198,-42.65387839967856],[356.2592266055784,-42.65509327761826],[356.2594574301942,-42.65532153522679],[356.2603582055568,-42.65630818873534],[356.26111285362344,-42.65731495755656],[356.26127126067536,-42.6575232354206],[356.26213910573523,-42.65873830555411],[356.2627690296383,-42.65981947410799],[356.26285390283624,-42.6599534739546],[356.26353389014554,-42.66116866198025],[356.26412222192096,-42.66238390976331],[356.26442636591605,-42.6631190353325],[356.2648999212029,-42.6635990218723],[356.26608116849525,-42.6643628223294],[356.26773433583867,-42.66434131859058],[356.2693871150974,-42.664037681108425],[356.2710397857757,-42.663667964074115],[356.271562186515,-42.663594154228925],[356.27269266562547,-42.663458927920644],[356.2743457589809,-42.66340472013205],[356.27599913520334,-42.66354391099444],[356.27648155889017,-42.66359031222153],[356.2776525794787,-42.66372344241493],[356.27930610098895,-42.66394720725273],[356.2809594244057,-42.664036180506535],[356.28261225729443,-42.66381257365714],[356.2831973402827,-42.66358472741299],[356.2842643966779,-42.663165872559894],[356.28560726905147,-42.66236697259078],[356.2859159082724,-42.66215682052613],[356.28756750212756,-42.6612294878589],[356.2877651397491,-42.66114939458434],[356.28921943166887,-42.66052992533053],[356.29087242057085,-42.66046898621442],[356.29252632649326,-42.660935805925604],[356.29291263286734,-42.661144643916984],[356.294180999352,-42.6618217890025],[356.29486792740323,-42.66235843397519],[356.29583643348013,-42.66310512129647],[356.2963098999605,-42.663572692379454],[356.29748480169656,-42.66478719613624],[356.29749267764527,-42.66479509272314],[356.298653911245,-42.6660016936956],[356.29914941697376,-42.666703945712044],[356.29952381870595,-42.667216479842814],[356.30011130956376,-42.66843154445403],[356.3004567830172,-42.66964685102651],[356.30065004799,-42.670862310836206],[356.3004877348915,-42.67207813048065],[356.30081430937804,-42.67290103375274],[356.3024682480274,-42.67317207573458],[356.3035015604605,-42.67329069879697],[356.30412200733264,-42.67334279229909],[356.30577615199206,-42.673705746648324],[356.30743115904386,-42.6744936030132],[356.3074419838641,-42.67450219882535],[356.30889032384204,-42.67571629300865],[356.3090875415423,-42.67594457457705],[356.30969813957296,-42.67693106978999],[356.3103133843033,-42.678146052282806],[356.3106620040533,-42.67936132504288],[356.3107370651012,-42.68057689812758],[356.3106598920803,-42.68179263871586],[356.3106440509473,-42.68300831186651],[356.310755821188,-42.68319549069154],[356.3114657753587,-42.6842230611386],[356.31241269420866,-42.68473400705116],[356.31406743933684,-42.6852159143741],[356.31541935613416,-42.685434273375144],[356.3157217083505,-42.68546094930029],[356.31737557081226,-42.685510376692235]],[[356.1292903366216,-42.61985065295451],[356.12890527950145,-42.62006148368877],[356.1272525542933,-42.62083251689482],[356.12666472007743,-42.621065021196955],[356.12559996208904,-42.62141913356207],[356.12394738504304,-42.62195799094372],[356.12299070786526,-42.62227877601764],[356.1222947525145,-42.62252379191933],[356.12064198966516,-42.623187572728476],[356.11994769104433,-42.623492767996815],[356.1189890527381,-42.62398356207196],[356.11760312270474,-42.624707086335164],[356.11733597280596,-42.624873088712405],[356.1156827734597,-42.62582799465079],[356.11551059920413,-42.6259215078484],[356.1140295480471,-42.62676102834246],[356.1132086793551,-42.62713576221989],[356.11237645365253,-42.62753785417892],[356.1107235745326,-42.62809779110563],[356.1094921391397,-42.628349059839636],[356.1090709214213,-42.62844627993476],[356.10741842023975,-42.62865689972741],[356.10576620546755,-42.62863186639839],[356.1041140921741,-42.62852919113549],[356.10320888997995,-42.62834480430722],[356.1024622495313,-42.628225022630964],[356.10081048586164,-42.62787410628027],[356.0991589094763,-42.62740005143871],[356.0984655928344,-42.627125711202076],[356.09750754214565,-42.626794292077435],[356.09585650903495,-42.62597619837969],[356.09574534443027,-42.62590799708872],[356.09420594194717,-42.62486646550719],[356.0940213515955,-42.62469100459983],[356.0930430255426,-42.62347458009464],[356.09255724210874,-42.622530983589684],[356.09241980544715,-42.62225843143257],[356.0920114566657,-42.621042452007416],[356.09177714088196,-42.61982661128069]],[[356.07744608396257,-42.61981419601153],[356.0776913371497,-42.620873735963755],[356.0777192950515,-42.62103010193131],[356.07797616940815,-42.62224599220069],[356.0781112281585,-42.62346176963405],[356.0781698037226,-42.62467747647983],[356.0780664044322,-42.62589303395411],[356.0776807488007,-42.62704935066411],[356.0776549409541,-42.62710830630888],[356.0764968285231,-42.62832288015359],[356.0760258680568,-42.62858722372472],[356.0743726532286,-42.62913655502305],[356.0732757456255,-42.62953547029627],[356.0727192597708,-42.629769164656494],[356.07106549408377,-42.630587698833565],[356.0708377612431,-42.63074874517617],[356.07029148957065,-42.63196385847035],[356.07047222591603,-42.63317969079021],[356.0710586929171,-42.634321758555735],[356.07110578931076,-42.63439596929754],[356.07243264241214,-42.635612920558785],[356.0727083527897,-42.635846111085236],[356.0742544315669,-42.636830331037054],[356.0743589189769,-42.63690378514885],[356.0760098685939,-42.63777363490462],[356.0769909086615,-42.63804856945514],[356.07766158857544,-42.638221365815326],[356.079313921272,-42.638320403987976],[356.0809667913925,-42.63809931005759],[356.08122324342406,-42.63805243881642],[356.082619783782,-42.6377962967121],[356.0842728367775,-42.63744562451443],[356.08592515695466,-42.6375463302636],[356.0875769350787,-42.63799893953917],[356.08768330689156,-42.63805804448456],[356.08910079881707,-42.639274879767804],[356.08922722298075,-42.63944185120104],[356.08993035230253,-42.64049121698637],[356.090775974414,-42.64170756135979],[356.09087618662556,-42.64181707231028],[356.0916539332703,-42.642923925631514],[356.09252616300273,-42.643591709648845],[356.09305152453396,-42.64414069650665],[356.0939555074983,-42.64535706399143],[356.09417550278283,-42.6458705403187],[356.09438006603153,-42.646573050807596],[356.0942551648392,-42.64778860747834],[356.0941723509541,-42.64804460102432],[356.09373843948083,-42.64900385637685],[356.09275095999516,-42.65021872944612],[356.0925161269003,-42.65038962062367],[356.09086218589414,-42.65113267982346],[356.0897745382554,-42.651431977392186],[356.089208651423,-42.651584158292565],[356.08755513650715,-42.652007659476695],[356.0859015106453,-42.652487031998255],[356.08553735835255,-42.65264407307557],[356.08424756944777,-42.65314647629089],[356.0830031741777,-42.6538575245648],[356.0825930407581,-42.65414351351981],[356.08151156528777,-42.655071856376956],[356.0809376158438,-42.65564754597444],[356.08044199709883,-42.656286550630085],[356.0798183710715,-42.65750164081254],[356.07930075047784,-42.6587168244574],[356.0795816065791,-42.659932735346885],[356.08092965341564,-42.66043499325916],[356.082582923801,-42.6603254696089],[356.08423623501045,-42.66018700130731],[356.08551585420645,-42.65993798336644],[356.08588985216176,-42.65985069595458],[356.08754387685735,-42.659241134499126],[356.08879370674856,-42.65872509590823],[356.0891980948781,-42.65848404123887],[356.09075897345053,-42.657511055469726],[356.0908527027866,-42.65744083029798],[356.09250721884484,-42.65642220932868],[356.09273927436107,-42.656296993450574],[356.09416167525035,-42.65540733294173],[356.0948376350205,-42.655082989220354],[356.09581574232766,-42.65462801077977],[356.0974692620416,-42.65421086187967],[356.09912252911937,-42.65396191145988],[356.1007754844657,-42.65393513974413],[356.1024281535075,-42.65412470892061],[356.1040806196336,-42.65447937765624],[356.10573288338736,-42.65500913956408],[356.1059633762559,-42.65509110082232],[356.1073849360881,-42.65573230043515],[356.10871088599407,-42.656308593053026],[356.109036994956,-42.656482177763905],[356.1106892293057,-42.65711757736477],[356.1119482576223,-42.65752632869691],[356.1123415649036,-42.65769474401824],[356.1137073185756,-42.657527421078875],[356.11399487219194,-42.65743985108836],[356.1144353680406,-42.656312210428396],[356.1145481132515,-42.655096623974195],[356.1145998915271,-42.653881000565285],[356.11455954276926,-42.65266532140883],[356.114586003958,-42.65144968278757],[356.1146827352309,-42.650234086749],[356.11482832435746,-42.64901852019418],[356.1150526166562,-42.64780300089823],[356.11531148771996,-42.64658750196223],[356.1156252846235,-42.6453720352954],[356.1156613209673,-42.645269260802515],[356.11618362135357,-42.64415671281734],[356.11687537873,-42.64294146592818],[356.11731718497236,-42.64232113967011],[356.11806533258095,-42.641726502699214],[356.11897099942246,-42.641174619720466],[356.1206242378054,-42.64053117609275],[356.12074204380235,-42.640512357736156],[356.12227709294024,-42.640237744095586],[356.1239295988367,-42.6402880720461],[356.12558200657116,-42.640445252506076],[356.12723452115165,-42.64049511677885],[356.12888715752484,-42.64041127182232],[356.13053987090774,-42.64023318827108],[356.1321927140578,-42.639888898298246],[356.13384556241726,-42.63951562854585],[356.13474515459967,-42.63930358274675],[356.1354983983577,-42.639132903188425],[356.1371512775645,-42.6386662394956],[356.13880416790215,-42.638150423610334],[356.1390468553644,-42.63808969960367],[356.1404569641108,-42.63772928672254],[356.1421098983848,-42.63707147545749],[356.1426383648774,-42.63687540090411],[356.14376277715536,-42.6364451732466],[356.1454155895617,-42.635871792267636],[356.14624584302857,-42.63566099536682],[356.14706825998815,-42.63548482061141],[356.14872072905774,-42.63541418534873],[356.14977811347154,-42.63566210792149],[356.15037292605825,-42.63583597372095],[356.1520248691545,-42.6367909213254],[356.1521233886556,-42.63687844046059],[356.1531366198085,-42.63809437277382],[356.1536763738428,-42.63874067063633],[356.154064049472,-42.639310273759484],[356.15497321544683,-42.64052616269587],[356.1553278984533,-42.64087046749375],[356.1562843963063,-42.64174214292266],[356.15697985213313,-42.64228026851893],[356.1580014704462,-42.64295820157128],[356.1586320454234,-42.64329055305961],[356.1602843694275,-42.644101171238866],[356.1604134964558,-42.64417438068978],[356.1619367082219,-42.644990780464035],[356.16258724408937,-42.645390464683025],[356.1635890607081,-42.64598165828797],[356.1644811153357,-42.646606459926716],[356.16524140687216,-42.64716572155062],[356.1660267694322,-42.647822369450665],[356.16689375573,-42.64856590352486],[356.1674159216823,-42.64903823548837],[356.1685406547921,-42.6502540490375],[356.1685461047054,-42.65026072026948],[356.1694240012941,-42.651469820824076],[356.1701984172664,-42.65251600570792],[356.17032115434824,-42.6526855875597],[356.1711092353434,-42.653901334965326],[356.17185083451324,-42.65484815440255],[356.17207447556785,-42.65511709589469],[356.17322544647834,-42.65633286670559],[356.17350348155867,-42.65656821407126],[356.1746769821219,-42.657548651415816],[356.1751562783201,-42.65789004610041],[356.1763701495526,-42.65876443462811],[356.1768091626273,-42.65906801403491],[356.17816629397885,-42.659980198439776],[356.1784621168211,-42.660168645680045],[356.18011514115085,-42.66109497483578],[356.18029958668893,-42.66119594626286],[356.1817682169464,-42.661967023354315],[356.1826205082647,-42.66241165733596],[356.18342133990444,-42.66278247150607],[356.18507450484054,-42.663492508194416],[356.1854231010755,-42.663627317614434],[356.18672769774247,-42.66395815223892],[356.18838089886884,-42.664176069386535],[356.1900340926908,-42.664191786672355],[356.1916872606935,-42.66398561165257],[356.1931852705627,-42.66362697490812],[356.1933403826978,-42.663540793198116],[356.1949933820986,-42.66252536362187],[356.1951867039114,-42.66241114631148],[356.19664628151764,-42.66128028937265],[356.19675456931236,-42.661195330985095],[356.1981825021873,-42.65997951140349],[356.1982990680908,-42.659829698216015],[356.1988726899714,-42.658763770480554],[356.1993511934665,-42.65754805351103],[356.19956636746224,-42.65633237004003],[356.19965955482803,-42.65511670266335],[356.1996535235308,-42.6539010486261],[356.1994171285672,-42.652685425313436],[356.19879479641344,-42.65146985112049],[356.19829705269467,-42.6509332182713],[356.1973302054397,-42.65025437268617],[356.19664400627164,-42.64989985257331],[356.1949910723082,-42.64919812684398],[356.1946240913275,-42.64903899461841],[356.1933381693424,-42.648453150115756],[356.1923276740946,-42.64782352479336],[356.1916852567954,-42.64729815589273],[356.19109072515704,-42.64660795081439],[356.1902524100228,-42.645392343400644],[356.19003230313217,-42.64504535004689],[356.1894913226365,-42.644176726434715],[356.1887650583307,-42.64296110313243],[356.18837944633776,-42.642448146873114],[356.18779569196147,-42.641745483114335],[356.18681788701286,-42.64052985518679],[356.1867267511101,-42.64043193585472],[356.18544115311533,-42.63931422391872],[356.1850741717746,-42.63904871367796],[356.1838038429671,-42.63809857557521],[356.18342166403164,-42.63781921065746],[356.182231562955,-42.6368829051405],[356.1817692221231,-42.63657889513664],[356.18057178785693,-42.63566721053481],[356.18011684914785,-42.63529392756552],[356.17923173648535,-42.63445150638609],[356.17846458745953,-42.63354609978688],[356.1782105913426,-42.63323580383118],[356.17758831212757,-42.63202011601261],[356.17736866073307,-42.63080444963162],[356.17739523624977,-42.6295887978089],[356.1775429526276,-42.628373153170486],[356.17767908203115,-42.62715750776773],[356.1776514662963,-42.62594185304098],[356.17727176250224,-42.6247261776337],[356.1768133333497,-42.62413409263901],[356.1761001800183,-42.623510447813864],[356.1751613800373,-42.6229432899754],[356.1742661706419,-42.62229465066602],[356.1735094942808,-42.62172790476877],[356.1728878242379,-42.6210788701984],[356.17204065904843,-42.61986313082664]],[[356.2729011686487,-42.809480716665824],[356.2712442324943,-42.8095749024667],[356.26979180882853,-42.80947417291369],[356.2695870086917,-42.80946399899275],[356.26792964540937,-42.80924549549089],[356.266272097515,-42.808878787848926],[356.2646143342499,-42.8083309985335],[356.2644306134589,-42.80826238558322],[356.2629565728453,-42.807761636714154],[356.2612987178671,-42.807092590307256],[356.26118611866656,-42.80704895016693],[356.25964079738867,-42.80634034657579],[356.2586233491736,-42.80583498379431],[356.25798253327423,-42.805265639451875],[356.2572690295975,-42.80462019853277],[356.2567457153062,-42.80340487589122],[356.25677293097806,-42.80218920460927],[356.2570466935194,-42.80097337730361],[356.25743073899446,-42.799757479086665],[356.2579746112517,-42.798609871947114],[356.25800217695763,-42.798541459383756],[356.2586116186842,-42.79732541218383],[356.2595358640331,-42.79610915584621],[356.25962820274714,-42.795991071735564],[356.26073380143976,-42.794892710153135],[356.2612829260654,-42.79439496148778],[356.2625601076574,-42.793675825366556],[356.26293836947605,-42.79343294651791],[356.2645942038479,-42.79281207239924],[356.2662505959512,-42.79263769073912],[356.2679071880191,-42.79261833540415],[356.26956397576515,-42.79274186591899],[356.27122088680153,-42.79294855116162],[356.2728778786514,-42.79320403474049],[356.27453484511693,-42.7934327548887],[356.2757623703977,-42.793666069081205],[356.27619195797195,-42.7937519100892],[356.27784913612993,-42.794103024132056],[356.2793146907166,-42.794878839572355],[356.2795073615515,-42.795123097164115],[356.2800701455013,-42.7960938665418],[356.28047680776314,-42.79730918110032],[356.2806272204696,-42.798524709368046],[356.28076615779776,-42.799740247009304],[356.280780933575,-42.80095588878793],[356.2807419772366,-42.802171575629075],[356.2806400527996,-42.80338731522567],[356.2804972541954,-42.804603088904926],[356.2801478747953,-42.80581903493288],[356.27952534994114,-42.806820425459925],[356.2793831555078,-42.8070353244587],[356.2778703563814,-42.80814604552401],[356.2776827267584,-42.80825237351625],[356.2762143457611,-42.808834386851544],[356.2745578976611,-42.809247944618974],[356.2729692792105,-42.809471763349784],[356.2729011686487,-42.809480716665824]],[[356.1071971097043,-42.807173227968924],[356.1074198659747,-42.80704905050178],[356.10864190069015,-42.80583420683058],[356.10882797057184,-42.80461867510069],[356.1082875779377,-42.803402665274625],[356.10720290510227,-42.80251155582455],[356.1062756150221,-42.80218566414756],[356.10554665032294,-42.80201736814033],[356.10490888920583,-42.802184729022386],[356.1038887927471,-42.80277976642352],[356.1036101282427,-42.80339947942737],[356.1036274266225,-42.80461514557612],[356.1038849006205,-42.80578141523939],[356.1039092872842,-42.80583099684466],[356.10507374510416,-42.8070474586074],[356.1055398851174,-42.807344564390576],[356.1071971097043,-42.807173227968924]],[[356.1353788955919,-42.791113805658725],[356.13694961370896,-42.79004583055776],[356.13664087876913,-42.78883004826634],[356.13617828616077,-42.78761420086755],[356.1354543750767,-42.78639824095352],[356.13538267401947,-42.78631987554579],[356.1339281478816,-42.78518192810086],[356.13372727748606,-42.78502696705723],[356.1320716902915,-42.784042735395566],[356.1317632105415,-42.78396530515032],[356.1304157201534,-42.78356017255791],[356.12976012250033,-42.78396437334046],[356.129891143103,-42.78518009045583],[356.130323489724,-42.78639594908343],[356.13041315154504,-42.78651854166559],[356.1313324758076,-42.78761207285891],[356.1320679185996,-42.78852452171254],[356.1324186842381,-42.78882822255709],[356.1336493333079,-42.790044425588064],[356.1337231339541,-42.790111882636936],[356.1353788955919,-42.791113805658725]],[[356.12710583860814,-42.780445202540896],[356.12716974553643,-42.78031615095641],[356.12749582725274,-42.779100657061754],[356.1275362865058,-42.77788502166419],[356.12736679432385,-42.77666928252825],[356.12712746986153,-42.77545350842317],[356.1271104716882,-42.775417391758126],[356.12615485081,-42.77423736561118],[356.1254557803668,-42.77386986476065],[356.1237997052097,-42.77382676461525],[356.12264698116337,-42.7742355397123],[356.1221428138712,-42.77460093181428],[356.12162831381454,-42.77545064491876],[356.1215116068476,-42.77666623674536],[356.12188830313255,-42.77788209707593],[356.12213914464195,-42.778264301021416],[356.1230332710717,-42.779098367735145],[356.12379400307293,-42.77967575929588],[356.12525281086766,-42.7803151833403],[356.1254495610925,-42.7804289952148],[356.12710583860814,-42.780445202540896]],[[356.29918214214416,-42.684381901896415],[356.30009698866337,-42.68423508125614],[356.300339209698,-42.683019181075146],[356.2998526596587,-42.68180401566705],[356.2992526095494,-42.68058896184522],[356.29917417018356,-42.6800764194261],[356.2990425064812,-42.679373516161505],[356.29909170626155,-42.67815781135791],[356.2991698293794,-42.6777317946156],[356.2992959645334,-42.67694195148654],[356.2997273674957,-42.6757258633278],[356.30022269088937,-42.67450970912315],[356.2991617967406,-42.673392610074245],[356.29750861577094,-42.67353224041786],[356.2958560326359,-42.67400857136653],[356.2945549559726,-42.67451528767061],[356.29420391168696,-42.67476018971012],[356.2934178765171,-42.67573202876113],[356.2933635686362,-42.67694773592324],[356.2934758410423,-42.678163284930775],[356.2937359932994,-42.67937869310676],[356.2941258215119,-42.68059397684732],[356.2942147035404,-42.68085239185919],[356.2946773118747,-42.68180910410627],[356.2957270044696,-42.68302374665937],[356.29587246910364,-42.683149598460105],[356.2975279860858,-42.68414757952398],[356.2979940429794,-42.68423718147082],[356.29918214214416,-42.684381901896415]],[[356.07924139923847,-42.68123540179354],[356.07949849894595,-42.68059880107044],[356.0793123778598,-42.67938297564296],[356.0792448065172,-42.679220466634895],[356.0786419087498,-42.67816670615465],[356.0779082645747,-42.67695037439576],[356.0775961323869,-42.67635755950467],[356.07715692677357,-42.675734021524384],[356.07605923060277,-42.674517338442726],[356.0759460268714,-42.6744026456466],[356.07429449467065,-42.673312260233736],[356.0728184516956,-42.67451424370154],[356.07309508629584,-42.675730166984756],[356.07381423422953,-42.67694651547761],[356.0742865586682,-42.677794229990695],[356.07460646089146,-42.67816292922099],[356.0756500528961,-42.6793795752186],[356.0759367307926,-42.67973264681073],[356.07710571879977,-42.68059659648035],[356.0775881667319,-42.68099533084412],[356.07924139923847,-42.68123540179354]],[[356.12390075196436,-42.66999409078718],[356.12524757853197,-42.669690472398024],[356.12555472940227,-42.66932657837922],[356.1257433604528,-42.66847507020974],[356.1255562278444,-42.66774070984884],[356.12539582378264,-42.66725923749167],[356.1244588135807,-42.66604309884465],[356.12390511321183,-42.665504773068065],[356.1229674238882,-42.66482665856502],[356.1222530806304,-42.66430782235085],[356.12076789138683,-42.66360981031606],[356.12060069215846,-42.66352041297917],[356.11899796099027,-42.663608819773515],[356.11894741112843,-42.66362198914273],[356.1186481986462,-42.664824276045174],[356.11886027406877,-42.666040052108606],[356.11894468739126,-42.66621294047662],[356.11953745068683,-42.66725609046775],[356.12056940518954,-42.668472321874326],[356.120595593916,-42.66849594032221],[356.12224778390515,-42.66961478272688],[356.1225031535704,-42.669689031753826],[356.12390075196436,-42.66999409078718]],[[356.07265195389573,-42.66725045779708],[356.0726711843497,-42.6672201685667],[356.0731995238381,-42.66600502477395],[356.0734238596332,-42.664789586022415],[356.0728349485046,-42.66357336183926],[356.07265871871357,-42.66348530782714],[356.0710061844859,-42.66313550119273],[356.0693526320024,-42.66334625830774],[356.0691111542265,-42.66356969370818],[356.06874968044406,-42.664784986319994],[356.069043061898,-42.66600093577353],[356.06934659436615,-42.66660999642989],[356.0702518052451,-42.66721779560604],[356.0709977373629,-42.667768326113055],[356.07265195389573,-42.66725045779708]]],"index":12,"temperature":2.0},{"color":"#c7ff30","count_points":1369,"count_polygons":17,"curves":[[[356.31753067563307,-42.757742410584484],[356.31700554768787,-42.75715616505858],[356.31653200525164,-42.75594105521563],[356.3166979700153,-42.75472520815309],[356.3174011439995,-42.753508739675794],[356.31752132063326,-42.753390568750504]],[[356.3174947682642,-42.741035372198695],[356.3158396571401,-42.74109528500715],[356.3141844435152,-42.74110783666825],[356.3125292260277,-42.74111887739146],[356.31087423126525,-42.741239315578696],[356.31025253229836,-42.741360238662736],[356.30921990642406,-42.74169540116109],[356.30756617330536,-42.742461309320944],[356.3073212590719,-42.742579071214045],[356.3059127100442,-42.74338561066995],[356.3042780941456,-42.74379794593119],[356.30425821502945,-42.74380229912741],[356.30423145086877,-42.74379799463546],[356.30260241344496,-42.743546114654954],[356.30094566697363,-42.742780603203585],[356.30067249203717,-42.74258599882318],[356.29928819487026,-42.74160193273959],[356.2990249940917,-42.74137199972881],[356.29763040792466,-42.74021664146953],[356.29755226492733,-42.74015780482783],[356.2959733669854,-42.739204359047484],[356.2954386535627,-42.73894421285741],[356.29431686154743,-42.738463347228084],[356.2926605803601,-42.73782800520523],[356.2924040799919,-42.73773145237736],[356.29100435260483,-42.7372040243115],[356.2896569359584,-42.73651834849126],[356.2893477660421,-42.73634869288248],[356.28805372368333,-42.73530415139064],[356.28769033755117,-42.73496124192142],[356.28698123279634,-42.73408945872818],[356.2860319059278,-42.73291742163338],[356.28599982386356,-42.73287467543942],[356.2849830125056,-42.73165991479235],[356.28437363012733,-42.73090246347826],[356.28399289467677,-42.73044512197307],[356.2829186087549,-42.729230392904796],[356.2827156134646,-42.728982910384],[356.28187248386917,-42.72801562986719],[356.28105757064225,-42.72698089258344],[356.2808973040352,-42.726800797659465],[356.27989580483893,-42.72558597907647],[356.27939956319693,-42.72493221172687],[356.27892853199194,-42.72437112356888],[356.27798215738085,-42.72315624287302],[356.2777416176058,-42.72285195376668],[356.27697242806937,-42.72194140551175],[356.2760839705648,-42.72089828753924],[356.27592457948913,-42.72072658968943],[356.2748456045577,-42.71951178885231],[356.2744265540602,-42.719031426298294],[356.2737417849172,-42.71829699723367],[356.27276929174764,-42.71720275895715],[356.2726457239736,-42.71708218904679],[356.2715358007412,-42.7158673809377],[356.2711119982052,-42.715282059571095],[356.270592307731,-42.714652437198176],[356.2699003080031,-42.71343729856654],[356.2694533903777,-42.71232978712837],[356.26940444544124,-42.712222010616266],[356.269021356983,-42.71100663740695],[356.2687694441999,-42.709791166536796],[356.26867449053776,-42.70857557993315],[356.26884209784396,-42.707359800309135],[356.2691088683775,-42.706143947280644],[356.2694435402985,-42.70515718418607],[356.26952514546343,-42.70492798281693],[356.27002745207363,-42.703711952688955],[356.27062641034445,-42.70249584778827],[356.27100187818024,-42.70127990869797],[356.2709796477138,-42.70006426919877],[356.2704199808787,-42.69884903391042],[356.26943336985903,-42.697749562674616],[356.26929798426653,-42.69763421340405],[356.2677779675364,-42.69677133843181],[356.2668705475562,-42.69642032780797],[356.2661231171714,-42.69617193012607],[356.2644686367144,-42.695833966600055],[356.26281432004726,-42.69561116949716],[356.26115991434233,-42.6953069872957],[356.26087616342323,-42.695208824452855],[356.25950500517524,-42.69457433990356],[356.25861598641416,-42.69399465294258],[356.257849021931,-42.69290322399411],[356.25776255266095,-42.69277954582414],[356.2577047929714,-42.69156392661102],[356.2578471505107,-42.69132535023924],[356.25859645137405,-42.69034769715776],[356.2594991938369,-42.6897822231262],[356.26099055972884,-42.68913046745075],[356.2611521762419,-42.68906322420313],[356.26280518485055,-42.68839520792526],[356.2638257905574,-42.6879128833586],[356.26445784356645,-42.687484025775085],[356.2656797941889,-42.68669592876237],[356.26611016194937,-42.686351638141474],[356.26770660591365,-42.68547881896059],[356.26776273058437,-42.68545005491739],[356.2694160929216,-42.68516188358416],[356.2710698006049,-42.68513158953861],[356.27272361672965,-42.68517853026586],[356.27437756806245,-42.6853168876441],[356.2759683932868,-42.68547252311627],[356.27603155880064,-42.68547693763782],[356.2776856292425,-42.6856842967562],[356.2793397714777,-42.68593133382365],[356.28099417374005,-42.68633677115906],[356.2820753019952,-42.68668314368823],[356.2826488084258,-42.68687520748594],[356.28430362065643,-42.687506001574704],[356.28557812636313,-42.68789576503374],[356.28595825799283,-42.688009584297575],[356.28761255981414,-42.68829562387284],[356.28926676884015,-42.68851784497558],[356.29092080077936,-42.6886301749161],[356.2925749379792,-42.6887994140925],[356.29422921970195,-42.68904515143245],[356.2945167538272,-42.689103193483625],[356.2958835686337,-42.689321003626006],[356.29753802887905,-42.68964981342006],[356.29919255299075,-42.69000367520965],[356.3005910589198,-42.6903128617596],[356.3008471161979,-42.69036833754433],[356.30250176212246,-42.69076624135548],[356.304156574931,-42.69123957362001],[356.30515057072677,-42.69152381235697],[356.30581138747425,-42.69169991744439],[356.307466160554,-42.692128053271766],[356.3091207323108,-42.69244481794948],[356.3107749344724,-42.69257204373439],[356.3124284453733,-42.69236132582722],[356.3140812993522,-42.69184198573245],[356.3148621712776,-42.691513187250024],[356.31573383962444,-42.691187657247404],[356.31738647710387,-42.69059491588316]],[[356.0445136640141,-42.68177109470392],[356.04616985767376,-42.68063079540285],[356.0463231391519,-42.680563793576226],[356.04782442382515,-42.68020360682674],[356.049478750235,-42.67987641872815],[356.05113305832305,-42.67954967597582],[356.0521117343282,-42.679354935675356],[356.0527873919595,-42.679202673343966],[356.05444187665444,-42.67877459552674],[356.05609673304957,-42.67815538797491],[356.0561233304273,-42.67814382001467],[356.05689245404943,-42.67692901886906],[356.05610176413086,-42.67571747653207],[356.05609922407626,-42.67571248205113],[356.05445001124207,-42.67488302570261],[356.0536076401973,-42.67449402280866],[356.0527977236949,-42.674322163683726],[356.05114472018704,-42.674109294285934],[356.0494914697834,-42.67401545627701],[356.04783800294507,-42.674022454895784],[356.0461843707775,-42.67410368051765],[356.04453063373217,-42.674229628992464]],[[356.04458654881586,-42.649367603973715],[356.0462396298581,-42.64923894030474],[356.04789263517324,-42.64914169067171],[356.0495455815425,-42.64906927208731],[356.0511984879037,-42.64901376719536],[356.05275322992736,-42.64896429565607],[356.05285139700777,-42.64895560130738],[356.0545045275028,-42.648789977304844],[356.05615774833495,-42.648576295484055],[356.05781108686983,-42.648299223228015],[356.0594644610171,-42.64799710967142],[356.06105930177847,-42.647757839119095],[356.0611177236378,-42.647743185781934],[356.06277073403623,-42.647611375339004],[356.064423357519,-42.64767656959783],[356.0649206957165,-42.647761910720746],[356.06607556387854,-42.64796291507175],[356.0677273158416,-42.64849969072956],[356.0687240522365,-42.648981448682456],[356.06937839219506,-42.64941733496416],[356.0703219099409,-42.65019869714083],[356.0710281291141,-42.65109674152478],[356.0712514386381,-42.65141526871451],[356.0717110872625,-42.65263137397838],[356.07182932340527,-42.65384714422068],[356.07155852744125,-42.65506253383576],[356.07101930874796,-42.65593612918331],[356.0707802892885,-42.65627742329454],[356.06936382004966,-42.65729747952218],[356.0691195341403,-42.65749142738989],[356.0677089881473,-42.658270100010014],[356.067312170772,-42.658705258554285],[356.06623595375316,-42.65991981401095],[356.0660523781673,-42.66014994859944],[356.0657575863712,-42.661134977025505],[356.06542718204054,-42.662350291084806],[356.06517514873866,-42.66356568542493],[356.0650537687786,-42.66478121476548],[356.0650659419741,-42.66599688252619],[356.0652411563509,-42.667212719186345],[356.0654953108078,-42.66842863717994],[356.0656967001539,-42.66964450027563],[356.0657326225431,-42.67086019264774],[356.0655491592618,-42.67207565880347],[356.0651736387599,-42.67329092599157],[356.06467569003956,-42.67450606475223],[356.0643699670963,-42.675346228888884],[356.06413681011554,-42.67572115864868],[356.06381589348547,-42.67693647854648],[356.06425060607864,-42.678152588618666],[356.0643644042985,-42.678227739997276],[356.06554852712054,-42.679369591403],[356.06601514628045,-42.679710039054314],[356.0669234575257,-42.680586658183],[356.0676659046927,-42.681225604042396],[356.0682431028493,-42.68180365280638],[356.06931651807,-42.68286310123067],[356.0694585656104,-42.683020528372076],[356.070809135723,-42.684237524499174],[356.07096752625324,-42.68433196029887],[356.07257878754285,-42.68545491255761],[356.07261918929373,-42.68548006757336],[356.0742386509628,-42.68667216843799],[356.0742707923744,-42.68669654980972],[356.0757162989533,-42.687889228554916],[356.07592214465154,-42.688093916175525],[356.0768985744835,-42.68910599434572],[356.0775725491298,-42.69008621714039],[356.07777129723536,-42.69032246178892],[356.0786002323452,-42.69153888241858],[356.0791448178799,-42.692755037545766],[356.07922151677184,-42.692990531210675],[356.07971810016136,-42.69397121621444],[356.08010186253085,-42.69518722055535],[356.08024244160913,-42.6964030039368],[356.08012579895046,-42.69761855453612],[356.0796017235275,-42.69883373495894],[356.0792109409483,-42.6992414728757],[356.0785895695842,-42.70004846555111],[356.0775540987615,-42.70082260708217],[356.07698487434027,-42.70126263601336],[356.0758980615342,-42.7018942486799],[356.07473419397843,-42.702476170635855],[356.07424244616396,-42.70269561018986],[356.07258708592013,-42.70333141114585],[356.0713641217651,-42.70368856767191],[356.0709319124463,-42.703846357148116],[356.0692766635393,-42.704387230319156],[356.06762170444665,-42.704758536503206],[356.06678665165407,-42.704899638791375],[356.0659666297915,-42.705180125008354],[356.064311750183,-42.705489167678145],[356.0626572485901,-42.70559686166555],[356.06100307611575,-42.705535944405426],[356.05934923668167,-42.705311167330734],[356.05776165955024,-42.704890064753414],[356.0576958338634,-42.70487815424441],[356.0560425832923,-42.70438263408537],[356.05474400125087,-42.7036710492603],[356.054390217406,-42.70347689913438],[356.0530617460317,-42.70245348599851],[356.05273879085047,-42.70215060389188],[356.0517925505291,-42.70123637473816],[356.05108870064845,-42.700234295081],[356.0508890953053,-42.70001967428248],[356.0500863096587,-42.69880308426311],[356.04959826632654,-42.69758685768371],[356.04944161479517,-42.69698150501248],[356.0491427718782,-42.696370667309544],[356.0486962865226,-42.69515448577928],[356.0485138092031,-42.69393861450716],[356.04858553641793,-42.692723043181836],[356.04864218949615,-42.69150745406109],[356.0485553789651,-42.69029169572478],[356.04850349858555,-42.689075978595575],[356.0481242489727,-42.68785987437865],[356.0478087887353,-42.687319103738744],[356.0474215163887,-42.68664338446393],[356.04645455433854,-42.68542657394809],[356.0461600740916,-42.68503008430863],[356.0455088712862,-42.684209781018026],[356.0447096642127,-42.68299315820064],[356.0445135975821,-42.681800613980975]],[[356.1097620049088,-42.61983966470247],[356.1090806673386,-42.620387849145054],[356.10835878778556,-42.621054400038055],[356.107427133021,-42.62160785020929],[356.10577435051624,-42.62218096227476],[356.1050506176139,-42.62226782241125],[356.10412205127557,-42.62235556905645],[356.1030987558801,-42.62226646184218],[356.10247016487375,-42.62220936362085],[356.1008186873262,-42.62176437378112],[356.0994009098981,-42.62104814068346],[356.09916779772743,-42.620907154211544],[356.09797900311327,-42.61983143035224]],[[356.2728960518975,-42.8059055064706],[356.27124002992355,-42.80658257221887],[356.2695834103105,-42.8068521342436],[356.2679264175408,-42.80685617343311],[356.2662691043654,-42.80661843828869],[356.26461145290375,-42.806110189017765],[356.26396034221733,-42.805831405138896],[356.26295345905356,-42.80531110175516],[356.26192780407814,-42.80461714330392],[356.26129478101115,-42.803927591474796],[356.260862600779,-42.80340220449374],[356.26046908700476,-42.802186812116005],[356.260529418836,-42.8009711179077],[356.26093082971505,-42.7997551964723],[356.2612888839793,-42.79918612145824],[356.2617431967009,-42.79853899713182],[356.26294348558883,-42.79746073938222],[356.2631624010665,-42.797322376811884],[356.2645990811402,-42.796572788406905],[356.26625522647464,-42.79613605357473],[356.2666320100563,-42.796104287088305],[356.26791172743606,-42.79597998143096],[356.2694882117672,-42.79610220374643],[356.2695686108877,-42.796107737364174],[356.27122584324036,-42.79647917832364],[356.2728835946011,-42.79719953394064],[356.2730794901872,-42.79731513791566],[356.2744844081526,-42.79852969755263],[356.2745423966842,-42.798614395391496],[356.27524562348765,-42.799744751515306],[356.27556707570983,-42.80096015070033],[356.2755626788179,-42.80217580832882],[356.2752185924583,-42.80339173532321],[356.2745509672531,-42.80449419062507],[356.27447468755344,-42.80460797586551],[356.2730347837068,-42.805824751438244],[356.2728960518975,-42.8059055064706]],[[356.09559916593616,-42.806401306529956],[356.0939412586299,-42.80703351348381],[356.09228460708624,-42.806796749835016],[356.09062906226194,-42.805835807817346],[356.09061411939246,-42.80582093639406],[356.08999254454415,-42.80460477450665],[356.08992825516776,-42.8033890677928],[356.09033824969526,-42.802173749407515],[356.0906353854612,-42.801649844999574],[356.09179463653453,-42.80095927581945],[356.0922936037051,-42.80073365111521],[356.093588356931,-42.800960704437266],[356.0939500291375,-42.80101437103499],[356.0954565648307,-42.80217781675908],[356.09560499891865,-42.80232337124152],[356.0962396689537,-42.80339407303098],[356.0965176129065,-42.804609939484344],[356.09617351446053,-42.80582533028739],[356.09559916593616,-42.806401306529956]],[[356.1917030414212,-42.79508703411217],[356.1900463842743,-42.79538095435277],[356.188389671017,-42.795073421807544],[356.1881248004573,-42.7949181076115],[356.1867329386359,-42.79388605014156],[356.1865933682757,-42.79370249467248],[356.18594683205384,-42.79248685143619],[356.1854883138151,-42.791271202591965],[356.1851744675315,-42.79005555075631],[356.185076227819,-42.789635982331944],[356.18491079152216,-42.78883989771573],[356.18468976188495,-42.78762424384719],[356.1844319962738,-42.78640858956605],[356.18413269226596,-42.78519293462243],[356.1836722119012,-42.78397727817659],[356.1834197687346,-42.783505441249304],[356.18287184871997,-42.78276161632283],[356.18176345404396,-42.781984060798244],[356.1805807969994,-42.781545911205214],[356.1801071566573,-42.781425414460394],[356.17845085794335,-42.781201358232664],[356.17679456513594,-42.78102792251562],[356.17513829131013,-42.78078828155431],[356.1734820598997,-42.78037788309465],[356.17335394953363,-42.780329799375345],[356.1718258866797,-42.77978629604311],[356.17050314926706,-42.77911383895509],[356.17016980497317,-42.77893062551974],[356.16885434846375,-42.7778979748383],[356.1685138870653,-42.77760921547173],[356.16760678053697,-42.77668214574367],[356.1668581635955,-42.775845887643584],[356.16652036590665,-42.775466328000704],[356.16558614155736,-42.774250524726725],[356.16520264385275,-42.773725701127105],[356.16463759428507,-42.773034711373484],[356.16380239567917,-42.77181891034672],[356.1635472824183,-42.77147044536557],[356.1628367996331,-42.770603079013576],[356.1618919642099,-42.76942952399625],[356.16185496136757,-42.76938723636609],[356.16080839129245,-42.76817137211948],[356.1602366734316,-42.76759938213253],[356.1596339034222,-42.76695547100415],[356.1585814227405,-42.765908605934264],[356.158420300896,-42.7657395490736],[356.1571717123286,-42.76452360606207],[356.15692621758245,-42.76431947439498],[356.1557622257236,-42.763307609717074],[356.15527098518817,-42.76297036208631],[356.1539864299038,-42.76209150026047],[356.1536157034233,-42.76186717144072],[356.1519604006539,-42.760917556414746],[356.15188225909634,-42.76087527139795],[356.1503051136842,-42.76003176783298],[356.1496783526577,-42.75965897404992],[356.1486499544859,-42.759005754391],[356.1477809342671,-42.758442732007495],[356.1469949071198,-42.757884751743795],[356.14612688964354,-42.75722653954563],[356.14534005464094,-42.756548446744375],[356.1447265236492,-42.75601041071313],[356.1436854078793,-42.75500662149859],[356.14345320413537,-42.7547943099311],[356.14225062194606,-42.7535782208724],[356.14203091599194,-42.75335814803199],[356.14102115611206,-42.75236210910477],[356.1403764819505,-42.75175229443515],[356.13974801028155,-42.751145967268556],[356.13872210693467,-42.75018279956444],[356.13844282901044,-42.749929798552586],[356.13716923210524,-42.74871362793034],[356.1370678169861,-42.748611587397896],[356.13593776416184,-42.747497460883224],[356.13541371849715,-42.74690365665687],[356.1347704224068,-42.746281308233],[356.13375964275923,-42.745279753514204],[356.1334929434815,-42.74506509515073],[356.13210543766365,-42.74391287112831],[356.1320147179457,-42.743848776843826],[356.1304943154989,-42.74263241980406],[356.13045126249534,-42.74259559636907],[356.12903233721687,-42.74141607070963],[356.1287972593453,-42.74116449715184],[356.12792446455444,-42.74019987699979],[356.1271921351996,-42.738983859551624],[356.12714410355545,-42.73889566029013],[356.1265193819342,-42.73776786735016],[356.1260130464183,-42.73655195560046],[356.1256010761952,-42.7353360897764],[356.1254926298996,-42.734978146866126],[356.1251923350795,-42.73412022412425],[356.12490163878294,-42.73290441799327],[356.12468432536616,-42.731688649153824],[356.1244181010782,-42.730472854458036],[356.1239763861927,-42.729256967291164],[356.1238433301588,-42.729041679265954],[356.12293397755707,-42.72804075969592],[356.12218993594416,-42.72751557185424],[356.12058355384664,-42.72682382589917],[356.1205357835121,-42.72680725782763],[356.11888132517237,-42.726425254672165],[356.11722675290355,-42.72616763841071],[356.11557206492904,-42.726027023513005],[356.11391738621506,-42.72588488732234],[356.11226249732795,-42.72593050059862],[356.1106069625583,-42.72651836149604],[356.11027200336923,-42.72681765437066],[356.10895037662107,-42.72794667726538],[356.1088293149227,-42.728032373626625],[356.10729447085623,-42.728765059780116],[356.10611652258063,-42.72924621873171],[356.1056387565341,-42.72939787016467],[356.10398323759273,-42.7298535562858],[356.1023275044566,-42.730453089388526],[356.10231573119813,-42.73045922966318],[356.1006713503141,-42.731341452895634],[356.1002243464733,-42.731673376799094],[356.0990146285027,-42.73260855795619],[356.0988209247246,-42.732887999071664],[356.09793612955775,-42.73410299468891],[356.09735642466296,-42.7348856038585],[356.09719020609884,-42.73531808871519],[356.0966845587189,-42.73653336112594],[356.09600330595447,-42.73774849665306],[356.0956966828628,-42.73815491456963],[356.0952240383662,-42.73896355227558],[356.09426484680097,-42.74017846192231],[356.0940382346608,-42.74041432880625],[356.09305186405913,-42.741393162519486],[356.09238074554105,-42.74194454063764],[356.09139822628885,-42.742607495274015],[356.09072385141786,-42.74302587523244],[356.08906747518074,-42.74373205711203],[356.0887289222171,-42.74382096487967],[356.087411250793,-42.7443168338911],[356.08575534362353,-42.74468218292327],[356.0840997564894,-42.7448372497731],[356.08244438532614,-42.7448557070313],[356.08078916839315,-42.74478113226821],[356.07913403491574,-42.74465968805456],[356.07747872947704,-42.74464194836325],[356.0759995814053,-42.7450253406801],[356.07582252166765,-42.745141035980105],[356.07498619527297,-42.74624003825559],[356.07416351625386,-42.74720151772843],[356.0740214733182,-42.747454773536944],[356.0729160301874,-42.748669364507116],[356.0725049553392,-42.74895410574518],[356.0714214077198,-42.74988356353786],[356.0708472851964,-42.750168242711645],[356.0691905442522,-42.75084651951295],[356.06836920012194,-42.75109618369071],[356.06753416170824,-42.75131510931467],[356.06587791562697,-42.75169911118858],[356.0642218826442,-42.75196242814275],[356.06256605000976,-42.752116489036844],[356.0609103837234,-42.75218279372178],[356.0592548702475,-42.752171548132154],[356.05759953192916,-42.75207485047276],[356.0559445243279,-42.75182081101127],[356.0542901089127,-42.751290654229834],[356.05387004975955,-42.75108065486409],[356.05263630404653,-42.75048613393629],[356.05177270794326,-42.74986260114204],[356.050983455003,-42.74925675766733],[356.05030990571606,-42.74864525016511],[356.04933177483656,-42.74752016772501],[356.04924985395485,-42.7474283542036],[356.04834579861273,-42.746211632966094],[356.0478488960113,-42.74499538839132],[356.04768374058693,-42.744169642934594],[356.0475840954743,-42.74377941779774],[356.0475340148079,-42.74256370211852],[356.04768971799245,-42.74145450977635],[356.04770088368343,-42.741348244281085],[356.0480138131427,-42.740132959357645],[356.04856216120464,-42.73891795165193],[356.04935284384607,-42.73783244848838],[356.04944780990655,-42.73770333729658],[356.050539751118,-42.736488956202926],[356.0510118729647,-42.736027564791954],[356.05201534381627,-42.735275006620924],[356.05266958344976,-42.734798931108166],[356.0543239371144,-42.73406198245349],[356.0543262013549,-42.73406070118054],[356.0559826171676,-42.733401181510395],[356.0576383182984,-42.73307464383667],[356.0592936456233,-42.732925083359305],[356.06094877906753,-42.73286909564],[356.0626037718879,-42.73288333837872],[356.06425869509604,-42.7329340003349],[356.0659137694151,-42.732906885579276],[356.0661231148699,-42.73285905463631],[356.0675455989772,-42.73164485101406],[356.0675712758659,-42.73158576367548],[356.06784190681327,-42.73042949506128],[356.06836308758426,-42.72921436521378],[356.0692325058806,-42.728217921221734],[356.06937165695473,-42.727999721006995],[356.07055906590597,-42.726785244920414],[356.0708904443635,-42.72655312507003],[356.07251201927494,-42.72557150308968],[356.07254709597566,-42.725553797374054],[356.07420323272424,-42.724814724952296],[356.07566009349404,-42.724358863005776],[356.07585897558505,-42.72427859258819],[356.07751500495783,-42.723559283858165],[356.0787233618783,-42.723146058885135],[356.07917092919536,-42.72287941823147],[356.08082715580474,-42.72199638165618],[356.0809754103045,-42.72193244733836],[356.08248388907907,-42.720775666218266],[356.08263389435473,-42.72071826861587],[356.08413975127183,-42.720054555206374],[356.0857947049039,-42.719881904363945],[356.0874492664268,-42.71995476161178],[356.08910361254846,-42.72017068019007],[356.09075818457677,-42.720244320867664],[356.0924129395882,-42.72019699746257],[356.0940678777894,-42.720021906477044],[356.09535067521153,-42.71951314751457],[356.09572357763005,-42.71930636595071],[356.0972234774715,-42.71829892375849],[356.09737979801537,-42.71819168996968],[356.09903546231084,-42.717438716381665],[356.1006901297862,-42.71739631561414],[356.10234406441754,-42.71790754141071],[356.10312408855464,-42.718303238206516],[356.10399759920404,-42.71874909637019],[356.1052167248845,-42.719520352029136],[356.10565090051415,-42.71981045623462],[356.1071820072297,-42.72073734248463],[356.1073043112196,-42.72082923817882],[356.10895840198634,-42.72133225672397],[356.1104643808491,-42.72073949555722],[356.11061388139456,-42.720687556302096],[356.11146381276154,-42.719524476035694],[356.1122382809053,-42.71830930716287],[356.1122714029963,-42.71825235018353],[356.11269465263075,-42.717093935572606],[356.11292029135194,-42.71587841928133],[356.11284079556054,-42.714662713471725],[356.11245884483577,-42.71344681918674],[356.11227744604247,-42.713041168467505],[356.11186896481337,-42.71223079295169],[356.11117258452464,-42.71101469607054],[356.1106266065726,-42.70996063155756],[356.1105268456361,-42.70979862746228],[356.1097380264778,-42.70858246261848],[356.10897528280134,-42.7074146644513],[356.10892887994805,-42.70736627906535],[356.1077197763362,-42.70614982435005],[356.1073229016154,-42.705831357124104],[356.10566905317313,-42.70547379166252],[356.1040143812646,-42.705768096909004],[356.1034488121659,-42.70614690259462],[356.10235864886,-42.706854410150726],[356.1018733559009,-42.70736144114108],[356.1007022904188,-42.708362807975725],[356.10047824275836,-42.708576089627506],[356.09912564290727,-42.70979075266878],[356.0990458451339,-42.70987584077806],[356.09754437326427,-42.71100522760035],[356.0973896676144,-42.711139842875866],[356.0957342027245,-42.711856867733005],[356.0940794884205,-42.71203094004642],[356.0924251296934,-42.71195842419564],[356.09077103331475,-42.71171431614966],[356.08911708288184,-42.71138351145202],[356.08804058519,-42.71099766847337],[356.0874635838961,-42.71077454180313],[356.08598450331306,-42.70978027336073],[356.08581099218964,-42.7096140059179],[356.08503093169173,-42.70856379813055],[356.0845083750823,-42.70734768969371],[356.0842159355605,-42.70613177932471],[356.08416288129126,-42.70571303887677],[356.08403975328173,-42.70491596960576],[356.0840563247319,-42.7037003277527],[356.08416678664634,-42.70329091198011],[356.0843645287946,-42.70248493961746],[356.0852185201993,-42.701270022022555],[356.0858248566448,-42.70087084088158],[356.087480220992,-42.70010358806931],[356.08761162164296,-42.70005640190278],[356.089135084392,-42.699636612305454],[356.0907897078256,-42.699312522761204],[356.0924442142003,-42.69905593750074],[356.0939230443183,-42.698845876664855],[356.0940986893881,-42.69881144079855],[356.0957534306443,-42.69837118301772],[356.09724261415096,-42.69763278008884],[356.0974089996006,-42.697322457526425],[356.09767548878705,-42.69641745059145],[356.09751822196944,-42.695201675892726],[356.0974126638404,-42.694702777481716],[356.0972359617003,-42.69398580649086],[356.0966823612377,-42.69276973011675],[356.09602096622973,-42.69155356845127],[356.0957636102101,-42.691229275220415],[356.09489072579,-42.69033703963637],[356.0941117523634,-42.68981461340575],[356.09301804806535,-42.68911991311514],[356.0924593721338,-42.68880427203271],[356.09112723900967,-42.687902741448475],[356.09080723409346,-42.68766877237336],[356.08966925745864,-42.68668589553808],[356.0891558006429,-42.68611270421748],[356.08859488024734,-42.68546935091379],[356.0878602824485,-42.68425308160147],[356.08750635173357,-42.68333604793017],[356.0873774691849,-42.68303702001772],[356.0870289397543,-42.68182107005309],[356.0868787394951,-42.68060528717704],[356.08689042300205,-42.67938964131569],[356.08710538931626,-42.6781741673996],[356.0875160267496,-42.67712549931021],[356.0875781899543,-42.67695891015996],[356.08835192502664,-42.675743902364985],[356.0891728784592,-42.67495959610919],[356.08970326956637,-42.67452936574382],[356.0908280853978,-42.673810312714586],[356.09182885240097,-42.67331543811954],[356.09248273144294,-42.67299919594841],[356.0941371114526,-42.672341673208116],[356.09495382240294,-42.67210225159169],[356.0957912812977,-42.67180714210132],[356.09744535481474,-42.671321189005866],[356.09909919732263,-42.670984883642504],[356.0998444463167,-42.67089028961995],[356.10075297388136,-42.670684341862184],[356.1024065387999,-42.67053229642916],[356.1040598207763,-42.67059316310736],[356.1057128489986,-42.670857307033145],[356.1058491441352,-42.67089453998305],[356.10736569981515,-42.67127616253525],[356.10901817568003,-42.67202301771349],[356.10918425779045,-42.67211242075893],[356.1106704340049,-42.67298709227386],[356.11119919845873,-42.67332937385986],[356.1123226636608,-42.67402026084561],[356.11358994499335,-42.674546523211426],[356.11397537730653,-42.67467430915172],[356.1156285077314,-42.67498268106619],[356.11728172829794,-42.675222713819906],[356.11893497523914,-42.67544985446121],[356.12058823050825,-42.675680704452425],[356.1210089817833,-42.67576649779402],[356.1222414296195,-42.67598015154379],[356.12389460051384,-42.6763250795621],[356.1255477794761,-42.67668093904441],[356.1272010480645,-42.676959884773105],[356.1273623614246,-42.676985471541215],[356.12885437740925,-42.67718739784798],[356.1305078380057,-42.67727725446382],[356.13216147223727,-42.67716579940708],[356.1329303456717,-42.67698809072528],[356.1338154586326,-42.67661334646256],[356.1348713108353,-42.67577328463265],[356.1354704065306,-42.674799061379574],[356.135612834456,-42.67455794488039],[356.13615985037285,-42.673342519229195],[356.1366577522603,-42.67212707070723],[356.13680217671157,-42.67091147480644],[356.1368283614383,-42.66969583008416],[356.1366016260254,-42.6684800809113],[356.1361694133648,-42.66726424563462],[356.1359542228727,-42.666048500110335],[356.13591342797685,-42.664832827652326],[356.1364996768081,-42.66361741724269],[356.1371327817954,-42.66306490581232],[356.1386706740787,-42.66240264275757],[356.1387864510638,-42.66237226729278],[356.14043969076357,-42.662236581174064],[356.14209272103045,-42.66239895878309],[356.14212725517575,-42.6624039604338],[356.1437456569664,-42.66271933839189],[356.1453986110641,-42.66303798151452],[356.1467502660283,-42.66362121555662],[356.1470512967046,-42.663833430982464],[356.14842025536353,-42.664837403077335],[356.14870372846764,-42.66514672794164],[356.1501787873019,-42.666053592652986],[356.1503564221278,-42.666108053264416],[356.15200960529484,-42.66622457001054],[356.1536628130351,-42.66630380033305],[356.1553159850129,-42.666468936911635],[356.15696915411945,-42.66666067855308],[356.1586223313208,-42.66685758193313],[356.1602754716878,-42.667177193442946],[356.1607480838917,-42.66727189233883],[356.1619286381071,-42.66747167987127],[356.16358185530373,-42.667660639966776],[356.16523510320013,-42.66778215929947],[356.1668884745211,-42.667484877452864],[356.1671098315637,-42.667273015541184],[356.1670550910053,-42.66605735197407],[356.1668890013361,-42.66559817520461],[356.16665286381,-42.664841635839174],[356.1664887690596,-42.66362595533748],[356.1668898819704,-42.66244407058511],[356.1669072134983,-42.6624103638898],[356.16854324657453,-42.66157935305979],[356.17019633744064,-42.66172244397139],[356.171849347122,-42.66231108420787],[356.17202210059503,-42.662411020671044],[356.17350231089614,-42.66334700186062],[356.1739691621615,-42.6636268661395],[356.1751553439659,-42.664286118780524],[356.1764854384726,-42.6648427184303],[356.1768084624232,-42.664929070206064],[356.1784616374487,-42.665331518741795],[356.18011483985174,-42.665644187029336],[356.18176805990805,-42.66593152887433],[356.18255867811087,-42.666058622369775],[356.1834212962632,-42.666142054106935],[356.1850745424072,-42.6662483322842],[356.18672779176313,-42.666293831715535],[356.18838104005863,-42.666287270703585],[356.1900342863525,-42.666263061480315],[356.19168753105197,-42.66623633493209],[356.1933407758498,-42.66622000246624],[356.1949940223215,-42.66621836847116],[356.1966472754882,-42.66625067312005],[356.19830054802117,-42.666360873056405],[356.1999538609405,-42.66660740789985],[356.2016072556881,-42.667099443681],[356.2020082891468,-42.667272915051974],[356.20326078912774,-42.667958520842035],[356.2039585202628,-42.66848825236392],[356.2049146478591,-42.669656725400195],[356.2049568918913,-42.66970373219753],[356.205853903846,-42.67091922251825],[356.20629607068014,-42.67213479409068],[356.2065213835786,-42.673350406261],[356.2065694630347,-42.67376175217291],[356.2068192758417,-42.6745660037951],[356.20704259414885,-42.675781615422785],[356.2071621044751,-42.67699724741303],[356.2074413268124,-42.678212847183474],[356.20812375625167,-42.67942836321734],[356.2082251393988,-42.679528757896875],[356.20906767194964,-42.67942816315329],[356.2098786512201,-42.67931273767912],[356.2115319578122,-42.678656250413894],[356.2121377226349,-42.67821180301403],[356.213184938022,-42.677374964611815],[356.21342813582316,-42.676995826708875],[356.213958106287,-42.67578003512181],[356.2142371262702,-42.674564306910995],[356.2143391666039,-42.67334862455456],[356.21426422670635,-42.672132988524496],[356.21414081850054,-42.670917365111364],[356.2141360697841,-42.66970171080594],[356.21417456412064,-42.668486045292546],[356.2143386327585,-42.667270346996474],[356.2147336047871,-42.66605458748293],[356.2148327995806,-42.66584786537348],[356.2153089992421,-42.6648387780317],[356.21648493952836,-42.6637364701076],[356.21658999584076,-42.66362276931107],[356.2181375058741,-42.66261176377763],[356.21842090338066,-42.66240658414706],[356.2197900841495,-42.661612451094726],[356.2206724937575,-42.6611902373067],[356.2214427488923,-42.66084621720415],[356.2230955120315,-42.660302397325864],[356.22474841077735,-42.660010812008],[356.22510065319545,-42.65997309328192],[356.22640129361065,-42.65971868080698],[356.22805420289876,-42.65948610399474],[356.22970719234064,-42.65937991934011],[356.23136023537944,-42.659351837137805],[356.2330133573165,-42.65942612842368],[356.23466657532236,-42.659613870038676],[356.23607730969917,-42.65996866719705],[356.2363199707923,-42.66000130023055],[356.23797340710837,-42.66041212272434],[356.23941502105936,-42.66118276866585],[356.23962728140543,-42.66128943717296],[356.241080442506,-42.66239761236145],[356.24128158130486,-42.662579182402794],[356.24230691960673,-42.6636126545521],[356.2429366398119,-42.66459870824697],[356.2430962430486,-42.664827908369205],[356.24381308809774,-42.666043194401645],[356.24420493067345,-42.66725864601419],[356.2444064422085,-42.668474196119895],[356.24448137881683,-42.669689812324386],[356.2444525538243,-42.670905482926884],[356.24430281967415,-42.67212121681008],[356.2439989904694,-42.673337030758624],[356.24347951434345,-42.6745529552887],[356.2429468308643,-42.675376533350565],[356.24269893634926,-42.67576901060362],[356.2415562973603,-42.676985241771916],[356.2412950280905,-42.677212299342735],[356.23986175185246,-42.67820173002267],[356.23964249425666,-42.67833847529797],[356.237989674511,-42.67920374188206],[356.2374438845821,-42.67941853042473],[356.23633677625094,-42.680030386863464],[356.2349124609336,-42.680635330142096],[356.2346838416651,-42.680866528620086],[356.2335578125854,-42.681851575264076],[356.2331765701993,-42.683067394147905],[356.2336332037831,-42.68428285479357],[356.2346456938965,-42.68549807123583],[356.23468764219774,-42.68554254663543],[356.23563780961325,-42.68671328790427],[356.2363430944795,-42.6875572416347],[356.236618991345,-42.68792850102361],[356.2375520151197,-42.689143728144145],[356.2379988263844,-42.68977072013286],[356.23840511325284,-42.69035898541238],[356.2392732071736,-42.6915742291974],[356.2396548179555,-42.69214278552056],[356.2400667701641,-42.6927895026768],[356.2407515451946,-42.69400482424127],[356.2413112754359,-42.69488386344199],[356.24151319527414,-42.6952201034699],[356.2422036079875,-42.696435413621465],[356.2429434788535,-42.69765069439849],[356.2429679333337,-42.6976821448589],[356.2438710005376,-42.69886587323266],[356.24462401984056,-42.699739774288716],[356.24489571716515,-42.70008099335091],[356.2458950063423,-42.701296117994325],[356.2462801930504,-42.70177432192629],[356.2469042560156,-42.70251122853708],[356.2478114457018,-42.70372638672742],[356.2479365848179,-42.70391602418178],[356.248673114771,-42.70494156329965],[356.2494055506363,-42.706156806768554],[356.2495936488718,-42.706587484661135],[356.2500399281623,-42.70737210176114],[356.25047116912015,-42.70858751049768],[356.2507787875482,-42.70980298926033],[356.250946246044,-42.71101854864008],[356.25116964086317,-42.71223407522671],[356.2512543103874,-42.71245752998176],[356.2516641639187,-42.71344944265862],[356.25238034714687,-42.71466467677187],[356.25291200992683,-42.715368036432665],[356.2533314329485,-42.715879765461544],[356.2543942148794,-42.71709477816262],[356.2545687394455,-42.717285757454086],[356.2555588306162,-42.71830971789534],[356.25622546862195,-42.719114957672545],[356.25664720226087,-42.71952469388555],[356.25762122738047,-42.72073973263094],[356.25788254143566,-42.72115136512778],[356.25840354815585,-42.721954886979525],[356.2591385589603,-42.72317006684072],[356.25954075887375,-42.72404111051002],[356.25969065402654,-42.72438536222091],[356.2603076692013,-42.72560061199774],[356.26103839250527,-42.72681578253505],[356.2611992637143,-42.7270380187355],[356.2618451697307,-42.72803089709312],[356.2626190794957,-42.72924602839887],[356.2628573491429,-42.72957763924012],[356.2634723209386,-42.73046109982334],[356.26416468813903,-42.731676276887114],[356.26451581151935,-42.73230363434552],[356.264867556716,-42.732891442402874],[356.26550313908973,-42.73410665120228],[356.2661746549891,-42.735207789269985],[356.2662711776016,-42.73532176201293],[356.26707851366905,-42.73653683935973],[356.2678323510146,-42.73714543832519],[356.2685821198915,-42.73775140218109],[356.26948883899024,-42.738128944775205],[356.27114512731123,-42.738932518534924],[356.2711980619875,-42.73896510910759],[356.2728020276701,-42.740134654865486],[356.2728499043812,-42.74017950380687],[356.27414094297905,-42.74139415753203],[356.27445973672985,-42.7418485540262],[356.2749111301055,-42.74260920881546],[356.2755779150216,-42.74382433713742],[356.2761189342575,-42.74450527220391],[356.2764726718696,-42.74503927884861],[356.2774112544815,-42.74625417805038],[356.2777776928007,-42.746776765413095],[356.2782469906167,-42.74746915372978],[356.27906013881864,-42.74868414194345],[356.27943703773707,-42.74935109332653],[356.2797883721161,-42.74989919500229],[356.2804077477616,-42.7511143345562],[356.2807540848709,-42.752329700354245],[356.2808908672966,-42.75354524149635],[356.2808763520166,-42.754760909761956],[356.2806419055077,-42.755976762683595],[356.2800699394194,-42.75719289702364],[356.2794501067307,-42.757862491843014],[356.278965074222,-42.75840946894467],[356.2777964269662,-42.75919384954775],[356.2770585851658,-42.75962668042558],[356.27614196903966,-42.760048209792885],[356.2744871788178,-42.76070565387735],[356.2740497784952,-42.76084472695382],[356.2728322105016,-42.761263061747165],[356.27117704258416,-42.76169938780336],[356.26952170474965,-42.762029163664245],[356.26929335164346,-42.76206400135293],[356.26786642857,-42.762417731052324],[356.2662110606147,-42.76275261440609],[356.26455563056356,-42.76305340389704],[356.262961281198,-42.76328416900505],[356.2629001252441,-42.763307566083725],[356.2612446949247,-42.76363306494001],[356.2595890922334,-42.763831084532505],[356.25906461581303,-42.76328677211069],[356.2579319639479,-42.762754692621144],[356.2570660863822,-42.76207240005315],[356.25627464033624,-42.761460721908364],[356.2551323460151,-42.76085795325455],[356.2546179097022,-42.76062818550774],[356.25296198674346,-42.76048414696119],[356.2522665541126,-42.76085968534541],[356.2514376758934,-42.76207582893913],[356.25130906260574,-42.76310488277057],[356.25129187242834,-42.76329157000607],[356.25130928852434,-42.763313692508206],[356.2525049601991,-42.76450651168158],[356.2529667918157,-42.76481842302302],[356.2546230935076,-42.765194058548246],[356.25627891976745,-42.76514335299448],[356.2579345859938,-42.76496034267222],[356.2595907482131,-42.76519344913518],[356.25993996210974,-42.76571751051582],[356.26099546828067,-42.76693246617477],[356.26115945461737,-42.76814801226377],[356.26094368996826,-42.769363812166446],[356.2602848483676,-42.77057990566663],[356.25959825462905,-42.771368181426766],[356.2592159168171,-42.771796263630364],[356.2579439246435,-42.77281468602489],[356.2576657212346,-42.77301292011494],[356.2562889638606,-42.773784999350745],[356.25496551590567,-42.77423026916742],[356.2546334600964,-42.77432288604822],[356.25297756565914,-42.77453445210286],[356.2513212696656,-42.77438548372879],[356.2506204840163,-42.774232861143126],[356.2496647053469,-42.77397481488183],[356.24800784979914,-42.77325978635527],[356.2475025155375,-42.77301896436126],[356.246350918538,-42.77243109670291],[356.24485141644277,-42.771804737643315],[356.2446941613805,-42.771735522499704],[356.2430375346413,-42.771138268982156],[356.24187237885087,-42.770590614658914],[356.24138079482066,-42.770383764715646],[356.23972404480486,-42.76957285551092],[356.23944565142455,-42.76937615040407],[356.2380671481208,-42.76854318450013],[356.2374596931178,-42.76816143157754],[356.2364103563214,-42.76757276942866],[356.2351667524719,-42.766946814846875],[356.2347537618636,-42.7667808937965],[356.23309763100315,-42.766523506492135],[356.23144175099617,-42.766577499930435],[356.2300346816392,-42.766948974678485],[356.22978615378094,-42.76702028781587],[356.2281307456627,-42.76776353611362],[356.2275500501496,-42.768165593800425],[356.226475664166,-42.76904436024623],[356.2261390731998,-42.76938177270033],[356.2250917626102,-42.770597805523714],[356.22482099640035,-42.771061516391896],[356.22441228082243,-42.77181370075388],[356.2240234066367,-42.77302949167423],[356.2237629651389,-42.7742452371295],[356.2235865414836,-42.77546095320894],[356.2231683597922,-42.77648364047147],[356.2229890597004,-42.77667681173753],[356.22151257850794,-42.77715871567999],[356.21985653763863,-42.77744494492309],[356.21820027043105,-42.777346131388605],[356.2165440034515,-42.777237659930215],[356.21488778500316,-42.77721562212282],[356.213231610171,-42.77728431854246],[356.21157545636333,-42.7774090244062],[356.20991935139045,-42.77766766843843],[356.20857784184074,-42.77789642370506],[356.20826324491776,-42.77795812142085],[356.2066070663044,-42.77809178045513],[356.2049507876478,-42.77794758868238],[356.204742935007,-42.7778971721674],[356.2032944361413,-42.77754153901513],[356.2016380143748,-42.776808107352046],[356.2014307423154,-42.77668206017802],[356.1999815431126,-42.775725716923],[356.19965369685013,-42.77546665690953],[356.19832505284666,-42.77430542369534],[356.19826461403363,-42.77425117939267],[356.1967720776412,-42.773035696377626],[356.1966686544151,-42.77296454675209],[356.1950123835489,-42.771945103602015],[356.1946362917617,-42.771820253984096],[356.1933562509316,-42.771494653778326],[356.1917001837276,-42.77138727208901],[356.19004416666417,-42.77175321565112],[356.18990045410993,-42.77182058527187],[356.1883881796859,-42.77285885067137],[356.188210406285,-42.77303631189866],[356.1877263731862,-42.77425198324981],[356.18750204790797,-42.77546764541172],[356.1876982391684,-42.77668329516108],[356.1882570520184,-42.77789893238733],[356.18838852770534,-42.778044305301194],[356.1897942121115,-42.77911452363076],[356.19004486934676,-42.779241966551254],[356.1917012481862,-42.78021728604787],[356.1919180942239,-42.78033005650638],[356.19335766462655,-42.78109401159604],[356.19402651156594,-42.78154555140178],[356.19501419249036,-42.78234177881839],[356.19543826460216,-42.78276107762613],[356.1965047827679,-42.78397662384952],[356.1966709328652,-42.784315902190855],[356.197046992311,-42.785192219793764],[356.19746938477994,-42.78640782698971],[356.19759023871836,-42.78762346802795],[356.19740126895573,-42.78883914480886],[356.1969565504769,-42.790054849827555],[356.1966721920328,-42.79058735446428],[356.19625814604103,-42.79127057989855],[356.19529146892603,-42.792486331801435],[356.19501600733975,-42.79276890091658],[356.19404335243723,-42.79370209989126],[356.1933596032893,-42.79425319915988],[356.19207406382196,-42.79491790585864],[356.1917030414212,-42.79508703411217]],[[356.0724520012594,-42.778333989900815],[356.07079578071614,-42.77832607908096],[356.06914002013275,-42.778070694775614],[356.0683658391699,-42.777840605659094],[356.06748460608134,-42.77763859044176],[356.0658294584469,-42.77707911919241],[356.0649531631003,-42.77662145959672],[356.0641750058912,-42.776176211548304],[356.06321073893685,-42.77540398291497],[356.0625219631434,-42.77457982042466],[356.06225061941143,-42.774187312661404],[356.0618615984425,-42.772971243772496],[356.06190944009717,-42.771755639266004],[356.0624187400073,-42.77054052466128],[356.06253017205654,-42.77039841348914],[356.0637115758488,-42.769326231976194],[356.0641888315906,-42.76903663338329],[356.06584585972666,-42.76849108743047],[356.06750204767326,-42.768376332520845],[356.0691575966168,-42.76860258002735],[356.0708124391479,-42.769221605852835],[356.07101575916187,-42.76933365846844],[356.0724662789443,-42.77041521488526],[356.0726156508459,-42.77055087873389],[356.0735336530646,-42.77176742201151],[356.074012262189,-42.77298353742007],[356.0741168429452,-42.773488987626244],[356.0742997102282,-42.77419946812348],[356.07437647960734,-42.77541519690083],[356.07424944001207,-42.77663073074469],[356.07411051159596,-42.77705322977706],[356.0735221438789,-42.77784568780677],[356.0724520012594,-42.778333989900815]],[[356.1138680488809,-42.769387073257136],[356.11221203624,-42.76940038047013],[356.11203450428314,-42.76936674151113],[356.11055655716945,-42.76896411861855],[356.1094967708825,-42.7681494638548],[356.1089025663721,-42.767322157025326],[356.1086681863513,-42.7669332664094],[356.1084708656731,-42.76571748075184],[356.10867716104235,-42.76450196072288],[356.1089066286673,-42.76397848348382],[356.1091641796502,-42.763286623956986],[356.109810955557,-42.7620713886317],[356.11056006851595,-42.76085621526324],[356.11056620192215,-42.76084688779081],[356.111314254667,-42.759641040193245],[356.1119855993393,-42.75842580810171],[356.112225292287,-42.75798681643518],[356.11280004382434,-42.75721066106784],[356.113671603781,-42.755995543302156],[356.11388350890644,-42.755762080026486],[356.11554001310395,-42.754975916703565],[356.11637056689955,-42.75478151222857],[356.1171961405705,-42.754499438547505],[356.11885240047917,-42.753873228003634],[356.11952376778055,-42.75356767433731],[356.12026880893336,-42.75235243515446],[356.1202651296605,-42.75113677691645],[356.119749732304,-42.749920832746184],[356.11904777310275,-42.74870478060385],[356.11885883608414,-42.7477682878872],[356.1186165882622,-42.747488879030534],[356.1188592384698,-42.74738653713431],[356.1205151249556,-42.74692259517846],[356.12197604536755,-42.74749074751264],[356.12216987846455,-42.74756616975689],[356.1233065109232,-42.748707116626534],[356.12382367697427,-42.749225520197164],[356.12421101945466,-42.749923248705144],[356.1248849813803,-42.75113925485141],[356.1254767851788,-42.75170695743964],[356.12583685269993,-42.75235539853422],[356.12659529218894,-42.753571437487935],[356.12712984227846,-42.75438761422222],[356.1272954619629,-42.754787442565345],[356.1277745625994,-42.75600333498805],[356.12812550360616,-42.75721916290364],[356.1282896210789,-42.758434898949815],[356.12847331951946,-42.75965064422961],[356.1284570842597,-42.76086629234762],[356.1279874267442,-42.762081719465904],[356.1271220473543,-42.76285192906979],[356.1266613588381,-42.763296718899575],[356.1254651501243,-42.76398546694844],[356.1248334200448,-42.76451144475315],[356.1238082504874,-42.76505933536983],[356.1229085041476,-42.76572608979744],[356.12215128239836,-42.766144274919014],[356.1208240484634,-42.7669406146642],[356.1204943833212,-42.76710570075805],[356.1188376808371,-42.76783204653825],[356.11801491904356,-42.76815468650634],[356.11718103964597,-42.76846585282424],[356.1155244866888,-42.76898950580147],[356.11394220923853,-42.769367923906415],[356.1138680488809,-42.769387073257136]],[[356.0873891519166,-42.758469961180204],[356.08573235000546,-42.759160548227186],[356.08407638084606,-42.75931275651687],[356.08242113635424,-42.75901869030309],[356.08138793357375,-42.758402504779205],[356.08076740410775,-42.75782775216419],[356.08033983170026,-42.75718590631106],[356.08005873110585,-42.75596999592416],[356.0801498436471,-42.75475442245055],[356.08077425113936,-42.75372388525267],[356.0809675797412,-42.75353950393347],[356.0824315198877,-42.752693971335475],[356.08408707864675,-42.752688918724694],[356.08574174872945,-42.753243281801154],[356.0862691825313,-42.753544144359765],[356.0873955652217,-42.754363254108746],[356.08791765278045,-42.75476119346881],[356.08859282942035,-42.755977413241446],[356.08853981282806,-42.75719302512215],[356.0874864388293,-42.75840779935214],[356.0873891519166,-42.758469961180204]],[[356.11057895940297,-42.750106650020925],[356.1100795369792,-42.74991500153369],[356.1089243149378,-42.749416714021834],[356.10850320838324,-42.748698317661045],[356.10867273374777,-42.7474827729757],[356.10892705384,-42.74716106111564],[356.11005729583917,-42.746268018453435],[356.11058391742586,-42.74593159676679],[356.11224012725694,-42.74520879942972],[356.11358836114306,-42.74505458637771],[356.1138956940308,-42.745019048845634],[356.11468108596085,-42.74505525270561],[356.11555084206293,-42.74519833102558],[356.1167347887306,-42.7462721332178],[356.1162753330507,-42.747487518801144],[356.1155480438667,-42.747725148651156],[356.1139388367197,-42.748701770046885],[356.11389149711704,-42.74871968393493],[356.11223486019924,-42.749746152901295],[356.11143203457345,-42.74991586603625],[356.11057895940297,-42.750106650020925]],[[356.2562608440669,-42.74958546890906],[356.25791513032453,-42.74869964197961],[356.25791525981333,-42.74869958178014],[356.25936110275467,-42.747483049691645],[356.25956902813465,-42.74731970831299],[356.2606290937607,-42.74626655763353],[356.26122239757075,-42.74567784393302],[356.2618755632464,-42.745050066112306],[356.262875554902,-42.74393778035438],[356.26299837797995,-42.743833645863525],[356.263813565258,-42.74261742803378],[356.2643877211846,-42.74140137274535],[356.26452666002024,-42.74068428021872],[356.26473918367697,-42.74018547076685],[356.264525010203,-42.73940991520711],[356.26442001798586,-42.73897003750575],[356.26367531442645,-42.73775489823974],[356.26286730548526,-42.737431718984986],[356.2612113083943,-42.73674427240056],[356.2607962450743,-42.73654119564809],[356.25955537007326,-42.73607502690121],[356.2578994102991,-42.73535766562785],[356.25784434204905,-42.73532746758807],[356.2562432284061,-42.73441602606043],[356.2557283925067,-42.73411314676928],[356.2545871252844,-42.733499536106585],[356.25329347086296,-42.73289897907065],[356.25293124814846,-42.73274293591394],[356.25127568121457,-42.73223599515337],[356.2496204213127,-42.73199467552637],[356.24796567633496,-42.73224200365833],[356.2468440007819,-42.73290267313912],[356.24631183689706,-42.733407330637725],[356.24592540289524,-42.73411882631082],[356.24554037911946,-42.73533468877497],[356.24546203926747,-42.736550386977676],[356.2457902170577,-42.737765868119865],[356.2463172388431,-42.738804204423076],[356.2464239762223,-42.73898118337462],[356.2471954446229,-42.740196419765454],[356.2479206004275,-42.74141167663094],[356.24797520356583,-42.741512907117134],[356.24855080873056,-42.74262698207214],[356.249063531208,-42.74384235036491],[356.2496340107782,-42.74488319237852],[356.2497226425223,-42.74505763303353],[356.2503762870201,-42.74627291504616],[356.2512441139952,-42.747488068645005],[356.25129224348035,-42.74755551848718],[356.2523041572501,-42.74870310198803],[356.2529495441078,-42.74925780944993],[356.25460567719,-42.74985117430379],[356.2562608440669,-42.74958546890906]],[[356.221456856894,-42.68438053363919],[356.2215814647253,-42.684287402156876],[356.2214567278928,-42.684165420492974],[356.21980241006224,-42.68312995097631],[356.2194672054591,-42.68307241366483],[356.2181486304415,-42.68297855728303],[356.21720897700555,-42.68307308366712],[356.21649509224477,-42.68327617570455],[356.21518969039204,-42.684289301203],[356.21649600655843,-42.68503524159057],[356.21814981244944,-42.685141786213734],[356.21980346879906,-42.684977506243136],[356.221456856894,-42.68438053363919]],[[356.2545085031789,-42.664106257963184],[356.2528552445855,-42.66404395667755],[356.2521514576555,-42.66360726012011],[356.2513780337389,-42.66239205925326],[356.25176812105946,-42.66117617563364],[356.2528516070897,-42.660752241832554],[356.25450515788276,-42.66115019827338],[356.2545354247537,-42.66117451671717],[356.2553308156938,-42.6623896827024],[356.25515095881923,-42.66360544896609],[356.2545085031789,-42.664106257963184]],[[356.2280439704884,-42.64498268189277],[356.22639149676723,-42.64528846265113],[356.22473877938864,-42.64524560208642],[356.2230857660501,-42.64472599984575],[356.22222346904806,-42.644170569051525],[356.2214323909586,-42.643556241231565],[356.22089310699477,-42.642955346742816],[356.22011842496363,-42.641739937001525],[356.2198277210344,-42.64052437328449],[356.21989632663684,-42.63930869800618],[356.22040277619936,-42.63809288584466],[356.22137249745106,-42.636876922805385],[356.221428360533,-42.63682585674295],[356.2230801885862,-42.635808374594944],[356.22364191463475,-42.63566051350209],[356.224732350591,-42.635386158940065],[356.22638478312274,-42.63539576162789],[356.227404213807,-42.63565916230667],[356.22803750970945,-42.635821687180815],[356.2296906010304,-42.636715111910874],[356.229892486036,-42.636873854810084],[356.2309386290503,-42.638089088434484],[356.23134486560485,-42.63909288610734],[356.2314298658469,-42.6393045417509],[356.231550756244,-42.64052014606175],[356.2313467569819,-42.64158662858922],[356.2313184882606,-42.64173589549764],[356.23071978157924,-42.642951793289306],[356.2296959745722,-42.64405752752775],[356.2295298869275,-42.644167922483405],[356.2280439704884,-42.64498268189277]],[[356.2511730290083,-42.63711722239087],[356.24952071473484,-42.637266960619634],[356.2478680339883,-42.63706674813442],[356.24724569980606,-42.636865653626096],[356.24621475564237,-42.636256937827284],[356.24561851169375,-42.635650880164434],[356.245346910253,-42.634435371181794],[356.24560191450456,-42.6332195817598],[356.24621051335,-42.63200469160319],[356.2462110617032,-42.6320036014956],[356.24727110150496,-42.630787371759205],[356.24786111702343,-42.63031348481158],[356.2493799831292,-42.629570542832845],[356.2495125701137,-42.6295162728233],[356.25116460540596,-42.62929887221201],[356.25281713203873,-42.62953708242904],[356.25289931281594,-42.62956849487577],[356.2544702472892,-42.63028479113176],[356.2551124898901,-42.63078280515129],[356.25606607517875,-42.631997866749856],[356.2561248173875,-42.6322554253811],[356.25632341204397,-42.633213359177134],[356.25612673408637,-42.63391175801491],[356.2559734299545,-42.63442923165687],[356.2548290805009,-42.63564559364879],[356.25447656795325,-42.63587533333837],[356.25282501540096,-42.63667777258762],[356.25216473248315,-42.63686285246406],[356.2511730290083,-42.63711722239087]]],"index":13,"temperature":3.0},{"color":"#ebff0c","count_points":900,"count_polygons":12,"curves":[[[356.3174898849027,-42.7387625380998],[356.315834358309,-42.73859806041278],[356.31417858332907,-42.738310868706634],[356.31252256091864,-42.73789667170504],[356.31177206924036,-42.737711594003],[356.31086653103404,-42.73746801363019],[356.30921064649465,-42.737100161463125],[356.30755500518495,-42.736844796528885],[356.30589959189126,-42.736698756078226],[356.3042441173876,-42.7365170842768],[356.3041891938734,-42.73650410131049],[356.30258832379366,-42.73616314025034],[356.3009323397302,-42.73569795038559],[356.29974501731186,-42.73529299701434],[356.2992762526274,-42.73516384690224],[356.2976202470591,-42.73465877716729],[356.2959643195931,-42.73418212729905],[356.29560095761934,-42.73408143047302],[356.2943084695383,-42.73373479097548],[356.29265231594786,-42.7331001668295],[356.29222585915136,-42.73286899462248],[356.2909956641871,-42.732156450654465],[356.29031464345087,-42.73165511797582],[356.28933851062715,-42.730886871958404],[356.2888776781939,-42.73044077876412],[356.2876808548541,-42.72927550416509],[356.2876350572079,-42.72922624691274],[356.2865493794555,-42.72801156202458],[356.28602277689964,-42.727354399370846],[356.28558052059645,-42.72679676393313],[356.28473670129836,-42.72558184840697],[356.2843640699615,-42.724980022466795],[356.2839510112823,-42.72436687626637],[356.28317545964256,-42.723151890023324],[356.28270511804965,-42.7223713558186],[356.28239788173096,-42.72193690027334],[356.281434633355,-42.72072206241366],[356.2810470516044,-42.720240758769],[356.28040843905666,-42.7195072691613],[356.2793894407124,-42.718332973878965],[356.2793516512211,-42.71829249206478],[356.27817868433226,-42.71707780025992],[356.27773216714104,-42.71658142117567],[356.2770874833706,-42.7158630304654],[356.27619526374474,-42.714648091297306],[356.27607437301043,-42.714415012035566],[356.27554217803515,-42.713432955504125],[356.27510888927554,-42.71221764245322],[356.27501648077936,-42.71100205907078],[356.2751767753002,-42.709786275977365],[356.27560444930026,-42.70857028045424],[356.2760645101701,-42.70775112076972],[356.27626700035927,-42.707354095547245],[356.2769323613536,-42.70613790457317],[356.2776765094007,-42.70492164574944],[356.2777144959266,-42.70485289016059],[356.2783037293102,-42.70370547787408],[356.2790447434808,-42.70248921279902],[356.27936425016867,-42.70190419249364],[356.27973277844995,-42.701272986994766],[356.280329837279,-42.70005683318295],[356.28101370482943,-42.69886393882892],[356.2810304599496,-42.698840589135976],[356.28196196466035,-42.69762414479491],[356.2826650782517,-42.69713546018664],[356.284318466185,-42.696713303936356],[356.2852649080733,-42.69640563321781],[356.2859716916522,-42.69620578842095],[356.28762457845374,-42.69551123408611],[356.28823900567625,-42.695187324776455],[356.2892771550424,-42.69465527526512],[356.29056636176966,-42.69396953947617],[356.2909296577029,-42.69378285642014],[356.292582350875,-42.69304621517624],[356.2940293216242,-42.692750628102765],[356.29423571890294,-42.69271252764783],[356.29588951964655,-42.69262929747707],[356.29719537983897,-42.69274756062825],[356.2975437320759,-42.69277404037992],[356.2991981297858,-42.693014681140156],[356.3008526564806,-42.6933171757324],[356.30250741600685,-42.69373342457627],[356.30322429393146,-42.693957134379716],[356.30416230079794,-42.69420304773924],[356.3058172740156,-42.69470505957278],[356.3071069232892,-42.695168706045465],[356.3074724228419,-42.69528206162712],[356.30912749152924,-42.69580397786386],[356.3106395664327,-42.69638053195275],[356.31078279688643,-42.69642834781608],[356.31243807257044,-42.69702226213569],[356.31355437567896,-42.6975929459928],[356.3140938938376,-42.69786181810487],[356.31546072571075,-42.69880644173986],[356.3157503565656,-42.698982972727926],[356.3172040253637,-42.70002009459735],[356.31740696191315,-42.700142733218506]],[[356.0445848202106,-42.65013650709349],[356.04623812784206,-42.64991506032995],[356.04789127808596,-42.649759980425806],[356.04954428342336,-42.64966795529069],[356.05119716002446,-42.64963378514169],[356.05284992960026,-42.64964938851618],[356.0545025998852,-42.64971296401454],[356.05615514408515,-42.64983936316063],[356.0578075313771,-42.65004619311976],[356.0586419755254,-42.65018653284292],[356.0594598381724,-42.65029860801043],[356.0611119437654,-42.650659339852474],[356.0627061143848,-42.651406554556424],[356.0627632369022,-42.65144538155663],[356.06422183126097,-42.6526238010619],[356.0644131167268,-42.65298578309615],[356.06497202601935,-42.653840236195094],[356.0652617874059,-42.655056191011596],[356.06524503140594,-42.656271828369555],[356.0650715491624,-42.65748730346618],[356.0648023536215,-42.6587026789801],[356.0644967297257,-42.659918015989724],[356.06439910448375,-42.66024879088887],[356.0642926343352,-42.66113345819536],[356.06411426819096,-42.66234892697492],[356.0639110913685,-42.663564369569684],[356.0636969083928,-42.66477980031943],[356.0634650873205,-42.665995212195696],[356.06324542840457,-42.667210636452424],[356.0629842198323,-42.66842601652905],[356.06272840145397,-42.66925389999391],[356.06258156186846,-42.66964124648466],[356.06173763009076,-42.67085600578818],[356.0610707580411,-42.671431108946614],[356.0594162825811,-42.67197454138223],[356.05789225959734,-42.672067499981075],[356.0577626776806,-42.67207636053095],[356.0572785663453,-42.67206682398566],[356.0561093217945,-42.672054899362266],[356.0544559401102,-42.67204636040852],[356.0528025158064,-42.672058203693446],[356.05264429032934,-42.67206161346908],[356.05114898775815,-42.67211818956576],[356.0494954427608,-42.67218454585802],[356.047841887573,-42.67225396421081],[356.0461883211853,-42.672326788981216],[356.0445347605451,-42.67239536669986]],[[356.2695803949068,-42.80466325066737],[356.2679237237617,-42.80486205199882],[356.26626649260027,-42.80464596555834],[356.26618185687516,-42.804614188539034],[356.26460848710127,-42.80382411788021],[356.2640686569268,-42.8034000219822],[356.2633313589577,-42.80218487772192],[356.2633372060736,-42.80096921953355],[356.26398439326664,-42.79975311800293],[356.26460246538886,-42.799182000067745],[356.26578185010806,-42.79853620229569],[356.26625815310973,-42.79834692385586],[356.2679146589375,-42.79815069837727],[356.2695717599175,-42.79839424892744],[356.2699189319907,-42.79853319219651],[356.27122979318705,-42.799292561109986],[356.2717180883386,-42.79974749096859],[356.27234397658884,-42.80096266702306],[356.27233937744177,-42.802178324691525],[356.2716826417457,-42.80339448037772],[356.27123612964743,-42.80380522395707],[356.2697243259865,-42.80461160786652],[356.2695803949068,-42.80466325066737]],[[356.17679536951573,-42.77431992209338],[356.175139153209,-42.77491036145317],[356.17348302715806,-42.77479811444503],[356.17237258134367,-42.77425142507053],[356.1718270660561,-42.773891330930255],[356.1710921490963,-42.77303563026979],[356.17049779458097,-42.77181990516437],[356.17017165700474,-42.77076357502687],[356.17012962365555,-42.770604204907734],[356.16996416716086,-42.769388528764075],[356.1696459912718,-42.76817283306679],[356.1691531175982,-42.76695711366844],[356.16851680122926,-42.76611172204339],[356.1681999246478,-42.76574132884908],[356.16686126717417,-42.76476803674547],[356.1664609000819,-42.76452541730304],[356.1652056413888,-42.76395724777373],[356.16378362467213,-42.76330931635539],[356.1635500332377,-42.76322344864424],[356.1618944572031,-42.762509312657336],[356.16108568218476,-42.76209314885463],[356.160238947403,-42.761722586127156],[356.15864126627287,-42.76087697471109],[356.1585835150423,-42.76085023205311],[356.1569281034198,-42.76003660393099],[356.15621012662683,-42.759660751789575],[356.1552727363113,-42.759220715496156],[356.15377951453485,-42.75844447755767],[356.1536174342972,-42.758361243492715],[356.1519622245392,-42.7574126937692],[356.1516720438682,-42.757228243878465],[356.15030716582584,-42.75628063373103],[356.14996812863666,-42.75601209252293],[356.1486641324954,-42.75479604031298],[356.14865237702213,-42.7547834770348],[356.14744818304194,-42.753580001490164],[356.1469977736142,-42.753110643427306],[356.14624157532904,-42.75236395286661],[356.1453431761347,-42.75157074861112],[356.1448599601657,-42.75114783174722],[356.1436885118577,-42.75025876635828],[356.1432705676443,-42.749931620151365],[356.1420338525766,-42.74904237207883],[356.1416223590398,-42.74871536477207],[356.1403793407463,-42.747709267381005],[356.1401468492956,-42.74749915209815],[356.1389165416397,-42.746283017384],[356.1387251159303,-42.74608195343554],[356.13774804366176,-42.74506689449334],[356.1370710708975,-42.744332392562555],[356.13660293817554,-42.74385076940155],[356.1354427265672,-42.74263462647607],[356.1354170978405,-42.742609980281074],[356.13404797658313,-42.74141836967859],[356.13376298771965,-42.74116895864175],[356.13264664943404,-42.74020209299354],[356.13210898120485,-42.7396961387957],[356.1313969197043,-42.73898586898806],[356.13045534401715,-42.737887941167735],[356.13035919456337,-42.73776973093165],[356.12951349038724,-42.736553675056065],[356.1288519999451,-42.73533770183895],[356.12880256834785,-42.735223519871866],[356.12832251204827,-42.73412178908012],[356.12801015494506,-42.732905980268335],[356.1278539459691,-42.731690247283],[356.12778327761276,-42.73047455611239],[356.1277177963331,-42.72925886744156],[356.12751188754413,-42.72804310952843],[356.1271548504174,-42.72721628072273],[356.12692544134063,-42.726827162179575],[356.12563489811515,-42.72561085510744],[356.1255015821338,-42.725522411764906],[356.1238475812856,-42.72467403882315],[356.12313677453733,-42.724393898134],[356.12219340993454,-42.724041455884674],[356.12053920114107,-42.72347823756358],[356.11974714260094,-42.723176390266914],[356.11888520691105,-42.72273984427022],[356.1177814459045,-42.72195961434997],[356.11723215165006,-42.72116839708805],[356.11698861105356,-42.72074349684014],[356.1168018075958,-42.719527730927034],[356.11689857792834,-42.71831213115217],[356.11715355871917,-42.71709662372044],[356.1172370571544,-42.716625199494175],[356.11736651746014,-42.71588109129376],[356.11743141054404,-42.714665472538584],[356.1172987998155,-42.713449738934976],[356.11724086075594,-42.71310206334312],[356.11707912126417,-42.7122339543623],[356.11680122088137,-42.711018135245745],[356.11655031150156,-42.70980233136206],[356.1163872922763,-42.70858657884342],[356.1163209991939,-42.707370883284085],[356.1162589988015,-42.70615519023858],[356.11615652635527,-42.70493947321708],[356.11581779963217,-42.70372361577425],[356.11559711703853,-42.70338137612478],[356.1149707922334,-42.70250745226632],[356.1139448086803,-42.701679276994355],[356.11335295430877,-42.701290809897564],[356.11229150736966,-42.700912085816434],[356.1106379749458,-42.700374313798235],[356.1097767875415,-42.7000728932196],[356.1089843810045,-42.69991095147468],[356.10733075552344,-42.69949300493606],[356.1056773595883,-42.698911315566086],[356.1055521583346,-42.698854423377455],[356.1040242181159,-42.69815672356484],[356.1033299365234,-42.6976372248437],[356.10237185588585,-42.696841786179846],[356.1019869608596,-42.696420615736166],[356.1010116116402,-42.69520425766515],[356.1007206705715,-42.694704147174214],[356.1003301656866,-42.69398810620813],[356.09974752845073,-42.69277202339231],[356.09932458304826,-42.69155605569973],[356.09907192760215,-42.690869169471405],[356.0988030058643,-42.69034001323495],[356.09777079568204,-42.68912358555891],[356.09742083580034,-42.68885959058398],[356.09576827345364,-42.68795702952617],[356.09567660970004,-42.687906335577345],[356.0941156012487,-42.68716328390149],[356.0933240483126,-42.686688843483175],[356.0924632926226,-42.68615220270428],[356.09163399671917,-42.685471838787684],[356.0908118978715,-42.68456960947725],[356.0905545895316,-42.6842553084569],[356.0898464595617,-42.68303907342911],[356.08947484538817,-42.68182311191879],[356.0893795439375,-42.680607377535715],[356.0895363589427,-42.67939185103951],[356.0900104834782,-42.678176584842],[356.09082312644256,-42.67710675705795],[356.09094192449885,-42.67696168870282],[356.09242484942706,-42.67574722673536],[356.09247872367666,-42.67571145081238],[356.0941335347543,-42.67480668814073],[356.0948968164843,-42.67453351840981],[356.09578788427064,-42.67419214437005],[356.0974419248718,-42.67377521594988],[356.09909565687207,-42.67356719604993],[356.1007491017952,-42.67356449273535],[356.1024022232369,-42.67380717596416],[356.10405494184255,-42.67437187738421],[356.10440273151954,-42.674540511478355],[356.1057073208562,-42.67522891208318],[356.10646152871936,-42.67575757813842],[356.10735910709013,-42.67660162295341],[356.10776131756904,-42.67697410566759],[356.10877427547007,-42.67819043066048],[356.1090103180924,-42.67850946530415],[356.10988856150334,-42.67940681233719],[356.1106621577198,-42.67997247375551],[356.11231507144083,-42.68057545395068],[356.1127888250822,-42.68062430690562],[356.1139685577931,-42.68070084583419],[356.11562217002216,-42.680718405092726],[356.1172757862066,-42.680733196835384],[356.1189295230771,-42.680634026457554],[356.1189848622351,-42.680627990052265],[356.12058337657834,-42.680415964861716],[356.1222372013779,-42.68021504571855],[356.12389093661193,-42.6800953044166],[356.1255445643244,-42.680082600067415],[356.12719815413215,-42.6801104561495],[356.1288516149339,-42.68028464150032],[356.130505027732,-42.68052505633711],[356.13103182103856,-42.68063419539756],[356.1321583563945,-42.68088108885984],[356.1338115925754,-42.68137438795802],[356.13499158605913,-42.68185161530121],[356.1354646689054,-42.68210468140389],[356.13711765561965,-42.68300435391346],[356.13730024645787,-42.68306823677198],[356.13877082954093,-42.68371382356493],[356.1404246890208,-42.68350527589359],[356.14074261612603,-42.683069590354116],[356.14120753695494,-42.68185410932388],[356.1416012361834,-42.68063860006423],[356.1420810621805,-42.679577828592556],[356.1421600804627,-42.679423150039675],[356.1433749027386,-42.678207932302975],[356.14373569933196,-42.677991003262534],[356.14538969121617,-42.677300544225936],[356.1465113513077,-42.676993348231704],[356.14704348700815,-42.67687611353345],[356.1486972355779,-42.67649472372719],[356.15035097251075,-42.67609745918079],[356.1514350442249,-42.67577920229934],[356.15200474202805,-42.67559666763772],[356.15365856856477,-42.674925913911856],[356.1545840283122,-42.67456440164259],[356.1553123613412,-42.67425095970086],[356.15696606275895,-42.67370222481503],[356.1586196118374,-42.67345202150681],[356.16027302017966,-42.673532097856544],[356.16192634272846,-42.673862942060985],[356.1635796559975,-42.67427470717291],[356.1647606371531,-42.67456657519369],[356.16523299166073,-42.67468498594937],[356.1668863938033,-42.67493551127767],[356.1685399017516,-42.674820129213785],[356.169726650219,-42.67456730881503],[356.170193456459,-42.674470730272255],[356.1718470495107,-42.673835742868064],[356.1726936795412,-42.673351989077254],[356.17350066664545,-42.67286563311126],[356.1744398272214,-42.67213649535322],[356.1751542777892,-42.67158296829493],[356.17584682814794,-42.67092095093062],[356.17680784108984,-42.670129014255096],[356.1773285409074,-42.66970539384293],[356.17846129289563,-42.66904184945023],[356.1797404257586,-42.66848985777551],[356.18011465949,-42.66836708796289],[356.18176797959745,-42.6679588116591],[356.18342127588994,-42.667710298842835],[356.1850745600083,-42.66753942907075],[356.1867278366601,-42.66740910945049],[356.18838110823634,-42.66730667608825],[356.1891819154684,-42.667274183169965],[356.19003437650014,-42.66722717212207],[356.19168764616774,-42.66719462009847],[356.19334092590327,-42.667242509710796],[356.1937309504734,-42.66727389716772],[356.1949942190204,-42.66735290065489],[356.19664753809946,-42.66756373688915],[356.19830091374484,-42.667974660038155],[356.199542479131,-42.66848892539745],[356.19995438403777,-42.66867292573957],[356.20152879292084,-42.669704299161026],[356.20160800384167,-42.66977252950031],[356.2027846636227,-42.67091975886926],[356.2032619461884,-42.67173331539205],[356.20351944544444,-42.6721352935208],[356.20402378581855,-42.67335086342959],[356.2042702601552,-42.67456647641158],[356.204341371145,-42.675782119720814],[356.20427465468697,-42.676997787143],[356.20411009401437,-42.67821347152989],[356.20387141653697,-42.67942916840876],[356.20366193732315,-42.68064485989939],[356.20357904392336,-42.68186052980944],[356.20383520579486,-42.683076142371945],[356.2044452066664,-42.68429169272006],[356.20491976235144,-42.685004990457486],[356.20533139992176,-42.685507189498864],[356.206332775286,-42.68672265739031],[356.20657422921516,-42.687004917277115],[356.207580902201,-42.6879380667329],[356.20822858476987,-42.68844125582574],[356.2094974690769,-42.689153317574345],[356.2098827854559,-42.68931765780846],[356.2115368182677,-42.68970633057299],[356.2131907738373,-42.68988509139774],[356.2148446530678,-42.689889793713554],[356.21649850563585,-42.689842757396114],[356.21815236431945,-42.689811527886576],[356.2198062687551,-42.689863057587104],[356.2214602335039,-42.69001059517285],[356.22311426705437,-42.69025544113963],[356.2235754094487,-42.69036501742857],[356.22476845032367,-42.69070958179433],[356.2264227467343,-42.69129458897184],[356.2270354941899,-42.69157943729483],[356.2280772837455,-42.69217607692922],[356.2291186329619,-42.69279429895099],[356.2297319513151,-42.693171586288344],[356.23104887156387,-42.6940091852549],[356.2313867128238,-42.69422090963076],[356.2327945807924,-42.69522411727349],[356.233041650491,-42.69542311534995],[356.23417602049335,-42.696439181644664],[356.2346969177255,-42.696951817223145],[356.23532795944755,-42.697654331675686],[356.23635242065035,-42.698664101429735],[356.2365596365634,-42.698869433913345],[356.23800772831993,-42.70004566567964],[356.23805307657625,-42.70008440071334],[356.23959438184943,-42.70129932508554],[356.23966304694153,-42.70135701463696],[356.24092248267,-42.70251433414952],[356.241318711538,-42.702968450173465],[356.2419061591132,-42.70372950120493],[356.24259435333875,-42.70494481025573],[356.24292203074043,-42.706160299831446],[356.2428826221541,-42.70737597636755],[356.2424717794811,-42.70859184169038],[356.2415516625981,-42.709807960634464],[356.2413252317819,-42.710055576883846],[356.24018392005974,-42.71102429098185],[356.23967212176484,-42.71151518173243],[356.2385225178675,-42.71224074414143],[356.23801866390886,-42.712663276677624],[356.23714998323186,-42.71345704068409],[356.2367742026204,-42.71467286956289],[356.23712914395463,-42.715888363278104],[356.23802221791925,-42.71676283135549],[356.23844297852975,-42.717103407674365],[356.2396776634216,-42.717716761531165],[356.2409121074452,-42.7183178731919],[356.24133299392287,-42.71849046387972],[356.24298811355743,-42.718997950339784],[356.2442700448021,-42.719531824876256],[356.24464345621465,-42.7197066996881],[356.24629542021916,-42.72074640567363],[356.2462991721491,-42.72075079114143],[356.2471033431864,-42.721961623121814],[356.2473970299484,-42.72317711861949],[356.2471614144967,-42.72439290435884],[356.246545259058,-42.725608896538134],[356.2463043054849,-42.72588142230758],[356.2458421837516,-42.72682493203569],[356.2450438515663,-42.728041013666996],[356.2446520087763,-42.72848864987082],[356.2442119408652,-42.72925710727865],[356.24344331005375,-42.73047316228666],[356.24299961439135,-42.73113941174394],[356.2427115541954,-42.731689193395944],[356.24212750464346,-42.73290514553846],[356.2416650943458,-42.7341210339915],[356.2413482386753,-42.735049809344346],[356.24125682676623,-42.73533689372724],[356.24093367887446,-42.736552710044236],[356.2406485929269,-42.737768506765704],[356.24025751595923,-42.738984354479236],[356.2396976330425,-42.740054167710156],[356.23962247438857,-42.74020031867541],[356.23877226504794,-42.74141638165015],[356.23804435206625,-42.74228240556405],[356.237776587287,-42.74263250618057],[356.23698061142596,-42.74384853059648],[356.2364291226575,-42.74506443871479],[356.23639191547835,-42.745655847922045],[356.2363534215309,-42.746280129396304],[356.23639255279664,-42.7464135586688],[356.23679507628304,-42.74749558457542],[356.23760013455944,-42.74871086987183],[356.23805034238194,-42.74918533272296],[356.23888181309314,-42.74992592387125],[356.23970721969084,-42.750771784596424],[356.2400843510065,-42.751141002035546],[356.24080880038645,-42.75235630391896],[356.24084715586713,-42.753571941209145],[356.24022667235215,-42.75478790132031],[356.2397112705277,-42.75529939841264],[356.2388463208487,-42.756004221635784],[356.23805670615707,-42.75651693115219],[356.2365759276207,-42.75722093414023],[356.23640172177386,-42.75731254928317],[356.2347463865424,-42.757729698647815],[356.2330907794464,-42.75783015263267],[356.23143499677485,-42.75770706726092],[356.2297791309019,-42.757461808310815],[356.22812332484995,-42.757282582771424],[356.22729328670164,-42.75722478684124],[356.22646757932597,-42.7571781934526],[356.2248170752025,-42.757225687917455],[356.22481193886756,-42.757225846838196],[356.2248047846788,-42.75722569225685],[356.2231562489491,-42.757198804507894],[356.2215005131339,-42.75709303831803],[356.21984479206264,-42.757003140788214],[356.21818909701943,-42.756952034052254],[356.21653347689653,-42.75703952517947],[356.2155100809946,-42.75722859762449],[356.21487797262716,-42.75737088248883],[356.21322257816774,-42.75797494778129],[356.2122696930423,-42.758445089919626],[356.21156730581214,-42.7589291317714],[356.2105634024878,-42.759661149586435],[356.209912110794,-42.760193040526374],[356.20884019602863,-42.760877187516456],[356.2082567837666,-42.76129047819452],[356.2067503684882,-42.7620932720027],[356.2066013221452,-42.76217734878772],[356.20494573796907,-42.762839220179146],[356.20336274534117,-42.76330954183491],[356.2032900680158,-42.76333709997334],[356.2016343269992,-42.763676606368406],[356.19997853578843,-42.763889943548776],[356.19832271919415,-42.764041782972555],[356.1966668892512,-42.76416754847524],[356.1950110395918,-42.76421861036967],[356.1933552050087,-42.76439064865329],[356.1927308054528,-42.764526475982954],[356.19169938371203,-42.76474923692939],[356.19004356201214,-42.765307763381436],[356.1891395040642,-42.76574234144006],[356.1883877254323,-42.76608921115585],[356.1867318492796,-42.76692442551443],[356.1866652884856,-42.76695807639083],[356.18507592855633,-42.76776302800545],[356.18427135376123,-42.76817375803964],[356.1834199624658,-42.768645225383956],[356.18193718340825,-42.769389390994064],[356.1817639499324,-42.7695101592923],[356.1801936462842,-42.77060499875289],[356.1801078698055,-42.77069687633341],[356.17909189473664,-42.77182061049028],[356.17845164907425,-42.77271213286377],[356.17816175887157,-42.773036220807796],[356.1768898224712,-42.77425180223862],[356.17679536951573,-42.77431992209338]],[[356.0674930009353,-42.773180896914276],[356.06717419208394,-42.77297677691466],[356.0674941496295,-42.77257088682765],[356.0678632300072,-42.77297747656805],[356.0674930009353,-42.773180896914276]],[[356.2711744229305,-42.75983127892453],[356.2695190654948,-42.76011055895026],[356.2678634285905,-42.76019374017831],[356.26620750981783,-42.76006712672172],[356.26455124106997,-42.75966516716665],[356.2644720508531,-42.75963615648802],[356.2628946742697,-42.75901138950935],[356.26193547499236,-42.758422243352456],[356.2612374769151,-42.757821811927485],[356.2605633467101,-42.75720750677099],[356.2597388343837,-42.75599239532834],[356.25957892409815,-42.75546450670385],[356.2593238118544,-42.75477701113783],[356.25933291201136,-42.753561349078595],[356.2595757799528,-42.75287697349931],[356.2597141945983,-42.75234544317548],[356.26033946908325,-42.75112937468151],[356.2612278279596,-42.75005169041674],[356.2613276372719,-42.749913059926136],[356.2624631975883,-42.74869663643131],[356.262881085709,-42.74829899333804],[356.2639295960936,-42.74747997277968],[356.2645348851824,-42.74703684398151],[356.2661893239272,-42.74630938525368],[356.2664189545906,-42.74626256350649],[356.2678442092471,-42.74594197294146],[356.26949961369996,-42.7459664228061],[356.270707049973,-42.74625941739095],[356.27115552681636,-42.74635287825654],[356.27281188678825,-42.74703776055361],[356.2734750064539,-42.74747295785464],[356.27446886353897,-42.74812140394615],[356.27511339754244,-42.74868733030018],[356.27612670233134,-42.74974772489878],[356.276261835419,-42.74990207269637],[356.27711866236723,-42.75111703961659],[356.27760327264775,-42.752332303091286],[356.27778493239566,-42.75354781147325],[356.2776989170994,-42.754763537520134],[356.2772920410836,-42.75597952370607],[356.2763822563817,-42.75719591272359],[356.2761380577891,-42.75740960590414],[356.2748430827873,-42.75841279241381],[356.27448414369746,-42.75862060548316],[356.2728294952067,-42.75936290673137],[356.27185146626636,-42.75963076787583],[356.2711744229305,-42.75983127892453]],[[356.06422501664105,-42.75034291391505],[356.062568848976,-42.75068979761065],[356.0609130311794,-42.75085145167089],[356.0592575153368,-42.75085901684773],[356.05760232131377,-42.75070880840457],[356.05594760728496,-42.75033046736651],[356.0548163492185,-42.74986606812145],[356.05429350863153,-42.74966809150828],[356.0526401622903,-42.74866784669917],[356.0526138218365,-42.748647911255716],[356.05119305563926,-42.74743061962048],[356.0509878967065,-42.74718941819277],[356.0501642223242,-42.74621376819655],[356.0495586863128,-42.744997404254626],[356.0493391466659,-42.744130878901565],[356.04922589962376,-42.74378135776578],[356.04914705551107,-42.742565608997666],[356.0493450877374,-42.741399128814315],[356.049351461801,-42.74135019286346],[356.0497543456346,-42.74013500870897],[356.0504991254347,-42.73892022138475],[356.0510068818838,-42.73835143262567],[356.05164651098994,-42.73770589428024],[356.05266513251445,-42.736897467228204],[356.05337132509675,-42.736492214483455],[356.0543222293121,-42.73595735969104],[356.05597850794015,-42.735388707558236],[356.05656607903614,-42.735280150668885],[356.0576343311942,-42.735028336264016],[356.05928970983587,-42.734879187554604],[356.0609447026045,-42.734920216726096],[356.06259930403,-42.73516197588593],[356.06308819060854,-42.73528720898672],[356.0642536521556,-42.7355413965105],[356.0659076582013,-42.73611079214512],[356.06682337577234,-42.73650674090248],[356.06756132982883,-42.73687416372765],[356.0690891053507,-42.737724688977366],[356.0692146828132,-42.7378313637792],[356.07072446269643,-42.73894197167922],[356.0708670895835,-42.739334239631226],[356.0712283567022,-42.74015812440314],[356.0713094118321,-42.74137386031152],[356.071271809976,-42.74258947960682],[356.07111275870534,-42.74380497942247],[356.07085709653626,-42.744801416035735],[356.07081425399264,-42.745020341489585],[356.07035812419684,-42.746235546719355],[356.0694526181076,-42.74745030228612],[356.069196405591,-42.747686674499626],[356.06801648448396,-42.74866451544721],[356.0675386088883,-42.748951715237865],[356.06588159954373,-42.74976876653666],[356.06558039352865,-42.749877682820625],[356.06422501664105,-42.75034291391505]],[[356.0874151299371,-42.74183178638303],[356.08575927137844,-42.742208321448445],[356.08410376320353,-42.74235538921722],[356.08244852289573,-42.742334472802646],[356.0807935399098,-42.742159960367175],[356.07913885811706,-42.7418132153968],[356.07781306961687,-42.74138006513503],[356.077484515315,-42.74128028293716],[356.07583036398626,-42.740654090731546],[356.0748169844296,-42.74016159616004],[356.0741767382501,-42.73975053310674],[356.0728641090915,-42.73894406450182],[356.0725237977367,-42.73849327837816],[356.07170881763847,-42.73772728315117],[356.071499144238,-42.73651142141881],[356.0714367420472,-42.73529570389219],[356.071468329971,-42.73408007855767],[356.0716093752332,-42.7328645604923],[356.07192034914124,-42.731649208389555],[356.07250784977515,-42.730434124520336],[356.07253838887556,-42.73039021772645],[356.07334631559775,-42.72921927998962],[356.07419674782767,-42.72847113975214],[356.07482308100975,-42.72800503859801],[356.07585355890114,-42.727379428893954],[356.077119650748,-42.72679154500189],[356.0775097446214,-42.726617386533924],[356.07916556735734,-42.72604569050407],[356.0808210081807,-42.7256848461066],[356.0815401916561,-42.72557992246812],[356.08247631958835,-42.7253911988394],[356.0841314290394,-42.72521304344379],[356.0857863136008,-42.72517065847443],[356.0874409703189,-42.72527290127159],[356.0890953605025,-42.725552548811194],[356.08922865944305,-42.725586533449004],[356.09074952851194,-42.72598957683502],[356.0924032250801,-42.72676089451768],[356.09247992863817,-42.72680483080547],[356.0938692454613,-42.728021587708376],[356.0940557756974,-42.72834892849861],[356.09449870667413,-42.72923773720741],[356.0947412112685,-42.7304535826738],[356.0948112325056,-42.73166929358354],[356.0947541106672,-42.73288490554959],[356.0945468676632,-42.73410040045576],[356.0941848099668,-42.735315773811415],[356.0940451898299,-42.73563085739562],[356.0937220960852,-42.736531066805796],[356.093048081176,-42.73774619050949],[356.0923857865123,-42.7385402988419],[356.09203424325864,-42.73896103819498],[356.09072822537416,-42.7401244938996],[356.0906572773158,-42.74017558189842],[356.08907141341626,-42.74116521698474],[356.0885068074966,-42.74138946756577],[356.0874151299371,-42.74183178638303]],[[356.0957405289116,-42.70742058283234],[356.0940855025522,-42.70789093082933],[356.0924311560561,-42.70788475295662],[356.09077749857806,-42.707421277983634],[356.09065075209554,-42.70735285370121],[356.0891918377183,-42.70613600054417],[356.08912533842664,-42.70599690131405],[356.0887352802608,-42.70491996588239],[356.0889394778571,-42.70370447901154],[356.0891292438529,-42.70344834776428],[356.0900810730751,-42.70248976329458],[356.0907854718932,-42.7021260515093],[356.0924403849593,-42.70164520744755],[356.09409476556874,-42.70151337314666],[356.0957486916752,-42.701695448193725],[356.09740192896896,-42.70237684937921],[356.0975820284509,-42.70249566146819],[356.09829474333293,-42.70371185274764],[356.09816047719096,-42.704927408637914],[356.0974237019885,-42.706142511020566],[356.0973966208137,-42.70617080650636],[356.09585480393224,-42.70735697202282],[356.0957405289116,-42.70742058283234]],[[356.06762572805906,-42.702617037346485],[356.0659709480508,-42.70291398104617],[356.0643164822082,-42.70304016188272],[356.0626623049323,-42.70301562201783],[356.06100846253094,-42.70282310815694],[356.0595247906725,-42.70246067842669],[356.0593550484806,-42.70242283540131],[356.05770205583207,-42.70182635364733],[356.05668953036155,-42.701241911764065],[356.05604996229516,-42.700809943200525],[356.0551225122903,-42.70002450648731],[356.05439926658016,-42.699151204725354],[356.05412360300505,-42.698807724224714],[356.0533999796518,-42.69759124691855],[356.05297990816445,-42.696375112038524],[356.0527712362606,-42.6951592175735],[356.0527546908202,-42.694644999459484],[356.05272046810677,-42.69394350349153],[356.0527567040382,-42.69369452747447],[356.05286256163686,-42.69272800995159],[356.05316689813077,-42.691512701335654],[356.05367399176197,-42.690297622369506],[356.0544200803998,-42.68919947601414],[356.054502789514,-42.68908290464856],[356.05552828420133,-42.687868401339685],[356.056077784262,-42.687335686587396],[356.0569484097666,-42.68665432648245],[356.05773410341027,-42.68610264958564],[356.0591947824819,-42.68544113566959],[356.05938939179254,-42.68534950280884],[356.0610441500458,-42.68484331134266],[356.0626981576342,-42.68470682294858],[356.06435171530353,-42.684799597998996],[356.06600481566755,-42.685135133503955],[356.066849743853,-42.68544920607249],[356.06765757013864,-42.68566442115126],[356.0693101095997,-42.6863251132151],[356.06992220370876,-42.68666795781107],[356.07096229013223,-42.687201834119556],[356.07200138118435,-42.68788566216466],[356.0726141006674,-42.688310324328356],[356.0735883591674,-42.68910285633435],[356.0742653015003,-42.689796331902464],[356.07475685310663,-42.69031963091333],[356.07558812077474,-42.691536075472804],[356.0759147802873,-42.6923145639024],[356.0761310667584,-42.692752243317194],[356.07649152902945,-42.69396823776075],[356.07660919516303,-42.69518400407361],[356.0764691649465,-42.69639952903229],[356.07599939697246,-42.697614743892544],[356.07590527974304,-42.69775864698495],[356.0752473104254,-42.69882968956965],[356.0742476704035,-42.69974758437276],[356.0738851568187,-42.7000440464057],[356.0725915531385,-42.7008479924518],[356.07175281118,-42.70125763615723],[356.07093595289933,-42.7016330290402],[356.0692806807226,-42.702218357033566],[356.0681822136783,-42.70246974353445],[356.06762572805906,-42.702617037346485]],[[356.2793542232251,-42.695362395210836],[356.27770011026803,-42.69530173629556],[356.27741599349383,-42.69519660724778],[356.27604520231404,-42.69470150079144],[356.2748647535442,-42.693982990792236],[356.2743895742136,-42.69358349063845],[356.2737818951647,-42.69276818328069],[356.2737776995441,-42.69155253044444],[356.27438568304746,-42.69090454451415],[356.2759171456696,-42.6903351879804],[356.27603871211767,-42.690313733289884],[356.27620235048096,-42.690334960164286],[356.27769308473796,-42.69063616724997],[356.2793400465899,-42.691548063183994],[356.2793483938117,-42.691558524738376],[356.28001916915724,-42.69276315541586],[356.2800879321612,-42.69397875421398],[356.2796054585691,-42.69519481164249],[356.2793542232251,-42.695362395210836]],[[356.2313755775051,-42.67956118686365],[356.2297222242086,-42.67990017103642],[356.22806869920646,-42.68002159925781],[356.2264150325179,-42.67994406797192],[356.2247612170054,-42.67963229125927],[356.224109386817,-42.67942392931753],[356.2231072893808,-42.679114995858356],[356.22150180234513,-42.67820914845436],[356.221453134905,-42.67817341430547],[356.2201834349652,-42.676993912522626],[356.21979856048887,-42.67641130256945],[356.2194110321047,-42.675778495731514],[356.2189001360439,-42.67456299522506],[356.21859942811295,-42.673347429845066],[356.2184240343732,-42.67213182651812],[356.21835213952,-42.670916192296175],[356.21841811326794,-42.66970051715912],[356.21863528026216,-42.66848479688431],[356.2190917841424,-42.66726900392206],[356.219792734727,-42.6662408548779],[356.21990866114015,-42.66605309792463],[356.221023140766,-42.664837091318795],[356.22144493181264,-42.66448882964679],[356.2226634672733,-42.663620899377314],[356.22309742504626,-42.66335893423047],[356.22475009820755,-42.66259697177664],[356.22538059665226,-42.66240430371335],[356.2264028913983,-42.66207150017836],[356.2280557836994,-42.66172612819558],[356.22970878863595,-42.66155969159465],[356.2313618836764,-42.661523679434914],[356.23301507955335,-42.66161849715296],[356.234668410317,-42.661873203904044],[356.2362897534372,-42.66239988145588],[356.23632199054083,-42.66240916006306],[356.2379757604646,-42.663131352850215],[356.23870504631145,-42.66361441761806],[356.23962996891777,-42.66430201177363],[356.2402073915607,-42.66482935121658],[356.24122045272696,-42.66604450881196],[356.2412848601006,-42.66614788233632],[356.24202845655805,-42.66725976080031],[356.24248124872133,-42.66847518768208],[356.2426830495087,-42.66969074071325],[356.24268426441387,-42.670906395598486],[356.2424759984645,-42.672122156850854],[356.24199614399606,-42.67333805455547],[356.24129240578264,-42.67435918138981],[356.2411649776954,-42.67455412482127],[356.2400214186899,-42.67577034114916],[356.2396404773694,-42.676078688028824],[356.2382937499504,-42.67698682231721],[356.23798791866517,-42.677175988042116],[356.236335081727,-42.67801140398002],[356.23581385213834,-42.67820361755135],[356.2346820692955,-42.67868563768442],[356.23302887658406,-42.679176226763175],[356.2318021919352,-42.6794210033916],[356.2313755775051,-42.67956118686365]]],"index":14,"temperature":4.0},{"color":"#ffe600","count_points":770,"count_polygons":8,"curves":[[[356.3174861935099,-42.73704436438299],[356.31583036575694,-42.73671632401155],[356.31506572613904,-42.736492236052776],[356.31417411190495,-42.73617656369847],[356.3125174571431,-42.73542905663704],[356.31218057541713,-42.735279827505536],[356.3108605687518,-42.73454758273949],[356.30979861355536,-42.73406679793526],[356.3092039446213,-42.73377393210321],[356.30754787289425,-42.733257393568294],[356.3058922387136,-42.73294991233629],[356.3052774157118,-42.73285599160885],[356.30423677567524,-42.732722441830646],[356.3025812435022,-42.73245240513142],[356.3009256495599,-42.73214190491811],[356.2992699564037,-42.731769002465505],[356.29883215112443,-42.731646941769704],[356.29761421212646,-42.731357274092204],[356.2959583674839,-42.73087765182074],[356.2947633632535,-42.73043526989199],[356.29430231936726,-42.73026896151005],[356.29264588078837,-42.72941829341822],[356.29236206989594,-42.7292218974692],[356.2909889032972,-42.728228114069445],[356.29071899095635,-42.72800777496224],[356.28933159776494,-42.726806814515676],[356.2893182128942,-42.726793407698516],[356.2881845883863,-42.725578782066904],[356.28767359287895,-42.72492058588145],[356.28725225121457,-42.72436396502438],[356.2864343464024,-42.72314903872756],[356.2860146614686,-42.72240820221436],[356.28570532722176,-42.72193402817565],[356.28489941102504,-42.72071908036466],[356.2843557420601,-42.71982003700571],[356.284118234356,-42.71950410540585],[356.2832482592804,-42.71828920165993],[356.2826973292536,-42.71746391646074],[356.2823611709278,-42.71707430593906],[356.2813820339367,-42.71585948120308],[356.2810394143937,-42.7153462545579],[356.2805045616714,-42.71464456302852],[356.2798463799572,-42.713429455967784],[356.2794397169208,-42.712214137102606],[356.27941599714165,-42.7109985003581],[356.27964552890455,-42.70978265369504],[356.28010817198816,-42.708566612399174],[356.280749281736,-42.70735041955249],[356.2810262310342,-42.70689554021809],[356.2814308012756,-42.70613418898695],[356.28216987667446,-42.7049179053788],[356.28267624549426,-42.704175905142115],[356.2829722160044,-42.70370156271686],[356.28397563700037,-42.702485040181145],[356.2843271900146,-42.702122611761425],[356.2851740848745,-42.70126833782608],[356.28597887621095,-42.700588375659564],[356.2866289328939,-42.70005139490406],[356.28763099327637,-42.69936180405505],[356.28843395628667,-42.69883411672124],[356.2892833310924,-42.69830426100507],[356.2904046764855,-42.69761665731597],[356.2909356798935,-42.69728589055712],[356.2925187830802,-42.696399029187674],[356.29258813432824,-42.69635911563707],[356.29424094795877,-42.695662870605034],[356.2958943300536,-42.69530324688853],[356.2975481876234,-42.69521458293048],[356.29920230882936,-42.69527082605905],[356.3008566234545,-42.695428441858645],[356.3025111711158,-42.69570396546225],[356.304165954586,-42.696093950947954],[356.30513264366033,-42.69638645539326],[356.3058208740804,-42.69654278766325],[356.30747588664866,-42.697026474236225],[356.30900542220724,-42.697597973313975],[356.30913117599215,-42.69763490933762],[356.3107864613665,-42.698225513802825],[356.3119607133202,-42.69881038383299],[356.3124421913164,-42.699016108853975],[356.3140982518749,-42.69994457339791],[356.31421965442496,-42.700023507879344],[356.31575439308943,-42.70088774805123],[356.31629575134207,-42.70123679773859],[356.3174108026781,-42.70193255839724]],[[356.04458388747594,-42.6505513901156],[356.04623709513635,-42.65037991566556],[356.0478901530292,-42.65027254761317],[356.0495430882879,-42.65021913296841],[356.05119591753316,-42.65021392226585],[356.0528486479332,-42.6502553453339],[356.05450126308455,-42.65035303818177],[356.0561537050862,-42.65053725926999],[356.0578058717162,-42.65086162387636],[356.0593871872955,-42.6514029988194],[356.0594575689711,-42.65142827496283],[356.06110887451257,-42.65220777746647],[356.0616926387644,-42.65262113342656],[356.0627081381544,-42.65383786576157],[356.0627583599119,-42.65393920235809],[356.0634329698163,-42.65505428418654],[356.0637635943515,-42.65627028575909],[356.0638803161711,-42.657486062744916],[356.063873173495,-42.65870171007835],[356.0637923649014,-42.65991728032768],[356.0636362887791,-42.66113277165583],[356.06339711381156,-42.66234817552436],[356.0630754264001,-42.66356349203054],[356.06273748254097,-42.66461246520299],[356.0627009827381,-42.664778751936076],[356.0623913635739,-42.6659940793843],[356.0619466668933,-42.667209262462144],[356.0612076340896,-42.66842412930275],[356.0610763772042,-42.668597935860795],[356.0598161725934,-42.66963828728803],[356.05942048255633,-42.66988503448771],[356.0577659273046,-42.67048081229982],[356.0561120288398,-42.670742912450464],[356.05503449952596,-42.67084866886139],[356.05445826992843,-42.670931588676495],[356.0528044844314,-42.671128109016166],[356.0511507983539,-42.671273388146396],[356.04949721695635,-42.671366889154264],[356.0478437102342,-42.67142415651265],[356.04619025646576,-42.671456263667395],[356.0445368508463,-42.67146624018307]],[[356.1817641430709,-42.76465046960798],[356.1801082522281,-42.764942213185684],[356.17845237390094,-42.764932341443014],[356.1770046906355,-42.76452656351237],[356.1767965509877,-42.764464584229934],[356.17514080425207,-42.76364757179568],[356.1745828125554,-42.763310729866866],[356.17348512006265,-42.762721451161894],[356.17240701920787,-42.76209487072735],[356.17182947546974,-42.76184469023005],[356.17017381693887,-42.7612360206195],[356.16910091901576,-42.76087882716985],[356.16851817213325,-42.760701503887304],[356.1668625385338,-42.76022892706416],[356.16520692493094,-42.759773463114946],[356.1648197030936,-42.75966252797334],[356.1635513274097,-42.75934274252392],[356.1618957749888,-42.75885069353408],[356.16062953390906,-42.75844608801646],[356.16024025916636,-42.75833198983063],[356.15858480253013,-42.75773717560187],[356.1573441677195,-42.7572297104665],[356.15692940941835,-42.757070241389044],[356.1552740908971,-42.7563198553607],[356.15470679797147,-42.75601340723897],[356.1536189242147,-42.75534306083262],[356.1528788502524,-42.754797267078054],[356.1519640068218,-42.75398739391929],[356.1515399048831,-42.753581237924884],[356.1504376501681,-42.752365262973],[356.1503093859834,-42.75222186982792],[356.1493250460331,-42.751149274284366],[356.1486548303202,-42.75050699800684],[356.147951952214,-42.74993319288956],[356.1470000613755,-42.74929987959124],[356.14607389573433,-42.748716928567575],[356.14534522275255,-42.74830667013758],[356.1440388214564,-42.747500578750106],[356.14369045532123,-42.74728566805764],[356.14233421926707,-42.74628431380435],[356.14203589001426,-42.746047681714415],[356.1409622505979,-42.74506814924629],[356.14038162816246,-42.744473929017275],[356.13981143583277,-42.74385205396417],[356.1387705960943,-42.74263599068764],[356.1387276790209,-42.74258838635278],[356.13757859147444,-42.741419856723546],[356.13707365840276,-42.74092916176652],[356.13629244029124,-42.7402036711627],[356.1354196016102,-42.73942839380938],[356.13491496107326,-42.73898743205572],[356.1337656044892,-42.73795269512982],[356.13357944850287,-42.73777119492989],[356.1324759228399,-42.73655504695571],[356.1321120127769,-42.73608818266182],[356.13158635133505,-42.735338986557956],[356.1309402141625,-42.734123032373894],[356.13056320485464,-42.732907200506425],[356.1304603623156,-42.73209882150143],[356.1304062937563,-42.731691470657594],[356.130427337293,-42.730475824012196],[356.1304620559199,-42.730144832082104],[356.1305508212314,-42.7292602252361],[356.1306536971044,-42.728044616718286],[356.1305529368284,-42.72682891319981],[356.1304651498743,-42.72657487623074],[356.13002782784343,-42.72561301029398],[356.12894491064117,-42.72439683808351],[356.12881234335345,-42.72428193602675],[356.12729482413323,-42.72318037617196],[356.12715864627455,-42.72309000136924],[356.1255047090346,-42.72221896505976],[356.12493494013114,-42.72196352666116],[356.1238508076964,-42.72135878893653],[356.1227549623569,-42.72074672506035],[356.1221972297822,-42.720221020862475],[356.1216148746512,-42.719530453231556],[356.12127424631126,-42.718314610693625],[356.1213614143978,-42.717099001898106],[356.121585264103,-42.71588346760352],[356.1217915344392,-42.714667923331746],[356.1219313005168,-42.71345234267612],[356.12208995149047,-42.71223677206762],[356.1222058432093,-42.7116045424849],[356.1223128052857,-42.71102123584574],[356.1225201533861,-42.709805690879314],[356.122725446501,-42.708590144450255],[356.12286842563594,-42.707374564423255],[356.1229333394618,-42.706158942635],[356.1230366397276,-42.70494334126349],[356.1232012345115,-42.703727772369156],[356.12347395631974,-42.70251226044886],[356.12387005576534,-42.70157336167904],[356.12400433679056,-42.70129688316445],[356.12503308668516,-42.700081761145725],[356.125526001417,-42.69971505135663],[356.12671715714606,-42.69886695963536],[356.12718115918614,-42.698606098116336],[356.12873030021984,-42.69765229280014],[356.12883618145923,-42.697582728985026],[356.1302651408949,-42.69643736721103],[356.1304914789244,-42.69617849813945],[356.1313102683372,-42.6952221967769],[356.1318344742323,-42.694006780638595],[356.13160708816963,-42.69279102057545],[356.1304954264993,-42.69161853232591],[356.1304481781227,-42.69157482810195],[356.12884231400875,-42.69071042202595],[356.1280175052241,-42.69035800920126],[356.12718903726466,-42.69003373525076],[356.12553545602924,-42.689717241073566],[356.1246096272765,-42.69035629245779],[356.12388039027974,-42.69094512763611],[356.1235854396922,-42.691571412914996],[356.1229513748104,-42.69278673287204],[356.1222235649205,-42.69386902591839],[356.12215174766516,-42.69400196007813],[356.1214008186628,-42.69521720836894],[356.1205672201195,-42.69617223037791],[356.1202932948496,-42.69643225401548],[356.11891192230377,-42.697363766704534],[356.1181829831613,-42.69764671729221],[356.11725721617603,-42.69794808041244],[356.1156028077362,-42.698235013128524],[356.1139485954246,-42.69833526146753],[356.1122945368215,-42.698298307094106],[356.1106406325895,-42.69813284349665],[356.1089869501398,-42.69779173720403],[356.1085099150631,-42.697640753245956],[356.107333446011,-42.697321398750184],[356.1056802977594,-42.69658968383905],[356.1054023712103,-42.696423008284306],[356.10402763922815,-42.69550916241532],[356.10368250444265,-42.695206159969175],[356.10260904198503,-42.69398974669204],[356.1023760974409,-42.69362545680747],[356.101834772322,-42.69277353823929],[356.1013485031234,-42.691557532586785],[356.10100538890276,-42.69034162862626],[356.1007277054407,-42.689474804067046],[356.10056726912967,-42.68912565457577],[356.0996704022547,-42.687909342393446],[356.09907656841966,-42.68748611909126],[356.09742380079314,-42.68673926338958],[356.0973105108166,-42.68669192647291],[356.0957708262666,-42.6861655485404],[356.09438759730745,-42.68547402356154],[356.09411826447564,-42.685328570332835],[356.0927275576526,-42.684257058425786],[356.09246652215126,-42.68396737284422],[356.0917727695639,-42.68304063868143],[356.0912934737747,-42.681824596397824],[356.0911959876466,-42.68060886174935],[356.09145223885747,-42.67939341305518],[356.0921447854786,-42.6781783141019],[356.09247560166835,-42.677824105142285],[356.09344880467626,-42.67696369545511],[356.09413105606154,-42.67651485687072],[356.0957856189676,-42.675782478207694],[356.0959122684839,-42.67574995854355],[356.0974397318234,-42.67534417836146],[356.09909343478137,-42.67518782151534],[356.1007467468292,-42.67531604258861],[356.102268964143,-42.675754665807005],[356.102399601892,-42.67579622389108],[356.10405193995564,-42.67669659818681],[356.1044206440178,-42.67697183523234],[356.10558851200756,-42.678188295715096],[356.10570335498596,-42.678364707598725],[356.10643242118425,-42.67940452562356],[356.10717444235826,-42.680620681138336],[356.10735385682824,-42.680842017976445],[356.1088252934556,-42.6818374315626],[356.1090061999592,-42.68190844814183],[356.11065940713985,-42.68229368091831],[356.11231282930726,-42.6825110683531],[356.1139663097736,-42.682687208218155],[356.1156196968901,-42.68295634032428],[356.11607470729757,-42.68305761350364],[356.1172730025322,-42.68331434074738],[356.11892628252707,-42.68371488392656],[356.12057957462656,-42.684124461956074],[356.1219434024941,-42.68427659865961],[356.1222330980709,-42.68432425678163],[356.12255664330473,-42.68427692925407],[356.123887057813,-42.68408616387678],[356.12554125448503,-42.683584052563475],[356.1271953760247,-42.68313463061532],[356.12884907607383,-42.68313089898654],[356.13050250107557,-42.68344479502739],[356.13215561340854,-42.68415142105723],[356.132369276643,-42.68428177425227],[356.13380821399136,-42.685498070318324],[356.13380824355573,-42.68549810905474],[356.1346531352114,-42.68671409379942],[356.1354362807704,-42.687930084904586],[356.13546005868125,-42.687973556418974],[356.13637042434976,-42.68914613366482],[356.1371125776624,-42.68969529049408],[356.13873184827645,-42.690362748558194],[356.1387659526927,-42.69037339457595],[356.14041962255203,-42.69068496543678],[356.14207353266784,-42.69066723209121],[356.143205772547,-42.6903644320132],[356.1437277436162,-42.690187005544836],[356.1448897252877,-42.68914936441068],[356.14538268799083,-42.68849390016095],[356.14565989058406,-42.687933969247574],[356.1461396193126,-42.68671847309945],[356.1465676298579,-42.685502958050684],[356.1470370212158,-42.68428745483473],[356.14703905027017,-42.68428330622787],[356.14778567427834,-42.68307203859526],[356.1486939910417,-42.68216383336115],[356.1491630486701,-42.681856810992585],[356.15034816925885,-42.68123470206622],[356.15200211100387,-42.68066578833294],[356.1520716471037,-42.680642005399214],[356.1536560168175,-42.680108319925594],[356.1553098814419,-42.67957554895856],[356.1558365581978,-42.67942734090799],[356.15696369779675,-42.679088093340226],[356.1586174245861,-42.67875484329859],[356.1602710296109,-42.678691179600015],[356.1619245392944,-42.678883509834115],[356.1635780149612,-42.679208948413034],[356.16467051823173,-42.679429183059376],[356.1652315125179,-42.679519534027776],[356.16688506461617,-42.67969412932369],[356.16853868534855,-42.67963396928508],[356.16979912745893,-42.67942994110476],[356.1701923535065,-42.67934988923779],[356.17184607553736,-42.67871983579453],[356.1728381412576,-42.67821462648879],[356.17349980600284,-42.677846764889786],[356.17463542737164,-42.676999134680344],[356.1751535454552,-42.67659402628156],[356.17580784239397,-42.67578357074912],[356.1767854410054,-42.67456798245728],[356.1768073135508,-42.67454330967114],[356.17748865775405,-42.67335237013934],[356.17846100523366,-42.67213920726601],[356.1784624361944,-42.67213676745074],[356.17949896281476,-42.67092115915756],[356.18011452106913,-42.67045665123381],[356.18133499962346,-42.66970556446354],[356.1817679182363,-42.669507663237006],[356.1834212603306,-42.668907938343956],[356.18507457361966,-42.66853783071686],[356.18534706988197,-42.66848993990851],[356.186727869811,-42.668232579911674],[356.1883811556732,-42.66801593996672],[356.1900344389159,-42.66789467899065],[356.19168772674857,-42.667865399985025],[356.1933410284336,-42.667941161398524],[356.19499435684475,-42.66814782797789],[356.1964207483543,-42.668489298836526],[356.19664773297717,-42.66853809505806],[356.19830116691276,-42.669091736250984],[356.19943569529886,-42.66970459507488],[356.19995472987927,-42.67003845104706],[356.20103996275503,-42.67092002723042],[356.2016085235981,-42.67162943739265],[356.20201137298136,-42.67213553667583],[356.2026315657271,-42.67335109471457],[356.2029344259302,-42.674566701521464],[356.2030256811708,-42.675782342365885],[356.20295031966435,-42.67699801043347],[356.2027363275177,-42.678213700893906],[356.20238827100405,-42.679429412251025],[356.20196355769536,-42.68064513444464],[356.2016113405084,-42.68169134248026],[356.2015597470018,-42.68186085195826],[356.2014126363776,-42.68307653000719],[356.20158063841245,-42.68429216077365],[356.2016120891936,-42.68436507167038],[356.20222690448554,-42.68550771744774],[356.2031294682002,-42.68672322866968],[356.20326659633923,-42.68689934337685],[356.2041306967848,-42.68793871579875],[356.20492105866816,-42.688893949911176],[356.20517421391037,-42.689154186541174],[356.20657542533775,-42.69032754141719],[356.2066457735642,-42.690369565170634],[356.20822961094717,-42.69109528063427],[356.20958218257306,-42.69158461126689],[356.2098837609641,-42.691677934252674],[356.21153785961883,-42.69207329566131],[356.21319196064604,-42.69242861438545],[356.21484605085806,-42.692723646553844],[356.2153429727028,-42.69279885266253],[356.2165001764735,-42.69305655978301],[356.21815439967327,-42.6935355781789],[356.21935686430885,-42.69401335246694],[356.2198088221198,-42.69431766973192],[356.22128813720354,-42.69522840237257],[356.22146346685514,-42.69540083503479],[356.2227827768954,-42.696443567116525],[356.2231183150616,-42.69671659553662],[356.22477297402764,-42.69763529140406],[356.22481901179464,-42.697658522497925],[356.22642760957604,-42.69844753157728],[356.2270676795355,-42.69887336286574],[356.2280825128496,-42.69957740869216],[356.22873060535,-42.70008838750249],[356.22973758832455,-42.700859982762935],[356.23028984494874,-42.70130342969177],[356.23139282398796,-42.702263358602714],[356.2317020537847,-42.702518511559276],[356.2330177106547,-42.70373361711048],[356.23304823241494,-42.70379122182395],[356.23363763392916,-42.704949008747825],[356.2330496890513,-42.70564285087688],[356.2322166421191,-42.70616526712883],[356.2313959610331,-42.7063909814844],[356.2297420301219,-42.70691687162691],[356.2289882734188,-42.70738222588668],[356.2280886375026,-42.70824406716634],[356.227937865919,-42.70859828653],[356.22776508010367,-42.709814008568465],[356.2279718428167,-42.711029586560215],[356.22809082096546,-42.711333179964484],[356.22850438720235,-42.71224503917576],[356.2291266058034,-42.71346045434339],[356.2297476495292,-42.7145778706364],[356.2298090202739,-42.71467584229757],[356.2306940372709,-42.715891144491714],[356.23140380477435,-42.71670912162455],[356.23179800576855,-42.71710634948031],[356.2330595362512,-42.71815739643508],[356.2332835383566,-42.71832138167604],[356.2347150069762,-42.7191902649569],[356.235295860941,-42.71953616186013],[356.2363704064383,-42.72007278366466],[356.2375843757036,-42.72075077895207],[356.2380258969687,-42.72100604816864],[356.2395069404075,-42.7219655270379],[356.23968158658903,-42.722106366324326],[356.2409073628479,-42.7231805015971],[356.2413379322085,-42.72385555831786],[356.2416997793049,-42.72439576467387],[356.24204046802413,-42.72561125035443],[356.2420210063981,-42.72682691665204],[356.24174003110835,-42.72804271407792],[356.24134261601955,-42.72894332697078],[356.2412308466612,-42.72925862420441],[356.24067805810427,-42.73047455349229],[356.2400139098565,-42.73169053421328],[356.239690700777,-42.73230177084581],[356.23937147885385,-42.73290650067508],[356.2388225159476,-42.73412241918575],[356.23826782412067,-42.735338337759536],[356.23803878855614,-42.73586992982904],[356.23774441447307,-42.736554239087404],[356.23720837327187,-42.73777014384363],[356.2365026478477,-42.738986123379384],[356.23638644406424,-42.73915009549463],[356.23564502105654,-42.740202166616086],[356.2347329544604,-42.74123868620759],[356.2345593118748,-42.74141830353507],[356.2334264977281,-42.74263445035641],[356.23307913083136,-42.743044621364696],[356.2322866458337,-42.743850588941726],[356.2314251983879,-42.744834164581654],[356.23118348968455,-42.74506670122381],[356.23025930044423,-42.74628273137246],[356.2297714418946,-42.74699331324787],[356.2293405436133,-42.74749875193975],[356.22831685605496,-42.748714805438674],[356.22811740883697,-42.74892442686558],[356.22700976222967,-42.74993095563041],[356.2264628992972,-42.750307210462864],[356.2252414970981,-42.75114725641211],[356.22480811207885,-42.751378448003514],[356.22315308419155,-42.75215738830307],[356.2226564100932,-42.752363805951966],[356.2214979028721,-42.75275025463434],[356.21984258153543,-42.75315446745825],[356.2181871636337,-42.753421788520015],[356.21689253314355,-42.75358124462303],[356.2165316990196,-42.75362687158526],[356.2148762450047,-42.753875588715594],[356.2132207951136,-42.75416156280383],[356.2115653692448,-42.7545366959406],[356.2106662697019,-42.75479850153202],[356.2099099942321,-42.755083016946855],[356.2082546665936,-42.75582691698278],[356.2078815194688,-42.75601476447556],[356.20659935003505,-42.756711649437115],[356.2055958202228,-42.75723086823721],[356.204943976359,-42.75756684286431],[356.20328852207956,-42.758308403664365],[356.20290055394815,-42.75844699378242],[356.20163298479855,-42.75889537186075],[356.19997736595,-42.75928464754975],[356.19832170167774,-42.75956557731536],[356.1974706011853,-42.75966340369331],[356.1966660068668,-42.759769096552105],[356.1950102854199,-42.75988198438305],[356.1933545637659,-42.760034462939835],[356.1916988396519,-42.76023414917345],[356.1900431171372,-42.76056464144455],[356.18912407817004,-42.76087971829823],[356.1883873967181,-42.76118953459206],[356.1867392159696,-42.762095451147374],[356.18673165445114,-42.76209993334604],[356.1850758650473,-42.76311919774578],[356.1847559583219,-42.763311133336174],[356.18342002229974,-42.764054200267736],[356.18212052652086,-42.764526771160746],[356.1817641430709,-42.76465046960798]],[[356.27117250800967,-42.75846565284548],[356.2695171814061,-42.758740849112954],[356.267861457856,-42.7587326781257],[356.2662164094568,-42.758419269501935],[356.26620532809756,-42.75841696391983],[356.26454872290617,-42.757721236958666],[356.263767068221,-42.757205334495154],[356.2628912771255,-42.75633363444271],[356.26258948782186,-42.755990487282304],[356.26202838265874,-42.754775212360094],[356.26193723433073,-42.75355961791019],[356.2622420729231,-42.7523437552826],[356.26288478854343,-42.751218450253184],[356.2629375099168,-42.7511276250205],[356.26403059880295,-42.74991121514143],[356.2645380572717,-42.7494864052144],[356.2659356372263,-42.748694220554746],[356.266192295803,-42.74855804565381],[356.2678471037247,-42.74808874134911],[356.26950248743555,-42.74805643113948],[356.27115844306064,-42.748433387391216],[356.2717111967433,-42.748689969994516],[356.2728149799751,-42.74920321514711],[356.2737657516356,-42.749904044137544],[356.27447243543685,-42.75057602145303],[356.2749395421905,-42.75111877996942],[356.27560363828974,-42.752333910094926],[356.275850277072,-42.75354936986614],[356.2757182095502,-42.754765131135095],[356.27514863163174,-42.75598123912741],[356.274481350362,-42.756701532997695],[356.2739189851198,-42.75719786122014],[356.27282735441173,-42.75786470278204],[356.27132331526684,-42.75841551332088],[356.27117250800967,-42.75846565284548]],[[356.06422737646807,-42.74912340134556],[356.06257098668465,-42.749600118742485],[356.0609150724823,-42.74982489037589],[356.05925954006665,-42.749854279266835],[356.0576043925508,-42.74969442499042],[356.0559497667527,-42.74928650839211],[356.0545500113869,-42.7486501119004],[356.0542958899026,-42.74853154642143],[356.05271419183794,-42.74743237006377],[356.05264291815587,-42.74736901554777],[356.0515243514001,-42.74621534648257],[356.05099200361684,-42.74527778161281],[356.0508212371976,-42.74499887649353],[356.05039725513063,-42.743782727514635],[356.05032244041314,-42.74256698423937],[356.0505498306283,-42.74135159274165],[356.0510024852145,-42.74039839566916],[356.05111779868184,-42.74013659566763],[356.05201241799165,-42.73892197194834],[356.0526621009462,-42.73832671595179],[356.0535288455631,-42.737708049930646],[356.05431958401135,-42.7372204318642],[356.0559760663121,-42.7365695989308],[356.0563194137375,-42.736495532722046],[356.05763201472115,-42.736163358094586],[356.0592874145222,-42.73601874560664],[356.0609423623684,-42.7360976732052],[356.0625968421044,-42.73641750288537],[356.0628608092854,-42.73650262542126],[356.06425097200537,-42.736927049124596],[356.065812968809,-42.7377213607606],[356.06590448370224,-42.73777494598212],[356.06747569180254,-42.73893871785842],[356.0675572742782,-42.73903027874813],[356.06855917829364,-42.74015546949678],[356.0690636886813,-42.74137163230875],[356.0692064647583,-42.7422630312164],[356.06927346407645,-42.74258749851928],[356.06921377620404,-42.74380309502705],[356.0692035438319,-42.74383801707553],[356.0689282982504,-42.74501846522386],[356.06828819213393,-42.746233477545296],[356.0675422246949,-42.74703001061005],[356.0671345296662,-42.74744796427548],[356.06588435455546,-42.748325082535835],[356.0652429798432,-42.74866167795058],[356.06422737646807,-42.74912340134556]],[[356.08741749723976,-42.74031515297234],[356.08576147452993,-42.74082059964714],[356.0841059031585,-42.74102976534539],[356.0824506838272,-42.741017624426725],[356.08079581032734,-42.74079852505375],[356.0791413562633,-42.7403388003644],[356.078710132539,-42.740165235821415],[356.07748730618465,-42.73965861220978],[356.0762951171484,-42.73894733728936],[356.0758339705542,-42.73859039201947],[356.0748822426015,-42.73773034567374],[356.0741822703356,-42.73663250840782],[356.0741004156513,-42.73651394299323],[356.07359276612726,-42.7352977991996],[356.073440389616,-42.73408199611099],[356.0735605800453,-42.73286645554368],[356.0739965180103,-42.731651218056804],[356.0741916682654,-42.73133487620101],[356.0747334416474,-42.730436265996005],[356.07585008381625,-42.7293686136866],[356.0760278147268,-42.72922183525638],[356.07750687833465,-42.728283578760596],[356.0781371970879,-42.728008144995556],[356.0791629852423,-42.72757036560988],[356.08081861913945,-42.72711810975422],[356.0824738959993,-42.72686884850792],[356.08396730430405,-42.72679772139422],[356.0841288891149,-42.726787230316795],[356.084310717056,-42.726798020401574],[356.0857836155337,-42.726870967222375],[356.0874380361804,-42.727153584101615],[356.0890920035101,-42.72774166495615],[356.0896104570529,-42.72801816119293],[356.0907453292899,-42.728776326741084],[356.09126120212494,-42.72923516449261],[356.0921285662357,-42.7304515191154],[356.0923967142733,-42.731159337923344],[356.09259399364277,-42.731667547488854],[356.0927958579376,-42.73288336463639],[356.0927279580444,-42.73409896700745],[356.0924077873854,-42.735314368095466],[356.0923905084921,-42.73535113753324],[356.0919177218408,-42.73652963197058],[356.0910855577107,-42.737744617051604],[356.0907312556548,-42.73811425514513],[356.08981262076395,-42.7389592348996],[356.0890739775597,-42.739493860318106],[356.08771728634235,-42.740173151089195],[356.08741749723976,-42.74031515297234]],[[356.0676281247444,-42.70134137219099],[356.06597331042525,-42.701674179853555],[356.0643188862815,-42.70179588706467],[356.062664841067,-42.70172085600539],[356.0610112520511,-42.701418089571625],[356.0604754003835,-42.701246049484745],[356.05935811799714,-42.70089724702031],[356.05776993977247,-42.70002744914629],[356.0577058088185,-42.69998541398132],[356.05633088358775,-42.698810201049476],[356.0560548188062,-42.69845834248055],[356.0553946834675,-42.697593499599655],[356.05483762739607,-42.69637721790638],[356.05458676073954,-42.69516127923188],[356.05457782172084,-42.693945613125],[356.0548107691248,-42.69273021959403],[356.0553331485293,-42.69151515048351],[356.05607126984864,-42.69049115952645],[356.05620880767464,-42.69030047296121],[356.05743228896966,-42.68908617293263],[356.0577285189083,-42.68884318164125],[356.0592944660621,-42.687872555751575],[356.05938442611887,-42.68781870368982],[356.0610396638566,-42.68710407924677],[356.0626940706634,-42.6867944500948],[356.06434798819515,-42.68672967015994],[356.06600147593093,-42.6868887848255],[356.0676544951892,-42.68730191764799],[356.0690301157929,-42.687882723292766],[356.06930703111715,-42.68798804742874],[356.0709591518394,-42.688921778880804],[356.0712128538089,-42.68910054566586],[356.07261057453263,-42.6902713834745],[356.0726599139199,-42.690317615054525],[356.07369912371587,-42.69153427487667],[356.0742602085995,-42.69267116817789],[356.07430352996033,-42.69275051041866],[356.07468068186256,-42.693966526490975],[356.0747464895546,-42.69518224527741],[356.0744845792023,-42.696397651679206],[356.0742527952466,-42.69685537568866],[356.0738925262897,-42.6976127411253],[356.0728149564118,-42.698827358037896],[356.07259487422675,-42.6990016023432],[356.0710458046079,-42.70004128606777],[356.0709387509448,-42.70010018943824],[356.06928318722186,-42.70086502380107],[356.06791288243073,-42.7012538151391],[356.0676281247444,-42.70134137219099]],[[356.23137467787393,-42.678376514182716],[356.22972124499967,-42.67856384925393],[356.2280676549521,-42.67854276014393],[356.22641390481675,-42.67828444691397],[356.2261515496557,-42.67820754694463],[356.2247600114797,-42.67778573404286],[356.22333631608603,-42.676992883260674],[356.22310586244083,-42.67683627360894],[356.2219415942907,-42.675777693479134],[356.2214512928662,-42.67510100806322],[356.2210799024986,-42.67456231719795],[356.22051200892344,-42.67334684215421],[356.22019818696606,-42.67213128513948],[356.2200762497843,-42.67091566764299],[356.22015208312814,-42.66969998843811],[356.2204449350311,-42.66848424107361],[356.22105345531435,-42.6672683923379],[356.2214462986836,-42.66676949315192],[356.2219945527287,-42.66605243166792],[356.22309851689613,-42.66510331269086],[356.22346522224797,-42.66483628383896],[356.22475104975524,-42.664055221321256],[356.225806988438,-42.663619805530786],[356.22640377700833,-42.66337552694548],[356.22805661996966,-42.66291107358045],[356.22970961187013,-42.66268377412268],[356.2313627247271,-42.66263181297421],[356.2330159676438,-42.66274895580948],[356.2346693834319,-42.66307128317014],[356.23608769713445,-42.66361562798377],[356.2363230732876,-42.66369988876508],[356.2379770441204,-42.66461447700371],[356.23826857176334,-42.6648302788621],[356.23961796440716,-42.666045292003275],[356.23963153873655,-42.66606156946095],[356.24058701349963,-42.66726047642542],[356.2411227376728,-42.668475867976895],[356.24128772893584,-42.66927003786687],[356.24139758009994,-42.6696913870982],[356.241410785242,-42.67090703603632],[356.2412896797574,-42.67139293930776],[356.2411458639303,-42.67212282304601],[356.2406009559249,-42.673338747117135],[356.2396390796005,-42.67451248515185],[356.23960312132476,-42.6745548876952],[356.2381778710474,-42.67577122102009],[356.23798681728846,-42.675903986016024],[356.2363341033305,-42.67684560926308],[356.23598637777474,-42.67698788423395],[356.23468115940625,-42.6775659645815],[356.2330279847187,-42.67804156282108],[356.23210502906863,-42.67820522185567],[356.23137467787393,-42.678376514182716]]],"index":15,"temperature":5.0},{"color":"#ffcc00","count_points":681,"count_polygons":9,"curves":[[[356.3174823085593,-42.735235995510806],[356.31582578756115,-42.73455842633438],[356.3149193734313,-42.73406109002986],[356.3141683779851,-42.73343942784783],[356.3134547857973,-42.73284708956181],[356.31251004999166,-42.73184743724479],[356.3122114549002,-42.731632824285754],[356.31085322443386,-42.730949828252555],[356.30919755096585,-42.73060034284662],[356.30754231867127,-42.730463440380824],[356.3064145871058,-42.73042347585287],[356.30588725920444,-42.730410969960204],[356.30423217172694,-42.730342605055455],[356.3025769471569,-42.730200501792886],[356.3009215782439,-42.72997766701134],[356.2992660278919,-42.729650610142485],[356.2977660134907,-42.72921668703438],[356.297610229703,-42.72917843531939],[356.29595437272974,-42.72865965782096],[356.29451041572355,-42.72800420010159],[356.2942981437624,-42.727915646096264],[356.29264161545143,-42.72697764203783],[356.2923901400713,-42.72679055829511],[356.29098447451474,-42.725654551726],[356.29089658248483,-42.72557629752271],[356.28962147733404,-42.72436181725617],[356.28932689090306,-42.72402845880808],[356.2885807673889,-42.72314711029688],[356.2877790519988,-42.72193217887133],[356.2876682965972,-42.721744084385286],[356.2869524424804,-42.72071726409841],[356.2862398081602,-42.71950224229286],[356.2860091345416,-42.719039196354366],[356.28551209325025,-42.718287229356086],[356.2847963270414,-42.71707220135956],[356.284349845047,-42.716165716070385],[356.2841405373612,-42.71585711679523],[356.2834516684607,-42.71464205704868],[356.2829721043482,-42.71342681358291],[356.2826891175117,-42.71228915352878],[356.2826619770419,-42.71221142316465],[356.28260012366525,-42.71099581973226],[356.28268625821937,-42.710487121288125],[356.28277081742635,-42.70978001717187],[356.283099161779,-42.708564078890355],[356.28358772285793,-42.707348001321456],[356.28426076857903,-42.70613176131075],[356.28433347558934,-42.70601946829821],[356.28493460599424,-42.70491551668491],[356.28587325681985,-42.703699034292896],[356.2859837844348,-42.70358204090244],[356.28694724879796,-42.7024824234099],[356.2876351738178,-42.70187096442581],[356.28833409659273,-42.70126551962942],[356.2892871261318,-42.700546265323865],[356.28998956361363,-42.70004835233795],[356.2909393424245,-42.6994161465086],[356.29194183839576,-42.698830883527066],[356.29259176844664,-42.69844064485982],[356.2942445723784,-42.69770767964813],[356.2945685191672,-42.6976127362828],[356.2958976999853,-42.697176345579436],[356.297551294827,-42.696916451568974],[356.2992051987754,-42.69683092857056],[356.30085934965075,-42.69687926955913],[356.3025137463346,-42.69705527178662],[356.30416839437265,-42.69735652176014],[356.3051189644515,-42.697602125885915],[356.3058232017864,-42.69773095583208],[356.3074781205297,-42.69815143019089],[356.30913340042656,-42.69874025209545],[356.30930282520546,-42.698813306249896],[356.31078872032424,-42.69933331957828],[356.3121614046856,-42.700025816797684],[356.31244451236086,-42.70013964852713],[356.3141004319904,-42.700986422820556],[356.3145101339449,-42.701238835192356],[356.3157565969954,-42.70192768904255],[356.31654722490964,-42.70245216471807],[356.31741321596087,-42.70305711340076]],[[356.044582991339,-42.6509499891501],[356.04623635067423,-42.65071501862904],[356.0478894992857,-42.65057038424433],[356.0495424722858,-42.65050321965082],[356.0511952897111,-42.650507057333684],[356.05284795352827,-42.650583646758996],[356.05450042871723,-42.65075253531575],[356.056152617547,-42.65106469148884],[356.05729744435024,-42.651400710818436],[356.05780448768445,-42.651541615166],[356.05945598698327,-42.65221580506089],[356.0601558481553,-42.652619485342015],[356.06110657733126,-42.6533666546763],[356.06159337041487,-42.65383668215028],[356.062392301993,-42.65505318614335],[356.0627538634092,-42.656238285869556],[356.0627668785837,-42.656269237144194],[356.0630861049527,-42.65748522868179],[356.0631853255784,-42.658700987988574],[356.06314643065116,-42.65991660189946],[356.0629799432547,-42.66113208136948],[356.06274237476504,-42.66211171302564],[356.06271012844695,-42.66234745149056],[356.0624757023826,-42.663562858511426],[356.06213319124635,-42.66477815037652],[356.0616132634796,-42.665993252198575],[356.0610797369285,-42.666903844808225],[356.06088202048494,-42.66720812520509],[356.05974258788854,-42.66842255236424],[356.0594229216049,-42.66867153220562],[356.0577679615682,-42.66948195796519],[356.0572123329238,-42.66963544016241],[356.05611360299486,-42.669979962556816],[356.0544595530074,-42.67031764378971],[356.05280576526695,-42.67052295175492],[356.0511521284096,-42.67065278605911],[356.0494986060184,-42.67072671026608],[356.04784516347144,-42.67076252153335],[356.04619178215455,-42.67076996313336],[356.0445384599152,-42.6707509997006]],[[356.18342009334555,-42.758602014920434],[356.1817643635036,-42.759103077734316],[356.1801086216403,-42.759382314696566],[356.1784528907523,-42.7593836203981],[356.1767971865016,-42.75916210026118],[356.17514151012887,-42.758831098144924],[356.1734858601893,-42.75844957975983],[356.17348002317914,-42.75844800795811],[356.1718302335219,-42.75805359450173],[356.1701746281565,-42.757656950708174],[356.16851904233846,-42.75726678338964],[356.1683506431711,-42.75723175777457],[356.16686345654347,-42.75695096230123],[356.16520787842614,-42.7566651209027],[356.163552310252,-42.75639526539863],[356.1618967862954,-42.75604267079113],[356.1617815905941,-42.7560150065399],[356.1602412893595,-42.755668925490255],[356.15858588103276,-42.755129189991905],[356.15781838869236,-42.754798508120146],[356.1569305873582,-42.75439449959098],[356.15558563226654,-42.753582317253496],[356.1552754744351,-42.753356713421056],[356.15414143113276,-42.75236629209922],[356.1536206550682,-42.75183643587317],[356.1529999134478,-42.75115033140603],[356.15196609140816,-42.74998062754452],[356.1519214408681,-42.74993437708954],[356.15054351566846,-42.748718325268534],[356.1503113956798,-42.748547400289645],[356.14871363985475,-42.74750211816091],[356.1486565729129,-42.74746903016614],[356.14700168334554,-42.74659785187388],[356.1464343470731,-42.746285735018084],[356.1453468686411,-42.745681451183124],[356.14441305697363,-42.745069396317966],[356.14369225078065,-42.744538732104104],[356.1429167056007,-42.743853211916196],[356.1420380007016,-42.74294502161768],[356.1417622827655,-42.742637134848316],[356.14068860321044,-42.74142107678308],[356.140384039842,-42.741062465940225],[356.1396073835003,-42.7402050057482],[356.1387300663112,-42.739334086046625],[356.1383489883858,-42.738988853951874],[356.13707594961915,-42.73791531471408],[356.1369097231001,-42.73777261405634],[356.13552378813574,-42.73655637873865],[356.1354219351454,-42.736462833370645],[356.134338143474,-42.73534021380515],[356.13376835171994,-42.73457572318521],[356.13346824419017,-42.73412417649418],[356.13294746795,-42.73290828886863],[356.13272306069337,-42.73169253204838],[356.1327475762124,-42.73047688653026],[356.13294470899854,-42.729261318138384],[356.1332021036321,-42.728045776167],[356.1333313185615,-42.726830176932225],[356.1331795035272,-42.725614453091964],[356.1325796797955,-42.72439852863364],[356.1321223116879,-42.72382803280611],[356.1315319530567,-42.72318239659578],[356.1304689138742,-42.72223123501663],[356.13012146317226,-42.72196608483956],[356.128815404015,-42.72085521243649],[356.1286752397838,-42.72074973851885],[356.12741498536775,-42.71953346606942],[356.127162296103,-42.71912194451367],[356.1266028312174,-42.7183174053081],[356.1262579081101,-42.71710157538002],[356.1262500338264,-42.71588591490647],[356.1263995613953,-42.7146703337262],[356.1266584888992,-42.713454807196456],[356.12694006054323,-42.71223929137753],[356.1271694842394,-42.711305590505056],[356.12723248310976,-42.71102378025762],[356.1274301212443,-42.70980822161201],[356.1275331419736,-42.708592616013526],[356.12755313865335,-42.70737696943421],[356.12757190916733,-42.70616132226073],[356.12771684324514,-42.70494573718656],[356.1281311383292,-42.703730283699585],[356.1288317176801,-42.70258400862283],[356.1288734938567,-42.70251498716659],[356.12996731549504,-42.701299852281394],[356.130487427483,-42.700857747125305],[356.13142260346166,-42.700084873605036],[356.13214267705297,-42.69957018503504],[356.13315655716656,-42.69887000065578],[356.1337977492483,-42.69841643433803],[356.13493639032697,-42.69765512125022],[356.13545275282,-42.697271741548036],[356.13687778850147,-42.696440280964666],[356.1371075719619,-42.696289607830074],[356.1387621416179,-42.69557660680272],[356.1403863720896,-42.695226016245236],[356.1404164222774,-42.695219217336074],[356.1420705704626,-42.69502885820128],[356.14372473840166,-42.69479271194221],[356.1453790351576,-42.694330675847716],[356.1458975234297,-42.69401232958687],[356.1470337891088,-42.69306459617308],[356.14723062194895,-42.6927971101004],[356.14801887793146,-42.69158170486751],[356.1486892936603,-42.69036963570783],[356.148690777498,-42.69036625834767],[356.14918037242234,-42.68915075249688],[356.1497419376339,-42.68793526620146],[356.1503450822204,-42.68689102976145],[356.15045814994136,-42.68671982272267],[356.1515079557728,-42.68550447023921],[356.15199980862036,-42.68510104769957],[356.15323770097615,-42.68428929349488],[356.1536540714702,-42.684058592718465],[356.15530816093957,-42.683269101677],[356.1558161720611,-42.683074303634825],[356.156962131722,-42.68265409440829],[356.1586159898169,-42.68223283886982],[356.1602697477949,-42.682012888891705],[356.1619234154145,-42.682011860864506],[356.16357704532436,-42.68212406838858],[356.165230661341,-42.68230124715622],[356.1668842881739,-42.6824735303444],[356.16853795438715,-42.68252634519852],[356.17019165810086,-42.682425778697116],[356.1718454008756,-42.68210254887273],[356.1726595142123,-42.68186157633357],[356.17349916550256,-42.68155326274893],[356.17515293174023,-42.68079280081671],[356.17541579463926,-42.68064616470853],[356.17680670469076,-42.67963729661893],[356.17698472768893,-42.6794306183656],[356.17765870803936,-42.67821500299612],[356.17812639479587,-42.676999372951975],[356.1784606322637,-42.676154646872085],[356.17853887955965,-42.67578373832785],[356.17888781475494,-42.67456809933161],[356.1794402082135,-42.6733524679722],[356.1801143901467,-42.67243289085907],[356.18030865689747,-42.67213684521158],[356.1816134986863,-42.670921226688215],[356.1817678662482,-42.67081986444892],[356.18342124728747,-42.66991186122372],[356.183943216721,-42.6697056005087],[356.18507458420623,-42.66931434086801],[356.18672789712934,-42.668911151855724],[356.18838119883605,-42.668661286699376],[356.1900344984065,-42.66853088871204],[356.19168780350253,-42.66850431064823],[356.19334112352306,-42.66858909627052],[356.19499447210563,-42.66881260083637],[356.1966478757657,-42.66925199611196],[356.1976892371157,-42.66970481282014],[356.1983013714886,-42.66999437536701],[356.19967548447215,-42.670920218657805],[356.1999550188375,-42.67117933141775],[356.2008733732939,-42.67213570706635],[356.2015301825298,-42.67335126573976],[356.2016090808192,-42.67362007014642],[356.2019485620296,-42.674566857701436],[356.2020910089567,-42.67578249138653],[356.2019886959188,-42.67699816300868],[356.2016698255116,-42.67821386763858],[356.20161041002723,-42.6783680567559],[356.201272489008,-42.679429583084016],[356.20076023282587,-42.680645313778165],[356.2001524824782,-42.68186105549497],[356.19995785755907,-42.68238509869928],[356.19968199645865,-42.68307677566703],[356.1994717492676,-42.68429245973858],[356.19975979416176,-42.68550807722164],[356.19995872287245,-42.685800093342515],[356.20060669626855,-42.68672361575667],[356.20156716092265,-42.68793913101297],[356.20161310729793,-42.68800059029047],[356.20250899432705,-42.689154641239526],[356.20326757737024,-42.69009793775912],[356.203523889286,-42.690370131539765],[356.20492191681564,-42.69146813056583],[356.2051109581819,-42.69158551039875],[356.20657611914226,-42.69225464871316],[356.20806885732287,-42.69280059126945],[356.2082302893097,-42.69284961994249],[356.2098844622453,-42.693374598115724],[356.2115387027741,-42.69398963428937],[356.2116054617048,-42.69401545970306],[356.2131930711966,-42.69480851501718],[356.2139056843626,-42.69523054517996],[356.2148477406739,-42.69614920135468],[356.215138278179,-42.696445876666225],[356.2159925474216,-42.69766130011313],[356.2165031059529,-42.6986905162354],[356.2166207837221,-42.698876781144186],[356.2174649093109,-42.70009219654865],[356.2181585320753,-42.70109518615393],[356.2183454105195,-42.70130759498402],[356.21949625632476,-42.70252290407327],[356.2198137356706,-42.70288807616227],[356.22069234914176,-42.70373818731435],[356.22146907111494,-42.70474134181665],[356.2216549765035,-42.70495353437033],[356.22244562102543,-42.7061689306826],[356.22298517553264,-42.70738440649626],[356.22312522407714,-42.70774119212289],[356.22351593601917,-42.70859988279574],[356.2240762672197,-42.70981534640977],[356.2246620216951,-42.711030798363524],[356.22478186084135,-42.71123634649219],[356.2254317015492,-42.71224618156545],[356.2261732271891,-42.71346156989782],[356.226438103061,-42.71387719252907],[356.2270002794674,-42.71467692166317],[356.22780904650415,-42.7158922744169],[356.22809432774073,-42.716293841119864],[356.2287654545825,-42.71710756437892],[356.22975032872534,-42.718229782040005],[356.2298488842396,-42.71832279604725],[356.2313720110293,-42.719537838023754],[356.231405971303,-42.71955850221319],[356.23306132400825,-42.72042886832149],[356.23368967052056,-42.72075252070061],[356.23471666498284,-42.72122777746314],[356.2360886545616,-42.72196711998506],[356.2363721331864,-42.722127374215916],[356.23787367419663,-42.72318195735635],[356.23802791022865,-42.72332778778372],[356.2390373039877,-42.7243970649576],[356.2396018943434,-42.72561245089652],[356.2396852698818,-42.726227011875345],[356.2397713260488,-42.72682802567067],[356.2396863487598,-42.727433891718945],[356.2396107629765,-42.72804375965151],[356.2391627028078,-42.729259631155415],[356.23851478545674,-42.73047559546576],[356.2380347694397,-42.73123668981666],[356.23772313171986,-42.73169162309969],[356.2369369158479,-42.7329076427826],[356.23638202555736,-42.733895299582734],[356.23624515366566,-42.73412361437824],[356.23558141045646,-42.735339569288755],[356.2349679793495,-42.73655549816003],[356.23472950456875,-42.737001723299706],[356.23427162602775,-42.73777145987725],[356.23336864987755,-42.738987505881006],[356.2330761964682,-42.73931893583438],[356.2321381787558,-42.74020368174417],[356.2314221313911,-42.74080371350507],[356.23049972529265,-42.741420009377684],[356.22976774830335,-42.7419632735412],[356.2286653105453,-42.74263638956731],[356.2281132288623,-42.74301759027319],[356.2268536680288,-42.743852732026596],[356.22645870773846,-42.74415208122698],[356.22533993833804,-42.74506893975369],[356.2248043151008,-42.74557550980388],[356.22411542878615,-42.74628502753249],[356.223149950549,-42.747164729786846],[356.22281306380984,-42.747501128409006],[356.2214954244421,-42.74862624059517],[356.221395655733,-42.74871725176653],[356.21984066450824,-42.749816409929956],[356.2196296976887,-42.74993346550231],[356.21818561619375,-42.75059596688976],[356.2165303934878,-42.75112065011681],[356.21641967528666,-42.75115006558199],[356.21487510209687,-42.75156306213745],[356.2132197431932,-42.75191161976459],[356.2115643445753,-42.752212334443584],[356.2107480027722,-42.75236717030544],[356.20990895153716,-42.7525653248318],[356.208253576073,-42.753012351632336],[356.20659820762717,-42.753545027376624],[356.20649345557246,-42.75358372938709],[356.20494290151953,-42.754349481728156],[356.20403414770817,-42.75479983564955],[356.20328756558195,-42.755196653251254],[356.2016321592077,-42.75595405644505],[356.2014497330102,-42.75601590807984],[356.1999766631116,-42.756517458416546],[356.1983210958813,-42.75690028167155],[356.1966654704175,-42.75709473429406],[356.1950098111528,-42.757154551026446],[356.19335414363695,-42.757180047746964],[356.1916984706468,-42.757171446791034],[356.1900428006832,-42.75719026291571],[356.1894445992435,-42.75723273598268],[356.1883871375574,-42.75732604736394],[356.18673147388927,-42.75762805230385],[356.1850757960139,-42.758070634118745],[356.1838276277004,-42.758448509765394],[356.18342009334555,-42.758602014920434]],[[356.26951549798497,-42.757516970963664],[356.2678597222259,-42.75744586062591],[356.2669896059198,-42.757203059378206],[356.26620335408614,-42.756923827787936],[356.26484443282675,-42.75598892788526],[356.26454596257605,-42.755590223015844],[356.2640441292817,-42.7547738303216],[356.26387736428137,-42.75355828989716],[356.264227474441,-42.75234239062949],[356.264541148858,-42.75187361390371],[356.2651634383434,-42.751126079251755],[356.2661946605141,-42.750347180218476],[356.2672953998187,-42.74990890214737],[356.2678493022973,-42.74971927343801],[356.2695046513443,-42.749630104135655],[356.27063978990117,-42.749906436618815],[356.271160697803,-42.75004187161553],[356.27281760840094,-42.751043184489426],[356.27290309755654,-42.75112036903169],[356.2738209168175,-42.75233531344583],[356.2741622575943,-42.75355070298986],[356.27397741755277,-42.7547665035411],[356.2731957384465,-42.755982767276],[356.27282511594643,-42.75629806821916],[356.27117072847705,-42.75719652493855],[356.2711555287824,-42.757199984338854],[356.26951549798497,-42.757516970963664]],[[356.06257275825,-42.74869704927642],[356.0609166435453,-42.74903478731201],[356.0592610624068,-42.74909882254617],[356.05760601356536,-42.74890051378016],[356.05677445855457,-42.74865259991585],[356.0559515556861,-42.74842165149424],[356.05429786194514,-42.74759028849035],[356.0540728431093,-42.74743391650861],[356.05268990495597,-42.74621668617911],[356.052645488994,-42.74615733817705],[356.0518350161512,-42.74500004860567],[356.05141405448126,-42.74378390685205],[356.05134454362315,-42.74256817036618],[356.05158981008026,-42.74135279747124],[356.0522289683063,-42.74013787702632],[356.0526593303271,-42.739632881193565],[356.05337223285665,-42.73892352797621],[356.05431744009394,-42.73824406687034],[356.05544318679097,-42.73771021062056],[356.05597420406957,-42.73747024080341],[356.05763023151724,-42.7370370612759],[356.0592856440665,-42.73689769798265],[356.06094057702194,-42.736995914795244],[356.06259500338376,-42.73735517615479],[356.0635209334174,-42.73771897677573],[356.0642488598655,-42.738018993579296],[356.06571301204434,-42.73893691401483],[356.06590195987104,-42.739097939299995],[356.06697098650756,-42.740153860385945],[356.0675530820983,-42.74125887445694],[356.06761698543005,-42.74137017378515],[356.0679470086358,-42.74258616433605],[356.0679028708967,-42.74380177588809],[356.06754633922407,-42.74484310326047],[356.0674955168059,-42.74501701912046],[356.06675498430434,-42.7462319208688],[356.0658868094688,-42.7470385997163],[356.0653609902906,-42.74744614392842],[356.0642293522931,-42.74810229661885],[356.062683980043,-42.74865900055011],[356.06257275825,-42.74869704927642]],[[356.0874193077371,-42.739155191753554],[356.0857631709293,-42.73975202873623],[356.08410755484056,-42.74000656988004],[356.0824523454032,-42.74000503983424],[356.0807975390858,-42.73976185063622],[356.0791432313685,-42.73923206033323],[356.0785647819782,-42.738949446009066],[356.0774895824082,-42.738335920399685],[356.07669756706537,-42.73773205816555],[356.075837222889,-42.73672926975704],[356.0756653024447,-42.736515431577146],[356.07506575329205,-42.73529920745405],[356.07487051617755,-42.73408336554618],[356.0750060241945,-42.73286783803414],[356.0755274392244,-42.73165267592157],[356.075846830388,-42.731230803635015],[356.07648638249213,-42.730437922349424],[356.07750457139207,-42.72962455534491],[356.0781833146463,-42.72922384393552],[356.0791610141929,-42.72873417115173],[356.0808167850056,-42.7282184214912],[356.082111889693,-42.72801174455482],[356.0824721317945,-42.72794443081149],[356.08412711993896,-42.72788367769421],[356.08523915379106,-42.728014480062534],[356.08578171060975,-42.72807138491287],[356.0874359176176,-42.728511439820224],[356.0888378269275,-42.72923317906353],[356.08908946478954,-42.72939707824763],[356.0902477700274,-42.730449996836825],[356.09074162740046,-42.73123282174649],[356.09099572171965,-42.73166626231074],[356.09135665224676,-42.73288221088344],[356.09137603147883,-42.73409788293367],[356.0910899610144,-42.73531330788711],[356.0907344291941,-42.73600884125418],[356.09048236473683,-42.7365284703502],[356.0894927883794,-42.737743315413454],[356.0890761103168,-42.73810362070042],[356.0877745564446,-42.73895754283632],[356.0874193077371,-42.739155191753554]],[[356.06762995004163,-42.700369800185136],[356.06597512990237,-42.700719263657966],[356.06432074291365,-42.70083491692973],[356.0626667829594,-42.70072943033432],[356.0610133476346,-42.70036254944105],[356.0601776030922,-42.70003007236849],[356.0593605744177,-42.69967632101879],[356.0580856387084,-42.698812139850304],[356.0577089131201,-42.69846258899082],[356.05691698843566,-42.69759519550027],[356.0562688439124,-42.69637881982786],[356.05606095197646,-42.695488308345965],[356.0559710613143,-42.695162831939584],[356.05598003280306,-42.693947185916514],[356.05606474697197,-42.69365041070218],[356.0562877581483,-42.6927318727815],[356.05692513346884,-42.69151692434936],[356.05772494656827,-42.69059614084191],[356.0580157708205,-42.690302470906445],[356.05938148524785,-42.68928097090993],[356.0597532307313,-42.68908870928313],[356.0610369702097,-42.688461435233826],[356.0626915990304,-42.688056893637615],[356.0643456610085,-42.68793473611755],[356.0659992418537,-42.68806181384421],[356.06765231455677,-42.688463113031474],[356.06909732694186,-42.68909844655918],[356.06930480337957,-42.689191370823494],[356.0709566462286,-42.69029491323852],[356.0709826532563,-42.69031597511535],[356.0721864404779,-42.69153281060428],[356.0726070284802,-42.692243394929996],[356.0729179399577,-42.69274917721794],[356.0733036026713,-42.693965206043394],[356.07333793063617,-42.695180895253515],[356.0730013234601,-42.6963962261967],[356.0725983997195,-42.69704145146913],[356.0722453975936,-42.69761114849072],[356.070941114154,-42.698805505117704],[356.0709148623208,-42.69882550090018],[356.06928522223313,-42.699766217492495],[356.0685537908417,-42.700038805618576],[356.06762995004163,-42.700369800185136]],[[356.11395041978005,-42.69672407268293],[356.11229621843245,-42.696847336091636],[356.11064227034956,-42.69675146763548],[356.1090424795845,-42.696425446536225],[356.10898861776536,-42.69641607789335],[356.1073352133117,-42.69589485302814],[356.10604013646633,-42.69520778759606],[356.10568232384463,-42.69498864680296],[356.1044806828214,-42.69399106023549],[356.1040302882995,-42.693458920122865],[356.1035058479573,-42.69277472373147],[356.1029471522779,-42.6915586739598],[356.10265516339797,-42.69034281105368],[356.1024863566005,-42.68912703508628],[356.10238332297257,-42.6881456402092],[356.1023429100512,-42.687911276967796],[356.1019080684366,-42.686695310422],[356.1007323848918,-42.68599586428036],[356.0990791505898,-42.685603616324244],[356.0985742769259,-42.6854772190046],[356.0974258921479,-42.685243605667196],[356.0957729468804,-42.68467729223238],[356.09503510392335,-42.68425887181011],[356.0941207918205,-42.68358736650478],[356.0935893321251,-42.683042085186784],[356.0929353399471,-42.68182591188251],[356.0928098805243,-42.68061015638184],[356.09317115741175,-42.67939478731601],[356.0941101548719,-42.678179871447185],[356.0941286626785,-42.678164146101466],[356.0957836686661,-42.67715160314671],[356.09635848341463,-42.67696595610467],[356.0974379025077,-42.67665285657549],[356.09909159556264,-42.67652914506747],[356.1007447806412,-42.67677835592858],[356.10123635906524,-42.67696958072364],[356.102397302146,-42.6775411411789],[356.1032272869568,-42.67818665637369],[356.1040486934176,-42.67921058592843],[356.1041890819563,-42.67940298573915],[356.10476415056974,-42.680619040454125],[356.10521167863453,-42.68183500474634],[356.1056977648077,-42.682784298614045],[356.10601878548187,-42.683051212509596],[356.10735057803095,-42.68348985817698],[356.1090041469947,-42.68360276418896],[356.11065776216896,-42.68368178471428],[356.11231132986774,-42.68380545411799],[356.11396479644503,-42.68402432214185],[356.11499618533,-42.684272625024576],[356.115618085075,-42.68441478376188],[356.1172711620941,-42.68502075723284],[356.11824248913837,-42.685490190055575],[356.1189239344092,-42.6859470968933],[356.11992270875055,-42.68670679815824],[356.12057590913895,-42.687699430248585],[356.12074398380975,-42.68792291064338],[356.12111905658713,-42.689138773224045],[356.12107322108,-42.69035440416154],[356.1207082386009,-42.69156985921877],[356.1205716722558,-42.691831170764175],[356.12016646690876,-42.692785214767405],[356.1192662674458,-42.69400036581226],[356.1189150935215,-42.69435015283908],[356.1178960363058,-42.695215239590866],[356.1172597078416,-42.69563879826634],[356.1156049085936,-42.6963348942842],[356.11519563975327,-42.69642930602162],[356.11395041978005,-42.69672407268293]],[[356.23302731711414,-42.677192184498274],[356.2313740257702,-42.6775177680004],[356.22972055771766,-42.67762588443694],[356.2280669240019,-42.677507570311555],[356.22641310021703,-42.677100275183314],[356.2261467156398,-42.67699189291668],[356.2247590908327,-42.676375464139944],[356.2239007151299,-42.67577703413533],[356.22310472907515,-42.675026249540856],[356.22269208784195,-42.67456178913314],[356.2219537269149,-42.67334637811709],[356.22155678086153,-42.672130852058004],[356.2214490141285,-42.671299794724234],[356.22138662232135,-42.670915251599155],[356.221448310222,-42.67012549861762],[356.2214732565574,-42.66969956803297],[356.2217896948771,-42.66848380960134],[356.22245580699655,-42.66726793461506],[356.2230994259942,-42.66655564563458],[356.2235873451982,-42.6660518974309],[356.22475179756844,-42.66520119918678],[356.2254167688196,-42.664835601267086],[356.22640443781876,-42.66434850931151],[356.22805726784947,-42.663829049840864],[356.229399859959,-42.663618450069926],[356.2297102541998,-42.66356081282785],[356.2313633685383,-42.663480045255746],[356.23275020711895,-42.663617084941635],[356.23301666578135,-42.66363759280954],[356.2346701206113,-42.66397885284966],[356.2363238853065,-42.664667850977935],[356.23660049315316,-42.66483105080392],[356.237978022869,-42.66574526663409],[356.23833321724413,-42.66604590377201],[356.23941383386165,-42.66726104552747],[356.23963296521606,-42.66766037659755],[356.240099287662,-42.66847636988304],[356.24043623337667,-42.66969186110794],[356.2404515511889,-42.670907509124994],[356.240138139012,-42.67212331751726],[356.2396377228958,-42.67299221920191],[356.239447444718,-42.673339306926394],[356.23835966978186,-42.67455547987699],[356.23798591545017,-42.67486239611822],[356.23663255576946,-42.675771935778535],[356.23633335068587,-42.67594877625294],[356.2346804521464,-42.67669561114754],[356.2336406575583,-42.676988916330934],[356.23302731711414,-42.677192184498274]]],"index":16,"temperature":6.0},{"color":"#ffb600","count_points":622,"count_polygons":10,"curves":[[[356.3174629979636,-42.726245724163824],[356.31651713135494,-42.72676532467487],[356.31581023517435,-42.727226805678214],[356.3141566750735,-42.727852192678014],[356.31358364568484,-42.72798431944061],[356.3125027274038,-42.728306300672585],[356.3108484041485,-42.728588292492354],[356.30919382548046,-42.72875099105991],[356.3075391165809,-42.72885257132605],[356.3058843053763,-42.728904779602914],[356.304229344809,-42.72888124636492],[356.3025742059101,-42.728763608426625],[356.30091887661183,-42.72854144490495],[356.29926330678666,-42.72818320924197],[356.298662120224,-42.72800014210037],[356.2976075967775,-42.72773784140916],[356.29595165923877,-42.72715296482566],[356.2951892534674,-42.72678789046325],[356.29429541951737,-42.72638020155831],[356.29301867746824,-42.72557430878403],[356.29263874516187,-42.72533513697778],[356.291447133867,-42.724360128937775],[356.2909815211716,-42.72393824741319],[356.29017820801033,-42.72314564907919],[356.2893235390695,-42.72204979441655],[356.28922885638514,-42.721930863746785],[356.2883235495148,-42.720716030693396],[356.2876768123523,-42.719500958109656],[356.2876645113527,-42.71947364435475],[356.2869144931722,-42.71828598519016],[356.2863132618447,-42.71707086427579],[356.2860046057058,-42.71627831647795],[356.28576128323056,-42.715855696727324],[356.28519310364845,-42.71464054076146],[356.2848064924403,-42.7134252232768],[356.28457233143,-42.712209771528336],[356.2845331058007,-42.710994149388135],[356.28465424518726,-42.709778387263974],[356.2849402814086,-42.7085624806813],[356.28539712341336,-42.707346423211845],[356.28598820833304,-42.70628005482536],[356.2860503246135,-42.706130190191566],[356.28672145278165,-42.70491393749707],[356.2876384057835,-42.70381065078639],[356.2877217568283,-42.70369738503378],[356.28890734678515,-42.70248065532426],[356.2892898658803,-42.70216473233452],[356.2904465479738,-42.70126358723791],[356.29094190866545,-42.700908674786604],[356.29233387456253,-42.70004617173473],[356.2925942904119,-42.699885079435724],[356.2942469898071,-42.69907145906012],[356.2949980071225,-42.69882797942445],[356.29590007071516,-42.698493993302215],[356.2975535124182,-42.69813100725549],[356.299207281857,-42.69795540644997],[356.3008613122797,-42.69792369991168],[356.3025155757241,-42.698015180003665],[356.3041700736884,-42.69822552490406],[356.3058248356069,-42.69856490580151],[356.30667296421575,-42.69881613736909],[356.307479782952,-42.698988579859694],[356.30913488933476,-42.69948008283356],[356.3104134948589,-42.70002774864561],[356.3107903805402,-42.70014747374838],[356.3124459907425,-42.700855262260404],[356.3131388873047,-42.701240381006706],[356.3141018811617,-42.701678943969796],[356.3153590600063,-42.70245352614818],[356.3157581904482,-42.70267955826452],[356.3171425905178,-42.70366713407816],[356.3174150776683,-42.70392461441927]],[[356.04458209519055,-42.6513485881915],[356.0462356062041,-42.651050121597436],[356.0478888455359,-42.650868220879374],[356.04954185627804,-42.65078730633679],[356.0511946618831,-42.650800192405285],[356.052847259116,-42.65091194818879],[356.05449959433923,-42.65115203245671],[356.055535771086,-42.651398752506175],[356.05615166834036,-42.651525028191905],[356.05780347141615,-42.652040910413646],[356.0589635756947,-42.652618192575765],[356.0594545969517,-42.65290776083862],[356.06066877207564,-42.65383569225258],[356.06110463669427,-42.65434562948272],[356.0616679758563,-42.65505241632324],[356.06224281815383,-42.65626868233001],[356.06251684360234,-42.65748462748068],[356.06262198199266,-42.65870039353581],[356.06262273729635,-42.65991604919773],[356.0625315886961,-42.66113160767574],[356.0623421975458,-42.66234706202958],[356.06203455094084,-42.663562390503714],[356.0615653997786,-42.66477754601296],[356.06108219934157,-42.665662150973624],[356.06090249144796,-42.665992491986046],[356.0600188695549,-42.6672071959494],[356.05942472102566,-42.66777623421172],[356.05847491127895,-42.66842117280385],[356.05776933085764,-42.66880959793548],[356.05611482310616,-42.66938859515508],[356.0548959062011,-42.66963285773729],[356.0544607512411,-42.6697442858562],[356.052806746885,-42.67005915802691],[356.0511529935591,-42.67024910188327],[356.0494994256887,-42.670348941558956],[356.0478459940832,-42.67038435137046],[356.0461926750343,-42.67036831204552],[356.04453946539456,-42.6703040499183]],[[356.26951369822035,-42.75620845547658],[356.26785786285063,-42.75606723753697],[356.2676591929279,-42.75598691927678],[356.2662007403118,-42.75494666616359],[356.2660566340288,-42.7547724152414],[356.26579852687655,-42.753556942598735],[356.2661975568363,-42.752538389783886],[356.26631843806257,-42.752340916342376],[356.26785148425387,-42.751337397717],[356.26950672191487,-42.75113582340313],[356.2711631142852,-42.75176564485479],[356.2718135586456,-42.75233686053551],[356.27237452056454,-42.75355208783685],[356.2720736524008,-42.754767974250385],[356.2711685740457,-42.75565995697978],[356.2703892653108,-42.75598490525265],[356.26951369822035,-42.75620845547658]],[[356.1801088450179,-42.756019848256535],[356.17845319334094,-42.75613468161441],[356.176797562068,-42.756028091480665],[356.1767250164751,-42.75601695334244],[356.1751419533344,-42.75580655048301],[356.1734863756046,-42.755474351652815],[356.17183083093727,-42.755065532971614],[356.1707672056509,-42.75480075387844],[356.1701753046693,-42.754671878231264],[356.16851976816696,-42.754401629844764],[356.1668642168943,-42.75423569191332],[356.16520866137034,-42.75411253239303],[356.1635531132285,-42.75398698533518],[356.1618976187974,-42.75373093128292],[356.16124192858194,-42.75358358754084],[356.1602421840163,-42.75335603878836],[356.1585868875918,-42.75269497713095],[356.1580190310867,-42.75236724164597],[356.15693179586793,-42.75164907699534],[356.15633882721494,-42.75115119001897],[356.15527697578113,-42.75014093978737],[356.1550779482938,-42.749935220913606],[356.15390178842244,-42.74871926033733],[356.15362232272275,-42.74845747357505],[356.15252153530366,-42.74750323158969],[356.15196759784016,-42.7470848046003],[356.1507287329454,-42.7462870667586],[356.15031276371116,-42.74604588303031],[356.1486579075447,-42.74514208400935],[356.1485227788054,-42.74507074635614],[356.14700309773053,-42.74424144625938],[356.14638903548547,-42.743854407396896],[356.14534848458766,-42.743103774010216],[356.14479959816776,-42.74263821680631],[356.1436941982602,-42.74155893993985],[356.1435664058569,-42.74142213079264],[356.1425431364883,-42.740206107852714],[356.1420402700176,-42.73960883456794],[356.1414740502295,-42.73899005875842],[356.1403862789106,-42.737894835053375],[356.1402528211734,-42.73777394160591],[356.1387823784885,-42.736557713211866],[356.1387321316652,-42.736518366460935],[356.1372816342607,-42.73534145362789],[356.13707804975337,-42.735152558114265],[356.13609519387376,-42.734125306480024],[356.13542460174205,-42.73307365647236],[356.13533209273015,-42.732909327931466],[356.13495954247423,-42.73169351236411],[356.1349019477661,-42.730477831161444],[356.1350732080356,-42.729262248011416],[356.1353619606383,-42.72804671460534],[356.1354288381912,-42.72768847486543],[356.1355779223722,-42.72683114968496],[356.1356249418144,-42.72561551304877],[356.1354311511754,-42.724747919830484],[356.1353356526255,-42.72439973384333],[356.13460253803055,-42.72318376316775],[356.1337783405524,-42.72229407384545],[356.13343124283455,-42.72196759502819],[356.13215488534144,-42.72075136741438],[356.1321249244634,-42.720716931250585],[356.1310723001452,-42.71953521539864],[356.1304722161252,-42.71841994926099],[356.1304097656752,-42.71831925061396],[356.1300281277456,-42.71710341479769],[356.1299758814444,-42.71588773364402],[356.1301412601862,-42.714672155070275],[356.13046777272854,-42.713456651732834],[356.1304765486116,-42.7134189094864],[356.13070557099576,-42.71224110620559],[356.13089552729167,-42.711025538009665],[356.1309852853793,-42.70980992314689],[356.1310029352368,-42.70859427486237],[356.1309752416835,-42.707378605592154],[356.1310307286982,-42.706162974850656],[356.13125321981084,-42.70494742117538],[356.1318480964407,-42.7037320373591],[356.1321395074241,-42.70334687897164],[356.1327961578697,-42.702516809031806],[356.1337951487744,-42.70161674545796],[356.13416988334495,-42.701301759037875],[356.1354503115543,-42.70037812508226],[356.13593436496944,-42.70008685745832],[356.13710519295324,-42.69942313146514],[356.13837685086986,-42.698872201224255],[356.13875985276906,-42.69870112424156],[356.1404143322369,-42.69818009645021],[356.1420686328026,-42.697881586524524],[356.1437184886364,-42.69765855124521],[356.14372286867257,-42.69765786094451],[356.14537714854885,-42.69734481367858],[356.1470315849929,-42.6967427001108],[356.1474790263498,-42.696444158540544],[356.14868640031705,-42.69542290548854],[356.148833140255,-42.69522892713821],[356.14961792277444,-42.69401350981937],[356.1502954403192,-42.69279805555739],[356.1503419053217,-42.69271093155201],[356.1508667403008,-42.69158256655414],[356.1514879187859,-42.69036708895403],[356.15199752652734,-42.6894965951742],[356.1521989039211,-42.68915163308037],[356.15306838388574,-42.68793621590518],[356.15365245850495,-42.68733354090749],[356.154312865991,-42.68672089037398],[356.1553068945538,-42.68598748206432],[356.15610405476036,-42.6855056864408],[356.1569610720425,-42.68506678549926],[356.15861507084486,-42.684460296104156],[356.15935122220856,-42.68429077889819],[356.16026895483157,-42.68406760338889],[356.16192272853357,-42.683923658103076],[356.1635764373657,-42.68395169822248],[356.16523010818986,-42.6841088553893],[356.1666769134916,-42.68429213064941],[356.1668837738593,-42.68431446578968],[356.1685374725259,-42.68443289777055],[356.1701911999517,-42.684452078757],[356.1717616587777,-42.68429279445313],[356.1718449661259,-42.6842821623965],[356.1734987635843,-42.68387888951132],[356.1751525598475,-42.68333685527369],[356.17588316574853,-42.683077511483575],[356.1768063402233,-42.68268618923154],[356.1784510270855,-42.68186201322328],[356.17846010270813,-42.68185501387339],[356.1792919370252,-42.68064639646945],[356.1795376192346,-42.67943075085975],[356.1795941809908,-42.67821509729685],[356.1796706159377,-42.67699944453557],[356.1798706363707,-42.67578379651479],[356.1801142182172,-42.675027929762365],[356.18022081587384,-42.67456815351983],[356.18073753882203,-42.6733525146782],[356.1817012734576,-42.67213688425148],[356.18176781644166,-42.672076951218415],[356.1832063957218,-42.67092125187686],[356.18342123575917,-42.67079915984145],[356.18507459389906,-42.670025278582166],[356.18610936689777,-42.66970558546831],[356.18672792179655,-42.66952385944823],[356.1883812333903,-42.669177912787745],[356.1900345422272,-42.66899951195003],[356.1916878587176,-42.66896392027818],[356.193341195353,-42.66907853291408],[356.19499457036244,-42.66937929049496],[356.1960053371983,-42.6697049976449],[356.19664800751224,-42.669910675812],[356.19830154751213,-42.67077101398345],[356.1985232128403,-42.67092036770225],[356.1998697682231,-42.67213584798695],[356.19995529166005,-42.672256465826116],[356.20072329256885,-42.67335138433906],[356.20115316853946,-42.67456697754555],[356.2012919311299,-42.67578261276347],[356.201203273456,-42.67699828165951],[356.2009089419987,-42.678213980553664],[356.2003913144848,-42.67942971034434],[356.19995730773064,-42.68021498327469],[356.199720873079,-42.680645458538315],[356.19896974725225,-42.681861213234995],[356.1983043008084,-42.682916386770906],[356.19817490177746,-42.683076968373655],[356.19749166545915,-42.684292705231144],[356.1973139580504,-42.685508381633326],[356.1981162199916,-42.68672394358807],[356.1983052057607,-42.68690728639344],[356.19920850713794,-42.68793946255039],[356.1999594924392,-42.68883690431751],[356.2002047693024,-42.68915498454985],[356.20107302353756,-42.690370516772425],[356.2016139536565,-42.691022503122554],[356.2021742651792,-42.691586006331946],[356.20326826701523,-42.692346287933205],[356.20412103323554,-42.69280134217156],[356.20492245969507,-42.69309649323692],[356.2065766226563,-42.693653131618866],[356.2076814270536,-42.69401632720301],[356.2082308056912,-42.69418498742227],[356.20988506578766,-42.69483472044429],[356.2106898805765,-42.69523133035955],[356.2115394827349,-42.69576223817554],[356.21241179297147,-42.69644657740953],[356.2131942413123,-42.69731586594453],[356.2134973863997,-42.69766196245671],[356.2143188482233,-42.69887740671188],[356.21484953267856,-42.699781498042796],[356.21505609970353,-42.70009286772976],[356.21589098251627,-42.701308297190145],[356.21650490690394,-42.70215358670413],[356.21683571059987,-42.70252368950074],[356.2179071511859,-42.703739037011815],[356.2181601429196,-42.70404148497772],[356.21898998506055,-42.70495437110722],[356.2198156119136,-42.706160068074546],[356.2198229151428,-42.70616977266593],[356.2206214939969,-42.7073851790827],[356.2212254573911,-42.70860064276212],[356.2214716903243,-42.70910576167034],[356.2218677483016,-42.709816090736936],[356.22255155455923,-42.71103152130081],[356.22312788728175,-42.71198977635476],[356.2233004209742,-42.71224692571152],[356.22412581831253,-42.713462298715676],[356.2247839711798,-42.714465293282366],[356.2249346890813,-42.71467767165305],[356.2257509127439,-42.71589303624848],[356.2264402077864,-42.71697106555122],[356.22654120706056,-42.717108404599514],[356.2274162442171,-42.71832373571432],[356.2280963950556,-42.71921787950827],[356.22840654664304,-42.719539015930216],[356.22975207200693,-42.72060575274965],[356.23000175144534,-42.72075404834192],[356.2314073848862,-42.72141748100091],[356.2327196131456,-42.72196859052397],[356.23306263806575,-42.72209836530953],[356.23471799961715,-42.72286780285217],[356.23525807395333,-42.723183148219626],[356.2363736905161,-42.723980263548796],[356.2368353760593,-42.72439809373343],[356.23763151913386,-42.72561338315225],[356.2379067859302,-42.726828911461475],[356.23775957188917,-42.728044636625334],[356.237218519886,-42.72926054382141],[356.23641446270034,-42.73047656816773],[356.2363791918227,-42.73052475640251],[356.2353759166019,-42.731692691460594],[356.23472587217407,-42.732539994671264],[356.23439291581997,-42.73290878113885],[356.23355154637045,-42.73412480172018],[356.23307270675133,-42.734887549095006],[356.2327535670274,-42.73534079782659],[356.2319464303159,-42.736556792186036],[356.2314194288396,-42.73725175879266],[356.23090680019465,-42.73777287551382],[356.22976535550896,-42.73870426111039],[356.2292540656001,-42.738989191218316],[356.22811079305353,-42.739574963188694],[356.22662096932055,-42.74020584888563],[356.2264560715157,-42.740280271856136],[356.22480138490175,-42.74109653084752],[356.2243250156666,-42.74142232911858],[356.22314700030927,-42.74246354160481],[356.2230189864008,-42.742638433678955],[356.22208306344487,-42.74385440209626],[356.22149298849513,-42.74457238203652],[356.221205549777,-42.74507034410112],[356.2203290936824,-42.74628627905653],[356.2198389272037,-42.746790987002086],[356.2191083650608,-42.747502312294024],[356.2181842979371,-42.748188459832534],[356.2173535409426,-42.74871848770538],[356.21652936825285,-42.749152370708],[356.2148742426952,-42.749824059984185],[356.21452453225396,-42.74993492445087],[356.2132190068947,-42.75033666047117],[356.211563690819,-42.75072926170172],[356.2099083250202,-42.75105243777597],[356.2093566078651,-42.751151826664135],[356.20825295401943,-42.75140675582927],[356.206597585549,-42.751820562679356],[356.20494221030134,-42.75228025331076],[356.2046537309591,-42.75236841481237],[356.2032868655389,-42.75291902216502],[356.20164243364144,-42.75358456669368],[356.2016314956669,-42.75358987109192],[356.19997608313184,-42.75423379785921],[356.19832059254014,-42.75468557973785],[356.1974212552454,-42.75480078489778],[356.19666503013576,-42.7548996237362],[356.1950094266411,-42.754943110529865],[356.19335380659174,-42.75488992530607],[356.1920796285896,-42.75480127389043],[356.19169818192904,-42.754774909834055],[356.1900425646908,-42.754673614692834],[356.1883869582588,-42.75465283671894],[356.186731358459,-42.75476891293898],[356.18650621550813,-42.754801519477915],[356.185075754533,-42.75503664654148],[356.183420135096,-42.755397556714975],[356.1817644962677,-42.755761467919925],[356.1801233163616,-42.75601712493179],[356.1801088450179,-42.756019848256535]],[[356.0625742549071,-42.74793409597797],[356.06091807627814,-42.74831423426512],[356.05926247525696,-42.748397683398295],[356.05760743407865,-42.748204783768685],[356.0559531011808,-42.74767446520947],[356.0554955356337,-42.74743551863411],[356.05429972755513,-42.74669980458022],[356.05373138464296,-42.74621787326568],[356.0527922286973,-42.74500114711015],[356.05264869777733,-42.74464492053479],[356.05229679862515,-42.74378492341136],[356.05221857942485,-42.74256917745534],[356.05253434324453,-42.74135388348081],[356.05265612568235,-42.741143592453355],[356.05328136224676,-42.740139080703024],[356.05431546494975,-42.739187089531896],[356.054714104655,-42.738925047702715],[356.0559725672313,-42.73826184809901],[356.0576286591597,-42.73780743719122],[356.05870989159575,-42.73771382408493],[356.0592841160187,-42.737656285603315],[356.06001252284835,-42.73771523909965],[356.0609390167497,-42.7377808959279],[356.0625933870243,-42.73817943075295],[356.0641715108332,-42.73893531435989],[356.06424700087257,-42.73898003307096],[356.0656766836121,-42.74015253280679],[356.0658993502924,-42.740465822105705],[356.06650729664915,-42.74136904269016],[356.0668557198667,-42.74258505521278],[356.06681648294403,-42.74380067134804],[356.06638010625835,-42.74501588097543],[356.0658894030617,-42.745679384694455],[356.06544886426724,-42.74623057862471],[356.0642311753755,-42.74716009932736],[356.063696857873,-42.747444410991385],[356.0625742549071,-42.74793409597797]],[[356.08410891829516,-42.73916190216307],[356.0824537155295,-42.739170043413466],[356.0812720979346,-42.73895190273573],[356.08079903082074,-42.7388672828157],[356.0791449064368,-42.73824335432841],[356.0783080542291,-42.73773355342497],[356.07749180331433,-42.73704531861204],[356.076980762288,-42.736516666415],[356.07629891503996,-42.73530037190707],[356.0760764520802,-42.73408450647753],[356.0762365362716,-42.73286900063087],[356.0768399686579,-42.73165390958291],[356.07750231931584,-42.73093358338181],[356.0780668927874,-42.73043939285691],[356.079159278253,-42.7297591201723],[356.08056656969796,-42.729226017806305],[356.08081525249577,-42.72913775655031],[356.08247070545656,-42.728813998584194],[356.0841256706006,-42.72878187674947],[356.0857801641168,-42.72904589750921],[356.0863135308053,-42.72923105662739],[356.08743411307233,-42.72966798459608],[356.08859081891967,-42.730448630236886],[356.08908707857523,-42.73095296683159],[356.08964965216245,-42.731665162690796],[356.0901325222676,-42.73288121536687],[356.09021031112667,-42.7340969354079],[356.08993365952153,-42.7353123651838],[356.08923593741537,-42.73652744708922],[356.0890782533072,-42.73670664767364],[356.08798358098,-42.73774206170017],[356.0874209208997,-42.73812162367455],[356.08576463330314,-42.738830842176206],[356.08513824827253,-42.73895530049037],[356.08410891829516,-42.73916190216307]],[[356.06763157115074,-42.699506888273504],[356.06597671221175,-42.699888796343025],[356.06432234356106,-42.70000641749252],[356.06266845860375,-42.69987391119863],[356.0610151756092,-42.699441773979636],[356.0597518164154,-42.698813955993],[356.0593627958141,-42.69857216886545],[356.05824758888286,-42.69759666132527],[356.0577122849466,-42.69680844415857],[356.0574405056735,-42.69638011797296],[356.0570709123561,-42.69516405371005],[356.0570856111321,-42.693948413931146],[356.0574789427296,-42.69273319224627],[356.0577213730907,-42.692349559242935],[356.0582729125302,-42.69151840887717],[356.05937905254484,-42.69049051353701],[356.0596461753369,-42.69030424925814],[356.0610348713132,-42.68951904933863],[356.06249214157526,-42.689091642122136],[356.0626896900913,-42.68903189316581],[356.0643439134867,-42.688839608720734],[356.065997490921,-42.68898113104157],[356.0664073977314,-42.68909572128993],[356.0676505193775,-42.68941902053104],[356.0693028856096,-42.69022722634192],[356.0694328529602,-42.690314438048865],[356.0708685859475,-42.69153151870196],[356.070954184458,-42.69164396295499],[356.0717311150641,-42.69274802198889],[356.0721268013768,-42.69396406456623],[356.07214087358136,-42.695179734376616],[356.0717529980589,-42.696395011663476],[356.0709435387739,-42.69747712078501],[356.07083387801646,-42.697609764893066],[356.0692870542058,-42.69877700879747],[356.06919814340574,-42.69882379598717],[356.06763157115074,-42.699506888273504]],[[356.1139517709848,-42.69553069545874],[356.1122974928761,-42.6957476424951],[356.11064352815987,-42.69569052037808],[356.1089899127571,-42.69534777004487],[356.1086219624502,-42.69520951453387],[356.1073366895093,-42.69470323234191],[356.10622616613006,-42.69399225778056],[356.1056841664278,-42.69353254359545],[356.1049687363085,-42.69277574159222],[356.1043120822982,-42.69155963087375],[356.1040342767102,-42.69037184408991],[356.1040269563432,-42.690343776218896],[356.10398555100863,-42.68912809125554],[356.1040362654959,-42.68883238627563],[356.1042012326974,-42.68791258555141],[356.10478667742245,-42.686697335572944],[356.1056938783431,-42.68585656427349],[356.10640886644035,-42.68548278907431],[356.1073485218398,-42.68515024989937],[356.10900265117533,-42.6848372089664],[356.11065650560533,-42.68474209034952],[356.11231016229203,-42.68481332230141],[356.1139636206741,-42.68506314454148],[356.1153293016902,-42.68548848111017],[356.1156167882155,-42.6855881913487],[356.11726956514894,-42.68650133608985],[356.1175648067441,-42.68670545510669],[356.1186905188832,-42.68792175838205],[356.11892127614243,-42.688473956028],[356.1192198739456,-42.68913771500193],[356.11931058408186,-42.69035342236313],[356.11899503705126,-42.69156889988227],[356.118917871517,-42.69170997838607],[356.11836801374767,-42.69278419854726],[356.11726153587654,-42.69394446146921],[356.11719636833317,-42.693999177555334],[356.1156064105458,-42.69497638351257],[356.11492381408755,-42.69521348624622],[356.1139517709848,-42.69553069545874]],[[356.1007352294639,-42.683880875585245],[356.09908127222593,-42.68405677535944],[356.09742787354196,-42.683826521239226],[356.0957751513619,-42.683130101604554],[356.0956575554401,-42.68304369714327],[356.094668533863,-42.68182727509978],[356.0944710121881,-42.680611465248475],[356.09501281236805,-42.679396231185464],[356.09578148192463,-42.67868663880539],[356.0967922788754,-42.678181942532866],[356.0974360809608,-42.6779559222842],[356.0990897792399,-42.677853714054585],[356.1004529317295,-42.67818466824171],[356.1007427507587,-42.67828796861324],[356.1020984012254,-42.67940151123663],[356.1023941476886,-42.67993440586072],[356.1027115815068,-42.68061760343292],[356.1027867918396,-42.681833312569246],[356.10239038299784,-42.68279040897636],[356.10222091101605,-42.683048566185406],[356.1007352294639,-42.683880875585245]],[[356.23467986481626,-42.67597282465381],[356.23302677594097,-42.67650364501981],[356.2313734616861,-42.67677491440803],[356.2297199742616,-42.67682959334737],[356.22806631712683,-42.67664807263527],[356.22641244885364,-42.67614159636497],[356.2257116039064,-42.67577639498844],[356.22475830477157,-42.67517130559733],[356.2240593069127,-42.67456132359058],[356.22316114491065,-42.67334597558208],[356.2231035963058,-42.67321707251735],[356.2226031037905,-42.67213050757647],[356.2223766387001,-42.67091492736423],[356.22245829519557,-42.66969924470846],[356.22287484628816,-42.668483449958394],[356.22310041073825,-42.66812875050113],[356.2236346469315,-42.667267536612925],[356.2247524596065,-42.66621569670453],[356.2249627178335,-42.666051418364994],[356.22640500960665,-42.66519038964533],[356.22734100419365,-42.66483489581427],[356.22805779058103,-42.66456968466416],[356.22971074324175,-42.66422853561048],[356.2313638726551,-42.664144211544944],[356.23301718549374,-42.664299101623904],[356.2346707409224,-42.66474252096063],[356.234874877984,-42.6648318239044],[356.2363245714328,-42.66548572020256],[356.23714526141674,-42.66604645667624],[356.2379789267003,-42.66678946461225],[356.2384311457554,-42.66726151301001],[356.2391868473411,-42.66847680966759],[356.2395307804763,-42.669692300207245],[356.23954732946527,-42.670907947754074],[356.2392309668034,-42.672123755094496],[356.2384881356867,-42.67333976367296],[356.23798504867824,-42.67386127370533],[356.23722046775634,-42.674556010606445],[356.23633269506246,-42.67516753029756],[356.2351034972464,-42.675772622573604],[356.23467986481626,-42.67597282465381]]],"index":17,"temperature":7.0},{"color":"#ffa300","count_points":561,"count_polygons":9,"curves":[[[356.3174595157041,-42.724624240549815],[356.31585756438824,-42.725550425512566],[356.3158067456852,-42.7255815718067],[356.3141536521522,-42.726408817956994],[356.3129825218352,-42.72676933799674],[356.3124999195199,-42.72694832641989],[356.3108459515494,-42.72738665551431],[356.30919159338407,-42.72764291311924],[356.3075370075736,-42.72779155162555],[356.3058822597831,-42.72786166565501],[356.30422734547085,-42.72784765861905],[356.30257225552214,-42.72774122305931],[356.300916974479,-42.72753020691835],[356.2992614426097,-42.72717788099523],[356.2980266983628,-42.72678511653254],[356.29760565225746,-42.72667386266243],[356.2959497086588,-42.726069840571746],[356.29498934488424,-42.725572426875424],[356.2942933952789,-42.72523924689968],[356.2929560850289,-42.72435871161401],[356.2926366772049,-42.72415170779792],[356.29144276528496,-42.723144476616206],[356.2909793804915,-42.72269415431672],[356.29024763392937,-42.72192992866992],[356.2893975587275,-42.7207150531261],[356.28932104539973,-42.72057764195082],[356.2885478451967,-42.71950017096432],[356.2879278987787,-42.71828507547957],[356.28766136590724,-42.71758683784025],[356.28735976951754,-42.71706993017611],[356.2867751698488,-42.71585479676001],[356.2863571924063,-42.71463951246513],[356.2860847890722,-42.713424097762974],[356.28599885119206,-42.712769881354134],[356.2858738451589,-42.712208628095894],[356.28582966637583,-42.71099301078146],[356.2859925964827,-42.70977721030817],[356.2859939355618,-42.709772585925435],[356.2862194028321,-42.70856135296335],[356.28660687179035,-42.70734535221674],[356.2872297088422,-42.70612913953602],[356.28764128234855,-42.70553693903272],[356.287988103695,-42.70491280122835],[356.2890106733098,-42.70369621745527],[356.2892920097786,-42.70343115059254],[356.2902944425485,-42.70247938391589],[356.2909437554612,-42.70198272861338],[356.29204594771295,-42.701262098346234],[356.29259606821967,-42.700903263617434],[356.2942488113175,-42.70009901479083],[356.29440700828684,-42.70004420354138],[356.2959017646472,-42.699435443684834],[356.29755518343313,-42.699046176423266],[356.2992089200963,-42.69883972335549],[356.29955761768707,-42.69882349565856],[356.30086284736944,-42.69874058697343],[356.3025170666456,-42.69879746697583],[356.3026933933031,-42.69882030709128],[356.3041714631381,-42.69894451134428],[356.30582606621266,-42.699193028298836],[356.30748097938647,-42.69959105706365],[356.3087385645485,-42.70002957489962],[356.3091361872411,-42.70012499140725],[356.3107914609756,-42.70067729757956],[356.3119481351916,-42.70124171008007],[356.31244716504824,-42.701423675635795],[356.3141031085179,-42.702265453381536],[356.3144101068145,-42.70245460466278],[356.3157593330706,-42.703218692390145],[356.31638918079017,-42.70366800268391],[356.3174166105017,-42.70463885160087]],[[356.0445814845882,-42.65162017587061],[356.04622006824684,-42.651387948222556],[356.0462348617259,-42.651385224570696],[356.0478881917798,-42.65116605751829],[356.04954124026466,-42.65107139302627],[356.05119403404916,-42.65109332748064],[356.0528465646963,-42.651240249623285],[356.05375751852904,-42.651396748389566],[356.05449887429376,-42.65149678347637],[356.05615095948014,-42.65186879967537],[356.05780245513154,-42.652540205672],[356.05795696324736,-42.65261709149284],[356.0594534080318,-42.65349959129855],[356.0598920902243,-42.6538348549717],[356.0609933706032,-42.65505169524288],[356.0611028644053,-42.65523965243058],[356.06172504082576,-42.65626813182174],[356.0621114146879,-42.65748419758572],[356.06227455668954,-42.65870002554881],[356.0622975511592,-42.65991570479847],[356.06219974027056,-42.66113125594662],[356.0619742666546,-42.662346671391184],[356.0615933995136,-42.66356192080331],[356.06108423625966,-42.66463497929468],[356.0610231802189,-42.66477696625094],[356.0603370216741,-42.66599188404439],[356.05942626424286,-42.66700838918931],[356.05921120495407,-42.66720632056085],[356.0577705374207,-42.66821712913262],[356.05732963675706,-42.66841991443048],[356.05611574983465,-42.66893941791766],[356.0544615397621,-42.669366970756535],[356.0528076964934,-42.66961048157071],[356.05260334250835,-42.66963025596302],[356.05115385869743,-42.669845417712615],[356.04950024534895,-42.66997117285635],[356.0478468246848,-42.67000618121208],[356.04619356790255,-42.66996666096279],[356.0445404708594,-42.669857100142316]],[[356.1817645786854,-42.75368687294978],[356.18010898029934,-42.75398330200364],[356.1784533837875,-42.754089654778795],[356.1767978071214,-42.753983010193465],[356.1751422634034,-42.753690384981184],[356.17471235976245,-42.75358549198632],[356.17348674986374,-42.75331376676462],[356.17183126664156,-42.75288611187851],[356.17017580337847,-42.752471169845975],[356.16955425997475,-42.75236929302186],[356.16852032141855,-42.75221753269781],[356.16686481390826,-42.752103543089945],[356.16520929779944,-42.75203746392623],[356.16355379199035,-42.75195110279649],[356.1618983554437,-42.75168522549889],[356.16024301890116,-42.75119752007268],[356.16014959985364,-42.75115205145575],[356.15858786450343,-42.750332279223905],[356.1580598230095,-42.74993593843381],[356.1569329730347,-42.74897462360323],[356.1566718787007,-42.748719957790385],[356.15539351279057,-42.747503987906676],[356.1552782546011,-42.74740153754887],[356.1539339645755,-42.7462879561781],[356.1536235066067,-42.74605849213045],[356.1521495026464,-42.74507181568322],[356.1519687011646,-42.744963705854296],[356.15031385359174,-42.74405283448488],[356.1499565746417,-42.74385552641171],[356.14865906176914,-42.74312953924795],[356.14787846268104,-42.74263923165469],[356.14700443059934,-42.74202068498989],[356.1462783878447,-42.74142305812967],[356.1453501372993,-42.740467229112134],[356.1451111476257,-42.74020701042578],[356.1440621807521,-42.73899099224417],[356.14369617093035,-42.73854031229349],[356.14301272444817,-42.73777496430242],[356.1420421797818,-42.73680095680986],[356.1417693082909,-42.73655885528975],[356.14038801934106,-42.73543240857023],[356.14027289788555,-42.73534263635528],[356.13879104109066,-42.734126403686666],[356.13873392893254,-42.734067924235724],[356.1377221276526,-42.73291031971496],[356.13712146617286,-42.73169441863787],[356.13708084485995,-42.7314751737208],[356.13690281000555,-42.73047867231999],[356.13697858196184,-42.72926304697685],[356.13708290041035,-42.72877050862504],[356.1372142836206,-42.72804748709725],[356.13744555002904,-42.72683192492388],[356.13759405647136,-42.72561632873679],[356.13751278066394,-42.72440063920507],[356.13709603199334,-42.72318481255815],[356.13708715489395,-42.72317176811489],[356.13608090672966,-42.72196873533724],[356.1354338395436,-42.7213297792637],[356.1348422668877,-42.72075255334905],[356.1337805767061,-42.719543971493295],[356.1337737039453,-42.71953643279281],[356.13303560702485,-42.71832044994843],[356.1326854109693,-42.717104636947305],[356.1326407774463,-42.715888960413686],[356.13280869794784,-42.714673379138965],[356.1331020375365,-42.7134578534726],[356.1333337797483,-42.71224229981112],[356.1334935490179,-42.71102671394987],[356.13354521307105,-42.70981108026605],[356.13355528306096,-42.70859542824371],[356.1335528148072,-42.70737977070673],[356.1337050728291,-42.706164181287136],[356.1337916903297,-42.70587241990104],[356.13405799524674,-42.70494867942765],[356.1348433532662,-42.703733363078],[356.13544816076103,-42.70311463999202],[356.1361230115317,-42.702518249278505],[356.1371033666061,-42.70182849947617],[356.13803230754155,-42.70130337598489],[356.13875821951126,-42.70093049926908],[356.1404128313727,-42.70030613826965],[356.1412833632193,-42.70008898004732],[356.14206726971884,-42.699888235415635],[356.14372161721946,-42.699575424050195],[356.14537591611077,-42.69931365860593],[356.1470302675724,-42.698940928826296],[356.1472020072159,-42.69887538228586],[356.14868483138684,-42.69816272309539],[356.14928825716675,-42.69766037894772],[356.1503398435271,-42.69648744109332],[356.1503664270958,-42.69644504526473],[356.1510547823117,-42.69522958966964],[356.1517290017231,-42.69401412598101],[356.15199544113835,-42.693512726281085],[356.15234038155126,-42.69279864095014],[356.1529876629352,-42.69158316245504],[356.1536508875662,-42.690522827148094],[356.1537488485844,-42.690367710596625],[356.1546298735219,-42.68915228464142],[356.1553057609794,-42.68842057245173],[356.1557998627978,-42.68793692377982],[356.1569601943227,-42.68706504669708],[356.15754880988504,-42.686721686852096],[356.15861436104416,-42.68618064256531],[356.16026834763926,-42.68564085893132],[356.1611810982127,-42.68550681631994],[356.16192219855316,-42.6853986733977],[356.16357596812946,-42.68536223069099],[356.1652296824765,-42.68549994584819],[356.1652864712742,-42.68550756600825],[356.1668833856359,-42.68570399878966],[356.16853710611514,-42.68588257543454],[356.17019085381787,-42.68598287056283],[356.1718446415421,-42.68590936050547],[356.17349845601376,-42.68565847258809],[356.17416140137976,-42.68550868566044],[356.1751522814099,-42.68524146247271],[356.17680609294257,-42.68475460561437],[356.17845987164384,-42.68434196265963],[356.178699753615,-42.68429333742723],[356.1801136329392,-42.68386027150607],[356.1814719887528,-42.683077781302174],[356.1816672345083,-42.681862129846856],[356.18138430240907,-42.680646467263436],[356.1810736040757,-42.67943080326306],[356.1808481010519,-42.67821514099809],[356.18076642836235,-42.67699948275131],[356.1808618230063,-42.675783829808225],[356.1811788768485,-42.674568182920375],[356.18176776141297,-42.673465780933],[356.18182100790517,-42.673352542466674],[356.182799350844,-42.67213690314021],[356.18342122469005,-42.671651094726634],[356.18455926618554,-42.67092125593847],[356.1850746026841,-42.670669622007416],[356.18672794320554,-42.67005562624165],[356.18833274984144,-42.66970552758698],[356.18838126794515,-42.669694538884734],[356.19003458604857,-42.66946813519514],[356.1916879139335,-42.669423529915015],[356.1933412671841,-42.66956796956545],[356.1939985242454,-42.66970518570214],[356.19499465966,-42.669894299292665],[356.196648120091,-42.67047351346046],[356.19746801200625,-42.670920494060674],[356.1983017100097,-42.671487957033236],[356.19905410600626,-42.67213595606425],[356.1999246457082,-42.673351496150296],[356.1999555884333,-42.6734281176358],[356.20045769133344,-42.67456707782575],[356.2006368143631,-42.67578270813011],[356.2005323059832,-42.67699837877026],[356.2001661030495,-42.678214085932986],[356.1999569107979,-42.67864823666012],[356.19960531147024,-42.67942981816093],[356.19884518516193,-42.680645573209276],[356.1983039501697,-42.68136990923691],[356.1978562982107,-42.681861350615264],[356.196709829529,-42.6830771367693],[356.1966506573668,-42.683155920625595],[356.1952705124877,-42.684292940027944],[356.19499722616814,-42.6846925618783],[356.1938425000967,-42.68550872435773],[356.19477122899985,-42.686724299009946],[356.19499759672993,-42.68682860683608],[356.1965201070281,-42.68793978142661],[356.196651632364,-42.688028003833146],[356.19785869135717,-42.68915528664693],[356.19830582947367,-42.68965760358433],[356.1988535768023,-42.690370820548935],[356.199813495506,-42.69158635061521],[356.1999602282164,-42.69174010019135],[356.2011121649215,-42.69280182344206],[356.20161453515595,-42.69309856927387],[356.20326871805923,-42.693816673641905],[356.2038428702994,-42.694017046212466],[356.20492286291466,-42.69430589183902],[356.2065770320864,-42.69479025499503],[356.20784648184855,-42.695231949680306],[356.2082312640458,-42.69537024887788],[356.2098856343844,-42.696210237719676],[356.2102496875018,-42.69644708712989],[356.2115402678645,-42.69754648690146],[356.2116560804304,-42.697662416506006],[356.21260811335134,-42.69887784176052],[356.2131954032351,-42.6998054607385],[356.21339189960884,-42.700093301955185],[356.21420834802507,-42.70130874831184],[356.2148507422696,-42.702233033465824],[356.2150804100034,-42.702524173976116],[356.21607411410463,-42.70373955940901],[356.2165060097065,-42.70427398843358],[356.2171232671285,-42.70495492041449],[356.21804045534475,-42.70617031074872],[356.21816140735336,-42.70635398918871],[356.21888013085106,-42.70738571716899],[356.21954759007747,-42.70860117050822],[356.2198173120946,-42.70912472650414],[356.2202116042075,-42.70981662106173],[356.2208911941185,-42.71103206282342],[356.22147343781216,-42.7120172802899],[356.2216268645095,-42.71224748234578],[356.22244315698936,-42.713462870395084],[356.22312947742444,-42.71452623806079],[356.22323745910467,-42.71467826011869],[356.22403308189513,-42.715893643902035],[356.22474304961446,-42.71710905240304],[356.22478575597165,-42.717195871634566],[356.225439654804,-42.71832446131374],[356.2260819558592,-42.71953988578968],[356.2264423948038,-42.72018557808102],[356.226896464885,-42.72075524288767],[356.2280982632184,-42.721859997416956],[356.22828987796885,-42.721970373779314],[356.229753551646,-42.72262225446637],[356.2314086722698,-42.7231103999876],[356.2316211853998,-42.723184705160705],[356.23306390388865,-42.72370649577854],[356.234366984502,-42.72439919686272],[356.2347194684483,-42.72467263176074],[356.23557149073946,-42.72561432171267],[356.2359865748284,-42.72682979208921],[356.2357904874168,-42.72804553672964],[356.2350562090985,-42.72926152026151],[356.2347235289555,-42.72966144097788],[356.23381863441034,-42.730477717324455],[356.23306978279254,-42.731174097625065],[356.2323987083256,-42.73169397761947],[356.23141596697656,-42.73270124875414],[356.2311935637403,-42.73291013281835],[356.2301875024505,-42.73412619595177],[356.2297623677136,-42.7346343696999],[356.2289894376785,-42.73534232519836],[356.22810830610206,-42.73605965955751],[356.2272648469593,-42.73655864028482],[356.2264538151331,-42.73696594798665],[356.2247991144244,-42.737625529690035],[356.2244618771374,-42.737775311993786],[356.22314444428,-42.73838994884396],[356.2223125747943,-42.7389917006352],[356.2214900969901,-42.73975970384852],[356.2212352488689,-42.74020770896034],[356.22070079497854,-42.741423536205495],[356.2202199567226,-42.742639344174556],[356.21983697098136,-42.74338397711263],[356.2196417670661,-42.743855180148955],[356.21893825812333,-42.7450710511076],[356.21818308065923,-42.74596520216458],[356.21792055230077,-42.74628701026656],[356.21652847822196,-42.74744355900837],[356.21644721104934,-42.747503089012014],[356.2148735469641,-42.74841617428669],[356.21417106560386,-42.748719360783944],[356.21321842742157,-42.74909709800665],[356.21156318666624,-42.74958552221459],[356.2099078626381,-42.74993584949039],[356.20990669636376,-42.74993604882503],[356.20825251515123,-42.750273933653546],[356.20659714147826,-42.7505894941953],[356.2049417545445,-42.750915825839456],[356.20384351632833,-42.75115289968739],[356.2032863724724,-42.75131470072756],[356.2016309983577,-42.75181784792391],[356.1999755884726,-42.75228595230305],[356.19959849463976,-42.752369201963404],[356.19832014133743,-42.752700152494036],[356.1966646280387,-42.75289475465897],[356.1950090735008,-42.752911956920585],[356.19335350135174,-42.75281576397926],[356.1916979289246,-42.752674662685614],[356.1900423670552,-42.752565849890885],[356.1883868176785,-42.75255672694018],[356.18673127520816,-42.752706675960745],[356.18507572646,-42.752983169060435],[356.1834201620428,-42.75332914574148],[356.1821831726497,-42.75358586767148],[356.1817645786854,-42.75368687294978]],[[356.06091938234755,-42.74765736847845],[356.0592637324798,-42.74777376236943],[356.0576087640317,-42.74755339356709],[356.05726691269365,-42.747437488809894],[356.055954585898,-42.74695664550992],[356.05480132517374,-42.74621908296541],[356.0543017047356,-42.745756038465245],[356.05366151772347,-42.74500213780642],[356.053124452164,-42.743785870371205],[356.05304874371063,-42.742570127840516],[356.05340162888785,-42.74135487383729],[356.0542967529232,-42.74014023292439],[356.05431350084126,-42.74012481477954],[356.0559710153115,-42.739012368483436],[356.05620457647143,-42.73892671736235],[356.0576273189763,-42.73846404436471],[356.05928282768326,-42.73829585546084],[356.0609376988725,-42.73844391140328],[356.062564659657,-42.7389336248845],[356.0625918898957,-42.738942864620086],[356.06424517354134,-42.73992467544109],[356.0645215490439,-42.74015133566656],[356.06547353153974,-42.74136797934504],[356.0658626552487,-42.742584036915254],[356.06582222705987,-42.74379965148101],[356.06533906279634,-42.745014808948056],[356.06424328786306,-42.74622932653351],[356.0642329610458,-42.746237209438085],[356.0625757203301,-42.74718704671679],[356.06171991072443,-42.747442320994864],[356.06091938234755,-42.74765736847845]],[[356.08576596065893,-42.737994683197606],[356.0841101717123,-42.738385382934226],[356.0824549776845,-42.73840082800299],[356.0808003796536,-42.73805838871616],[356.08004068088235,-42.73773513688969],[356.07914658020155,-42.73725538626031],[356.07824538090307,-42.736517839335214],[356.077494569318,-42.735437877404216],[356.07741022737457,-42.7353014099669],[356.0771331497635,-42.73408549581538],[356.07734036629637,-42.732870032329586],[356.0774994714124,-42.73258885917599],[356.07809762669064,-42.73165507761004],[356.0791575782816,-42.73076279952948],[356.07974211760927,-42.73044092776342],[356.0808138541937,-42.72997655817755],[356.082469374317,-42.72962550666813],[356.08412433210304,-42.729611361272255],[356.0857787370878,-42.729945103464075],[356.0868765981575,-42.73044719126644],[356.08743236861915,-42.73078597497479],[356.0883706519267,-42.731664103256705],[356.08901266817173,-42.732880293234494],[356.089083174433,-42.733498424989314],[356.08915023496206,-42.73409606348911],[356.0890818413973,-42.734367501882296],[356.0888452852046,-42.735311467233245],[356.0880286561081,-42.73652644308013],[356.0874225644334,-42.73706856117393],[356.0863085798021,-42.73774064706079],[356.08576596065893,-42.737994683197606]],[[356.0659781020013,-42.69915935379752],[356.0643237141965,-42.699296955304426],[356.06266993476555,-42.69912022056119],[356.0617000996863,-42.698816049004755],[356.061016901984,-42.69857215060661],[356.0595099025666,-42.697598037688316],[356.0593650457517,-42.69745379014687],[356.0585174489677,-42.69638130064232],[356.0581021550699,-42.69516518970874],[356.0581192329556,-42.69394955240385],[356.0585565498516,-42.6927343752691],[356.05937666268574,-42.69167870824716],[356.05952785953275,-42.69151977694833],[356.0610330070435,-42.690458407019385],[356.06140899454397,-42.690306146024994],[356.062688093573,-42.6898472988085],[356.0643423793986,-42.68963394292403],[356.0659959928892,-42.68976764249931],[356.0676489135096,-42.69027409746819],[356.067726419991,-42.69031272147035],[356.0693010025923,-42.69124427709413],[356.0696448106176,-42.69153030549854],[356.0706276302036,-42.69274693688937],[356.07095057116976,-42.69362393793991],[356.07107647022616,-42.69396303558918],[356.07107724239137,-42.69517869243502],[356.0709471134506,-42.69551854751592],[356.0706079739289,-42.69639388571629],[356.0695335034737,-42.6976084749043],[356.06928887635945,-42.69779307083956],[356.0676330990732,-42.698693557392446],[356.067208178624,-42.69882178762643],[356.0659781020013,-42.69915935379752]],[[356.1139529308133,-42.694506304206314],[356.1122985956293,-42.69479606597902],[356.1106446326686,-42.69475885114577],[356.1089910788635,-42.69438575510946],[356.1081136115626,-42.693993522901046],[356.1073380922438,-42.693570870311866],[356.10637347697883,-42.6927767014748],[356.1056863657712,-42.69179442089069],[356.1055429342723,-42.69156047989365],[356.1052146265679,-42.69034459861859],[356.1052706364735,-42.68912898102552],[356.10569107284977,-42.688074129065754],[356.10576593513275,-42.68791366408115],[356.1069922791276,-42.68669883848185],[356.1073468708371,-42.68648338434367],[356.1090013900941,-42.68587789493045],[356.1106554195985,-42.685658448645945],[356.1123091308321,-42.685703666208],[356.1139625505044,-42.68600863541204],[356.11561557204584,-42.68668854996204],[356.1156426458968,-42.686704324471556],[356.117106155005,-42.68792084428072],[356.1172677447331,-42.688189015608444],[356.1177964844399,-42.68913690132269],[356.11794402645944,-42.690352642585125],[356.1176289993567,-42.69156811665193],[356.11726347198686,-42.692149852832415],[356.11681965342615,-42.69278330110486],[356.11560774617755,-42.693768259071284],[356.1151679684933,-42.693997976966884],[356.1139529308133,-42.694506304206314]],[[356.0990838989432,-42.682141583482654],[356.09743047133406,-42.68196849360709],[356.09722458385164,-42.68182923784102],[356.0968096363964,-42.68061326725578],[356.0974333749806,-42.67989157719013],[356.09908727783125,-42.67967779529106],[356.100154734026,-42.68061576210617],[356.09972579387846,-42.681831103459345],[356.0990838989432,-42.682141583482654]],[[356.23302627448163,-42.675865620207524],[356.23137299425946,-42.676159337546366],[356.22971949833817,-42.67618004587571],[356.22806578931903,-42.67590053597046],[356.2277099622738,-42.67577565656935],[356.22641185982985,-42.675274643744636],[356.2253347276337,-42.67456087464759],[356.2247575510255,-42.674016606317856],[356.2241752389167,-42.67334562770102],[356.223550098379,-42.67213018758753],[356.22330361314505,-42.670914616047796],[356.22337761720934,-42.66969893534077],[356.22379574079696,-42.668483136719864],[356.2246931979771,-42.66726716892313],[356.2247531090052,-42.66721079353689],[356.2262375583951,-42.666050959623114],[356.22640552599654,-42.665950684297336],[356.228058255868,-42.66522891404066],[356.22971121547454,-42.66487329396066],[356.23042291117036,-42.66483369884626],[356.23136434972577,-42.664772731955026],[356.23191416002936,-42.664833090008976],[356.23301768726407,-42.66493775983532],[356.23467126179844,-42.66538375947748],[356.23597295954016,-42.66604699026174],[356.2363252223609,-42.6662616129698],[356.2375041194183,-42.667261946314184],[356.23797989727825,-42.66791073604463],[356.2383670572388,-42.66847719862021],[356.2387842579523,-42.66969265687006],[356.2388045882551,-42.670908302730666],[356.2384232867931,-42.6721241386579],[356.23798410692876,-42.672773515550375],[356.2375794723032,-42.67334018892438],[356.2363320659618,-42.67441787061629],[356.23611922595273,-42.67455651292105],[356.2346793445277,-42.675332527510534],[356.23330129781016,-42.67577340594375],[356.23302627448163,-42.675865620207524]]],"index":18,"temperature":8.0},{"color":"#ff9400","count_points":532,"count_polygons":9,"curves":[[[356.31745714543683,-42.72352049787828],[356.31629140826317,-42.724334271605784],[356.31580474870685,-42.72463999172212],[356.31415164897186,-42.725452308858834],[356.3138760331488,-42.72555267742265],[356.3124982182357,-42.726125507015155],[356.3108442530047,-42.726554435873744],[356.3094363929829,-42.726773255182735],[356.3091899457855,-42.72682497156526],[356.30753552696854,-42.72704665288589],[356.3058808499628,-42.72714273238659],[356.3042259367286,-42.727119367583356],[356.30257078981106,-42.72697288114484],[356.30141731008223,-42.72678170996689],[356.30091545233745,-42.72672096136836],[356.29926000147896,-42.726400674150874],[356.297604208929,-42.72588409620014],[356.29686669461853,-42.72557060265967],[356.29594820559174,-42.72523518690495],[356.29433456474464,-42.724357399526646],[356.29429179414166,-42.72433674199658],[356.29263510667937,-42.72325291340788],[356.2925053908639,-42.72314348062264],[356.2911531047669,-42.721929090012296],[356.29097772241613,-42.721730501007876],[356.29007306439365,-42.72071443313794],[356.28937310450084,-42.71949941909535],[356.28931901363376,-42.7193781254139],[356.2886116479665,-42.718284456646586],[356.2880528189551,-42.71706930632508],[356.28767415312404,-42.71585399130609],[356.28765836508967,-42.71578667996043],[356.28717856190514,-42.71463877981636],[356.2868484984417,-42.713423418549674],[356.28666687652424,-42.712207924161206],[356.28664528510876,-42.71099228703285],[356.28677798866426,-42.709776512373914],[356.287082362295,-42.70856058410829],[356.28759583625896,-42.707344467225056],[356.28764415241415,-42.70725923116265],[356.2881060917827,-42.706128350973465],[356.2889315316554,-42.70491194584318],[356.2892938371005,-42.70451052377591],[356.28994506726417,-42.703695361989226],[356.29094521624097,-42.70283225812002],[356.2914071472652,-42.70247835191586],[356.29259740037395,-42.7016661917086],[356.29342985243926,-42.701260792103724],[356.29425007961265,-42.700814469019825],[356.2959031286927,-42.70019352956041],[356.29654753216056,-42.70004213214104],[356.29755644913223,-42.699739347217864],[356.2992100225349,-42.6994348023851],[356.30086390831514,-42.69930514909537],[356.30251805205586,-42.69931450123723],[356.3041724480757,-42.69945416836634],[356.3058271220883,-42.699731955424554],[356.3069426181275,-42.70003150599177],[356.3074820380561,-42.700124151556544],[356.3091370226969,-42.70054010870547],[356.3107925414295,-42.70120712141446],[356.3108658783572,-42.70124290735584],[356.31244798345205,-42.701819811382045],[356.3136134509498,-42.702455504038404],[356.3141039646048,-42.70267453999075],[356.3156757946366,-42.703668820595404],[356.31576042036016,-42.70373170959801],[356.31712121003375,-42.704882814976685],[356.3174179738999,-42.70527412514916]],[[356.044580903533,-42.65187861919376],[356.0462343812902,-42.65160147539299],[356.0478875965778,-42.651437215763444],[356.0489779020158,-42.65139122538616],[356.04954062424565,-42.651355479719285],[356.05119340620934,-42.651386462559714],[356.0512685073578,-42.65139389704902],[356.05284600181426,-42.65150636136654],[356.05449833663226,-42.651754208255625],[356.05615025061206,-42.6522125711639],[356.0571088215378,-42.65261615691222],[356.0578016684042,-42.65292671513344],[356.0592059626131,-42.65383411094569],[356.059452316032,-42.6540431661613],[356.0604947151704,-42.65505115968971],[356.0611011742698,-42.656092209489174],[356.0612072635178,-42.65626757898176],[356.0617059857856,-42.65748376626112],[356.06192713139535,-42.65869965651199],[356.0619723650299,-42.65991535947948],[356.0618678918532,-42.66113090325974],[356.06160633577355,-42.662346279575395],[356.0611522481008,-42.66356144941023],[356.06108608855317,-42.663700880140816],[356.0606235431624,-42.664776537306714],[356.0597715519244,-42.66599127332159],[356.0594275367371,-42.6663752311558],[356.0585253389786,-42.667205572729095],[356.05777152034216,-42.66773446861195],[356.0562837132573,-42.66841875525238],[356.0561166765497,-42.66849024068683],[356.0544622289074,-42.669037204138895],[356.05280825562795,-42.6693462954401],[356.0511545518314,-42.669521989083336],[356.0495010344537,-42.669607482382936],[356.04799667605647,-42.6696248897511],[356.0478476552763,-42.669628011058286],[356.04775308592514,-42.66962460085979],[356.04619441029587,-42.66958771093162],[356.04454130187105,-42.6694876935455]],[[356.1801090831701,-42.7524345810789],[356.17845352845154,-42.75253615272638],[356.1767979958388,-42.75240798658289],[356.17660704318655,-42.75236997699881],[356.17514249695495,-42.75209634194106],[356.1734870367934,-42.75165723004521],[356.1718454366188,-42.751153906427724],[356.1718316136831,-42.75115007783414],[356.17017619009647,-42.750764549608284],[356.16852075369655,-42.75051090161249],[356.16686529423504,-42.75038801922799],[356.1652098283262,-42.750307582172724],[356.16355437926927,-42.75018950674517],[356.1623001422823,-42.74993682555776],[356.1618990148074,-42.74985402318508],[356.1602437812571,-42.74922638696919],[356.1594534116338,-42.74872059095387],[356.1585887741098,-42.748132199673094],[356.15785263584416,-42.74750457847536],[356.15693396508146,-42.746720572731114],[356.1564424422846,-42.74628858991052],[356.1552792149009,-42.745344288841395],[356.15491149210095,-42.74507255329142],[356.15362440608453,-42.74423569730511],[356.1529967342432,-42.743856392624814],[356.1519695662429,-42.74330052474983],[356.1507731418717,-42.742640110578016],[356.1503147670763,-42.74238226010386],[356.14882294389685,-42.741423870036336],[356.14866010996496,-42.74130175647101],[356.1473640677073,-42.74020775501104],[356.1470057352545,-42.73984677793081],[356.14620863726304,-42.738991722222494],[356.14535174022717,-42.737909889272096],[356.14523820708416,-42.73777574070683],[356.1441255604972,-42.73655970146033],[356.14369775213237,-42.736120506342715],[356.1428317371463,-42.73534358633106],[356.14204361968973,-42.73468372864499],[356.14134198046105,-42.734127383698784],[356.14038955581924,-42.73325837890758],[356.14003293708254,-42.73291123137317],[356.1391489902063,-42.73169523162472],[356.13873655524566,-42.73048679054443],[356.13873421448824,-42.73047941171118],[356.1386617701128,-42.72926372650215],[356.1387378619164,-42.7287049134615],[356.1388144685342,-42.72804813040752],[356.1390261646241,-42.726832557318914],[356.1392178023038,-42.72561697598392],[356.13926276021704,-42.724401337044746],[356.139048022623,-42.72318559631269],[356.13874234801807,-42.72258653976199],[356.1383486096107,-42.72196966276336],[356.1372311287909,-42.720753554803515],[356.1370891049707,-42.72060520255351],[356.1360466569074,-42.71953740792692],[356.13543597727823,-42.718611476003666],[356.1352512055058,-42.7183214152517],[356.13484034048395,-42.71710558294813],[356.13475413341047,-42.71588988936352],[356.1348969301134,-42.714674294220075],[356.13515369204504,-42.71345874761317],[356.1353533885844,-42.712243176192935],[356.1354415992731,-42.71146151573949],[356.13548465666355,-42.71102757544061],[356.13553043419006,-42.70981193836561],[356.1355761389906,-42.708596301252975],[356.13565090452306,-42.70738067641816],[356.1359206644448,-42.706165133652256],[356.1364837669268,-42.704949712469954],[356.1371015419609,-42.70423144003648],[356.137591051317,-42.70373451059409],[356.1387567742439,-42.70290313628886],[356.13945518251074,-42.702519595320446],[356.14041159061867,-42.70206361238288],[356.1420661731112,-42.70150250031201],[356.14290992481784,-42.70130523251493],[356.14372061271604,-42.701114507993466],[356.14537497357384,-42.70081929635896],[356.1470293295932,-42.70050593254094],[356.1485619043807,-42.70009146857552],[356.14868375232976,-42.70004693660131],[356.15033847768467,-42.69898894899066],[356.1504460381049,-42.69887638132365],[356.15138121721463,-42.697660995993964],[356.15199379155615,-42.69668919430851],[356.15211828228536,-42.69644554791405],[356.15273813019854,-42.695230063083244],[356.1533976772801,-42.694014585587],[356.15364939104114,-42.69356073566493],[356.1540689040883,-42.69279910739605],[356.1548144719997,-42.69158364435578],[356.1553046098169,-42.69089121855343],[356.1556947764286,-42.690368210026264],[356.1567902913598,-42.6891528205473],[356.15695934631725,-42.68899553657205],[356.15833699009266,-42.687937523152144],[356.15861370569934,-42.68776891950014],[356.16026780608854,-42.68704396769552],[356.1617588433058,-42.68672258675254],[356.16192173476054,-42.686689420607],[356.16357555889846,-42.68659233417161],[356.16522931198983,-42.6867105230211],[356.16532001972575,-42.68672322759884],[356.1668830420812,-42.68693360110405],[356.1685367851329,-42.68715246308846],[356.1701905548967,-42.6873048014149],[356.1718443656863,-42.687292209125424],[356.17349820620825,-42.68710375633175],[356.1751520539798,-42.68679707496881],[356.1754998541133,-42.68672445113796],[356.1768058945795,-42.68641374337],[356.17845970563405,-42.68612860603467],[356.1801134906579,-42.68600703772029],[356.1817672624279,-42.686056481396314],[356.1834210338932,-42.686332119255006],[356.18484175071626,-42.686724780816874],[356.1850748223032,-42.68677329505937],[356.1867286303865,-42.687119320342],[356.18838245359575,-42.687415889750234],[356.19003628999326,-42.687684544238934],[356.1913214065719,-42.68794021972871],[356.1916901459503,-42.687996853045476],[356.1933440363293,-42.68843026578808],[356.19498505410155,-42.68915559144101],[356.19499800154784,-42.689161947582036],[356.19653773232164,-42.69037109184021],[356.1966521220751,-42.69047481270934],[356.1976435851746,-42.69158662430708],[356.19830643252226,-42.69231656780835],[356.198764723429,-42.69280214423195],[356.19996071533495,-42.693662000658136],[356.20057742119815,-42.69401755698003],[356.20161490358623,-42.694413865297584],[356.20326904879926,-42.694894828813986],[356.20453117920965,-42.695232582984445],[356.20492320181137,-42.69532232714908],[356.20657739726397,-42.695804439218534],[356.20814903339567,-42.696447543417456],[356.20823169550675,-42.69648592447905],[356.20988619824453,-42.697574236214884],[356.20999366105,-42.69766280111065],[356.2111418291514,-42.69887819438347],[356.21154108874384,-42.69941186907653],[356.2120304172259,-42.7000936392786],[356.21281845446384,-42.701309102374836],[356.21319636985254,-42.70187643208853],[356.2136790301656,-42.70252454152684],[356.21460754441205,-42.703739956319886],[356.2148516378576,-42.704048039302464],[356.2156315602004,-42.70495533758044],[356.2165069709398,-42.70612207112794],[356.21654668069016,-42.70617074039875],[356.21743141850726,-42.707386144724765],[356.21813036404876,-42.70860159719551],[356.218162668919,-42.70866107605608],[356.21883628957096,-42.70981704332675],[356.21949635854224,-42.71103249921075],[356.21981872557365,-42.711589238140554],[356.2202422263919,-42.712247924466574],[356.22101012547887,-42.71346333784371],[356.22147475761386,-42.71421604288557],[356.2217939939923,-42.71467874088052],[356.2225407960645,-42.715894150937146],[356.22313103676396,-42.717013363779515],[356.2231888066148,-42.71710958967131],[356.2237730726004,-42.71832504670199],[356.2242179881389,-42.71954054932636],[356.224586457339,-42.72075607709465],[356.2247885657454,-42.7214940974879],[356.2249889978465,-42.721971591606604],[356.2255910931446,-42.72318703307759],[356.226445211406,-42.72432497351689],[356.22664031298797,-42.72440230729581],[356.2281004125252,-42.7248994553584],[356.2297553134321,-42.72502310461182],[356.23141031353856,-42.72526854663067],[356.23226348335356,-42.72561575162153],[356.2330659890005,-42.72635528796266],[356.2333144449535,-42.726830964178966],[356.2330671892211,-42.72787986861281],[356.2329911794264,-42.728046758284705],[356.2314133076556,-42.72920520154271],[356.2312908955363,-42.729263123492686],[356.229758960532,-42.72999255013822],[356.22893583788084,-42.73047972007341],[356.22810484206104,-42.73116257648597],[356.2276385453404,-42.7316958738149],[356.2265090422678,-42.73291195131743],[356.2264510920635,-42.73296565161541],[356.2250169377645,-42.73412814695168],[356.22479691025876,-42.73425553105191],[356.22314241320174,-42.735152598747476],[356.2227733719951,-42.73534457764832],[356.2214878440013,-42.73600926656675],[356.22077697159824,-42.736560886227636],[356.21983363511515,-42.737573277924035],[356.2197122447953,-42.73777687630008],[356.21925194772103,-42.73899267392424],[356.21896597904276,-42.74020841714094],[356.2187290135092,-42.741424144933426],[356.2183998117719,-42.742639899677876],[356.2181815243463,-42.743122492742124],[356.21791072079134,-42.74385570042507],[356.2171838588387,-42.74507156748875],[356.2165276177793,-42.74579146560836],[356.2160563351789,-42.74628754157708],[356.2148729238049,-42.747155091085475],[356.2142877653641,-42.74750367401401],[356.2132179296729,-42.748032314246835],[356.21156275649093,-42.74860957726861],[356.2111236506421,-42.74872011422778],[356.2099074926525,-42.749042357088],[356.2082521593574,-42.749355515606084],[356.2065967869799,-42.749606706244904],[356.2049413937768,-42.74983573027555],[356.2042083941289,-42.74993718057165],[356.20328600090835,-42.750105664650135],[356.20163060865417,-42.75042917701986],[356.19997519999924,-42.750756154651015],[356.19831976116984,-42.75102720214044],[356.1966642778742,-42.751148717498296],[356.19500876452776,-42.75113473044013],[356.1933532407856,-42.75104505977422],[356.1916977206386,-42.75094552713547],[356.1900422102706,-42.75089365501291],[356.18838670893786,-42.75093526204977],[356.1867312105995,-42.7511061349017],[356.18644761950407,-42.751154551955935],[356.1850757050667,-42.75141820643651],[356.1834201819241,-42.751802984694685],[356.18176463903797,-42.752167605050964],[356.18047237371815,-42.752370168282454],[356.1801090831701,-42.7524345810789]],[[356.0625771505172,-42.746457942760756],[356.06092065200386,-42.74701880268276],[356.0592649626887,-42.747163235314595],[356.0576100375079,-42.74692965206883],[356.0559560421146,-42.74625258891665],[356.05590558731245,-42.746220321026456],[356.05454530359276,-42.745003138284844],[356.0543041647307,-42.74458177068369],[356.05391527014353,-42.74378676961825],[356.05383553495045,-42.74257102303769],[356.0542575285972,-42.74135584477674],[356.05431107405235,-42.74128339861116],[356.05539178884834,-42.74014146547141],[356.05596948461164,-42.739752608961155],[356.05762598683026,-42.73911669997629],[356.05924161246446,-42.73893005970744],[356.0592815592306,-42.738925541951325],[356.05932575150524,-42.73893015116255],[356.0609363889338,-42.73910291901753],[356.0625904236074,-42.739690553833505],[356.0633287019462,-42.74015008725966],[356.0642430255853,-42.741035028627714],[356.06451565624553,-42.74136698576295],[356.06498679229287,-42.742583131677094],[356.0649393621045,-42.74379873866556],[356.06435616540995,-42.745013788144085],[356.0642350688921,-42.745147773558315],[356.06297765439666,-42.74622799846331],[356.0625771505172,-42.746457942760756]],[[356.08576734687017,-42.73712142456135],[356.0841114005129,-42.73762409532362],[356.0824562106554,-42.737649380327305],[356.0808017804186,-42.73721832864155],[356.0795702149498,-42.73651905318246],[356.07914848033397,-42.73613376266067],[356.0784983308835,-42.73530241593805],[356.07817714512504,-42.73408646372125],[356.0784302346648,-42.73287104057958],[356.0791556799963,-42.73188352691547],[356.07938987317715,-42.73165626342796],[356.08081242864984,-42.73083167802255],[356.08226337536547,-42.73044319181731],[356.0824681110606,-42.73039561117239],[356.084123065604,-42.73039620698098],[356.08433073424993,-42.73044500701423],[356.0857772976563,-42.73085209815241],[356.08705452281197,-42.731662998211284],[356.08743033473434,-42.732089406239375],[356.0879353087118,-42.73287939579737],[356.08813129017665,-42.734095216186695],[356.08779100244294,-42.73531058758369],[356.0874245280331,-42.73581037559219],[356.08671972961184,-42.736525340214094],[356.08576734687017,-42.73712142456135]],[[356.06763460544613,-42.69789167669975],[356.0659794751038,-42.698438652732044],[356.0643250742811,-42.69859293835864],[356.06267139152516,-42.69837641827046],[356.06101860553866,-42.69771399846795],[356.06084142985895,-42.69759947449705],[356.05957573170076,-42.6963824529913],[356.0593681077577,-42.69593169108868],[356.05906125926066,-42.69516623793844],[356.05907899897636,-42.693950601207966],[356.0593735135835,-42.69324431548086],[356.0596121898521,-42.692735524381725],[356.0608124511505,-42.691521163148124],[356.06103120396267,-42.69136690618797],[356.06268654194935,-42.690639754479356],[356.06434093333456,-42.690382680612615],[356.06599454295656,-42.69052888145383],[356.0676473455776,-42.69110895192503],[356.06832744868876,-42.69152898495769],[356.06929884760893,-42.692408180621676],[356.06958586929443,-42.69274590276566],[356.0701018048899,-42.693962072155564],[356.0700919880493,-42.695177718492346],[356.0695316686179,-42.696392816944744],[356.0692909845817,-42.6966546208181],[356.06813879339074,-42.69760707498515],[356.06763460544613,-42.69789167669975]],[[356.11395405620794,-42.693512293519014],[356.1122996222889,-42.69391012517287],[356.1106456719636,-42.693882165146896],[356.108992245315,-42.69342342569434],[356.1078689623463,-42.69277770450121],[356.1073396753844,-42.69229282527225],[356.10676519809823,-42.691561309949236],[356.1063898886933,-42.69034540034843],[356.1065248297529,-42.68912983555541],[356.1072620562244,-42.687914675422384],[356.10734519214634,-42.68783881735914],[356.1090001893341,-42.68686876929963],[356.1096909844828,-42.68670061983253],[356.110654408873,-42.686511261322444],[356.1123081619378,-42.68653998094809],[356.1130481016465,-42.686702747367136],[356.1139614918506,-42.68694392373003],[356.1156142311913,-42.68790167500686],[356.1156363393762,-42.6879199767446],[356.1164903143356,-42.68913613914594],[356.1166887235413,-42.69035191197663],[356.1163237212028,-42.69156735309391],[356.11560918774313,-42.69246426114508],[356.11525663916956,-42.69278237401831],[356.11395405620794,-42.693512293519014]],[[356.1949969562945,-42.683136825684045],[356.19334336751376,-42.683875613788935],[356.19168968561115,-42.68416713324321],[356.1900359647713,-42.6842085096657],[356.18838222978184,-42.684071424086035],[356.1867284927472,-42.68370228899692],[356.1855296775489,-42.683077806967006],[356.185074768865,-42.6828556821459],[356.1839055242975,-42.681862157913564],[356.1834210987503,-42.68134241244292],[356.1829279517364,-42.680646495081966],[356.1822796742274,-42.67943083002793],[356.1818976335792,-42.67821516706211],[356.18176761018805,-42.67728212113002],[356.1817221937138,-42.676999507555365],[356.1817676612058,-42.67599467996841],[356.18177457028065,-42.675783852909206],[356.18204817857026,-42.67456820268869],[356.18266433652116,-42.67335255702942],[356.18342121329397,-42.67252817301607],[356.1838053877066,-42.67213691123982],[356.185074611124,-42.67128863377267],[356.18582165842656,-42.670921245370586],[356.18672796324097,-42.67055326700204],[356.18838129573544,-42.67011002293839],[356.19003462536983,-42.66988862820737],[356.1916879646036,-42.66984529519179],[356.1933413279007,-42.66998166929563],[356.1949947368386,-42.670339407271825],[356.1964232603145,-42.67092060962666],[356.1966482303127,-42.67102455698314],[356.19824540267746,-42.6721360575066],[356.19830187009154,-42.67219422567564],[356.19928757671477,-42.67335158136272],[356.19980374595383,-42.67456716827976],[356.1999561471131,-42.675633648984785],[356.199981697592,-42.6757827997638],[356.19995625124244,-42.67604470899454],[356.1998820576473,-42.67699846914596],[356.1995388690494,-42.67821417117524],[356.1989117623536,-42.67942990883283],[356.1983037023736,-42.68027696816269],[356.1980001501479,-42.680645677542444],[356.19678882776884,-42.68186147219773],[356.19665042731043,-42.68200621220503],[356.1950718614315,-42.68307730293274],[356.1949969562945,-42.683136825684045]],[[356.23467884989464,-42.67472379128464],[356.23302583960077,-42.67531229501622],[356.2313725532999,-42.67557860526527],[356.229719048455,-42.67556602606676],[356.22806532144085,-42.67523786291738],[356.22659501318327,-42.674560417134096],[356.22641130072566,-42.674451705818306],[356.22515723421185,-42.67334528230669],[356.2247567079337,-42.6727249832362],[356.2244062521155,-42.67212989157993],[356.2240931357263,-42.67091434499969],[356.2241733437032,-42.6696986616301],[356.22467347902744,-42.66848283129502],[356.2247538688816,-42.66837513889693],[356.2256582539482,-42.66726682521614],[356.2264060290531,-42.66669133004351],[356.22759559401237,-42.66605045539461],[356.2280586891634,-42.66584280433919],[356.229711610607,-42.66541277392026],[356.23136475080366,-42.66530112523647],[356.2330181142022,-42.66548116050363],[356.2346717695002,-42.66600876679592],[356.2347478577896,-42.66604753510678],[356.2363258493599,-42.66700896435773],[356.2366244647292,-42.667262350564776],[356.2375926797231,-42.668477560658],[356.23798130867306,-42.669541194150476],[356.2380377354098,-42.66969300868564],[356.23806184702664,-42.67090865290898],[356.23798269242377,-42.67113963440779],[356.2376548572742,-42.672124498314325],[356.2367267625513,-42.673340581457836],[356.23633144853704,-42.67368210676313],[356.23498829800144,-42.67455701779788],[356.23467884989464,-42.67472379128464]]],"index":19,"temperature":9.0},{"color":"#ff8600","count_points":479,"count_polygons":9,"curves":[[[356.3174552478344,-42.72263682884943],[356.31687980711973,-42.72311793781819],[356.3158031458918,-42.72388423991574],[356.3149858754712,-42.72433576403867],[356.3141502642021,-42.724791070658924],[356.3124967875101,-42.72543352530254],[356.31204653120403,-42.725554726232446],[356.31084301874847,-42.72594968521099],[356.3091888641271,-42.72628797630769],[356.3075343895855,-42.72647441846688],[356.30587969069967,-42.726551557438185],[356.30422479484525,-42.72652902459578],[356.30256970346153,-42.726403392467255],[356.3009143945884,-42.72615859733553],[356.2992587876669,-42.72574604596215],[356.2987440295369,-42.7255687477989],[356.29760305995586,-42.725255381969134],[356.29594698346716,-42.72455652414936],[356.29557872497605,-42.724356201096874],[356.2942907250613,-42.72373412428333],[356.29341568860013,-42.72314261959361],[356.2926340213027,-42.7226317491437],[356.29182313150926,-42.72192846483423],[356.2909764134269,-42.7209697111398],[356.2907485700304,-42.72071380918035],[356.289844070239,-42.71949898735732],[356.28931721730874,-42.71831757020143],[356.28929539712453,-42.71828383374672],[356.288603335823,-42.717068807797595],[356.28813369861524,-42.71585357685587],[356.28782420923505,-42.71463819978933],[356.28765466122906,-42.713564630120565],[356.2876122077747,-42.713422734262764],[356.2874063205572,-42.71220726286464],[356.28739015525747,-42.710991621008226],[356.28756282385467,-42.70977580957458],[356.2876478615253,-42.70948488297592],[356.2878067335865,-42.70855993372759],[356.28817815100183,-42.7073439421512],[356.28881945680416,-42.70612770416069],[356.2892955022658,-42.70549408068574],[356.2896372915886,-42.70491130088401],[356.29078026954676,-42.703694590907986],[356.2909464524675,-42.70355117853965],[356.2923478863427,-42.702477471006944],[356.29259851836423,-42.70230645310775],[356.2942511610775,-42.701424517938946],[356.2947161983866,-42.70125956300593],[356.2959041043874,-42.700735773105805],[356.29755744120314,-42.700282652423816],[356.29916511207745,-42.70003954492104],[356.29921112499466,-42.70002988141966],[356.30086491666174,-42.69984171209717],[356.30251902215366,-42.699823492791886],[356.3041734330295,-42.69996382539205],[356.3045683106633,-42.700034015902546],[356.3058279763324,-42.70016796136911],[356.3074827240008,-42.700469555076005],[356.30913785816387,-42.70095522600597],[356.30984640775597,-42.70124402585362],[356.3107931508697,-42.701505969552656],[356.3124488018664,-42.70221594713026],[356.31288948833435,-42.702456316559754],[356.31410464347925,-42.70299894066079],[356.31516455630606,-42.70366940401736],[356.31576122809304,-42.70411281771044],[356.3166720979823,-42.70488333327043],[356.3174192495957,-42.70586852210096]],[[356.04458032247294,-42.65213706251977],[356.0462339030291,-42.65181674589536],[356.0478871786453,-42.651627613323576],[356.0495402026427,-42.651549906945604],[356.05119299981754,-42.65157620324931],[356.0528455572461,-42.651716536655755],[356.0544977989663,-42.65201163303771],[356.0561495417361,-42.65255634265749],[356.05628944894397,-42.65261524809102],[356.05780092334476,-42.653292749253175],[356.0586377781805,-42.65383349171614],[356.05945135027895,-42.65452389006707],[356.0599960597564,-42.655050621973864],[356.06081957530716,-42.65626716351365],[356.0610993461059,-42.657014366106445],[356.0613005568956,-42.657483333506924],[356.06157970611014,-42.65869928642533],[356.06164717890846,-42.65991501324076],[356.06153604344405,-42.661130549615024],[356.06123840490255,-42.66234588658216],[356.06108799603186,-42.662738922155484],[356.0608270722539,-42.66356110085934],[356.0602239061179,-42.66477610697343],[356.05942871294315,-42.66578997199053],[356.05925764865066,-42.66599071587971],[356.0578394730391,-42.66720482080582],[356.0577725032483,-42.66725180809904],[356.0561173761298,-42.668151151128896],[356.0553099340558,-42.668417667477314],[356.05446291804543,-42.66870743752478],[356.05280881475767,-42.66908210931177],[356.0511550453753,-42.669291690681064],[356.0495015071414,-42.66938962332427],[356.047848147093,-42.6694040836451],[356.04619495205185,-42.66934399994398],[356.04454193709483,-42.66920531687008]],[[356.18010916797056,-42.75115785074139],[356.178453648838,-42.7512433006411],[356.1775008576828,-42.75115437653486],[356.17679815299687,-42.751096293792116],[356.1751426936155,-42.75075402499758],[356.1734872740529,-42.750287387967916],[356.17235625994624,-42.74993830404759],[356.17183188522506,-42.749791653572245],[356.1701764986281,-42.749402904892634],[356.16852110338874,-42.749130250101906],[356.1668656912428,-42.748970003889255],[356.1652102815137,-42.74882980344664],[356.16431787942685,-42.74872153647073],[356.16355489851344,-42.748631903742286],[356.1618996136476,-42.74819081430775],[356.1604509460322,-42.7475051453101],[356.16024448662995,-42.747402476601636],[356.1586952789229,-42.746289112400476],[356.15858956795216,-42.74621199272749],[356.15718215260557,-42.74507310997962],[356.1569347712651,-42.74488870464543],[356.1555038771982,-42.74385704647244],[356.1552799736355,-42.743718756066386],[356.15362512608385,-42.74277653898875],[356.1533805354039,-42.74264083986929],[356.15197029988195,-42.74188997582401],[356.15117338977063,-42.74142456996111],[356.15031559229465,-42.74087302889584],[356.14942624138365,-42.740208397848846],[356.14866112514653,-42.73953143913006],[356.14809843819177,-42.7389923317374],[356.1470611729054,-42.737776344583374],[356.14700701694966,-42.73771097991221],[356.1460137336543,-42.736560344676185],[356.14535306454536,-42.73579688929442],[356.14490542586987,-42.73534431440841],[356.143698988512,-42.73422827071074],[356.14357840283316,-42.734128196310564],[356.1421853940874,-42.73291203877111],[356.1420449226213,-42.73276778468925],[356.1410632260022,-42.73169596636565],[356.14043060494635,-42.730480070562784],[356.14039165582307,-42.730286745837375],[356.1401939766409,-42.72926432364508],[356.1402452381759,-42.72804868674656],[356.14039390794306,-42.727099542662486],[356.14042972527346,-42.7268331006575],[356.1406271423224,-42.72561751917302],[356.1407449558693,-42.72440190726263],[356.14068693954306,-42.72318622876528],[356.1403973144095,-42.722278084475604],[356.14026552377504,-42.72197041183678],[356.13934184783295,-42.72075439834647],[356.13874416116806,-42.7201133310591],[356.1381852151748,-42.71953828436904],[356.1372761894069,-42.71832226015746],[356.13709116560955,-42.71789289159076],[356.13676190636704,-42.71710639243316],[356.1365966702425,-42.71589066756898],[356.13668504335715,-42.714675047639],[356.13689231500274,-42.71345947666791],[356.13705967226485,-42.712243888960415],[356.1370957268317,-42.71188835038238],[356.1371718952409,-42.711028278463104],[356.13723060726295,-42.70981264600246],[356.1373255024541,-42.70859702829133],[356.13750050560515,-42.70738144310352],[356.13793639531406,-42.70616596301139],[356.1387552607295,-42.70496878892233],[356.1387695812509,-42.70495063906836],[356.14032741884665,-42.70373558811056],[356.1404104441762,-42.703687409802974],[356.1420652113562,-42.70291818572226],[356.1433437863131,-42.702521044012485],[356.143719766557,-42.70241092003342],[356.145374206791,-42.70204412515009],[356.14702859985437,-42.70172343588789],[356.14868299861047,-42.70136298827137],[356.14885871139614,-42.701307216644615],[356.15033755211925,-42.70068398546263],[356.1511648813348,-42.70009224666234],[356.15199248644007,-42.69920212123776],[356.15220648402396,-42.69887688515642],[356.15290249556307,-42.69766142058381],[356.153555686944,-42.696445940401986],[356.1536480524133,-42.69627786496307],[356.1542004279784,-42.69523045432437],[356.1549058959878,-42.69401498015914],[356.1553034557236,-42.693367957520024],[356.15567253632645,-42.69279951689995],[356.1565252310515,-42.69158406932242],[356.1569584466119,-42.69104359049211],[356.157574874761,-42.69036866127571],[356.15861302080884,-42.68942871587333],[356.1590124964628,-42.68915332942333],[356.1602672699162,-42.68843307924258],[356.1618440737037,-42.68793825947675],[356.1619212933598,-42.68791780075872],[356.16357517055525,-42.68775960591733],[356.1652289613352,-42.68785625501097],[356.1658047781707,-42.687938962403635],[356.1668827167073,-42.688098088731216],[356.16853648246223,-42.6883498577692],[356.1701902775751,-42.68853116128275],[356.17184411483976,-42.688549634588796],[356.17349798259573,-42.688397439505195],[356.17515185778655,-42.68813896590123],[356.1762431569849,-42.68794016127087],[356.1768057258337,-42.6878250885497],[356.178459568694,-42.68760231599775],[356.18011338801864,-42.68755558551386],[356.18176719738386,-42.68769733683323],[356.18296770678694,-42.687940431653026],[356.1834210119824,-42.68801762080928],[356.18507484382746,-42.688351122652804],[356.18672869392105,-42.688696503191096],[356.18838255960185,-42.688999819092736],[356.1892730863882,-42.68915598399972],[356.1900364391085,-42.689278186534956],[356.1916903412328,-42.689621332549734],[356.1933442998814,-42.69022487943343],[356.19361983651027,-42.6903713672411],[356.19499835823024,-42.69121769363873],[356.19541879036694,-42.69158686239839],[356.1966525855243,-42.69279022864445],[356.1966638451029,-42.692802390682964],[356.1981269149794,-42.69401787935865],[356.19830684168824,-42.694120534230194],[356.1999610274297,-42.69489329140004],[356.20089895754546,-42.69523316707583],[356.20161518596956,-42.69542193586474],[356.2032693248997,-42.6957948397578],[356.20492349600886,-42.696204671195275],[356.205670139321,-42.696448032490004],[356.2065777406633,-42.696758110068316],[356.20823212038607,-42.69758454200106],[356.20834977190617,-42.69766315778925],[356.2097627446911,-42.69887850896948],[356.20988679328616,-42.69901359888918],[356.2107775615639,-42.70009393544294],[356.21154188441153,-42.70121985292391],[356.21160294443996,-42.70130939824149],[356.21246220669605,-42.702524846816154],[356.21319715467206,-42.70355780107154],[356.21334151611256,-42.70374028390981],[356.21434461943096,-42.70495568192912],[356.2148524157459,-42.7056244280099],[356.215293474466,-42.70617108588202],[356.2161544273502,-42.70738650646198],[356.2165079351604,-42.70797578677323],[356.2169103308793,-42.7086019505192],[356.2176150218465,-42.70981740450204],[356.21816386261304,-42.71084388510349],[356.21827337324265,-42.71103286790825],[356.21902714029494,-42.71224829870937],[356.21974593367565,-42.71346373538685],[356.2198198722621,-42.71358843577446],[356.22053768488905,-42.71467914455576],[356.2212222494434,-42.715894582820724],[356.2214760881821,-42.71643258450607],[356.22184596512005,-42.71711003694177],[356.22233643739247,-42.7183255319303],[356.22265501033695,-42.71954108241942],[356.2228328457951,-42.72075667937707],[356.2229116187055,-42.72197230943921],[356.2229106414839,-42.723187966311656],[356.2228830322526,-42.72440363214206],[356.2229247421163,-42.72561927465032],[356.22307904061284,-42.726834879143865],[356.22313742485676,-42.72720020574163],[356.2233563584753,-42.728050441617874],[356.2235477662634,-42.72926603283514],[356.22338069119047,-42.730481746385514],[356.2231398296979,-42.73103424527053],[356.222873231384,-42.73169757462313],[356.22169908099977,-42.73291361987028],[356.2214860718099,-42.73305886994193],[356.22000321223504,-42.734129816671526],[356.21983172432743,-42.734244412603736],[356.2185683680605,-42.73534591076456],[356.2181775256425,-42.73581739775409],[356.21777821754455,-42.73656180058156],[356.21745822271885,-42.737777550002804],[356.21736827979043,-42.73899323242565],[356.21733411812437,-42.74020889871167],[356.2172523248914,-42.74142457866597],[356.2170095699984,-42.74264030456189],[356.216526573096,-42.74378550256183],[356.2165002148514,-42.74385610508617],[356.21572701466334,-42.74507197593936],[356.21487230588525,-42.745904560793186],[356.21442602581527,-42.74628798144113],[356.2132174675735,-42.7470437587228],[356.21220282550956,-42.74750420033905],[356.21156238237126,-42.747760781606104],[356.2099071587038,-42.748235869153476],[356.2082518430724,-42.7485390595898],[356.2068288292212,-42.74872103891413],[356.2065964801918,-42.748756162077726],[356.20494109645887,-42.74894556786821],[356.2032856956128,-42.74911222515572],[356.20163028908263,-42.74929036814526],[356.1999748772654,-42.74948517997094],[356.1983194482845,-42.74965026391375],[356.19666399038357,-42.7497151193381],[356.19500851068244,-42.74967452497078],[356.1933530283859,-42.749601600725846],[356.19169755126467,-42.74953935772463],[356.19004208277255,-42.74953375141845],[356.18838662080174,-42.749620975128586],[356.18673115900606,-42.74982796066919],[356.18612892886574,-42.74993890139232],[356.18507568780166,-42.750155175325595],[356.1834201982456,-42.75055003387271],[356.18176468898787,-42.750910150884344],[356.1801285890112,-42.751154500285985],[356.18010916797056,-42.75115785074139]],[[356.0609219038195,-42.746389196876],[356.05926616176527,-42.74656814704337],[356.05761129878874,-42.74631187138969],[356.05739295424786,-42.74622197184418],[356.0559577269166,-42.745437995101014],[356.05546997979326,-42.74500417777865],[356.054733155573,-42.74378769392074],[356.05464465276265,-42.74257193802085],[356.05517382636407,-42.74135687716878],[356.05596778679165,-42.74057364738778],[356.0567008835149,-42.74014292526824],[356.05762467412256,-42.73975981874226],[356.0592803194517,-42.73954098186072],[356.0609351011778,-42.739750753247414],[356.0619491995155,-42.74014862806804],[356.0625888296929,-42.74050330167799],[356.0635277159069,-42.741365952633295],[356.06410520524344,-42.7425822137835],[356.06404836870803,-42.74379781057104],[356.0633329199864,-42.74501271650677],[356.0625787544464,-42.7456402454038],[356.0613775069363,-42.746226299429765],[356.0609219038195,-42.746389196876]],[[356.08411269673815,-42.73682101535695],[356.08245751403564,-42.736855001089154],[356.0813166713306,-42.736520629999646],[356.08080331361674,-42.73629882025573],[356.0796803081948,-42.73530349702612],[356.07922838303836,-42.734087428761235],[356.0795988152915,-42.732872110167634],[356.0808109094208,-42.73174296942826],[356.0809966065779,-42.73165771757162],[356.0824667711033,-42.73121245307805],[356.0841217229486,-42.73122822482119],[356.0854258243302,-42.73166160986503],[356.0857757199259,-42.731846205414264],[356.0867580716614,-42.73287840361764],[356.0870609051864,-42.73409431638164],[356.0866159115484,-42.73530959574187],[356.0857689219807,-42.73612913698926],[356.08499041806346,-42.73652386028927],[356.08411269673815,-42.73682101535695]],[[356.06598083372876,-42.697725534068],[356.06432641259187,-42.69790017657912],[356.0626728352199,-42.69763926912114],[356.0625804183318,-42.697601327760914],[356.06102060625983,-42.69670612080414],[356.06067711169266,-42.69638364192313],[356.06004749988375,-42.69516730748191],[356.0600619094869,-42.69395166699896],[356.06069242535705,-42.69273669023302],[356.06102914239875,-42.692405611889804],[356.06244794442006,-42.69152290723434],[356.06268502294023,-42.69141553342413],[356.0643395295825,-42.6911094929265],[356.0659931226961,-42.691274523960054],[356.06666211775087,-42.691527294005034],[356.0676456236611,-42.69202577047246],[356.068467690018,-42.69274478227967],[356.0691221435443,-42.69396109545661],[356.0691011989452,-42.69517673056334],[356.0683795345757,-42.696391661708724],[356.0676362938142,-42.69699289078348],[356.0663250301257,-42.697605229137636],[356.06598083372876,-42.697725534068]],[[356.1123006731737,-42.693003253363365],[356.1106467363234,-42.692984310270035],[356.10998007843,-42.69277908731845],[356.1089935601952,-42.69233860592943],[356.1081185150879,-42.69156221384539],[356.1076004799944,-42.690346213617154],[356.1078487958293,-42.68913072277883],[356.1089989052376,-42.68792837852786],[356.10902378400993,-42.687915841345685],[356.1106533272407,-42.687423876599816],[356.11230711823026,-42.68744084656799],[356.11387265090764,-42.68791891095194],[356.113960339292,-42.68796214204571],[356.11514782114824,-42.689135340309214],[356.1154448100008,-42.69035117447624],[356.1149293474516,-42.69156652104532],[356.1139552968926,-42.69241641545944],[356.11308296950864,-42.692781049402015],[356.1123006731737,-42.693003253363365]],[[356.1916895702005,-42.68320691807896],[356.19003587049536,-42.68320079745397],[356.1893709105733,-42.68307769930527],[356.18838215407175,-42.68294000250606],[356.1867284413704,-42.68242671362055],[356.1857580625601,-42.681862148184294],[356.18507474945653,-42.68143270582496],[356.1842151354705,-42.68064650243165],[356.1834211216755,-42.679578498762275],[356.1833253315426,-42.67943084299305],[356.182726463681,-42.67821518087453],[356.18245619881884,-42.676999521210234],[356.18246654549904,-42.67578386559339],[356.18277592494775,-42.6745682141834],[356.1834212009449,-42.673478563282266],[356.18349235669507,-42.67335256530923],[356.18470730031186,-42.672136911017446],[356.1850746193427,-42.671891414216454],[356.1867279828649,-42.67104067992393],[356.18708018129007,-42.6709212210376],[356.18838132337913,-42.67052330929649],[356.1900346600737,-42.67025973940873],[356.19168800806676,-42.67020706725513],[356.19334138428536,-42.67036584772401],[356.19499481401834,-42.67078451525727],[356.19532958557403,-42.67092072043333],[356.19664833142554,-42.6715300530449],[356.19751925042505,-42.672136143746826],[356.19830203970116,-42.6729425125081],[356.1986505077176,-42.67335166304505],[356.19925741683323,-42.67456724099643],[356.1994631036458,-42.6757828696544],[356.1993571882776,-42.676998539413354],[356.1989569859544,-42.678214247194376],[356.19830348315526,-42.67931004136213],[356.19822707277865,-42.679429994242454],[356.19720475922304,-42.680645770071735],[356.1966502633035,-42.68118656067301],[356.19563577917705,-42.68186159239216],[356.19499681202524,-42.68230512673419],[356.19334322735847,-42.682921067858295],[356.19229333079096,-42.683077531431394],[356.1916895702005,-42.68320691807896]],[[356.2330254159575,-42.67477325853039],[356.2313721565632,-42.67505610414163],[356.22971864173644,-42.67501090872401],[356.2280648656049,-42.67459223212838],[356.2279946764278,-42.67455989283189],[356.2264107374536,-42.673622611148964],[356.22609601678863,-42.67334494426947],[356.2252180426295,-42.67212960502197],[356.22487055566705,-42.67091407280878],[356.2249480685446,-42.66969838985235],[356.22547345974056,-42.66848254709052],[356.22640654972895,-42.66745789795116],[356.2266325168051,-42.66726647001334],[356.2280591124314,-42.66644247627441],[356.229357872923,-42.66604977715984],[356.22971200574636,-42.66595225388999],[356.23136514378064,-42.66581883742527],[356.2330185411478,-42.666024561182276],[356.2330920828534,-42.66604825074266],[356.2346722548031,-42.666606188207666],[356.23570674126677,-42.66726276513663],[356.23632654851014,-42.66784229530407],[356.2368588443988,-42.66847789892822],[356.23736350943125,-42.669693322264],[356.2373887860563,-42.67090896609113],[356.2369333380526,-42.67212483133956],[356.23633076354724,-42.672865807593894],[356.2358516111587,-42.67334097774579],[356.2346783625792,-42.674124049063636],[356.2336120969502,-42.674557617166016],[356.2330254159575,-42.67477325853039]]],"index":20,"temperature":10.0},{"color":"#ff2500","count_points":273,"count_polygons":4,"curves":[[[356.31744148933967,-42.716229066748724],[356.31728967711035,-42.717039182608005],[356.316879358386,-42.71825531311691],[356.31612962940756,-42.7194718321141],[356.3157946259953,-42.71986666933356],[356.3150453058917,-42.720688727481466],[356.31414312222165,-42.72138049615319],[356.31320965579795,-42.72190645809133],[356.31249031059997,-42.722300723602984],[356.3108368290868,-42.72291674809982],[356.30986295454335,-42.72312582078137],[356.30918290583844,-42.72332978437485],[356.30752873245154,-42.72362807289564],[356.3058741915049,-42.72374704826496],[356.30421937359085,-42.72372613361855],[356.30256429935537,-42.723570283913816],[356.30090893435096,-42.723255439330714],[356.3004903749237,-42.72313568210318],[356.2992535403491,-42.722915924856295],[356.29759788245053,-42.72242211020342],[356.2965270216243,-42.721923965852795],[356.29594181520235,-42.72168635070115],[356.294345314109,-42.7207104200692],[356.2942852862533,-42.72066820328589],[356.292911898415,-42.71949612783474],[356.2926279594202,-42.71916228707518],[356.2919117502633,-42.71828141267762],[356.2912666230197,-42.71706635879584],[356.2909681278753,-42.716153682191454],[356.2908186752872,-42.71585111863391],[356.2903903092775,-42.71463585864776],[356.2901590029144,-42.713420415652195],[356.2900762380121,-42.71220483552339],[356.2901317413071,-42.71098912804922],[356.2903484358374,-42.70977327187343],[356.2907875297977,-42.70855720936734],[356.2909545176255,-42.70824101610139],[356.2912932981895,-42.70734108312286],[356.292087157232,-42.7061246847347],[356.2926042232944,-42.70557340151661],[356.2933068874782,-42.70490787758924],[356.29425612068076,-42.704222051861535],[356.29526253823934,-42.70369034909346],[356.29590883365177,-42.70336393356059],[356.2975620041796,-42.70278143283435],[356.29921488131635,-42.702470807555436],[356.299215646944,-42.7024705924536],[356.30086927136534,-42.70215883744312],[356.3025232332798,-42.7020328925939],[356.30417747752733,-42.7020565330072],[356.3058320156168,-42.70222952808423],[356.30694558899216,-42.702462815169724],[356.30748680697513,-42.70252543362723],[356.30914165621334,-42.70284228754678],[356.3107970267944,-42.703406520013715],[356.31136680347737,-42.70367366681434],[356.31245284023646,-42.704170558829404],[356.31357455467975,-42.70488686018088],[356.31410944788837,-42.70529463429627],[356.31503049313966,-42.70610086902732],[356.3157674030551,-42.707026161290024],[356.31600594195874,-42.707315411227974],[356.3167626985733,-42.70853019749348],[356.3171920361794,-42.709745357951824],[356.3174301579661,-42.71095069709686]],[[356.044575992955,-42.6540626736744],[356.0454430944713,-42.65381832192275],[356.04622997621635,-42.65358419041639],[356.0478835758773,-42.65326887831618],[356.04953673811985,-42.653147566861655],[356.05118950350953,-42.65320855035911],[356.0528418359604,-42.65347576639834],[356.0539670324197,-42.65382829494356],[356.0544936722488,-42.65398736016172],[356.0561449128044,-42.65480106341655],[356.0565124858209,-42.65504680519901],[356.0577950275797,-42.656189079172975],[356.0578686010519,-42.65626395824122],[356.0587388685198,-42.65748056611029],[356.05916625792526,-42.6586966865793],[356.05930832511484,-42.659912495872796],[356.05921576730816,-42.66112805017863],[356.0588751294576,-42.66234333425754],[356.0582060412707,-42.66355825783522],[356.05777896511404,-42.6640784931084],[356.0571617915489,-42.66477276355768],[356.05612263366004,-42.6656026844704],[356.0554792776801,-42.6659865468707],[356.05446748137615,-42.66652370227814],[356.0528130729524,-42.66707005910524],[356.05212792894304,-42.66719840026556],[356.0511590784762,-42.66740969344937],[356.0495054742484,-42.66756114613657],[356.0478522632766,-42.66752989474569],[356.0461994462343,-42.66732220122672],[356.04560141116025,-42.667190716231836],[356.04454694779616,-42.66697781468579]],[[356.18176496667917,-42.74391853163778],[356.18010963520464,-42.7441223710391],[356.1784543102448,-42.74413937127056],[356.1767990077042,-42.74396165544741],[356.1763043116154,-42.74386036228256],[356.17514373370784,-42.743653852502504],[356.17348848715443,-42.74328247569576],[356.17183327125866,-42.74285691088002],[356.171034686562,-42.742644221837956],[356.1701780775273,-42.74243380320813],[356.16852291689975,-42.741969175295715],[356.1669624415275,-42.74142802588716],[356.16686781135246,-42.74139638836196],[356.16521276070785,-42.740744262195896],[356.1641384480643,-42.74021191059098],[356.1635577997719,-42.739927410731525],[356.16192832033187,-42.73899584663055],[356.16190292893634,-42.7389813718963],[356.1602481137765,-42.738021925713596],[356.1598488846017,-42.737779767956276],[356.15859337632946,-42.7369983424913],[356.1579345347431,-42.73656368953431],[356.1569387555531,-42.73583373129938],[356.15633189931117,-42.735347655290866],[356.1552843425887,-42.734356939108196],[356.1550601118597,-42.734131683120815],[356.1539563499444,-42.73291574124301],[356.153630179415,-42.73253347144048],[356.152877803758,-42.73169979563928],[356.151976149935,-42.730639933500775],[356.1518324055674,-42.73048384925619],[356.15078706052725,-42.72926789337638],[356.1503223149139,-42.72857537978623],[356.14996011616296,-42.728051993300056],[356.14937466952654,-42.72683616074638],[356.1490821436263,-42.725620415139076],[356.1489892554786,-42.72440473015681],[356.14902863134284,-42.72318908567375],[356.14914080342453,-42.72197346341894],[356.14930671019295,-42.72075785739114],[356.14946134529345,-42.71954224771682],[356.14957916569153,-42.71832662674647],[356.149630445121,-42.71711098565187],[356.14955720517867,-42.71589530705179],[356.1493645008803,-42.71467959224286],[356.14913620674304,-42.713463866259794],[356.14898136947426,-42.71224816237775],[356.14908697507707,-42.71103253820524],[356.149669849949,-42.709817058410295],[356.150332904152,-42.709194652530115],[356.15108532357925,-42.7086018187234],[356.15198784659793,-42.708134227328955],[356.1534492120746,-42.707386819454804],[356.1536426192459,-42.70730359647855],[356.1552973757011,-42.706412713246806],[356.1556102573221,-42.70617172127119],[356.1569522805499,-42.70507613714862],[356.1570586613455,-42.7049564162603],[356.1580551978178,-42.70374099102674],[356.15860740835666,-42.703026859030786],[356.1589675356445,-42.702525538699945],[356.159922852079,-42.70131008824403],[356.16026245382574,-42.70090778653311],[356.161061636113,-42.700094666984924],[356.1619171758744,-42.69937406762023],[356.16268557488365,-42.69887932639934],[356.1635716457343,-42.69835241540348],[356.16522595718527,-42.697670307832496],[356.16524566890325,-42.697664121280674],[356.16688019252064,-42.69713047024656],[356.168534358189,-42.69675239183258],[356.17018848319753,-42.69646501210921],[356.17029395221084,-42.69644918767745],[356.17184259173234,-42.69618346367921],[356.1734966806822,-42.695928433907966],[356.1751507537432,-42.695689142629696],[356.17680480975383,-42.6954858165298],[356.17845884734277,-42.6953641364737],[356.18011287053645,-42.69536181080538],[356.1817668877546,-42.695507117357195],[356.18342091044616,-42.695827154679456],[356.18507495217295,-42.696292132182926],[356.18552882679313,-42.69645002475338],[356.1867290205871,-42.69680439485084],[356.18838311825886,-42.69734586843323],[356.1892827788337,-42.69766557731098],[356.1900372427822,-42.6978658969351],[356.1916913888292,-42.69833443250447],[356.19334556593833,-42.69884443431834],[356.19346822387166,-42.69888097343752],[356.19499975111955,-42.69924433554046],[356.1966539625928,-42.699669114315704],[356.1981538743159,-42.700096157699],[356.19830820683285,-42.70013854450565],[356.1999624894508,-42.70066067556082],[356.2014611013932,-42.70131136589172],[356.20161685759325,-42.701388738504896],[356.203271357109,-42.702418476580675],[356.2034140097868,-42.70252671295897],[356.20476229117395,-42.70374213645546],[356.20492606708876,-42.70391467355336],[356.2058846480927,-42.704957586936835],[356.20658099309856,-42.705789151435766],[356.2069065830409,-42.706173046329546],[356.2078886973038,-42.707388504853895],[356.20823608991316,-42.70784673664011],[356.20883551279906,-42.708603962561455],[356.2096953964292,-42.709819431773504],[356.20989138642227,-42.710121818163074],[356.2105174943211,-42.71103490321118],[356.21125815469225,-42.71225038795624],[356.2115469689036,-42.71277078245385],[356.21196519266255,-42.713465876054826],[356.21264682486884,-42.714681366095284],[356.2132029009729,-42.71586569399965],[356.213219377916,-42.71589687966087],[356.21375517978913,-42.717112399825425],[356.21409576487525,-42.71832796838348],[356.2142380555283,-42.719543587873034],[356.2141817222628,-42.72075925911571],[356.21396349786903,-42.721974972323096],[356.2135933575985,-42.72319072402477],[356.2132068034469,-42.72422154663665],[356.2131448726562,-42.72440649426914],[356.2126812776452,-42.72562226650392],[356.21212437277904,-42.72683805954903],[356.2115535975996,-42.72782337472013],[356.21143137776284,-42.728053882179246],[356.2106545256694,-42.72926971993649],[356.2098997056496,-42.7302312438147],[356.20970700002636,-42.730485590395205],[356.2087073821735,-42.731701464142986],[356.2082455329311,-42.73224560788422],[356.2076908471429,-42.73291733264557],[356.2067546809363,-42.73413317642921],[356.2065913023085,-42.73439739317292],[356.2059721450749,-42.73534898362132],[356.2052281032384,-42.73656477844974],[356.20493715382514,-42.73713900100796],[356.2044976852606,-42.73778056604894],[356.2033389171733,-42.73899642100756],[356.2032825999355,-42.73903701236181],[356.2016276283002,-42.73980691441274],[356.200213519114,-42.74021255458652],[356.1999725371395,-42.74026785091991],[356.19831741336867,-42.74069356136142],[356.19666226028573,-42.741086429508044],[356.19500707415676,-42.74140983880327],[356.194912567654,-42.74142882598179],[356.1933518750751,-42.74176257710082],[356.19169665061867,-42.74206098055172],[356.1900414057057,-42.742311105537226],[356.1883861466482,-42.74254943496317],[356.1878281503964,-42.742644922598835],[356.18673087780775,-42.74286062898154],[356.18507559317374,-42.743231717328364],[356.18342028867914,-42.743606797775264],[356.18204744188324,-42.7438606147014],[356.18176496667917,-42.74391853163778]],[[356.1916890003809,-42.67846559228758],[356.1900354102062,-42.678280313472946],[356.1898919699655,-42.678215051161466],[356.18838176082636,-42.67706262517657],[356.18833251641246,-42.6769994615953],[356.1881052996519,-42.675783813706985],[356.1883816353294,-42.67518673611673],[356.18882614967754,-42.67456813140339],[356.1900350011898,-42.67390728138894],[356.19168842699486,-42.67369385988032],[356.1933419418979,-42.67416490233675],[356.1939075319883,-42.67456781588508],[356.19457844644205,-42.67578341317421],[356.19428805632754,-42.67699909472494],[356.19334249614315,-42.67794055456335],[356.1926531073192,-42.67821488197716],[356.1916890003809,-42.67846559228758]]],"index":21,"temperature":20.0},{"color":"#d10000","count_points":228,"count_polygons":3,"curves":[[[356.044572835602,-42.65546687357216],[356.04569805543144,-42.655034283955324],[356.04622717855807,-42.654843345227974],[356.0478809753489,-42.654453512539696],[356.0495342244636,-42.6543066845809],[356.0511869785848,-42.65438732730976],[356.05283918627373,-42.654728339365604],[356.0536587535804,-42.65504359986292],[356.05449073766016,-42.65539226156543],[356.0557981439929,-42.65626166415149],[356.0561412329146,-42.65658544702005],[356.05693487367296,-42.65747858300195],[356.05751349969904,-42.65869487694781],[356.05771400875466,-42.65991075259938],[356.05760592327465,-42.661126288515995],[356.0571703376447,-42.66234146293168],[356.05629432311594,-42.66355614651637],[356.0561265122642,-42.66372248651349],[356.05483098723204,-42.66477016396961],[356.0544706682758,-42.66499855301869],[356.0528159059616,-42.66573135466762],[356.05176727318457,-42.66598233017233],[356.0511618053817,-42.66613715174971],[356.0495081953602,-42.666306897773794],[356.04785509413745,-42.66624087592226],[356.04638832890276,-42.665976007234164],[356.04620250890196,-42.66594432298228],[356.0445503871091,-42.665448779238694]],[[356.18010988406604,-42.740374433994965],[356.1784546551551,-42.74043416867855],[356.1767994432788,-42.7403250800212],[356.176062162452,-42.740213376063544],[356.17514425531203,-42.74009251795434],[356.17348909322976,-42.739782171684716],[356.1718339654779,-42.73938294028502],[356.17052740644925,-42.73899719317742],[356.17017887738297,-42.7389027230188],[356.1685238336555,-42.7383485199768],[356.16721264418595,-42.737781093835174],[356.16686886238654,-42.73764111916119],[356.165213958035,-42.73683859366384],[356.16472661880346,-42.73656504247928],[356.16355913431465,-42.735922631566034],[356.1626426346499,-42.73534901354657],[356.1619044090908,-42.734868810858494],[356.1608673745345,-42.73413300997788],[356.160249800441,-42.73365889558671],[356.1593540752836,-42.73291703596804],[356.158595356479,-42.732206662157886],[356.15806829986906,-42.73170109403205],[356.1569464499896,-42.73048517672923],[356.1569411111253,-42.730479047718504],[356.15584295736113,-42.72926925300702],[356.15528705372054,-42.7285460890986],[356.1548801381475,-42.72805335468807],[356.1540376830676,-42.726837479975885],[356.153633403364,-42.725996780708385],[356.1534383216087,-42.725621664455566],[356.1530297601079,-42.72440589774954],[356.1528468513371,-42.72319019141245],[356.1528347580315,-42.721974531559376],[356.1529668493334,-42.72075891100586],[356.153198307175,-42.719543317166696],[356.15353275589933,-42.71832775041031],[356.15363733968644,-42.71801385474528],[356.15387961222257,-42.71711218596036],[356.1542614228224,-42.715896629585245],[356.15473139117506,-42.71468109460137],[356.15529404845944,-42.713549026951526],[356.15532893432453,-42.713465589844134],[356.155918883868,-42.71225008011839],[356.156825844806,-42.71103464337523],[356.1569497212537,-42.71089864748252],[356.1577211803695,-42.70981919680558],[356.158604997808,-42.70886543446492],[356.15879850869743,-42.708603783674604],[356.1597477563331,-42.70738833325545],[356.1602601884371,-42.70677389612229],[356.1607039385131,-42.70617287642966],[356.16169256365305,-42.70495741802853],[356.1619152625586,-42.70469613491862],[356.16279773873896,-42.70374197292566],[356.16357008953474,-42.70302796415415],[356.16424270820846,-42.70252657678713],[356.1652246717457,-42.70186867549692],[356.166346256499,-42.70131126682823],[356.1668790948675,-42.701057419485686],[356.1685334196248,-42.700464145573385],[356.1700369876211,-42.70009612527583],[356.17018767065576,-42.70005700370461],[356.1718418836277,-42.69973185221564],[356.1734960631501,-42.69949994568642],[356.17515022121444,-42.69933026931],[356.17680436237356,-42.69922635192385],[356.178458491177,-42.69919580465771],[356.18011261282726,-42.69924862542757],[356.1817667340295,-42.699383795339514],[356.1834208614984,-42.69959120947383],[356.18507500061145,-42.69984169457738],[356.18651590705014,-42.70009697838642],[356.1867291543284,-42.70012326015316],[356.18838332019686,-42.70036216738553],[356.19003750379295,-42.700654433979736],[356.1916917117569,-42.701019802998935],[356.1927799345105,-42.701312339453835],[356.1933459481412,-42.70144607361582],[356.19500021397226,-42.70191110379951],[356.1966545346329,-42.70252618478424],[356.19665805583344,-42.70252764195489],[356.1983089161298,-42.70326490010378],[356.1991395356025,-42.70374300328776],[356.19996341138653,-42.70429697881648],[356.2008113968237,-42.704958430712544],[356.2016180657884,-42.70570063498284],[356.2021097566631,-42.706173892541834],[356.2032014230433,-42.707389374020224],[356.20327290868823,-42.70747463113665],[356.20426997679385,-42.70860484917626],[356.20492791888563,-42.70946654641824],[356.20521900055377,-42.70982033629914],[356.2061307336897,-42.71103582270876],[356.2065831395319,-42.71174771706134],[356.20693285342037,-42.712251323598174],[356.20767542955036,-42.713466831059314],[356.20823868583915,-42.71455600322918],[356.20831203355675,-42.71468235598139],[356.2089185718313,-42.7158978838458],[356.209383509538,-42.717113439588275],[356.209683717785,-42.718329030050086],[356.2098045728746,-42.71954465977562],[356.20974675809816,-42.72076032917822],[356.2095330565787,-42.72197603297457],[356.2091820366175,-42.723191766265295],[356.20872096866344,-42.72440752198445],[356.2082428912885,-42.72542206443304],[356.20815786996644,-42.72562329713832],[356.2075284261344,-42.72683908299887],[356.20670126294186,-42.72805490423396],[356.2065890669396,-42.72819644429417],[356.2057837939436,-42.72927073648275],[356.20493484499616,-42.730222919620424],[356.2047081392117,-42.73048658969568],[356.2035552036986,-42.73170244585686],[356.2032804304465,-42.731974226403956],[356.20230513669287,-42.73291830576335],[356.201625868664,-42.73353369614888],[356.20092124255433,-42.734134171580024],[356.19997117031585,-42.734882913806025],[356.1992864951935,-42.73535005386236],[356.1983163402802,-42.7359693095457],[356.19719465887533,-42.73656596535594],[356.19666140916826,-42.73684068468244],[356.1950064014064,-42.737538582327915],[356.19427407793523,-42.73778191418768],[356.19335133694034,-42.73810421079548],[356.1916962284458,-42.738554911446414],[356.19004108377356,-42.738876287135014],[356.1892105587808,-42.73899790166482],[356.1883859181096,-42.7391404269033],[356.1867307384134,-42.739406236346596],[356.1850755444892,-42.73966911312482],[356.1834203364425,-42.739939034707035],[356.1817651150449,-42.740182382146024],[356.18145823558655,-42.7402136327396],[356.18010988406604,-42.740374433994965]],[[356.3091804333236,-42.72210213874524],[356.30752638068947,-42.72244472414393],[356.30587192811964,-42.72259268110042],[356.3042171932407,-42.722598779960606],[356.3025622075595,-42.72247358817407],[356.3009069356879,-42.72219270065456],[356.2999449479205,-42.72192057607408],[356.2992514321088,-42.72177878068088],[356.2975957207382,-42.721239085813785],[356.29655428201204,-42.720708282839475],[356.29593945781596,-42.72037709818452],[356.29470366955474,-42.71949441985238],[356.29428254708347,-42.71912398583933],[356.2934223632937,-42.71827998770053],[356.29262434303604,-42.71709229845309],[356.29260550036156,-42.71706510433691],[356.2919286880601,-42.71585008404308],[356.2915407546502,-42.71463479045987],[356.29134134575406,-42.713419320066215],[356.2912818833857,-42.71220371909436],[356.2913525853883,-42.71098799687987],[356.29158013871245,-42.709772128266856],[356.29203521801986,-42.70855604607032],[356.29260783302345,-42.70764034803108],[356.29278664858873,-42.70733968261881],[356.29385077050523,-42.706123016524714],[356.29425886932466,-42.705772354523575],[356.29548642122046,-42.70490578889748],[356.295911148777,-42.704650420539465],[356.2975640633348,-42.70390900300988],[356.29836583890426,-42.70368730988686],[356.29921740133284,-42.70341746786775],[356.3008710361582,-42.703097829432224],[356.3025249975319,-42.70295847430562],[356.30417921239416,-42.70295414610032],[356.305833680291,-42.70307910334466],[356.30748847700096,-42.70336629371113],[356.30854560892885,-42.70367675225452],[356.30914362525783,-42.70382056251973],[356.31079913849527,-42.70444193853493],[356.31161699306637,-42.70488904605089],[356.3124553597517,-42.70538996718486],[356.313404388425,-42.70610270772767],[356.31411256127865,-42.70678221673771],[356.3146363253725,-42.70731697306177],[356.31548173033957,-42.708531667169],[356.3157719985858,-42.70919415258759],[356.3160636700622,-42.70974665751195],[356.31647177019966,-42.710961845026446],[356.31667450726246,-42.712177267888336],[356.3167274723477,-42.71339286312482],[356.3166436049075,-42.71460861603966],[356.3163964756613,-42.715824556723405],[356.3159167462633,-42.717040763575746],[356.31578912282106,-42.71727136228189],[356.3152914930916,-42.71825713444168],[356.31424526345086,-42.71947397882067],[356.314139338785,-42.71957360552227],[356.31270400425853,-42.72069136800928],[356.3124872633511,-42.72082669737558],[356.3108341772329,-42.721617247713716],[356.3097604268226,-42.721910276455596],[356.3091804333236,-42.72210213874524]]],"index":22,"temperature":30.0},{"color":"#a40000","count_points":212,"count_polygons":3,"curves":[[[356.04456992447496,-42.656761510869266],[356.0454964425963,-42.65624969548362],[356.04622477656466,-42.6559243806839],[356.0478787749184,-42.655455852518784],[356.0495321106457,-42.65528139214806],[356.0511848483786,-42.655381792667086],[356.0528369195709,-42.65579982628156],[356.05379312994364,-42.6562594070381],[356.0544880299429,-42.65668849453698],[356.0553756153576,-42.6574768461236],[356.0561293568301,-42.65869334314749],[356.0561368194646,-42.658725399945176],[356.05641660984077,-42.659909317669026],[356.0562749503074,-42.66112481500188],[356.0561312141619,-42.66144303505381],[356.0557143564786,-42.66233984470835],[356.05460270259533,-42.663554251767046],[356.0544734732769,-42.6636561063902],[356.05281829697776,-42.66460146389193],[356.05229719270875,-42.66476728437938],[356.0511640130813,-42.66510686526748],[356.04951040648496,-42.665287681600454],[356.04785740122037,-42.66519031732624],[356.0462050435644,-42.6648039453417],[356.04608738768144,-42.66475999097506],[356.04455346172017,-42.66408181773142]],[[356.18011004903946,-42.73788962820718],[356.17845488848064,-42.737927415971235],[356.17679974128055,-42.73783684342642],[356.1763694970435,-42.737782084556066],[356.175144612577,-42.73765299902468],[356.17348950822475,-42.73738519777134],[356.17183444020907,-42.73700709472986],[356.17038866181696,-42.73656586360299],[356.17017941938815,-42.73650973287962],[356.1685244427752,-42.73594261554899],[356.16721879401774,-42.735349781767894],[356.1668695460034,-42.73519836089353],[356.165214727974,-42.73432680072663],[356.16489729096185,-42.73413375830816],[356.16356000471507,-42.73331040098392],[356.16300055857135,-42.73291776718139],[356.16190540787477,-42.73209341406977],[356.1614273584894,-42.73170180937887],[356.16025097232716,-42.73062712243242],[356.16010219160984,-42.73048588236386],[356.1589158617865,-42.72926997072239],[356.15859672590625,-42.72889240980093],[356.1578556574828,-42.72805407583826],[356.1569729836241,-42.72683821340158],[356.1569427349289,-42.72678728116905],[356.15618841299323,-42.72562236815609],[356.15566600869835,-42.724406582992344],[356.1553701830637,-42.723190852556726],[356.15528994597696,-42.72234582903713],[356.1552476452123,-42.721975165176616],[356.15529060276384,-42.720937672851186],[356.1552960439988,-42.7207595208151],[356.1554497232009,-42.71954390283915],[356.1557178707412,-42.718328313106404],[356.1561040594892,-42.717112751690784],[356.15662376852805,-42.71589722112148],[356.15694779134645,-42.715288548280824],[356.1571947229647,-42.714681700270035],[356.157813186018,-42.71346618751534],[356.1586035655703,-42.712333929049976],[356.15864926030457,-42.7122507200662],[356.15941812422113,-42.71103523205898],[356.16025893308023,-42.71002410221154],[356.16040047156696,-42.70981978336573],[356.16133474199853,-42.7086043167241],[356.16191409764883,-42.70793599382312],[356.1623724968006,-42.70738886222145],[356.1635580904641,-42.706173425039836],[356.16356904619175,-42.706162258608884],[356.1649444737798,-42.70495800950035],[356.16522379438635,-42.70473388837568],[356.16683880971254,-42.70374265521197],[356.16687835078477,-42.70371915754676],[356.16853279366234,-42.702939401921405],[356.1698930637426,-42.70252742020972],[356.17018713401325,-42.70242910342008],[356.17184142961287,-42.70200675571608],[356.1734956785415,-42.701724131205566],[356.17514989921517,-42.70153170871573],[356.1768041012141,-42.70140969181443],[356.17845829145057,-42.70134427597782],[356.1801124749825,-42.70132742435658],[356.18176665571684,-42.70135851696285],[356.18342083752776,-42.70143437351663],[356.18507502394004,-42.701551064614826],[356.1867292186801,-42.70172005626106],[356.1883834269464,-42.701956541113425],[356.19003765608,-42.70228129392556],[356.1910111249202,-42.70252811383429],[356.1916919114107,-42.70267994896785],[356.193346200515,-42.70316385270582],[356.1948209702308,-42.70374348233373],[356.1950005445756,-42.70381576500388],[356.19665495522463,-42.70462667414068],[356.19720783896753,-42.70495889405887],[356.1983094721854,-42.70571559640387],[356.1988920735856,-42.70617434801455],[356.1999641416269,-42.7071768941507],[356.2001837620055,-42.70738983246192],[356.2013183676975,-42.7086053258683],[356.2016189837994,-42.70897650034823],[356.2023480751647,-42.70982082467011],[356.2032285585839,-42.711036339019955],[356.20327402370236,-42.711107635931306],[356.2040962094564,-42.71225184885399],[356.2047924771577,-42.71346738293373],[356.2049293477416,-42.713749721237946],[356.20546176794323,-42.714682917789816],[356.2060073206027,-42.71589847226508],[356.20640351976,-42.7171140530645],[356.2065853949622,-42.7180076290665],[356.2066657909357,-42.71832965872172],[356.2067791309635,-42.71954529309669],[356.20670544437706,-42.72076096408437],[356.20658660502176,-42.72136561017863],[356.206487498917,-42.72197666305091],[356.2061680443603,-42.723192381023786],[356.20572010531265,-42.724408122202355],[356.2051293877975,-42.72562388768367],[356.204933417882,-42.72594723740224],[356.20444514821634,-42.72683966661343],[356.2035731232549,-42.72805547322265],[356.203279333439,-42.72840229898619],[356.20257738712735,-42.72927129302688],[356.20162494971936,-42.73025709348208],[356.20140759733164,-42.730487130345026],[356.20011105346316,-42.73170297333676],[356.19997039414363,-42.731824576590334],[356.1986082851269,-42.73291882768115],[356.1983156967252,-42.73313572523006],[356.1967925848977,-42.73413469700231],[356.19666088319076,-42.73421658885091],[356.1950059788905,-42.73510702136466],[356.194430919285,-42.7353505873906],[356.1933509999716,-42.735813198042194],[356.19169596236856,-42.736344984257194],[356.19072396090644,-42.7365665131444],[356.19004088353967,-42.7367397224231],[356.1883857776055,-42.737044404688724],[356.1867306523972,-42.737274437386496],[356.1850755142941,-42.73745930648416],[356.1834203665617,-42.73762595388134],[356.18176521090726,-42.73776813539547],[356.18152290329294,-42.73778232134871],[356.18011004903946,-42.73788962820718]],[[356.3091788663539,-42.721324086507344],[356.3075248212617,-42.72166003362842],[356.3058703915532,-42.72180898010214],[356.30421570198405,-42.721827699650504],[356.302560789115,-42.72172989791821],[356.3009056233431,-42.721494874567576],[356.2992500862979,-42.72105285439642],[356.29840421925104,-42.720706460321125],[356.2975941593619,-42.720384574855046],[356.29611061620966,-42.71949305912422],[356.29593765532667,-42.71937598887221],[356.2946061688798,-42.71827885713083],[356.29428040307846,-42.71791524121921],[356.2935416361111,-42.717064217962836],[356.2928595813036,-42.715849208137755],[356.2926209547344,-42.71515273704819],[356.29240631981645,-42.71463397919332],[356.2921230137104,-42.71341858907747],[356.2920477923982,-42.712203003293936],[356.292166861896,-42.710987235206815],[356.29251867263264,-42.709771248001594],[356.29261120890044,-42.709573265267224],[356.2930268107546,-42.708555111889346],[356.29389895858685,-42.70733862685888],[356.2942609912505,-42.70696911984227],[356.2951842849685,-42.70612173718406],[356.29591285634365,-42.705599260399026],[356.29722372491443,-42.70490409440768],[356.29756557152865,-42.70473484696461],[356.2992187264018,-42.70413261242654],[356.3008723789894,-42.70381228962938],[356.30233707747783,-42.70368329847528],[356.30252633558734,-42.70366044152032],[356.30418053621,-42.703639065633716],[356.3046130067754,-42.703680937683444],[356.3058350180811,-42.703761834728276],[356.3074897780157,-42.704021340456414],[356.3091450121831,-42.70450960626353],[356.3099951538467,-42.70489083179466],[356.3108007922765,-42.70525280376324],[356.312126353377,-42.70610413670894],[356.31245734890484,-42.70635265425382],[356.31356522144,-42.70731818311808],[356.31411511694523,-42.70800326470724],[356.31454588992057,-42.70853273185064],[356.31522762886857,-42.7097476132529],[356.31560375277877,-42.710962840285916],[356.31577821212846,-42.71212521772151],[356.31578943863815,-42.71217828419724],[356.3158437258331,-42.71339387833125],[356.31578198694064,-42.713905744698245],[356.3157218508629,-42.714609674086134],[356.3154546026531,-42.71582563576009],[356.31494364329103,-42.71704187420105],[356.31413637529164,-42.71815822921412],[356.3140626347441,-42.718258528920494],[356.3128383416214,-42.719475561472706],[356.31248502768403,-42.719745207886895],[356.3108322704196,-42.720682809426584],[356.31080520613864,-42.72069347446159],[356.3091788663539,-42.721324086507344]]],"index":23,"temperature":40.0},{"color":"#800000","count_points":192,"count_polygons":3,"curves":[[[356.0445666421053,-42.65822118262697],[356.0454160762597,-42.65746525316343],[356.0462223998966,-42.65699398127163],[356.0478767299395,-42.65638735221496],[356.0488393589474,-42.656253680496306],[356.04953019585275,-42.65616430047477],[356.0506956362324,-42.65625585135078],[356.0511828889694,-42.65629649510009],[356.0528346946939,-42.656851505924514],[356.053807220385,-42.657475077735434],[356.05448489646045,-42.65818848151839],[356.05485118395825,-42.65869191197646],[356.05519968026033,-42.659907958431916],[356.0550405019327,-42.661123434577526],[356.0544766659386,-42.66212805861974],[356.05433265691977,-42.662338291992945],[356.0528205529475,-42.66353535255579],[356.0527843119833,-42.66355218726838],[356.0511660704433,-42.66414670741155],[356.04951243872233,-42.66435089397409],[356.0478595477097,-42.664212855100445],[356.04620748175233,-42.66370693336272],[356.0458803934655,-42.66354408706766],[356.04455681528526,-42.66259076568058]],[[356.188385676329,-42.735533486767814],[356.18673059247214,-42.73578918727564],[356.18507549390483,-42.735967042528685],[356.1834203864145,-42.73610120407911],[356.18176527339415,-42.73619433035342],[356.1801101583963,-42.7362424020982],[356.17845504603895,-42.736234560663554],[356.1767999441139,-42.736143123434715],[356.1751448605338,-42.73595975849861],[356.17348980349334,-42.73567964006146],[356.17213264602896,-42.735350403841984],[356.1718347835355,-42.7352887654212],[356.17017980026657,-42.73482801788463],[356.168524889682,-42.73417730173201],[356.16843417451156,-42.73413429867524],[356.1668700405111,-42.73343122384898],[356.1659647015057,-42.73291827633696],[356.1652152900977,-42.73249284083467],[356.1640440470645,-42.731702298616085],[356.1635606551799,-42.73135809353195],[356.16246817144355,-42.73048635458015],[356.1619061655505,-42.72998783742135],[356.1611349242214,-42.729270437933714],[356.160251868246,-42.72830910115863],[356.1600155759175,-42.728054551072084],[356.1590112606644,-42.7268386785993],[356.1585978411395,-42.726193089515256],[356.1581986405248,-42.72562284091577],[356.1575602960047,-42.724407038047815],[356.1571653220782,-42.72319128918663],[356.15697118966045,-42.72197558676517],[356.15694530133766,-42.720951577300646],[356.1569391258668,-42.72075992260397],[356.1569454098681,-42.7207047678749],[356.1570392015668,-42.71954428976451],[356.1572605037595,-42.718328685342925],[356.15760392162116,-42.71711310884583],[356.15808610034395,-42.71589756296605],[356.1586024921184,-42.71493328640981],[356.15870229311287,-42.7146820449044],[356.1592999689356,-42.713466519532176],[356.16013677681264,-42.71225104142246],[356.16025813274837,-42.71209603926557],[356.1609329222889,-42.711035548996904],[356.16191339740084,-42.70988336799166],[356.1619612305154,-42.709820096269816],[356.1629726018769,-42.70860463122429],[356.16356843634895,-42.70799413363251],[356.1641986093003,-42.70738919488878],[356.1652232482826,-42.70651717871267],[356.16572127633106,-42.706173793630796],[356.16687788314977,-42.70539186804927],[356.16777511042113,-42.70495844946457],[356.16853238236735,-42.70456568688679],[356.170186789029,-42.70395392802875],[356.17102332770867,-42.703743212013634],[356.1718411330061,-42.70349285464532],[356.173495437018,-42.70312077632304],[356.175149703914,-42.70286686464225],[356.17680394702893,-42.70269863530988],[356.17845817523073,-42.70259439236743],[356.1801123945251,-42.70254071573253],[356.18176660899263,-42.70253664954026],[356.183420822617,-42.70258084234402],[356.18507503929044,-42.702675792989375],[356.18672926368066,-42.70283663354372],[356.1883835024739,-42.70308454341204],[356.1900377652935,-42.703447952754736],[356.19104494705755,-42.703743768258725],[356.19169206048423,-42.7039194552193],[356.1933463992544,-42.70451650233911],[356.1942942249656,-42.70495918610474],[356.19500080398916,-42.70531020830308],[356.19639284270346,-42.70617463964524],[356.196655302379,-42.70636030073014],[356.19794846315745,-42.707390120977614],[356.1983099289122,-42.70772837748736],[356.1992165646615,-42.70860561911869],[356.19996472464925,-42.70947602056077],[356.20027424149595,-42.70982113284713],[356.201235395143,-42.71103665117544],[356.201619727689,-42.71163077071701],[356.2020721629745,-42.712252180851976],[356.2028054887704,-42.71346772120925],[356.2032750541921,-42.71446485995859],[356.20339746335907,-42.7146832805536],[356.2039466665972,-42.715898844200616],[356.2043297072271,-42.717114434405076],[356.2045563334265,-42.7183300511038],[356.2046303593749,-42.71954569454412],[356.2045601048603,-42.7207613635488],[356.20435406176523,-42.72197705636607],[356.20401552922516,-42.72319277169707],[356.2035247950186,-42.72440851168109],[356.20327825351336,-42.724885588905636],[356.20294518172676,-42.72562426407507],[356.2022057813673,-42.726840038644944],[356.2016242004426,-42.7275852052332],[356.2012813378972,-42.728055836056],[356.2001942654122,-42.72927164873206],[356.19996980272424,-42.7294940150367],[356.1989526074989,-42.73048747102827],[356.19831521868167,-42.73103072339948],[356.19747115435007,-42.731703307782674],[356.19666049678176,-42.73228865730884],[356.19565246678286,-42.73291915944839],[356.1950056655953,-42.73330389778647],[356.19335074727167,-42.734095008683674],[356.19324656230805,-42.73413502990232],[356.1916957704493,-42.73475088492516],[356.19004073941244,-42.73520174431158],[356.18924296291385,-42.73535093079791],[356.188385676329,-42.735533486767814]],[[356.3075236804007,-42.72108594969266],[356.3058693970698,-42.72130174930303],[356.30421475887823,-42.721340040408236],[356.30255981453774,-42.72121891689832],[356.3009045258229,-42.72091126727467],[356.30023381480447,-42.72070462856165],[356.29924893971463,-42.720434377508354],[356.29759287230576,-42.71968017631938],[356.2972795907173,-42.71949191545356],[356.29593622697394,-42.71858265344008],[356.2955664120616,-42.71827793111512],[356.2944205725389,-42.7170633788087],[356.2942785150866,-42.71685079238392],[356.2935757677148,-42.71584852912579],[356.2930686783451,-42.71463335398406],[356.2928151611267,-42.713417937368376],[356.2927521114875,-42.712202340550114],[356.29286767938135,-42.71098657504494],[356.29319950025405,-42.70977060464774],[356.2938468603193,-42.70855433285784],[356.2942628744177,-42.70803118672849],[356.2948248201719,-42.707337739860726],[356.29591431836405,-42.7064116350967],[356.29633545559716,-42.7061206203391],[356.29756676541217,-42.705388567952475],[356.29884323497834,-42.704902491163885],[356.2992198811679,-42.70475583045205],[356.30087333815493,-42.70432260842752],[356.30252721842845,-42.70412358670182],[356.3041814212391,-42.70409695599732],[356.3058359403071,-42.7042324772452],[356.3074908617779,-42.704566992379206],[356.30843993871065,-42.70489252269111],[356.309146229946,-42.7051145952065],[356.31080220040275,-42.70594320526232],[356.31105462436085,-42.70610532406475],[356.3124590166648,-42.707159774174244],[356.3126419659184,-42.70731921813736],[356.313754400753,-42.708533626361245],[356.3141175366906,-42.709159327907194],[356.31449294062145,-42.709748448110545],[356.3149783984857,-42.710963553248575],[356.3152076276376,-42.712178948568685],[356.31524223189024,-42.713394565413594],[356.3150914844025,-42.71461039340429],[356.3147149805828,-42.71582647768298],[356.31413367677806,-42.716869352145906],[356.3140432006908,-42.71704289455968],[356.31311515473203,-42.71825959512911],[356.31248314718556,-42.71883549972418],[356.31162039525486,-42.71947691764028],[356.310830807515,-42.71996589051088],[356.3091774842728,-42.72063782140805],[356.30894901621315,-42.720695503329885],[356.3075236804007,-42.72108594969266]]],"index":24,"temperature":50.0}]; + + var lContours = [] + + Ext.each(contours, function (contour) { + + labelOptions.color = contour.color; + + // var polygons = [] + Ext.each(contour.curves, function(polygon){ + + var points = []; + // Para cada poligono converter todas as coordenadas + Ext.each(polygon, function(coord){ + // Converter as coordenadas para latLng + points.push(l.latLng(coord[1], coord[0])) + }); + + lContours.push( + l.polyline(points, labelOptions) + ) + + }); + + // console.log(polygons) + + // lContours.push(polygons) + }); + + layer = new l.LayerGroup(lContours); + me.lContours = layer; + map.addLayer(me.lContours) + + // // centerPadding e a distancia que as linhas vao ter a partir do centro. + // centerPadding = ((labelOptions.centerPadding) ? + // labelOptions.centerPadding : 0.001); + + // size = ((labelOptions.size) ? + // labelOptions.size : 0.005); + + // lineTop = [l.latLng((dec + centerPadding), ra), l.latLng((dec + size), ra)]; + // lineBottom = [l.latLng((dec - centerPadding), ra), l.latLng((dec - size), ra)]; + // lineLeft = [l.latLng(dec, (ra + centerPadding)), l.latLng(dec, (ra + size))]; + // lineRight = [l.latLng(dec, (ra - centerPadding)), l.latLng(dec, (ra - size))]; + + // lineTop = l.polyline(lineTop, labelOptions); + // lineBottom = l.polyline(lineBottom, labelOptions); + // lineLeft = l.polyline(lineLeft, labelOptions); + // lineRight = l.polyline(lineRight, labelOptions); + + // layer = new l.LayerGroup( + // [lineTop, lineBottom, lineLeft, lineRight]); + + // me.lcrosshair = layer; + + // if (me.getShowCrosshair()) { + // map.addLayer(me.lcrosshair); + + // } + + // return me.lcrosshair; + }, }); diff --git a/frontend/packages/local/visiomatic/src/store/XrayContours.js b/frontend/packages/local/visiomatic/src/store/XrayContours.js new file mode 100644 index 000000000..8b0c894cc --- /dev/null +++ b/frontend/packages/local/visiomatic/src/store/XrayContours.js @@ -0,0 +1,21 @@ +Ext.define('visiomatic.store.XrayContours', { + extend: 'Ext.data.ArrayStore', + + alias: 'store.xray_contours', + + remoteFilter: false, + + remoteSort: false, + + autoLoad: false, + + pageSize: 10000, + + proxy: { + type: 'django', + timeout: 60000, + api: { + read: '/xray_contours/contours?filepath=res_12.pkl&cluster=spt_8' + } + } +}); diff --git a/frontend/sky/app/view/dataset/DatasetController.js b/frontend/sky/app/view/dataset/DatasetController.js index e294d628c..2489cdcaa 100644 --- a/frontend/sky/app/view/dataset/DatasetController.js +++ b/frontend/sky/app/view/dataset/DatasetController.js @@ -120,6 +120,10 @@ Ext.define('Sky.view.dataset.DatasetController', { // if (view.getPinned()){ // me.lMarker = visiomatic.markPosition(radec.ra, radec.dec, 'x-fa fa-map-marker fa-2x'); // } + + // TODO: Teste de Xray Contours deve ir para a componente interface + console.log("TESTE") + visiomatic.drawXrayContours(0, 0, {}) }, onChangePosition: function (radec, fov) { diff --git a/frontend/target/.gitignore b/frontend/target/.gitignore new file mode 100644 index 000000000..78efbd1f6 --- /dev/null +++ b/frontend/target/.gitignore @@ -0,0 +1 @@ +bootstrap.jsonp diff --git a/frontend/target/app/model/CatalogTree.js b/frontend/target/app/model/CatalogTree.js index 696c47f48..8791cef95 100644 --- a/frontend/target/app/model/CatalogTree.js +++ b/frontend/target/app/model/CatalogTree.js @@ -39,6 +39,8 @@ Ext.define('Target.model.CatalogTree', { return null; } }}, + {name: 'tbl_rows', type: 'int'}, + {name: 'tbl_num_columns', type: 'int'} ] diff --git a/frontend/target/app/view/catalog/DatabaseForm.js b/frontend/target/app/view/catalog/DatabaseForm.js index 659097aa4..0f9cc5ce3 100644 --- a/frontend/target/app/view/catalog/DatabaseForm.js +++ b/frontend/target/app/view/catalog/DatabaseForm.js @@ -9,7 +9,8 @@ Ext.define('Target.view.catalog.DatabaseForm', { requires: [ 'Target.view.catalog.DatabaseController', 'Target.store.ProductClass', - 'common.store.Releases' + 'common.store.Releases', + 'common.store.Databases' ], title: 'Database', @@ -31,6 +32,10 @@ Ext.define('Target.view.catalog.DatabaseForm', { releases: { type: 'releases', autoLoad: true + }, + databases: { + type: 'databases', + autoLoad: true } } }, @@ -105,13 +110,15 @@ Ext.define('Target.view.catalog.DatabaseForm', { // value: 'y1_wide_survey' }, { - xtype: 'textfield', + xtype: 'combobox', name: 'database', fieldLabel: 'Database', - maxLength: 30, - value: 'dessci', - readOnly: true - }, + displayField: 'display_name', + valueField: 'name', + bind: { + store: '{databases}' + } + }, { xtype: 'textfield', name: 'tablename', diff --git a/frontend/target/app/view/catalog/Tree.js b/frontend/target/app/view/catalog/Tree.js index 7d983cd6d..30ddc6047 100644 --- a/frontend/target/app/view/catalog/Tree.js +++ b/frontend/target/app/view/catalog/Tree.js @@ -84,7 +84,7 @@ Ext.define('Target.view.catalog.Tree', { }, { text: 'Rows', - dataIndex: 'ctl_num_objects', + dataIndex: 'tbl_rows', sortable: true, renderer: function (value, metadata, record) { if (record.data.leaf) { @@ -94,7 +94,7 @@ Ext.define('Target.view.catalog.Tree', { }, { text: 'Cols', - dataIndex: 'ctl_num_columns', + dataIndex: 'tbl_num_columns', sortable: true, renderer: function (value, metadata, record) { if ((record.data.leaf) && (value > 0)){ diff --git a/frontend/target/bootstrap.jsonp b/frontend/target/bootstrap.jsonp deleted file mode 100644 index 5ab52f028..000000000 --- a/frontend/target/bootstrap.jsonp +++ /dev/null @@ -1 +0,0 @@ -Ext.Microloader.setManifest({"paths":{"Ext":"../ext/classic/classic/src","Ext.AbstractManager":"../ext/packages/core/src/AbstractManager.js","Ext.Ajax":"../ext/packages/core/src/Ajax.js","Ext.AnimationQueue":"../ext/packages/core/src/AnimationQueue.js","Ext.Array":"../ext/packages/core/src/lang/Array.js","Ext.Assert":"../ext/packages/core/src/lang/Assert.js","Ext.Base":"../ext/packages/core/src/class/Base.js","Ext.Boot":".sencha/app/Boot.js","Ext.Class":"../ext/packages/core/src/class/Class.js","Ext.ClassManager":"../ext/packages/core/src/class/ClassManager.js","Ext.ComponentManager":"../ext/packages/core/src/ComponentManager.js","Ext.ComponentQuery":"../ext/packages/core/src/ComponentQuery.js","Ext.Config":"../ext/packages/core/src/class/Config.js","Ext.Configurator":"../ext/packages/core/src/class/Configurator.js","Ext.Date":"../ext/packages/core/src/lang/Date.js","Ext.Deferred":"../ext/packages/core/src/Deferred.js","Ext.Error":"../ext/packages/core/src/lang/Error.js","Ext.Evented":"../ext/packages/core/src/Evented.js","Ext.Factory":"../ext/packages/core/src/mixin/Factoryable.js","Ext.Function":"../ext/packages/core/src/lang/Function.js","Ext.GlobalEvents":"../ext/packages/core/src/GlobalEvents.js","Ext.Inventory":"../ext/packages/core/src/class/Inventory.js","Ext.JSON":"../ext/packages/core/src/JSON.js","Ext.Loader":"../ext/packages/core/src/class/Loader.js","Ext.Mixin":"../ext/packages/core/src/class/Mixin.js","Ext.Msg":"../ext/classic/classic/src/window/MessageBox.js","Ext.Number":"../ext/packages/core/src/lang/Number.js","Ext.Object":"../ext/packages/core/src/lang/Object.js","Ext.Progress":"../ext/packages/core/src/Progress.js","Ext.ProgressBase":"../ext/packages/core/src/ProgressBase.js","Ext.Promise":"../ext/packages/core/src/Promise.js","Ext.Script":"../ext/packages/core/src/class/Inventory.js","Ext.String":"../ext/packages/core/src/lang/String.js","Ext.String.format":"../ext/packages/core/src/Template.js","Ext.TaskQueue":"../ext/packages/core/src/TaskQueue.js","Ext.Template":"../ext/packages/core/src/Template.js","Ext.Util":"../ext/packages/core/src/Util.js","Ext.Version":"../ext/packages/core/src/util/Version.js","Ext.Widget":"../ext/packages/core/src/Widget.js","Ext.XTemplate":"../ext/packages/core/src/XTemplate.js","Ext.app":"../ext/packages/core/src/app","Ext.browser":"../ext/packages/core/src/env/Browser.js","Ext.class":"../ext/packages/core/src/class","Ext.data":"../ext/packages/core/src/data","Ext.direct":"../ext/packages/core/src/direct","Ext.dom":"../ext/packages/core/src/dom","Ext.dom.ButtonElement":"../ext/classic/classic/src/dom/ButtonElement.js","Ext.dom.Layer":"../ext/classic/classic/src/dom/Layer.js","Ext.env":"../ext/packages/core/src/env","Ext.event":"../ext/packages/core/src/event","Ext.event.publisher.MouseEnterLeave":"../ext/classic/classic/src/event/publisher/MouseEnterLeave.js","Ext.feature":"../ext/packages/core/src/env/Feature.js","Ext.fx.Animation":"../ext/packages/core/src/fx/Animation.js","Ext.fx.Runner":"../ext/packages/core/src/fx/Runner.js","Ext.fx.State":"../ext/packages/core/src/fx/State.js","Ext.fx.animation":"../ext/packages/core/src/fx/animation","Ext.fx.easing":"../ext/packages/core/src/fx/easing","Ext.fx.layout":"../ext/packages/core/src/fx/layout","Ext.fx.runner":"../ext/packages/core/src/fx/runner","Ext.lang":"../ext/packages/core/src/lang","Ext.list":"../ext/packages/core/src/list","Ext.mixin":"../ext/packages/core/src/mixin","Ext.os":"../ext/packages/core/src/env/OS.js","Ext.overrides":"../ext/classic/classic/overrides","Ext.overrides.list.TreeItem":"../ext/classic/classic/overrides/list/Item.js","Ext.overrides.util.Positionable":"../ext/classic/classic/overrides/Positionable.js","Ext.perf":"../ext/packages/core/src/perf","Ext.plugin.Abstract":"../ext/packages/core/src/plugin/Abstract.js","Ext.plugin.LazyItems":"../ext/packages/core/src/plugin/LazyItems.js","Ext.promise":"../ext/packages/core/src/promise","Ext.scroll":"../ext/packages/core/src/scroll","Ext.supports":"../ext/packages/core/src/env/Feature.js","Ext.theme.crisp":"../ext/classic/theme-crisp/overrides","Ext.theme.neptune":"../ext/classic/theme-neptune/overrides","Ext.util":"../ext/packages/core/src/util","Ext.util.Animate":"../ext/classic/classic/src/util/Animate.js","Ext.util.CSS":"../ext/classic/classic/src/util/CSS.js","Ext.util.ClickRepeater":"../ext/classic/classic/src/util/ClickRepeater.js","Ext.util.ComponentDragger":"../ext/classic/classic/src/util/ComponentDragger.js","Ext.util.Cookies":"../ext/classic/classic/src/util/Cookies.js","Ext.util.ElementContainer":"../ext/classic/classic/src/util/ElementContainer.js","Ext.util.Floating":"../ext/classic/classic/src/util/Floating.js","Ext.util.FocusTrap":"../ext/classic/classic/src/util/FocusTrap.js","Ext.util.Focusable":"../ext/classic/classic/src/util/Focusable.js","Ext.util.FocusableContainer":"../ext/classic/classic/src/util/FocusableContainer.js","Ext.util.Format.format":"../ext/packages/core/src/Template.js","Ext.util.KeyMap":"../ext/classic/classic/src/util/KeyMap.js","Ext.util.KeyNav":"../ext/classic/classic/src/util/KeyNav.js","Ext.util.KeyboardInteractive":"../ext/classic/classic/src/util/KeyboardInteractive.js","Ext.util.Memento":"../ext/classic/classic/src/util/Memento.js","Ext.util.ProtoElement":"../ext/classic/classic/src/util/ProtoElement.js","Ext.util.Queue":"../ext/classic/classic/src/util/Queue.js","Ext.util.Renderable":"../ext/classic/classic/src/util/Renderable.js","Ext.util.StoreHolder":"../ext/classic/classic/src/util/StoreHolder.js","Ext.ux.BoxReorderer":"../ext/packages/ux/classic/src/BoxReorderer.js","Ext.ux.CellDragDrop":"../ext/packages/ux/classic/src/CellDragDrop.js","Ext.ux.DataTip":"../ext/packages/ux/classic/src/DataTip.js","Ext.ux.DataView.Animated":"../ext/packages/ux/classic/src/DataView/Animated.js","Ext.ux.DataView.DragSelector":"../ext/packages/ux/classic/src/DataView/DragSelector.js","Ext.ux.DataView.Draggable":"../ext/packages/ux/classic/src/DataView/Draggable.js","Ext.ux.DataView.LabelEditor":"../ext/packages/ux/classic/src/DataView/LabelEditor.js","Ext.ux.Explorer":"../ext/packages/ux/classic/src/Explorer.js","Ext.ux.FieldReplicator":"../ext/packages/ux/classic/src/FieldReplicator.js","Ext.ux.GMapPanel":"../ext/packages/ux/classic/src/GMapPanel.js","Ext.ux.GroupTabPanel":"../ext/packages/ux/classic/src/GroupTabPanel.js","Ext.ux.GroupTabRenderer":"../ext/packages/ux/classic/src/GroupTabRenderer.js","Ext.ux.IFrame":"../ext/packages/ux/classic/src/IFrame.js","Ext.ux.LiveSearchGridPanel":"../ext/packages/ux/classic/src/LiveSearchGridPanel.js","Ext.ux.PreviewPlugin":"../ext/packages/ux/classic/src/PreviewPlugin.js","Ext.ux.ProgressBarPager":"../ext/packages/ux/classic/src/ProgressBarPager.js","Ext.ux.RowExpander":"../ext/packages/ux/classic/src/RowExpander.js","Ext.ux.SlidingPager":"../ext/packages/ux/classic/src/SlidingPager.js","Ext.ux.Spotlight":"../ext/packages/ux/classic/src/Spotlight.js","Ext.ux.TabCloseMenu":"../ext/packages/ux/classic/src/TabCloseMenu.js","Ext.ux.TabReorderer":"../ext/packages/ux/classic/src/TabReorderer.js","Ext.ux.TabScrollerMenu":"../ext/packages/ux/classic/src/TabScrollerMenu.js","Ext.ux.ToolbarDroppable":"../ext/packages/ux/classic/src/ToolbarDroppable.js","Ext.ux.TreePicker":"../ext/packages/ux/classic/src/TreePicker.js","Ext.ux.ajax.DataSimlet":"../ext/packages/ux/src/ajax/DataSimlet.js","Ext.ux.ajax.JsonSimlet":"../ext/packages/ux/src/ajax/JsonSimlet.js","Ext.ux.ajax.SimManager":"../ext/packages/ux/src/ajax/SimManager.js","Ext.ux.ajax.SimXhr":"../ext/packages/ux/src/ajax/SimXhr.js","Ext.ux.ajax.Simlet":"../ext/packages/ux/src/ajax/Simlet.js","Ext.ux.ajax.XmlSimlet":"../ext/packages/ux/src/ajax/XmlSimlet.js","Ext.ux.colorpick.Button":"../ext/packages/ux/classic/src/colorpick/Button.js","Ext.ux.colorpick.ButtonController":"../ext/packages/ux/classic/src/colorpick/ButtonController.js","Ext.ux.colorpick.ColorMap":"../ext/packages/ux/classic/src/colorpick/ColorMap.js","Ext.ux.colorpick.ColorMapController":"../ext/packages/ux/classic/src/colorpick/ColorMapController.js","Ext.ux.colorpick.ColorPreview":"../ext/packages/ux/classic/src/colorpick/ColorPreview.js","Ext.ux.colorpick.ColorUtils":"../ext/packages/ux/classic/src/colorpick/ColorUtils.js","Ext.ux.colorpick.Field":"../ext/packages/ux/classic/src/colorpick/Field.js","Ext.ux.colorpick.Selection":"../ext/packages/ux/classic/src/colorpick/Selection.js","Ext.ux.colorpick.Selector":"../ext/packages/ux/classic/src/colorpick/Selector.js","Ext.ux.colorpick.SelectorController":"../ext/packages/ux/classic/src/colorpick/SelectorController.js","Ext.ux.colorpick.SelectorModel":"../ext/packages/ux/classic/src/colorpick/SelectorModel.js","Ext.ux.colorpick.Slider":"../ext/packages/ux/classic/src/colorpick/Slider.js","Ext.ux.colorpick.SliderAlpha":"../ext/packages/ux/classic/src/colorpick/SliderAlpha.js","Ext.ux.colorpick.SliderController":"../ext/packages/ux/classic/src/colorpick/SliderController.js","Ext.ux.colorpick.SliderHue":"../ext/packages/ux/classic/src/colorpick/SliderHue.js","Ext.ux.colorpick.SliderSaturation":"../ext/packages/ux/classic/src/colorpick/SliderSaturation.js","Ext.ux.colorpick.SliderValue":"../ext/packages/ux/classic/src/colorpick/SliderValue.js","Ext.ux.dashboard.GoogleRssPart":"../ext/packages/ux/classic/src/dashboard/GoogleRssPart.js","Ext.ux.dashboard.GoogleRssView":"../ext/packages/ux/classic/src/dashboard/GoogleRssView.js","Ext.ux.data.PagingMemoryProxy":"../ext/packages/ux/classic/src/data/PagingMemoryProxy.js","Ext.ux.dd.CellFieldDropZone":"../ext/packages/ux/classic/src/dd/CellFieldDropZone.js","Ext.ux.dd.PanelFieldDragZone":"../ext/packages/ux/classic/src/dd/PanelFieldDragZone.js","Ext.ux.desktop.App":"../ext/packages/ux/classic/src/desktop/App.js","Ext.ux.desktop.Desktop":"../ext/packages/ux/classic/src/desktop/Desktop.js","Ext.ux.desktop.Module":"../ext/packages/ux/classic/src/desktop/Module.js","Ext.ux.desktop.ShortcutModel":"../ext/packages/ux/classic/src/desktop/ShortcutModel.js","Ext.ux.desktop.StartMenu":"../ext/packages/ux/classic/src/desktop/StartMenu.js","Ext.ux.desktop.TaskBar":"../ext/packages/ux/classic/src/desktop/TaskBar.js","Ext.ux.desktop.TrayClock":"../ext/packages/ux/classic/src/desktop/TaskBar.js","Ext.ux.desktop.Video":"../ext/packages/ux/classic/src/desktop/Video.js","Ext.ux.desktop.Wallpaper":"../ext/packages/ux/classic/src/desktop/Wallpaper.js","Ext.ux.event.Driver":"../ext/packages/ux/src/event/Driver.js","Ext.ux.event.Maker":"../ext/packages/ux/src/event/Maker.js","Ext.ux.event.Player":"../ext/packages/ux/src/event/Player.js","Ext.ux.event.Recorder":"../ext/packages/ux/src/event/Recorder.js","Ext.ux.event.RecorderManager":"../ext/packages/ux/classic/src/event/RecorderManager.js","Ext.ux.form.ItemSelector":"../ext/packages/ux/classic/src/form/ItemSelector.js","Ext.ux.form.MultiSelect":"../ext/packages/ux/classic/src/form/MultiSelect.js","Ext.ux.form.SearchField":"../ext/packages/ux/classic/src/form/SearchField.js","Ext.ux.google.Api":"../ext/packages/ux/src/google/Api.js","Ext.ux.google.Feeds":"../ext/packages/ux/src/google/Feeds.js","Ext.ux.grid.SubTable":"../ext/packages/ux/classic/src/grid/SubTable.js","Ext.ux.grid.TransformGrid":"../ext/packages/ux/classic/src/grid/TransformGrid.js","Ext.ux.layout.ResponsiveColumn":"../ext/packages/ux/classic/src/layout/ResponsiveColumn.js","Ext.ux.rating.Picker":"../ext/packages/ux/classic/src/rating/Picker.js","Ext.ux.statusbar.StatusBar":"../ext/packages/ux/classic/src/statusbar/StatusBar.js","Ext.ux.statusbar.ValidationStatus":"../ext/packages/ux/classic/src/statusbar/ValidationStatus.js","Target":"app","common":"../packages/local/visiomatic/src","common.BandFilter":"../packages/local/common/src/BandFilter.js","common.SearchField":"../packages/local/common/src/SearchField.js","common.ToolbarController":"../packages/local/common/src/header/ToolbarController.js","common.contact.Contact":"../packages/local/common/src/contact/Contact.js","common.contact.ContactController":"../packages/local/common/src/contact/ContactController.js","common.data.Settings":"../packages/local/common/src/data/Settings.js","common.data.proxy.CrsfToken":"../packages/local/common/src/data/proxy/CrsfToken.js","common.data.proxy.Django":"../packages/local/common/src/data/proxy/Django.js","common.footer.Footer":"../packages/local/common/src/footer/Footer.js","common.footer.FooterController":"../packages/local/common/src/footer/FooterController.js","common.header.Toolbar":"../packages/local/common/src/header/Toolbar.js","common.help.Tutorials":"../packages/local/common/src/help/Tutorials.js","common.help.TutorialsController":"../packages/local/common/src/help/TutorialsController.js","common.link.LinkPrompt":"../packages/local/common/src/link/LinkPrompt.js","common.model.CommentObject":"../packages/local/common/src/model/CommentObject.js","common.model.CommentPosition":"../packages/local/common/src/model/CommentPosition.js","common.model.Dataset":"../packages/local/common/src/model/Dataset.js","common.model.Filter":"../packages/local/common/src/model/Filter.js","common.model.Footprint":"../packages/local/common/src/model/Footprint.js","common.model.Map":"../packages/local/common/src/model/Map.js","common.model.Release":"../packages/local/common/src/model/Release.js","common.model.Survey":"../packages/local/common/src/model/Survey.js","common.model.Tag":"../packages/local/common/src/model/Tag.js","common.model.Tile":"../packages/local/common/src/model/Tile.js","common.statistics.Events":"../packages/local/common/src/statistics/Events.js","common.store.CSVDelimiters":"../packages/local/common/src/store/CSVDelimiters.js","common.store.CommentsObjects":"../packages/local/common/src/store/CommentsObjects.js","common.store.CommentsPosition":"../packages/local/common/src/store/CommentsPosition.js","common.store.Datasets":"../packages/local/common/src/store/Datasets.js","common.store.Fields":"../packages/local/common/src/store/Fields.js","common.store.Filters":"../packages/local/common/src/store/Filters.js","common.store.Footprints":"../packages/local/common/src/store/Footprints.js","common.store.Maps":"../packages/local/common/src/store/Maps.js","common.store.MyStore":"../packages/local/common/src/store/MyStore.js","common.store.MyTreeStore":"../packages/local/common/src/store/MyTreeStore.js","common.store.Releases":"../packages/local/common/src/store/Releases.js","common.store.Surveys":"../packages/local/common/src/store/Surveys.js","common.store.Tags":"../packages/local/common/src/store/Tags.js","common.store.Tiles":"../packages/local/common/src/store/Tiles.js","common.store.Tutorials":"../packages/local/common/src/store/Tutorials.js","common.store.UsersSameGroup":"../packages/local/common/src/store/UsersSameGroup.js","common.token.GetToken":"../packages/local/common/src/token/GetToken.js","visiomatic.Comments":"../packages/local/visiomatic/src/Comments.js","visiomatic.Interface":"../packages/local/visiomatic/src/Interface.js","visiomatic.Visiomatic":"../packages/local/visiomatic/src/Visiomatic.js","visiomatic.VisiomaticController":"../packages/local/visiomatic/src/VisiomaticController.js","visiomatic.VisiomaticModel":"../packages/local/visiomatic/src/VisiomaticModel.js","visiomatic.catalog.CatalogController":"../packages/local/visiomatic/src/catalog/CatalogController.js","visiomatic.catalog.CatalogOverlayWindow":"../packages/local/visiomatic/src/catalog/CatalogOverlayWindow.js","visiomatic.catalog.CatalogViewModel":"../packages/local/visiomatic/src/catalog/CatalogViewModel.js","visiomatic.catalog.Catalogs":"../packages/local/visiomatic/src/catalog/Catalogs.js","visiomatic.catalog.OverlayGrid":"../packages/local/visiomatic/src/catalog/OverlaysGrid.js","visiomatic.catalog.Submit":"../packages/local/visiomatic/src/catalog/Submit.js","visiomatic.comment.CommentsPosition":"../packages/local/visiomatic/src/comment/CommentsPosition.js","visiomatic.comment.CommentsPositionController":"../packages/local/visiomatic/src/comment/CommentsPositionController.js","visiomatic.comment.CommentsPositionModel":"../packages/local/visiomatic/src/comment/CommentsPositionModel.js","visiomatic.crop.CropWindow":"../packages/local/visiomatic/src/crop/CropWindow.js","visiomatic.download.DescutDownloadWindow":"../packages/local/visiomatic/src/download/DescutDownloadWindow.js","visiomatic.download.FitsController":"../packages/local/visiomatic/src/download/FitsController.js","visiomatic.download.FitsModel":"../packages/local/visiomatic/src/download/FitsModel.js","visiomatic.filter.FiltersController":"../packages/local/visiomatic/src/filter/FiltersController.js","visiomatic.filter.FiltersModel":"../packages/local/visiomatic/src/filter/FiltersModel.js","visiomatic.filter.FiltersWindow":"../packages/local/visiomatic/src/filter/FiltersWindow.js","visiomatic.model.CatalogContent":"../packages/local/visiomatic/src/model/CatalogContent.js","visiomatic.model.CatalogTree":"../packages/local/visiomatic/src/model/CatalogTree.js","visiomatic.model.FilterCondition":"../packages/local/visiomatic/src/model/FilterCondition.js","visiomatic.model.FitsFiles":"../packages/local/visiomatic/src/model/FitsFiles.js","visiomatic.model.Object":"../packages/local/visiomatic/src/model/Object.js","visiomatic.model.Overlay":"../packages/local/visiomatic/src/model/Overlay.js","visiomatic.store.CatalogsTree":"../packages/local/visiomatic/src/store/CatalogsTree.js","visiomatic.store.ExternalObjects":"../packages/local/visiomatic/src/store/ExternalObjects.js","visiomatic.store.FilterConditions":"../packages/local/visiomatic/src/store/FilterConditions.js","visiomatic.store.FitsFiles":"../packages/local/visiomatic/src/store/FitsFiles.js","visiomatic.store.Objects":"../packages/local/visiomatic/src/store/Objects.js","visiomatic.store.Overlays":"../packages/local/visiomatic/src/store/Overlays.js","visiomatic.store.ProductDisplayContents":"../packages/local/visiomatic/src/store/ProductDisplayContents.js"},"loadOrder":[{"path":"../ext/classic/theme-neptune/overrides/Component.js","requires":[],"uses":[],"idx":0},{"path":"../ext/classic/theme-crisp/overrides/Component.js","requires":[],"uses":[],"idx":1},{"path":"../ext/classic/theme-neptune/overrides/resizer/Splitter.js","requires":[],"uses":[],"idx":2},{"path":"../ext/classic/theme-neptune/overrides/toolbar/Toolbar.js","requires":[],"uses":[],"idx":3},{"path":"../ext/classic/theme-neptune/overrides/layout/component/Dock.js","requires":[],"uses":[],"idx":4},{"path":"../ext/classic/theme-neptune/overrides/panel/Panel.js","requires":[],"uses":[],"idx":5},{"path":"../ext/classic/theme-neptune/overrides/container/ButtonGroup.js","requires":[],"uses":[],"idx":6},{"path":"../ext/classic/theme-neptune/overrides/toolbar/Paging.js","requires":[],"uses":[],"idx":7},{"path":"../ext/classic/theme-neptune/overrides/picker/Month.js","requires":[],"uses":[],"idx":8},{"path":"../ext/classic/theme-neptune/overrides/form/field/HtmlEditor.js","requires":[],"uses":[],"idx":9},{"path":"../ext/classic/theme-neptune/overrides/panel/Table.js","requires":[],"uses":[],"idx":10},{"path":"../ext/classic/theme-crisp/overrides/view/Table.js","requires":[],"uses":[],"idx":11},{"path":"../ext/classic/theme-neptune/overrides/grid/RowEditor.js","requires":[],"uses":[],"idx":12},{"path":"../ext/classic/theme-neptune/overrides/grid/column/RowNumberer.js","requires":[],"uses":[],"idx":13},{"path":"../ext/classic/theme-neptune/overrides/menu/Separator.js","requires":[],"uses":[],"idx":14},{"path":"../ext/classic/theme-neptune/overrides/menu/Menu.js","requires":[],"uses":[],"idx":15},{"path":"../ext/packages/ux/src/ajax/Simlet.js","requires":[],"uses":[19],"idx":16},{"path":"../ext/packages/ux/src/ajax/DataSimlet.js","requires":[16],"uses":[],"idx":17},{"path":"../ext/packages/ux/src/ajax/JsonSimlet.js","requires":[17],"uses":[],"idx":18},{"path":"../ext/packages/ux/src/ajax/SimXhr.js","requires":[],"uses":[],"idx":19},{"path":"../ext/packages/ux/src/ajax/SimManager.js","requires":[16,18,19],"uses":[],"idx":20},{"path":"../ext/packages/ux/src/ajax/XmlSimlet.js","requires":[17],"uses":[],"idx":21},{"path":"../ext/packages/ux/src/event/Driver.js","requires":[],"uses":[],"idx":22},{"path":"../ext/packages/ux/src/event/Maker.js","requires":[],"uses":[],"idx":23},{"path":"../ext/packages/ux/src/event/Player.js","requires":[22],"uses":[],"idx":24},{"path":"../ext/packages/ux/src/event/Recorder.js","requires":[22],"uses":[],"idx":25},{"path":"../ext/packages/ux/src/google/Api.js","requires":[],"uses":[],"idx":26},{"path":"../ext/packages/ux/src/google/Feeds.js","requires":[26],"uses":[],"idx":27},{"path":"../ext/packages/ux/classic/src/BoxReorderer.js","requires":[],"uses":[],"idx":28},{"path":"../ext/packages/ux/classic/src/CellDragDrop.js","requires":[],"uses":[],"idx":29},{"path":"../ext/packages/ux/classic/src/DataTip.js","requires":[],"uses":[],"idx":30},{"path":"../ext/packages/ux/classic/src/DataView/Animated.js","requires":[],"uses":[],"idx":31},{"path":"../ext/packages/ux/classic/src/DataView/DragSelector.js","requires":[],"uses":[],"idx":32},{"path":"../ext/packages/ux/classic/src/DataView/Draggable.js","requires":[],"uses":[],"idx":33},{"path":"../ext/packages/ux/classic/src/DataView/LabelEditor.js","requires":[],"uses":[],"idx":34},{"path":"../ext/packages/ux/classic/src/DataViewTransition.js","requires":[],"uses":[],"idx":35},{"path":"../ext/packages/ux/classic/src/Explorer.js","requires":[],"uses":[],"idx":36},{"path":"../ext/packages/ux/classic/src/FieldReplicator.js","requires":[],"uses":[],"idx":37},{"path":"../ext/packages/ux/classic/src/GMapPanel.js","requires":[],"uses":[],"idx":38},{"path":"../ext/packages/ux/classic/src/GroupTabRenderer.js","requires":[],"uses":[],"idx":39},{"path":"../ext/packages/ux/classic/src/GroupTabPanel.js","requires":[39],"uses":[],"idx":40},{"path":"../ext/packages/ux/classic/src/IFrame.js","requires":[],"uses":[],"idx":41},{"path":"../ext/packages/ux/classic/src/statusbar/StatusBar.js","requires":[],"uses":[],"idx":42},{"path":"../ext/packages/ux/classic/src/LiveSearchGridPanel.js","requires":[42],"uses":[],"idx":43},{"path":"../ext/packages/ux/classic/src/PreviewPlugin.js","requires":[],"uses":[],"idx":44},{"path":"../ext/packages/ux/classic/src/ProgressBarPager.js","requires":[],"uses":[],"idx":45},{"path":"../ext/packages/ux/classic/src/RowExpander.js","requires":[],"uses":[],"idx":46},{"path":"../ext/packages/ux/classic/src/SlidingPager.js","requires":[],"uses":[],"idx":47},{"path":"../ext/packages/ux/classic/src/Spotlight.js","requires":[],"uses":[],"idx":48},{"path":"../ext/packages/ux/classic/src/TabCloseMenu.js","requires":[],"uses":[],"idx":49},{"path":"../ext/packages/ux/classic/src/TabReorderer.js","requires":[28],"uses":[],"idx":50},{"path":"../ext/packages/ux/classic/src/TabScrollerMenu.js","requires":[],"uses":[],"idx":51},{"path":"../ext/packages/ux/classic/src/ToolbarDroppable.js","requires":[],"uses":[],"idx":52},{"path":"../ext/packages/ux/classic/src/TreePicker.js","requires":[],"uses":[],"idx":53},{"path":"../ext/packages/ux/classic/src/colorpick/Selection.js","requires":[],"uses":[55],"idx":54},{"path":"../ext/packages/ux/classic/src/colorpick/ColorUtils.js","requires":[],"uses":[],"idx":55},{"path":"../ext/packages/ux/classic/src/colorpick/ColorMapController.js","requires":[55],"uses":[],"idx":56},{"path":"../ext/packages/ux/classic/src/colorpick/ColorMap.js","requires":[56],"uses":[],"idx":57},{"path":"../ext/packages/ux/classic/src/colorpick/SelectorModel.js","requires":[55],"uses":[],"idx":58},{"path":"../ext/packages/ux/classic/src/colorpick/SelectorController.js","requires":[55],"uses":[],"idx":59},{"path":"../ext/packages/ux/classic/src/colorpick/ColorPreview.js","requires":[],"uses":[55],"idx":60},{"path":"../ext/packages/ux/classic/src/colorpick/SliderController.js","requires":[],"uses":[],"idx":61},{"path":"../ext/packages/ux/classic/src/colorpick/Slider.js","requires":[61],"uses":[],"idx":62},{"path":"../ext/packages/ux/classic/src/colorpick/SliderAlpha.js","requires":[62],"uses":[55],"idx":63},{"path":"../ext/packages/ux/classic/src/colorpick/SliderSaturation.js","requires":[62],"uses":[55],"idx":64},{"path":"../ext/packages/ux/classic/src/colorpick/SliderValue.js","requires":[62],"uses":[55],"idx":65},{"path":"../ext/packages/ux/classic/src/colorpick/SliderHue.js","requires":[62],"uses":[],"idx":66},{"path":"../ext/packages/ux/classic/src/colorpick/Selector.js","requires":[54,57,58,59,60,62,63,64,65,66],"uses":[56,61],"idx":67},{"path":"../ext/packages/ux/classic/src/colorpick/ButtonController.js","requires":[55,67],"uses":[],"idx":68},{"path":"../ext/packages/ux/classic/src/colorpick/Button.js","requires":[54,59,67,68],"uses":[55],"idx":69},{"path":"../ext/packages/ux/classic/src/colorpick/Field.js","requires":[54,55,59,67],"uses":[],"idx":70},{"path":"../ext/packages/ux/classic/src/dashboard/GoogleRssView.js","requires":[27],"uses":[],"idx":71},{"path":"../ext/packages/ux/classic/src/dashboard/GoogleRssPart.js","requires":[71],"uses":[],"idx":72},{"path":"../ext/packages/ux/classic/src/data/PagingMemoryProxy.js","requires":[],"uses":[],"idx":73},{"path":"../ext/packages/ux/classic/src/dd/CellFieldDropZone.js","requires":[],"uses":[],"idx":74},{"path":"../ext/packages/ux/classic/src/dd/PanelFieldDragZone.js","requires":[],"uses":[],"idx":75},{"path":"../ext/packages/ux/classic/src/desktop/Desktop.js","requires":[],"uses":[81,83],"idx":76},{"path":"../ext/packages/ux/classic/src/desktop/App.js","requires":[76],"uses":[],"idx":77},{"path":"../ext/packages/ux/classic/src/desktop/Module.js","requires":[],"uses":[],"idx":78},{"path":"../ext/packages/ux/classic/src/desktop/ShortcutModel.js","requires":[],"uses":[],"idx":79},{"path":"../ext/packages/ux/classic/src/desktop/StartMenu.js","requires":[],"uses":[],"idx":80},{"path":"../ext/packages/ux/classic/src/desktop/TaskBar.js","requires":[80],"uses":[],"idx":81},{"path":"../ext/packages/ux/classic/src/desktop/Video.js","requires":[],"uses":[],"idx":82},{"path":"../ext/packages/ux/classic/src/desktop/Wallpaper.js","requires":[],"uses":[],"idx":83},{"path":"../ext/packages/ux/classic/src/event/RecorderManager.js","requires":[],"uses":[24,25],"idx":84},{"path":"../ext/packages/ux/classic/src/form/MultiSelect.js","requires":[],"uses":[],"idx":85},{"path":"../ext/packages/ux/classic/src/form/ItemSelector.js","requires":[85],"uses":[],"idx":86},{"path":"../ext/packages/ux/classic/src/form/SearchField.js","requires":[],"uses":[],"idx":87},{"path":"../ext/packages/ux/classic/src/grid/SubTable.js","requires":[],"uses":[],"idx":88},{"path":"../ext/packages/ux/classic/src/grid/TransformGrid.js","requires":[],"uses":[],"idx":89},{"path":"../ext/packages/ux/classic/src/layout/ResponsiveColumn.js","requires":[],"uses":[],"idx":90},{"path":"../ext/packages/ux/classic/src/rating/Picker.js","requires":[],"uses":[],"idx":91},{"path":"../ext/packages/ux/classic/src/statusbar/ValidationStatus.js","requires":[],"uses":[],"idx":92},{"path":"../packages/local/common/src/BandFilter.js","requires":[],"uses":[],"idx":93},{"path":"../packages/local/common/src/SearchField.js","requires":[],"uses":[],"idx":94},{"path":"../packages/local/common/src/data/proxy/CrsfToken.js","requires":[],"uses":[],"idx":95},{"path":"../packages/local/common/src/data/proxy/Django.js","requires":[95],"uses":[],"idx":96},{"path":"../packages/local/common/src/store/MyStore.js","requires":[96],"uses":[],"idx":97},{"path":"../packages/local/common/src/store/CommentsObjects.js","requires":[97],"uses":[],"idx":98},{"path":"../packages/local/common/src/model/CommentObject.js","requires":[],"uses":[],"idx":99},{"path":"../packages/local/common/src/comment/CommentsObjectModel.js","requires":[98,99],"uses":[],"idx":100},{"path":"../packages/local/common/src/comment/CommentsObjectController.js","requires":[],"uses":[99],"idx":101},{"path":"../packages/local/common/src/comment/CommentsObject.js","requires":[44,100,101],"uses":[],"idx":102},{"path":"../packages/local/common/src/contact/ContactController.js","requires":[],"uses":[],"idx":103},{"path":"../packages/local/common/src/contact/Contact.js","requires":[103],"uses":[],"idx":104},{"path":"../packages/local/common/src/data/Settings.js","requires":[],"uses":[],"idx":105},{"path":"../packages/local/common/src/footer/FooterController.js","requires":[],"uses":[103,104],"idx":106},{"path":"../packages/local/common/src/footer/Footer.js","requires":[104,106],"uses":[],"idx":107},{"path":"../packages/local/common/src/header/ToolbarController.js","requires":[],"uses":[103,104,109,110],"idx":108},{"path":"../packages/local/common/src/help/TutorialsController.js","requires":[],"uses":[],"idx":109},{"path":"../packages/local/common/src/help/Tutorials.js","requires":[41,109],"uses":[],"idx":110},{"path":"../packages/local/common/src/header/Toolbar.js","requires":[96,104,108,110],"uses":[],"idx":111},{"path":"../packages/local/common/src/link/LinkPrompt.js","requires":[],"uses":[],"idx":112},{"path":"../packages/local/common/src/model/CommentPosition.js","requires":[],"uses":[],"idx":113},{"path":"../packages/local/common/src/model/Dataset.js","requires":[],"uses":[],"idx":114},{"path":"../packages/local/common/src/model/Filter.js","requires":[],"uses":[],"idx":115},{"path":"../packages/local/common/src/model/Footprint.js","requires":[],"uses":[],"idx":116},{"path":"../packages/local/common/src/model/Map.js","requires":[],"uses":[],"idx":117},{"path":"../packages/local/common/src/model/Release.js","requires":[],"uses":[],"idx":118},{"path":"../packages/local/common/src/model/Survey.js","requires":[],"uses":[],"idx":119},{"path":"../packages/local/common/src/model/Tag.js","requires":[],"uses":[],"idx":120},{"path":"../packages/local/common/src/model/Tile.js","requires":[],"uses":[],"idx":121},{"path":"../packages/local/common/src/statistics/Events.js","requires":[],"uses":[],"idx":122},{"path":"../packages/local/common/src/store/CSVDelimiters.js","requires":[97],"uses":[],"idx":123},{"path":"../packages/local/common/src/store/CommentsPosition.js","requires":[97,113],"uses":[],"idx":124},{"path":"../packages/local/common/src/store/Tiles.js","requires":[97],"uses":[],"idx":125},{"path":"../packages/local/common/src/store/Datasets.js","requires":[114,125],"uses":[],"idx":126},{"path":"../packages/local/common/src/store/Fields.js","requires":[97],"uses":[],"idx":127},{"path":"../packages/local/common/src/store/Filters.js","requires":[97,115],"uses":[],"idx":128},{"path":"../packages/local/common/src/store/Footprints.js","requires":[116,125],"uses":[],"idx":129},{"path":"../packages/local/common/src/store/Maps.js","requires":[96,97,117],"uses":[],"idx":130},{"path":"../packages/local/common/src/store/MyTreeStore.js","requires":[96],"uses":[],"idx":131},{"path":"../packages/local/common/src/store/Releases.js","requires":[97,118],"uses":[],"idx":132},{"path":"../packages/local/common/src/store/Surveys.js","requires":[97,119],"uses":[],"idx":133},{"path":"../packages/local/common/src/store/Tags.js","requires":[97,120],"uses":[],"idx":134},{"path":"../packages/local/common/src/store/Tutorials.js","requires":[97],"uses":[],"idx":135},{"path":"../packages/local/common/src/store/UsersSameGroup.js","requires":[97],"uses":[],"idx":136},{"path":"../packages/local/common/src/token/GetToken.js","requires":[],"uses":[],"idx":137},{"path":"../packages/local/visiomatic/src/Comments.js","requires":[],"uses":[96,113,124],"idx":138},{"path":"../packages/local/visiomatic/src/Interface.js","requires":[],"uses":[96,113,124,173,174,175],"idx":139},{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet-src.js","requires":[],"uses":[],"idx":140},{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet.js","requires":[],"uses":[],"idx":141},{"path":"../packages/local/visiomatic/src/VisiomaticModel.js","requires":[],"uses":[],"idx":142},{"path":"../packages/local/visiomatic/src/VisiomaticController.js","requires":[],"uses":[],"idx":143},{"path":"../packages/local/visiomatic/src/catalog/Catalogs.js","requires":[],"uses":[],"idx":144},{"path":"../packages/local/visiomatic/src/model/CatalogTree.js","requires":[],"uses":[],"idx":145},{"path":"../packages/local/visiomatic/src/store/CatalogsTree.js","requires":[96,131,145],"uses":[],"idx":146},{"path":"../packages/local/visiomatic/src/store/Overlays.js","requires":[],"uses":[],"idx":147},{"path":"../packages/local/visiomatic/src/model/FilterCondition.js","requires":[],"uses":[],"idx":148},{"path":"../packages/local/visiomatic/src/store/FilterConditions.js","requires":[148],"uses":[],"idx":149},{"path":"../packages/local/visiomatic/src/catalog/CatalogViewModel.js","requires":[114,145,146,147,149],"uses":[],"idx":150},{"path":"../packages/local/visiomatic/src/model/Object.js","requires":[],"uses":[],"idx":151},{"path":"../packages/local/visiomatic/src/store/Objects.js","requires":[97,151],"uses":[],"idx":152},{"path":"../packages/local/visiomatic/src/store/ExternalObjects.js","requires":[97,151],"uses":[],"idx":153},{"path":"../packages/local/visiomatic/src/model/Overlay.js","requires":[],"uses":[],"idx":154},{"path":"../packages/local/visiomatic/src/filter/FiltersController.js","requires":[],"uses":[148],"idx":155},{"path":"../packages/local/visiomatic/src/model/CatalogContent.js","requires":[],"uses":[],"idx":156},{"path":"../packages/local/visiomatic/src/store/ProductDisplayContents.js","requires":[97,156],"uses":[],"idx":157},{"path":"../packages/local/visiomatic/src/filter/FiltersModel.js","requires":[145,148,149,156,157],"uses":[],"idx":158},{"path":"../packages/local/visiomatic/src/filter/FiltersWindow.js","requires":[148,155,156,158],"uses":[],"idx":159},{"path":"../packages/local/visiomatic/src/catalog/CatalogController.js","requires":[152,153,154,159],"uses":[96,148,149,151,155,156,157,158],"idx":160},{"path":"../packages/local/visiomatic/src/catalog/Submit.js","requires":[69,70],"uses":[68],"idx":161},{"path":"../packages/local/visiomatic/src/catalog/OverlaysGrid.js","requires":[],"uses":[],"idx":162},{"path":"../packages/local/visiomatic/src/catalog/CatalogOverlayWindow.js","requires":[144,145,150,160,161,162],"uses":[],"idx":163},{"path":"../packages/local/visiomatic/src/download/FitsController.js","requires":[],"uses":[],"idx":164},{"path":"../packages/local/visiomatic/src/model/FitsFiles.js","requires":[96],"uses":[],"idx":165},{"path":"../packages/local/visiomatic/src/store/FitsFiles.js","requires":[97,165],"uses":[],"idx":166},{"path":"../packages/local/visiomatic/src/download/FitsModel.js","requires":[165,166],"uses":[],"idx":167},{"path":"../packages/local/visiomatic/src/download/DescutDownloadWindow.js","requires":[164,165,167],"uses":[],"idx":168},{"path":"../packages/local/visiomatic/src/Visiomatic.js","requires":[124,138,139,142,143,163,168],"uses":[96,145,146,147,150,160,164,165,166,167,176],"idx":169},{"path":"../packages/local/visiomatic/src/comment/CommentsObjectModel.js","requires":[98,99],"uses":[],"idx":170},{"path":"../packages/local/visiomatic/src/comment/CommentsObjectController.js","requires":[],"uses":[99],"idx":171},{"path":"../packages/local/visiomatic/src/comment/CommentsObject.js","requires":[44,170,171],"uses":[],"idx":172},{"path":"../packages/local/visiomatic/src/comment/CommentsPositionModel.js","requires":[113,124],"uses":[],"idx":173},{"path":"../packages/local/visiomatic/src/comment/CommentsPositionController.js","requires":[],"uses":[99,113],"idx":174},{"path":"../packages/local/visiomatic/src/comment/CommentsPosition.js","requires":[44,113,173,174],"uses":[],"idx":175},{"path":"../packages/local/visiomatic/src/crop/CropWindow.js","requires":[],"uses":[],"idx":176},{"path":"../packages/local/visiomatic/src/visiomatic/Jakefile.js","requires":[],"uses":[],"idx":177},{"path":"../packages/local/visiomatic/src/visiomatic/build/build.js","requires":[],"uses":[],"idx":178},{"path":"../packages/local/visiomatic/src/visiomatic/build/deps.js","requires":[],"uses":[],"idx":179},{"path":"../packages/local/visiomatic/src/visiomatic/build/hintrc.js","requires":[],"uses":[],"idx":180},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot-min.js","requires":[],"uses":[],"idx":181},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot.js","requires":[],"uses":[],"idx":182},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/excanvas.js","requires":[],"uses":[],"idx":183},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/excanvas.min.js","requires":[],"uses":[],"idx":184},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.jqplot.js","requires":[],"uses":[],"idx":185},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.jqplot.min.js","requires":[],"uses":[],"idx":186},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.js","requires":[],"uses":[],"idx":187},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/jquery.min.js","requires":[],"uses":[],"idx":188},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.BezierCurveRenderer.js","requires":[],"uses":[],"idx":189},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.BezierCurveRenderer.min.js","requires":[],"uses":[],"idx":190},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.barRenderer.js","requires":[],"uses":[],"idx":191},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.barRenderer.min.js","requires":[],"uses":[],"idx":192},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.blockRenderer.js","requires":[],"uses":[],"idx":193},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.blockRenderer.min.js","requires":[],"uses":[],"idx":194},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.bubbleRenderer.js","requires":[],"uses":[],"idx":195},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.bubbleRenderer.min.js","requires":[],"uses":[],"idx":196},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js","requires":[],"uses":[],"idx":197},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js","requires":[],"uses":[],"idx":198},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisTickRenderer.js","requires":[],"uses":[],"idx":199},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js","requires":[],"uses":[],"idx":200},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasOverlay.js","requires":[],"uses":[],"idx":201},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasOverlay.min.js","requires":[],"uses":[],"idx":202},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasTextRenderer.js","requires":[],"uses":[],"idx":203},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.canvasTextRenderer.min.js","requires":[],"uses":[],"idx":204},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.categoryAxisRenderer.js","requires":[],"uses":[],"idx":205},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.categoryAxisRenderer.min.js","requires":[],"uses":[],"idx":206},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ciParser.js","requires":[],"uses":[],"idx":207},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ciParser.min.js","requires":[],"uses":[],"idx":208},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.cursor.js","requires":[],"uses":[],"idx":209},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.cursor.min.js","requires":[],"uses":[],"idx":210},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dateAxisRenderer.js","requires":[],"uses":[],"idx":211},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dateAxisRenderer.min.js","requires":[],"uses":[],"idx":212},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.donutRenderer.js","requires":[],"uses":[],"idx":213},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.donutRenderer.min.js","requires":[],"uses":[],"idx":214},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dragable.js","requires":[],"uses":[],"idx":215},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.dragable.min.js","requires":[],"uses":[],"idx":216},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.enhancedLegendRenderer.js","requires":[],"uses":[],"idx":217},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.enhancedLegendRenderer.min.js","requires":[],"uses":[],"idx":218},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.funnelRenderer.js","requires":[],"uses":[],"idx":219},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.funnelRenderer.min.js","requires":[],"uses":[],"idx":220},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.highlighter.js","requires":[],"uses":[],"idx":221},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.highlighter.min.js","requires":[],"uses":[],"idx":222},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.json2.js","requires":[],"uses":[],"idx":223},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.json2.min.js","requires":[],"uses":[],"idx":224},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.logAxisRenderer.js","requires":[],"uses":[],"idx":225},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.logAxisRenderer.min.js","requires":[],"uses":[],"idx":226},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoAxisRenderer.js","requires":[],"uses":[],"idx":227},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoAxisRenderer.min.js","requires":[],"uses":[],"idx":228},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoRenderer.js","requires":[],"uses":[],"idx":229},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mekkoRenderer.min.js","requires":[],"uses":[],"idx":230},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.meterGaugeRenderer.js","requires":[],"uses":[],"idx":231},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.meterGaugeRenderer.min.js","requires":[],"uses":[],"idx":232},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mobile.js","requires":[],"uses":[],"idx":233},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.mobile.min.js","requires":[],"uses":[],"idx":234},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ohlcRenderer.js","requires":[],"uses":[],"idx":235},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.ohlcRenderer.min.js","requires":[],"uses":[],"idx":236},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pieRenderer.js","requires":[],"uses":[],"idx":237},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pieRenderer.min.js","requires":[],"uses":[],"idx":238},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pointLabels.js","requires":[],"uses":[],"idx":239},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pointLabels.min.js","requires":[],"uses":[],"idx":240},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidAxisRenderer.js","requires":[],"uses":[],"idx":241},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidAxisRenderer.min.js","requires":[],"uses":[],"idx":242},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidGridRenderer.js","requires":[],"uses":[],"idx":243},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidGridRenderer.min.js","requires":[],"uses":[],"idx":244},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidRenderer.js","requires":[],"uses":[],"idx":245},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.pyramidRenderer.min.js","requires":[],"uses":[],"idx":246},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.trendline.js","requires":[],"uses":[],"idx":247},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot/plugins/jqplot.trendline.min.js","requires":[],"uses":[],"idx":248},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jquery-min.js","requires":[],"uses":[],"idx":249},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jquery.js","requires":[],"uses":[],"idx":250},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum-min.js","requires":[],"uses":[],"idx":251},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum.js","requires":[],"uses":[],"idx":252},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic-src.js","requires":[],"uses":[],"idx":253},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic.js","requires":[],"uses":[],"idx":254},{"path":"../packages/local/visiomatic/src/visiomatic/src/CRS.WCS.js","requires":[],"uses":[],"idx":255},{"path":"../packages/local/visiomatic/src/visiomatic/src/Catalog.js","requires":[],"uses":[],"idx":256},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Attribution.Logos.js","requires":[],"uses":[],"idx":257},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.ExtraMap.js","requires":[],"uses":[],"idx":258},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.FullScreen.js","requires":[],"uses":[],"idx":259},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Catalog.js","requires":[],"uses":[],"idx":260},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Channel.js","requires":[],"uses":[],"idx":261},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Doc.js","requires":[],"uses":[],"idx":262},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Image.js","requires":[],"uses":[],"idx":263},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Overlay.js","requires":[],"uses":[],"idx":264},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Profile.js","requires":[],"uses":[],"idx":265},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Region.js","requires":[],"uses":[],"idx":266},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.Snapshot.js","requires":[],"uses":[],"idx":267},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.IIP.js","requires":[],"uses":[],"idx":268},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Layers.IIP.js","requires":[],"uses":[],"idx":269},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.LineaOverlay.js","requires":[],"uses":[],"idx":270},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Reticle.js","requires":[],"uses":[],"idx":271},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Scale.WCS.js","requires":[],"uses":[],"idx":272},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.Sidebar.js","requires":[],"uses":[],"idx":273},{"path":"../packages/local/visiomatic/src/visiomatic/src/Control.WCS.js","requires":[],"uses":[],"idx":274},{"path":"../packages/local/visiomatic/src/visiomatic/src/Ellipse.js","requires":[],"uses":[],"idx":275},{"path":"../packages/local/visiomatic/src/visiomatic/src/EllipseMarker.js","requires":[],"uses":[],"idx":276},{"path":"../packages/local/visiomatic/src/visiomatic/src/FileTree.js","requires":[],"uses":[],"idx":277},{"path":"../packages/local/visiomatic/src/visiomatic/src/FlipSwitch.js","requires":[],"uses":[],"idx":278},{"path":"../packages/local/visiomatic/src/visiomatic/src/IIPUtils.js","requires":[],"uses":[],"idx":279},{"path":"../packages/local/visiomatic/src/visiomatic/src/Projection.WCS.js","requires":[],"uses":[],"idx":280},{"path":"../packages/local/visiomatic/src/visiomatic/src/RGB.js","requires":[],"uses":[],"idx":281},{"path":"../packages/local/visiomatic/src/visiomatic/src/SpinBox.js","requires":[],"uses":[],"idx":282},{"path":"../packages/local/visiomatic/src/visiomatic/src/TileLayer.IIP.js","requires":[],"uses":[],"idx":283},{"path":"../packages/local/visiomatic/src/visiomatic/src/copyright.js","requires":[],"uses":[],"idx":284},{"path":"app/Application.js","requires":[105,122],"uses":[],"idx":285},{"path":"app/model/Association.js","requires":[96],"uses":[],"idx":286},{"path":"app/model/Bookmarked.js","requires":[96],"uses":[],"idx":287},{"path":"app/model/Catalog.js","requires":[96],"uses":[],"idx":288},{"path":"app/model/CatalogColumn.js","requires":[],"uses":[],"idx":289},{"path":"app/model/CatalogContent.js","requires":[],"uses":[],"idx":290},{"path":"app/model/CatalogObject.js","requires":[],"uses":[],"idx":291},{"path":"app/model/CatalogTree.js","requires":[],"uses":[],"idx":292},{"path":"app/model/ContentSetting.js","requires":[],"uses":[],"idx":293},{"path":"app/model/CurrentSetting.js","requires":[96],"uses":[],"idx":294},{"path":"app/model/Cutout.js","requires":[],"uses":[],"idx":295},{"path":"app/model/CutoutJob.js","requires":[96],"uses":[],"idx":296},{"path":"app/model/FilterCondition.js","requires":[],"uses":[],"idx":297},{"path":"app/model/FilterSet.js","requires":[96],"uses":[],"idx":298},{"path":"app/model/Object.js","requires":[],"uses":[],"idx":299},{"path":"app/model/Permission.js","requires":[],"uses":[],"idx":300},{"path":"app/model/PermissionUser.js","requires":[],"uses":[],"idx":301},{"path":"app/model/PermissionWorkgroup.js","requires":[],"uses":[],"idx":302},{"path":"app/model/Product.js","requires":[96],"uses":[],"idx":303},{"path":"app/model/ProductRelated.js","requires":[96],"uses":[],"idx":304},{"path":"app/model/Rating.js","requires":[96],"uses":[],"idx":305},{"path":"app/model/Reject.js","requires":[96],"uses":[],"idx":306},{"path":"app/model/Setting.js","requires":[96],"uses":[],"idx":307},{"path":"app/model/Workgroup.js","requires":[],"uses":[],"idx":308},{"path":"app/model/WorkgroupUser.js","requires":[],"uses":[],"idx":309},{"path":"app/store/Association.js","requires":[97,286],"uses":[],"idx":310},{"path":"app/store/Bookmarks.js","requires":[97,287],"uses":[],"idx":311},{"path":"app/store/Catalogs.js","requires":[96,97,288],"uses":[],"idx":312},{"path":"app/store/CatalogsTree.js","requires":[96,131,292],"uses":[],"idx":313},{"path":"app/store/ClassContent.js","requires":[97,289],"uses":[],"idx":314},{"path":"app/store/CoaddObjects.js","requires":[291],"uses":[],"idx":315},{"path":"app/store/ContentSettings.js","requires":[97,293],"uses":[],"idx":316},{"path":"app/store/CurrentSettings.js","requires":[97,294],"uses":[],"idx":317},{"path":"app/store/CutoutJobs.js","requires":[97,296],"uses":[],"idx":318},{"path":"app/store/Cutouts.js","requires":[97,295],"uses":[],"idx":319},{"path":"app/store/FilterConditions.js","requires":[97,297],"uses":[],"idx":320},{"path":"app/store/FilterSets.js","requires":[97,298],"uses":[],"idx":321},{"path":"app/store/Objects.js","requires":[97,299],"uses":[],"idx":322},{"path":"app/store/PermissionUsers.js","requires":[97,301],"uses":[],"idx":323},{"path":"app/store/PermissionWorkgroups.js","requires":[97,302],"uses":[],"idx":324},{"path":"app/store/Permissions.js","requires":[97,300],"uses":[],"idx":325},{"path":"app/store/ProductAssociation.js","requires":[97,289],"uses":[],"idx":326},{"path":"app/store/ProductClass.js","requires":[96,97],"uses":[],"idx":327},{"path":"app/store/ProductContent.js","requires":[97,289],"uses":[],"idx":328},{"path":"app/store/ProductDisplayContents.js","requires":[97,290],"uses":[],"idx":329},{"path":"app/store/ProductRelateds.js","requires":[96,97,304],"uses":[],"idx":330},{"path":"app/store/Products.js","requires":[96,97,303],"uses":[],"idx":331},{"path":"app/store/Settings.js","requires":[97,307],"uses":[],"idx":332},{"path":"app/store/WorkgroupUsers.js","requires":[97,309],"uses":[],"idx":333},{"path":"app/store/Workgroups.js","requires":[97,308],"uses":[],"idx":334},{"path":"app/view/association/AssociationController.js","requires":[286,289],"uses":[96,310],"idx":335},{"path":"app/view/association/AssociationModel.js","requires":[288,289,290,294,310,312,314,326,328,329],"uses":[],"idx":336},{"path":"app/view/association/CellDragDrop.js","requires":[29],"uses":[],"idx":337},{"path":"app/view/association/ClassContent.js","requires":[],"uses":[],"idx":338},{"path":"app/view/association/ClassContentForm.js","requires":[],"uses":[],"idx":339},{"path":"app/view/association/Grid.js","requires":[],"uses":[],"idx":340},{"path":"app/view/association/Panel.js","requires":[29,74,94,288,289,290,335,336,337,338,339,340],"uses":[],"idx":341},{"path":"app/view/catalog/CSVController.js","requires":[312,341],"uses":[],"idx":342},{"path":"app/view/catalog/CSVForm.js","requires":[132,327,342],"uses":[105],"idx":343},{"path":"app/view/catalog/DatabaseController.js","requires":[312,341],"uses":[288,289,290,314,326,328,329,335,336],"idx":344},{"path":"app/view/catalog/DatabaseForm.js","requires":[132,327,344],"uses":[105],"idx":345},{"path":"app/view/catalog/RegisterWindow.js","requires":[132,327,343,345],"uses":[105,342,344],"idx":346},{"path":"app/view/catalog/CatalogController.js","requires":[287,346],"uses":[96],"idx":347},{"path":"app/view/catalog/CatalogModel.js","requires":[287,288,292,303,311,313,331],"uses":[],"idx":348},{"path":"app/view/catalog/Properties.js","requires":[],"uses":[],"idx":349},{"path":"app/view/catalog/Tree.js","requires":[287,292,303,346,347,348],"uses":[],"idx":350},{"path":"app/view/home/HomeController.js","requires":[],"uses":[],"idx":351},{"path":"app/view/home/HomeModel.js","requires":[313],"uses":[],"idx":352},{"path":"app/view/home/Home.js","requires":[350,351,352],"uses":[96,287,292,303,311,313,331,347,348],"idx":353},{"path":"app/view/wizard/WizardController.js","requires":[],"uses":[],"idx":354},{"path":"app/view/wizard/WizardModel.js","requires":[288,289,294,326,328],"uses":[],"idx":355},{"path":"app/view/settings/SettingsController.js","requires":[],"uses":[],"idx":356},{"path":"app/view/settings/SettingWindow.js","requires":[356],"uses":[],"idx":357},{"path":"app/view/settings/ColumnsController.js","requires":[307,357],"uses":[96,293,294,356],"idx":358},{"path":"app/view/settings/ColumnsModel.js","requires":[288,290,293,294,307,316,329],"uses":[],"idx":359},{"path":"app/view/settings/Columns.js","requires":[290,293,294,307,356,358,359],"uses":[94],"idx":360},{"path":"app/view/settings/PermissionController.js","requires":[],"uses":[300,308,309,363,364,365],"idx":361},{"path":"app/view/settings/PermissionModel.js","requires":[136,288,300,301,302,308,309,323,324,325,333,334],"uses":[],"idx":362},{"path":"app/view/settings/PermissionUserWindow.js","requires":[],"uses":[],"idx":363},{"path":"app/view/settings/PermissionWorkgroupWindow.js","requires":[],"uses":[],"idx":364},{"path":"app/view/settings/AddWorkgroupWindow.js","requires":[],"uses":[],"idx":365},{"path":"app/view/settings/Permission.js","requires":[300,301,302,308,309,361,362,363,364,365],"uses":[],"idx":366},{"path":"app/view/settings/SystemMembersController.js","requires":[],"uses":[],"idx":367},{"path":"app/view/settings/SystemMembersModel.js","requires":[288,290,303,304,329,330,331],"uses":[],"idx":368},{"path":"app/view/settings/SystemMembers.js","requires":[290,303,304,367,368],"uses":[],"idx":369},{"path":"app/view/settings/CutoutController.js","requires":[],"uses":[96,290,296,318,329,373,374,375],"idx":370},{"path":"app/view/settings/CutoutModel.js","requires":[294,296,318],"uses":[],"idx":371},{"path":"app/view/settings/CutoutJobs.js","requires":[],"uses":[],"idx":372},{"path":"app/view/settings/CutoutJobController.js","requires":[],"uses":[96,296],"idx":373},{"path":"app/view/settings/CutoutJobModel.js","requires":[290,296,318,329],"uses":[],"idx":374},{"path":"app/view/settings/CutoutJobForm.js","requires":[290,296,373,374],"uses":[70,105],"idx":375},{"path":"app/view/settings/Cutout.js","requires":[296,370,371,372,375],"uses":[],"idx":376},{"path":"app/view/wizard/Wizard.js","requires":[288,289,290,293,294,300,301,302,303,304,307,308,309,341,354,355,360,366,369,376],"uses":[],"idx":377},{"path":"app/view/objects/FiltersController.js","requires":[],"uses":[96,290,297,298],"idx":378},{"path":"app/view/objects/FiltersModel.js","requires":[288,290,297,298,320,321,329],"uses":[],"idx":379},{"path":"app/view/objects/FiltersWindow.js","requires":[290,297,298,378,379],"uses":[],"idx":380},{"path":"app/view/objects/SaveCatalogController.js","requires":[],"uses":[],"idx":381},{"path":"app/view/objects/SaveCatalogModel.js","requires":[288,289,298,321,328],"uses":[],"idx":382},{"path":"app/view/objects/SaveCatalogWindow.js","requires":[289,298,381,382],"uses":[],"idx":383},{"path":"app/view/objects/DownloadWindow.js","requires":[],"uses":[],"idx":384},{"path":"app/view/objects/CutoutJobDetailWindow.js","requires":[],"uses":[],"idx":385},{"path":"app/view/objects/ObjectsController.js","requires":[172,305,306,341,375,377,380,383,384,385],"uses":[96,98,136,170,171,288,289,290,293,294,296,297,298,300,301,302,303,304,307,308,309,312,314,316,317,318,320,321,323,324,325,326,328,329,330,331,332,333,334,335,336,354,355,358,359,360,361,362,366,367,368,369,373,374,378,379,381,382],"idx":386},{"path":"app/view/objects/ObjectsModel.js","requires":[288,290,291,294,295,296,297,298,299,317,318,319,320,321,322,329],"uses":[],"idx":387},{"path":"app/view/objects/Mosaic.js","requires":[],"uses":[],"idx":388},{"path":"app/view/objects/Grid.js","requires":[91],"uses":[],"idx":389},{"path":"app/view/objects/TabPanel.js","requires":[388,389],"uses":[],"idx":390},{"path":"app/view/preview/PreviewController.js","requires":[113,124,172],"uses":[96,98,170,171,173,174,175],"idx":391},{"path":"app/view/preview/PreviewModel.js","requires":[113,114,118,120,126,132,134,299,304,322,330],"uses":[],"idx":392},{"path":"app/view/preview/Visiomatic.js","requires":[169],"uses":[],"idx":393},{"path":"app/view/preview/Preview.js","requires":[91,113,114,118,120,299,304,391,392,393],"uses":[],"idx":394},{"path":"app/view/objects/Panel.js","requires":[113,114,118,120,288,290,294,295,297,298,299,304,386,387,388,390,394],"uses":[96],"idx":395},{"path":"app/view/main/MainController.js","requires":[353,395],"uses":[96,113,114,118,120,124,126,132,134,142,143,288,290,294,295,297,298,299,304,312,317,319,320,321,322,329,330,351,352,386,387,388,389,391,392,393,394],"idx":396},{"path":"app/view/main/MainModel.js","requires":[],"uses":[],"idx":397},{"path":"app/view/main/Main.js","requires":[107,111,396,397],"uses":[],"idx":398},{"path":"app.js","requires":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,106,107,108,111,285,396,397,398],"uses":[],"idx":399},{"path":"../build/temp/development/Target/sencha-compiler/app/full-page-master-bundle.js","requires":[399],"uses":[],"idx":400}],"classes":{"Ext.AbstractManager":{"alias":[],"alternates":[]},"Ext.Action":{"alias":[],"alternates":[]},"Ext.Ajax":{"alias":[],"alternates":[]},"Ext.AnimationQueue":{"alias":[],"alternates":[]},"Ext.Component":{"alias":["widget.box","widget.component"],"alternates":["Ext.AbstractComponent"]},"Ext.ComponentLoader":{"alias":[],"alternates":[]},"Ext.ComponentManager":{"alias":[],"alternates":["Ext.ComponentMgr"]},"Ext.ComponentQuery":{"alias":[],"alternates":[]},"Ext.Deferred":{"alias":[],"alternates":[]},"Ext.Editor":{"alias":["widget.editor"],"alternates":[]},"Ext.ElementLoader":{"alias":[],"alternates":[]},"Ext.EventManager":{"alias":[],"alternates":[]},"Ext.Evented":{"alias":[],"alternates":["Ext.EventedBase"]},"Ext.GlobalEvents":{"alias":[],"alternates":["Ext.globalEvents"]},"Ext.Img":{"alias":["widget.image","widget.imagecomponent"],"alternates":[]},"Ext.LoadMask":{"alias":["widget.loadmask"],"alternates":[]},"Ext.Mixin":{"alias":[],"alternates":[]},"Ext.Progress":{"alias":["widget.progress","widget.progressbarwidget"],"alternates":["Ext.ProgressBarWidget"]},"Ext.ProgressBar":{"alias":["widget.progressbar"],"alternates":[]},"Ext.ProgressBase":{"alias":[],"alternates":[]},"Ext.Promise":{"alias":[],"alternates":[]},"Ext.TaskQueue":{"alias":[],"alternates":[]},"Ext.Template":{"alias":[],"alternates":[]},"Ext.Widget":{"alias":["widget.widget"],"alternates":[]},"Ext.XTemplate":{"alias":[],"alternates":[]},"Ext.ZIndexManager":{"alias":[],"alternates":["Ext.WindowGroup"]},"Ext.app.Application":{"alias":[],"alternates":[]},"Ext.app.BaseController":{"alias":[],"alternates":[]},"Ext.app.Controller":{"alias":[],"alternates":[]},"Ext.app.EventBus":{"alias":[],"alternates":[]},"Ext.app.EventDomain":{"alias":[],"alternates":[]},"Ext.app.Profile":{"alias":[],"alternates":[]},"Ext.app.Util":{"alias":[],"alternates":[]},"Ext.app.ViewController":{"alias":[],"alternates":[]},"Ext.app.ViewModel":{"alias":["viewmodel.default"],"alternates":[]},"Ext.app.bind.AbstractStub":{"alias":[],"alternates":[]},"Ext.app.bind.BaseBinding":{"alias":[],"alternates":[]},"Ext.app.bind.Binding":{"alias":[],"alternates":[]},"Ext.app.bind.Formula":{"alias":[],"alternates":[]},"Ext.app.bind.LinkStub":{"alias":[],"alternates":[]},"Ext.app.bind.Multi":{"alias":[],"alternates":[]},"Ext.app.bind.RootStub":{"alias":[],"alternates":[]},"Ext.app.bind.Stub":{"alias":[],"alternates":[]},"Ext.app.bind.Template":{"alias":[],"alternates":[]},"Ext.app.bind.TemplateBinding":{"alias":[],"alternates":[]},"Ext.app.domain.Component":{"alias":[],"alternates":[]},"Ext.app.domain.Controller":{"alias":[],"alternates":[]},"Ext.app.domain.Direct":{"alias":[],"alternates":[]},"Ext.app.domain.Global":{"alias":[],"alternates":[]},"Ext.app.domain.Store":{"alias":[],"alternates":[]},"Ext.app.domain.View":{"alias":[],"alternates":[]},"Ext.app.route.Queue":{"alias":[],"alternates":[]},"Ext.app.route.Route":{"alias":[],"alternates":[]},"Ext.app.route.Router":{"alias":[],"alternates":[]},"Ext.button.Button":{"alias":["widget.button"],"alternates":["Ext.Button"]},"Ext.button.Cycle":{"alias":["widget.cycle"],"alternates":["Ext.CycleButton"]},"Ext.button.Manager":{"alias":[],"alternates":["Ext.ButtonToggleManager"]},"Ext.button.Segmented":{"alias":["widget.segmentedbutton"],"alternates":[]},"Ext.button.Split":{"alias":["widget.splitbutton"],"alternates":["Ext.SplitButton"]},"Ext.container.ButtonGroup":{"alias":["widget.buttongroup"],"alternates":["Ext.ButtonGroup"]},"Ext.container.Container":{"alias":["widget.container"],"alternates":["Ext.Container","Ext.AbstractContainer"]},"Ext.container.DockingContainer":{"alias":[],"alternates":[]},"Ext.container.Monitor":{"alias":[],"alternates":[]},"Ext.container.Viewport":{"alias":["widget.viewport"],"alternates":["Ext.Viewport"]},"Ext.dashboard.Column":{"alias":["widget.dashboard-column"],"alternates":[]},"Ext.dashboard.Dashboard":{"alias":["widget.dashboard"],"alternates":[]},"Ext.dashboard.DropZone":{"alias":[],"alternates":[]},"Ext.dashboard.Panel":{"alias":["widget.dashboard-panel"],"alternates":[]},"Ext.dashboard.Part":{"alias":["part.part"],"alternates":[]},"Ext.data.AbstractStore":{"alias":[],"alternates":[]},"Ext.data.ArrayStore":{"alias":["store.array"],"alternates":["Ext.data.SimpleStore"]},"Ext.data.Batch":{"alias":[],"alternates":[]},"Ext.data.BufferedStore":{"alias":["store.buffered"],"alternates":[]},"Ext.data.ChainedStore":{"alias":["store.chained"],"alternates":[]},"Ext.data.Connection":{"alias":[],"alternates":[]},"Ext.data.DirectStore":{"alias":["store.direct"],"alternates":[]},"Ext.data.Error":{"alias":[],"alternates":[]},"Ext.data.ErrorCollection":{"alias":[],"alternates":["Ext.data.Errors"]},"Ext.data.JsonP":{"alias":[],"alternates":[]},"Ext.data.JsonPStore":{"alias":["store.jsonp"],"alternates":[]},"Ext.data.JsonStore":{"alias":["store.json"],"alternates":[]},"Ext.data.LocalStore":{"alias":[],"alternates":[]},"Ext.data.Model":{"alias":[],"alternates":["Ext.data.Record"]},"Ext.data.ModelManager":{"alias":[],"alternates":["Ext.ModelMgr"]},"Ext.data.NodeInterface":{"alias":[],"alternates":[]},"Ext.data.NodeStore":{"alias":["store.node"],"alternates":[]},"Ext.data.PageMap":{"alias":[],"alternates":[]},"Ext.data.ProxyStore":{"alias":[],"alternates":[]},"Ext.data.Request":{"alias":[],"alternates":[]},"Ext.data.ResultSet":{"alias":[],"alternates":[]},"Ext.data.Session":{"alias":[],"alternates":[]},"Ext.data.SortTypes":{"alias":[],"alternates":[]},"Ext.data.Store":{"alias":["store.store"],"alternates":[]},"Ext.data.StoreManager":{"alias":[],"alternates":["Ext.StoreMgr","Ext.data.StoreMgr","Ext.StoreManager"]},"Ext.data.TreeModel":{"alias":[],"alternates":[]},"Ext.data.TreeStore":{"alias":["store.tree"],"alternates":[]},"Ext.data.Types":{"alias":[],"alternates":[]},"Ext.data.Validation":{"alias":[],"alternates":[]},"Ext.data.XmlStore":{"alias":["store.xml"],"alternates":[]},"Ext.data.field.Boolean":{"alias":["data.field.bool","data.field.boolean"],"alternates":[]},"Ext.data.field.Date":{"alias":["data.field.date"],"alternates":[]},"Ext.data.field.Field":{"alias":["data.field.auto"],"alternates":["Ext.data.Field"]},"Ext.data.field.Integer":{"alias":["data.field.int","data.field.integer"],"alternates":[]},"Ext.data.field.Number":{"alias":["data.field.float","data.field.number"],"alternates":[]},"Ext.data.field.String":{"alias":["data.field.string"],"alternates":[]},"Ext.data.flash.BinaryXhr":{"alias":[],"alternates":[]},"Ext.data.identifier.Generator":{"alias":["data.identifier.default"],"alternates":[]},"Ext.data.identifier.Negative":{"alias":["data.identifier.negative"],"alternates":[]},"Ext.data.identifier.Sequential":{"alias":["data.identifier.sequential"],"alternates":[]},"Ext.data.identifier.Uuid":{"alias":["data.identifier.uuid"],"alternates":[]},"Ext.data.matrix.Matrix":{"alias":[],"alternates":[]},"Ext.data.matrix.Side":{"alias":[],"alternates":[]},"Ext.data.matrix.Slice":{"alias":[],"alternates":[]},"Ext.data.operation.Create":{"alias":["data.operation.create"],"alternates":[]},"Ext.data.operation.Destroy":{"alias":["data.operation.destroy"],"alternates":[]},"Ext.data.operation.Operation":{"alias":[],"alternates":["Ext.data.Operation"]},"Ext.data.operation.Read":{"alias":["data.operation.read"],"alternates":[]},"Ext.data.operation.Update":{"alias":["data.operation.update"],"alternates":[]},"Ext.data.proxy.Ajax":{"alias":["proxy.ajax"],"alternates":["Ext.data.HttpProxy","Ext.data.AjaxProxy"]},"Ext.data.proxy.Client":{"alias":[],"alternates":["Ext.data.ClientProxy"]},"Ext.data.proxy.Direct":{"alias":["proxy.direct"],"alternates":["Ext.data.DirectProxy"]},"Ext.data.proxy.JsonP":{"alias":["proxy.jsonp","proxy.scripttag"],"alternates":["Ext.data.ScriptTagProxy"]},"Ext.data.proxy.LocalStorage":{"alias":["proxy.localstorage"],"alternates":["Ext.data.LocalStorageProxy"]},"Ext.data.proxy.Memory":{"alias":["proxy.memory"],"alternates":["Ext.data.MemoryProxy"]},"Ext.data.proxy.Proxy":{"alias":["proxy.proxy"],"alternates":["Ext.data.DataProxy","Ext.data.Proxy"]},"Ext.data.proxy.Rest":{"alias":["proxy.rest"],"alternates":["Ext.data.RestProxy"]},"Ext.data.proxy.Server":{"alias":["proxy.server"],"alternates":["Ext.data.ServerProxy"]},"Ext.data.proxy.SessionStorage":{"alias":["proxy.sessionstorage"],"alternates":["Ext.data.SessionStorageProxy"]},"Ext.data.proxy.WebStorage":{"alias":[],"alternates":["Ext.data.WebStorageProxy"]},"Ext.data.reader.Array":{"alias":["reader.array"],"alternates":["Ext.data.ArrayReader"]},"Ext.data.reader.Json":{"alias":["reader.json"],"alternates":["Ext.data.JsonReader"]},"Ext.data.reader.Reader":{"alias":["reader.base"],"alternates":["Ext.data.Reader","Ext.data.DataReader"]},"Ext.data.reader.Xml":{"alias":["reader.xml"],"alternates":["Ext.data.XmlReader"]},"Ext.data.request.Ajax":{"alias":["request.ajax"],"alternates":[]},"Ext.data.request.Base":{"alias":[],"alternates":[]},"Ext.data.request.Form":{"alias":["request.form"],"alternates":[]},"Ext.data.schema.Association":{"alias":[],"alternates":[]},"Ext.data.schema.ManyToMany":{"alias":[],"alternates":[]},"Ext.data.schema.ManyToOne":{"alias":[],"alternates":[]},"Ext.data.schema.Namer":{"alias":["namer.default"],"alternates":[]},"Ext.data.schema.OneToOne":{"alias":[],"alternates":[]},"Ext.data.schema.Role":{"alias":[],"alternates":[]},"Ext.data.schema.Schema":{"alias":["schema.default"],"alternates":[]},"Ext.data.session.BatchVisitor":{"alias":[],"alternates":[]},"Ext.data.session.ChangesVisitor":{"alias":[],"alternates":[]},"Ext.data.session.ChildChangesVisitor":{"alias":[],"alternates":[]},"Ext.data.validator.Bound":{"alias":["data.validator.bound"],"alternates":[]},"Ext.data.validator.Email":{"alias":["data.validator.email"],"alternates":[]},"Ext.data.validator.Exclusion":{"alias":["data.validator.exclusion"],"alternates":[]},"Ext.data.validator.Format":{"alias":["data.validator.format"],"alternates":[]},"Ext.data.validator.Inclusion":{"alias":["data.validator.inclusion"],"alternates":[]},"Ext.data.validator.Length":{"alias":["data.validator.length"],"alternates":[]},"Ext.data.validator.List":{"alias":["data.validator.list"],"alternates":[]},"Ext.data.validator.Presence":{"alias":["data.validator.presence"],"alternates":[]},"Ext.data.validator.Range":{"alias":["data.validator.range"],"alternates":[]},"Ext.data.validator.Validator":{"alias":["data.validator.base"],"alternates":[]},"Ext.data.writer.Json":{"alias":["writer.json"],"alternates":["Ext.data.JsonWriter"]},"Ext.data.writer.Writer":{"alias":["writer.base"],"alternates":["Ext.data.DataWriter","Ext.data.Writer"]},"Ext.data.writer.Xml":{"alias":["writer.xml"],"alternates":["Ext.data.XmlWriter"]},"Ext.dd.DD":{"alias":[],"alternates":[]},"Ext.dd.DDProxy":{"alias":[],"alternates":[]},"Ext.dd.DDTarget":{"alias":[],"alternates":[]},"Ext.dd.DragDrop":{"alias":[],"alternates":[]},"Ext.dd.DragDropManager":{"alias":[],"alternates":["Ext.dd.DragDropMgr","Ext.dd.DDM"]},"Ext.dd.DragSource":{"alias":[],"alternates":[]},"Ext.dd.DragTracker":{"alias":[],"alternates":[]},"Ext.dd.DragZone":{"alias":[],"alternates":[]},"Ext.dd.DropTarget":{"alias":[],"alternates":[]},"Ext.dd.DropZone":{"alias":[],"alternates":[]},"Ext.dd.Registry":{"alias":[],"alternates":[]},"Ext.dd.ScrollManager":{"alias":[],"alternates":[]},"Ext.dd.StatusProxy":{"alias":[],"alternates":[]},"Ext.direct.Event":{"alias":["direct.event"],"alternates":[]},"Ext.direct.ExceptionEvent":{"alias":["direct.exception"],"alternates":[]},"Ext.direct.JsonProvider":{"alias":["direct.jsonprovider"],"alternates":[]},"Ext.direct.Manager":{"alias":[],"alternates":[]},"Ext.direct.PollingProvider":{"alias":["direct.pollingprovider"],"alternates":[]},"Ext.direct.Provider":{"alias":["direct.provider"],"alternates":[]},"Ext.direct.RemotingEvent":{"alias":["direct.rpc"],"alternates":[]},"Ext.direct.RemotingMethod":{"alias":[],"alternates":[]},"Ext.direct.RemotingProvider":{"alias":["direct.remotingprovider"],"alternates":[]},"Ext.direct.Transaction":{"alias":["direct.transaction"],"alternates":[]},"Ext.dom.ButtonElement":{"alias":[],"alternates":[]},"Ext.dom.CompositeElement":{"alias":[],"alternates":["Ext.CompositeElement"]},"Ext.dom.CompositeElementLite":{"alias":[],"alternates":["Ext.CompositeElementLite"]},"Ext.dom.Element":{"alias":[],"alternates":["Ext.Element"]},"Ext.dom.ElementEvent":{"alias":[],"alternates":[]},"Ext.dom.Fly":{"alias":[],"alternates":["Ext.dom.Element.Fly"]},"Ext.dom.GarbageCollector":{"alias":[],"alternates":[]},"Ext.dom.Helper":{"alias":[],"alternates":["Ext.DomHelper","Ext.core.DomHelper"]},"Ext.dom.Layer":{"alias":[],"alternates":["Ext.Layer"]},"Ext.dom.Query":{"alias":[],"alternates":["Ext.core.DomQuery","Ext.DomQuery"]},"Ext.dom.Shadow":{"alias":[],"alternates":["Ext.Shadow"]},"Ext.dom.Shim":{"alias":[],"alternates":[]},"Ext.dom.Underlay":{"alias":[],"alternates":[]},"Ext.dom.UnderlayPool":{"alias":[],"alternates":[]},"Ext.event.Event":{"alias":[],"alternates":["Ext.EventObjectImpl"]},"Ext.event.gesture.DoubleTap":{"alias":[],"alternates":[]},"Ext.event.gesture.Drag":{"alias":[],"alternates":[]},"Ext.event.gesture.EdgeSwipe":{"alias":[],"alternates":[]},"Ext.event.gesture.LongPress":{"alias":[],"alternates":[]},"Ext.event.gesture.MultiTouch":{"alias":[],"alternates":[]},"Ext.event.gesture.Pinch":{"alias":[],"alternates":[]},"Ext.event.gesture.Recognizer":{"alias":[],"alternates":[]},"Ext.event.gesture.Rotate":{"alias":[],"alternates":[]},"Ext.event.gesture.SingleTouch":{"alias":[],"alternates":[]},"Ext.event.gesture.Swipe":{"alias":[],"alternates":[]},"Ext.event.gesture.Tap":{"alias":[],"alternates":[]},"Ext.event.publisher.Dom":{"alias":[],"alternates":[]},"Ext.event.publisher.ElementPaint":{"alias":[],"alternates":[]},"Ext.event.publisher.ElementSize":{"alias":[],"alternates":[]},"Ext.event.publisher.Focus":{"alias":[],"alternates":[]},"Ext.event.publisher.Gesture":{"alias":[],"alternates":[]},"Ext.event.publisher.MouseEnterLeave":{"alias":[],"alternates":[]},"Ext.event.publisher.Publisher":{"alias":[],"alternates":[]},"Ext.flash.Component":{"alias":["widget.flash"],"alternates":["Ext.FlashComponent"]},"Ext.form.Basic":{"alias":[],"alternates":["Ext.form.BasicForm"]},"Ext.form.CheckboxGroup":{"alias":["widget.checkboxgroup"],"alternates":[]},"Ext.form.CheckboxManager":{"alias":[],"alternates":[]},"Ext.form.FieldAncestor":{"alias":[],"alternates":[]},"Ext.form.FieldContainer":{"alias":["widget.fieldcontainer"],"alternates":[]},"Ext.form.FieldSet":{"alias":["widget.fieldset"],"alternates":[]},"Ext.form.Label":{"alias":["widget.label"],"alternates":[]},"Ext.form.Labelable":{"alias":[],"alternates":[]},"Ext.form.Panel":{"alias":["widget.form"],"alternates":["Ext.FormPanel","Ext.form.FormPanel"]},"Ext.form.RadioGroup":{"alias":["widget.radiogroup"],"alternates":[]},"Ext.form.RadioManager":{"alias":[],"alternates":[]},"Ext.form.action.Action":{"alias":[],"alternates":["Ext.form.Action"]},"Ext.form.action.DirectAction":{"alias":[],"alternates":[]},"Ext.form.action.DirectLoad":{"alias":["formaction.directload"],"alternates":["Ext.form.Action.DirectLoad"]},"Ext.form.action.DirectSubmit":{"alias":["formaction.directsubmit"],"alternates":["Ext.form.Action.DirectSubmit"]},"Ext.form.action.Load":{"alias":["formaction.load"],"alternates":["Ext.form.Action.Load"]},"Ext.form.action.StandardSubmit":{"alias":["formaction.standardsubmit"],"alternates":[]},"Ext.form.action.Submit":{"alias":["formaction.submit"],"alternates":["Ext.form.Action.Submit"]},"Ext.form.field.Base":{"alias":["widget.field"],"alternates":["Ext.form.Field","Ext.form.BaseField"]},"Ext.form.field.Checkbox":{"alias":["widget.checkbox","widget.checkboxfield"],"alternates":["Ext.form.Checkbox"]},"Ext.form.field.ComboBox":{"alias":["widget.combo","widget.combobox"],"alternates":["Ext.form.ComboBox"]},"Ext.form.field.Date":{"alias":["widget.datefield"],"alternates":["Ext.form.DateField","Ext.form.Date"]},"Ext.form.field.Display":{"alias":["widget.displayfield"],"alternates":["Ext.form.DisplayField","Ext.form.Display"]},"Ext.form.field.Field":{"alias":[],"alternates":[]},"Ext.form.field.File":{"alias":["widget.filefield","widget.fileuploadfield"],"alternates":["Ext.form.FileUploadField","Ext.ux.form.FileUploadField","Ext.form.File"]},"Ext.form.field.FileButton":{"alias":["widget.filebutton"],"alternates":[]},"Ext.form.field.Hidden":{"alias":["widget.hidden","widget.hiddenfield"],"alternates":["Ext.form.Hidden"]},"Ext.form.field.HtmlEditor":{"alias":["widget.htmleditor"],"alternates":["Ext.form.HtmlEditor"]},"Ext.form.field.Number":{"alias":["widget.numberfield"],"alternates":["Ext.form.NumberField","Ext.form.Number"]},"Ext.form.field.Picker":{"alias":["widget.pickerfield"],"alternates":["Ext.form.Picker"]},"Ext.form.field.Radio":{"alias":["widget.radio","widget.radiofield"],"alternates":["Ext.form.Radio"]},"Ext.form.field.Spinner":{"alias":["widget.spinnerfield"],"alternates":["Ext.form.Spinner"]},"Ext.form.field.Tag":{"alias":["widget.tagfield"],"alternates":[]},"Ext.form.field.Text":{"alias":["widget.textfield"],"alternates":["Ext.form.TextField","Ext.form.Text"]},"Ext.form.field.TextArea":{"alias":["widget.textarea","widget.textareafield"],"alternates":["Ext.form.TextArea"]},"Ext.form.field.Time":{"alias":["widget.timefield"],"alternates":["Ext.form.TimeField","Ext.form.Time"]},"Ext.form.field.Trigger":{"alias":["widget.trigger","widget.triggerfield"],"alternates":["Ext.form.TriggerField","Ext.form.TwinTriggerField","Ext.form.Trigger"]},"Ext.form.field.VTypes":{"alias":[],"alternates":["Ext.form.VTypes"]},"Ext.form.trigger.Component":{"alias":["trigger.component"],"alternates":[]},"Ext.form.trigger.Spinner":{"alias":["trigger.spinner"],"alternates":[]},"Ext.form.trigger.Trigger":{"alias":["trigger.trigger"],"alternates":[]},"Ext.fx.Anim":{"alias":[],"alternates":[]},"Ext.fx.Animation":{"alias":[],"alternates":[]},"Ext.fx.Animator":{"alias":[],"alternates":[]},"Ext.fx.CubicBezier":{"alias":[],"alternates":[]},"Ext.fx.DrawPath":{"alias":[],"alternates":[]},"Ext.fx.Easing":{"alias":[],"alternates":[]},"Ext.fx.Manager":{"alias":[],"alternates":[]},"Ext.fx.PropertyHandler":{"alias":[],"alternates":[]},"Ext.fx.Queue":{"alias":[],"alternates":[]},"Ext.fx.Runner":{"alias":[],"alternates":[]},"Ext.fx.State":{"alias":[],"alternates":[]},"Ext.fx.animation.Abstract":{"alias":[],"alternates":[]},"Ext.fx.animation.Cube":{"alias":["animation.cube"],"alternates":[]},"Ext.fx.animation.Fade":{"alias":["animation.fade","animation.fadeIn"],"alternates":["Ext.fx.animation.FadeIn"]},"Ext.fx.animation.FadeOut":{"alias":["animation.fadeOut"],"alternates":[]},"Ext.fx.animation.Flip":{"alias":["animation.flip"],"alternates":[]},"Ext.fx.animation.Pop":{"alias":["animation.pop","animation.popIn"],"alternates":["Ext.fx.animation.PopIn"]},"Ext.fx.animation.PopOut":{"alias":["animation.popOut"],"alternates":[]},"Ext.fx.animation.Slide":{"alias":["animation.slide","animation.slideIn"],"alternates":["Ext.fx.animation.SlideIn"]},"Ext.fx.animation.SlideOut":{"alias":["animation.slideOut"],"alternates":[]},"Ext.fx.animation.Wipe":{"alias":[],"alternates":["Ext.fx.animation.WipeIn"]},"Ext.fx.animation.WipeOut":{"alias":[],"alternates":[]},"Ext.fx.easing.Abstract":{"alias":[],"alternates":[]},"Ext.fx.easing.Bounce":{"alias":[],"alternates":[]},"Ext.fx.easing.BoundMomentum":{"alias":[],"alternates":[]},"Ext.fx.easing.EaseIn":{"alias":["easing.ease-in"],"alternates":[]},"Ext.fx.easing.EaseOut":{"alias":["easing.ease-out"],"alternates":[]},"Ext.fx.easing.Easing":{"alias":[],"alternates":[]},"Ext.fx.easing.Linear":{"alias":["easing.linear"],"alternates":[]},"Ext.fx.easing.Momentum":{"alias":[],"alternates":[]},"Ext.fx.layout.Card":{"alias":[],"alternates":[]},"Ext.fx.layout.card.Abstract":{"alias":[],"alternates":[]},"Ext.fx.layout.card.Cover":{"alias":["fx.layout.card.cover"],"alternates":[]},"Ext.fx.layout.card.Cube":{"alias":["fx.layout.card.cube"],"alternates":[]},"Ext.fx.layout.card.Fade":{"alias":["fx.layout.card.fade"],"alternates":[]},"Ext.fx.layout.card.Flip":{"alias":["fx.layout.card.flip"],"alternates":[]},"Ext.fx.layout.card.Pop":{"alias":["fx.layout.card.pop"],"alternates":[]},"Ext.fx.layout.card.Reveal":{"alias":["fx.layout.card.reveal"],"alternates":[]},"Ext.fx.layout.card.Scroll":{"alias":["fx.layout.card.scroll"],"alternates":[]},"Ext.fx.layout.card.ScrollCover":{"alias":["fx.layout.card.scrollcover"],"alternates":[]},"Ext.fx.layout.card.ScrollReveal":{"alias":["fx.layout.card.scrollreveal"],"alternates":[]},"Ext.fx.layout.card.Slide":{"alias":["fx.layout.card.slide"],"alternates":[]},"Ext.fx.layout.card.Style":{"alias":[],"alternates":[]},"Ext.fx.runner.Css":{"alias":[],"alternates":[]},"Ext.fx.runner.CssAnimation":{"alias":[],"alternates":[]},"Ext.fx.runner.CssTransition":{"alias":[],"alternates":["Ext.Animator"]},"Ext.fx.target.Component":{"alias":[],"alternates":[]},"Ext.fx.target.CompositeElement":{"alias":[],"alternates":[]},"Ext.fx.target.CompositeElementCSS":{"alias":[],"alternates":[]},"Ext.fx.target.CompositeSprite":{"alias":[],"alternates":[]},"Ext.fx.target.Element":{"alias":[],"alternates":[]},"Ext.fx.target.ElementCSS":{"alias":[],"alternates":[]},"Ext.fx.target.Sprite":{"alias":[],"alternates":[]},"Ext.fx.target.Target":{"alias":[],"alternates":[]},"Ext.grid.CellContext":{"alias":[],"alternates":[]},"Ext.grid.CellEditor":{"alias":[],"alternates":[]},"Ext.grid.ColumnComponentLayout":{"alias":["layout.columncomponent"],"alternates":[]},"Ext.grid.ColumnLayout":{"alias":["layout.gridcolumn"],"alternates":[]},"Ext.grid.ColumnManager":{"alias":[],"alternates":["Ext.grid.ColumnModel"]},"Ext.grid.NavigationModel":{"alias":["view.navigation.grid"],"alternates":[]},"Ext.grid.Panel":{"alias":["widget.grid","widget.gridpanel"],"alternates":["Ext.list.ListView","Ext.ListView","Ext.grid.GridPanel"]},"Ext.grid.RowEditor":{"alias":["widget.roweditor"],"alternates":[]},"Ext.grid.RowEditorButtons":{"alias":["widget.roweditorbuttons"],"alternates":[]},"Ext.grid.Scroller":{"alias":[],"alternates":[]},"Ext.grid.ViewDropZone":{"alias":[],"alternates":[]},"Ext.grid.column.Action":{"alias":["widget.actioncolumn"],"alternates":["Ext.grid.ActionColumn"]},"Ext.grid.column.Boolean":{"alias":["widget.booleancolumn"],"alternates":["Ext.grid.BooleanColumn"]},"Ext.grid.column.Check":{"alias":["widget.checkcolumn"],"alternates":["Ext.ux.CheckColumn","Ext.grid.column.CheckColumn"]},"Ext.grid.column.Column":{"alias":["widget.gridcolumn"],"alternates":["Ext.grid.Column"]},"Ext.grid.column.Date":{"alias":["widget.datecolumn"],"alternates":["Ext.grid.DateColumn"]},"Ext.grid.column.Number":{"alias":["widget.numbercolumn"],"alternates":["Ext.grid.NumberColumn"]},"Ext.grid.column.RowNumberer":{"alias":["widget.rownumberer"],"alternates":["Ext.grid.RowNumberer"]},"Ext.grid.column.Template":{"alias":["widget.templatecolumn"],"alternates":["Ext.grid.TemplateColumn"]},"Ext.grid.column.Widget":{"alias":["widget.widgetcolumn"],"alternates":[]},"Ext.grid.feature.AbstractSummary":{"alias":["feature.abstractsummary"],"alternates":[]},"Ext.grid.feature.Feature":{"alias":["feature.feature"],"alternates":[]},"Ext.grid.feature.GroupStore":{"alias":[],"alternates":[]},"Ext.grid.feature.Grouping":{"alias":["feature.grouping"],"alternates":[]},"Ext.grid.feature.GroupingSummary":{"alias":["feature.groupingsummary"],"alternates":[]},"Ext.grid.feature.RowBody":{"alias":["feature.rowbody"],"alternates":[]},"Ext.grid.feature.Summary":{"alias":["feature.summary"],"alternates":[]},"Ext.grid.filters.Filters":{"alias":["plugin.gridfilters"],"alternates":[]},"Ext.grid.filters.filter.Base":{"alias":[],"alternates":[]},"Ext.grid.filters.filter.Boolean":{"alias":["grid.filter.boolean"],"alternates":[]},"Ext.grid.filters.filter.Date":{"alias":["grid.filter.date"],"alternates":[]},"Ext.grid.filters.filter.List":{"alias":["grid.filter.list"],"alternates":[]},"Ext.grid.filters.filter.Number":{"alias":["grid.filter.number","grid.filter.numeric"],"alternates":[]},"Ext.grid.filters.filter.SingleFilter":{"alias":[],"alternates":[]},"Ext.grid.filters.filter.String":{"alias":["grid.filter.string"],"alternates":[]},"Ext.grid.filters.filter.TriFilter":{"alias":[],"alternates":[]},"Ext.grid.header.Container":{"alias":["widget.headercontainer"],"alternates":[]},"Ext.grid.header.DragZone":{"alias":[],"alternates":[]},"Ext.grid.header.DropZone":{"alias":[],"alternates":[]},"Ext.grid.locking.HeaderContainer":{"alias":[],"alternates":[]},"Ext.grid.locking.Lockable":{"alias":[],"alternates":["Ext.grid.Lockable"]},"Ext.grid.locking.RowSynchronizer":{"alias":[],"alternates":[]},"Ext.grid.locking.View":{"alias":[],"alternates":["Ext.grid.LockingView"]},"Ext.grid.plugin.BufferedRenderer":{"alias":["plugin.bufferedrenderer"],"alternates":[]},"Ext.grid.plugin.CellEditing":{"alias":["plugin.cellediting"],"alternates":[]},"Ext.grid.plugin.Clipboard":{"alias":["plugin.clipboard"],"alternates":[]},"Ext.grid.plugin.DragDrop":{"alias":["plugin.gridviewdragdrop"],"alternates":[]},"Ext.grid.plugin.Editing":{"alias":["editing.editing"],"alternates":[]},"Ext.grid.plugin.HeaderReorderer":{"alias":["plugin.gridheaderreorderer"],"alternates":[]},"Ext.grid.plugin.HeaderResizer":{"alias":["plugin.gridheaderresizer"],"alternates":[]},"Ext.grid.plugin.RowEditing":{"alias":["plugin.rowediting"],"alternates":[]},"Ext.grid.plugin.RowExpander":{"alias":["plugin.rowexpander"],"alternates":[]},"Ext.grid.property.Grid":{"alias":["widget.propertygrid"],"alternates":["Ext.grid.PropertyGrid"]},"Ext.grid.property.HeaderContainer":{"alias":[],"alternates":["Ext.grid.PropertyColumnModel"]},"Ext.grid.property.Property":{"alias":[],"alternates":["Ext.PropGridProperty"]},"Ext.grid.property.Reader":{"alias":[],"alternates":[]},"Ext.grid.property.Store":{"alias":[],"alternates":["Ext.grid.PropertyStore"]},"Ext.grid.selection.Cells":{"alias":[],"alternates":[]},"Ext.grid.selection.Columns":{"alias":[],"alternates":[]},"Ext.grid.selection.Replicator":{"alias":["plugin.selectionreplicator"],"alternates":[]},"Ext.grid.selection.Rows":{"alias":[],"alternates":[]},"Ext.grid.selection.Selection":{"alias":[],"alternates":[]},"Ext.grid.selection.SelectionExtender":{"alias":[],"alternates":[]},"Ext.grid.selection.SpreadsheetModel":{"alias":["selection.spreadsheet"],"alternates":[]},"Ext.layout.Context":{"alias":[],"alternates":[]},"Ext.layout.ContextItem":{"alias":[],"alternates":[]},"Ext.layout.Layout":{"alias":[],"alternates":[]},"Ext.layout.SizeModel":{"alias":[],"alternates":[]},"Ext.layout.component.Auto":{"alias":["layout.autocomponent"],"alternates":[]},"Ext.layout.component.Body":{"alias":["layout.body"],"alternates":[]},"Ext.layout.component.BoundList":{"alias":["layout.boundlist"],"alternates":[]},"Ext.layout.component.Component":{"alias":[],"alternates":[]},"Ext.layout.component.Dock":{"alias":["layout.dock"],"alternates":["Ext.layout.component.AbstractDock"]},"Ext.layout.component.FieldSet":{"alias":["layout.fieldset"],"alternates":[]},"Ext.layout.component.ProgressBar":{"alias":["layout.progressbar"],"alternates":[]},"Ext.layout.component.field.FieldContainer":{"alias":["layout.fieldcontainer"],"alternates":[]},"Ext.layout.component.field.HtmlEditor":{"alias":["layout.htmleditor"],"alternates":[]},"Ext.layout.container.Absolute":{"alias":["layout.absolute"],"alternates":["Ext.layout.AbsoluteLayout"]},"Ext.layout.container.Accordion":{"alias":["layout.accordion"],"alternates":["Ext.layout.AccordionLayout"]},"Ext.layout.container.Anchor":{"alias":["layout.anchor"],"alternates":["Ext.layout.AnchorLayout"]},"Ext.layout.container.Auto":{"alias":["layout.auto","layout.autocontainer"],"alternates":[]},"Ext.layout.container.Border":{"alias":["layout.border"],"alternates":["Ext.layout.BorderLayout"]},"Ext.layout.container.Box":{"alias":["layout.box"],"alternates":["Ext.layout.BoxLayout"]},"Ext.layout.container.Card":{"alias":["layout.card"],"alternates":["Ext.layout.CardLayout"]},"Ext.layout.container.Center":{"alias":["layout.center","layout.ux.center"],"alternates":["Ext.ux.layout.Center"]},"Ext.layout.container.CheckboxGroup":{"alias":["layout.checkboxgroup"],"alternates":[]},"Ext.layout.container.Column":{"alias":["layout.column"],"alternates":["Ext.layout.ColumnLayout"]},"Ext.layout.container.ColumnSplitter":{"alias":["widget.columnsplitter"],"alternates":[]},"Ext.layout.container.ColumnSplitterTracker":{"alias":[],"alternates":[]},"Ext.layout.container.Container":{"alias":["layout.container"],"alternates":["Ext.layout.ContainerLayout"]},"Ext.layout.container.Dashboard":{"alias":["layout.dashboard"],"alternates":[]},"Ext.layout.container.Editor":{"alias":["layout.editor"],"alternates":[]},"Ext.layout.container.Fit":{"alias":["layout.fit"],"alternates":["Ext.layout.FitLayout"]},"Ext.layout.container.Form":{"alias":["layout.form"],"alternates":["Ext.layout.FormLayout"]},"Ext.layout.container.HBox":{"alias":["layout.hbox"],"alternates":["Ext.layout.HBoxLayout"]},"Ext.layout.container.SegmentedButton":{"alias":["layout.segmentedbutton"],"alternates":[]},"Ext.layout.container.Table":{"alias":["layout.table"],"alternates":["Ext.layout.TableLayout"]},"Ext.layout.container.VBox":{"alias":["layout.vbox"],"alternates":["Ext.layout.VBoxLayout"]},"Ext.layout.container.border.Region":{"alias":[],"alternates":[]},"Ext.layout.container.boxOverflow.Menu":{"alias":["box.overflow.Menu","box.overflow.menu"],"alternates":["Ext.layout.boxOverflow.Menu"]},"Ext.layout.container.boxOverflow.None":{"alias":["box.overflow.None","box.overflow.none"],"alternates":["Ext.layout.boxOverflow.None"]},"Ext.layout.container.boxOverflow.Scroller":{"alias":["box.overflow.Scroller","box.overflow.scroller"],"alternates":["Ext.layout.boxOverflow.Scroller"]},"Ext.list.AbstractTreeItem":{"alias":[],"alternates":[]},"Ext.list.RootTreeItem":{"alias":[],"alternates":[]},"Ext.list.Tree":{"alias":["widget.treelist"],"alternates":[]},"Ext.list.TreeItem":{"alias":["widget.treelistitem"],"alternates":[]},"Ext.menu.CheckItem":{"alias":["widget.menucheckitem"],"alternates":[]},"Ext.menu.ColorPicker":{"alias":["widget.colormenu"],"alternates":[]},"Ext.menu.DatePicker":{"alias":["widget.datemenu"],"alternates":[]},"Ext.menu.Item":{"alias":["widget.menuitem"],"alternates":["Ext.menu.TextItem"]},"Ext.menu.Manager":{"alias":[],"alternates":["Ext.menu.MenuMgr"]},"Ext.menu.Menu":{"alias":["widget.menu"],"alternates":[]},"Ext.menu.Separator":{"alias":["widget.menuseparator"],"alternates":[]},"Ext.mixin.Accessible":{"alias":[],"alternates":[]},"Ext.mixin.Bindable":{"alias":[],"alternates":[]},"Ext.mixin.ComponentDelegation":{"alias":[],"alternates":[]},"Ext.mixin.Container":{"alias":[],"alternates":[]},"Ext.mixin.Factoryable":{"alias":[],"alternates":[]},"Ext.mixin.Hookable":{"alias":[],"alternates":[]},"Ext.mixin.Identifiable":{"alias":[],"alternates":[]},"Ext.mixin.Inheritable":{"alias":[],"alternates":[]},"Ext.mixin.Mashup":{"alias":[],"alternates":[]},"Ext.mixin.Observable":{"alias":[],"alternates":[]},"Ext.mixin.Queryable":{"alias":[],"alternates":[]},"Ext.mixin.Responsive":{"alias":[],"alternates":[]},"Ext.mixin.Selectable":{"alias":[],"alternates":[]},"Ext.mixin.Templatable":{"alias":[],"alternates":[]},"Ext.mixin.Traversable":{"alias":[],"alternates":[]},"Ext.overrides.GlobalEvents":{"alias":[],"alternates":[]},"Ext.overrides.Progress":{"alias":[],"alternates":[]},"Ext.overrides.Widget":{"alias":[],"alternates":[]},"Ext.overrides.app.Application":{"alias":[],"alternates":[]},"Ext.overrides.app.domain.Component":{"alias":[],"alternates":[]},"Ext.overrides.dom.Element":{"alias":[],"alternates":[]},"Ext.overrides.dom.Helper":{"alias":[],"alternates":[]},"Ext.overrides.event.Event":{"alias":[],"alternates":[]},"Ext.overrides.event.publisher.Dom":{"alias":[],"alternates":[]},"Ext.overrides.event.publisher.Gesture":{"alias":[],"alternates":[]},"Ext.overrides.list.TreeItem":{"alias":[],"alternates":[]},"Ext.overrides.plugin.Abstract":{"alias":[],"alternates":[]},"Ext.overrides.util.Positionable":{"alias":[],"alternates":[]},"Ext.panel.Bar":{"alias":[],"alternates":[]},"Ext.panel.DD":{"alias":[],"alternates":[]},"Ext.panel.Header":{"alias":["widget.header"],"alternates":[]},"Ext.panel.Panel":{"alias":["widget.panel"],"alternates":["Ext.Panel"]},"Ext.panel.Pinnable":{"alias":[],"alternates":[]},"Ext.panel.Proxy":{"alias":[],"alternates":["Ext.dd.PanelProxy"]},"Ext.panel.Table":{"alias":["widget.tablepanel"],"alternates":[]},"Ext.panel.Title":{"alias":["widget.title"],"alternates":[]},"Ext.panel.Tool":{"alias":["widget.tool"],"alternates":[]},"Ext.perf.Accumulator":{"alias":[],"alternates":[]},"Ext.perf.Monitor":{"alias":[],"alternates":["Ext.Perf"]},"Ext.picker.Color":{"alias":["widget.colorpicker"],"alternates":["Ext.ColorPalette"]},"Ext.picker.Date":{"alias":["widget.datepicker"],"alternates":["Ext.DatePicker"]},"Ext.picker.Month":{"alias":["widget.monthpicker"],"alternates":["Ext.MonthPicker"]},"Ext.picker.Time":{"alias":["widget.timepicker"],"alternates":[]},"Ext.plugin.Abstract":{"alias":[],"alternates":["Ext.AbstractPlugin"]},"Ext.plugin.AbstractClipboard":{"alias":[],"alternates":[]},"Ext.plugin.LazyItems":{"alias":["plugin.lazyitems"],"alternates":[]},"Ext.plugin.Manager":{"alias":[],"alternates":["Ext.PluginManager","Ext.PluginMgr"]},"Ext.plugin.Responsive":{"alias":["plugin.responsive"],"alternates":[]},"Ext.plugin.Viewport":{"alias":["plugin.viewport"],"alternates":[]},"Ext.promise.Consequence":{"alias":[],"alternates":[]},"Ext.promise.Deferred":{"alias":[],"alternates":[]},"Ext.promise.Promise":{"alias":[],"alternates":[]},"Ext.resizer.BorderSplitter":{"alias":["widget.bordersplitter"],"alternates":[]},"Ext.resizer.BorderSplitterTracker":{"alias":[],"alternates":[]},"Ext.resizer.Handle":{"alias":[],"alternates":[]},"Ext.resizer.ResizeTracker":{"alias":[],"alternates":[]},"Ext.resizer.Resizer":{"alias":[],"alternates":["Ext.Resizable"]},"Ext.resizer.Splitter":{"alias":["widget.splitter"],"alternates":[]},"Ext.resizer.SplitterTracker":{"alias":[],"alternates":[]},"Ext.rtl.Component":{"alias":[],"alternates":[]},"Ext.rtl.button.Button":{"alias":[],"alternates":[]},"Ext.rtl.button.Segmented":{"alias":[],"alternates":[]},"Ext.rtl.dd.DD":{"alias":[],"alternates":[]},"Ext.rtl.dom.Element":{"alias":[],"alternates":[]},"Ext.rtl.event.Event":{"alias":[],"alternates":[]},"Ext.rtl.form.Labelable":{"alias":[],"alternates":[]},"Ext.rtl.form.field.File":{"alias":[],"alternates":[]},"Ext.rtl.form.field.FileButton":{"alias":[],"alternates":[]},"Ext.rtl.form.field.Tag":{"alias":[],"alternates":[]},"Ext.rtl.grid.CellEditor":{"alias":[],"alternates":[]},"Ext.rtl.grid.ColumnLayout":{"alias":[],"alternates":[]},"Ext.rtl.grid.NavigationModel":{"alias":[],"alternates":[]},"Ext.rtl.grid.column.Column":{"alias":[],"alternates":[]},"Ext.rtl.grid.plugin.BufferedRenderer":{"alias":[],"alternates":[]},"Ext.rtl.grid.plugin.HeaderResizer":{"alias":[],"alternates":[]},"Ext.rtl.grid.plugin.RowEditing":{"alias":[],"alternates":[]},"Ext.rtl.layout.ContextItem":{"alias":[],"alternates":[]},"Ext.rtl.layout.component.Dock":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Absolute":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Border":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Box":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.Column":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.HBox":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.VBox":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.boxOverflow.Menu":{"alias":[],"alternates":[]},"Ext.rtl.layout.container.boxOverflow.Scroller":{"alias":[],"alternates":[]},"Ext.rtl.panel.Bar":{"alias":[],"alternates":[]},"Ext.rtl.panel.Panel":{"alias":[],"alternates":[]},"Ext.rtl.panel.Title":{"alias":[],"alternates":[]},"Ext.rtl.resizer.BorderSplitterTracker":{"alias":[],"alternates":[]},"Ext.rtl.resizer.ResizeTracker":{"alias":[],"alternates":[]},"Ext.rtl.resizer.SplitterTracker":{"alias":[],"alternates":[]},"Ext.rtl.scroll.DomScroller":{"alias":[],"alternates":[]},"Ext.rtl.scroll.Indicator":{"alias":[],"alternates":[]},"Ext.rtl.scroll.Scroller":{"alias":[],"alternates":[]},"Ext.rtl.scroll.TouchScroller":{"alias":[],"alternates":[]},"Ext.rtl.slider.Multi":{"alias":[],"alternates":[]},"Ext.rtl.tab.Bar":{"alias":[],"alternates":[]},"Ext.rtl.tip.QuickTipManager":{"alias":[],"alternates":[]},"Ext.rtl.tree.Column":{"alias":[],"alternates":[]},"Ext.rtl.util.FocusableContainer":{"alias":[],"alternates":[]},"Ext.rtl.util.Renderable":{"alias":[],"alternates":[]},"Ext.rtl.view.NavigationModel":{"alias":[],"alternates":[]},"Ext.rtl.view.Table":{"alias":[],"alternates":[]},"Ext.scroll.DomScroller":{"alias":["scroller.dom"],"alternates":[]},"Ext.scroll.Indicator":{"alias":["widget.scrollindicator"],"alternates":[]},"Ext.scroll.Scroller":{"alias":["scroller.scroller"],"alternates":[]},"Ext.scroll.TouchScroller":{"alias":["scroller.touch"],"alternates":[]},"Ext.selection.CellModel":{"alias":["selection.cellmodel"],"alternates":[]},"Ext.selection.CheckboxModel":{"alias":["selection.checkboxmodel"],"alternates":[]},"Ext.selection.DataViewModel":{"alias":["selection.dataviewmodel"],"alternates":[]},"Ext.selection.Model":{"alias":["selection.abstract"],"alternates":["Ext.AbstractSelectionModel"]},"Ext.selection.RowModel":{"alias":["selection.rowmodel"],"alternates":[]},"Ext.selection.TreeModel":{"alias":["selection.treemodel"],"alternates":[]},"Ext.slider.Multi":{"alias":["widget.multislider"],"alternates":["Ext.slider.MultiSlider"]},"Ext.slider.Single":{"alias":["widget.slider","widget.sliderfield"],"alternates":["Ext.Slider","Ext.form.SliderField","Ext.slider.SingleSlider","Ext.slider.Slider"]},"Ext.slider.Thumb":{"alias":[],"alternates":[]},"Ext.slider.Tip":{"alias":["widget.slidertip"],"alternates":[]},"Ext.slider.Widget":{"alias":["widget.sliderwidget"],"alternates":[]},"Ext.sparkline.Bar":{"alias":["widget.sparklinebar"],"alternates":[]},"Ext.sparkline.BarBase":{"alias":[],"alternates":[]},"Ext.sparkline.Base":{"alias":[],"alternates":[]},"Ext.sparkline.Box":{"alias":["widget.sparklinebox"],"alternates":[]},"Ext.sparkline.Bullet":{"alias":["widget.sparklinebullet"],"alternates":[]},"Ext.sparkline.CanvasBase":{"alias":[],"alternates":[]},"Ext.sparkline.CanvasCanvas":{"alias":[],"alternates":[]},"Ext.sparkline.Discrete":{"alias":["widget.sparklinediscrete"],"alternates":[]},"Ext.sparkline.Line":{"alias":["widget.sparklineline"],"alternates":[]},"Ext.sparkline.Pie":{"alias":["widget.sparklinepie"],"alternates":[]},"Ext.sparkline.RangeMap":{"alias":[],"alternates":[]},"Ext.sparkline.Shape":{"alias":[],"alternates":[]},"Ext.sparkline.TriState":{"alias":["widget.sparklinetristate"],"alternates":[]},"Ext.sparkline.VmlCanvas":{"alias":[],"alternates":[]},"Ext.state.CookieProvider":{"alias":[],"alternates":[]},"Ext.state.LocalStorageProvider":{"alias":["state.localstorage"],"alternates":[]},"Ext.state.Manager":{"alias":[],"alternates":[]},"Ext.state.Provider":{"alias":[],"alternates":[]},"Ext.state.Stateful":{"alias":[],"alternates":[]},"Ext.tab.Bar":{"alias":["widget.tabbar"],"alternates":[]},"Ext.tab.Panel":{"alias":["widget.tabpanel"],"alternates":["Ext.TabPanel"]},"Ext.tab.Tab":{"alias":["widget.tab"],"alternates":[]},"Ext.theme.crisp.Component":{"idx":1,"alias":[],"alternates":[]},"Ext.theme.crisp.view.Table":{"idx":11,"alias":[],"alternates":[]},"Ext.theme.neptune.Component":{"idx":0,"alias":[],"alternates":[]},"Ext.theme.neptune.container.ButtonGroup":{"idx":6,"alias":[],"alternates":[]},"Ext.theme.neptune.form.field.HtmlEditor":{"idx":9,"alias":[],"alternates":[]},"Ext.theme.neptune.grid.RowEditor":{"idx":12,"alias":[],"alternates":[]},"Ext.theme.neptune.grid.column.RowNumberer":{"idx":13,"alias":[],"alternates":[]},"Ext.theme.neptune.layout.component.Dock":{"idx":4,"alias":[],"alternates":[]},"Ext.theme.neptune.menu.Menu":{"idx":15,"alias":[],"alternates":[]},"Ext.theme.neptune.menu.Separator":{"idx":14,"alias":[],"alternates":[]},"Ext.theme.neptune.panel.Panel":{"idx":5,"alias":[],"alternates":[]},"Ext.theme.neptune.panel.Table":{"idx":10,"alias":[],"alternates":[]},"Ext.theme.neptune.picker.Month":{"idx":8,"alias":[],"alternates":[]},"Ext.theme.neptune.resizer.Splitter":{"idx":2,"alias":[],"alternates":[]},"Ext.theme.neptune.toolbar.Paging":{"idx":7,"alias":[],"alternates":[]},"Ext.theme.neptune.toolbar.Toolbar":{"idx":3,"alias":[],"alternates":[]},"Ext.tip.QuickTip":{"alias":["widget.quicktip"],"alternates":["Ext.QuickTip"]},"Ext.tip.QuickTipManager":{"alias":[],"alternates":["Ext.QuickTips"]},"Ext.tip.Tip":{"alias":["widget.tip"],"alternates":["Ext.Tip"]},"Ext.tip.ToolTip":{"alias":["widget.tooltip"],"alternates":["Ext.ToolTip"]},"Ext.toolbar.Breadcrumb":{"alias":["widget.breadcrumb"],"alternates":[]},"Ext.toolbar.Fill":{"alias":["widget.tbfill"],"alternates":["Ext.Toolbar.Fill"]},"Ext.toolbar.Item":{"alias":["widget.tbitem"],"alternates":["Ext.Toolbar.Item"]},"Ext.toolbar.Paging":{"alias":["widget.pagingtoolbar"],"alternates":["Ext.PagingToolbar"]},"Ext.toolbar.Separator":{"alias":["widget.tbseparator"],"alternates":["Ext.Toolbar.Separator"]},"Ext.toolbar.Spacer":{"alias":["widget.tbspacer"],"alternates":["Ext.Toolbar.Spacer"]},"Ext.toolbar.TextItem":{"alias":["widget.tbtext"],"alternates":["Ext.Toolbar.TextItem"]},"Ext.toolbar.Toolbar":{"alias":["widget.toolbar"],"alternates":["Ext.Toolbar"]},"Ext.tree.Column":{"alias":["widget.treecolumn"],"alternates":[]},"Ext.tree.NavigationModel":{"alias":["view.navigation.tree"],"alternates":[]},"Ext.tree.Panel":{"alias":["widget.treepanel"],"alternates":["Ext.tree.TreePanel","Ext.TreePanel"]},"Ext.tree.View":{"alias":["widget.treeview"],"alternates":[]},"Ext.tree.ViewDragZone":{"alias":[],"alternates":[]},"Ext.tree.ViewDropZone":{"alias":[],"alternates":[]},"Ext.tree.plugin.TreeViewDragDrop":{"alias":["plugin.treeviewdragdrop"],"alternates":[]},"Ext.util.AbstractMixedCollection":{"alias":[],"alternates":[]},"Ext.util.Animate":{"alias":[],"alternates":[]},"Ext.util.Bag":{"alias":[],"alternates":[]},"Ext.util.Base64":{"alias":[],"alternates":[]},"Ext.util.CSS":{"alias":[],"alternates":[]},"Ext.util.CSV":{"alias":[],"alternates":[]},"Ext.util.ClickRepeater":{"alias":[],"alternates":[]},"Ext.util.Collection":{"alias":[],"alternates":[]},"Ext.util.CollectionKey":{"alias":[],"alternates":[]},"Ext.util.ComponentDragger":{"alias":[],"alternates":[]},"Ext.util.Cookies":{"alias":[],"alternates":[]},"Ext.util.DelimitedValue":{"alias":[],"alternates":[]},"Ext.util.ElementContainer":{"alias":[],"alternates":[]},"Ext.util.Event":{"alias":[],"alternates":[]},"Ext.util.Filter":{"alias":[],"alternates":[]},"Ext.util.FilterCollection":{"alias":[],"alternates":[]},"Ext.util.Floating":{"alias":[],"alternates":[]},"Ext.util.FocusTrap":{"alias":[],"alternates":[]},"Ext.util.Focusable":{"alias":[],"alternates":[]},"Ext.util.FocusableContainer":{"alias":[],"alternates":[]},"Ext.util.Format":{"alias":[],"alternates":[]},"Ext.util.Group":{"alias":[],"alternates":[]},"Ext.util.GroupCollection":{"alias":[],"alternates":[]},"Ext.util.Grouper":{"alias":[],"alternates":[]},"Ext.util.HashMap":{"alias":[],"alternates":[]},"Ext.util.History":{"alias":[],"alternates":["Ext.History"]},"Ext.util.Inflector":{"alias":[],"alternates":[]},"Ext.util.ItemCollection":{"alias":[],"alternates":["Ext.ItemCollection"]},"Ext.util.KeyMap":{"alias":[],"alternates":["Ext.KeyMap"]},"Ext.util.KeyNav":{"alias":[],"alternates":["Ext.KeyNav"]},"Ext.util.KeyboardInteractive":{"alias":[],"alternates":[]},"Ext.util.LocalStorage":{"alias":[],"alternates":[]},"Ext.util.LruCache":{"alias":[],"alternates":[]},"Ext.util.Memento":{"alias":[],"alternates":[]},"Ext.util.MixedCollection":{"alias":[],"alternates":[]},"Ext.util.ObjectTemplate":{"alias":[],"alternates":[]},"Ext.util.Observable":{"alias":[],"alternates":[]},"Ext.util.Offset":{"alias":[],"alternates":[]},"Ext.util.PaintMonitor":{"alias":[],"alternates":[]},"Ext.util.Point":{"alias":[],"alternates":[]},"Ext.util.Positionable":{"alias":[],"alternates":[]},"Ext.util.ProtoElement":{"alias":[],"alternates":[]},"Ext.util.Queue":{"alias":[],"alternates":[]},"Ext.util.Region":{"alias":[],"alternates":[]},"Ext.util.Renderable":{"alias":[],"alternates":[]},"Ext.util.Schedulable":{"alias":[],"alternates":[]},"Ext.util.Scheduler":{"alias":[],"alternates":[]},"Ext.util.SizeMonitor":{"alias":[],"alternates":[]},"Ext.util.Sortable":{"alias":[],"alternates":[]},"Ext.util.Sorter":{"alias":[],"alternates":[]},"Ext.util.SorterCollection":{"alias":[],"alternates":[]},"Ext.util.StoreHolder":{"alias":[],"alternates":[]},"Ext.util.TSV":{"alias":[],"alternates":[]},"Ext.util.TaskManager":{"alias":[],"alternates":["Ext.TaskManager"]},"Ext.util.TaskRunner":{"alias":[],"alternates":[]},"Ext.util.TextMetrics":{"alias":[],"alternates":[]},"Ext.util.Translatable":{"alias":[],"alternates":[]},"Ext.util.XTemplateCompiler":{"alias":[],"alternates":[]},"Ext.util.XTemplateParser":{"alias":[],"alternates":[]},"Ext.util.paintmonitor.Abstract":{"alias":[],"alternates":[]},"Ext.util.paintmonitor.CssAnimation":{"alias":[],"alternates":[]},"Ext.util.paintmonitor.OverflowChange":{"alias":[],"alternates":[]},"Ext.util.sizemonitor.Abstract":{"alias":[],"alternates":[]},"Ext.util.sizemonitor.OverflowChange":{"alias":[],"alternates":[]},"Ext.util.sizemonitor.Scroll":{"alias":[],"alternates":[]},"Ext.util.translatable.Abstract":{"alias":[],"alternates":[]},"Ext.util.translatable.CssPosition":{"alias":[],"alternates":[]},"Ext.util.translatable.CssTransform":{"alias":[],"alternates":[]},"Ext.util.translatable.Dom":{"alias":[],"alternates":[]},"Ext.util.translatable.ScrollParent":{"alias":[],"alternates":[]},"Ext.util.translatable.ScrollPosition":{"alias":[],"alternates":[]},"Ext.ux.BoxReorderer":{"idx":28,"alias":[],"alternates":[]},"Ext.ux.CellDragDrop":{"idx":29,"alias":["plugin.celldragdrop"],"alternates":[]},"Ext.ux.DataTip":{"idx":30,"alias":["plugin.datatip"],"alternates":[]},"Ext.ux.DataView.Animated":{"idx":31,"alias":[],"alternates":[]},"Ext.ux.DataView.DragSelector":{"idx":32,"alias":[],"alternates":[]},"Ext.ux.DataView.Draggable":{"idx":33,"alias":[],"alternates":[]},"Ext.ux.DataView.LabelEditor":{"idx":34,"alias":[],"alternates":[]},"Ext.ux.Explorer":{"idx":36,"alias":["widget.explorer"],"alternates":[]},"Ext.ux.FieldReplicator":{"idx":37,"alias":["plugin.fieldreplicator"],"alternates":[]},"Ext.ux.GMapPanel":{"idx":38,"alias":["widget.gmappanel"],"alternates":[]},"Ext.ux.GroupTabPanel":{"idx":40,"alias":["widget.grouptabpanel"],"alternates":[]},"Ext.ux.GroupTabRenderer":{"idx":39,"alias":["plugin.grouptabrenderer"],"alternates":[]},"Ext.ux.IFrame":{"idx":41,"alias":["widget.uxiframe"],"alternates":[]},"Ext.ux.LiveSearchGridPanel":{"idx":43,"alias":[],"alternates":[]},"Ext.ux.PreviewPlugin":{"idx":44,"alias":["plugin.preview"],"alternates":[]},"Ext.ux.ProgressBarPager":{"idx":45,"alias":[],"alternates":[]},"Ext.ux.RowExpander":{"idx":46,"alias":[],"alternates":[]},"Ext.ux.SlidingPager":{"idx":47,"alias":[],"alternates":[]},"Ext.ux.Spotlight":{"idx":48,"alias":[],"alternates":[]},"Ext.ux.TabCloseMenu":{"idx":49,"alias":["plugin.tabclosemenu"],"alternates":[]},"Ext.ux.TabReorderer":{"idx":50,"alias":["plugin.tabreorderer"],"alternates":[]},"Ext.ux.TabScrollerMenu":{"idx":51,"alias":["plugin.tabscrollermenu"],"alternates":[]},"Ext.ux.ToolbarDroppable":{"idx":52,"alias":[],"alternates":[]},"Ext.ux.TreePicker":{"idx":53,"alias":["widget.treepicker"],"alternates":[]},"Ext.ux.ajax.DataSimlet":{"idx":17,"alias":[],"alternates":[]},"Ext.ux.ajax.JsonSimlet":{"idx":18,"alias":["simlet.json"],"alternates":[]},"Ext.ux.ajax.SimManager":{"idx":20,"alias":[],"alternates":[]},"Ext.ux.ajax.SimXhr":{"idx":19,"alias":[],"alternates":[]},"Ext.ux.ajax.Simlet":{"idx":16,"alias":["simlet.basic"],"alternates":[]},"Ext.ux.ajax.XmlSimlet":{"idx":21,"alias":["simlet.xml"],"alternates":[]},"Ext.ux.colorpick.Button":{"idx":69,"alias":["widget.colorbutton"],"alternates":[]},"Ext.ux.colorpick.ButtonController":{"idx":68,"alias":["controller.colorpick-buttoncontroller"],"alternates":[]},"Ext.ux.colorpick.ColorMap":{"idx":57,"alias":["widget.colorpickercolormap"],"alternates":[]},"Ext.ux.colorpick.ColorMapController":{"idx":56,"alias":["controller.colorpickercolormapcontroller"],"alternates":[]},"Ext.ux.colorpick.ColorPreview":{"idx":60,"alias":["widget.colorpickercolorpreview"],"alternates":[]},"Ext.ux.colorpick.ColorUtils":{"idx":55,"alias":[],"alternates":[]},"Ext.ux.colorpick.Field":{"idx":70,"alias":["widget.colorfield"],"alternates":[]},"Ext.ux.colorpick.Selection":{"idx":54,"alias":[],"alternates":[]},"Ext.ux.colorpick.Selector":{"idx":67,"alias":["widget.colorselector"],"alternates":[]},"Ext.ux.colorpick.SelectorController":{"idx":59,"alias":["controller.colorpick-selectorcontroller"],"alternates":[]},"Ext.ux.colorpick.SelectorModel":{"idx":58,"alias":["viewmodel.colorpick-selectormodel"],"alternates":[]},"Ext.ux.colorpick.Slider":{"idx":62,"alias":["widget.colorpickerslider"],"alternates":[]},"Ext.ux.colorpick.SliderAlpha":{"idx":63,"alias":["widget.colorpickerslideralpha"],"alternates":[]},"Ext.ux.colorpick.SliderController":{"idx":61,"alias":["controller.colorpick-slidercontroller"],"alternates":[]},"Ext.ux.colorpick.SliderHue":{"idx":66,"alias":["widget.colorpickersliderhue"],"alternates":[]},"Ext.ux.colorpick.SliderSaturation":{"idx":64,"alias":["widget.colorpickerslidersaturation"],"alternates":[]},"Ext.ux.colorpick.SliderValue":{"idx":65,"alias":["widget.colorpickerslidervalue"],"alternates":[]},"Ext.ux.dashboard.GoogleRssPart":{"idx":72,"alias":["part.google-rss"],"alternates":[]},"Ext.ux.dashboard.GoogleRssView":{"idx":71,"alias":[],"alternates":[]},"Ext.ux.data.PagingMemoryProxy":{"idx":73,"alias":["proxy.pagingmemory"],"alternates":["Ext.data.PagingMemoryProxy"]},"Ext.ux.dd.CellFieldDropZone":{"idx":74,"alias":[],"alternates":[]},"Ext.ux.dd.PanelFieldDragZone":{"idx":75,"alias":[],"alternates":[]},"Ext.ux.desktop.App":{"idx":77,"alias":[],"alternates":[]},"Ext.ux.desktop.Desktop":{"idx":76,"alias":["widget.desktop"],"alternates":[]},"Ext.ux.desktop.Module":{"idx":78,"alias":[],"alternates":[]},"Ext.ux.desktop.ShortcutModel":{"idx":79,"alias":[],"alternates":[]},"Ext.ux.desktop.StartMenu":{"idx":80,"alias":[],"alternates":[]},"Ext.ux.desktop.TaskBar":{"idx":81,"alias":["widget.taskbar"],"alternates":[]},"Ext.ux.desktop.TrayClock":{"idx":81,"alias":["widget.trayclock"],"alternates":[]},"Ext.ux.desktop.Video":{"idx":82,"alias":["widget.video"],"alternates":[]},"Ext.ux.desktop.Wallpaper":{"idx":83,"alias":["widget.wallpaper"],"alternates":[]},"Ext.ux.event.Driver":{"idx":22,"alias":[],"alternates":[]},"Ext.ux.event.Maker":{"idx":23,"alias":[],"alternates":[]},"Ext.ux.event.Player":{"idx":24,"alias":[],"alternates":[]},"Ext.ux.event.Recorder":{"idx":25,"alias":[],"alternates":[]},"Ext.ux.event.RecorderManager":{"idx":84,"alias":["widget.eventrecordermanager"],"alternates":[]},"Ext.ux.form.ItemSelector":{"idx":86,"alias":["widget.itemselector","widget.itemselectorfield"],"alternates":["Ext.ux.ItemSelector"]},"Ext.ux.form.MultiSelect":{"idx":85,"alias":["widget.multiselect","widget.multiselectfield"],"alternates":["Ext.ux.Multiselect"]},"Ext.ux.form.SearchField":{"idx":87,"alias":["widget.searchfield"],"alternates":[]},"Ext.ux.google.Api":{"idx":26,"alias":[],"alternates":[]},"Ext.ux.google.Feeds":{"idx":27,"alias":[],"alternates":[]},"Ext.ux.grid.SubTable":{"idx":88,"alias":["plugin.subtable"],"alternates":[]},"Ext.ux.grid.TransformGrid":{"idx":89,"alias":[],"alternates":[]},"Ext.ux.layout.ResponsiveColumn":{"idx":90,"alias":["layout.responsivecolumn"],"alternates":[]},"Ext.ux.rating.Picker":{"idx":91,"alias":["widget.rating"],"alternates":[]},"Ext.ux.statusbar.StatusBar":{"idx":42,"alias":["widget.statusbar"],"alternates":["Ext.ux.StatusBar"]},"Ext.ux.statusbar.ValidationStatus":{"idx":92,"alias":[],"alternates":[]},"Ext.view.AbstractView":{"alias":[],"alternates":[]},"Ext.view.BoundList":{"alias":["widget.boundlist"],"alternates":["Ext.BoundList"]},"Ext.view.BoundListKeyNav":{"alias":["view.navigation.boundlist"],"alternates":[]},"Ext.view.DragZone":{"alias":[],"alternates":[]},"Ext.view.DropZone":{"alias":[],"alternates":[]},"Ext.view.MultiSelector":{"alias":["widget.multiselector"],"alternates":[]},"Ext.view.MultiSelectorSearch":{"alias":["widget.multiselector-search"],"alternates":[]},"Ext.view.NavigationModel":{"alias":["view.navigation.default"],"alternates":[]},"Ext.view.NodeCache":{"alias":[],"alternates":[]},"Ext.view.Table":{"alias":["widget.gridview","widget.tableview"],"alternates":["Ext.grid.View"]},"Ext.view.TableLayout":{"alias":["layout.tableview"],"alternates":[]},"Ext.view.View":{"alias":["widget.dataview"],"alternates":["Ext.DataView"]},"Ext.window.MessageBox":{"alias":["widget.messagebox"],"alternates":[]},"Ext.window.Toast":{"alias":["widget.toast"],"alternates":[]},"Ext.window.Window":{"alias":["widget.window"],"alternates":["Ext.Window"]},"Target.Application":{"idx":285,"alias":[],"alternates":[]},"Target.model.Association":{"idx":286,"alias":[],"alternates":[]},"Target.model.Bookmarked":{"idx":287,"alias":[],"alternates":[]},"Target.model.Catalog":{"idx":288,"alias":[],"alternates":[]},"Target.model.CatalogColumn":{"idx":289,"alias":[],"alternates":[]},"Target.model.CatalogContent":{"idx":290,"alias":[],"alternates":[]},"Target.model.CatalogObject":{"idx":291,"alias":[],"alternates":[]},"Target.model.CatalogTree":{"idx":292,"alias":[],"alternates":[]},"Target.model.ContentSetting":{"idx":293,"alias":[],"alternates":[]},"Target.model.CurrentSetting":{"idx":294,"alias":[],"alternates":[]},"Target.model.Cutout":{"idx":295,"alias":[],"alternates":[]},"Target.model.CutoutJob":{"idx":296,"alias":[],"alternates":[]},"Target.model.FilterCondition":{"idx":297,"alias":[],"alternates":[]},"Target.model.FilterSet":{"idx":298,"alias":[],"alternates":[]},"Target.model.Object":{"idx":299,"alias":[],"alternates":[]},"Target.model.Permission":{"idx":300,"alias":[],"alternates":[]},"Target.model.PermissionUser":{"idx":301,"alias":[],"alternates":[]},"Target.model.PermissionWorkgroup":{"idx":302,"alias":[],"alternates":[]},"Target.model.Product":{"idx":303,"alias":[],"alternates":[]},"Target.model.ProductRelated":{"idx":304,"alias":[],"alternates":[]},"Target.model.Rating":{"idx":305,"alias":[],"alternates":[]},"Target.model.Reject":{"idx":306,"alias":[],"alternates":[]},"Target.model.Setting":{"idx":307,"alias":[],"alternates":[]},"Target.model.Workgroup":{"idx":308,"alias":[],"alternates":[]},"Target.model.WorkgroupUser":{"idx":309,"alias":[],"alternates":[]},"Target.store.Association":{"idx":310,"alias":["store.association"],"alternates":[]},"Target.store.Bookmarks":{"idx":311,"alias":["store.bookmarks"],"alternates":[]},"Target.store.Catalogs":{"idx":312,"alias":["store.catalogs"],"alternates":[]},"Target.store.CatalogsTree":{"idx":313,"alias":["store.catalogs-tree"],"alternates":[]},"Target.store.ClassContent":{"idx":314,"alias":["store.class-content"],"alternates":[]},"Target.store.CoaddObjects":{"idx":315,"alias":["store.coadd-objects"],"alternates":[]},"Target.store.ContentSettings":{"idx":316,"alias":["store.content-settings"],"alternates":[]},"Target.store.CurrentSettings":{"idx":317,"alias":["store.currentsettings"],"alternates":[]},"Target.store.CutoutJobs":{"idx":318,"alias":["store.cutoutjobs"],"alternates":[]},"Target.store.Cutouts":{"idx":319,"alias":["store.cutouts"],"alternates":[]},"Target.store.FilterConditions":{"idx":320,"alias":["store.target-filter-conditions"],"alternates":[]},"Target.store.FilterSets":{"idx":321,"alias":["store.target-filtersets"],"alternates":[]},"Target.store.Objects":{"idx":322,"alias":["store.targets-objects"],"alternates":[]},"Target.store.PermissionUsers":{"idx":323,"alias":["store.permission_users"],"alternates":[]},"Target.store.PermissionWorkgroups":{"idx":324,"alias":["store.permission_workgroups"],"alternates":[]},"Target.store.Permissions":{"idx":325,"alias":["store.permissions"],"alternates":[]},"Target.store.ProductAssociation":{"idx":326,"alias":["store.product-association"],"alternates":[]},"Target.store.ProductClass":{"idx":327,"alias":["store.product_class"],"alternates":[]},"Target.store.ProductContent":{"idx":328,"alias":["store.product-content"],"alternates":[]},"Target.store.ProductDisplayContents":{"idx":329,"alias":["store.product-display-contents"],"alternates":[]},"Target.store.ProductRelateds":{"idx":330,"alias":["store.product_relateds"],"alternates":[]},"Target.store.Products":{"idx":331,"alias":["store.products"],"alternates":[]},"Target.store.Settings":{"idx":332,"alias":["store.settings"],"alternates":[]},"Target.store.WorkgroupUsers":{"idx":333,"alias":["store.workgroup_users"],"alternates":[]},"Target.store.Workgroups":{"idx":334,"alias":["store.workgroups"],"alternates":[]},"Target.view.association.AssociationController":{"idx":335,"alias":["controller.association"],"alternates":[]},"Target.view.association.AssociationModel":{"idx":336,"alias":["viewmodel.association"],"alternates":[]},"Target.view.association.CellDragDrop":{"idx":337,"alias":["plugin.customcelldragdrop"],"alternates":[]},"Target.view.association.ClassContent":{"idx":338,"alias":["widget.targets-association-class-content"],"alternates":[]},"Target.view.association.ClassContentForm":{"idx":339,"alias":["widget.targets-association-class-content-form"],"alternates":[]},"Target.view.association.Grid":{"idx":340,"alias":["widget.targets-association-grid"],"alternates":[]},"Target.view.association.Panel":{"idx":341,"alias":["widget.targets-association"],"alternates":[]},"Target.view.catalog.CSVController":{"idx":342,"alias":["controller.csvform"],"alternates":[]},"Target.view.catalog.CSVForm":{"idx":343,"alias":["widget.targets-catalog-csv-form"],"alternates":[]},"Target.view.catalog.CatalogController":{"idx":347,"alias":["controller.catalog"],"alternates":[]},"Target.view.catalog.CatalogModel":{"idx":348,"alias":["viewmodel.catalog"],"alternates":[]},"Target.view.catalog.DatabaseController":{"idx":344,"alias":["controller.database"],"alternates":[]},"Target.view.catalog.DatabaseForm":{"idx":345,"alias":["widget.targets-catalog-database-form"],"alternates":[]},"Target.view.catalog.Properties":{"idx":349,"alias":["widget.targets-catalog-properties"],"alternates":[]},"Target.view.catalog.RegisterWindow":{"idx":346,"alias":["widget.targets-catalog-register-window"],"alternates":[]},"Target.view.catalog.Tree":{"idx":350,"alias":["widget.targets-catalog-tree"],"alternates":[]},"Target.view.home.Home":{"idx":353,"alias":["widget.home"],"alternates":[]},"Target.view.home.HomeController":{"idx":351,"alias":["controller.home"],"alternates":[]},"Target.view.home.HomeModel":{"idx":352,"alias":["viewmodel.home"],"alternates":[]},"Target.view.main.Main":{"idx":398,"alias":["widget.app-main"],"alternates":[]},"Target.view.main.MainController":{"idx":396,"alias":["controller.main"],"alternates":[]},"Target.view.main.MainModel":{"idx":397,"alias":["viewmodel.main"],"alternates":[]},"Target.view.objects.CutoutJobDetailWindow":{"idx":385,"alias":["widget.target-cutoutjob-detail"],"alternates":[]},"Target.view.objects.DownloadWindow":{"idx":384,"alias":["widget.target-download"],"alternates":[]},"Target.view.objects.FiltersController":{"idx":378,"alias":["controller.filters"],"alternates":[]},"Target.view.objects.FiltersModel":{"idx":379,"alias":["viewmodel.filters"],"alternates":[]},"Target.view.objects.FiltersWindow":{"idx":380,"alias":["widget.target-filters-window"],"alternates":[]},"Target.view.objects.Grid":{"idx":389,"alias":["widget.targets-objects-grid"],"alternates":[]},"Target.view.objects.Mosaic":{"idx":388,"alias":["widget.targets-objects-mosaic"],"alternates":[]},"Target.view.objects.ObjectsController":{"idx":386,"alias":["controller.objects"],"alternates":[]},"Target.view.objects.ObjectsModel":{"idx":387,"alias":["viewmodel.objects"],"alternates":[]},"Target.view.objects.Panel":{"idx":395,"alias":["widget.targets-objects-panel"],"alternates":[]},"Target.view.objects.SaveCatalogController":{"idx":381,"alias":["controller.savecatalog"],"alternates":[]},"Target.view.objects.SaveCatalogModel":{"idx":382,"alias":["viewmodel.savecatalog"],"alternates":[]},"Target.view.objects.SaveCatalogWindow":{"idx":383,"alias":["widget.target-savecatalog"],"alternates":[]},"Target.view.objects.TabPanel":{"idx":390,"alias":["widget.targets-objects-tabpanel"],"alternates":[]},"Target.view.preview.Preview":{"idx":394,"alias":["widget.targets-preview"],"alternates":[]},"Target.view.preview.PreviewController":{"idx":391,"alias":["controller.preview"],"alternates":[]},"Target.view.preview.PreviewModel":{"idx":392,"alias":["viewmodel.preview"],"alternates":[]},"Target.view.preview.Visiomatic":{"idx":393,"alias":["widget.targets-visiomatic"],"alternates":[]},"Target.view.settings.AddWorkgroupWindow":{"idx":365,"alias":[],"alternates":[]},"Target.view.settings.Columns":{"idx":360,"alias":["widget.targets-columns"],"alternates":[]},"Target.view.settings.ColumnsController":{"idx":358,"alias":["controller.columns"],"alternates":[]},"Target.view.settings.ColumnsModel":{"idx":359,"alias":["viewmodel.columns"],"alternates":[]},"Target.view.settings.Cutout":{"idx":376,"alias":["widget.targets-cutout"],"alternates":[]},"Target.view.settings.CutoutController":{"idx":370,"alias":["controller.cutout"],"alternates":[]},"Target.view.settings.CutoutJobController":{"idx":373,"alias":["controller.cutoutjob"],"alternates":[]},"Target.view.settings.CutoutJobForm":{"idx":375,"alias":["widget.target-cutoutjob-form"],"alternates":[]},"Target.view.settings.CutoutJobModel":{"idx":374,"alias":["viewmodel.cutoutjob"],"alternates":[]},"Target.view.settings.CutoutJobs":{"idx":372,"alias":["widget.targets-cutout-jobs"],"alternates":[]},"Target.view.settings.CutoutModel":{"idx":371,"alias":["viewmodel.cutout"],"alternates":[]},"Target.view.settings.Permission":{"idx":366,"alias":["widget.targets-permission"],"alternates":[]},"Target.view.settings.PermissionController":{"idx":361,"alias":["controller.permission"],"alternates":[]},"Target.view.settings.PermissionModel":{"idx":362,"alias":["viewmodel.permission"],"alternates":[]},"Target.view.settings.PermissionUserWindow":{"idx":363,"alias":[],"alternates":[]},"Target.view.settings.PermissionWorkgroupWindow":{"idx":364,"alias":[],"alternates":[]},"Target.view.settings.SettingWindow":{"idx":357,"alias":[],"alternates":[]},"Target.view.settings.SettingsController":{"idx":356,"alias":["controller.settings"],"alternates":[]},"Target.view.settings.SystemMembers":{"idx":369,"alias":["widget.targets-system-members"],"alternates":[]},"Target.view.settings.SystemMembersController":{"idx":367,"alias":["controller.system_members"],"alternates":[]},"Target.view.settings.SystemMembersModel":{"idx":368,"alias":["viewmodel.system_members"],"alternates":[]},"Target.view.wizard.Wizard":{"idx":377,"alias":["widget.targets-wizard"],"alternates":[]},"Target.view.wizard.WizardController":{"idx":354,"alias":["controller.wizard"],"alternates":[]},"Target.view.wizard.WizardModel":{"idx":355,"alias":["viewmodel.wizard"],"alternates":[]},"common.BandFilter":{"idx":93,"alias":["widget.bandfilter"],"alternates":["Portal.BandFilter"]},"common.SearchField":{"idx":94,"alias":["widget.common-searchfield"],"alternates":[]},"common.ToolbarController":{"idx":108,"alias":["controller.toolbar"],"alternates":[]},"common.comment.CommentsObject":{"idx":172,"alias":["widget.comments-object"],"alternates":[]},"common.comment.CommentsObjectController":{"idx":171,"alias":["controller.comment-object"],"alternates":[]},"common.comment.CommentsObjectModel":{"idx":170,"alias":["viewmodel.comment-object"],"alternates":[]},"common.contact.Contact":{"idx":104,"alias":["widget.form-contact-window"],"alternates":[]},"common.contact.ContactController":{"idx":103,"alias":["controller.contact"],"alternates":[]},"common.data.Settings":{"idx":105,"alias":[],"alternates":["Settings"]},"common.data.proxy.CrsfToken":{"idx":95,"alias":[],"alternates":[]},"common.data.proxy.Django":{"idx":96,"alias":["proxy.django"],"alternates":[]},"common.footer.Footer":{"idx":107,"alias":["widget.dri-footer"],"alternates":[]},"common.footer.FooterController":{"idx":106,"alias":["controller.footer"],"alternates":[]},"common.header.Toolbar":{"idx":111,"alias":["widget.dri-header"],"alternates":[]},"common.help.Tutorials":{"idx":110,"alias":["widget.tutorials-window"],"alternates":[]},"common.help.TutorialsController":{"idx":109,"alias":["controller.tutorials"],"alternates":[]},"common.link.LinkPrompt":{"idx":112,"alias":[],"alternates":[]},"common.model.CommentObject":{"idx":99,"alias":[],"alternates":[]},"common.model.CommentPosition":{"idx":113,"alias":[],"alternates":[]},"common.model.Dataset":{"idx":114,"alias":[],"alternates":[]},"common.model.Filter":{"idx":115,"alias":[],"alternates":[]},"common.model.Footprint":{"idx":116,"alias":[],"alternates":[]},"common.model.Map":{"idx":117,"alias":[],"alternates":[]},"common.model.Release":{"idx":118,"alias":[],"alternates":[]},"common.model.Survey":{"idx":119,"alias":[],"alternates":[]},"common.model.Tag":{"idx":120,"alias":[],"alternates":[]},"common.model.Tile":{"idx":121,"alias":[],"alternates":[]},"common.statistics.Events":{"idx":122,"alias":[],"alternates":[]},"common.store.CSVDelimiters":{"idx":123,"alias":[],"alternates":[]},"common.store.CommentsObjects":{"idx":98,"alias":["store.comments-objects"],"alternates":[]},"common.store.CommentsPosition":{"idx":124,"alias":["store.comments-position"],"alternates":[]},"common.store.Datasets":{"idx":126,"alias":["store.datasets"],"alternates":[]},"common.store.Fields":{"idx":127,"alias":["store.fields"],"alternates":[]},"common.store.Filters":{"idx":128,"alias":["store.filters"],"alternates":[]},"common.store.Footprints":{"idx":129,"alias":["store.footprints"],"alternates":[]},"common.store.Maps":{"idx":130,"alias":["store.maps"],"alternates":[]},"common.store.MyStore":{"idx":97,"alias":[],"alternates":[]},"common.store.MyTreeStore":{"idx":131,"alias":[],"alternates":[]},"common.store.Releases":{"idx":132,"alias":["store.releases"],"alternates":[]},"common.store.Surveys":{"idx":133,"alias":["store.surveys"],"alternates":[]},"common.store.Tags":{"idx":134,"alias":["store.tags"],"alternates":[]},"common.store.Tiles":{"idx":125,"alias":["store.tiles"],"alternates":[]},"common.store.Tutorials":{"idx":135,"alias":["store.tutorials"],"alternates":[]},"common.store.UsersSameGroup":{"idx":136,"alias":["store.users_same_group"],"alternates":[]},"common.token.GetToken":{"idx":137,"alias":[],"alternates":[]},"visiomatic.Comments":{"idx":138,"alias":[],"alternates":[]},"visiomatic.Interface":{"idx":139,"alias":[],"alternates":[]},"visiomatic.Visiomatic":{"idx":169,"alias":["widget.visiomatic"],"alternates":[]},"visiomatic.VisiomaticController":{"idx":143,"alias":["controller.visiomatic"],"alternates":[]},"visiomatic.VisiomaticModel":{"idx":142,"alias":["viewmodel.visiomatic"],"alternates":[]},"visiomatic.catalog.CatalogController":{"idx":160,"alias":["controller.catalogoverlay"],"alternates":[]},"visiomatic.catalog.CatalogOverlayWindow":{"idx":163,"alias":["widget.visiomatic-catalog-overlay"],"alternates":[]},"visiomatic.catalog.CatalogViewModel":{"idx":150,"alias":["viewmodel.catalogoverlay"],"alternates":[]},"visiomatic.catalog.Catalogs":{"idx":144,"alias":["widget.visiomatic-catalogs-tree"],"alternates":[]},"visiomatic.catalog.OverlayGrid":{"idx":162,"alias":["widget.visiomatic-catalogs-overlays-grid"],"alternates":[]},"visiomatic.catalog.Submit":{"idx":161,"alias":["widget.visiomatic-catalogs-submit"],"alternates":[]},"visiomatic.comment.CommentsPosition":{"idx":175,"alias":["widget.comments-position"],"alternates":[]},"visiomatic.comment.CommentsPositionController":{"idx":174,"alias":["controller.comment-position"],"alternates":[]},"visiomatic.comment.CommentsPositionModel":{"idx":173,"alias":["viewmodel.comment-position"],"alternates":[]},"visiomatic.crop.CropWindow":{"idx":176,"alias":["widget.target-download-crop"],"alternates":[]},"visiomatic.download.DescutDownloadWindow":{"idx":168,"alias":["widget.target-download-descut"],"alternates":[]},"visiomatic.download.FitsController":{"idx":164,"alias":["controller.fits-files"],"alternates":[]},"visiomatic.download.FitsModel":{"idx":167,"alias":["viewmodel.fits-files"],"alternates":[]},"visiomatic.filter.FiltersController":{"idx":155,"alias":["controller.overlay_filters"],"alternates":[]},"visiomatic.filter.FiltersModel":{"idx":158,"alias":["viewmodel.overlay_filters"],"alternates":[]},"visiomatic.filter.FiltersWindow":{"idx":159,"alias":["widget.overlay-filters-window"],"alternates":[]},"visiomatic.model.CatalogContent":{"idx":156,"alias":[],"alternates":[]},"visiomatic.model.CatalogTree":{"idx":145,"alias":[],"alternates":[]},"visiomatic.model.FilterCondition":{"idx":148,"alias":[],"alternates":[]},"visiomatic.model.FitsFiles":{"idx":165,"alias":[],"alternates":[]},"visiomatic.model.Object":{"idx":151,"alias":[],"alternates":[]},"visiomatic.model.Overlay":{"idx":154,"alias":[],"alternates":[]},"visiomatic.store.CatalogsTree":{"idx":146,"alias":["store.catalogs-overlay-tree"],"alternates":[]},"visiomatic.store.ExternalObjects":{"idx":153,"alias":["store.overlay-external-objects"],"alternates":[]},"visiomatic.store.FilterConditions":{"idx":149,"alias":["store.overlay-filter-conditions"],"alternates":[]},"visiomatic.store.FitsFiles":{"idx":166,"alias":["store.fits-files"],"alternates":[]},"visiomatic.store.Objects":{"idx":152,"alias":["store.overlay-objects"],"alternates":[]},"visiomatic.store.Overlays":{"idx":147,"alias":["store.overlays"],"alternates":[]},"visiomatic.store.ProductDisplayContents":{"idx":157,"alias":["store.overlay-product-display-contents"],"alternates":[]}},"packages":{"classic":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core"],"version":"6.0.1.250"},"cmd":{"current":"6.5.1.240","version":"6.5.3.6"},"common":{"css":true,"included":true,"required":true,"requires":["ext","core","classic","ux"],"version":"1.0.0"},"core":{"css":true,"included":true,"required":true,"requires":["ext","classic"],"version":"6.0.1.250"},"ext":{"css":true,"included":true,"license":"gpl","namespace":"Ext","required":true,"requires":[],"version":"6.0.1.250"},"font-awesome":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base","theme-neutral","theme-neptune"],"theme":"theme-neptune","version":"6.0.1.250"},"theme-base":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic"],"version":"6.0.1.250"},"theme-crisp":{"css":true,"extend":"theme-neptune","included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base","theme-neutral","theme-neptune"],"version":"6.0.1.250"},"theme-neptune":{"css":true,"extend":"theme-neutral","included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base","theme-neutral"],"version":"6.0.1.250"},"theme-neutral":{"css":true,"extend":"theme-base","included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic","theme-base"],"version":"6.0.1.250"},"ux":{"css":true,"included":true,"namespace":"Ext","required":true,"requires":["ext","core","classic"],"version":"6.0.1.250"},"visiomatic":{"css":true,"included":true,"namespace":"visiomatic","required":true,"requires":["ext","core","classic"],"version":"1.0.0"}},"js":[{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jquery-min.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot-min.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum.js"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic-src.js"},{"isSdk":true,"path":"../ext/build/ext-all-rtl-debug.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/Component.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/container/ButtonGroup.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/form/field/HtmlEditor.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/grid/RowEditor.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/grid/column/RowNumberer.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/layout/component/Dock.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/menu/Menu.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/menu/Separator.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/panel/Panel.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/panel/Table.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/picker/Month.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/resizer/Splitter.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/toolbar/Paging.js"},{"bootstrap":true,"path":"../ext/classic/theme-neptune/overrides/toolbar/Toolbar.js"},{"bootstrap":true,"path":"../ext/classic/theme-crisp/overrides/Component.js"},{"bootstrap":true,"path":"../ext/classic/theme-crisp/overrides/view/Table.js"},{"bootstrap":true,"remote":true,"platform":["fashion"],"isSdk":false,"path":"../../../../~cmd/extensions/sencha-fashion/fashion/fashion.js/"},{"bootstrap":true,"remote":true,"platform":["fashion"],"isSdk":false,"path":"../../../../~cmd/extensions/sencha-fashion/sass-compiler.js/"},{"path":"app.js"}],"css":[{"path":"../packages/local/visiomatic/src/Leaflet/dist/leaflet.css"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/visiomatic.css"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/spectrum.css"},{"path":"../packages/local/visiomatic/src/visiomatic/dist/jqplot.css"},{"remote":false,"exclude":["fashion"],"path":"../build/development/Target/resources/Target-all_1.css"},{"remote":false,"exclude":["fashion"],"path":"../build/development/Target/resources/Target-all_2.css"}],"cache":{"enable":false,"deltas":true},"fashion":{"inliner":{"enable":false}},"name":"Target","version":"1.0.0.0","framework":"ext","toolkit":"classic","theme":"theme-crisp","loader":{"cache":false,"cacheParam":"_dc"},"id":"85a0e2c2-ad9b-4f4a-84ed-649bd3f711fd","tags":[],"apiBaseUrl":"http://localhost","profile":"","hash":"2eb143f6c92b80dbde2ba0ff5fed90371a3a4ae7","resources":{"path":"../build/development/Target/resources"}}); \ No newline at end of file diff --git a/frontend/userquery/app/view/main/MainController.js b/frontend/userquery/app/view/main/MainController.js index 598d0f379..5b61ca8d5 100644 --- a/frontend/userquery/app/view/main/MainController.js +++ b/frontend/userquery/app/view/main/MainController.js @@ -48,7 +48,8 @@ var main = Ext.define('UserQuery.view.main.MainController', { response: function(error, releases){ var release; - if (!error){ + if (!error && releases.length > 0){ + console.log("Entrou no IF") release = releases[0]; refs.cmbReleases.setStore(Ext.create('Ext.data.Store', {